.ember-notify-default.ember-notify-cn {
  position: fixed;
  z-index: 5000;
  bottom: 0;
  right: 0;
}

.ember-notify-default .ember-notify {
  display: block;
  margin: 10px;
  position: relative;
  width: 300px;

  /* the following is purely so that it doesn't look broken without Foundation installed */
  box-sizing: border-box;
  border: 1px solid #ccc;
  padding: 10px;
}

.ember-notify-default .ember-notify-show {
  animation-duration: 500ms;
  animation-name: ember-notify-show;
  animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.ember-notify-default .ember-notify-hide {
  animation-duration: 250ms;
  animation-name: ember-notify-hide;
  animation-timing-function: cubic-bezier(0.6, -0.28, 0.735, 0.045);
}

.ember-notify-hide:hover {
  animation-play-state: paused;
}

@keyframes ember-notify-show {
  from {
    right: -310px;
  }

  to {
    right: 0;
  }
}

@keyframes ember-notify-show {
  from {
    right: -310px;
  }

  to {
    right: 0;
  }
}

@keyframes ember-notify-hide {
  from {
    right: 0;
  }

  to {
    right: -310px;
  }
}

@keyframes ember-notify-hide {
  from {
    right: 0;
  }

  to {
    right: -310px;
  }
}

.ember-notify-default .ember-notify .close {
  float: right;
  cursor: pointer;
}

@media only screen and (width <= 680px) {
  .ember-notify-default.ember-notify-cn {
    width: 100%;
    padding-left: 20px;
    box-sizing: border-box;
  }

  .ember-notify-default .ember-notify {
    width: 100%;
    float: right;
  }
}

.ember-notify-cn .clearfix::before,
.ember-notify-cn .clearfix::after {
  content: " ";
  display: table;
}

.ember-notify-cn .clearfix::after {
  clear: both;
}
/**!
  Visualization Classes for debugging the vertical-collection
  */
.vertical-collection-visual-debugger {
  height: 100%;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: left;
  background: rgba(50, 50, 50, 1);
  width: 125px;
}

.vertical-collection-visual-debugger .vc_visualization-container {
  transform: scale(0.25);
  left: 0;
  position: relative;
}


.vertical-collection-visual-debugger .vc_visualization-screen {
  position: absolute;
  background: transparent;
  box-sizing: content-box;
  border-top: 2px dashed yellow;
  border-bottom: 2px dashed yellow;
  width: 500px;
}

.vertical-collection-visual-debugger .vc_visualization-scroll-container {
  position: absolute;
  width: 500px;
  background: rgba(100, 230, 100, 0.65);
}

.vertical-collection-visual-debugger .vc_visualization-item-container {
  position: absolute;
  width: 500px;
  background: rgba(255, 255, 255, .15);
}

.vertical-collection-visual-debugger .vc_visualization-virtual-component {
  box-sizing: border-box;
  background: rgba(230, 100, 230, 0.6);
  border: 1px dotted #bbb;
  border-top: 0px;
  color: #fff;
  text-align: center;
  font-size: 2.5em;
  width: 250px;
}

.vertical-collection-visual-debugger .vc_visualization-virtual-component:first-of-type {
  border-top: 1px dotted #bbb;
}

.vertical-collection-visual-debugger .vc_visualization-virtual-component.culled {
  background: transparent;
}
.occluded-content {
  display: block;
  position: relative;
  width: 100%;

  /* prevents margin overflow on item container */
  min-height: 0.01px;

  /* hides text visually while still being readable by screen readers */
  color: rgba(0,0,0,0);
}

table .occluded-content,
tbody .occluded-content,
thead .occluded-content,
tfoot .occluded-content {
  display: table-row;
  position: relative;
  width: 100%;
}

ul .occluded-content,
ol .occluded-content {
  display: list-item;
  position: relative;
  width: 100%;
  list-style-type: none;
  height: 0;
}
.ember-table {
  position: relative;
  height: 100%;
  width: 100%;
  box-sizing: border-box;
}

.ember-table .ember-table-overflow {
  overflow: auto;
  max-height: 100%;
  max-width: 100%;
}

.ember-table table {
  border-spacing: 0;
  table-layout: fixed;
  box-sizing: border-box;
}

.ember-table td,
.ember-table th {
  box-sizing: border-box;
}

.ember-table td.is-fixed-left,
.ember-table td.is-fixed-right,
.ember-table th.is-fixed-left,
.ember-table th.is-fixed-right {
  position: -webkit-sticky;
  position: sticky;
  left: 0;
}

.ember-table td.ember-table__text-align-left,
.ember-table th.ember-table__text-align-left {
  text-align: left;
}

.ember-table td.ember-table__text-align-center,
.ember-table th.ember-table__text-align-center {
  text-align: center;
}

.ember-table td.ember-table__text-align-right,
.ember-table th.ember-table__text-align-right {
  text-align: right;
}

.ember-table th {
  z-index: 2;
}

.ember-table th:not(.is-fixed-right) .et-header-resize-area {
  right: 0;
}

.ember-table th.is-fixed-right .et-header-resize-area {
  left: 0;
}

.ember-table td.is-fixed-left,
.ember-table td.is-fixed-right {
  z-index: 3;
}

.ember-table th.is-fixed-left,
.ember-table th.is-fixed-right {
  z-index: 4;
}

.ember-table th.is-sortable {
  cursor: pointer;
}

.ember-table thead {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 2;
  box-sizing: border-box;
}

.ember-table tbody {
  box-sizing: border-box;
}

.ember-table tfoot {
  position: -webkit-sticky;
  position: sticky;
  bottom: 0;
  z-index: 2;
  box-sizing: border-box;
}

.ember-table .scroll-indicator {
  position: absolute;
  z-index: 5;
}

.ember-table .scroll-indicator__left,
.ember-table .scroll-indicator__right {
  top: 0;
  width: 8px;
  height: 100%;
}

.ember-table .scroll-indicator__left {
  background: linear-gradient(to right, rgba(168, 168, 168, 0.4), rgba(168, 168, 168, 0));
}

.ember-table .scroll-indicator__right {
  right: 0;
  background: linear-gradient(to left, rgba(168, 168, 168, 0.4), rgba(168, 168, 168, 0));
}

.ember-table .scroll-indicator__top,
.ember-table .scroll-indicator__bottom {
  left: 0;
  width: 100%;
  height: 8px;
}

.ember-table .scroll-indicator__top {
  top: 0;
  background: linear-gradient(to bottom, rgba(168, 168, 168, 0.4), rgba(168, 168, 168, 0));
}

.ember-table .scroll-indicator__bottom {
  bottom: 0;
  background: linear-gradient(to top, rgba(168, 168, 168, 0.4), rgba(168, 168, 168, 0));
}

.ember-table.et-unselectable {
  user-select: none;
}

.ember-table .et-header-resize-area {
  cursor: col-resize;
  width: 10px;
  height: 100%;
  position: absolute;
  top: 0;
}

.ember-table .et-speech-only {
  display: none !important;
}

@media speech {
  .ember-table .et-speech-only {
    display: block !important;
  }
}

.ember-table .ember-table-loading-more {
  display: inline-block;
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */

main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */

img {
  border-style: none;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Misc
   ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */

template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */

[hidden] {
  display: none;
}
/*! nouislider - 14.7.0 - 4/6/2021 */
.noUi-target,.noUi-target *{-webkit-touch-callout:none;-webkit-tap-highlight-color:transparent;-webkit-user-select:none;-ms-touch-action:none;touch-action:none;-ms-user-select:none;-moz-user-select:none;user-select:none;-moz-box-sizing:border-box;box-sizing:border-box}.noUi-target{position:relative}.noUi-base,.noUi-connects{width:100%;height:100%;position:relative;z-index:1}.noUi-connects{overflow:hidden;z-index:0}.noUi-connect,.noUi-origin{will-change:transform;position:absolute;z-index:1;top:0;right:0;-ms-transform-origin:0 0;-webkit-transform-origin:0 0;-webkit-transform-style:preserve-3d;transform-origin:0 0;transform-style:flat}.noUi-connect{height:100%;width:100%}.noUi-origin{height:10%;width:10%}.noUi-txt-dir-rtl.noUi-horizontal .noUi-origin{left:0;right:auto}.noUi-vertical .noUi-origin{width:0}.noUi-horizontal .noUi-origin{height:0}.noUi-handle{-webkit-backface-visibility:hidden;backface-visibility:hidden;position:absolute}.noUi-touch-area{height:100%;width:100%}.noUi-state-tap .noUi-connect,.noUi-state-tap .noUi-origin{-webkit-transition:transform .3s;transition:transform .3s}.noUi-state-drag *{cursor:inherit!important}.noUi-horizontal{height:18px}.noUi-horizontal .noUi-handle{width:34px;height:28px;right:-17px;top:-6px}.noUi-vertical{width:18px}.noUi-vertical .noUi-handle{width:28px;height:34px;right:-6px;top:-17px}.noUi-txt-dir-rtl.noUi-horizontal .noUi-handle{left:-17px;right:auto}.noUi-target{background:#FAFAFA;border-radius:4px;border:1px solid #D3D3D3;box-shadow:inset 0 1px 1px #F0F0F0,0 3px 6px -5px #BBB}.noUi-connects{border-radius:3px}.noUi-connect{background:#3FB8AF}.noUi-draggable{cursor:ew-resize}.noUi-vertical .noUi-draggable{cursor:ns-resize}.noUi-handle{border:1px solid #D9D9D9;border-radius:3px;background:#FFF;cursor:default;box-shadow:inset 0 0 1px #FFF,inset 0 1px 7px #EBEBEB,0 3px 6px -3px #BBB}.noUi-active{box-shadow:inset 0 0 1px #FFF,inset 0 1px 7px #DDD,0 3px 6px -3px #BBB}.noUi-handle:after,.noUi-handle:before{content:"";display:block;position:absolute;height:14px;width:1px;background:#E8E7E6;left:14px;top:6px}.noUi-handle:after{left:17px}.noUi-vertical .noUi-handle:after,.noUi-vertical .noUi-handle:before{width:14px;height:1px;left:6px;top:14px}.noUi-vertical .noUi-handle:after{top:17px}[disabled] .noUi-connect{background:#B8B8B8}[disabled] .noUi-handle,[disabled].noUi-handle,[disabled].noUi-target{cursor:not-allowed}.noUi-pips,.noUi-pips *{-moz-box-sizing:border-box;box-sizing:border-box}.noUi-pips{position:absolute;color:#999}.noUi-value{position:absolute;white-space:nowrap;text-align:center}.noUi-value-sub{color:#ccc;font-size:10px}.noUi-marker{position:absolute;background:#CCC}.noUi-marker-sub{background:#AAA}.noUi-marker-large{background:#AAA}.noUi-pips-horizontal{padding:10px 0;height:80px;top:100%;left:0;width:100%}.noUi-value-horizontal{-webkit-transform:translate(-50%,50%);transform:translate(-50%,50%)}.noUi-rtl .noUi-value-horizontal{-webkit-transform:translate(50%,50%);transform:translate(50%,50%)}.noUi-marker-horizontal.noUi-marker{margin-left:-1px;width:2px;height:5px}.noUi-marker-horizontal.noUi-marker-sub{height:10px}.noUi-marker-horizontal.noUi-marker-large{height:15px}.noUi-pips-vertical{padding:0 10px;height:100%;top:0;left:100%}.noUi-value-vertical{-webkit-transform:translate(0,-50%);transform:translate(0,-50%);padding-left:25px}.noUi-rtl .noUi-value-vertical{-webkit-transform:translate(0,50%);transform:translate(0,50%)}.noUi-marker-vertical.noUi-marker{width:5px;height:2px;margin-top:-1px}.noUi-marker-vertical.noUi-marker-sub{width:10px}.noUi-marker-vertical.noUi-marker-large{width:15px}.noUi-tooltip{display:block;position:absolute;border:1px solid #D9D9D9;border-radius:3px;background:#fff;color:#000;padding:5px;text-align:center;white-space:nowrap}.noUi-horizontal .noUi-tooltip{-webkit-transform:translate(-50%,0);transform:translate(-50%,0);left:50%;bottom:120%}.noUi-vertical .noUi-tooltip{-webkit-transform:translate(0,-50%);transform:translate(0,-50%);top:50%;right:120%}.noUi-horizontal .noUi-origin>.noUi-tooltip{-webkit-transform:translate(50%,0);transform:translate(50%,0);left:auto;bottom:10px}.noUi-vertical .noUi-origin>.noUi-tooltip{-webkit-transform:translate(0,-18px);transform:translate(0,-18px);top:auto;right:28px}
.ember-power-select-dropdown * {
  box-sizing: border-box;
}

.ember-power-select-trigger {
  position: relative;
  border-top: var(--ember-power-select-trigger-border-top, var(--ember-power-select-trigger-border, 1px solid #aaa));
  border-bottom: var(--ember-power-select-trigger-border-bottom, var(--ember-power-select-trigger-border, 1px solid #aaa));
  border-right: var(--ember-power-select-trigger-border-right, var(--ember-power-select-trigger-border, 1px solid #aaa));
  border-left: var(--ember-power-select-trigger-border-left, var(--ember-power-select-trigger-border, 1px solid #aaa));
  border-radius: var(--ember-power-select-trigger-default-border-radius, var(--ember-power-select-default-border-radius, 4px));
  background-color: var(--ember-power-select-background-color, #fff);
  line-height: var(--ember-power-select-line-height, 1.75em);
  overflow-x: hidden;
  text-overflow: ellipsis;
  min-height: var(--ember-power-select-line-height, 1.75em);
  user-select: none;
  -webkit-user-select: none;
  color: var(--ember-power-select-text-color, inherit);
  /* Minimum clearfix for modern browsers */
}
.ember-power-select-trigger:after {
  content: "";
  display: table;
  clear: both;
}
.ember-power-select-trigger:not(.ember-power-select-multiple-trigger) .ember-power-select-input {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.ember-power-select-trigger:focus,
.ember-power-select-trigger--active {
  border-top: var(--ember-power-select-active-trigger-border-top, var(--ember-power-select-active-trigger-border, 1px solid #aaa));
  border-bottom: var(--ember-power-select-active-trigger-border-bottom, var(--ember-power-select-active-trigger-border, 1px solid #aaa));
  border-right: var(--ember-power-select-active-trigger-border-right, var(--ember-power-select-active-trigger-border, 1px solid #aaa));
  border-left: var(--ember-power-select-active-trigger-border-left, var(--ember-power-select-active-trigger-border, 1px solid #aaa));
  box-shadow: var(--ember-power-select-focus-box-shadow, none);
  outline: var(--ember-power-select-focus-outline, none);
}

.ember-basic-dropdown-trigger--below.ember-power-select-trigger[aria-expanded=true],
.ember-basic-dropdown-trigger--in-place.ember-power-select-trigger[aria-expanded=true] {
  border-bottom-left-radius: var(--ember-power-select-opened-border-radius, 0);
  border-bottom-right-radius: var(--ember-power-select-opened-border-radius, 0);
}

.ember-basic-dropdown-trigger--above.ember-power-select-trigger[aria-expanded=true] {
  border-top-left-radius: var(--ember-power-select-opened-border-radius, 0);
  border-top-right-radius: var(--ember-power-select-opened-border-radius, 0);
}

.ember-power-select-placeholder {
  color: var(--ember-power-select-placeholder-color, #999);
  display: block;
  overflow-x: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.ember-power-select-status-icon {
  position: absolute;
  display: inline-block;
  width: 0;
  height: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border-style: solid;
  border-width: 7px 4px 0 4px;
  border-color: var(--ember-power-select-trigger-icon-color, var(--ember-power-select-border-color, #aaa)) transparent transparent transparent;
}
.ember-basic-dropdown-trigger[aria-expanded=true] .ember-power-select-status-icon {
  transform: rotate(180deg);
}

.ember-power-select-clear-btn {
  position: absolute;
  cursor: pointer;
}

.ember-power-select-multiple-options {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
}
.ember-power-select-multiple-options li.ember-power-select-trigger-multiple-input-container {
  flex-grow: 1;
  display: flex;
}
.ember-power-select-multiple-options li.ember-power-select-trigger-multiple-input-container input {
  flex-grow: 1;
}

.ember-power-select-trigger-multiple-input {
  font-family: inherit;
  font-size: inherit;
  border: none;
  line-height: inherit;
  -webkit-appearance: none;
  outline: none;
  padding: 0;
  background-color: transparent;
  text-indent: 2px;
}
.ember-power-select-trigger-multiple-input:disabled {
  background-color: var(--ember-power-select-disabled-background-color, #eee);
}
.ember-power-select-trigger-multiple-input {
  /* There's a browser bug where this selectos cannot be chained with commas */
}
.ember-power-select-trigger-multiple-input::placeholder {
  opacity: 1;
  color: var(--ember-power-select-placeholder-color, #999);
}
.ember-power-select-trigger-multiple-input::-webkit-input-placeholder {
  opacity: 1;
  color: var(--ember-power-select-placeholder-color, #999);
}
.ember-power-select-trigger-multiple-input::-moz-placeholder {
  opacity: 1;
  color: var(--ember-power-select-placeholder-color, #999);
}
.ember-power-select-trigger-multiple-input::-ms-input-placeholder {
  opacity: 1;
  color: var(--ember-power-select-placeholder-color, #999);
}

.ember-power-select-multiple-option {
  border: var(--ember-power-select-multiple-option-border, 1px solid var(--ember-power-select-multiple-option-border-color, gray));
  border-radius: var(--ember-power-select-multiple-option-border-radius, var(--ember-power-select-default-border-radius, 4px));
  color: var(--ember-power-select-multiple-selection-color, #333);
  background-color: var(--ember-power-select-multiple-selection-background-color, #e4e4e4);
  padding: var(--ember-power-select-multiple-option-padding, 0 4px);
  line-height: var(--ember-power-select-multiple-option-line-height, 1.45);
  margin: 2px 0 2px 3px;
}

.ember-power-select-multiple-remove-btn {
  cursor: pointer;
}
.ember-power-select-multiple-remove-btn:not(:hover) {
  opacity: 0.5;
}

.ember-power-select-search {
  padding: 4px;
}

.ember-power-select-search-input {
  border: var(--ember-power-select-search-field-border, var(--ember-power-select-default-border, 1px solid #aaa));
  border-radius: var(--ember-power-select-search-input-border-radius, 0);
  width: 100%;
  font-size: inherit;
  line-height: inherit;
  padding: 0 5px;
}
.ember-power-select-search-input:focus {
  border: var(--ember-power-select-search-field-focus-border, var(--ember-power-select-default-focus-border, 1px solid #aaa));
  box-shadow: var(--ember-power-select-focus-box-shadow, none);
  outline: var(--ember-power-select-focus-outline, none);
}

.ember-power-select-search-input-field {
  width: 100%;
  height: 100%;
  padding: 0 8px;
  font-family: inherit;
  font-size: inherit;
  border: none;
  display: block;
  line-height: inherit;
  -webkit-appearance: none;
  outline: none;
  background-color: transparent;
}

.ember-power-select-dropdown {
  border-left: var(--ember-power-select-dropdown-left-border, var(--ember-power-select-dropdown-border, 1px solid #aaa));
  border-right: var(--ember-power-select-dropdown-right-border, var(--ember-power-select-dropdown-border, 1px solid #aaa));
  line-height: var(--ember-power-select-line-height, 1.75em);
  border-radius: var(--ember-power-select-dropdown-default-border-radius, var(--ember-power-select-default-border-radius, 4px));
  box-shadow: var(--ember-power-select-dropdown-box-shadow, none);
  overflow: hidden;
  color: var(--ember-power-select-text-color, inherit);
  background-color: var(--ember-power-select-background-color, #fff);
}

.ember-power-select-dropdown.ember-basic-dropdown-content--above {
  transform: translateY(calc(-1 * var(--ember-power-select-dropdown-margin, 0)));
  border-top: var(--ember-power-select-dropdown-top-border, var(--ember-power-select-dropdown-border, 1px solid #aaa));
  border-bottom: var(--ember-power-select-dropdown-contiguous-border, none);
  border-bottom-left-radius: var(--ember-power-select-opened-border-radius, 0);
  border-bottom-right-radius: var(--ember-power-select-opened-border-radius, 0);
}

.ember-power-select-dropdown.ember-basic-dropdown-content--below,
.ember-power-select-dropdown.ember-basic-dropdown-content--in-place {
  transform: translateY(var(--ember-power-select-dropdown-margin, 0));
  border-top: var(--ember-power-select-dropdown-contiguous-border, none);
  border-bottom: var(--ember-power-select-dropdown-bottom-border, var(--ember-power-select-dropdown-border, 1px solid #aaa));
  border-top-left-radius: var(--ember-power-select-opened-border-radius, 0);
  border-top-right-radius: var(--ember-power-select-opened-border-radius, 0);
}

.ember-power-select-dropdown.ember-basic-dropdown-content--in-place {
  width: 100%;
}

.ember-power-select-options {
  list-style: none;
  margin: 0;
  padding: 0;
  user-select: none;
  -webkit-user-select: none;
}
.ember-power-select-options[role=listbox] {
  overflow-y: auto; /* in firefox in windows this can cause a word-break issue. Try `overflow-y: scroll` if that happens */
  -webkit-overflow-scrolling: touch;
  max-height: calc(var(--ember-power-select-number-of-visible-options, 7) * var(--ember-power-select-line-height, 1.75em));
}

.ember-power-select-option {
  cursor: pointer;
  padding: 0 var(--ember-power-select-option-padding, 8px);
}

.ember-power-select-group[aria-disabled=true] {
  color: var(--ember-power-select-disabled-option-color, #999);
  cursor: not-allowed;
}

.ember-power-select-group[aria-disabled=true] .ember-power-select-option,
.ember-power-select-option[aria-disabled=true] {
  color: var(--ember-power-select-disabled-option-color, #999);
  pointer-events: none;
  cursor: not-allowed;
}

.ember-power-select-option[aria-selected=true] {
  background-color: var(--ember-power-select-selected-background, #ddd);
}

.ember-power-select-option[aria-current=true] {
  background-color: var(--ember-power-select-highlighted-background, #5897fb);
  color: var(--ember-power-select-highlighted-color, #fff);
}

.ember-power-select-group-name {
  cursor: default;
  font-weight: bold;
}

.ember-power-select-trigger[aria-disabled=true] {
  background-color: var(--ember-power-select-disabled-background-color, #eee);
}

.ember-power-select-trigger {
  padding: var(--ember-power-select-trigger-ltr-padding, 0 16px 0 0);
}

.ember-power-select-selected-item,
.ember-power-select-placeholder {
  margin-left: 8px;
}

.ember-power-select-status-icon {
  right: 5px;
}

.ember-power-select-clear-btn {
  right: var(--ember-power-select-clear-btn-margin, 25px);
}

.ember-power-select-group .ember-power-select-group .ember-power-select-group-name {
  padding-left: calc(3 * var(--ember-power-select-option-padding, 8px));
}
.ember-power-select-group .ember-power-select-group .ember-power-select-option {
  padding-left: calc(5 * var(--ember-power-select-option-padding, 8px));
}
.ember-power-select-group .ember-power-select-option {
  padding-left: calc(3 * var(--ember-power-select-option-padding, 8px));
}
.ember-power-select-group .ember-power-select-group-name {
  padding-left: var(--ember-power-select-option-padding, 8px);
}

.ember-power-select-trigger[dir=rtl] {
  padding: var(--ember-power-select-trigger-rtl-padding, 0 0 0 16px);
}
.ember-power-select-trigger[dir=rtl] .ember-power-select-selected-item,
.ember-power-select-trigger[dir=rtl] .ember-power-select-placeholder {
  margin-right: 8px;
}
.ember-power-select-trigger[dir=rtl] .ember-power-select-multiple-option {
  float: right;
}
.ember-power-select-trigger[dir=rtl] .ember-power-select-trigger-multiple-input {
  float: right;
}
.ember-power-select-trigger[dir=rtl] .ember-power-select-status-icon {
  left: 5px;
  right: initial;
}
.ember-power-select-trigger[dir=rtl] .ember-power-select-clear-btn {
  left: var(--ember-power-select-clear-btn-margin, 25px);
  right: initial;
}

.ember-power-select-visually-hidden {
  height: 1px;
  left: -9999px;
  overflow: hidden;
  position: absolute;
  width: 1px;
}

.ember-power-select-dropdown[dir=rtl] .ember-power-select-group .ember-power-select-group .ember-power-select-group-name {
  padding-right: calc(3 * var(--ember-power-select-option-padding, 8px));
}
.ember-power-select-dropdown[dir=rtl] .ember-power-select-group .ember-power-select-group .ember-power-select-option {
  padding-right: calc(5 * var(--ember-power-select-option-padding, 8px));
}
.ember-power-select-dropdown[dir=rtl] .ember-power-select-group .ember-power-select-option {
  padding-right: calc(3 * var(--ember-power-select-option-padding, 8px));
}
.ember-power-select-dropdown[dir=rtl] .ember-power-select-group .ember-power-select-group-name {
  padding-right: var(--ember-power-select-option-padding, 8px);
}
.ember-basic-dropdown {
  position: relative;
}

.ember-basic-dropdown,
.ember-basic-dropdown-content,
.ember-basic-dropdown-content * {
  box-sizing: border-box;
}

.ember-basic-dropdown-content {
  position: absolute;
  width: auto;
  z-index: var(--ember-basic-dropdown-content-z-index, 1000);
  background-color: var(--ember-basic-dropdown-content-background-color, #fff);
}

.ember-basic-dropdown-content--left {
  left: 0;
}

.ember-basic-dropdown-content--right {
  right: 0;
}

.ember-basic-dropdown-overlay {
  position: fixed;
  background: var(--ember-basic-dropdown-overlay-background, rgba(0, 0, 0, 0.5));
  width: 100%;
  height: 100%;
  z-index: 10;
  top: 0;
  left: 0;
  pointer-events: var(--ember-basic-dropdown-overlay-pointer-events, none);
}

.ember-basic-dropdown-content-wormhole-origin {
  display: inline;
}
/* --- IMPORT STACK --- */
/* --- MIXINS --- */
/* --- FONTS --- */
@font-face {
  font-display: fallback;
  font-family: "neue-helvetica";
  font-weight: 100;
  font-style: normal;
  src: url("/assets/fonts/linotype/neue-helvetica-35-thin.eot?#iefix");
  src: url("/assets/fonts/linotype/neue-helvetica-35-thin.eot?#iefix") format("eot"), url("/assets/fonts/linotype/neue-helvetica-35-thin.woff2") format("woff2"), url("/assets/fonts/linotype/neue-helvetica-35-thin.woff") format("woff"), url("/assets/fonts/linotype/neue-helvetica-35-thin.ttf") format("truetype");
}
@font-face {
  font-display: fallback;
  font-family: "neue-helvetica";
  font-weight: 100;
  font-style: italic;
  src: url("/assets/fonts/linotype/neue-helvetica-36-thin-italic.eot?#iefix");
  src: url("/assets/fonts/linotype/neue-helvetica-36-thin-italic.eot?#iefix") format("eot"), url("/assets/fonts/linotype/neue-helvetica-36-thin-italic.woff2") format("woff2"), url("/assets/fonts/linotype/neue-helvetica-36-thin-italic.woff") format("woff"), url("/assets/fonts/linotype/neue-helvetica-36-thin-italic.ttf") format("truetype");
}
@font-face {
  font-display: fallback;
  font-family: "neue-helvetica";
  font-weight: 300;
  font-style: normal;
  src: url("/assets/fonts/linotype/neue-helvetica-45-light.eot?#iefix");
  src: url("/assets/fonts/linotype/neue-helvetica-45-light.eot?#iefix") format("eot"), url("/assets/fonts/linotype/neue-helvetica-45-light.woff2") format("woff2"), url("/assets/fonts/linotype/neue-helvetica-45-light.woff") format("woff"), url("/assets/fonts/linotype/neue-helvetica-45-light.ttf") format("truetype");
}
@font-face {
  font-display: fallback;
  font-family: "neue-helvetica";
  font-weight: 300;
  font-style: italic;
  src: url("/assets/fonts/linotype/neue-helvetica-46-light-italic.eot?#iefix");
  src: url("/assets/fonts/linotype/neue-helvetica-46-light-italic.eot?#iefix") format("eot"), url("/assets/fonts/linotype/neue-helvetica-46-light-italic.woff2") format("woff2"), url("/assets/fonts/linotype/neue-helvetica-46-light-italic.woff") format("woff"), url("/assets/fonts/linotype/neue-helvetica-46-light-italic.ttf") format("truetype");
}
@font-face {
  font-display: fallback;
  font-family: "neue-helvetica";
  font-weight: 400;
  font-style: normal;
  src: url("/assets/fonts/linotype/neue-helvetica-55-roman.eot?#iefix");
  src: url("/assets/fonts/linotype/neue-helvetica-55-roman.eot?#iefix") format("eot"), url("/assets/fonts/linotype/neue-helvetica-55-roman.woff2") format("woff2"), url("/assets/fonts/linotype/neue-helvetica-55-roman.woff") format("woff"), url("/assets/fonts/linotype/neue-helvetica-55-roman.ttf") format("truetype");
}
@font-face {
  font-display: fallback;
  font-family: "neue-helvetica";
  font-weight: 400;
  font-style: italic;
  src: url("/assets/fonts/linotype/neue-helvetica-56-roman-italic.eot?#iefix");
  src: url("/assets/fonts/linotype/neue-helvetica-56-roman-italic.eot?#iefix") format("eot"), url("/assets/fonts/linotype/neue-helvetica-56-roman-italic.woff2") format("woff2"), url("/assets/fonts/linotype/neue-helvetica-56-roman-italic.woff") format("woff"), url("/assets/fonts/linotype/neue-helvetica-56-roman-italic.ttf") format("truetype");
}
@font-face {
  font-display: fallback;
  font-family: "neue-helvetica";
  font-weight: 500;
  font-style: normal;
  src: url("/assets/fonts/linotype/neue-helvetica-65-medium.eot?#iefix");
  src: url("/assets/fonts/linotype/neue-helvetica-65-medium.eot?#iefix") format("eot"), url("/assets/fonts/linotype/neue-helvetica-65-medium.woff2") format("woff2"), url("/assets/fonts/linotype/neue-helvetica-65-medium.woff") format("woff"), url("/assets/fonts/linotype/neue-helvetica-65-medium.ttf") format("truetype");
}
@font-face {
  font-display: fallback;
  font-family: "neue-helvetica";
  font-weight: 500;
  font-style: italic;
  src: url("/assets/fonts/linotype/neue-helvetica-66-medium-italic.eot?#iefix");
  src: url("/assets/fonts/linotype/neue-helvetica-66-medium-italic.eot?#iefix") format("eot"), url("/assets/fonts/linotype/neue-helvetica-66-medium-italic.woff2") format("woff2"), url("/assets/fonts/linotype/neue-helvetica-66-medium-italic.woff") format("woff"), url("/assets/fonts/linotype/neue-helvetica-66-medium-italic.ttf") format("truetype");
}
@font-face {
  font-display: fallback;
  font-family: "neue-helvetica";
  font-weight: 700;
  font-style: normal;
  src: url("/assets/fonts/linotype/neue-helvetica-75-bold.eot?#iefix");
  src: url("/assets/fonts/linotype/neue-helvetica-75-bold.eot?#iefix") format("eot"), url("/assets/fonts/linotype/neue-helvetica-75-bold.woff2") format("woff2"), url("/assets/fonts/linotype/neue-helvetica-75-bold.woff") format("woff"), url("/assets/fonts/linotype/neue-helvetica-75-bold.ttf") format("truetype");
}
@font-face {
  font-display: fallback;
  font-family: "neue-helvetica";
  font-weight: 700;
  font-style: italic;
  src: url("/assets/fonts/linotype/neue-helvetica-76-bold-italic.eot?#iefix");
  src: url("/assets/fonts/linotype/neue-helvetica-76-bold-italic.eot?#iefix") format("eot"), url("/assets/fonts/linotype/neue-helvetica-76-bold-italic.woff2") format("woff2"), url("/assets/fonts/linotype/neue-helvetica-76-bold-italic.woff") format("woff"), url("/assets/fonts/linotype/neue-helvetica-76-bold-italic.ttf") format("truetype");
}
@font-face {
  font-display: fallback;
  font-family: "neue-helvetica-condensed";
  font-weight: 100;
  font-style: normal;
  src: url("/assets/fonts/linotype/neue-helvetica-37-condensed-thin.eot?#iefix");
  src: url("/assets/fonts/linotype/neue-helvetica-37-condensed-thin.eot?#iefix") format("eot"), url("/assets/fonts/linotype/neue-helvetica-37-condensed-thin.woff2") format("woff2"), url("/assets/fonts/linotype/neue-helvetica-37-condensed-thin.woff") format("woff"), url("/assets/fonts/linotype/neue-helvetica-37-condensed-thin.ttf") format("truetype");
}
@font-face {
  font-display: fallback;
  font-family: "neue-helvetica-condensed";
  font-weight: 100;
  font-style: italic;
  src: url("/assets/fonts/linotype/neue-helvetica-37-condensed-thin-italic.eot?#iefix");
  src: url("/assets/fonts/linotype/neue-helvetica-37-condensed-thin-italic.eot?#iefix") format("eot"), url("/assets/fonts/linotype/neue-helvetica-37-condensed-thin-italic.woff2") format("woff2"), url("/assets/fonts/linotype/neue-helvetica-37-condensed-thin-italic.woff") format("woff"), url("/assets/fonts/linotype/neue-helvetica-37-condensed-thin-italic.ttf") format("truetype");
}
@font-face {
  font-display: fallback;
  font-family: "neue-helvetica-condensed";
  font-weight: 300;
  font-style: normal;
  src: url("/assets/fonts/linotype/neue-helvetica-47-condensed-light.eot?#iefix");
  src: url("/assets/fonts/linotype/neue-helvetica-47-condensed-light.eot?#iefix") format("eot"), url("/assets/fonts/linotype/neue-helvetica-47-condensed-light.woff2") format("woff2"), url("/assets/fonts/linotype/neue-helvetica-47-condensed-light.woff") format("woff"), url("/assets/fonts/linotype/neue-helvetica-47-condensed-light.ttf") format("truetype");
}
@font-face {
  font-display: fallback;
  font-family: "neue-helvetica-condensed";
  font-weight: 300;
  font-style: italic;
  src: url("/assets/fonts/linotype/neue-helvetica-47-condensed-light-italic.eot?#iefix");
  src: url("/assets/fonts/linotype/neue-helvetica-47-condensed-light-italic.eot?#iefix") format("eot"), url("/assets/fonts/linotype/neue-helvetica-47-condensed-light-italic.woff2") format("woff2"), url("/assets/fonts/linotype/neue-helvetica-47-condensed-light-italic.woff") format("woff"), url("/assets/fonts/linotype/neue-helvetica-47-condensed-light-italic.ttf") format("truetype");
}
@font-face {
  font-display: fallback;
  font-family: "neue-helvetica-condensed";
  font-weight: 400;
  font-style: normal;
  src: url("/assets/fonts/linotype/neue-helvetica-57-condensed.eot?#iefix");
  src: url("/assets/fonts/linotype/neue-helvetica-57-condensed.eot?#iefix") format("eot"), url("/assets/fonts/linotype/neue-helvetica-57-condensed.woff2") format("woff2"), url("/assets/fonts/linotype/neue-helvetica-57-condensed.woff") format("woff"), url("/assets/fonts/linotype/neue-helvetica-57-condensed.ttf") format("truetype");
}
@font-face {
  font-display: fallback;
  font-family: "neue-helvetica-condensed";
  font-weight: 400;
  font-style: italic;
  src: url("/assets/fonts/linotype/neue-helvetica-57-condensed-italic.eot?#iefix");
  src: url("/assets/fonts/linotype/neue-helvetica-57-condensed-italic.eot?#iefix") format("eot"), url("/assets/fonts/linotype/neue-helvetica-57-condensed-italic.woff2") format("woff2"), url("/assets/fonts/linotype/neue-helvetica-57-condensed-italic.woff") format("woff"), url("/assets/fonts/linotype/neue-helvetica-57-condensed-italic.ttf") format("truetype");
}
@font-face {
  font-display: fallback;
  font-family: "neue-helvetica-condensed";
  font-weight: 500;
  font-style: normal;
  src: url("/assets/fonts/linotype/neue-helvetica-67-condensed-medium.eot?#iefix");
  src: url("/assets/fonts/linotype/neue-helvetica-67-condensed-medium.eot?#iefix") format("eot"), url("/assets/fonts/linotype/neue-helvetica-67-condensed-medium.woff2") format("woff2"), url("/assets/fonts/linotype/neue-helvetica-67-condensed-medium.woff") format("woff"), url("/assets/fonts/linotype/neue-helvetica-67-condensed-medium.ttf") format("truetype");
}
@font-face {
  font-display: fallback;
  font-family: "neue-helvetica-condensed";
  font-weight: 500;
  font-style: italic;
  src: url("/assets/fonts/linotype/neue-helvetica-67-condensed-medium-italic.eot?#iefix");
  src: url("/assets/fonts/linotype/neue-helvetica-67-condensed-medium-italic.eot?#iefix") format("eot"), url("/assets/fonts/linotype/neue-helvetica-67-condensed-medium-italic.woff2") format("woff2"), url("/assets/fonts/linotype/neue-helvetica-67-condensed-medium-italic.woff") format("woff"), url("/assets/fonts/linotype/neue-helvetica-67-condensed-medium-italic.ttf") format("truetype");
}
@font-face {
  font-display: fallback;
  font-family: "neue-helvetica-condensed";
  font-weight: 700;
  font-style: normal;
  src: url("/assets/fonts/linotype/neue-helvetica-77-condensed-bold.eot?#iefix");
  src: url("/assets/fonts/linotype/neue-helvetica-77-condensed-bold.eot?#iefix") format("eot"), url("/assets/fonts/linotype/neue-helvetica-77-condensed-bold.woff2") format("woff2"), url("/assets/fonts/linotype/neue-helvetica-77-condensed-bold.woff") format("woff"), url("/assets/fonts/linotype/neue-helvetica-77-condensed-bold.ttf") format("truetype");
}
@font-face {
  font-display: fallback;
  font-family: "neue-helvetica-condensed";
  font-weight: 700;
  font-style: italic;
  src: url("/assets/fonts/linotype/neue-helvetica-77-condensed-bold-italic.eot?#iefix");
  src: url("/assets/fonts/linotype/neue-helvetica-77-condensed-bold-italic.eot?#iefix") format("eot"), url("/assets/fonts/linotype/neue-helvetica-77-condensed-bold-italic.woff2") format("woff2"), url("/assets/fonts/linotype/neue-helvetica-77-condensed-bold-italic.woff") format("woff"), url("/assets/fonts/linotype/neue-helvetica-77-condensed-bold-italic.ttf") format("truetype");
}
@font-face {
  font-display: fallback;
  font-family: "neue-helvetica-condensed";
  font-weight: 900;
  font-style: normal;
  src: url("/assets/fonts/linotype/neue-helvetica-97-condensed-black?#iefix");
  src: url("/assets/fonts/linotype/neue-helvetica-97-condensed-black.eot?#iefix") format("eot"), url("/assets/fonts/linotype/neue-helvetica-97-condensed-black.woff2") format("woff2"), url("/assets/fonts/linotype/neue-helvetica-97-condensed-black.woff") format("woff"), url("/assets/fonts/linotype/neue-helvetica-97-condensed-black.ttf") format("truetype");
}
@font-face {
  font-display: fallback;
  font-family: "neue-helvetica-condensed";
  font-weight: 900;
  font-style: italic;
  src: url("/assets/fonts/linotype/neue-helvetica-97-condensed-black-italic?#iefix");
  src: url("/assets/fonts/linotype/neue-helvetica-97-condensed-black-italic.eot?#iefix") format("eot"), url("/assets/fonts/linotype/neue-helvetica-97-condensed-black-italic.woff2") format("woff2"), url("/assets/fonts/linotype/neue-helvetica-97-condensed-black-italic.woff") format("woff"), url("/assets/fonts/linotype/neue-helvetica-97-condensed-black-italic.ttf") format("truetype");
}
/* --- ICON FONTS --- */
@font-face {
  font-display: fallback;
  font-family: "icons";
  font-weight: 400;
  font-style: normal;
  src: url("/assets/fonts/icons.woff") format("woff");
}
@font-face {
  font-display: fallback;
  font-family: "fontawesome";
  font-weight: 400;
  font-style: normal;
  src: url("/assets/fonts/fontawesome.woff") format("woff"), url("/assets/fonts/fontawesome.woff2") format("woff");
}
/* --- FAMILY DECLARATION MIXINS --- */
/* --- FONT WEIGHT MIXINS --- */
[class^="icon-"],
[class*=" icon-"] {
  font-family: "icons" !important;
  speak: none;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
}
.icon-air-play:before {
  content: "\e900";
}
.icon-align-center:before {
  content: "\e901";
}
.icon-align-justify:before {
  content: "\e902";
}
.icon-align-left:before {
  content: "\e903";
}
.icon-align-right:before {
  content: "\e904";
}
.icon-alt:before {
  content: "\e905";
}
.icon-anchor:before {
  content: "\e906";
}
.icon-archive:before {
  content: "\e907";
}
.icon-arrow-down:before {
  content: "\e908";
}
.icon-arrow-left:before {
  content: "\e909";
}
.icon-arrow-right:before {
  content: "\e90a";
}
.icon-arrow-up:before {
  content: "\e90b";
}
.icon-bag:before {
  content: "\e90c";
}
.icon-ban:before {
  content: "\e90d";
}
.icon-bar-graph-2:before {
  content: "\e90e";
}
.icon-bar-graph:before {
  content: "\e90f";
}
.icon-battery:before {
  content: "\e910";
}
.icon-bell:before {
  content: "\e911";
}
.icon-book:before {
  content: "\e912";
}
.icon-box:before {
  content: "\e913";
}
.icon-briefcase:before {
  content: "\e914";
}
.icon-camera:before {
  content: "\e915";
}
.icon-check:before {
  content: "\e916";
}
.icon-circle-check:before {
  content: "\e917";
}
.icon-circle-cross:before {
  content: "\e918";
}
.icon-circle-minus:before {
  content: "\e919";
}
.icon-circle-plus:before {
  content: "\e91a";
}
.icon-clipboard:before {
  content: "\e91b";
}
.icon-clock:before {
  content: "\e91c";
}
.icon-cloud-download:before {
  content: "\e91d";
}
.icon-cloud-upload:before {
  content: "\e91e";
}
.icon-cloud:before {
  content: "\e91f";
}
.icon-cog:before {
  content: "\e920";
}
.icon-columns:before {
  content: "\e921";
}
.icon-command:before {
  content: "\e922";
}
.icon-content-left:before {
  content: "\e923";
}
.icon-content-right:before {
  content: "\e924";
}
.icon-contract:before {
  content: "\e925";
}
.icon-cross:before {
  content: "\e926";
}
.icon-delete:before {
  content: "\e927";
}
.icon-disc:before {
  content: "\e928";
}
.icon-download:before {
  content: "\e929";
}
.icon-drop:before {
  content: "\e92a";
}
.icon-ellipsis:before {
  content: "\e92b";
}
.icon-esc:before {
  content: "\e92c";
}
.icon-expand:before {
  content: "\e92d";
}
.icon-eye:before {
  content: "\e92e";
}
.icon-fast-forward:before {
  content: "\e92f";
}
.icon-file-add:before {
  content: "\e930";
}
.icon-file-subtract:before {
  content: "\e931";
}
.icon-file:before {
  content: "\e932";
}
.icon-flag:before {
  content: "\e933";
}
.icon-folder:before {
  content: "\e934";
}
.icon-globe:before {
  content: "\e935";
}
.icon-grid-2:before {
  content: "\e936";
}
.icon-grid:before {
  content: "\e937";
}
.icon-head:before {
  content: "\e938";
}
.icon-heart:before {
  content: "\e939";
}
.icon-help:before {
  content: "\e93a";
}
.icon-image:before {
  content: "\e93b";
}
.icon-inbox:before {
  content: "\e93c";
}
.icon-layers:before {
  content: "\e93d";
}
.icon-layout:before {
  content: "\e93e";
}
.icon-link:before {
  content: "\e93f";
}
.icon-loader:before {
  content: "\e940";
}
.icon-location-2:before {
  content: "\e941";
}
.icon-location:before {
  content: "\e942";
}
.icon-lock:before {
  content: "\e943";
}
.icon-mail:before {
  content: "\e944";
}
.icon-map:before {
  content: "\e945";
}
.icon-marquee-minus:before {
  content: "\e946";
}
.icon-marquee-plus:before {
  content: "\e947";
}
.icon-marquee:before {
  content: "\e948";
}
.icon-maximize:before {
  content: "\e949";
}
.icon-menu:before {
  content: "\e94a";
}
.icon-microphone:before {
  content: "\e94b";
}
.icon-minimize:before {
  content: "\e94c";
}
.icon-minus:before {
  content: "\e94d";
}
.icon-monitor:before {
  content: "\e94e";
}
.icon-moon:before {
  content: "\e94f";
}
.icon-move:before {
  content: "\e950";
}
.icon-mute:before {
  content: "\e951";
}
.icon-open:before {
  content: "\e952";
}
.icon-outbox:before {
  content: "\e953";
}
.icon-paper-clip:before {
  content: "\e954";
}
.icon-paper-stack:before {
  content: "\e955";
}
.icon-paper:before {
  content: "\e956";
}
.icon-paragraph:before {
  content: "\e957";
}
.icon-pause:before {
  content: "\e958";
}
.icon-pie-graph:before {
  content: "\e959";
}
.icon-play:before {
  content: "\e95a";
}
.icon-plus:before {
  content: "\e95b";
}
.icon-power:before {
  content: "\e95c";
}
.icon-printer:before {
  content: "\e95d";
}
.icon-record:before {
  content: "\e95e";
}
.icon-reload:before {
  content: "\e95f";
}
.icon-repeat:before {
  content: "\e960";
}
.icon-reply:before {
  content: "\e961";
}
.icon-rewind:before {
  content: "\e962";
}
.icon-ribbon:before {
  content: "\e963";
}
.icon-search:before {
  content: "\e964";
}
.icon-server:before {
  content: "\e965";
}
.icon-share:before {
  content: "\e966";
}
.icon-shuffle:before {
  content: "\e967";
}
.icon-signal:before {
  content: "\e968";
}
.icon-skip-back:before {
  content: "\e969";
}
.icon-skip-forward:before {
  content: "\e96a";
}
.icon-speech-bubble:before {
  content: "\e96b";
}
.icon-square-check:before {
  content: "\e96c";
}
.icon-square-cross:before {
  content: "\e96d";
}
.icon-square-minus:before {
  content: "\e96e";
}
.icon-square-plus:before {
  content: "\e96f";
}
.icon-stack-2:before {
  content: "\e970";
}
.icon-stack:before {
  content: "\e971";
}
.icon-star:before {
  content: "\e972";
}
.icon-stop:before {
  content: "\e973";
}
.icon-sun:before {
  content: "\e974";
}
.icon-tag:before {
  content: "\e975";
}
.icon-target:before {
  content: "\e976";
}
.icon-thermometer:before {
  content: "\e977";
}
.icon-toggle:before {
  content: "\e978";
}
.icon-trash:before {
  content: "\e979";
}
.icon-umbrella:before {
  content: "\e97a";
}
.icon-unlock:before {
  content: "\e97b";
}
.icon-upload:before {
  content: "\e97c";
}
.icon-video:before {
  content: "\e97d";
}
.icon-volume:before {
  content: "\e97e";
}
.icon-watch:before {
  content: "\e97f";
}
.icon-zoom-in:before {
  content: "\e980";
}
.icon-zoom-out:before {
  content: "\e981";
}
/*!
  This has been modified slightly.
  Font declaration was moved out of this scope.
  We should keep font declarations in one place.
 */
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 fontawesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.33333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}
.fa-2x {
  font-size: 2em;
}
.fa-3x {
  font-size: 3em;
}
.fa-4x {
  font-size: 4em;
}
.fa-5x {
  font-size: 5em;
}
.fa-fw {
  width: 1.28571429em;
  text-align: center;
}
.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none;
}
.fa-ul > li {
  position: relative;
}
.fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: 0.14285714em;
  text-align: center;
}
.fa-li.fa-lg {
  left: -1.85714286em;
}
.fa-border {
  padding: 0.2em 0.25em 0.15em;
  border: solid 0.08em #eeeeee;
  border-radius: 0.1em;
}
.fa-pull-left {
  float: left;
}
.fa-pull-right {
  float: right;
}
.fa.fa-pull-left {
  margin-right: 0.3em;
}
.fa.fa-pull-right {
  margin-left: 0.3em;
}
/* Deprecated as of 4.4.0 */
.pull-right {
  float: right;
}
.pull-left {
  float: left;
}
.fa.pull-left {
  margin-right: 0.3em;
}
.fa.pull-right {
  margin-left: 0.3em;
}
.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}
.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}
@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.fa-rotate-90 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.fa-rotate-180 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.fa-rotate-270 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}
.fa-flip-horizontal {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}
.fa-flip-vertical {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
  -webkit-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1);
}
:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  filter: none;
}
.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}
.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}
.fa-stack-1x {
  line-height: inherit;
}
.fa-stack-2x {
  font-size: 2em;
}
.fa-inverse {
  color: #ffffff;
}
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-glass:before {
  content: "\f000";
}
.fa-music:before {
  content: "\f001";
}
.fa-search:before {
  content: "\f002";
}
.fa-envelope-o:before {
  content: "\f003";
}
.fa-heart:before {
  content: "\f004";
}
.fa-star:before {
  content: "\f005";
}
.fa-star-o:before {
  content: "\f006";
}
.fa-user:before {
  content: "\f007";
}
.fa-film:before {
  content: "\f008";
}
.fa-th-large:before {
  content: "\f009";
}
.fa-th:before {
  content: "\f00a";
}
.fa-th-list:before {
  content: "\f00b";
}
.fa-check:before {
  content: "\f00c";
}
.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "\f00d";
}
.fa-search-plus:before {
  content: "\f00e";
}
.fa-search-minus:before {
  content: "\f010";
}
.fa-power-off:before {
  content: "\f011";
}
.fa-signal:before {
  content: "\f012";
}
.fa-gear:before,
.fa-cog:before {
  content: "\f013";
}
.fa-trash-o:before {
  content: "\f014";
}
.fa-home:before {
  content: "\f015";
}
.fa-file-o:before {
  content: "\f016";
}
.fa-clock-o:before {
  content: "\f017";
}
.fa-road:before {
  content: "\f018";
}
.fa-download:before {
  content: "\f019";
}
.fa-arrow-circle-o-down:before {
  content: "\f01a";
}
.fa-arrow-circle-o-up:before {
  content: "\f01b";
}
.fa-inbox:before {
  content: "\f01c";
}
.fa-play-circle-o:before {
  content: "\f01d";
}
.fa-rotate-right:before,
.fa-repeat:before {
  content: "\f01e";
}
.fa-refresh:before {
  content: "\f021";
}
.fa-list-alt:before {
  content: "\f022";
}
.fa-lock:before {
  content: "\f023";
}
.fa-flag:before {
  content: "\f024";
}
.fa-headphones:before {
  content: "\f025";
}
.fa-volume-off:before {
  content: "\f026";
}
.fa-volume-down:before {
  content: "\f027";
}
.fa-volume-up:before {
  content: "\f028";
}
.fa-qrcode:before {
  content: "\f029";
}
.fa-barcode:before {
  content: "\f02a";
}
.fa-tag:before {
  content: "\f02b";
}
.fa-tags:before {
  content: "\f02c";
}
.fa-book:before {
  content: "\f02d";
}
.fa-bookmark:before {
  content: "\f02e";
}
.fa-print:before {
  content: "\f02f";
}
.fa-camera:before {
  content: "\f030";
}
.fa-font:before {
  content: "\f031";
}
.fa-bold:before {
  content: "\f032";
}
.fa-italic:before {
  content: "\f033";
}
.fa-text-height:before {
  content: "\f034";
}
.fa-text-width:before {
  content: "\f035";
}
.fa-align-left:before {
  content: "\f036";
}
.fa-align-center:before {
  content: "\f037";
}
.fa-align-right:before {
  content: "\f038";
}
.fa-align-justify:before {
  content: "\f039";
}
.fa-list:before {
  content: "\f03a";
}
.fa-dedent:before,
.fa-outdent:before {
  content: "\f03b";
}
.fa-indent:before {
  content: "\f03c";
}
.fa-video-camera:before {
  content: "\f03d";
}
.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "\f03e";
}
.fa-pencil:before {
  content: "\f040";
}
.fa-map-marker:before {
  content: "\f041";
}
.fa-adjust:before {
  content: "\f042";
}
.fa-tint:before {
  content: "\f043";
}
.fa-edit:before,
.fa-pencil-square-o:before {
  content: "\f044";
}
.fa-share-square-o:before {
  content: "\f045";
}
.fa-check-square-o:before {
  content: "\f046";
}
.fa-arrows:before {
  content: "\f047";
}
.fa-step-backward:before {
  content: "\f048";
}
.fa-fast-backward:before {
  content: "\f049";
}
.fa-backward:before {
  content: "\f04a";
}
.fa-play:before {
  content: "\f04b";
}
.fa-pause:before {
  content: "\f04c";
}
.fa-stop:before {
  content: "\f04d";
}
.fa-forward:before {
  content: "\f04e";
}
.fa-fast-forward:before {
  content: "\f050";
}
.fa-step-forward:before {
  content: "\f051";
}
.fa-eject:before {
  content: "\f052";
}
.fa-chevron-left:before {
  content: "\f053";
}
.fa-chevron-right:before {
  content: "\f054";
}
.fa-plus-circle:before {
  content: "\f055";
}
.fa-minus-circle:before {
  content: "\f056";
}
.fa-times-circle:before {
  content: "\f057";
}
.fa-check-circle:before {
  content: "\f058";
}
.fa-question-circle:before {
  content: "\f059";
}
.fa-info-circle:before {
  content: "\f05a";
}
.fa-crosshairs:before {
  content: "\f05b";
}
.fa-times-circle-o:before {
  content: "\f05c";
}
.fa-check-circle-o:before {
  content: "\f05d";
}
.fa-ban:before {
  content: "\f05e";
}
.fa-arrow-left:before {
  content: "\f060";
}
.fa-arrow-right:before {
  content: "\f061";
}
.fa-arrow-up:before {
  content: "\f062";
}
.fa-arrow-down:before {
  content: "\f063";
}
.fa-mail-forward:before,
.fa-share:before {
  content: "\f064";
}
.fa-expand:before {
  content: "\f065";
}
.fa-compress:before {
  content: "\f066";
}
.fa-plus:before {
  content: "\f067";
}
.fa-minus:before {
  content: "\f068";
}
.fa-asterisk:before {
  content: "\f069";
}
.fa-exclamation-circle:before {
  content: "\f06a";
}
.fa-gift:before {
  content: "\f06b";
}
.fa-leaf:before {
  content: "\f06c";
}
.fa-fire:before {
  content: "\f06d";
}
.fa-eye:before {
  content: "\f06e";
}
.fa-eye-slash:before {
  content: "\f070";
}
.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "\f071";
}
.fa-plane:before {
  content: "\f072";
}
.fa-calendar:before {
  content: "\f073";
}
.fa-random:before {
  content: "\f074";
}
.fa-comment:before {
  content: "\f075";
}
.fa-magnet:before {
  content: "\f076";
}
.fa-chevron-up:before {
  content: "\f077";
}
.fa-chevron-down:before {
  content: "\f078";
}
.fa-retweet:before {
  content: "\f079";
}
.fa-shopping-cart:before {
  content: "\f07a";
}
.fa-folder:before {
  content: "\f07b";
}
.fa-folder-open:before {
  content: "\f07c";
}
.fa-arrows-v:before {
  content: "\f07d";
}
.fa-arrows-h:before {
  content: "\f07e";
}
.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "\f080";
}
.fa-twitter-square:before {
  content: "\f081";
}
.fa-facebook-square:before {
  content: "\f082";
}
.fa-camera-retro:before {
  content: "\f083";
}
.fa-key:before {
  content: "\f084";
}
.fa-gears:before,
.fa-cogs:before {
  content: "\f085";
}
.fa-comments:before {
  content: "\f086";
}
.fa-thumbs-o-up:before {
  content: "\f087";
}
.fa-thumbs-o-down:before {
  content: "\f088";
}
.fa-star-half:before {
  content: "\f089";
}
.fa-heart-o:before {
  content: "\f08a";
}
.fa-sign-out:before {
  content: "\f08b";
}
.fa-linkedin-square:before {
  content: "\f08c";
}
.fa-thumb-tack:before {
  content: "\f08d";
}
.fa-external-link:before {
  content: "\f08e";
}
.fa-sign-in:before {
  content: "\f090";
}
.fa-trophy:before {
  content: "\f091";
}
.fa-github-square:before {
  content: "\f092";
}
.fa-upload:before {
  content: "\f093";
}
.fa-lemon-o:before {
  content: "\f094";
}
.fa-phone:before {
  content: "\f095";
}
.fa-square-o:before {
  content: "\f096";
}
.fa-bookmark-o:before {
  content: "\f097";
}
.fa-phone-square:before {
  content: "\f098";
}
.fa-twitter:before {
  content: "\f099";
}
.fa-facebook-f:before,
.fa-facebook:before {
  content: "\f09a";
}
.fa-github:before {
  content: "\f09b";
}
.fa-unlock:before {
  content: "\f09c";
}
.fa-credit-card:before {
  content: "\f09d";
}
.fa-feed:before,
.fa-rss:before {
  content: "\f09e";
}
.fa-hdd-o:before {
  content: "\f0a0";
}
.fa-bullhorn:before {
  content: "\f0a1";
}
.fa-bell:before {
  content: "\f0f3";
}
.fa-certificate:before {
  content: "\f0a3";
}
.fa-hand-o-right:before {
  content: "\f0a4";
}
.fa-hand-o-left:before {
  content: "\f0a5";
}
.fa-hand-o-up:before {
  content: "\f0a6";
}
.fa-hand-o-down:before {
  content: "\f0a7";
}
.fa-arrow-circle-left:before {
  content: "\f0a8";
}
.fa-arrow-circle-right:before {
  content: "\f0a9";
}
.fa-arrow-circle-up:before {
  content: "\f0aa";
}
.fa-arrow-circle-down:before {
  content: "\f0ab";
}
.fa-globe:before {
  content: "\f0ac";
}
.fa-wrench:before {
  content: "\f0ad";
}
.fa-tasks:before {
  content: "\f0ae";
}
.fa-filter:before {
  content: "\f0b0";
}
.fa-briefcase:before {
  content: "\f0b1";
}
.fa-arrows-alt:before {
  content: "\f0b2";
}
.fa-group:before,
.fa-users:before {
  content: "\f0c0";
}
.fa-chain:before,
.fa-link:before {
  content: "\f0c1";
}
.fa-cloud:before {
  content: "\f0c2";
}
.fa-flask:before {
  content: "\f0c3";
}
.fa-cut:before,
.fa-scissors:before {
  content: "\f0c4";
}
.fa-copy:before,
.fa-files-o:before {
  content: "\f0c5";
}
.fa-paperclip:before {
  content: "\f0c6";
}
.fa-save:before,
.fa-floppy-o:before {
  content: "\f0c7";
}
.fa-square:before {
  content: "\f0c8";
}
.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "\f0c9";
}
.fa-list-ul:before {
  content: "\f0ca";
}
.fa-list-ol:before {
  content: "\f0cb";
}
.fa-strikethrough:before {
  content: "\f0cc";
}
.fa-underline:before {
  content: "\f0cd";
}
.fa-table:before {
  content: "\f0ce";
}
.fa-magic:before {
  content: "\f0d0";
}
.fa-truck:before {
  content: "\f0d1";
}
.fa-pinterest:before {
  content: "\f0d2";
}
.fa-pinterest-square:before {
  content: "\f0d3";
}
.fa-google-plus-square:before {
  content: "\f0d4";
}
.fa-google-plus:before {
  content: "\f0d5";
}
.fa-money:before {
  content: "\f0d6";
}
.fa-caret-down:before {
  content: "\f0d7";
}
.fa-caret-up:before {
  content: "\f0d8";
}
.fa-caret-left:before {
  content: "\f0d9";
}
.fa-caret-right:before {
  content: "\f0da";
}
.fa-columns:before {
  content: "\f0db";
}
.fa-unsorted:before,
.fa-sort:before {
  content: "\f0dc";
}
.fa-sort-down:before,
.fa-sort-desc:before {
  content: "\f0dd";
}
.fa-sort-up:before,
.fa-sort-asc:before {
  content: "\f0de";
}
.fa-envelope:before {
  content: "\f0e0";
}
.fa-linkedin:before {
  content: "\f0e1";
}
.fa-rotate-left:before,
.fa-undo:before {
  content: "\f0e2";
}
.fa-legal:before,
.fa-gavel:before {
  content: "\f0e3";
}
.fa-dashboard:before,
.fa-tachometer:before {
  content: "\f0e4";
}
.fa-comment-o:before {
  content: "\f0e5";
}
.fa-comments-o:before {
  content: "\f0e6";
}
.fa-flash:before,
.fa-bolt:before {
  content: "\f0e7";
}
.fa-sitemap:before {
  content: "\f0e8";
}
.fa-umbrella:before {
  content: "\f0e9";
}
.fa-paste:before,
.fa-clipboard:before {
  content: "\f0ea";
}
.fa-lightbulb-o:before {
  content: "\f0eb";
}
.fa-exchange:before {
  content: "\f0ec";
}
.fa-cloud-download:before {
  content: "\f0ed";
}
.fa-cloud-upload:before {
  content: "\f0ee";
}
.fa-user-md:before {
  content: "\f0f0";
}
.fa-stethoscope:before {
  content: "\f0f1";
}
.fa-suitcase:before {
  content: "\f0f2";
}
.fa-bell-o:before {
  content: "\f0a2";
}
.fa-coffee:before {
  content: "\f0f4";
}
.fa-cutlery:before {
  content: "\f0f5";
}
.fa-file-text-o:before {
  content: "\f0f6";
}
.fa-building-o:before {
  content: "\f0f7";
}
.fa-hospital-o:before {
  content: "\f0f8";
}
.fa-ambulance:before {
  content: "\f0f9";
}
.fa-medkit:before {
  content: "\f0fa";
}
.fa-fighter-jet:before {
  content: "\f0fb";
}
.fa-beer:before {
  content: "\f0fc";
}
.fa-h-square:before {
  content: "\f0fd";
}
.fa-plus-square:before {
  content: "\f0fe";
}
.fa-angle-double-left:before {
  content: "\f100";
}
.fa-angle-double-right:before {
  content: "\f101";
}
.fa-angle-double-up:before {
  content: "\f102";
}
.fa-angle-double-down:before {
  content: "\f103";
}
.fa-angle-left:before {
  content: "\f104";
}
.fa-angle-right:before {
  content: "\f105";
}
.fa-angle-up:before {
  content: "\f106";
}
.fa-angle-down:before {
  content: "\f107";
}
.fa-desktop:before {
  content: "\f108";
}
.fa-laptop:before {
  content: "\f109";
}
.fa-tablet:before {
  content: "\f10a";
}
.fa-mobile-phone:before,
.fa-mobile:before {
  content: "\f10b";
}
.fa-circle-o:before {
  content: "\f10c";
}
.fa-quote-left:before {
  content: "\f10d";
}
.fa-quote-right:before {
  content: "\f10e";
}
.fa-spinner:before {
  content: "\f110";
}
.fa-circle:before {
  content: "\f111";
}
.fa-mail-reply:before,
.fa-reply:before {
  content: "\f112";
}
.fa-github-alt:before {
  content: "\f113";
}
.fa-folder-o:before {
  content: "\f114";
}
.fa-folder-open-o:before {
  content: "\f115";
}
.fa-smile-o:before {
  content: "\f118";
}
.fa-frown-o:before {
  content: "\f119";
}
.fa-meh-o:before {
  content: "\f11a";
}
.fa-gamepad:before {
  content: "\f11b";
}
.fa-keyboard-o:before {
  content: "\f11c";
}
.fa-flag-o:before {
  content: "\f11d";
}
.fa-flag-checkered:before {
  content: "\f11e";
}
.fa-terminal:before {
  content: "\f120";
}
.fa-code:before {
  content: "\f121";
}
.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "\f122";
}
.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "\f123";
}
.fa-location-arrow:before {
  content: "\f124";
}
.fa-crop:before {
  content: "\f125";
}
.fa-code-fork:before {
  content: "\f126";
}
.fa-unlink:before,
.fa-chain-broken:before {
  content: "\f127";
}
.fa-question:before {
  content: "\f128";
}
.fa-info:before {
  content: "\f129";
}
.fa-exclamation:before {
  content: "\f12a";
}
.fa-superscript:before {
  content: "\f12b";
}
.fa-subscript:before {
  content: "\f12c";
}
.fa-eraser:before {
  content: "\f12d";
}
.fa-puzzle-piece:before {
  content: "\f12e";
}
.fa-microphone:before {
  content: "\f130";
}
.fa-microphone-slash:before {
  content: "\f131";
}
.fa-shield:before {
  content: "\f132";
}
.fa-calendar-o:before {
  content: "\f133";
}
.fa-fire-extinguisher:before {
  content: "\f134";
}
.fa-rocket:before {
  content: "\f135";
}
.fa-maxcdn:before {
  content: "\f136";
}
.fa-chevron-circle-left:before {
  content: "\f137";
}
.fa-chevron-circle-right:before {
  content: "\f138";
}
.fa-chevron-circle-up:before {
  content: "\f139";
}
.fa-chevron-circle-down:before {
  content: "\f13a";
}
.fa-html5:before {
  content: "\f13b";
}
.fa-css3:before {
  content: "\f13c";
}
.fa-anchor:before {
  content: "\f13d";
}
.fa-unlock-alt:before {
  content: "\f13e";
}
.fa-bullseye:before {
  content: "\f140";
}
.fa-ellipsis-h:before {
  content: "\f141";
}
.fa-ellipsis-v:before {
  content: "\f142";
}
.fa-rss-square:before {
  content: "\f143";
}
.fa-play-circle:before {
  content: "\f144";
}
.fa-ticket:before {
  content: "\f145";
}
.fa-minus-square:before {
  content: "\f146";
}
.fa-minus-square-o:before {
  content: "\f147";
}
.fa-level-up:before {
  content: "\f148";
}
.fa-level-down:before {
  content: "\f149";
}
.fa-check-square:before {
  content: "\f14a";
}
.fa-pencil-square:before {
  content: "\f14b";
}
.fa-external-link-square:before {
  content: "\f14c";
}
.fa-share-square:before {
  content: "\f14d";
}
.fa-compass:before {
  content: "\f14e";
}
.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "\f150";
}
.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "\f151";
}
.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "\f152";
}
.fa-euro:before,
.fa-eur:before {
  content: "\f153";
}
.fa-gbp:before {
  content: "\f154";
}
.fa-dollar:before,
.fa-usd:before {
  content: "\f155";
}
.fa-rupee:before,
.fa-inr:before {
  content: "\f156";
}
.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "\f157";
}
.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "\f158";
}
.fa-won:before,
.fa-krw:before {
  content: "\f159";
}
.fa-bitcoin:before,
.fa-btc:before {
  content: "\f15a";
}
.fa-file:before {
  content: "\f15b";
}
.fa-file-text:before {
  content: "\f15c";
}
.fa-sort-alpha-asc:before {
  content: "\f15d";
}
.fa-sort-alpha-desc:before {
  content: "\f15e";
}
.fa-sort-amount-asc:before {
  content: "\f160";
}
.fa-sort-amount-desc:before {
  content: "\f161";
}
.fa-sort-numeric-asc:before {
  content: "\f162";
}
.fa-sort-numeric-desc:before {
  content: "\f163";
}
.fa-thumbs-up:before {
  content: "\f164";
}
.fa-thumbs-down:before {
  content: "\f165";
}
.fa-youtube-square:before {
  content: "\f166";
}
.fa-youtube:before {
  content: "\f167";
}
.fa-xing:before {
  content: "\f168";
}
.fa-xing-square:before {
  content: "\f169";
}
.fa-youtube-play:before {
  content: "\f16a";
}
.fa-dropbox:before {
  content: "\f16b";
}
.fa-stack-overflow:before {
  content: "\f16c";
}
.fa-instagram:before {
  content: "\f16d";
}
.fa-flickr:before {
  content: "\f16e";
}
.fa-adn:before {
  content: "\f170";
}
.fa-bitbucket:before {
  content: "\f171";
}
.fa-bitbucket-square:before {
  content: "\f172";
}
.fa-tumblr:before {
  content: "\f173";
}
.fa-tumblr-square:before {
  content: "\f174";
}
.fa-long-arrow-down:before {
  content: "\f175";
}
.fa-long-arrow-up:before {
  content: "\f176";
}
.fa-long-arrow-left:before {
  content: "\f177";
}
.fa-long-arrow-right:before {
  content: "\f178";
}
.fa-apple:before {
  content: "\f179";
}
.fa-windows:before {
  content: "\f17a";
}
.fa-android:before {
  content: "\f17b";
}
.fa-linux:before {
  content: "\f17c";
}
.fa-dribbble:before {
  content: "\f17d";
}
.fa-skype:before {
  content: "\f17e";
}
.fa-foursquare:before {
  content: "\f180";
}
.fa-trello:before {
  content: "\f181";
}
.fa-female:before {
  content: "\f182";
}
.fa-male:before {
  content: "\f183";
}
.fa-gittip:before,
.fa-gratipay:before {
  content: "\f184";
}
.fa-sun-o:before {
  content: "\f185";
}
.fa-moon-o:before {
  content: "\f186";
}
.fa-archive:before {
  content: "\f187";
}
.fa-bug:before {
  content: "\f188";
}
.fa-vk:before {
  content: "\f189";
}
.fa-weibo:before {
  content: "\f18a";
}
.fa-renren:before {
  content: "\f18b";
}
.fa-pagelines:before {
  content: "\f18c";
}
.fa-stack-exchange:before {
  content: "\f18d";
}
.fa-arrow-circle-o-right:before {
  content: "\f18e";
}
.fa-arrow-circle-o-left:before {
  content: "\f190";
}
.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "\f191";
}
.fa-dot-circle-o:before {
  content: "\f192";
}
.fa-wheelchair:before {
  content: "\f193";
}
.fa-vimeo-square:before {
  content: "\f194";
}
.fa-turkish-lira:before,
.fa-try:before {
  content: "\f195";
}
.fa-plus-square-o:before {
  content: "\f196";
}
.fa-space-shuttle:before {
  content: "\f197";
}
.fa-slack:before {
  content: "\f198";
}
.fa-envelope-square:before {
  content: "\f199";
}
.fa-wordpress:before {
  content: "\f19a";
}
.fa-openid:before {
  content: "\f19b";
}
.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "\f19c";
}
.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "\f19d";
}
.fa-yahoo:before {
  content: "\f19e";
}
.fa-google:before {
  content: "\f1a0";
}
.fa-reddit:before {
  content: "\f1a1";
}
.fa-reddit-square:before {
  content: "\f1a2";
}
.fa-stumbleupon-circle:before {
  content: "\f1a3";
}
.fa-stumbleupon:before {
  content: "\f1a4";
}
.fa-delicious:before {
  content: "\f1a5";
}
.fa-digg:before {
  content: "\f1a6";
}
.fa-pied-piper:before {
  content: "\f1a7";
}
.fa-pied-piper-alt:before {
  content: "\f1a8";
}
.fa-drupal:before {
  content: "\f1a9";
}
.fa-joomla:before {
  content: "\f1aa";
}
.fa-language:before {
  content: "\f1ab";
}
.fa-fax:before {
  content: "\f1ac";
}
.fa-building:before {
  content: "\f1ad";
}
.fa-child:before {
  content: "\f1ae";
}
.fa-paw:before {
  content: "\f1b0";
}
.fa-spoon:before {
  content: "\f1b1";
}
.fa-cube:before {
  content: "\f1b2";
}
.fa-cubes:before {
  content: "\f1b3";
}
.fa-behance:before {
  content: "\f1b4";
}
.fa-behance-square:before {
  content: "\f1b5";
}
.fa-steam:before {
  content: "\f1b6";
}
.fa-steam-square:before {
  content: "\f1b7";
}
.fa-recycle:before {
  content: "\f1b8";
}
.fa-automobile:before,
.fa-car:before {
  content: "\f1b9";
}
.fa-cab:before,
.fa-taxi:before {
  content: "\f1ba";
}
.fa-tree:before {
  content: "\f1bb";
}
.fa-spotify:before {
  content: "\f1bc";
}
.fa-deviantart:before {
  content: "\f1bd";
}
.fa-soundcloud:before {
  content: "\f1be";
}
.fa-database:before {
  content: "\f1c0";
}
.fa-file-pdf-o:before {
  content: "\f1c1";
}
.fa-file-word-o:before {
  content: "\f1c2";
}
.fa-file-excel-o:before {
  content: "\f1c3";
}
.fa-file-powerpoint-o:before {
  content: "\f1c4";
}
.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "\f1c5";
}
.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "\f1c6";
}
.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "\f1c7";
}
.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "\f1c8";
}
.fa-file-code-o:before {
  content: "\f1c9";
}
.fa-vine:before {
  content: "\f1ca";
}
.fa-codepen:before {
  content: "\f1cb";
}
.fa-jsfiddle:before {
  content: "\f1cc";
}
.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "\f1cd";
}
.fa-circle-o-notch:before {
  content: "\f1ce";
}
.fa-ra:before,
.fa-rebel:before {
  content: "\f1d0";
}
.fa-ge:before,
.fa-empire:before {
  content: "\f1d1";
}
.fa-git-square:before {
  content: "\f1d2";
}
.fa-git:before {
  content: "\f1d3";
}
.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: "\f1d4";
}
.fa-tencent-weibo:before {
  content: "\f1d5";
}
.fa-qq:before {
  content: "\f1d6";
}
.fa-wechat:before,
.fa-weixin:before {
  content: "\f1d7";
}
.fa-send:before,
.fa-paper-plane:before {
  content: "\f1d8";
}
.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "\f1d9";
}
.fa-history:before {
  content: "\f1da";
}
.fa-circle-thin:before {
  content: "\f1db";
}
.fa-header:before {
  content: "\f1dc";
}
.fa-paragraph:before {
  content: "\f1dd";
}
.fa-sliders:before {
  content: "\f1de";
}
.fa-share-alt:before {
  content: "\f1e0";
}
.fa-share-alt-square:before {
  content: "\f1e1";
}
.fa-bomb:before {
  content: "\f1e2";
}
.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "\f1e3";
}
.fa-tty:before {
  content: "\f1e4";
}
.fa-binoculars:before {
  content: "\f1e5";
}
.fa-plug:before {
  content: "\f1e6";
}
.fa-slideshare:before {
  content: "\f1e7";
}
.fa-twitch:before {
  content: "\f1e8";
}
.fa-yelp:before {
  content: "\f1e9";
}
.fa-newspaper-o:before {
  content: "\f1ea";
}
.fa-wifi:before {
  content: "\f1eb";
}
.fa-calculator:before {
  content: "\f1ec";
}
.fa-paypal:before {
  content: "\f1ed";
}
.fa-google-wallet:before {
  content: "\f1ee";
}
.fa-cc-visa:before {
  content: "\f1f0";
}
.fa-cc-mastercard:before {
  content: "\f1f1";
}
.fa-cc-discover:before {
  content: "\f1f2";
}
.fa-cc-amex:before {
  content: "\f1f3";
}
.fa-cc-paypal:before {
  content: "\f1f4";
}
.fa-cc-stripe:before {
  content: "\f1f5";
}
.fa-bell-slash:before {
  content: "\f1f6";
}
.fa-bell-slash-o:before {
  content: "\f1f7";
}
.fa-trash:before {
  content: "\f1f8";
}
.fa-copyright:before {
  content: "\f1f9";
}
.fa-at:before {
  content: "\f1fa";
}
.fa-eyedropper:before {
  content: "\f1fb";
}
.fa-paint-brush:before {
  content: "\f1fc";
}
.fa-birthday-cake:before {
  content: "\f1fd";
}
.fa-area-chart:before {
  content: "\f1fe";
}
.fa-pie-chart:before {
  content: "\f200";
}
.fa-line-chart:before {
  content: "\f201";
}
.fa-lastfm:before {
  content: "\f202";
}
.fa-lastfm-square:before {
  content: "\f203";
}
.fa-toggle-off:before {
  content: "\f204";
}
.fa-toggle-on:before {
  content: "\f205";
}
.fa-bicycle:before {
  content: "\f206";
}
.fa-bus:before {
  content: "\f207";
}
.fa-ioxhost:before {
  content: "\f208";
}
.fa-angellist:before {
  content: "\f209";
}
.fa-cc:before {
  content: "\f20a";
}
.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "\f20b";
}
.fa-meanpath:before {
  content: "\f20c";
}
.fa-buysellads:before {
  content: "\f20d";
}
.fa-connectdevelop:before {
  content: "\f20e";
}
.fa-dashcube:before {
  content: "\f210";
}
.fa-forumbee:before {
  content: "\f211";
}
.fa-leanpub:before {
  content: "\f212";
}
.fa-sellsy:before {
  content: "\f213";
}
.fa-shirtsinbulk:before {
  content: "\f214";
}
.fa-simplybuilt:before {
  content: "\f215";
}
.fa-skyatlas:before {
  content: "\f216";
}
.fa-cart-plus:before {
  content: "\f217";
}
.fa-cart-arrow-down:before {
  content: "\f218";
}
.fa-diamond:before {
  content: "\f219";
}
.fa-ship:before {
  content: "\f21a";
}
.fa-user-secret:before {
  content: "\f21b";
}
.fa-motorcycle:before {
  content: "\f21c";
}
.fa-street-view:before {
  content: "\f21d";
}
.fa-heartbeat:before {
  content: "\f21e";
}
.fa-venus:before {
  content: "\f221";
}
.fa-mars:before {
  content: "\f222";
}
.fa-mercury:before {
  content: "\f223";
}
.fa-intersex:before,
.fa-transgender:before {
  content: "\f224";
}
.fa-transgender-alt:before {
  content: "\f225";
}
.fa-venus-double:before {
  content: "\f226";
}
.fa-mars-double:before {
  content: "\f227";
}
.fa-venus-mars:before {
  content: "\f228";
}
.fa-mars-stroke:before {
  content: "\f229";
}
.fa-mars-stroke-v:before {
  content: "\f22a";
}
.fa-mars-stroke-h:before {
  content: "\f22b";
}
.fa-neuter:before {
  content: "\f22c";
}
.fa-genderless:before {
  content: "\f22d";
}
.fa-facebook-official:before {
  content: "\f230";
}
.fa-pinterest-p:before {
  content: "\f231";
}
.fa-whatsapp:before {
  content: "\f232";
}
.fa-server:before {
  content: "\f233";
}
.fa-user-plus:before {
  content: "\f234";
}
.fa-user-times:before {
  content: "\f235";
}
.fa-hotel:before,
.fa-bed:before {
  content: "\f236";
}
.fa-viacoin:before {
  content: "\f237";
}
.fa-train:before {
  content: "\f238";
}
.fa-subway:before {
  content: "\f239";
}
.fa-medium:before {
  content: "\f23a";
}
.fa-yc:before,
.fa-y-combinator:before {
  content: "\f23b";
}
.fa-optin-monster:before {
  content: "\f23c";
}
.fa-opencart:before {
  content: "\f23d";
}
.fa-expeditedssl:before {
  content: "\f23e";
}
.fa-battery-4:before,
.fa-battery-full:before {
  content: "\f240";
}
.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: "\f241";
}
.fa-battery-2:before,
.fa-battery-half:before {
  content: "\f242";
}
.fa-battery-1:before,
.fa-battery-quarter:before {
  content: "\f243";
}
.fa-battery-0:before,
.fa-battery-empty:before {
  content: "\f244";
}
.fa-mouse-pointer:before {
  content: "\f245";
}
.fa-i-cursor:before {
  content: "\f246";
}
.fa-object-group:before {
  content: "\f247";
}
.fa-object-ungroup:before {
  content: "\f248";
}
.fa-sticky-note:before {
  content: "\f249";
}
.fa-sticky-note-o:before {
  content: "\f24a";
}
.fa-cc-jcb:before {
  content: "\f24b";
}
.fa-cc-diners-club:before {
  content: "\f24c";
}
.fa-clone:before {
  content: "\f24d";
}
.fa-balance-scale:before {
  content: "\f24e";
}
.fa-hourglass-o:before {
  content: "\f250";
}
.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: "\f251";
}
.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: "\f252";
}
.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: "\f253";
}
.fa-hourglass:before {
  content: "\f254";
}
.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: "\f255";
}
.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: "\f256";
}
.fa-hand-scissors-o:before {
  content: "\f257";
}
.fa-hand-lizard-o:before {
  content: "\f258";
}
.fa-hand-spock-o:before {
  content: "\f259";
}
.fa-hand-pointer-o:before {
  content: "\f25a";
}
.fa-hand-peace-o:before {
  content: "\f25b";
}
.fa-trademark:before {
  content: "\f25c";
}
.fa-registered:before {
  content: "\f25d";
}
.fa-creative-commons:before {
  content: "\f25e";
}
.fa-gg:before {
  content: "\f260";
}
.fa-gg-circle:before {
  content: "\f261";
}
.fa-tripadvisor:before {
  content: "\f262";
}
.fa-odnoklassniki:before {
  content: "\f263";
}
.fa-odnoklassniki-square:before {
  content: "\f264";
}
.fa-get-pocket:before {
  content: "\f265";
}
.fa-wikipedia-w:before {
  content: "\f266";
}
.fa-safari:before {
  content: "\f267";
}
.fa-chrome:before {
  content: "\f268";
}
.fa-firefox:before {
  content: "\f269";
}
.fa-opera:before {
  content: "\f26a";
}
.fa-internet-explorer:before {
  content: "\f26b";
}
.fa-tv:before,
.fa-television:before {
  content: "\f26c";
}
.fa-contao:before {
  content: "\f26d";
}
.fa-500px:before {
  content: "\f26e";
}
.fa-amazon:before {
  content: "\f270";
}
.fa-calendar-plus-o:before {
  content: "\f271";
}
.fa-calendar-minus-o:before {
  content: "\f272";
}
.fa-calendar-times-o:before {
  content: "\f273";
}
.fa-calendar-check-o:before {
  content: "\f274";
}
.fa-industry:before {
  content: "\f275";
}
.fa-map-pin:before {
  content: "\f276";
}
.fa-map-signs:before {
  content: "\f277";
}
.fa-map-o:before {
  content: "\f278";
}
.fa-map:before {
  content: "\f279";
}
.fa-commenting:before {
  content: "\f27a";
}
.fa-commenting-o:before {
  content: "\f27b";
}
.fa-houzz:before {
  content: "\f27c";
}
.fa-vimeo:before {
  content: "\f27d";
}
.fa-black-tie:before {
  content: "\f27e";
}
.fa-fonticons:before {
  content: "\f280";
}
.fa-reddit-alien:before {
  content: "\f281";
}
.fa-edge:before {
  content: "\f282";
}
.fa-credit-card-alt:before {
  content: "\f283";
}
.fa-codiepie:before {
  content: "\f284";
}
.fa-modx:before {
  content: "\f285";
}
.fa-fort-awesome:before {
  content: "\f286";
}
.fa-usb:before {
  content: "\f287";
}
.fa-product-hunt:before {
  content: "\f288";
}
.fa-mixcloud:before {
  content: "\f289";
}
.fa-scribd:before {
  content: "\f28a";
}
.fa-pause-circle:before {
  content: "\f28b";
}
.fa-pause-circle-o:before {
  content: "\f28c";
}
.fa-stop-circle:before {
  content: "\f28d";
}
.fa-stop-circle-o:before {
  content: "\f28e";
}
.fa-shopping-bag:before {
  content: "\f290";
}
.fa-shopping-basket:before {
  content: "\f291";
}
.fa-hashtag:before {
  content: "\f292";
}
.fa-bluetooth:before {
  content: "\f293";
}
.fa-bluetooth-b:before {
  content: "\f294";
}
.fa-percent:before {
  content: "\f295";
}
/* --- New Insight Organizer Colors  --- */
/* --- Overview Dashboard Colors --- */
/* --- NEW "INNOVU APPROVED" COLORS --- */
/* --- COLOR PALETTE --- */
/* --- TERTIARY COLORS --- */
/* --- TEXT COLORS --- */
/* --- BORDERS --- */
/* --- LOGIN SCREEN COLORS --- */
/* --- TABLE COLORS --- */
/* --- TEMPLATE SIZING VARIABLES --- */
/* --- BASE CSS --- */
html {
  font-family: "neue-helvetica", "Helvetica Neue", Helvetica, sans-serif !important;
  font-size: 62.5%;
  line-height: 12px;
  line-height: 1.2rem;
}
body {
  color: #202c47;
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 15px;
  line-height: 1.5rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #f8f8f8;
  overflow: hidden;
}
.page-wrap {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
}
.page-wrap > * {
  display: block;
}
a {
  text-decoration: none;
  color: #404d5e;
}
*:focus {
  outline: none;
}
select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #878d9c;
}
fieldset {
  border: none;
  margin: 0;
  padding: 0;
}
.hide-empty {
  display: none !important;
}
.icon-button {
  -webkit-appearance: none;
  background-color: transparent;
  border: none;
}
.incurred-footnote {
  padding: 10px 20px;
}
.file-icon {
  font-size: 30px;
  font-size: 3rem;
  line-height: 42px;
  line-height: 4.2rem;
  margin-right: 2rem;
}
.file-icon::before {
  font-family: "fontawesome" !important;
  content: "\f016";
}
.file-icon.doc::before,
.file-icon.docx::before {
  content: "\f1c2";
}
.file-icon.txt::before,
.file-icon.rtf::before {
  content: "\f0f6";
}
.file-icon.jpg::before,
.file-icon.jpeg::before,
.file-icon.png::before,
.file-icon.eps::before,
.file-icon.gif::before,
.file-icon.svg::before {
  content: "\f1c5";
}
.file-icon.zip::before,
.file-icon.gz::before,
.file-icon.gzip::before {
  content: "\f1c6";
}
.file-icon.pdf::before {
  content: "\f1c1";
}
.file-icon.csv::before,
.file-icon.xls::before,
.file-icon.xlsx::before {
  content: "\f1c3";
}
/* --- STANDARD CLASS STYLES --- */
main.main-content .page-content section h1.standard-h1 {
  font-size: 33px;
  font-size: 3.3rem;
  line-height: 33px;
  line-height: 3.3rem;
  font-family: "neue-helvetica", "Helvetica Neue", Helvetica, sans-serif !important;
  font-weight: 300;
  color: #202c47;
  margin: 0px 0px 20px 0px;
}
main.main-content .page-content section h2.standard-h2 {
  font-size: 20px;
  font-size: 2rem;
  line-height: 20px;
  line-height: 2rem;
  font-family: "neue-helvetica", "Helvetica Neue", Helvetica, sans-serif !important;
  font-weight: 400;
  color: #202c47;
  margin: 0px 0px 20px 0px;
}
main.main-content .page-content section h3.standard-h3 {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 16px;
  line-height: 1.6rem;
  font-family: "neue-helvetica", "Helvetica Neue", Helvetica, sans-serif !important;
  font-weight: 500;
  color: #555555;
  margin: 0px 0px 20px 0px;
}
main.main-content .page-content section .standard-p {
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 13px;
  line-height: 1.3rem;
  font-family: "neue-helvetica", "Helvetica Neue", Helvetica, sans-serif !important;
  color: #555555;
  margin: 0px 0px 20px 0px;
}
main.main-content .page-content section .standard-a {
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 13px;
  line-height: 1.3rem;
  font-family: "neue-helvetica", "Helvetica Neue", Helvetica, sans-serif !important;
  color: #404d5e;
  margin: 0px 0px 20px 0px;
}
.action-more-info,
.action-generic {
  cursor: pointer;
}
a.logo {
  border-right: solid 1px #e6e6e6;
  width: 214px;
  height: calc(65px - 1px);
  overflow: hidden;
  position: relative;
}
a.logo img {
  width: auto;
  height: 26px;
  position: relative;
  top: 20px;
  left: 35px;
  margin-right: 5px;
}
a.logo.theme img {
  display: block;
  margin: 0 auto;
  position: initial;
}
a.logo.theme.kapnick img {
  margin-top: 0px;
  height: 50px;
  margin-bottom: -3px;
}
a.logo.theme.bbi img {
  margin-top: 0px;
  height: 64px;
  margin-bottom: -3px;
  margin-left: -40px;
}
a.logo.theme.oswald img {
  margin-top: 5px;
  height: 35px;
}
a.logo.theme.pbgh img {
  margin: 10px 0 0 30px;
  height: 45px;
  display: inline-block;
}
a.logo.theme.graham img {
  margin-top: 10px;
}
a.logo.theme.wortham img {
  height: 24px;
  margin-top: 16px;
  margin-bottom: 2px;
}
a.logo.theme.epic img,
a.logo.theme.rcmd img,
a.logo.theme.nfp img,
a.logo.theme.buck img {
  height: 38px;
  margin-top: 9px;
  margin-bottom: 2px;
}
a.logo.theme.gallagher img {
  height: 29px;
  margin-top: 9px;
  margin-bottom: 2px;
}
a.logo.theme.gallagher .powered-by {
  display: block;
  text-align: center;
  font-size: 11px;
  font-size: 1.1rem;
}
a.logo.conduent img {
  height: 40px;
  margin-top: 5px;
}
a.logo.mahoney img {
  margin: 10px 0 0 10px;
  height: 40px;
  display: inline-block;
}
a.logo.collier img {
  margin: 7px 0 0 47px;
  height: 35px;
  display: inline-block;
}
a.logo.medtrans img {
  margin: 0 auto;
  margin-top: 3px;
  height: 45px;
  display: table;
}
a.logo.medtrans .powered-by {
  display: block;
  text-align: center;
  font-size: 11px;
  font-size: 1.1rem;
  margin-top: -1px;
}
a.logo.cbiz img {
  margin: 0 auto;
  margin-top: 7px;
  height: 35px;
  display: table;
}
a.logo.cbiz .powered-by {
  display: block;
  text-align: center;
  font-size: 11px;
  font-size: 1.1rem;
  margin-top: 0px;
}
a.logo.totalControlHealth img {
  margin: 0 auto;
  margin-top: 7px;
  height: 38px;
  display: table;
}
a.logo.totalControlHealth .powered-by {
  display: block;
  text-align: center;
  font-size: 11px;
  font-size: 1.1rem;
  margin-top: -2px;
}
a.logo.ima img {
  margin: 0 auto;
  margin-top: 7px;
  height: 38px;
  display: table;
}
a.logo.ima .powered-by {
  display: block;
  text-align: center;
  font-size: 11px;
  font-size: 1.1rem;
  margin-top: 0px;
}
a.logo.goldenwest img {
  margin: 0 auto;
  margin-top: 4px;
  height: 44px;
  display: table;
}
a.logo.goldenwest .powered-by {
  display: block;
  text-align: center;
  font-size: 11px;
  font-size: 1.1rem;
  margin-top: 0px;
}
a.logo.bbi .powered-by {
  display: none;
}
a.logo.conduent .powered-by,
a.logo.kapnick .powered-by,
a.logo.bbi .powered-by,
a.logo.pbgh .powered-by,
a.logo.hub .powered-by,
a.logo.oswald .powered-by,
a.logo.graham .powered-by,
a.logo.wortham .powered-by,
a.logo.epic .powered-by,
a.logo.rcmd .powered-by,
a.logo.buck .powered-by,
a.logo.nfp .powered-by,
a.logo.collier .powered-by {
  text-align: center;
  margin: 2px auto 0 auto;
  display: block;
  width: 100%;
  color: #555555;
  font-size: 10px;
  font-size: 1rem;
  line-height: 12px;
  line-height: 1.2rem;
}
a.logo.pbgh span.powered-by {
  position: absolute;
  top: 19px;
  left: 100px;
  display: inline-block;
  width: 100px;
  text-align: left;
}
a.logo.mahoney span.powered-by {
  position: absolute;
  top: 17px;
  left: 100px;
  display: inline-block;
  width: 100px;
  text-align: left;
}
a.logo.conduent .powered-by {
  margin-top: 1px;
  text-align: left;
  margin-left: 30px;
}
a.logo.hub img,
a.logo.pbgh img {
  height: 37px;
  margin-top: 7px;
}
a.logo.theme.relationInsurance img {
  height: 36px;
  margin: 0 auto;
  margin-top: 7px;
}
a.logo.theme.relationInsurance .powered-by {
  display: block;
  text-align: center;
  font-size: 11px;
  font-size: 1.1rem;
}
a.logo.theme.acrisure img {
  height: 27px;
  margin: 0 auto;
  margin-top: 12px;
}
a.logo.theme.acrisure .powered-by {
  display: block;
  text-align: center;
  font-size: 11px;
  font-size: 1.1rem;
}
a.logo.theme.ccig img {
  height: 36px;
  margin: 0 auto;
  margin-top: 7px;
}
a.logo.theme.ccig .powered-by {
  display: block;
  text-align: center;
  font-size: 11px;
  font-size: 1.1rem;
}
a.logo.theme.consiliariumGroup img {
  height: 36px;
  margin: 0 auto;
  margin-top: 7px;
}
a.logo.theme.consiliariumGroup .powered-by {
  display: block;
  text-align: center;
  font-size: 11px;
  font-size: 1.1rem;
}
a.logo.theme.howdenCCG img {
  height: 36px;
  margin: 0 auto;
  margin-top: 7px;
}
a.logo.theme.howdenCCG .powered-by {
  display: block;
  text-align: center;
  font-size: 11px;
  font-size: 1.1rem;
}
a.logo.theme.cgi img {
  height: 42px;
  margin: 0 auto;
  margin-top: 5px;
}
a.logo.theme.cgi .powered-by {
  display: block;
  text-align: center;
  font-size: 10px;
  font-size: 1rem;
}
nav.main-nav {
  z-index: 305;
  width: 95px;
  top: -1px;
  height: calc(100% + 1px);
  overflow: hidden;
  background: #243b5f;
  position: relative;
  transition: 0.2s;
}
nav.main-nav div.scroll-pane {
  position: absolute;
  box-sizing: border-box;
  overflow-x: hidden;
  overflow-y: auto;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  width: 110px;
  margin: 0 0 100px 0;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}
nav.main-nav div.scroll-pane ul.nav-links {
  width: 95px;
  list-style: outside none none;
  margin: 0;
  padding: 0;
}
nav.main-nav div.scroll-pane ul.nav-links > li:first-child.active .category {
  box-shadow: inset 0 1px 0px #e6e6e6;
}
nav.main-nav div.scroll-pane ul.nav-links > li:first-child.active .category:hover {
  box-shadow: inset 0 1px 0px #e6e6e6;
}
nav.main-nav div.scroll-pane ul.nav-links > li .category {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  border: none;
  box-sizing: border-box;
  overflow: hidden;
  cursor: pointer;
  font-size: 12px;
  font-size: 1.2rem;
  margin-right: 0;
  padding: 15px 0;
  display: block;
  text-align: center;
  transition: 0.5s;
  width: 100%;
  position: relative;
  font-weight: 300;
}
nav.main-nav div.scroll-pane ul.nav-links > li .category .active-carat {
  position: absolute;
  right: -7px;
  top: 50%;
  width: 7px;
  margin-top: -5%;
  transition: 0.2s;
}
nav.main-nav div.scroll-pane ul.nav-links > li .category .name {
  max-width: 65px;
  display: block;
  margin: 0 auto;
}
nav.main-nav div.scroll-pane ul.nav-links > li .category.category {
  color: white;
}
nav.main-nav div.scroll-pane ul.nav-links > li .category.category:hover {
  background-color: #3c516e;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
nav.main-nav div.scroll-pane ul.nav-links > li .category .icon {
  font-size: 20px;
  font-size: 2rem;
  max-width: 40px;
  padding: 0;
  text-align: center;
  display: block;
  margin: 0 auto;
  margin-bottom: 5px;
}
nav.main-nav div.scroll-pane ul.nav-links > li .category.axiom {
  padding: 15px 0 10px 0;
  background: linear-gradient(0deg, #243c5f 0%, #4283b4 100%);
}
nav.main-nav div.scroll-pane ul.nav-links > li .category.axiom:hover .axiom-bg {
  animation: axiom 1.3s ease-out;
}
nav.main-nav div.scroll-pane ul.nav-links > li .category.axiom:hover .axiom-icon {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.8);
}
nav.main-nav div.scroll-pane ul.nav-links > li .category.axiom .axiom-icon {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background: linear-gradient(#f5f7fa, #f5f7fa) padding-box, linear-gradient(90deg, #2863a8 0%, #2b9ea8 100%) border-box;
  border: 1px solid transparent;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  margin: 0 auto;
  transition: all 0.5s;
}
nav.main-nav div.scroll-pane ul.nav-links > li .category.axiom .axiom-icon .icon {
  background: url("/assets/axiom/axiom-icon.svg") no-repeat;
  background-size: cover;
  width: 30px;
  height: 25px;
  margin: 0 auto;
  margin-top: 5px;
}
nav.main-nav div.scroll-pane ul.nav-links > li .category.axiom .axiom-bg {
  width: 142px;
  height: 143px;
  position: absolute;
  top: -35px;
  left: -23px;
  opacity: 0.3;
  z-index: 1;
  background: url("/assets/axiom/logo-lens-outline-icon.svg") no-repeat;
  background-size: cover;
  transition: all 0.5s ease-in-out;
}
nav.main-nav div.scroll-pane ul.nav-links > li .category.axiom .name {
  margin-top: 5px;
  font-weight: bold;
}
nav.main-nav div.scroll-pane ul.nav-links > li.current-page .category {
  background: #51647d;
}
nav.main-nav div.scroll-pane ul.nav-links > li.active .category {
  transition: 0.5s;
  background: #fff;
  color: #243b5f;
}
nav.main-nav div.scroll-pane ul.nav-links > li.active .category .active-carat {
  right: 0;
  transition-delay: 0.3s;
}
nav.main-nav div.scroll-pane ul.nav-links > li.active .category:hover {
  background: #fff;
}
nav.main-nav div.scroll-pane ul.nav-links > li.closed ul {
  max-height: 0;
}
.subcategory {
  max-height: 100%;
  min-width: 220px;
  max-width: 270px;
  height: 100%;
  position: absolute;
  border-top: solid 1px #17263b;
  top: -1px;
  left: -180px;
  z-index: 301;
  list-style: outside none none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #17263b;
  transition: all 0.4s;
}
.subcategory.active {
  left: 95px;
  transition: all 0.3s;
}
.subcategory .active-header {
  padding: 30px 30px 25px 20px;
  border-bottom: 1px solid #414e5f;
  margin-bottom: 10px;
  background-color: #17263b;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  color: #fff;
}
.subcategory .active-header .active-icon {
  font-size: 50px;
  font-size: 5rem;
  color: #2e3d52;
  display: block;
  position: absolute;
  right: -10px;
  top: 10px;
  max-width: 50px;
  z-index: 1;
}
.subcategory .active-header .active-icon.custom-executive-reports {
  background: url(/assets/img/overviews-icon.svg) no-repeat center;
  height: 50px;
  width: 50px;
  display: block;
}
.subcategory .active-header .active-icon.custom-financial-experience {
  background: url(/assets/img/financial-experience-icon.svg) no-repeat center;
  height: 50px;
  width: 40px;
  display: block;
}
.subcategory .active-header .active-icon.custom-comparison {
  background: url(/assets/img/comparative-analytics-icon-light.svg) no-repeat center;
  height: 50px;
  width: 50px;
  display: block;
}
.subcategory .active-header .active-icon.custom-advisor-tools {
  background: url(/assets/img/advisor-tools-icon-light.svg) no-repeat center;
  height: 50px;
  width: 50px;
  display: block;
}
.subcategory .active-header .active-icon.custom-innovu-dashboards {
  background: url(/assets/img/innovu-dashboards-icon-light.svg) no-repeat center;
  height: 50px;
  width: 50px;
  display: block;
}
.subcategory .active-header h2 {
  font-size: 20px;
  font-size: 2rem;
  font-weight: 200;
  margin: 0;
  white-space: nowrap;
  z-index: 2;
}
.subcategory li {
  width: 100%;
  max-width: 270px;
}
.subcategory li a {
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: block;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 16px;
  line-height: 1.6rem;
  padding: 10px 25px 10px 25px;
  transition: background-color 0.3s;
}
.subcategory li a:hover {
  background-color: #233145;
}
.subcategory li a.active {
  width: calc(100% + 30px);
  background-color: #233145;
  box-shadow: 0 6px 4px -4px rgba(0, 0, 0, 0.06);
}
.subcategory .subcategory-links {
  width: calc(100% + 15px);
  height: calc(100% - 80px);
  overflow-x: hidden;
  overflow-y: auto;
}
@keyframes resetAnimation {
  to {
    transform: rotate(0deg) translate(0px, 0px) scale(1, 1);
  }
}
@keyframes moveNeedle {
  0% {
    transform: rotate(-20deg);
  }
  30% {
    transform: rotate(30deg);
  }
  35% {
    transform: rotate(45deg);
  }
  40% {
    transform: rotate(35deg);
  }
  45% {
    transform: rotate(45deg);
  }
  50% {
    transform: rotate(35deg);
  }
  100% {
    transform: rotate(-20deg);
  }
}
@keyframes rotateCogRight {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rotateCogLeft {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
@keyframes animateFrontRE {
  0% {
    transform: rotate(0deg);
  }
  60% {
    transform: rotate(10deg);
  }
  85% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes animateMiddleRE {
  0% {
    transform: rotate(0deg);
  }
  60% {
    transform: rotate(-20deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes animateBackRE {
  0% {
    transform: rotate(0deg);
  }
  60% {
    transform: rotate(-40deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes wiggle {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(10deg);
  }
  50% {
    transform: rotate(0deg);
  }
  75% {
    transform: rotate(-10deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  80% {
    transform: rotate(390deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes fadeInOut {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
  75% {
    fill: 0.5;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOutIn {
  0% {
    opacity: 1;
  }
  25% {
    opacity: 0.5;
  }
  50% {
    opacity: 0;
  }
  75% {
    fill: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@keyframes resetDataAnimation {
  to {
    transform: translateY(0px);
    opacity: 1;
  }
}
@keyframes dataAnimation {
  0% {
    transform: translateY(0px);
  }
  25% {
    transform: translateY(5px);
  }
  50% {
    transform: translateY(-20px);
    opacity: 0.7;
  }
  75% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes overviewBar1 {
  50% {
    transform: translateY(-11.5px) scale(1, 1.5);
  }
}
@keyframes overviewBar2 {
  50% {
    transform: translateY(-11.5px) scale(1, 1.5);
  }
}
@keyframes overviewBar3 {
  50% {
    transform: translateY(12px) scale(1, 0.5);
  }
}
@keyframes rotateDollarSign {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(25deg);
  }
  50% {
    transform: rotate(0deg);
  }
  75% {
    transform: rotate(-25deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes axiom {
  0% {
    transform: rotate(0deg) scale(1);
  }
  30% {
    transform: rotate(45deg) scale(0.94);
    opacity: 0.45;
  }
  60% {
    transform: rotate(-10deg) scale(1);
  }
  100% {
    transform: rotate(0deg) scale(1);
  }
}
.svg-container {
  width: 25px;
  height: 25px;
  margin: 0 auto;
  margin-bottom: 2px;
}
.innovu-dashboards-svg .needle {
  transform: rotate(-20deg);
  transform-origin: 50% 70%;
  fill: #fff;
  animation-iteration-count: 1;
}
.innovu-dashboards-svg .meter {
  fill: #fff;
}
.insight-svg .light-ray {
  fill: #fff;
  opacity: 0;
}
.comparative-analytics .svg-container {
  width: 30px;
}
.comparative-analytics .b1,
.comparative-analytics .b2,
.comparative-analytics .b3 {
  fill: #202c47;
}
.comparative-analytics .m1,
.comparative-analytics .m2,
.comparative-analytics .m3 {
  fill: #fff;
}
.comparative-analytics .ca-dot {
  opacity: 0;
}
.comparative-analytics .line {
  fill: #fff;
}
.data-svg {
  overflow: visible;
}
.data-svg .data-block {
  fill: #fff;
}
.admin-svg .cog {
  fill: #fff;
  transform-origin: center;
  transform-box: fill-box;
}
.nav-links .innovu-dashboards:hover .needle,
.nav-links .look-up-module:hover .needle {
  animation: moveNeedle 2s cubic-bezier(0.9, 0.8, 0.7, 0.8);
}
.nav-links .insight .lightbulb {
  fill: white;
}
.nav-links .insight:hover .light-ray {
  animation: fadeInOut 1s linear;
}
.nav-links .insight:hover .lr2 {
  animation-delay: 0.2s;
}
.nav-links .insight:hover .lr3 {
  animation-delay: 0.4s;
}
.nav-links .insight:hover .lr4 {
  animation-delay: 0.6s;
}
.nav-links .insight:hover .lr5 {
  animation-delay: 0.8s;
}
.nav-links .insight:hover .lr6 {
  animation-delay: 1s;
}
.nav-links .insight:hover .lr7 {
  animation-delay: 1.2s;
}
.nav-links .admin .cog {
  animation: resetAnimation 0.1s;
}
.nav-links .admin:hover .cog {
  animation: rotateCogRight 2s ease-in-out;
}
.nav-links .admin:hover .top-cog,
.nav-links .admin:hover .bottom-cog {
  animation: rotateCogLeft 2s ease-in-out;
}
.nav-links .data .svg-container {
  width: 18px;
}
.nav-links .data .data-block {
  animation: resetDataAnimation 0.1s;
}
.nav-links .data:hover .data-block {
  animation: dataAnimation 1.5s ease-in-out;
}
.nav-links .data:hover .middle {
  animation-delay: 0.4s;
}
.nav-links .data:hover .bottom {
  animation-delay: 0.6s;
}
.nav-links .comparative-analytics:hover .top-line,
.nav-links .comparative-analytics:hover .bottom-left-line,
.nav-links .comparative-analytics:hover .bottom-right-line {
  animation: fadeOutIn 2s linear;
}
.nav-links .comparative-analytics:hover .top-line {
  animation-delay: 0.5s;
}
.nav-links .comparative-analytics:hover .bottom-right-line {
  animation-delay: 1s;
}
.nav-links .comparative-analytics:hover .b1,
.nav-links .comparative-analytics:hover .b2,
.nav-links .comparative-analytics:hover .b3 {
  animation: fadeInOut 1.5s linear;
}
.nav-links .comparative-analytics:hover .b2 {
  animation-delay: 0.5s;
}
.nav-links .comparative-analytics:hover .b3 {
  animation-delay: 1s;
}
.nav-links .comparative-analytics:hover .m1,
.nav-links .comparative-analytics:hover .m2,
.nav-links .comparative-analytics:hover .m3 {
  animation: fadeInOut 1.7s linear;
}
.nav-links .comparative-analytics:hover .m2 {
  animation-delay: 0.7s;
}
.nav-links .comparative-analytics:hover .m3 {
  animation-delay: 1.2s;
}
.nav-links .account-structure .account-structure-svg {
  overflow: visible;
}
.nav-links .account-structure .screwdriver {
  animation: resetAnimation 0.1s;
}
.nav-links .account-structure:hover .wrench {
  animation: wiggle 0.5s ease-in;
}
.nav-links .account-structure:hover .screwdriver {
  animation: spin 1s ease-in-out;
}
.nav-links .account-structure:hover .mask {
  fill: #3c516e;
}
.nav-links .account-structure .tool {
  fill: #fff;
  transform-origin: center;
  transform-box: fill-box;
}
.nav-links .account-structure .mask {
  fill: #243b5f;
  transition: 0.5s;
}
.nav-links .overviews .svg-container {
  width: 35px;
  height: 35px;
}
.nav-links .overviews .bar {
  transition: 0.5s;
}
.nav-links .overviews:hover .circle-third,
.nav-links .overviews:hover .dot {
  animation: fadeOutIn 1.5s ease-in-out;
}
.nav-links .overviews:hover .ct2 {
  animation-delay: 0.3s;
}
.nav-links .overviews:hover .ct3 {
  animation-delay: 0.6s;
}
.nav-links .overviews:hover .d2 {
  animation-delay: 0.3s;
}
.nav-links .overviews:hover .d3 {
  animation-delay: 0.6s;
}
.nav-links .overviews:hover .top-circle {
  animation-delay: 0.6s;
}
.nav-links .overviews:hover .b1 {
  animation: overviewBar1 1.5s ease-in-out;
}
.nav-links .overviews:hover .b2 {
  animation: overviewBar2 1.5s ease-in-out;
  animation-delay: 0.2s;
}
.nav-links .overviews:hover .b3 {
  animation: overviewBar3 1.5s ease-in-out;
  animation-delay: 0.4s;
}
.nav-links .financial-reporting .svg-container {
  width: 32px;
  height: 36px;
  margin-bottom: 8px;
}
.nav-links .financial-reporting .bar {
  transition: 0.5s;
  fill: #ffffff;
}
.nav-links .financial-reporting:hover svg .bar-1 {
  animation: fadeOutIn 1.5s ease-in-out;
}
.nav-links .financial-reporting:hover svg .bar-2 {
  animation: fadeOutIn 1.5s ease-in-out;
  animation-delay: 0.2s;
}
.nav-links .financial-reporting:hover svg .bar-3 {
  animation: fadeOutIn 1.5s ease-in-out;
  animation-delay: 0.4s;
}
.nav-links .financial-reporting:hover svg .bar-4 {
  animation: fadeOutIn 1.5s ease-in-out;
  animation-delay: 0.6s;
}
.nav-links .financial-reporting:hover svg .dollar-sign {
  transform-origin: center;
  transform-box: fill-box;
  animation: rotateDollarSign 2s ease-in-out;
}
.nav-links .reporting-essentials .svg-container {
  width: 25px;
  height: 34px;
  margin-bottom: 10px;
}
.nav-links .reporting-essentials .svg-container svg {
  overflow: visible;
}
.nav-links .reporting-essentials:hover svg g .bg-mask {
  transition: 0.5s;
  fill: #3c516e;
}
.nav-links .reporting-essentials:hover svg g .front {
  transform-origin: 30% 100%;
  animation: animateFrontRE 1.5s ease-in-out;
}
.nav-links .reporting-essentials:hover svg g .middle {
  animation: animateMiddleRE 1.5s ease-in-out;
  transform-origin: 30% 100%;
}
.nav-links .reporting-essentials:hover svg g .back {
  animation: animateBackRE 1.5s ease-in-out;
  transform-origin: 30% 100%;
}
.nav-links .financial-experience .svg-container,
.nav-links .monthly-experience .svg-container,
.nav-links .rx-benefit-review .svg-container,
.nav-links .cso-performance-report .svg-container {
  width: 30px;
  height: 30px;
  margin-bottom: 10px;
}
.nav-links .financial-experience .bar,
.nav-links .monthly-experience .bar,
.nav-links .rx-benefit-review .bar,
.nav-links .cso-performance-report .bar {
  transition: 0.5s;
}
.nav-links .financial-experience:hover .square,
.nav-links .monthly-experience:hover .square,
.nav-links .rx-benefit-review:hover .square,
.nav-links .cso-performance-report:hover .square {
  animation: fadeOutIn 1.5s ease-in-out;
  animation-delay: 0.8s;
}
.nav-links .financial-experience:hover .dollar-sign,
.nav-links .monthly-experience:hover .dollar-sign,
.nav-links .rx-benefit-review:hover .dollar-sign,
.nav-links .cso-performance-report:hover .dollar-sign {
  transform-origin: center;
  transform-box: fill-box;
  animation: rotateDollarSign 1.5s ease-in-out;
}
.nav-links .financial-experience:hover .bar1,
.nav-links .monthly-experience:hover .bar1,
.nav-links .rx-benefit-review:hover .bar1,
.nav-links .cso-performance-report:hover .bar1 {
  animation: fadeOutIn 1.5s ease-in-out;
}
.nav-links .financial-experience:hover .bar2,
.nav-links .monthly-experience:hover .bar2,
.nav-links .rx-benefit-review:hover .bar2,
.nav-links .cso-performance-report:hover .bar2 {
  animation: fadeOutIn 1.5s ease-in-out;
  animation-delay: 0.2s;
}
.nav-links .financial-experience:hover .bar3,
.nav-links .monthly-experience:hover .bar3,
.nav-links .rx-benefit-review:hover .bar3,
.nav-links .cso-performance-report:hover .bar3 {
  animation: fadeOutIn 1.5s ease-in-out;
  animation-delay: 0.4s;
}
.nav-links .tpnet .svg-container {
  width: 50px;
  height: 13px;
  margin: 10px auto 10px auto;
}
.nav-links .active .admin .cog {
  fill: #243b5f;
}
.nav-links .active .data .data-block {
  fill: #243b5f;
}
.nav-links .active .comparative-analytics .line {
  fill: #243b5f;
}
.nav-links .active .comparative-analytics .b1,
.nav-links .active .comparative-analytics .b2,
.nav-links .active .comparative-analytics .b3 {
  fill: white;
}
.nav-links .active .insight .lightbulb {
  fill: #243b5f;
}
.nav-links .active .insight .light-ray {
  fill: #243b5f;
}
.nav-links .active .account-structure .mask {
  fill: white;
}
.nav-links .active .account-structure .tool {
  fill: #243b5f;
}
.nav-links .active .overviews .dot,
.nav-links .active .overviews .main,
.nav-links .active .overviews .circle-third,
.nav-links .active .overviews .center-circle {
  fill: #243b5f;
}
.nav-links .active .overviews .bar {
  fill: white;
}
.nav-links .active .financial-experience .fe {
  fill: #243b5f;
}
.nav-links .active .tpnet svg path,
.nav-links .active .tpnet svg text {
  fill: #243b5f;
}
main.main-content {
  background: #f8f8f8;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex: 1;
  flex-direction: column;
  min-width: 10px;
  width: 10px;
}
main.main-content .page-content {
  background: #f8f8f8 none repeat scroll 0 0;
  box-sizing: border-box;
  flex: 1;
  margin: 0;
  overflow: auto;
  height: 100%;
}
main.main-content .page-content section {
  box-sizing: border-box;
  overflow: hidden;
  width: calc(100% - 40px);
  margin: 20px 0 0 20px;
  padding: 20px;
  border: 1px solid #e6e6e6;
  background: white;
}
main.main-content .page-content section h1 {
  margin: 0 0 20px 0;
  padding: 0;
  font-family: "neue-helvetica", "Helvetica Neue", Helvetica, sans-serif !important;
  font-weight: 700;
  font-size: 20px;
  font-size: 2rem;
  line-height: 24px;
  line-height: 2.4rem;
  color: #505050;
}
main.main-content .page-content section .no-content,
main.main-content .page-content section .no-content-sub {
  color: #243b5f;
  font-size: 40px;
  font-size: 4rem;
  line-height: 40px;
  font-family: "neue-helvetica", "Helvetica Neue", Helvetica, sans-serif !important;
  margin-top: 20px;
  text-align: center;
  font-weight: 100;
}
main.main-content .page-content section .no-content-sub {
  font-size: 30px;
  font-size: 3rem;
  line-height: 30px;
}
main.main-content .page-content section p {
  margin: 7px 0 7px 0;
}
main.main-content .page-content section figcaption {
  font-style: italic;
}
main.main-content .page-content section.help-wrap p {
  float: none;
}
.nav-content-container {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  position: absolute;
  top: 65px;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
}
header.application-header {
  box-sizing: border-box;
  z-index: 300;
  height: 65px;
  min-height: 65px;
  border-bottom: 1px solid #e6e6e6;
  background: white;
  width: 100%;
}
header.application-header .flex-header {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
header.application-header .flex-header > * {
  display: block;
}
header.application-header .flex-header div.client-select {
  position: relative;
  overflow: hidden;
  margin: 13px 0 0 20px;
}
header.application-header .flex-header div.client-select .client-select-wrapper {
  display: flex;
  align-items: center;
  overflow: hidden;
}
header.application-header .flex-header div.client-select .client-select-wrapper .org-label {
  border: solid 1px #d6d6d6;
  border-radius: 8px 0 0 8px;
  display: flex;
  align-items: center;
  height: 36px;
  background: #fafafa;
  padding: 0 5px 0 5px;
}
header.application-header .flex-header div.client-select .client-select-wrapper .org-label .icon {
  display: inline-block;
  width: 20px;
  height: 12px;
  background: url("/assets/img/org-icon.svg") no-repeat;
  margin-right: 5px;
}
header.application-header .flex-header div.client-select .client-select-wrapper .org-label .label {
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 400;
  color: #243a5f;
}
header.application-header .flex-header div.client-select div.ember-power-select-trigger {
  border-top: solid 1px #d6d6d6;
  border-right: solid 1px #d6d6d6;
  border-bottom: solid 1px #d6d6d6;
  border-left: none;
  border-radius: 0 8px 8px 0;
  box-sizing: border-box;
  color: #6c7280;
  height: 38px;
  outline: none;
  width: 260px;
  padding: 7px 30px 0 0;
  overflow: hidden;
  position: relative;
}
header.application-header .flex-header div.client-select div.ember-power-select-trigger:before {
  font-family: "fontawesome" !important;
  content: "\f13a";
  font-size: 15px;
  position: absolute;
  width: 15px;
  height: 15px;
  line-height: 15px;
  top: 10px;
  right: 6px;
  text-align: center;
  transition: 0.2s;
  color: #3b77a3;
}
header.application-header .flex-header div.client-select div.ember-power-select-trigger[aria-expanded="true"] {
  border-radius: 0 8px 0 0;
}
header.application-header .flex-header div.client-select div.ember-power-select-trigger[aria-expanded="true"]:before {
  transform: rotate(180deg);
  transition: 0.3s;
}
header.application-header .flex-header div.client-select div.ember-power-select-trigger:hover {
  cursor: pointer;
}
header.application-header .flex-header div.client-select div.ember-power-select-trigger .ember-power-select-status-icon {
  display: none;
}
header.application-header .flex-header div.cohort-select {
  position: relative;
  overflow: hidden;
  margin-right: auto;
  max-width: calc(100% - 134px);
}
header.application-header .flex-header div.cohort-select label {
  position: absolute;
  top: 22px;
  left: 20px;
  height: 20px;
  padding: 2px 0 0 0px;
  font-weight: 700;
  color: #202c47;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  header.application-header .flex-header div.cohort-select label {
    padding: 3px 0 0 0px;
  }
}
header.application-header .flex-header div.cohort-select select {
  margin: 9px 0 0 10px;
  width: calc(100% - 10px);
}
header.application-header div.client-select.disabled,
header.application-header div.cohort-select.disabled {
  opacity: 0.3;
  pointer-events: none;
}
header.application-header .user-options {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  margin-left: auto;
}
header.application-header .user-options > a {
  width: 37px;
  height: 37px;
  position: relative;
  top: 13px;
}
header.application-header .user-options .impersonate-button {
  text-align: center;
  position: relative;
  top: 20px;
  margin-right: 10px;
}
header.application-header .user-options .user-name {
  align-items: center;
  color: #818181;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  height: calc(65px - 1px);
  margin: 0;
  padding: 0 10px;
  position: relative;
  max-width: 250px;
}
header.application-header .user-options .user-name .icon {
  width: 25px;
  height: 25px;
  min-width: 25px;
  position: relative;
  overflow: hidden;
  border-radius: 100%;
  border: solid 1px #243b5f;
  background: linear-gradient(180deg, #244b66 0%, #1e3f56 100%);
}
header.application-header .user-options .user-name .icon img {
  margin: 0 auto;
  display: block;
  margin-top: 5px;
}
header.application-header .user-options .user-name:hover .name a {
  text-decoration: underline;
}
header.application-header .user-options .user-name > span,
header.application-header .user-options .user-name > strong {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
header.application-header .user-options .user-name .name {
  margin: 0 10px;
}
header.application-header .user-options .user-name .name strong {
  display: block;
}
header.application-header .user-options .user-name .name a {
  color: #243b5f;
}
header.application-header .user-options .user-name .chevron {
  width: 11px;
  max-width: 11px;
  min-width: 11px;
  height: 15px;
  background: url(/assets/help-center/chevron-icon.svg) no-repeat;
  display: block;
  transform: rotate(90deg);
}
header.application-header .user-options .user-name strong {
  margin-right: 3px;
}
header.application-header .user-options .user-name .tooltip {
  background: white;
  border: 1px solid #e6e6e6;
  display: none;
  min-width: 140px;
  padding: 4px 0 0 0;
  position: absolute;
  right: -10px;
  top: 54px;
  z-index: 500;
}
header.application-header .user-options .user-name .tooltip::before {
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  background: white;
  border-left: 1px solid #e6e6e6;
  border-top: 1px solid #e6e6e6;
  content: "";
  display: block;
  height: 12px;
  margin-top: -11px;
  margin-left: 112px;
  position: absolute;
  width: 12px;
}
header.application-header .user-options .user-name .tooltip ul li {
  border-bottom: 1px solid #e6e6e6;
}
header.application-header .user-options .user-name .tooltip ul li:last-child {
  border-bottom: none;
}
header.application-header .user-options .user-name .tooltip ul li a {
  display: block;
  padding: 6px 10px;
  position: relative;
  z-index: 100;
  color: #404d5e;
}
header.application-header .user-options .user-name .tooltip ul li a:hover {
  background: #f5f5f5;
}
header.application-header .user-options .user-name:hover .tooltip {
  display: block;
}
header.application-header ul {
  list-style: outside none none;
  margin: 0;
  padding: 0;
}
header.application-header ul.icon-list a {
  color: #404d5e;
}
header.application-header ul.icon-list li {
  cursor: pointer;
  margin: 22px 15px 0 0;
}
header.application-header ul.icon-list li:before {
  font-size: 20px;
  font-size: 2rem;
}
header.application-header ul.icon-list li.fa-comments-o:before {
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 18px;
  line-height: 1.8rem;
}
header.application-header ul.icon-list li span {
  display: none;
}
#ember-basic-dropdown-wormhole .client-select-dropdown .ember-power-select-search {
  padding: 8px 8px 3px;
}
#ember-basic-dropdown-wormhole .client-select-dropdown .ember-power-select-search input {
  padding-left: 4px;
  max-width: 100%;
  border-radius: 3px;
  height: 24px;
  background-size: auto 16px;
}
#ember-basic-dropdown-wormhole .client-select-dropdown ul.ember-power-select-options::-webkit-scrollbar-track:vertical {
  border-left: 1px solid #e7e7e7;
  box-shadow: 1px 0 1px 0 #f6f6f6 inset, -1px 0 1px 0 #f6f6f6 inset;
}
#ember-basic-dropdown-wormhole .client-select-dropdown ul.ember-power-select-options::-webkit-scrollbar {
  -webkit-appearance: none;
  background-color: #fafafa;
  width: 12px;
}
#ember-basic-dropdown-wormhole .client-select-dropdown ul.ember-power-select-options::-webkit-scrollbar-thumb {
  background-clip: padding-box;
  background-color: #c1c1c1;
  border-color: transparent;
  border-radius: 9px 8px 8px 9px;
  border-style: solid;
  border-width: 3px 3px 3px 4px;
  box-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
}
@media only screen and (max-width: 1450px) {
  .user-name {
    max-width: 160px;
  }
}
@media only screen and (max-width: 1240px) {
  header.application-header .flex-header div.client-select .client-select-wrapper .org-label .label {
    display: none;
  }
  header.application-header .flex-header div.client-select .client-select-wrapper .org-label .icon {
    margin-right: 0;
  }
}
.flex-row {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  margin-right: 20px;
}
.flex-row > * {
  display: block;
  flex: 1;
}
.flex-row > .flex-row {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}
.flex-row.no-margin {
  margin-right: 0;
}
.flex-row.init > * {
  flex: initial;
}
.flex-row > div {
  margin-right: 20px;
}
.flex-row > div + section[class*="col"] {
  margin-left: 0;
}
.flex-row > div:last-child {
  margin-right: 0;
}
.flex-row .flex-row {
  margin-right: 0;
}
.flex-row section {
  width: 100%;
}
.flex-row [class^="col"] {
  float: none;
}
.flex-row .col-12 {
  -webkit-flex-basis: 100%;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
}
.flex-row .col-11 {
  -webkit-flex-basis: 91.667%;
  -ms-flex-preferred-size: 91.667%;
  flex-basis: 91.667%;
  max-width: 91.667%;
}
.flex-row .col-10 {
  -webkit-flex-basis: 83.333%;
  -ms-flex-preferred-size: 83.333%;
  flex-basis: 83.333%;
  max-width: 83.333%;
}
.flex-row .col-9 {
  -webkit-flex-basis: 75%;
  -ms-flex-preferred-size: 75%;
  flex-basis: 75%;
  max-width: 75%;
}
.flex-row .col-8 {
  -webkit-flex-basis: 66.667%;
  -ms-flex-preferred-size: 66.667%;
  flex-basis: 66.667%;
  max-width: 66.667%;
}
.flex-row .col-7 {
  -webkit-flex-basis: 58.333%;
  -ms-flex-preferred-size: 58.333%;
  flex-basis: 58.333%;
  max-width: 58.333%;
}
.flex-row .col-6 {
  -webkit-flex-basis: 50%;
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  max-width: 50%;
}
.flex-row .col-5 {
  -webkit-flex-basis: 41.667%;
  -ms-flex-preferred-size: 41.667%;
  flex-basis: 41.667%;
  max-width: 41.667%;
}
.flex-row .col-4 {
  -webkit-flex-basis: 33.333%;
  -ms-flex-preferred-size: 33.333%;
  flex-basis: 33.333%;
  max-width: 33.333%;
}
.flex-row .col-3-5 {
  -webkit-flex-basis: 29%;
  -ms-flex-preferred-size: 29%;
  flex-basis: 29%;
  max-width: 29%;
}
.flex-row .col-3 {
  -webkit-flex-basis: 25%;
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
  max-width: 25%;
}
.flex-row .col-2 {
  -webkit-flex-basis: 16.666%;
  -ms-flex-preferred-size: 16.666%;
  flex-basis: 16.666%;
  max-width: 16.666%;
}
.flex-row .col-1 {
  -webkit-flex-basis: 8.333%;
  -ms-flex-preferred-size: 8.333%;
  flex-basis: 8.333%;
  max-width: 8.333%;
}
.flex-row.around {
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}
.flex-row.between {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.flex-row.left {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  text-align: start;
}
.flex-row.center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.flex-row.right {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  text-align: end;
}
.flex-row.top {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.flex-row.middle {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.flex-row.bottom {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.flex-row.wrap {
  flex-flow: row wrap;
  margin-right: 0;
}
.flex-row.wrap .col-12 {
  -webkit-flex-basis: calc(100% - 20px);
  -ms-flex-preferred-size: calc(100% - 20px);
  flex-basis: calc(100% - 20px);
  max-width: calc(100% - 20px);
}
.flex-row.wrap .col-11 {
  -webkit-flex-basis: calc(91.667% - 20px);
  -ms-flex-preferred-size: calc(91.667% - 20px);
  flex-basis: calc(91.667% - 20px);
  max-width: calc(91.667% - 20px);
}
.flex-row.wrap .col-10 {
  -webkit-flex-basis: calc(83.333% - 20px);
  -ms-flex-preferred-size: calc(83.333% - 20px);
  flex-basis: calc(83.333% - 20px);
  max-width: calc(83.333% - 20px);
}
.flex-row.wrap .col-9 {
  -webkit-flex-basis: calc(75% - 20px);
  -ms-flex-preferred-size: calc(75% - 20px);
  flex-basis: calc(75% - 20px);
  max-width: calc(75% - 20px);
}
.flex-row.wrap .col-8 {
  -webkit-flex-basis: calc(66.667% - 20px);
  -ms-flex-preferred-size: calc(66.667% - 20px);
  flex-basis: calc(66.667% - 20px);
  max-width: calc(66.667% - 20px);
}
.flex-row.wrap .col-7 {
  -webkit-flex-basis: calc(58.333% - 20px);
  -ms-flex-preferred-size: calc(58.333% - 20px);
  flex-basis: calc(58.333% - 20px);
  max-width: calc(58.333% - 20px);
}
.flex-row.wrap .col-6 {
  -webkit-flex-basis: calc(50% - 20px);
  -ms-flex-preferred-size: calc(50% - 20px);
  flex-basis: calc(50% - 20px);
  max-width: calc(50% - 20px);
}
.flex-row.wrap .col-5 {
  -webkit-flex-basis: calc(41.667% - 20px);
  -ms-flex-preferred-size: calc(41.667% - 20px);
  flex-basis: calc(41.667% - 20px);
  max-width: calc(41.667% - 20px);
}
.flex-row.wrap .col-4 {
  -webkit-flex-basis: calc(33.333% - 20px);
  -ms-flex-preferred-size: calc(33.333% - 20px);
  flex-basis: calc(33.333% - 20px);
  max-width: calc(33.333% - 20px);
}
.flex-row.wrap .col-3 {
  -webkit-flex-basis: calc(25% - 20px);
  -ms-flex-preferred-size: calc(25% - 20px);
  flex-basis: calc(25% - 20px);
  max-width: calc(25% - 20px);
}
.flex-row.wrap .col-2 {
  -webkit-flex-basis: calc(16.666% - 20px);
  -ms-flex-preferred-size: calc(16.666% - 20px);
  flex-basis: calc(16.666% - 20px);
  max-width: calc(16.666% - 20px);
}
.flex-row.wrap .col-1 {
  -webkit-flex-basis: calc(8.333% - 20px);
  -ms-flex-preferred-size: calc(8.333% - 20px);
  flex-basis: calc(8.333% - 20px);
  max-width: calc(8.333% - 20px);
}
section > .flex-row.wrap {
  margin-right: -20px;
}
.button-small {
  box-sizing: border-box;
  height: 16px;
  padding: 3px 9px 0;
  border: none;
  border-radius: 4px;
  text-transform: uppercase;
  font-size: 11px;
  font-size: 1.1rem;
  line-height: 10px;
  line-height: 1rem;
  font-weight: 700;
  color: #fff;
}
.standard-button {
  cursor: pointer;
  display: inline-block;
  height: 24px;
  margin: 0;
  padding: 0 8px;
  border-radius: 3px;
  background: #243b5f;
  text-align: center;
  box-sizing: border-box;
  -webkit-appearance: none;
  font-size: 11px;
  font-size: 1.1rem;
  line-height: 24px;
  line-height: 2.4rem;
  font-weight: 700;
  text-transform: uppercase;
  color: white;
  border: none;
  outline: none;
  transition: 0.2s;
}
.standard-button:hover {
  cursor: pointer;
  background-color: rgba(36, 59, 95, 0.8);
}
.standard-button:hover.circle-button {
  background-color: initial;
}
.standard-button:hover.filter {
  background-color: #243b5f;
}
.standard-button.large {
  height: auto;
  padding: 8px 40px;
  font-size: 16px;
  font-size: 1.6rem;
}
.standard-button.small {
  height: 16px;
  padding: 0 4px;
  font-size: 11px;
  font-size: 1.1rem;
  line-height: 12px;
  line-height: 1.2rem;
}
.standard-button.remove {
  background: #ed4651;
}
.standard-button:before {
  float: left;
  margin: 0 5px 0 0;
  vertical-align: middle;
  font-weight: 400;
  font-family: "fontawesome" !important;
}
.standard-button.new:before {
  margin: 1px 5px 0 0;
  font-size: 15px;
  font-size: 1.5rem;
  content: "\f067";
}
.standard-button.cancel {
  padding: 0 8px 0 27px;
  background-image: url("/assets/img/icon-cancel.svg");
  background-repeat: no-repeat;
  background-size: 14px 14px;
  background-position: 8px 5px;
  background-color: #7a8593;
}
.standard-button.upload:before {
  margin: 0 5px 0 0;
  font-family: "fontawesome" !important;
  content: "\f093";
}
.standard-button.back:before {
  margin: 1px 5px 0 0;
  font-family: "fontawesome" !important;
  content: "\f060";
}
.standard-button.next:before {
  margin: 1px 5px 0 0;
  font-family: "fontawesome" !important;
  content: "\f061";
}
.standard-button.add:before {
  margin: 1px 5px 0 0;
  font-family: "fontawesome" !important;
  content: "\f067";
}
.standard-button.clear:before,
.standard-button.delete:before {
  font-size: 15px;
  font-size: 1.5rem;
  content: "\f1f8";
}
.standard-button.save:before {
  font-size: 14px;
  font-size: 1.4rem;
  content: "\f0c7";
}
.standard-button.info:before {
  font-size: 14px;
  font-size: 1.4rem;
  content: "\f05a";
}
.standard-button.submit:before {
  font-size: 14px;
  font-size: 1.4rem;
  content: "\f1d9";
}
.standard-button.download:before {
  margin: 1px 5px 0 0;
  font-size: 15px;
  font-size: 1.5rem;
  content: "\f0ed";
}
.standard-button.filters:before {
  margin: -1px 5px 0 0;
  font-size: 15.5px;
  font-size: 1.55rem;
  content: "\f1de";
}
.standard-button.category:before {
  margin: 0px 5px 0 0;
  font-size: 13px;
  font-size: 1.3rem;
  content: "\f187";
}
.standard-button.edit-item:before {
  margin: 1px 5px 0 0;
  font-size: 15px;
  font-size: 1.5rem;
  content: "\f044";
}
.standard-button.cursor-text:before {
  margin: -1px 5px 0 0;
  font-size: 12px;
  font-size: 1.2rem;
  content: "\f246";
}
.standard-button.copy:before {
  margin: -1px 5px 0 0;
  font-size: 12px;
  font-size: 1.2rem;
  content: "\f0c5";
}
.standard-button.clone:before {
  font-size: 15px;
  font-size: 1.5rem;
  content: "\f24d";
}
.standard-button.red {
  background-color: #ed4651;
}
.standard-button.red:hover {
  background-color: #e81825;
}
.standard-button.green {
  background-color: #18b28b;
}
.standard-button.green:hover {
  background-color: #128568;
}
.standard-button.green.no-changes {
  background: #888888;
}
.standard-button.green.no-changes:hover {
  background: #6f6f6f;
}
.standard-button.light-blue {
  background-color: #3188c9;
}
.standard-button.light-blue:hover {
  background-color: #276ca0;
}
.standard-button.square-field {
  width: 17px;
  height: 17px;
  padding: 0 4px;
  background-repeat: no-repeat;
  background-size: 9px 9px;
  background-position: 4px 4px;
}
.standard-button.square-field.add {
  background-image: url("/assets/img/icon-plus-ffffff.svg");
}
.standard-button.square-field.add::before {
  content: "";
}
.standard-button.square-field.delete-x {
  margin-right: 3px;
  background-image: url("/assets/img/icon-x-ffffff.svg");
}
.standard-button[disabled],
.standard-button.disabled {
  opacity: 0.5;
  cursor: default;
}
input[type="text"],
input[type="email"],
input[type="number"],
input[type="password"],
input[type="search"] {
  box-sizing: border-box;
  display: inline-block;
  outline: none;
  position: relative;
  height: 24px;
  padding: 0 7px;
  border: 1px solid #cbc8ca;
  border-radius: 3px;
  background: #fff;
  font-size: 12px;
  font-size: 1.2rem;
}
input[type="text"][type="search"],
input[type="email"][type="search"],
input[type="number"][type="search"],
input[type="password"][type="search"],
input[type="search"][type="search"] {
  width: 250px;
  padding: 1px 39px 0 17px;
  background: white url("/assets/img/icon-search.svg") no-repeat;
  background-position: calc(100% - 10px) center;
  background-size: auto 23px;
}
input[type="text"][disabled],
input[type="email"][disabled],
input[type="number"][disabled],
input[type="password"][disabled],
input[type="search"][disabled],
input[type="text"].disabled,
input[type="email"].disabled,
input[type="number"].disabled,
input[type="password"].disabled,
input[type="search"].disabled {
  position: static;
}
input[type="text"].standard.large,
input[type="email"].standard.large,
input[type="number"].standard.large,
input[type="password"].standard.large,
input[type="search"].standard.large {
  font-size: 13px;
  font-size: 1.3rem;
  height: 28px;
  padding: 0 7px;
}
input[type="text"].standard.search,
input[type="email"].standard.search,
input[type="number"].standard.search,
input[type="password"].standard.search,
input[type="search"].standard.search {
  background: white url("/assets/img/icon-search.svg") no-repeat;
  background-position: calc(100% - 10px) center;
  background-size: auto 14px;
}
input[type="text"].standard.date-picker,
input[type="email"].standard.date-picker,
input[type="number"].standard.date-picker,
input[type="password"].standard.date-picker,
input[type="search"].standard.date-picker {
  max-width: 134px;
  position: relative;
  background: white url("/assets/img/icon-calendar.svg") no-repeat;
  background-size: auto 17px;
  background-position: right 4px center;
}
input[type="text"][readonly],
input[type="email"][readonly],
input[type="number"][readonly],
input[type="password"][readonly],
input[type="search"][readonly] {
  background: #f3f3f3;
  position: static;
}
input[type="text"][readonly]:focus,
input[type="email"][readonly]:focus,
input[type="number"][readonly]:focus,
input[type="password"][readonly]:focus,
input[type="search"][readonly]:focus {
  border-color: #cacacb;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type="number"] {
  -moz-appearance: textfield;
}
select.standard:focus,
textarea.standard:focus,
input:not([type="checkbox"]).standard:focus {
  border: 1px solid #808080 !important;
}
select.standard:focus + label.org-theme-label,
textarea.standard:focus + label.org-theme-label,
input:not([type="checkbox"]).standard:focus + label.org-theme-label {
  border: none !important;
}
.widget-add-form select.standard:focus + label,
.widget-add-form textarea.standard:focus + label,
.widget-add-form input:not([type="checkbox"]).standard:focus + label {
  border: 1px solid #808080;
}
input[type="text"]:disabled {
  background: #e0e0e0;
  opacity: 0.5;
}
input[type="text"]:disabled:hover {
  cursor: no-drop;
}
.custom-notify {
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.2);
  height: auto;
  left: calc(50% - 200px);
  overflow: hidden;
  border-radius: 0 0 10px 10px;
  opacity: 1;
  position: absolute;
  top: 0px;
  width: 400px;
  z-index: 10000;
}
.custom-notify:empty {
  display: none;
  top: -10px;
}
.custom-notify .ember-notify-show {
  box-sizing: border-box;
  box-shadow: inset 0px 7px 12px -7px rgba(0, 0, 0, 0.4);
  color: white;
  min-height: 70px;
  padding: 10px;
  position: relative;
}
.custom-notify .ember-notify-show::before {
  display: block;
  font-size: 20px;
  font-size: 2rem;
  padding: 8px 0 5px;
  text-align: left;
}
.custom-notify .ember-notify-hide {
  display: none;
}
.custom-notify .error {
  background: #ed4651;
}
.custom-notify .error::before {
  content: "Error";
  margin-left: 19.5%;
}
.custom-notify .error .close {
  color: #ed4651;
}
.custom-notify .success {
  background: #18b28b;
}
.custom-notify .success::before {
  content: "Success";
  margin-left: 19.5%;
}
.custom-notify .success .close {
  color: #18b28b;
}
.custom-notify .warning {
  background: #ff9933;
}
.custom-notify .warning::before {
  content: "Warning";
  margin-left: 19.5%;
}
.custom-notify .warning .close {
  color: #ff9933;
}
.custom-notify .info {
  background: #3b5998;
}
.custom-notify .info::before {
  content: "Info";
  margin-left: 19.5%;
}
.custom-notify .info .close {
  color: #3b5998;
}
.custom-notify .message {
  display: block;
  width: 80%;
  margin-left: 19.5%;
  font-size: 14px;
  font-size: 1.4rem;
}
.custom-notify .custom-notify-icon,
.custom-notify .close {
  position: absolute;
}
.custom-notify .custom-notify-icon {
  color: white;
  font-size: 30px;
  font-size: 3rem;
  left: 34px;
  line-height: 75px;
  line-height: 7.5rem;
  top: 0;
}
.custom-notify .close {
  background: white;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  font-size: 2rem;
  font-weight: bold;
  height: 20px;
  line-height: 18px;
  line-height: 1.8rem;
  opacity: 0.75;
  right: 10px;
  text-align: center;
  top: 10px;
  width: 20px;
}
table.innovu-table-striped td,
.ember-table table td,
table.innovu-table-striped th,
.ember-table table th {
  overflow: hidden;
  padding: 8px 20px;
  text-align: left;
}
table.innovu-table-striped th,
.ember-table table th {
  background: #3b77a3;
  color: #555555;
}
table.innovu-table-striped tbody tr,
.ember-table table tbody tr {
  background: white;
}
.vault-scroll-wrapper table.innovu-table-striped th {
  background: white;
  color: #555555;
}
table.innovu-table-striped.user-table,
table.innovu-table-striped.access-table,
.admin-table table.innovu-table-striped,
.route-account-structure-plan-years-summary .innovu-table-striped,
.route-account-structure-read-plan-years-summary .innovu-table-striped,
.route-account-structure-write-plan-years-summary .innovu-table-striped,
.route-admin-client-edit .innovu-table-striped,
table[name="vault-table"].innovu-table-striped,
.route-data-health .innovu-table-striped {
  border: 1px solid #e6e6e6;
  margin: 15px 0 0 0;
}
table.innovu-table-striped.user-table tbody tr:nth-child(even),
table.innovu-table-striped.access-table tbody tr:nth-child(even),
.admin-table table.innovu-table-striped tbody tr:nth-child(even),
.route-account-structure-plan-years-summary .innovu-table-striped tbody tr:nth-child(even),
.route-account-structure-read-plan-years-summary .innovu-table-striped tbody tr:nth-child(even),
.route-account-structure-write-plan-years-summary .innovu-table-striped tbody tr:nth-child(even),
.route-admin-client-edit .innovu-table-striped tbody tr:nth-child(even),
table[name="vault-table"].innovu-table-striped tbody tr:nth-child(even),
.route-data-health .innovu-table-striped tbody tr:nth-child(even) {
  background: #f3f3f3;
}
table.innovu-table-striped.user-table tbody tr td a,
table.innovu-table-striped.access-table tbody tr td a,
.admin-table table.innovu-table-striped tbody tr td a,
.route-account-structure-plan-years-summary .innovu-table-striped tbody tr td a,
.route-account-structure-read-plan-years-summary .innovu-table-striped tbody tr td a,
.route-account-structure-write-plan-years-summary .innovu-table-striped tbody tr td a,
.route-admin-client-edit .innovu-table-striped tbody tr td a,
table[name="vault-table"].innovu-table-striped tbody tr td a,
.route-data-health .innovu-table-striped tbody tr td a {
  color: #617cb8;
}
table.innovu-table-striped.user-table th.center-column,
table.innovu-table-striped.access-table th.center-column,
.admin-table table.innovu-table-striped th.center-column,
.route-account-structure-plan-years-summary .innovu-table-striped th.center-column,
.route-account-structure-read-plan-years-summary .innovu-table-striped th.center-column,
.route-account-structure-write-plan-years-summary .innovu-table-striped th.center-column,
.route-admin-client-edit .innovu-table-striped th.center-column,
table[name="vault-table"].innovu-table-striped th.center-column,
.route-data-health .innovu-table-striped th.center-column,
table.innovu-table-striped.user-table td.center-column,
table.innovu-table-striped.access-table td.center-column,
.admin-table table.innovu-table-striped td.center-column,
.route-account-structure-plan-years-summary .innovu-table-striped td.center-column,
.route-account-structure-read-plan-years-summary .innovu-table-striped td.center-column,
.route-account-structure-write-plan-years-summary .innovu-table-striped td.center-column,
.route-admin-client-edit .innovu-table-striped td.center-column,
table[name="vault-table"].innovu-table-striped td.center-column,
.route-data-health .innovu-table-striped td.center-column {
  text-align: center;
}
.advanced-insight table.dashboard-table {
  width: auto;
  min-width: 100%;
}
.advanced-insight table.dashboard-table th,
.advanced-insight table.dashboard-table td {
  min-width: 130px;
  flex: 1;
  display: flex;
  align-items: center;
}
.advanced-insight table.dashboard-table th.row-number,
.advanced-insight table.dashboard-table td.row-number {
  justify-content: center !important;
}
.advanced-insight table.dashboard-table td.total,
.advanced-insight table.dashboard-table td.grand-total {
  justify-content: flex-end;
}
.advanced-insight table.dashboard-table td.total.row-number + td,
.advanced-insight table.dashboard-table td.grand-total.row-number + td {
  justify-content: flex-start;
}
.advanced-insight table.dashboard-table td.calculated-value,
.advanced-insight table.dashboard-table td.measure {
  justify-content: flex-end;
}
.advanced-insight table.dashboard-table tr {
  display: flex;
}
.advanced-insight table.dashboard-table thead th[colspan="1"] {
  flex: 1;
}
.advanced-insight table.dashboard-table thead th[colspan="2"] {
  flex: 2;
}
.advanced-insight table.dashboard-table thead th[colspan="3"] {
  flex: 3;
}
.advanced-insight table.dashboard-table thead th[colspan="4"] {
  flex: 4;
}
.advanced-insight table.dashboard-table thead th[colspan="5"] {
  flex: 5;
}
.advanced-insight table.dashboard-table thead th[colspan="6"] {
  flex: 6;
}
.advanced-insight table.dashboard-table thead th[colspan="7"] {
  flex: 7;
}
.advanced-insight table.dashboard-table thead th[colspan="8"] {
  flex: 8;
}
.advanced-insight table.dashboard-table thead th[colspan="9"] {
  flex: 9;
}
.advanced-insight table.dashboard-table thead th[colspan="10"] {
  flex: 10;
}
.web-view .widget-table-wrap {
  overflow: auto;
  height: calc(100% - 30px);
}
.web-view table.dashboard-table {
  max-height: 579px;
  width: auto;
  min-width: 100%;
}
.web-view table.dashboard-table th,
.web-view table.dashboard-table td {
  min-width: 130px;
  flex: 1;
  display: flex;
  align-items: center;
}
.web-view table.dashboard-table th.row-number,
.web-view table.dashboard-table td.row-number {
  justify-content: center !important;
}
.web-view table.dashboard-table td.total,
.web-view table.dashboard-table td.grand-total {
  justify-content: flex-end;
}
.web-view table.dashboard-table td.total.row-number + td,
.web-view table.dashboard-table td.grand-total.row-number + td {
  justify-content: flex-start;
}
.web-view table.dashboard-table td.calculated-value,
.web-view table.dashboard-table td.measure {
  justify-content: flex-end;
}
.web-view table.dashboard-table tr {
  display: flex;
}
.web-view table.dashboard-table thead th[colspan="1"] {
  flex: 1;
}
.web-view table.dashboard-table thead th[colspan="2"] {
  flex: 2;
}
.web-view table.dashboard-table thead th[colspan="3"] {
  flex: 3;
}
.web-view table.dashboard-table thead th[colspan="4"] {
  flex: 4;
}
.web-view table.dashboard-table thead th[colspan="5"] {
  flex: 5;
}
.web-view table.dashboard-table thead th[colspan="6"] {
  flex: 6;
}
.web-view table.dashboard-table thead th[colspan="7"] {
  flex: 7;
}
.web-view table.dashboard-table thead th[colspan="8"] {
  flex: 8;
}
.web-view table.dashboard-table thead th[colspan="9"] {
  flex: 9;
}
.web-view table.dashboard-table thead th[colspan="10"] {
  flex: 10;
}
.widget-table-wrap {
  overflow-x: hidden;
}
table.dashboard-table {
  max-height: 609px;
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #ababab;
  border-top: none;
  border-right: none;
  border-spacing: 0;
  table-layout: fixed;
}
table.dashboard-table.is-pivoted thead tr:nth-of-type(1) .dimension,
table.dashboard-table.is-pivoted thead tr:nth-of-type(1) .row-number {
  background: #3b77a3;
}
table.dashboard-table thead,
table.dashboard-table tbody {
  width: 100%;
}
table.dashboard-table tr {
  width: 100%;
}
table.dashboard-table tr.no-data {
  padding: 0;
}
table.dashboard-table td {
  border-right: 1px solid #ababab;
  min-width: 26px;
  box-sizing: border-box;
  color: #555555;
  text-align: left;
  overflow: hidden;
  border-top: none;
  padding: 5px 10px;
}
table.dashboard-table td.calculated-value,
table.dashboard-table td.measure {
  text-align: right;
}
table.dashboard-table td.total,
table.dashboard-table td.grand-total {
  text-align: right;
  background-color: #3b77a3;
  border-top: 1px solid #fff;
  color: #ffffff;
  font-weight: bold;
}
table.dashboard-table td.total.row-number + td,
table.dashboard-table td.grand-total.row-number + td {
  text-align: inherit;
}
table.dashboard-table td.is-error {
  color: #ed4651;
}
table.dashboard-table th.row-number,
table.dashboard-table td.row-number {
  font-size: 10px;
  padding: 5px 0px;
  text-align: center;
  width: 28px !important;
  max-width: 28px !important;
  min-width: 28px !important;
}
table.dashboard-table tbody tr:nth-child(even) td.dimension {
  background: #d8e6f1;
}
table.dashboard-table tbody tr:nth-child(even) td.measure {
  background: #cde7e2;
}
table.dashboard-table tbody tr:nth-child(even) td.calculated-value {
  background: #e0e1f0;
}
table.dashboard-table tbody tr:nth-child(odd) td.dimension {
  background: #ffffff;
}
table.dashboard-table tbody tr:nth-child(odd) td.measure {
  background: #ffffff;
}
table.dashboard-table tbody tr:nth-child(odd) td.calculated-value {
  background: #ffffff;
}
table.dashboard-table th {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  color: #fff;
  min-width: 26px;
  box-sizing: border-box;
  text-align: left;
  overflow: hidden;
  padding: 7px 5px 7px 10px;
}
table.dashboard-table th[colspan] {
  padding-left: 0;
  padding-right: 0;
}
table.dashboard-table th[colspan] .column-header-container {
  padding-left: 10px;
  padding-right: 5px;
}
table.dashboard-table th.row-number {
  background: #4891c6;
}
table.dashboard-table th.dimension {
  background: #4891c6;
}
table.dashboard-table th.measure {
  background: #3db39e;
}
table.dashboard-table th.calculated-value {
  background: #5e70b5;
}
table.dashboard-table th.pivot {
  background: #3b77a3;
}
table.dashboard-table th .column-name {
  display: inline-block;
  max-width: 100%;
}
table.dashboard-table th .flex-justify {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
table.dashboard-table.is-pivoted tr:nth-child(2) th {
  border-top: 1px solid #fff;
}
main.main-content .page-content .innovu-form.innovu-form-page {
  border-top: 1px solid #e6e6e6;
  padding: 25px 15% 10px;
}
main.main-content .page-content .innovu-form.innovu-form-page input {
  padding-left: 125px;
  width: 100%;
  background: transparent;
}
main.main-content .page-content .innovu-form.innovu-form-page input[readonly] {
  background: #e6e6e6;
}
main.main-content .page-content .innovu-form.innovu-form-page p {
  margin: 0 0 20px 0;
  position: relative;
}
main.main-content .page-content .innovu-form.innovu-form-page p label {
  color: #7a8593;
  font-size: 12px;
  font-size: 1.2rem;
  position: absolute;
  left: 16px;
  top: 5px;
}
main.main-content .page-content .innovu-form.innovu-form-page select {
  padding: 0 16px 0 125px;
  width: 100%;
}
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  background: white url("/assets/img/menu-arrow.svg") no-repeat right center;
  background-size: 27px 20px;
  border: 1px solid #e6e6e6;
  border-radius: 18px;
  box-sizing: border-box;
  color: #6c7280;
  height: 36px;
  outline: none;
  padding: 0 36px 0 16px;
}
select.standard {
  background: white url("/assets/img/sort-icon-teal.svg") no-repeat calc(100% - 10px) center;
  background-size: 10px auto;
  border: 1px solid #cbc8ca;
  border-radius: 3px;
  font-size: 12px;
  font-size: 1.2rem;
  height: 24px;
  padding: 0 25px 0 7px;
}
select.standard.large {
  font-size: 13px;
  font-size: 1.3rem;
  height: 28px;
  padding: 0 7px;
}
select.standard.new-style {
  background: white url("/assets/img/select-dropdown-icon.svg") no-repeat calc(100% + 1px) center;
  background-size: 24px auto;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  select {
    padding: 0 36px 0 20px;
  }
}
[data-tooltip] {
  position: relative;
}
[data-tooltip]:hover:after {
  position: absolute;
  z-index: 9999;
  top: -33px;
  transform: translateX(-50%);
  height: 25px;
  padding: 3px 9px;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: normal;
  content: attr(data-tooltip);
  background: linear-gradient(#243b5f 0, #243b5f 24px, transparent 24px, transparent 100%), url("/assets/img/tooltip-pointer.svg") no-repeat 50% 0;
  color: white;
  white-space: nowrap;
}
[data-tooltip].blue:hover:after {
  background: linear-gradient(#3188c9 0, #3188c9 24px, transparent 24px, transparent 100%), url("/assets/img/tooltip-pointer-blue.svg") no-repeat 50% 0;
}
[data-tooltip].green:hover:after {
  background: linear-gradient(#18b28b 0, #18b28b 24px, transparent 24px, transparent 100%), url("/assets/img/tooltip-pointer-green.svg") no-repeat 50% 0;
}
[data-tooltip].orange:hover:after {
  background: linear-gradient(#ff9933 0, #ff9933 24px, transparent 24px, transparent 100%), url("/assets/img/tooltip-pointer-orange.svg") no-repeat 50% 0;
}
[data-tooltip].purple:hover:after {
  background: linear-gradient(#8f5ba4 0, #8f5ba4 24px, transparent 24px, transparent 100%), url("/assets/img/tooltip-pointer-purple.svg") no-repeat 50% 0;
}
[data-tooltip].red:hover:after {
  background: linear-gradient(#ed4651 0, #ed4651 24px, transparent 24px, transparent 100%), url("/assets/img/tooltip-pointer-red.svg") no-repeat 50% 0;
}
[data-tooltip].text-block:hover:after {
  top: 25px;
  height: auto;
  padding: 10px;
  border-radius: 3px;
  width: 200px;
  background: #404d5e;
  white-space: normal;
  transform: translateX(0%);
  left: 0;
}
[data-tooltip].text-block .fa-info-circle {
  color: #2e8b9d;
  font-size: 10px;
  padding: 0px 0px 0px 5px;
  top: 2px;
  position: absolute;
}
.cog-options,
.widget-custom .circle-button {
  background: transparent;
  cursor: default !important;
  padding: 0;
}
.cog-options span,
.widget-custom .circle-button span {
  color: #243b5f !important;
  cursor: pointer;
  margin-top: 0 !important;
  font-size: 20px !important;
  font-size: 2rem !important;
}
.cog-options span:hover,
.widget-custom .circle-button span:hover {
  opacity: 0.5;
}
.cog-options + .insight-dashboard-actions-wrapper,
.widget-custom .circle-button + .insight-dashboard-actions-wrapper {
  right: initial !important;
  margin-left: -14px;
  margin-top: 6px;
}
.cog-options + .insight-dashboard-actions-wrapper .insight-actions,
.widget-custom .circle-button + .insight-dashboard-actions-wrapper .insight-actions {
  overflow: hidden;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
  border: 1px solid #e6e6e6;
  padding: 5px 0;
}
.cog-options + .insight-dashboard-actions-wrapper .insight-actions li,
.widget-custom .circle-button + .insight-dashboard-actions-wrapper .insight-actions li {
  float: none;
  color: #404d5e;
  padding: 6px 10px;
  margin-right: 0;
}
.cog-options + .insight-dashboard-actions-wrapper .insight-actions li .fa,
.widget-custom .circle-button + .insight-dashboard-actions-wrapper .insight-actions li .fa {
  margin: 0 5px 0 0;
  display: inline-block;
  color: #404d5e;
}
.cog-options + .insight-dashboard-actions-wrapper .insight-actions li .fa:before,
.widget-custom .circle-button + .insight-dashboard-actions-wrapper .insight-actions li .fa:before {
  position: relative;
  top: -2px;
}
.cog-options + .insight-dashboard-actions-wrapper .insight-actions li.disabled,
.widget-custom .circle-button + .insight-dashboard-actions-wrapper .insight-actions li.disabled {
  background-color: lightgray;
}
.cog-options + .insight-dashboard-actions-wrapper .insight-actions li.disabled .tooltip,
.widget-custom .circle-button + .insight-dashboard-actions-wrapper .insight-actions li.disabled .tooltip {
  display: none;
  color: #ed4651;
  background: #ecebeb;
  border-radius: 3px;
  left: 5px;
  pointer-events: none;
  position: absolute;
  padding: 5px;
  bottom: 15px;
  z-index: 5;
}
.cog-options + .insight-dashboard-actions-wrapper .insight-actions li.disabled:hover .tooltip,
.widget-custom .circle-button + .insight-dashboard-actions-wrapper .insight-actions li.disabled:hover .tooltip {
  display: block;
}
.route-access-approval-index main.main-content .page-content section {
  margin-top: 10px;
  padding: 0px;
}
.route-access-approval-index main.main-content div.modal .content textarea {
  margin-bottom: 20px;
}
.route-access-approval-index main.main-content h3.no-pending {
  margin-left: 30px;
}
.route-access-approval-index main.main-content h3 {
  margin: 0px 0px 10px 0px;
  font-weight: 400;
  font-size: 16px;
  font-size: 1.6rem;
  color: #243b5f;
  border-bottom: solid 1px #e6e6e6;
  padding-bottom: 15px;
}
.route-access-approval-index main.main-content .access-card {
  font-family: "helvetica-light", "Helvetica Neue", Helvetica, sans-serif;
}
.route-access-approval-index main.main-content .access-card .request-desc {
  align-items: center;
  margin-right: 0;
  background: #f3f3f3;
}
.route-access-approval-index main.main-content .access-card .request-desc.open {
  border-bottom: solid 1px #e6e6e6;
}
.route-access-approval-index main.main-content .access-card .request-desc:hover {
  cursor: pointer;
}
.route-access-approval-index main.main-content .access-card .request-desc .col-11 {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}
.route-access-approval-index main.main-content .access-card .request-desc .request-icon {
  background: #2e8b9d;
  background-image: url(/assets/img/access-request-icon.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 35px;
  height: 60px;
  width: 60px;
  margin-right: 15px;
}
.route-access-approval-index main.main-content .access-card .request-desc h2 {
  color: #243b5f;
  font-size: 18px;
  font-size: 1.8rem;
  margin: 0px 0px 0px 0px;
  font-weight: 300;
}
.route-access-approval-index main.main-content .access-card .request-desc p {
  color: #555555;
  font-size: 15px;
  font-size: 1.5rem;
  margin: 10px 0px 5px 0px;
}
.route-access-approval-index main.main-content .access-card .request-info {
  padding: 20px;
}
.route-access-approval-index main.main-content .access-card .request-info .text-area {
  padding: 5px;
  border: solid 1px #e6e6e6;
  margin: 0px 0px 15px 0px;
}
.route-access-approval-index main.main-content .access-card .request-info .text-area p {
  margin: 0;
}
.route-access-approval-index main.main-content .access-card .request-info .text-area textarea {
  width: 98.5%;
  border: none;
  resize: none;
}
.route-access-approval-index main.main-content .access-card .request-info .save-notes {
  width: 100%;
  position: relative;
  height: 24px;
}
.route-access-approval-index main.main-content .access-card .request-info .save-notes .ui-button {
  position: absolute;
  right: 0;
}
.route-access-approval-index main.main-content .access-card .request-info .save-notes .spinner {
  width: 20px;
  height: 20px;
  position: absolute;
  right: 106px;
  margin: 0;
  top: 2px;
}
.route-access-approval-index main.main-content .access-card .request-info strong {
  color: #555555;
  margin: 0px 0px 5px 0px;
  display: block;
}
.route-access-approval-index main.main-content .access-card .request-info p {
  color: #555555;
  margin: 0px 10px 0px 0px;
  word-break: break-all;
}
.route-access-approval-index main.main-content .access-card .request-info .user-details .col-4 {
  margin: 0px 0px 10px 0px;
}
.route-access-approval-index main.main-content .access-card .detail-button {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}
.route-access-approval-index main.main-content .access-card .detail-button span {
  height: 30px;
  width: 30px;
  display: block;
  margin-left: auto;
  margin-right: 20px;
}
.route-access-approval-index main.main-content .access-card .detail-button .close-icon {
  background: url("/assets/img/collapsible-header-close.svg");
  background-size: cover;
}
.route-access-approval-index main.main-content .access-card .detail-button .open-icon {
  background: url("/assets/img/collapsible-header-open.svg");
  background-size: cover;
}
.route-access-approval-index main.main-content .access-card .admin-reason {
  padding-left: 20px;
}
.route-access-approval-index main.main-content .access-card .access-approval-change {
  color: #ed4651;
  padding-left: 20px;
}
.route-access-approval-index main.main-content .access-card .access-approval-change.access-gain {
  color: #18b28b;
}
.route-access-approval-index main.main-content .access-card .permission-changes {
  padding: 0px 20px 20px 20px;
}
.route-access-approval-index main.main-content .access-card .change-summary-container {
  padding: 0px 20px 20px 20px;
}
.route-access-approval-index main.main-content .access-card .change-summary-container .change-summary-title {
  font-size: 30px;
  font-size: 3rem;
  font-weight: 200;
  color: #243b5f;
}
.route-access-approval-index main.main-content .access-card .change-summary-container .change-summary-title span {
  display: inline-block;
  width: 23px;
  height: 22px;
  background: url("/assets/img/requested-change-summary-icon.svg");
}
.route-access-approval-index main.main-content .access-card .approval-container {
  display: table;
  margin: 0 auto;
}
.route-access-approval-index main.main-content .access-card .approval-container h2 {
  font-size: 25px;
  font-size: 2.5rem;
  font-weight: 200;
  color: #243b5f;
  border-bottom: 1px solid #e6e6e6;
  padding-bottom: 15px;
}
.route-access-approval-index main.main-content .access-card .approval-container .button-container {
  display: table;
  margin: 0 auto;
  padding-bottom: 20px;
}
.route-access-approval-index main.main-content .access-card .approval-container .button-container div {
  display: inline-block;
}
.route-access-approval-index main.main-content .access-card .approval-container .button-container div:first-child {
  margin-right: 20px;
}
.route-access-approval-index main.main-content .access-card .approval-container .button-container strong {
  display: block;
  font-weight: 300;
  color: #555555;
  font-size: 25px;
  font-size: 2.5rem;
  text-align: center;
  margin-top: 10px;
}
.route-access-approval-index main.main-content .access-card .approval-container .button-container button {
  border-radius: 100%;
  width: 70px;
  height: 70px;
  display: block;
  margin: 0 auto;
  transition: all 0.5s;
}
.route-access-approval-index main.main-content .access-card .approval-container .button-container button:hover {
  cursor: pointer;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.5);
}
.route-access-approval-index main.main-content .access-card .approval-container .button-container button.deny {
  background-color: #ed4651;
}
.route-access-approval-index main.main-content .access-card .approval-container .button-container button.deny::before {
  font-family: "fontawesome" !important;
  color: white;
  font-size: 60px;
  font-size: 6rem;
  position: relative;
  left: 3px;
  content: "\f00d";
  text-align: center;
}
.route-access-approval-index main.main-content .access-card .approval-container .button-container button.approve {
  background-color: #2e8b9d;
}
.route-access-approval-index main.main-content .access-card .approval-container .button-container button.approve::before {
  font-family: "fontawesome" !important;
  color: white;
  font-size: 55px;
  font-size: 5.5rem;
  content: "\f00c";
  text-align: center;
}
.route-access-authorizer .access-authorizer-wrapper {
  background: #fff;
  border-radius: 20px;
  border: solid 1px #d6d6d6;
  margin: 0 auto;
  padding: 30px 60px 30px 60px;
  max-width: 1200px;
  margin-top: 30px;
}
.route-access-authorizer .access-authorizer-wrapper .desc {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 15px;
  color: #555555;
  text-align: center;
  margin: 0 0 30px 0;
}
.route-access-authorizer .access-authorizer-wrapper .border {
  height: 1px;
  width: 730px;
  background: #d6d6d6;
  margin: 0 auto;
  margin-bottom: 30px;
}
.route-access-authorizer .access-authorizer-wrapper .button-wrapper {
  display: flex;
  align-items: center;
}
.route-access-authorizer .access-authorizer-wrapper .button-wrapper .button-container {
  border-radius: 20px;
  border: solid 1px #d6d6d6;
  background: #f5f7fa;
  margin-right: 30px;
  padding: 25px 0 25px 0;
  flex: 1;
  font-weight: 300;
}
.route-access-authorizer .access-authorizer-wrapper .button-wrapper .button-container:last-of-type {
  margin-right: 0;
}
.route-access-authorizer .access-authorizer-wrapper .button-wrapper .button-container .button {
  position: relative;
}
.route-access-authorizer .access-authorizer-wrapper .button-wrapper .button-container .button.disabled {
  opacity: 0.8;
  pointer-events: none;
}
.route-access-authorizer .access-authorizer-wrapper .button-wrapper .button-container .button .access-input {
  position: absolute;
  top: 0;
  opacity: 0;
  left: 50%;
  margin-left: -55px;
}
.route-access-authorizer .access-authorizer-wrapper .button-wrapper .button-container .button:hover {
  cursor: pointer;
}
.route-access-authorizer .access-authorizer-wrapper .button-wrapper .button-container .button:hover .icon-container {
  box-shadow: 0px 0.5px 4px 0.5px rgba(0, 0, 0, 0.2);
  border: solid 1px #38a0a1;
}
.route-access-authorizer .access-authorizer-wrapper .button-wrapper .button-container .button:hover h3 {
  color: #333;
}
.route-access-authorizer .access-authorizer-wrapper .button-wrapper .button-container .button:hover .title-border {
  width: 180px;
}
.route-access-authorizer .access-authorizer-wrapper .button-wrapper .button-container .button .icon-container {
  width: 100px;
  height: 100px;
  border-radius: 100%;
  border: solid 1px #2c72a6;
  background: #fff;
  margin: 0 auto;
  margin-bottom: 15px;
  transition: all 0.5s;
  position: relative;
}
.route-access-authorizer .access-authorizer-wrapper .button-wrapper .button-container .button .icon-container .loading-indicator {
  position: absolute;
  top: 3px;
}
.route-access-authorizer .access-authorizer-wrapper .button-wrapper .button-container .button .icon-container .file-uploaded-notification {
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 100%;
  width: 25px;
  height: 20px;
  padding-top: 5px;
  background: #38a0a1;
}
.route-access-authorizer .access-authorizer-wrapper .button-wrapper .button-container .button .icon-container .file-uploaded-notification::before {
  font-family: "fontawesome" !important;
  color: #fff;
  font-size: 14px;
  font-size: 1.4rem;
  content: "\f00c";
  margin-left: 6px;
}
.route-access-authorizer .access-authorizer-wrapper .button-wrapper .button-container .button .icon-container .file-uploaded-notification.error {
  background: #e04a14;
}
.route-access-authorizer .access-authorizer-wrapper .button-wrapper .button-container .button .icon-container .file-uploaded-notification.error::before {
  font-size: 15px;
  font-size: 1.5rem;
  content: "\f05e";
  margin-left: 6px;
}
.route-access-authorizer .access-authorizer-wrapper .button-wrapper .button-container .button .icon-container .icon {
  margin: 0 auto;
}
.route-access-authorizer .access-authorizer-wrapper .button-wrapper .button-container .button .icon-container .icon.download {
  background: url("/assets/img/access-authorizer-download-icon.svg") no-repeat;
  width: 45px;
  height: 57px;
  margin-top: 20px;
}
.route-access-authorizer .access-authorizer-wrapper .button-wrapper .button-container .button .icon-container .icon.org {
  background: url("/assets/img/access-authorizer-org-icon.svg") no-repeat;
  background-size: cover;
  width: 64px;
  height: 40px;
  margin-top: 32px;
}
.route-access-authorizer .access-authorizer-wrapper .button-wrapper .button-container .button .icon-container .icon.upload {
  background: url("/assets/img/access-authorizer-upload-icon.svg") no-repeat;
  width: 45px;
  height: 57px;
  margin-top: 20px;
}
.route-access-authorizer .access-authorizer-wrapper .button-wrapper .button-container .button h3 {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 19px;
  color: #555555;
  font-weight: 300;
  margin: 0 auto;
  display: table;
  margin-bottom: 10px;
  transition: all 0.5s;
  text-align: center;
}
.route-access-authorizer .access-authorizer-wrapper .button-wrapper .button-container .button .title-border {
  width: 155px;
  height: 1px;
  background: #2d73a6;
  margin: 0 auto;
  transition: all 0.5s;
}
.route-access-authorizer .access-authorizer-wrapper .button-wrapper .button-container p {
  font-size: 15px;
  font-size: 1.5rem;
  color: #7a7a7a;
  text-align: center;
  max-width: 80%;
  margin: 0 auto;
  margin-top: 20px;
}
.route-access-authorizer .access-authorizer-wrapper .submit-btn {
  color: #fff;
  background: #1e3f56;
  border: solid 1px #81a1b8;
  appearance: none;
  border-radius: 15px;
  font-size: 15px;
  padding: 5px 10px 5px 10px;
  display: flex;
  align-items: center;
  margin: 0 auto;
  margin-top: 30px;
  transition: all 0.5s;
}
.route-access-authorizer .access-authorizer-wrapper .submit-btn.disabled {
  pointer-events: none;
  opacity: 0.5;
}
.route-access-authorizer .access-authorizer-wrapper .submit-btn:hover {
  cursor: pointer;
  box-shadow: 0px 0.5px 4px 0.5px rgba(0, 0, 0, 0.2);
  background: #2c72a6;
}
.route-access-authorizer .access-authorizer-wrapper .submit-btn .icon {
  background: url("/assets/img/access-authorizer-submit-icon.svg") no-repeat;
  background-size: cover;
  width: 15px;
  height: 16px;
  margin-right: 5px;
}
.route-access-authorizer .access-authorizer-wrapper .error-wrapper {
  background: #f5f7fa;
  border-radius: 10px;
  padding: 20px;
  border: solid 1px #d6d6d6;
  margin-top: 30px;
}
.route-access-authorizer .access-authorizer-wrapper .error-wrapper h3 {
  margin: 0 0 10px 0;
  padding: 0 0 10px 0;
  display: table;
  border-bottom: 1px solid #e04a14;
  color: #555555;
}
.route-access-authorizer .access-authorizer-wrapper .error-wrapper ul {
  margin: 0 0 20px 0;
  padding: 0;
}
.route-access-authorizer .access-authorizer-wrapper .error-wrapper ul li {
  margin: 0 0 10px 15px;
  padding: 0 0 0 10px;
  text-align: left;
  list-style-position: outside;
  list-style-type: "\2B24";
  color: #555555;
  font-size: 12px;
  font-size: 1.2rem;
}
.route-access-authorizer .access-authorizer-wrapper .error-wrapper ul li::marker {
  color: #e04a14;
  font-size: 9px;
  font-size: 0.9rem;
}
.route-access-authorizer .access-authorizer-wrapper .error-wrapper .reset-btn {
  color: #fff;
  background: #1e3f56;
  border: solid 1px #81a1b8;
  appearance: none;
  border-radius: 15px;
  font-size: 12px;
  padding: 5px 10px 5px 10px;
  display: table;
  transition: all 0.5s;
}
.route-access-authorizer .access-authorizer-wrapper .error-wrapper .reset-btn:hover {
  cursor: pointer;
  box-shadow: 0px 0.5px 4px 0.5px rgba(0, 0, 0, 0.2);
  background: #2c72a6;
}
main.main-content .page-content.access-request section {
  margin-top: 20px;
  margin-bottom: 20px;
}
main.main-content .page-content section.user-details,
main.main-content .page-content section.access-management-content,
main.main-content .page-content section.access-card,
main.main-content .page-content section.copy-from-content {
  overflow-y: auto;
}
.manage-access-content-wrapper {
  width: 90%;
  max-width: 1260px;
  margin: 0 auto;
  padding-top: 25px;
}
.manage-access-content-wrapper h2 {
  font-size: 24px;
  font-size: 2.4rem;
  color: #555555;
  font-weight: 700;
}
.manage-access-content-wrapper .manage-access-link-wrapper {
  background: #f3f3f3;
  padding: 40px;
  border: solid 1px #e6e6e6;
  width: calc(100% - 80px);
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}
.manage-access-content-wrapper .manage-access-link-wrapper:last-child {
  width: calc(67.5% - 80px);
}
.manage-access-content-wrapper .manage-access-link-wrapper .manage-access-link {
  background: white;
  border: solid 1px #e6e6e6;
  margin-right: 40px;
  padding: 30px 0px 30px 0px;
  width: 50%;
}
.manage-access-content-wrapper .manage-access-link-wrapper .manage-access-link:hover {
  cursor: pointer;
}
.manage-access-content-wrapper .manage-access-link-wrapper .manage-access-link:hover h3 {
  color: #2e8b9d;
}
.manage-access-content-wrapper .manage-access-link-wrapper .manage-access-link:hover .icon {
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.3);
}
.manage-access-content-wrapper .manage-access-link-wrapper .manage-access-link:last-child {
  margin-right: 0;
}
.manage-access-content-wrapper .manage-access-link-wrapper .manage-access-link .icon {
  display: block;
  width: 135px;
  height: 135px;
  background: #2e8b9d;
  border-radius: 100%;
  margin: 0 auto;
  margin-bottom: 20px;
  color: white;
  font-size: 25px;
  font-size: 2.5rem;
  transition: all 0.5s;
}
.manage-access-content-wrapper .manage-access-link-wrapper .manage-access-link .icon.manage-users {
  background: url(/assets/img/manage-user-icon.svg) #2e8b9d no-repeat center;
  background-size: 70px;
}
.manage-access-content-wrapper .manage-access-link-wrapper .manage-access-link .icon.bulk-manage-users {
  background: url(/assets/img/bulk-manage-user-icon.svg) #2e8b9d no-repeat center;
  background-size: 90px;
}
.manage-access-content-wrapper .manage-access-link-wrapper .manage-access-link .icon.copy-user-access {
  background: url(/assets/img/copy-user-access-icon.svg) #2e8b9d no-repeat center;
  background-size: 90px;
}
.manage-access-content-wrapper .manage-access-link-wrapper .manage-access-link .icon.create-user {
  background: url(/assets/img/create-user-icon.svg) #2e8b9d no-repeat center;
  background-size: 90px;
}
.manage-access-content-wrapper .manage-access-link-wrapper .manage-access-link .icon.create-users-bulk {
  background: url(/assets/img/create-multiple-users-icon.svg) #2e8b9d no-repeat center;
  background-size: 100px;
}
.manage-access-content-wrapper .manage-access-link-wrapper .manage-access-link h3 {
  color: #243b5f;
  font-size: 20px;
  font-size: 2rem;
  margin: 0px 0px 20px 0px;
  line-height: 20px;
  transition: all 0.5s;
  padding: 0px 15px 0px 15px;
  text-align: center;
}
.manage-access-content-wrapper .manage-access-link-wrapper .manage-access-link p {
  font-size: 12px;
  font-size: 1.2rem;
  text-align: center;
  color: #555555;
  max-width: 80%;
  margin: 0 auto;
}
.access-management-content .subheader,
.user-index .subheader {
  padding: 0px 0px 20px 0px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}
.access-management-content .subheader h2,
.user-index .subheader h2 {
  font-weight: 300;
  color: #243b5f;
  font-size: 25px;
  font-size: 2.5rem;
  margin: 0;
}
.access-management-content .subheader .action-items,
.user-index .subheader .action-items {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  margin-left: auto;
}
.access-management-content .subheader .action-items div,
.user-index .subheader .action-items div {
  background: #ededed;
  border: 1px solid #cacaca;
  color: #555555;
  padding: 3px 5px 3px 5px;
  border-radius: 3px;
}
.access-management-content .subheader .action-items div input,
.user-index .subheader .action-items div input {
  margin: 0px 0px 0px 5px;
}
.access-management-content .subheader .action-items div input:first-of-type,
.user-index .subheader .action-items div input:first-of-type {
  margin: 0px 5px 0px 5px;
}
.access-management-content .subheader .action-items .standard-button,
.user-index .subheader .action-items .standard-button {
  margin-left: 10px;
}
.access-management-content .subheader .read-only-message,
.user-index .subheader .read-only-message {
  padding: 0px 0px 5px 0px;
}
.access-management-content .read-only-message,
.user-index .read-only-message {
  background-color: #ff9933;
  text-align: center;
  padding: 5px;
  margin: 0px !important;
}
.access-management-content .bulk-user-edit-list,
.user-index .bulk-user-edit-list {
  margin: 0 0 10px 0;
}
.access-management-content .bulk-user-edit-list .user-info,
.user-index .bulk-user-edit-list .user-info {
  position: relative;
  min-width: 25%;
  max-width: 25%;
  width: 100%;
  margin: 0 0 10px;
}
.access-management-content .bulk-user-edit-list .user-info .details,
.user-index .bulk-user-edit-list .user-info .details {
  display: block;
  margin-left: 75px;
  margin-top: 0;
}
.access-management-content .bulk-user-edit-list .user-info .details h3,
.user-index .bulk-user-edit-list .user-info .details h3 {
  margin: 7px 0 0;
}
.access-management-content .flex-row.request-reason input,
.user-index .flex-row.request-reason input {
  max-width: 40%;
}
.access-management-content .flex-row.request-reason p,
.user-index .flex-row.request-reason p {
  flex: none;
  font-size: 1.5rem;
}
.access-management-content .flex-row.request-reason button.save,
.user-index .flex-row.request-reason button.save {
  max-width: 210px;
  margin-left: 20px;
  margin-right: 5px;
}
.access-management-content .flex-row.request-reason button.cancel,
.user-index .flex-row.request-reason button.cancel {
  max-width: 150px;
  margin-left: 5px;
}
.access-management-content {
  position: relative;
}
.access-management-content .standard-button.add.add-org {
  position: absolute;
  top: 20px;
  right: 120px;
  background: #18b28b;
}
.route-access-request-my-access .access-management-content .standard-button.add.add-org {
  right: 160px;
}
.group-access-table-glimmer {
  overflow: auto;
  height: calc(100vh - 350px);
  margin-bottom: 35px;
}
.group-access-table-glimmer table {
  table-layout: fixed;
  border-collapse: inherit;
  border: 1px solid #cacaca;
  color: #555555;
}
.group-access-table-glimmer thead {
  color: #555555;
  background: #ededed;
  border-bottom: 1px solid #cacaca;
}
.group-access-table-glimmer thead tr:first-child th {
  text-transform: uppercase;
}
.group-access-table-glimmer thead th {
  border-right: 1px solid #cacaca;
  position: sticky;
  top: 0;
  background: #eee;
}
.group-access-table-glimmer thead th.permission-group:hover .tooltip {
  display: block;
}
.group-access-table-glimmer thead th.permission-group .tooltip {
  background: #ebebeb;
  border: 1px solid #cacaca;
  border-right: 1px solid #cacaca;
  display: none;
  top: 25px;
  right: 0;
  padding: 5px;
  position: absolute;
  white-space: nowrap;
  z-index: 20;
}
.group-access-table-glimmer thead th.permission-group .tooltip:after,
.group-access-table-glimmer thead th.permission-group .tooltip:before {
  top: 100%;
  right: 15px;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}
.group-access-table-glimmer thead th.permission-group .tooltip:after {
  border-color: rgba(136, 183, 213, 0);
  border-top-color: #ebebeb;
  border-width: 5px;
  margin-left: -5px;
}
.group-access-table-glimmer thead th.permission-group .tooltip:before {
  border-color: rgba(194, 225, 245, 0);
  border-top-color: #cacaca;
  border-width: 6px;
  margin-left: -6px;
}
.group-access-table-glimmer tr {
  background: #f8f8f8;
  transition: 0.2s;
}
.group-access-table-glimmer tr:hover {
  background: #d9d9d9;
}
.group-access-table-glimmer tr:hover th,
.group-access-table-glimmer tr:hover td {
  background: #d9d9d9 !important;
}
.group-access-table-glimmer tr:hover th.permission-group,
.group-access-table-glimmer tr:hover td.permission-group {
  background: #d9d9d9;
}
.group-access-table-glimmer tr td:first-child,
.group-access-table-glimmer tr th:first-child {
  padding: 8px 16px;
  min-width: 250px;
  width: 250px;
  max-width: 250px;
  position: sticky;
  left: 0;
  z-index: 2;
}
.group-access-table-glimmer tr td:not(:first-child),
.group-access-table-glimmer tr th:not(:first-child) {
  padding: 8px 16px;
  min-width: 50px;
  width: 50px;
  max-width: 50px;
}
.group-access-table-glimmer tr th,
.group-access-table-glimmer tr td {
  transition: 0.2s;
  border-bottom: 1px solid #cacaca;
  text-align: center;
}
.group-access-table-glimmer tr th:first-of-type,
.group-access-table-glimmer tr td:first-of-type {
  text-align: left;
}
.group-access-table-glimmer tr th.permission-group,
.group-access-table-glimmer tr td.permission-group {
  background: #ebebeb;
}
.group-access-table-glimmer tr td {
  border-right: 1px solid #cacaca;
  background: #f8f8f8;
}
.group-access-table-glimmer tr td a {
  color: #243b5f;
}
.group-access-table-glimmer tr.dark-stripe {
  background: #f3f3f3;
}
.group-access-table-glimmer tr.dark-stripe td:first-of-type {
  background: #f3f3f3;
}
.group-access-table-glimmer tr.dark-stripe .permission-group {
  background: #e6e6e6;
}
.group-access-table-glimmer tr.remove {
  background: #f6a3a8 !important;
}
.group-access-table-glimmer tr.remove td.permission-group {
  background: #f6a3a8;
}
.group-access-table-glimmer tr.add {
  background: #49e7bf !important;
}
.group-access-table-glimmer tr.add td.permission-group {
  background: #49e7bf;
}
table.access-management-table {
  border: 1px solid #cacaca;
  width: 100%;
  color: #555555;
}
table.access-management-table.bulk-manage thead th:first-child {
  width: 12px;
}
table.access-management-table.group-access tr:hover {
  cursor: default;
}
table.access-management-table td,
table.access-management-table th {
  overflow: hidden;
  padding: 8px 20px;
  text-align: left;
}
table.access-management-table thead {
  color: #555555;
  background: #ededed;
  border-bottom: 1px solid #cacaca;
}
table.access-management-table thead th {
  border-right: 1px solid #cacaca;
}
table.access-management-table tbody tr {
  background: #f8f8f8;
}
table.access-management-table tbody tr.dark-stripe {
  background: #f3f3f3;
}
table.access-management-table tbody tr:hover {
  background: #d9d9d9;
  cursor: pointer;
}
table.access-management-table tbody tr:hover.bulk-manage-user-row {
  cursor: default;
}
table.access-management-table tbody tr td {
  border-right: 1px solid #cacaca;
}
table.access-management-table tbody tr td a {
  color: #243b5f;
}
.reason-field {
  margin: 0px 0px 10px 0px;
}
.bulk-upload-users-container .col:first-child {
  border-right: solid 1px #e6e6e6;
  padding: 0px 40px 0px 0px;
  margin-right: 40px;
}
.bulk-upload-users-container p {
  font-size: 12px;
  font-size: 1.2rem;
  color: #555555;
}
.bulk-upload-users-container p strong {
  display: inline;
}
.bulk-upload-users-container ol {
  margin: 0;
  padding: 0;
}
.bulk-upload-users-container ol li {
  color: #555555;
  margin: 15px 0px 0px 20px;
}
.bulk-upload-users-container strong {
  color: #555555;
  display: block;
  margin-top: 15px;
}
.bulk-upload-users-container .action-items {
  padding: 20px 0px 0px 0px;
}
.bulk-upload-users-container .action-items .action-item {
  text-align: center;
}
.bulk-upload-users-container .action-items .action-item button {
  position: relative;
  width: 80px;
  height: 80px;
  background: #2e8b9d;
  border-radius: 100%;
  color: white;
  border: none;
  transition: all 0.5s;
  font-size: 50px;
  font-size: 5rem;
}
.bulk-upload-users-container .action-items .action-item button span {
  position: absolute;
  top: -13px;
  right: -10px;
  font-size: 25px;
  font-size: 2.5rem;
}
.bulk-upload-users-container .action-items .action-item button.error {
  background: #ed4651;
}
.bulk-upload-users-container .action-items .action-item button:hover {
  cursor: pointer;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.3);
}
.bulk-upload-users-container .action-items .action-item button::before {
  font-family: "fontawesome" !important;
}
.bulk-upload-users-container .action-items .action-item button.upload::before {
  content: "\f093";
}
.bulk-upload-users-container .action-items .action-item button.download::before {
  content: "\f019";
}
.bulk-upload-users-container .action-items .action-item button.submit::before {
  content: "\f00c";
}
.bulk-upload-users-container .action-items .action-item button.submit.disabled {
  background: #7a8593;
  pointer-events: none;
}
.bulk-upload-users-container .action-items .action-item strong {
  display: block;
  margin-top: 10px;
  color: #555555;
}
.copy-from-content .reason-field {
  margin-top: 20px;
  max-width: 49.5%;
}
.copy-from-content h3 {
  font-weight: 300;
  color: #555555;
  font-size: 15px;
  font-size: 1.5rem;
  margin: 20px 0px 20px 0px;
}
.copy-from-content h2 {
  font-weight: 300;
  color: #243b5f;
  font-size: 25px;
  font-size: 2.5rem;
  margin: 0px 0px 30px 0px;
}
.copy-from-content .header button {
  margin: 15px 0px 0px 0px;
  max-width: 150px;
}
.copy-from-content .copy-from-instructions {
  font-weight: 300;
}
.copy-from-content .copy-from-instructions .user-search-container {
  display: inline-block;
  margin: 0px 0px 0px 15px;
}
.copy-from-content .copy-from-instructions .copy-from-desc {
  display: inline-block;
  font-size: 18px;
  font-size: 1.8rem;
}
.copy-from-content .share-card-body {
  height: 250px;
  min-height: 250px;
  max-height: 250px;
  overflow-x: hidden;
  overflow-y: auto;
  background: #f3f3f4;
  border: 1px solid #e6e6e6;
  margin: 0;
  padding: 0;
  min-width: auto;
}
.copy-from-content .share-card-body.no-users {
  min-height: 100px;
  max-height: 100px;
}
.copy-from-content .share-card-body .search-message {
  color: #555555;
  font-size: 14px;
  font-size: 1.4rem;
  padding: 10px;
}
.copy-from-content .share-card-body .flex-row {
  background: #f8f8f8;
  align-items: center;
}
.copy-from-content .share-card-body .flex-row:hover {
  cursor: pointer;
}
.copy-from-content .share-card-body .flex-row:nth-last-of-type(2n) {
  background: #f3f3f4;
}
.copy-from-content .share-card-body .flex-row > div {
  padding: 8px 0 10px;
}
.copy-from-content .share-card-body .flex-row > div p {
  margin: 0;
}
.copy-from-content .share-card-body .flex-row .flex-row {
  background: inherit;
}
.copy-from-content .share-card-body .user-info {
  color: #555555;
  padding-left: 10px;
}
.copy-from-content .share-card-body .user-info.selected {
  color: #18b28b;
}
.copy-from-content .share-card-body.selected-target-users .remove-icon {
  max-width: 25px;
  height: 25px;
  background: url(/assets/img/remove-user-icon.svg);
  margin-right: 15px;
}
.copy-from-content .current-access-table {
  color: #555555;
  padding: 20px 0px 0px 0px;
}
.copy-from-content .current-access-table h3 {
  margin: 0;
}
.copy-from-content .current-access-table p {
  margin: 0;
}
.route-access-request-index .button-wrap.submit-form,
.route-access-request-bulk .button-wrap.submit-form,
.route-access-request-copy-from .button-wrap.submit-form {
  position: absolute;
  top: 20px;
  z-index: 195;
  right: 20px;
}
.action-term {
  font-weight: bold;
}
.route-access-request-copy-from main.main-content .page-content section h1 {
  margin-bottom: 0;
}
.route-access-request-copy-from .access-term {
  text-transform: capitalize;
}
.route-access-request-copy-from .access-term span {
  text-transform: none;
}
.route-access-request-copy-from .selected,
.route-access-request-copy-from .help-text {
  font-weight: bold;
}
.route-access-request-copy-from .user-row {
  margin: 5px;
  cursor: pointer;
}
.route-access-request-copy-from .user-row:hover {
  background-color: lightgray;
}
.route-access-request-copy-from .user-row button {
  margin: 0 0 0 5px;
}
.route-access-request-copy-from .user-list-wrap {
  max-height: 400px;
  overflow: auto;
  margin-bottom: 10px;
}
.route-access-request-copy-from .user-list-wrap div {
  margin: 3px 0;
}
.route-access-request-copy-from .user-list-wrap label {
  white-space: nowrap;
  padding: 2px;
  cursor: pointer;
}
.route-access-request-copy-from .user-list-wrap label:hover {
  background-color: lightgray;
}
.route-access-request-copy-from .flex-row + .standard-button.cancel {
  margin-top: 10px;
}
.route-access-request-bulk .content > .flex-row:not(:first-child) {
  margin-top: 10px;
}
.route-access-request-bulk .org-search-wrap {
  position: relative;
}
.route-access-request-bulk .org-search-wrap input[type="search"] + div {
  position: absolute;
  right: -30px;
  top: -40px;
  background: #fff;
  border-left: solid 1px lightgray;
  margin: 5px;
  width: 360px;
  height: 400px;
  padding-left: 10px;
}
.route-access-request-bulk main.main-content section h1,
.route-access-request-bulk main.main-content section h2 {
  margin: 0;
}
.route-access-request-bulk .toggle-wrap {
  display: inline-block;
}
.route-access-request-bulk .org-list-wrap {
  width: 710px;
  max-height: 300px;
  overflow: auto;
  flex-direction: column;
}
.route-access-request-bulk .org-list-wrap div {
  margin: 5px 0;
}
.route-access-request-bulk .page-access-wrap {
  flex-direction: column;
  height: 300px;
  overflow: auto;
}
.route-access-request-bulk .page-access-wrap .toggle-wrap {
  margin-right: 5px;
  margin-left: 5px;
}
.route-access-request-bulk .page-access-wrap .flex-row {
  margin: 7px 0;
  min-height: 10px;
}
.access-request .change-tooltip {
  background: white;
  border: 1px solid #e6e6e6;
  box-shadow: 3px 3px 5px rgba(173, 173, 173, 0.4);
  box-sizing: border-box;
  margin-top: 9px;
  opacity: 0;
  padding: 10px;
  position: absolute;
  right: -110%;
  transition: 0.4s ease-in-out;
  width: 300px;
}
.access-request .change-tooltip:after,
.access-request .change-tooltip:before {
  bottom: 100%;
  right: 2%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}
.access-request .change-tooltip:after {
  border-color: rgba(255, 0, 0, 0);
  border-bottom-color: white;
  border-width: 7px;
  margin-left: -7px;
}
.access-request .change-tooltip:before {
  border-color: rgba(0, 0, 255, 0);
  border-bottom-color: #e6e6e6;
  border-width: 8px;
  margin-left: -8px;
}
.access-request .change-tooltip h3 {
  margin-top: 0;
}
.access-request .change-tooltip .permission-changes {
  max-height: 500px;
  margin-right: 0;
  overflow: auto;
}
.access-request .changeset-wrapper {
  display: inline-block;
}
.access-request .changeset-wrapper.disabled {
  opacity: 0.5;
  pointer-events: none;
}
.access-request .changeset-wrapper.changes {
  opacity: 1;
  pointer-events: all;
}
.access-request .changeset-wrapper:hover .change-tooltip {
  transition: 0.4s ease-in-out;
  right: 3%;
  opacity: 1;
}
.access-request .button-wrap.submit-form {
  height: 40px;
}
.access-request .button-wrap.submit-form input {
  margin-top: 0;
}
.access-request .button-wrap.submit-form .standard-button {
  margin-left: 10px;
  margin-top: 35px;
}
.access-request .request-reason {
  width: 100%;
}
.access-request .initial-steps {
  margin-right: 0;
}
.access-request .form-select {
  margin-right: 10px;
}
.access-request .form-select.users {
  margin-right: 0;
  width: calc(100% - 200px);
}
.access-request .details {
  margin-top: 20px;
  position: relative;
  padding-bottom: 20px;
}
.access-request .details .button-wrap {
  display: none;
}
.access-request .details .label-text {
  color: #555555;
}
.access-request .access .button-wrap,
.access-request .admin .button-wrap {
  display: none;
}
.access-request .admin-section {
  width: 270px;
  background: #ed4651;
  padding: 10px;
}
.access-request .admin-section .admin {
  color: white;
}
.access-request .user-access .innovu-input-search {
  position: fixed;
  top: 94px;
  right: 370px;
}
.access-request .permission-changes .flex-row span {
  font-weight: bold;
}
.access-request .permission-changes .flex-row p {
  margin: 2px 0px;
}
.access-request .permission-changes h3 {
  margin: 5px 0px 2px;
  color: #4d94ff;
}
.access-request .permission-changes h4 {
  margin: 5px 10px;
  font-size: 1.1em;
}
.access-request .permission-changes .detail-button h4 {
  margin-top: 20px;
  cursor: pointer;
}
.access-request .permission-changes .admin-reason {
  padding-left: 20px;
}
.modal.confirmation-modal .content {
  width: 80%;
  margin-top: 0;
}
.modal.confirmation-modal .content h1 {
  font-size: 28px;
  font-size: 2.8rem;
}
.modal.confirmation-modal .content .requested-changes {
  padding: 10px;
  max-height: 470px;
  margin-bottom: 20px;
  overflow: auto;
}
.modal.confirmation-modal .content .requested-changes h3 {
  margin-top: 0;
  font-weight: 300;
}
.modal.confirmation-modal .content .requested-changes .approval-column {
  min-width: calc(33% - 20px);
  padding-top: 10px;
}
.modal.confirmation-modal .content .requested-changes h4 {
  margin: 0 0 10px 0;
}
.modal.confirmation-modal .content .requested-changes .changeset {
  min-width: 33%;
  margin-right: 0;
}
.route-access-request-new-user .reason-field {
  margin-top: 15px;
}
[class^="route-advanced-insight"] .advanced-insight-meta {
  margin: 10px 20px;
  justify-content: space-between;
}
[class^="route-advanced-insight"] .advanced-insight-meta .ui-field-container {
  margin-bottom: 20px;
}
[class^="route-advanced-insight"] .advanced-insight-meta input,
[class^="route-advanced-insight"] .advanced-insight-meta select,
[class^="route-advanced-insight"] .advanced-insight-meta textarea {
  margin-bottom: 10px;
}
[class^="route-advanced-insight"] .advanced-insight-meta textarea {
  box-sizing: border-box;
}
[class^="route-advanced-insight"] .advanced-insight-meta .ix-select {
  width: 100%;
}
[class^="route-advanced-insight"] .toggle-wrap {
  display: inline-block;
  position: absolute;
  right: 60px;
  top: 21px;
}
[class^="route-advanced-insight"] section .flex-row {
  margin-right: 0;
  margin-bottom: 5px;
}
[class^="route-advanced-insight"] .filters .ui-block,
[class^="route-advanced-insight"] .fields .ui-block {
  margin-bottom: 15px;
}
[class^="route-advanced-insight"] .filters .text_block,
[class^="route-advanced-insight"] .fields .text_block {
  background: #f7f7f7;
  border: solid 1px #e6e6e6;
  padding: 5px;
  text-align: center;
  margin-top: 20px;
}
[class^="route-advanced-insight"] .advanced-insight section h2 {
  margin: 0 0 10px 0;
}
[class^="route-advanced-insight"] .insight-visualization-wrapper {
  padding-top: 0px;
  min-height: 300px;
}
[class^="route-advanced-insight"] .card {
  overflow: visible;
}
[class^="route-advanced-insight"] .query-text {
  height: 300px;
  width: 100%;
  resize: none;
  border: 1px solid #cacaca;
  padding: 10px;
  line-height: 15px;
  line-height: 1.5rem;
  font-size: 13px;
  font-size: 1.3rem;
}
[class^="route-advanced-insight"] main.main-content .page-content section {
  overflow: visible;
}
.advanced-insight-card {
  position: relative;
}
.advanced-insight-card input:not(.ui-toggle-switch) {
  max-width: 80%;
  margin: 10px;
}
.advanced-insight-card .content {
  display: none;
}
.advanced-insight-card .card {
  border: none;
  border-radius: 0;
  margin-bottom: 15px;
  padding-bottom: 0;
  position: initial;
  transition: 0.3s;
}
.advanced-insight-card .card:hover {
  box-shadow: 0px 4px 4px -3px rgba(0, 0, 0, 0.15);
}
.advanced-insight-card .card-body {
  border: 1px solid #e6e6e6;
  background: white;
}
.advanced-insight-card .insight-model {
  background-color: #f8f8f8;
  border: 1px solid #e6e6e6;
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  padding: 3px 5px;
  text-transform: uppercase;
  font-weight: 600;
  text-align: center;
  min-width: 95px;
}
.advanced-insight-card .share-card-header {
  margin-right: 0;
  align-items: center;
  padding: 10px;
}
.advanced-insight-card .share-card-header .action-items {
  min-width: 140px;
  position: relative;
  height: 40px;
}
.advanced-insight-card .share-card-header .action-items .edit.circle-button {
  position: absolute;
  right: 10px;
  top: 14px;
}
.advanced-insight-card .share-card-header .action-items .insight-dashboard-actions-wrapper {
  right: 45px;
  top: 54px;
}
.advanced-insight-card .share-card-header span.type-icon {
  font-size: 27px;
  font-size: 2.7rem;
  max-width: 75px;
  min-width: 75px;
  margin-right: 10px;
  text-align: center;
  z-index: 2;
}
.advanced-insight-card .share-card-header span.type-icon.fa-lock {
  color: #8f5ba4;
}
.advanced-insight-card .share-card-header span.type-icon.fa-lock + .template-content h2.insight-dashboard-name span:hover {
  color: #8f5ba4;
}
.advanced-insight-card .share-card-header span.type-icon.fa-globe {
  color: #3188c9;
}
.advanced-insight-card .share-card-header span.type-icon.fa-globe + .template-content h2.insight-dashboard-name span:hover {
  color: #3188c9;
}
.advanced-insight-card .share-card-header span.type-icon.fa-share-square-o {
  color: #ff8c19;
}
.advanced-insight-card .share-card-header span.type-icon.fa-share-square-o + .template-content h2.insight-dashboard-name span:hover {
  color: #ff8c19;
}
.advanced-insight-card .share-card-header span.type-icon.fa-user {
  color: #18b28b;
}
.advanced-insight-card .share-card-header span.type-icon.fa-user + .template-content h2.insight-dashboard-name span:hover {
  color: #18b28b;
}
.advanced-insight-card .share-card-header .template-content {
  width: calc(100% - 135px);
  max-width: calc(100% - 135px);
  margin-right: 0;
}
.advanced-insight-card .share-card-header .template-content h2.insight-dashboard-name {
  line-height: 24px;
  line-height: 2.4rem;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 400;
  margin: 0 0 3px 0;
}
.advanced-insight-card .share-card-header .template-content h2.insight-dashboard-name span {
  cursor: pointer;
  transition: 0.3s;
}
.advanced-insight-card .share-card-header .template-content p.insight-dashboard-description {
  margin: 0 0 3px 0;
}
.advanced-insight-card .share-card-header .template-content p.insight-dashboard-description.no-description {
  color: #9e9e9e;
}
.advanced-insight-card .share-card-header .template-content p.insight-dashboard-author {
  margin: 0;
}
.advanced-insight-card .insight-dashboard-description {
  display: inline-block;
  line-height: 15px;
  line-height: 1.5rem;
  max-width: 100%;
  max-height: 1.5rem;
  overflow: hidden;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  white-space: nowrap;
}
.route-advanced-insight-index main.main-content .page-content section {
  background: transparent;
  border: none;
  overflow: visible;
  padding: 0;
}
.route-advanced-insight-edit main.main-content .page-content section {
  overflow: visible;
}
.route-admin-insight-metadata .insights.page-content aside {
  max-width: 100%;
  width: 100%;
}
.route-admin-insight-metadata .insights.page-content .field-list > div {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  padding: 8px 10px 0;
}
.route-admin-insight-metadata .insights.page-content .field-list > div:last-child {
  padding-bottom: 20px;
}
.route-admin-insight-metadata .insights.page-content .field-list > div span {
  display: block;
  width: 30%;
}
.route-admin-insight-metadata .insights.page-content .field-list > div .tooltip-input {
  width: 100%;
  display: flex;
  align-items: center;
}
.route-admin-insight-metadata .insights.page-content .field-list > div .tooltip-input .ui-input {
  margin-right: 10px;
}
.route-admin-insight-metadata .insights.page-content .field-list > div .tooltip-input .ui-toggle-switch {
  --height: 20px;
  margin: 0 auto;
}
.route-admin-insight-metadata .insights.page-content .field-list > div .tooltip-input .ui-label {
  font-size: 11px;
  font-size: 1.1rem;
}
.route-admin-insight-metadata .insights.page-content .field-list > div .tooltip-input input {
  margin: 0 10px;
  width: 50%;
}
.card {
  background: #f5f5f5;
  border: 1px solid #e6e6e6;
  color: #233a60;
  border-radius: 5px;
  box-sizing: border-box;
  overflow: hidden;
  padding: 0 0 45px;
  position: relative;
  margin-bottom: 20px;
  min-width: 250px;
}
.card header {
  background: white;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  margin-bottom: 10px;
  padding: 15px 15px 10px;
  border-bottom: 1px solid #e6e6e6;
}
.card header p {
  margin: 0 !important;
}
.card .user-info h3 {
  line-height: 24px;
  line-height: 2.4rem;
}
.card .user-info h3,
.card .user-info p {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  max-width: 100%;
}
.card h3 {
  margin: -3px 0 2px;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 400;
}
.card .file-info .fa {
  font-size: 16px;
  font-size: 1.6rem;
  margin-right: 5px;
}
.card .file-info p {
  word-wrap: break-word;
  line-height: 16px;
  line-height: 1.6rem;
}
.card .file-info .downloaded {
  color: #18b28b;
}
.card .file-info .not-downloaded {
  color: #ed4651;
}
.card .reason {
  margin-top: 1.5rem;
}
.card .content {
  padding: 0 15px;
}
.card .flex-row.buttons {
  align-items: center;
  background: rgba(245, 245, 245, 0.9);
  bottom: -100%;
  box-sizing: border-box;
  height: calc(100% - 102px);
  left: 0;
  overflow: hidden;
  padding: 0 15px;
  position: absolute;
  text-align: center;
  transition: 1s;
  width: 100%;
}
.card .flex-row.buttons .next-step {
  box-sizing: border-box;
  height: 69px;
  left: 0;
  opacity: 0;
  padding: 0 10px;
  position: absolute;
  text-align: center;
  top: -70px;
  transition: 0.5s;
  width: 100%;
}
.card .flex-row.buttons .next-step.true {
  opacity: 1;
  top: calc(50% - 35px);
}
.card .flex-row.buttons .next-step.true ~ .circle-button {
  margin-bottom: -200px;
  opacity: 0;
  transition: 0.5s;
}
.card .flex-row.buttons .next-step p {
  font-size: 16px;
  font-size: 1.6rem;
}
.card .flex-row.buttons .weeks-approved {
  padding-left: 0;
  margin-top: 10px;
}
.card .flex-row.buttons .weeks-approved > li {
  background: #243b5f;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  font-size: 14px;
  font-size: 1.4rem;
  height: 30px;
  line-height: 30px;
  max-width: 30px;
  text-align: center;
  width: 20px;
}
.card .flex-row.buttons .circle-button {
  background: white;
  border-radius: 50%;
  height: 40px;
  max-width: 40px;
  opacity: 1;
  padding: 0;
  text-align: center;
  width: 40px;
  transition: 0.3s;
}
.card .flex-row.buttons .circle-button:first-of-type {
  margin-right: 30px;
}
.card .flex-row.buttons .circle-button:hover {
  cursor: pointer;
}
.card .flex-row.buttons .circle-button span {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 38px;
  line-height: 3.8rem;
}
.card .flex-row.buttons .circle-button span.fa-check {
  line-height: 40px;
  line-height: 4rem;
}
.card .flex-row.buttons .circle-button.deny {
  color: #ed4651;
  border: 1px solid #ed4651;
}
.card .flex-row.buttons .circle-button.deny:hover {
  background: #ed4651;
  color: white;
}
.card .flex-row.buttons .circle-button.approve {
  color: #18b28b;
  border: 1px solid #18b28b;
}
.card .flex-row.buttons .circle-button.approve:hover {
  background: #18b28b;
  color: white;
}
.card .flex-row.buttons .circle-button.expire {
  color: #adadad;
  border: 1px solid #adadad;
}
.card .flex-row.buttons .circle-button.expire:hover {
  background: #adadad;
  color: white;
}
.card:hover .flex-row.buttons {
  bottom: 36px;
  transition: 0.2s;
}
.card footer {
  border-top: 1px solid #e6e6e6;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #ececec;
  text-align: center;
  padding: 10px 0;
}
.card footer > span {
  margin-right: 5px;
}
.card .status {
  display: none;
  margin-right: 0px;
  text-transform: capitalize;
}
.card.approved footer {
  background: #18b28b;
  color: white;
}
.card.approved.expired .circle-button.expire,
.card.expired .circle-button.expire {
  opacity: 0.5;
  pointer-events: none;
}
.card.approved.expired footer,
.card.expired footer {
  background: #ed4651;
  color: white;
}
.card.approved.expired .fa-calendar:before,
.card.expired .fa-calendar:before {
  content: "\f273";
}
.card.approved.expired .status,
.card.expired .status {
  display: inline-block;
}
.user-icon {
  display: block;
  border-radius: 50%;
  width: 40px;
  min-width: 40px;
  height: 40px;
  color: white;
  background: #adadad;
  text-align: center;
  line-height: 42px;
  line-height: 4.2rem;
  font-size: 17px;
  font-size: 1.7rem;
  margin-right: 20px;
}
.user-icon[class$="A"],
.user-icon[class$="B"],
.user-icon[class$="C"],
.user-icon[class$="D"] {
  background: #35d0d8;
}
.user-icon[class$="E"],
.user-icon[class$="F"],
.user-icon[class$="G"],
.user-icon[class$="H"] {
  background: #f5a623;
}
.user-icon[class$="I"],
.user-icon[class$="J"],
.user-icon[class$="K"] {
  background: #13cd7c;
}
.user-icon[class$="L"],
.user-icon[class$="M"],
.user-icon[class$="N"] {
  background: #8b7cec;
}
.user-icon[class$="O"],
.user-icon[class$="P"],
.user-icon[class$="Q"],
.user-icon[class$="R"] {
  background: #f57c86;
}
.user-icon[class$="S"],
.user-icon[class$="T"],
.user-icon[class$="U"],
.user-icon[class$="V"] {
  background: #5c98f3;
}
.user-icon[class$="W"],
.user-icon[class$="X"],
.user-icon[class$="Y"],
.user-icon[class$="Z"] {
  background: #d44bd6;
}
.client-index .loading-wrapper {
  bottom: 40px;
}
.user-index,
.client-index {
  position: relative;
}
.user-index .loading-wrapper,
.client-index .loading-wrapper {
  width: 100%;
  position: relative;
  z-index: 20;
  min-height: 50px;
}
.user-index .loading-wrapper .loading-indicator .spinner,
.client-index .loading-wrapper .loading-indicator .spinner {
  width: 40px;
  height: 40px;
}
.user-index .action-items,
.client-index .action-items {
  position: absolute;
  top: 15px;
  right: 20px;
}
.user-index .action-items > *,
.client-index .action-items > * {
  margin-left: 10px;
}
.user-index .innovu-table-striped td:last-child,
.user-index .innovu-table-striped th:last-child {
  text-align: center;
}
.client-index,
.edit-organization {
  overflow: hidden;
}
.client-index .access-management-table,
.edit-organization .access-management-table {
  margin-top: 25px;
}
.client-index .action-items,
.edit-organization .action-items {
  top: 0;
  right: 0;
}
.client-index h2,
.edit-organization h2 {
  font-weight: 300;
  color: #243b5f;
  font-size: 25px;
  font-size: 2.5rem;
  line-height: 25px;
  line-height: 2.5rem;
  margin: 0;
}
.client-index form span.fa-trash,
.edit-organization form span.fa-trash {
  margin: 10px;
  cursor: pointer;
}
.user-details {
  position: relative;
  padding-bottom: 20px;
}
.user-details h1 {
  margin: 5px 0 15px;
}
.user-details p {
  margin: 0 0 15px 0;
}
.user-details .top-button-wrap {
  position: absolute;
  top: 20px;
  right: 20px;
  width: calc(100% - 40px);
  text-align: right;
}
.user-details .top-button-wrap .standard-button {
  margin-left: 10px;
}
.user-details .top-button-wrap .standard-button.delete {
  background: #ed4651;
}
.user-access {
  position: relative;
}
.user-access .innovu-input-search {
  position: absolute;
  right: 40px;
  top: 16px;
}
main.main-content .page-content section.user-access {
  overflow: visible;
}
.user-permission-tabs {
  background: transparent;
  margin: 20px 20px 0;
  border: 1px solid #e6e6e6;
  border-bottom: none;
}
.user-permission-tabs ul {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  background: white;
  list-style: none;
  margin: 0;
  padding: 0;
}
.user-permission-tabs ul li {
  flex: 1;
}
.user-permission-tabs a {
  color: #3e4e78;
  display: block;
  width: 100%;
  text-align: center;
  padding: 15px 0;
  font-size: 16px;
  font-size: 1.6rem;
}
.user-permission-tabs a.active {
  border-bottom: 4px solid #3e4e78;
  font-weight: bold;
  padding-bottom: 11px;
}
main.main-content .page-content .tab-content section {
  margin-top: 0;
}
main.main-content .page-content .tab-content h1 {
  margin: 5px 0 15px;
  padding-bottom: 15px;
}
main.main-content .page-content .tab-content .access .add,
main.main-content .page-content .tab-content .access .edit {
  display: block;
  width: 100%;
}
main.main-content .page-content .tab-content .access .add::before,
main.main-content .page-content .tab-content .access .edit::before {
  font-size: 17px;
  font-size: 1.7rem;
}
main.main-content .page-content .tab-content .access .edit {
  color: #5b8cff;
  display: block;
  position: relative;
  width: 100%;
}
main.main-content .page-content .tab-content .access .edit span {
  font-family: "neue-helvetica", "Helvetica Neue", Helvetica, sans-serif !important;
  position: absolute;
  text-align: left;
  margin-left: 5px;
  top: 2px;
  width: 30px;
}
main.main-content .page-content .tab-content .access tbody tr:hover {
  background: #e0e0e0;
}
main.main-content .page-content .tab-content .admin .button-wrap,
main.main-content .page-content .tab-content .access .button-wrap {
  margin-top: 20px;
}
.user-access h1,
.user-admin h1 {
  margin: 5px 0 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e6e6e6;
}
.route-admin-client-edit-index .button-wrap,
.route-admin-client-add .button-wrap {
  margin-top: 20px;
  overflow: hidden;
  width: 100%;
}
.route-admin-client-edit-index .button-wrap .cancel,
.route-admin-client-add .button-wrap .cancel {
  margin-right: 10px;
}
.route-admin-client-edit .client-select {
  min-width: 315px;
}
.route-admin-client-edit .client-select-dropdown .ember-power-select-search input[type="search"] {
  width: 100%;
}
.route-admin-client-edit .ui-grid .ui-block .etl-changes {
  color: #2e8b9d;
}
.route-admin-client-edit .ui-grid .ui-block .etl-changes::before {
  font-family: "fontawesome" !important;
  content: "\f06a";
  margin-right: 5px;
  font-size: 14px;
  font-size: 1.4rem;
}
.route-admin-client-edit .ui-grid .ui-grid .ui-block .button-wrap {
  display: flex;
}
.route-admin-client-edit .ui-grid .ui-grid .ui-block .button-wrap input.upload-input {
  opacity: 0;
}
.route-admin-client-edit .ui-grid .ui-grid .ui-block .button-wrap label.upload-input {
  color: white;
  width: 134px;
  margin-left: 20px;
}
.route-admin-client-edit .ui-grid .ui-grid .ui-block .button-wrap .action-items {
  margin-left: 10px;
  margin-top: 14px;
}
.route-admin-client-edit .result-container {
  margin-top: 5px;
  background: #fafafa;
  border: solid 1px #d6d6d6;
  border-radius: 5px;
  padding: 10px 0 10px 0;
  width: 100%;
  max-height: 150px;
  overflow: scroll;
}
.route-admin-client-edit .result-container .result {
  display: flex;
  align-items: center;
  padding: 3px 10px 3px 10px;
  transition: all 0.5s;
}
.route-admin-client-edit .result-container .result:hover {
  background: #e8e8e8;
  cursor: pointer;
}
.route-admin-client-edit .result-container .result:hover .delete {
  background: #ed4651;
}
.route-admin-client-edit .result-container .result:hover.user .icon svg path {
  stroke: #ed4651;
}
.route-admin-client-edit .result-container .result:hover.org .icon svg path {
  fill: #ed4651;
}
.route-admin-client-edit .result-container .result.org {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 12px;
  color: #6b6b6b;
}
.route-admin-client-edit .result-container .result.org .delete {
  background: #2e8b9d;
  width: 25px;
  height: 25px;
  border-radius: 5px;
  margin-left: auto;
  transition: all 0.5s;
}
.route-admin-client-edit .result-container .result.org .delete svg {
  width: 13px;
  padding-top: 3px;
  margin: 0 auto;
  display: block;
}
.route-admin-client-edit .result-container .result .icon {
  width: 25px;
  height: 25px;
  background: #fff;
  border: solid 1px #d6d6d6;
  border-radius: 100%;
  margin-right: 7px;
}
.route-admin-client-edit .result-container .result .icon svg {
  transition: all 0.5s;
  width: 17px;
  display: block;
  margin: 0 auto;
  margin-top: 4px;
}
.route-admin-client-edit .result-container .result .name {
  font-size: 14px;
  font-size: 1.4rem;
  color: #555555;
  line-height: 14px;
  margin-right: 5px;
}
.route-admin-client-edit .loading-indicator {
  top: 222px;
  height: 1000px;
}
.edit-organization .innovu-table-striped td input {
  width: 100%;
}
.edit-organization input {
  width: 45%;
}
.edit-organization input[type="checkbox"] {
  width: auto;
  position: relative;
  top: 2px;
}
.edit-organization .data-source {
  float: right;
}
.edit-organization .pagination {
  margin-bottom: 15px;
}
.add-org h1 {
  margin: 5px 0 15px;
}
main.main-content .page-content .access-tooltip-wrap {
  margin: 0;
}
main.main-content .page-content .access-tooltip-wrap:hover .tooltip {
  display: block;
}
main.main-content .page-content .access-tooltip-wrap .tooltip {
  position: absolute;
  width: 160px;
  border-radius: 5px;
  display: none;
  background: #f8f8f8;
  box-shadow: -3px 3px 5px rgba(173, 173, 173, 0.4);
  border: 1px solid #5b8cff;
  padding: 5px;
  margin-top: -5px;
  margin-left: -120px;
  z-index: 5;
}
main.main-content .page-content .access-tooltip-wrap .tooltip span {
  display: block;
  color: #3256ab;
  margin: 2px 0;
}
main.main-content .page-content .access-tooltip-wrap .tooltip:after,
main.main-content .page-content .access-tooltip-wrap .tooltip:before {
  left: 100%;
  top: 13px;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}
main.main-content .page-content .access-tooltip-wrap .tooltip:after {
  border-color: rgba(255, 255, 255, 0);
  border-left-color: #f8f8f8;
  border-width: 5px;
  margin-top: -5px;
}
main.main-content .page-content .access-tooltip-wrap .tooltip:before {
  border-color: rgba(0, 0, 0, 0);
  border-left-color: #5b8cff;
  border-width: 6px;
  margin-top: -6px;
}
.flex-inputs {
  display: flex;
  align-items: center;
  margin-right: 10px;
}
.flex-inputs > label {
  margin-right: 5px;
}
@keyframes cdsCardLogo {
  0% {
    opacity: 0.6;
  }
  25% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 0.6;
  }
}
@keyframes drawStroke {
  to {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}
.route-compliance-document-storage div.modal {
  background: rgba(0, 0, 0, 0.4);
}
.route-compliance-document-storage .methodology-modal .content {
  position: relative;
}
.route-compliance-document-storage .methodology-modal .content img {
  width: 100%;
}
.route-compliance-document-storage .methodology-modal .close-modal {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #d1514a;
  appearance: none;
  border-radius: 100%;
  border: none;
  width: 30px;
  height: 30px;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.4);
  z-index: 5;
  transition: all 0.5s;
}
.route-compliance-document-storage .methodology-modal .close-modal:hover {
  cursor: pointer;
  background: #ed4651;
}
.route-compliance-document-storage .methodology-modal .close-modal:before {
  content: "x";
  color: white;
  font-size: 30px;
  font-size: 3rem;
  font-weight: 300;
  position: relative;
  top: -6px;
}
.route-compliance-document-storage .cds-button {
  padding: 5px 10px 5px 10px;
  background: #2c3a4b;
  border-radius: 5px;
  appearance: none;
  display: flex;
  align-items: center;
  border: none;
  outline: none;
  color: white;
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: 300;
  height: 32px;
  transition: all 0.5s ease;
}
.route-compliance-document-storage .cds-button:hover {
  cursor: pointer;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}
.route-compliance-document-storage .cds-button .icon {
  display: inline-block;
  margin-right: 5px;
}
.route-compliance-document-storage .cds-button.methodology .icon {
  background: url("/assets/compliance-document-storage/methodology-icon.svg");
  background-size: cover;
  width: 20px;
  height: 20px;
}
.route-compliance-document-storage .cds-button.file-upload {
  margin-left: 5px;
}
.route-compliance-document-storage .cds-button.file-upload .icon {
  background: url("/assets/compliance-document-storage/file-upload-icon.svg");
  background-size: cover;
  width: 20px;
  height: 22px;
}
.route-compliance-document-storage .cds-button.back .icon {
  background: url("/assets/compliance-document-storage/back-arrow-icon.svg");
  background-size: cover;
  width: 19px;
  height: 15px;
}
.route-compliance-document-storage .cds-button.list-view .icon {
  display: inline-block;
  background: url("/assets/compliance-document-storage/view-all-files-icon.svg");
  background-size: cover;
  width: 20px;
  height: 22px;
}
.route-compliance-document-storage .cds-content-wrapper {
  background: #e6e6e6;
  border: solid 1px #cecaca;
  border-radius: 3px;
  margin: 30px 20px 0px 20px;
  padding: 20px;
}
.route-compliance-document-storage .cds-year-container,
.route-compliance-document-storage .cds-procurement-stage-container {
  background: white;
  border-radius: 3px;
  border: solid 1px #cecaca;
  padding: 30px;
}
.route-compliance-document-storage .cds-card {
  position: relative;
  background: #2c3a4b;
  border-radius: 3px;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.3);
  height: 265px;
  overflow: hidden;
}
.route-compliance-document-storage .cds-card:hover .file-count {
  border: #b4b5b7 solid 1px;
}
.route-compliance-document-storage .cds-card.year:hover {
  cursor: pointer;
}
.route-compliance-document-storage .cds-card.year:hover .logo-bg svg .s {
  animation: cdsCardLogo 1s ease-out;
}
.route-compliance-document-storage .cds-card.year:hover .logo-bg svg .l2 {
  animation-delay: 0.2s;
}
.route-compliance-document-storage .cds-card.year:hover .logo-bg svg .l3 {
  animation-delay: 0.4s;
}
.route-compliance-document-storage .cds-card.year:hover .logo-bg svg .l4 {
  animation-delay: 0.6s;
}
.route-compliance-document-storage .cds-card.year:hover .logo-bg svg .l5 {
  animation-delay: 0.8s;
}
.route-compliance-document-storage .cds-card.year:hover .logo-bg svg .l6 {
  animation-delay: 1s;
}
.route-compliance-document-storage .cds-card.year:hover .year {
  box-shadow: 0px 5px 4px 0px rgba(0, 0, 0, 0.6);
  top: -5px;
}
.route-compliance-document-storage .cds-card.procurement {
  background: none;
  box-shadow: none;
  overflow: visible;
  -webkit-perspective: 150rem;
  perspective: 150rem;
  -moz-perspective: 150rem;
}
.route-compliance-document-storage .cds-card.procurement:hover .icon {
  box-shadow: 0px 5px 4px 0px rgba(0, 0, 0, 0.4);
}
.route-compliance-document-storage .cds-card.procurement:hover .icon.engage {
  background: #0e8165;
}
.route-compliance-document-storage .cds-card.procurement:hover .icon.explore {
  background: #2a658f;
}
.route-compliance-document-storage .cds-card.procurement:hover .icon.envision {
  background: #c76608;
}
.route-compliance-document-storage .cds-card.procurement:hover .icon.execute {
  background: #542c64;
}
.route-compliance-document-storage .cds-card.procurement:hover .icon.examine {
  background: #0b5a68;
}
.route-compliance-document-storage .cds-card.procurement:hover .logo-bg .l1 {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: drawStroke 3s linear forwards;
}
.route-compliance-document-storage .cds-card.procurement:hover .logo-bg.engage .l1 {
  stroke: #18b28b;
}
.route-compliance-document-storage .cds-card.procurement:hover .logo-bg.explore .l1 {
  stroke: #4892c7;
}
.route-compliance-document-storage .cds-card.procurement:hover .logo-bg.envision .l1 {
  stroke: #ff9933;
}
.route-compliance-document-storage .cds-card.procurement:hover .logo-bg.execute .l1 {
  stroke: #b373cd;
}
.route-compliance-document-storage .cds-card.procurement:hover .logo-bg.examine .l1 {
  stroke: #2e8b9d;
}
.route-compliance-document-storage .cds-card.procurement .content {
  height: calc(100% - 30px);
}
.route-compliance-document-storage .cds-card.procurement .content:hover {
  cursor: pointer;
}
.route-compliance-document-storage .cds-card.procurement .card-side-front {
  background: #2c3a4b;
}
.route-compliance-document-storage .cds-card.procurement .card-side-front.active {
  -webkit-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
}
.route-compliance-document-storage .cds-card.procurement .card-side {
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 265px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.3);
}
.route-compliance-document-storage .cds-card.procurement .card-side-back {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
  background: #fff;
}
.route-compliance-document-storage .cds-card.procurement .card-side-back.active {
  -webkit-transform: rotateY(0);
  transform: rotateY(0);
}
.route-compliance-document-storage .cds-card.procurement .card-side-back.active .description-container {
  overflow-y: auto;
}
.route-compliance-document-storage .cds-card.procurement .card-side-back .close-info {
  position: absolute;
  right: 6px;
  top: 6px;
  border: none;
  outline: none;
  background: none;
  appearance: none;
}
.route-compliance-document-storage .cds-card.procurement .card-side-back .close-info:hover {
  cursor: pointer;
}
.route-compliance-document-storage .cds-card.procurement .card-side-back .close-info:hover:before {
  color: #ed4651;
}
.route-compliance-document-storage .cds-card.procurement .card-side-back .close-info::before {
  font-family: "fontawesome" !important;
  content: "\f057";
  color: #c05d5d;
  font-size: 27px;
  font-size: 2.7rem;
  transition: all 0.3s ease;
}
.route-compliance-document-storage .cds-card.procurement .card-side-back h2 {
  color: #354252;
  margin: 15px 0 15px 10px;
  font-size: 25px;
  font-size: 2.5rem;
  font-weight: 300;
  text-transform: capitalize;
}
.route-compliance-document-storage .cds-card.procurement .card-side-back .description-container {
  border-radius: 5px;
  box-shadow: inset 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
  background: #f7f7f7;
  border: 1px solid #cecaca;
  color: #555555;
  width: calc(90% - 20px);
  padding: 10px;
  margin: 0 auto;
  max-height: 185px;
  min-height: 185px;
  overflow-y: hidden;
}
.route-compliance-document-storage .cds-card.procurement .card-side-back .description-container p {
  margin: 0px 0px 5px 0px;
}
.route-compliance-document-storage .cds-card.procurement .card-side-back .description-container ol {
  margin: 0;
  padding: 0 0 0 15px;
}
.route-compliance-document-storage .cds-card.procurement .card-side-back .description-container ol li {
  margin: 0 0 5px 0;
}
.route-compliance-document-storage .cds-card .logo-bg svg {
  position: absolute;
  top: 50%;
  margin-top: -186px;
  left: 50%;
  margin-left: -186px;
  width: 372px;
  z-index: 1;
}
.route-compliance-document-storage .cds-card .logo-bg svg .s {
  opacity: 0.6;
  fill: #3b4858;
}
.route-compliance-document-storage .cds-card .content {
  position: relative;
  z-index: 5;
}
.route-compliance-document-storage .cds-card .year {
  border-radius: 100%;
  background: white;
  width: 105px;
  height: 105px;
  margin: 0 auto;
  margin-top: 80px;
  transition: all 0.5s ease;
  position: relative;
  top: 0;
  left: 0;
}
.route-compliance-document-storage .cds-card .year span {
  display: block;
  text-align: center;
  font-size: 40px;
  font-size: 4rem;
  padding-top: 45px;
  font-weight: 100;
  color: #2c3a4b;
}
.route-compliance-document-storage .cds-card .icon {
  border-radius: 100%;
  background: #3b4858;
  width: 120px;
  height: 120px;
  margin: 0 auto;
  margin-top: 30px;
  position: relative;
  transition: all 0.5s ease;
}
.route-compliance-document-storage .cds-card .icon svg {
  margin: 0 auto;
  display: block;
}
.route-compliance-document-storage .cds-card .icon.engage {
  border: solid 2px #18b28b;
}
.route-compliance-document-storage .cds-card .icon.engage svg {
  width: 60px;
  height: 75px;
  margin-top: 23px;
}
.route-compliance-document-storage .cds-card .icon.explore {
  border: solid 2px #4892c7;
}
.route-compliance-document-storage .cds-card .icon.explore svg {
  width: 80px;
  margin-top: 20px;
}
.route-compliance-document-storage .cds-card .icon.envision {
  border: solid 2px #ff9933;
}
.route-compliance-document-storage .cds-card .icon.envision svg {
  width: 90px;
  margin-top: 30px;
}
.route-compliance-document-storage .cds-card .icon.execute {
  border: solid 2px #b373cd;
}
.route-compliance-document-storage .cds-card .icon.execute svg {
  width: 57px;
  margin-top: 7px;
}
.route-compliance-document-storage .cds-card .icon.examine {
  border: solid 2px #2e8b9d;
}
.route-compliance-document-storage .cds-card .icon.examine svg {
  width: 85px;
  margin-top: 16px;
}
.route-compliance-document-storage .cds-card .file-count {
  background: #2c3a4b;
  border-radius: 3px;
  border: solid 1px #79818c;
  padding: 5px;
  display: table;
  margin: 0 auto;
  margin-top: 20px;
  transition: all 0.5s ease;
}
.route-compliance-document-storage .cds-card .file-count::before {
  font-family: "fontawesome" !important;
  content: "\f15c";
  color: #79818c;
  margin-right: 5px;
}
.route-compliance-document-storage .cds-card .file-count span {
  color: white;
  font-size: 16px;
  font-size: 1.6rem;
  margin: 0;
}
.route-compliance-document-storage .cds-card .info {
  position: absolute;
  top: 4px;
  z-index: 10;
  right: 10px;
  width: 25px;
  height: 25px;
  border: none;
  outline: none;
  appearance: none;
  background: none;
}
.route-compliance-document-storage .cds-card .info:hover {
  cursor: pointer;
}
.route-compliance-document-storage .cds-card .info:hover::before {
  color: white;
}
.route-compliance-document-storage .cds-card .info::before {
  font-family: "fontawesome" !important;
  color: #dddddd;
  content: "\f05a";
  font-size: 22px;
  font-size: 2.2rem;
  transition: all 0.3s;
}
.route-compliance-document-storage .cds-card .title {
  display: table;
  margin: 0 auto;
  text-transform: capitalize;
  margin-top: 12px;
  margin-bottom: 20px;
  font-size: 30px;
  font-size: 3rem;
  font-weight: 300;
  color: white;
}
.route-compliance-document-storage .no-file-instructions {
  display: table;
  margin: 0 auto;
  text-align: center;
}
.route-compliance-document-storage .no-file-instructions .icon {
  border-radius: 100%;
  width: 100px;
  height: 100px;
  margin: 0 auto;
  background: #243b5f;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.3);
  transition: all 0.3s;
}
.route-compliance-document-storage .no-file-instructions .icon:hover {
  cursor: pointer;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.6);
}
.route-compliance-document-storage .no-file-instructions .icon svg {
  margin-top: 17px;
  margin-left: 6px;
  width: 60px;
}
.route-compliance-document-storage .no-file-instructions .icon svg .b {
  fill: #fff;
}
.route-compliance-document-storage .no-file-instructions h2 {
  font-size: 40px;
  font-size: 4rem;
  font-weight: 200;
  color: #222c45;
}
.route-compliance-document-storage .no-file-instructions p {
  font-size: 16px;
  font-size: 1.6rem;
}
.route-compliance-document-storage .selected-year {
  font-size: 30px;
  font-size: 3rem;
  font-weight: 200;
  color: #2c3a4b;
  margin: 0 0 15px 0;
}
.route-compliance-document-storage .selected-year .icon {
  margin-right: 5px;
  display: inline-block;
  width: 30px;
  height: 26px;
  background: url("/assets/compliance-document-storage/calendar-icon.svg");
  background-size: cover;
}
.route-compliance-document-storage .cds-file-controls {
  display: flex;
  align-items: center;
}
.route-compliance-document-storage .cds-file-controls .filters {
  display: flex;
  align-items: center;
}
.route-compliance-document-storage .cds-file-controls .filters .filter {
  margin-right: 20px;
}
.route-compliance-document-storage .cds-file-controls .filters .filter .icon {
  display: inline-block;
  margin-right: 5px;
}
.route-compliance-document-storage .cds-file-controls .filters .filter select {
  background: white url("/assets/compliance-document-storage/select-arrow.svg") no-repeat calc(100% - 10px) center;
  background-size: 10px auto;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
  border: none;
  height: 32px;
  font-weight: 300;
  font-size: 14px;
  font-size: 1.4rem;
  color: #555555;
}
.route-compliance-document-storage .cds-file-controls .filters .filter select:focus {
  outline: none;
}
.route-compliance-document-storage .cds-file-controls .filters .filter.year .icon {
  background: url("/assets/compliance-document-storage/calendar-icon.svg");
  background-size: cover;
  width: 30px;
  height: 26px;
  margin-bottom: -8px;
}
.route-compliance-document-storage .cds-file-controls .filters .filter.year select {
  width: 95px;
}
.route-compliance-document-storage .cds-file-controls .filters .filter.procurement-stage .icon {
  background: url("/assets/compliance-document-storage/procurement-stage-icon.svg");
  background-size: cover;
  width: 25px;
  height: 25px;
  margin-bottom: -9px;
}
.route-compliance-document-storage .cds-file-controls .filters .filter.procurement-stage select {
  width: 200px;
}
.route-compliance-document-storage .cds-file-controls .filters .filter.category .icon {
  background: url("/assets/compliance-document-storage/category-icon.svg");
  background-size: cover;
  width: 25px;
  height: 27px;
  margin-bottom: -9px;
}
.route-compliance-document-storage .cds-file-controls .filters .filter.category select {
  width: 200px;
}
.route-compliance-document-storage .cds-file-controls .filters .filter.search-field {
  max-width: 210px;
}
.route-compliance-document-storage .cds-file-controls .filters .filter.search-field .ui-input {
  display: inline-block;
}
.route-compliance-document-storage .cds-file-controls .filters .filter.search-field .ui-input .grid-container {
  height: 32px;
}
.route-compliance-document-storage .cds-file-controls .filters .filter.search-field .ui-input input {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 300;
}
.route-compliance-document-storage .cds-file-controls .filters .filter.search-field .icon {
  background: url("/assets/compliance-document-storage/search-icon.svg");
  background-size: cover;
  width: 25px;
  height: 25px;
  margin-bottom: -8px;
}
.route-compliance-document-storage .cds-file-controls .buttons {
  max-width: 200px;
  margin-left: auto;
  display: flex;
}
.route-compliance-document-storage .cds-file-controls .buttons .ui-button.back {
  margin-right: 10px;
}
.route-compliance-document-storage .cds-files-container {
  overflow: hidden;
  position: relative;
  margin-top: 15px;
  padding-top: 46px;
}
.route-compliance-document-storage .cds-files-container .cds-head {
  background: #2c3a4b;
  padding: 15px;
  border-radius: 5px;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 30px);
}
.route-compliance-document-storage .cds-files-container .cds-head .ui-grid {
  justify-items: center;
}
.route-compliance-document-storage .cds-files-container .cds-head .ui-block {
  text-align: center;
  display: flex;
  align-items: center;
}
.route-compliance-document-storage .cds-files-container .cds-head .ui-block:first-of-type {
  justify-self: start;
}
.route-compliance-document-storage .cds-files-container .cds-head .ui-block svg {
  margin-right: 5px;
}
.route-compliance-document-storage .cds-files-container .cds-head .ui-block .column-label {
  display: block;
  margin: 0 0 0 2px;
}
.route-compliance-document-storage .cds-files-container .cds-head .ui-block .column-label.procurement-stage {
  min-width: 115px;
}
.route-compliance-document-storage .cds-files-container .cds-head .ui-block:nth-of-type(1) {
  padding-left: 40px;
  text-align: left;
}
.route-compliance-document-storage .cds-files-container .cds-head .ui-block:nth-of-type(1) svg {
  width: 11px;
  height: 15px;
}
.route-compliance-document-storage .cds-files-container .cds-head .ui-block:nth-of-type(3) svg {
  width: 14px;
  height: 15px;
  margin-bottom: -1px;
}
.route-compliance-document-storage .cds-files-container .cds-head .ui-block:nth-of-type(3) svg g {
  fill: #fff;
}
.route-compliance-document-storage .cds-files-container .cds-head .ui-block:nth-of-type(4) svg,
.route-compliance-document-storage .cds-files-container .cds-head .ui-block:nth-of-type(2) svg {
  width: 17px;
  height: 15px;
}
.route-compliance-document-storage .cds-files-container .cds-head .ui-block:nth-of-type(4) svg path,
.route-compliance-document-storage .cds-files-container .cds-head .ui-block:nth-of-type(2) svg path {
  fill: #fff;
}
.route-compliance-document-storage .cds-files-container .cds-head .ui-block:nth-of-type(5) svg {
  width: 17px;
  height: 15px;
  margin-bottom: -1px;
}
.route-compliance-document-storage .cds-files-container .cds-head .ui-block:nth-of-type(5) svg path {
  fill: #fff;
}
.route-compliance-document-storage .cds-files-container .cds-head .ui-button {
  height: 15px;
  line-height: 1.6em;
}
.route-compliance-document-storage .cds-files-container .cds-head .ui-button:before {
  float: none;
  margin: 0;
}
.route-compliance-document-storage .cds-files-container .cds-file-scroll {
  overflow-y: auto;
  min-height: calc(100vh - 350px);
  position: relative;
  width: calc(100% + 20px);
}
.route-compliance-document-storage .cds-files-container .cds-file-scroll h2 {
  margin: 0 auto;
  display: table;
  margin-top: 55px;
  font-weight: 300;
  font-size: 20px;
  font-size: 2rem;
}
.route-compliance-document-storage .cds-files-container .cds-file-scroll .loading-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10;
}
.route-compliance-document-storage .cds-files-container .cds-file-scroll .loading-indicator {
  height: 130px;
  width: 300px !important;
  background: #fff;
  margin: 0 auto;
  position: relative;
  border-radius: 5px;
  padding-top: 30px;
  margin-top: -80px;
  top: 50%;
}
.route-compliance-document-storage .cds-files-container .cds-file-scroll .loading-indicator h1 {
  margin: 0 0 20px 0;
  color: #2e2e2e;
}
.route-compliance-document-storage .cds-files-container .cds-file {
  background: #fff;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  padding: 10px;
  margin-bottom: 5px;
  position: relative;
  width: calc(100% - 40px);
  font-size: 14px;
  font-size: 1.4rem;
}
.route-compliance-document-storage .cds-files-container .cds-file .spinner {
  width: 25px;
  height: 25px;
  background: url(/assets/img/lens-loading.gif);
  background-size: cover;
  top: 13px;
  right: 40px;
  position: absolute;
  margin: 0;
}
.route-compliance-document-storage .cds-files-container .cds-file .icon {
  display: inline-block;
  width: 20px;
  height: 27px;
  margin-right: 20px;
  background: url("/assets/compliance-document-storage/dark-file-icon.svg");
  background-size: cover;
}
.route-compliance-document-storage .cds-files-container .cds-file .file-name {
  background: #f7f7f7;
  border: solid 1px #cecaca;
  border-radius: 5px;
  padding: 3px;
  max-width: 290px;
  box-sizing: border-box;
}
.route-compliance-document-storage .cds-files-container .cds-file .pdf-icon {
  background: url("/assets/compliance-document-storage/pdf-icon.svg");
  background-size: cover;
}
.route-compliance-document-storage .cds-files-container .cds-file .csv-icon {
  background: url("/assets/compliance-document-storage/csv-icon.svg");
  background-size: cover;
}
.route-compliance-document-storage .cds-files-container .cds-file .docx-icon {
  background: url("/assets/compliance-document-storage/word-icon.svg");
  background-size: cover;
}
.route-compliance-document-storage .cds-files-container .cds-file .xlsx-icon {
  background: url("/assets/compliance-document-storage/xlsx-icon.svg");
  background-size: cover;
  width: 16px;
  height: 21px;
  margin-left: 3px;
}
.route-compliance-document-storage .cds-files-container .cds-file .jpg-icon,
.route-compliance-document-storage .cds-files-container .cds-file .png-icon {
  background: url("/assets/compliance-document-storage/img-icon.svg");
  background-size: cover;
  width: 16px;
  height: 21px;
  margin-left: 3px;
}
.route-compliance-document-storage .cds-files-container .cds-file .ui-block {
  text-align: center;
  padding-top: 5px;
}
.route-compliance-document-storage .cds-files-container .cds-file .ui-block:nth-of-type(1) {
  text-align: left;
  display: flex;
  align-items: center;
  padding-top: 0;
}
.route-compliance-document-storage .cds-files-container .cds-file .ui-block:nth-of-type(3) {
  text-transform: capitalize;
}
.route-compliance-document-storage .cds-files-container .cds-file .ui-block:nth-of-type(5) {
  text-transform: capitalize;
}
.route-compliance-document-storage .cds-files-container .cds-file .ui-block:nth-of-type(5) > div {
  display: table;
  position: relative;
  margin: 0 auto;
  padding-left: 35px;
}
.route-compliance-document-storage .cds-files-container .cds-file .procurement-icon {
  display: block;
  position: absolute;
}
.route-compliance-document-storage .cds-files-container .cds-file .procurement-icon.engage {
  background: url("/assets/compliance-document-storage/engage-file-icon.svg");
  background-size: cover;
  width: 25px;
  height: 25px;
  top: -5px;
  left: 3px;
}
.route-compliance-document-storage .cds-files-container .cds-file .procurement-icon.explore {
  background: url("/assets/compliance-document-storage/explore-file-icon.svg");
  background-size: cover;
  width: 25px;
  height: 25px;
  top: -3px;
  left: 4px;
}
.route-compliance-document-storage .cds-files-container .cds-file .procurement-icon.envision {
  background: url("/assets/compliance-document-storage/envision-file-icon.svg");
  background-size: cover;
  width: 30px;
  height: 25px;
  top: -3px;
  left: 0;
}
.route-compliance-document-storage .cds-files-container .cds-file .procurement-icon.execute {
  background: url("/assets/compliance-document-storage/execute-file-icon.svg");
  background-size: cover;
  width: 20px;
  height: 30px;
  top: -5px;
  left: 7px;
}
.route-compliance-document-storage .cds-files-container .cds-file .procurement-icon.examine {
  background: url("/assets/compliance-document-storage/examine-file-icon.svg");
  background-size: cover;
  width: 30px;
  height: 25px;
  top: -3px;
  left: 0;
}
.route-compliance-document-storage .cds-files-container .cds-file .file-options {
  width: 20px;
  margin-left: auto;
}
.route-compliance-document-storage .cds-file-upload-container {
  background: #f7f7f7;
  border: solid 1px #e6e6e6;
  padding: 30px;
  max-width: 750px;
  border-radius: 5px;
}
.route-compliance-document-storage .cds-file-upload-container.editing .file-input-container,
.route-compliance-document-storage .cds-file-upload-container.editing .year {
  pointer-events: none;
}
.route-compliance-document-storage .cds-file-upload-container.editing .file-input-container .ui-input-field,
.route-compliance-document-storage .cds-file-upload-container.editing .year .ui-input-field {
  color: #555555;
}
.route-compliance-document-storage .cds-file-upload-container.editing .year .ix-select {
  background: #fff;
}
.route-compliance-document-storage .cds-file-upload-container .loading-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #fff;
  top: 0;
  left: 0;
  z-index: 1;
}
.route-compliance-document-storage .cds-file-upload-container .loading-wrapper .loading-indicator {
  margin-top: 70px;
}
.route-compliance-document-storage .cds-file-upload-container .close-modal {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #d1514a;
  appearance: none;
  border-radius: 100%;
  border: none;
  width: 30px;
  height: 30px;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.4);
  z-index: 5;
  transition: all 0.5s;
}
.route-compliance-document-storage .cds-file-upload-container .close-modal:hover {
  cursor: pointer;
  background: #ed4651;
}
.route-compliance-document-storage .cds-file-upload-container .close-modal:before {
  content: "x";
  color: white;
  font-size: 30px;
  font-size: 3rem;
  font-weight: 300;
  position: relative;
  top: -6px;
}
.route-compliance-document-storage .cds-file-upload-container .close-modal.disabled {
  background: #c6c6c6;
  pointer-events: none;
}
.route-compliance-document-storage .cds-file-upload-container .ui-grid:first-of-type {
  margin-bottom: 30px;
}
.route-compliance-document-storage .cds-file-upload-container .label {
  color: #3b4858;
  display: block;
  font-size: 17px;
  font-size: 1.7rem;
  font-weight: 300;
  border-bottom: solid 1px #e6e6e6;
  padding-bottom: 5px;
  text-align: left;
  margin: 0px 0px 10px 0px;
}
.route-compliance-document-storage .cds-file-upload-container .ui-block > div {
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
}
.route-compliance-document-storage .cds-file-upload-container .file-input-container .ui-input {
  width: 100%;
}
.route-compliance-document-storage .cds-file-upload-container .file-input-container .ui-input .ui-input-field {
  font-size: 14px;
  font-size: 1.4rem;
}
.route-compliance-document-storage .cds-file-upload-container .file-input-container .grid-container {
  height: 32px;
}
.route-compliance-document-storage .cds-file-upload-container .file-input-container .icon {
  display: block;
  background: url("/assets/compliance-document-storage/dark-file-icon.svg");
  background-size: cover;
  width: 20px;
  height: 25px;
}
.route-compliance-document-storage .cds-file-upload-container .file-input-container .upload-input {
  opacity: 0;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  left: 0;
  z-index: 10;
}
.route-compliance-document-storage .cds-file-upload-container .file-input-container .upload-input:hover {
  cursor: pointer;
}
.route-compliance-document-storage .cds-file-upload-container .icon {
  display: block;
  margin-right: 10px;
}
.route-compliance-document-storage .cds-file-upload-container select {
  background: white url("/assets/compliance-document-storage/select-arrow.svg") no-repeat calc(100% - 10px) center;
  background-size: 10px auto;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
  border: none;
  height: 32px;
  font-weight: 300;
  font-size: 14px;
  font-size: 1.4rem;
  color: #555555;
}
.route-compliance-document-storage .cds-file-upload-container select:focus {
  outline: none;
}
.route-compliance-document-storage .cds-file-upload-container .year .icon {
  background: url("/assets/compliance-document-storage/calendar-icon.svg");
  background-size: cover;
  width: 30px;
  height: 22px;
}
.route-compliance-document-storage .cds-file-upload-container .procurement-stage .icon {
  background: url("/assets/compliance-document-storage/procurement-stage-icon.svg");
  background-size: cover;
  width: 25px;
  height: 22px;
}
.route-compliance-document-storage .cds-file-upload-container .category .icon {
  background: url("/assets/compliance-document-storage/category-icon.svg");
  background-size: cover;
  width: 25px;
  height: 23px;
}
.route-compliance-document-storage .cds-file-upload-container button.upload-file {
  padding: 5px 10px 5px 10px;
  background: #2c3a4b;
  border-radius: 5px;
  appearance: none;
  display: flex;
  align-items: center;
  border: none;
  outline: none;
  color: white;
  margin: 0 auto;
  margin-top: 30px;
  font-size: 17px;
  font-size: 1.7rem;
  font-weight: 300;
}
.route-compliance-document-storage .cds-file-upload-container button.upload-file:hover {
  cursor: pointer;
}
.route-compliance-document-storage .cds-file-upload-container button.upload-file[disabled] {
  opacity: 0.5;
  cursor: default;
}
.route-compliance-document-storage .cds-file-upload-container button.upload-file[disabled]:hover {
  cursor: no-drop;
}
.route-compliance-document-storage .cds-file-upload-container button.upload-file .icon {
  display: inline-block;
  background: url("/assets/compliance-document-storage/file-upload-icon.svg");
  background-size: cover;
  width: 25px;
  height: 28px;
}
.route-insight-dashboard-view-export .widget-table-wrap {
  height: 100%;
}
.route-insight-dashboard-view-export .widget-content section {
  padding: 0 10px 15px;
}
.route-insight-dashboard-view-export div.modal.wormhole-wrap + .content {
  box-sizing: border-box;
  max-width: 100%;
  padding: 15px 9px;
}
.widget-table-wrap {
  overflow: auto;
}
[class^="route-insight-dashboard"] .show-data-points,
[class^="route-loading"] .show-data-points {
  margin: 0 10px 0 10px;
}
[class^="route-insight-dashboard"] .show-data-points label,
[class^="route-loading"] .show-data-points label {
  margin: 0 !important;
}
[class^="route-insight-dashboard"] main.main-content .page-content section h1,
[class^="route-loading"] main.main-content .page-content section h1 {
  margin: 0;
}
[class^="route-insight-dashboard"] main.main-content .page-content section h1.no-content,
[class^="route-loading"] main.main-content .page-content section h1.no-content {
  margin-bottom: 20px;
}
[class^="route-insight-dashboard"] div.modal.edit-widget-modal + .content,
[class^="route-loading"] div.modal.edit-widget-modal + .content,
[class^="route-insight-dashboard"] div.modal.add-widget-modal + .content,
[class^="route-loading"] div.modal.add-widget-modal + .content {
  width: 600px;
  max-width: 600px;
}
[class^="route-insight-dashboard"] div.modal.edit-widget-modal + .content h1,
[class^="route-loading"] div.modal.edit-widget-modal + .content h1,
[class^="route-insight-dashboard"] div.modal.add-widget-modal + .content h1,
[class^="route-loading"] div.modal.add-widget-modal + .content h1 {
  margin-bottom: 20px;
}
[class^="route-insight-dashboard"] div.modal.edit-widget-modal + .content .char-count,
[class^="route-loading"] div.modal.edit-widget-modal + .content .char-count,
[class^="route-insight-dashboard"] div.modal.add-widget-modal + .content .char-count,
[class^="route-loading"] div.modal.add-widget-modal + .content .char-count {
  font-size: 10px;
  font-size: 1rem;
  color: #7a8593;
  position: absolute;
  margin-top: -14px;
  right: 16px;
}
[class^="route-insight-dashboard"] div.modal.edit-widget-modal + .content .standard:focus:not([type="checkbox"]):not([data-id="markdown-input"]),
[class^="route-loading"] div.modal.edit-widget-modal + .content .standard:focus:not([type="checkbox"]):not([data-id="markdown-input"]),
[class^="route-insight-dashboard"] div.modal.add-widget-modal + .content .standard:focus:not([type="checkbox"]):not([data-id="markdown-input"]),
[class^="route-loading"] div.modal.add-widget-modal + .content .standard:focus:not([type="checkbox"]):not([data-id="markdown-input"]) {
  border-left: none !important;
}
[class^="route-insight-dashboard"] div.modal.edit-widget-modal + .content .standard:focus:not([type="checkbox"]):not([data-id="markdown-input"]) + label,
[class^="route-loading"] div.modal.edit-widget-modal + .content .standard:focus:not([type="checkbox"]):not([data-id="markdown-input"]) + label,
[class^="route-insight-dashboard"] div.modal.add-widget-modal + .content .standard:focus:not([type="checkbox"]):not([data-id="markdown-input"]) + label,
[class^="route-loading"] div.modal.add-widget-modal + .content .standard:focus:not([type="checkbox"]):not([data-id="markdown-input"]) + label {
  border-right: none !important;
}
[class^="route-insight-dashboard"] div.modal.edit-widget-modal + .content .add-comparative-widget header,
[class^="route-loading"] div.modal.edit-widget-modal + .content .add-comparative-widget header,
[class^="route-insight-dashboard"] div.modal.add-widget-modal + .content .add-comparative-widget header,
[class^="route-loading"] div.modal.add-widget-modal + .content .add-comparative-widget header {
  display: flex;
  justify-content: center;
}
[class^="route-insight-dashboard"] div.modal.edit-widget-modal + .content .add-comparative-widget header h3,
[class^="route-loading"] div.modal.edit-widget-modal + .content .add-comparative-widget header h3,
[class^="route-insight-dashboard"] div.modal.add-widget-modal + .content .add-comparative-widget header h3,
[class^="route-loading"] div.modal.add-widget-modal + .content .add-comparative-widget header h3 {
  margin-right: 10px;
}
[class^="route-insight-dashboard"] div.modal.edit-widget-modal + .content .add-comparative-widget .add-widget-btn:before,
[class^="route-loading"] div.modal.edit-widget-modal + .content .add-comparative-widget .add-widget-btn:before,
[class^="route-insight-dashboard"] div.modal.add-widget-modal + .content .add-comparative-widget .add-widget-btn:before,
[class^="route-loading"] div.modal.add-widget-modal + .content .add-comparative-widget .add-widget-btn:before {
  margin-top: 2px;
}
[class^="route-insight-dashboard"] div.modal.edit-widget-modal + .content .add-comparative-widget .remove-comparison,
[class^="route-loading"] div.modal.edit-widget-modal + .content .add-comparative-widget .remove-comparison,
[class^="route-insight-dashboard"] div.modal.add-widget-modal + .content .add-comparative-widget .remove-comparison,
[class^="route-loading"] div.modal.add-widget-modal + .content .add-comparative-widget .remove-comparison {
  width: 14px;
  height: 14px;
  position: absolute;
  right: 7px;
  top: -7px;
}
[class^="route-insight-dashboard"] div.modal.edit-widget-modal + .content .add-comparative-widget .remove-comparison::before,
[class^="route-loading"] div.modal.edit-widget-modal + .content .add-comparative-widget .remove-comparison::before,
[class^="route-insight-dashboard"] div.modal.add-widget-modal + .content .add-comparative-widget .remove-comparison::before,
[class^="route-loading"] div.modal.add-widget-modal + .content .add-comparative-widget .remove-comparison::before {
  font-size: 9px;
  transform: rotate(45deg);
  margin-top: 0px;
}
[class^="route-insight-dashboard"] div.modal.edit-widget-modal + .content .add-comparative-widget .comparison-list,
[class^="route-loading"] div.modal.edit-widget-modal + .content .add-comparative-widget .comparison-list,
[class^="route-insight-dashboard"] div.modal.add-widget-modal + .content .add-comparative-widget .comparison-list,
[class^="route-loading"] div.modal.add-widget-modal + .content .add-comparative-widget .comparison-list {
  padding: 0;
  list-style-type: none;
  margin-top: 0;
}
[class^="route-insight-dashboard"] div.modal.edit-widget-modal + .content .add-comparative-widget .comparison-list li,
[class^="route-loading"] div.modal.edit-widget-modal + .content .add-comparative-widget .comparison-list li,
[class^="route-insight-dashboard"] div.modal.add-widget-modal + .content .add-comparative-widget .comparison-list li,
[class^="route-loading"] div.modal.add-widget-modal + .content .add-comparative-widget .comparison-list li {
  background: #f3f3f3;
  padding: 8px;
  border-radius: 4px;
  border: 1px solid #e6e6e6;
  display: flex;
  margin-bottom: 10px;
  position: relative;
}
[class^="route-insight-dashboard"] div.modal.edit-widget-modal + .content .add-comparative-widget .comparison-list li.source-insight,
[class^="route-loading"] div.modal.edit-widget-modal + .content .add-comparative-widget .comparison-list li.source-insight,
[class^="route-insight-dashboard"] div.modal.add-widget-modal + .content .add-comparative-widget .comparison-list li.source-insight,
[class^="route-loading"] div.modal.add-widget-modal + .content .add-comparative-widget .comparison-list li.source-insight {
  padding-top: 30px;
}
[class^="route-insight-dashboard"] div.modal.edit-widget-modal + .content .add-comparative-widget .comparison-list li > *,
[class^="route-loading"] div.modal.edit-widget-modal + .content .add-comparative-widget .comparison-list li > *,
[class^="route-insight-dashboard"] div.modal.add-widget-modal + .content .add-comparative-widget .comparison-list li > *,
[class^="route-loading"] div.modal.add-widget-modal + .content .add-comparative-widget .comparison-list li > * {
  margin-right: 7px;
}
[class^="route-insight-dashboard"] div.modal.edit-widget-modal + .content .add-comparative-widget .comparison-list li > *:last-child,
[class^="route-loading"] div.modal.edit-widget-modal + .content .add-comparative-widget .comparison-list li > *:last-child,
[class^="route-insight-dashboard"] div.modal.add-widget-modal + .content .add-comparative-widget .comparison-list li > *:last-child,
[class^="route-loading"] div.modal.add-widget-modal + .content .add-comparative-widget .comparison-list li > *:last-child {
  margin-right: -7px;
}
[class^="route-insight-dashboard"] div.modal.edit-widget-modal + .content .add-comparative-widget .comparison-list li .no-pivots-shown,
[class^="route-loading"] div.modal.edit-widget-modal + .content .add-comparative-widget .comparison-list li .no-pivots-shown,
[class^="route-insight-dashboard"] div.modal.add-widget-modal + .content .add-comparative-widget .comparison-list li .no-pivots-shown,
[class^="route-loading"] div.modal.add-widget-modal + .content .add-comparative-widget .comparison-list li .no-pivots-shown {
  position: absolute;
  width: 100%;
  top: 0;
  text-align: center;
}
[class^="route-insight-dashboard"] div.modal.edit-widget-modal + .content .add-comparative-widget .comparison-list li .no-pivots-shown .fa,
[class^="route-loading"] div.modal.edit-widget-modal + .content .add-comparative-widget .comparison-list li .no-pivots-shown .fa,
[class^="route-insight-dashboard"] div.modal.add-widget-modal + .content .add-comparative-widget .comparison-list li .no-pivots-shown .fa,
[class^="route-loading"] div.modal.add-widget-modal + .content .add-comparative-widget .comparison-list li .no-pivots-shown .fa {
  color: #ff9933;
}
[class^="route-insight-dashboard"] div.modal.edit-widget-modal + .content .add-comparative-widget .comparison-list li .no-pivots-shown .text,
[class^="route-loading"] div.modal.edit-widget-modal + .content .add-comparative-widget .comparison-list li .no-pivots-shown .text,
[class^="route-insight-dashboard"] div.modal.add-widget-modal + .content .add-comparative-widget .comparison-list li .no-pivots-shown .text,
[class^="route-loading"] div.modal.add-widget-modal + .content .add-comparative-widget .comparison-list li .no-pivots-shown .text {
  color: #555555;
  font-style: italic;
}
[class^="route-insight-dashboard"] div.modal.edit-widget-modal + .content .add-comparative-widget .comparison-list li .inner-label,
[class^="route-loading"] div.modal.edit-widget-modal + .content .add-comparative-widget .comparison-list li .inner-label,
[class^="route-insight-dashboard"] div.modal.add-widget-modal + .content .add-comparative-widget .comparison-list li .inner-label,
[class^="route-loading"] div.modal.add-widget-modal + .content .add-comparative-widget .comparison-list li .inner-label {
  width: calc(50% - 40px);
  max-width: calc(50% - 40px);
  margin-bottom: 0;
}
[class^="route-insight-dashboard"] div.modal.edit-widget-modal + .content .add-comparative-widget .comparison-list li .inner-label.selected[data-field-tooltip]:hover:after,
[class^="route-loading"] div.modal.edit-widget-modal + .content .add-comparative-widget .comparison-list li .inner-label.selected[data-field-tooltip]:hover:after,
[class^="route-insight-dashboard"] div.modal.add-widget-modal + .content .add-comparative-widget .comparison-list li .inner-label.selected[data-field-tooltip]:hover:after,
[class^="route-loading"] div.modal.add-widget-modal + .content .add-comparative-widget .comparison-list li .inner-label.selected[data-field-tooltip]:hover:after {
  z-index: 15;
  content: attr(data-field-tooltip);
  top: 25px;
  left: 0;
  width: fit-content;
  display: block;
  text-align: left;
  border-radius: 3px;
  border: solid 1px #b9b9b9;
  position: absolute;
  color: #000;
  padding: 4px;
  background: #f7f7f7;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2);
  font-family: sans-serif;
  line-height: 12px;
  font-size: 10px;
  font-size: 1rem;
}
[class^="route-insight-dashboard"] div.modal.edit-widget-modal + .content .add-comparative-widget .comparison-list li .inner-label.disabled,
[class^="route-loading"] div.modal.edit-widget-modal + .content .add-comparative-widget .comparison-list li .inner-label.disabled,
[class^="route-insight-dashboard"] div.modal.add-widget-modal + .content .add-comparative-widget .comparison-list li .inner-label.disabled,
[class^="route-loading"] div.modal.add-widget-modal + .content .add-comparative-widget .comparison-list li .inner-label.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
[class^="route-insight-dashboard"] div.modal.edit-widget-modal + .content .add-comparative-widget .comparison-list li .inner-label.disabled label,
[class^="route-loading"] div.modal.edit-widget-modal + .content .add-comparative-widget .comparison-list li .inner-label.disabled label,
[class^="route-insight-dashboard"] div.modal.add-widget-modal + .content .add-comparative-widget .comparison-list li .inner-label.disabled label,
[class^="route-loading"] div.modal.add-widget-modal + .content .add-comparative-widget .comparison-list li .inner-label.disabled label {
  cursor: not-allowed;
}
[class^="route-insight-dashboard"] div.modal.edit-widget-modal + .content .add-comparative-widget .comparison-list li .inner-label.disabled .ember-basic-dropdown-trigger,
[class^="route-loading"] div.modal.edit-widget-modal + .content .add-comparative-widget .comparison-list li .inner-label.disabled .ember-basic-dropdown-trigger,
[class^="route-insight-dashboard"] div.modal.add-widget-modal + .content .add-comparative-widget .comparison-list li .inner-label.disabled .ember-basic-dropdown-trigger,
[class^="route-loading"] div.modal.add-widget-modal + .content .add-comparative-widget .comparison-list li .inner-label.disabled .ember-basic-dropdown-trigger {
  pointer-events: none;
}
[class^="route-insight-dashboard"] div.modal.edit-widget-modal + .content .add-comparative-widget .comparison-list li .inner-label label,
[class^="route-loading"] div.modal.edit-widget-modal + .content .add-comparative-widget .comparison-list li .inner-label label,
[class^="route-insight-dashboard"] div.modal.add-widget-modal + .content .add-comparative-widget .comparison-list li .inner-label label,
[class^="route-loading"] div.modal.add-widget-modal + .content .add-comparative-widget .comparison-list li .inner-label label {
  background: white;
  width: 100px;
  padding-right: 10px;
}
[class^="route-insight-dashboard"] div.modal.edit-widget-modal + .content .add-comparative-widget .comparison-list li .inner-label div.ember-power-select-trigger,
[class^="route-loading"] div.modal.edit-widget-modal + .content .add-comparative-widget .comparison-list li .inner-label div.ember-power-select-trigger,
[class^="route-insight-dashboard"] div.modal.add-widget-modal + .content .add-comparative-widget .comparison-list li .inner-label div.ember-power-select-trigger,
[class^="route-loading"] div.modal.add-widget-modal + .content .add-comparative-widget .comparison-list li .inner-label div.ember-power-select-trigger {
  margin-left: 10px;
  padding-left: 95px;
  padding-right: 22px;
}
[class^="route-insight-dashboard"] div.modal.edit-widget-modal + .content .add-comparative-widget .comparison-list li .hide-toggle,
[class^="route-loading"] div.modal.edit-widget-modal + .content .add-comparative-widget .comparison-list li .hide-toggle,
[class^="route-insight-dashboard"] div.modal.add-widget-modal + .content .add-comparative-widget .comparison-list li .hide-toggle,
[class^="route-loading"] div.modal.add-widget-modal + .content .add-comparative-widget .comparison-list li .hide-toggle {
  display: none;
}
[class^="route-insight-dashboard"] div.modal.edit-widget-modal + .content .add-comparative-widget .comparison-list li .ui-toggle-switch label,
[class^="route-loading"] div.modal.edit-widget-modal + .content .add-comparative-widget .comparison-list li .ui-toggle-switch label,
[class^="route-insight-dashboard"] div.modal.add-widget-modal + .content .add-comparative-widget .comparison-list li .ui-toggle-switch label,
[class^="route-loading"] div.modal.add-widget-modal + .content .add-comparative-widget .comparison-list li .ui-toggle-switch label {
  width: 57px;
}
[class^="route-insight-dashboard"] div.modal.edit-widget-modal + .content .axis-name-row,
[class^="route-loading"] div.modal.edit-widget-modal + .content .axis-name-row,
[class^="route-insight-dashboard"] div.modal.add-widget-modal + .content .axis-name-row,
[class^="route-loading"] div.modal.add-widget-modal + .content .axis-name-row {
  background: #f3f3f3;
  padding: 8px;
  border-radius: 4px;
  border: 1px solid #e6e6e6;
  display: flex;
}
[class^="route-insight-dashboard"] div.modal.edit-widget-modal + .content .axis-name-row .inner-label,
[class^="route-loading"] div.modal.edit-widget-modal + .content .axis-name-row .inner-label,
[class^="route-insight-dashboard"] div.modal.add-widget-modal + .content .axis-name-row .inner-label,
[class^="route-loading"] div.modal.add-widget-modal + .content .axis-name-row .inner-label {
  width: 100%;
  margin-bottom: 0;
}
[class^="route-insight-dashboard"] div.modal.edit-widget-modal + .content .axis-name-row .inner-label:first-of-type,
[class^="route-loading"] div.modal.edit-widget-modal + .content .axis-name-row .inner-label:first-of-type,
[class^="route-insight-dashboard"] div.modal.add-widget-modal + .content .axis-name-row .inner-label:first-of-type,
[class^="route-loading"] div.modal.add-widget-modal + .content .axis-name-row .inner-label:first-of-type {
  margin-right: 10px;
}
[class^="route-insight-dashboard"] div.modal.edit-widget-modal + .content .axis-name-row .inner-label .standard,
[class^="route-loading"] div.modal.edit-widget-modal + .content .axis-name-row .inner-label .standard,
[class^="route-insight-dashboard"] div.modal.add-widget-modal + .content .axis-name-row .inner-label .standard,
[class^="route-loading"] div.modal.add-widget-modal + .content .axis-name-row .inner-label .standard {
  margin-left: 100px;
  width: calc(100% - 100px);
  background: white;
}
[class^="route-insight-dashboard"] div.modal.edit-widget-modal + .content .axis-name-row .inner-label label,
[class^="route-loading"] div.modal.edit-widget-modal + .content .axis-name-row .inner-label label,
[class^="route-insight-dashboard"] div.modal.add-widget-modal + .content .axis-name-row .inner-label label,
[class^="route-loading"] div.modal.add-widget-modal + .content .axis-name-row .inner-label label {
  background: white;
  width: 100px;
  padding-right: 10px;
}
[class^="route-insight-dashboard"] div.modal.edit-widget-modal + .content .client-select-wrapper .org-label,
[class^="route-loading"] div.modal.edit-widget-modal + .content .client-select-wrapper .org-label,
[class^="route-insight-dashboard"] div.modal.add-widget-modal + .content .client-select-wrapper .org-label,
[class^="route-loading"] div.modal.add-widget-modal + .content .client-select-wrapper .org-label {
  display: none;
}
[class^="route-insight-dashboard"] div.modal.edit-widget-modal + .content .client-select-wrapper .ember-power-select-trigger,
[class^="route-loading"] div.modal.edit-widget-modal + .content .client-select-wrapper .ember-power-select-trigger,
[class^="route-insight-dashboard"] div.modal.add-widget-modal + .content .client-select-wrapper .ember-power-select-trigger,
[class^="route-loading"] div.modal.add-widget-modal + .content .client-select-wrapper .ember-power-select-trigger {
  border: solid 1px #cbc8ca;
  border-left: none;
  border-radius: 3px;
  text-align: left;
  display: block;
  font-size: 12px;
  font-size: 1.2rem;
}
[class^="route-insight-dashboard"] div.modal.edit-widget-modal + .content .client-select-wrapper .ember-power-select-selected-item,
[class^="route-loading"] div.modal.edit-widget-modal + .content .client-select-wrapper .ember-power-select-selected-item,
[class^="route-insight-dashboard"] div.modal.add-widget-modal + .content .client-select-wrapper .ember-power-select-selected-item,
[class^="route-loading"] div.modal.add-widget-modal + .content .client-select-wrapper .ember-power-select-selected-item,
[class^="route-insight-dashboard"] div.modal.edit-widget-modal + .content .client-select-wrapper .ember-power-select-placeholder,
[class^="route-loading"] div.modal.edit-widget-modal + .content .client-select-wrapper .ember-power-select-placeholder,
[class^="route-insight-dashboard"] div.modal.add-widget-modal + .content .client-select-wrapper .ember-power-select-placeholder,
[class^="route-loading"] div.modal.add-widget-modal + .content .client-select-wrapper .ember-power-select-placeholder {
  color: #6c7280;
  white-space: nowrap;
}
[class^="route-insight-dashboard"] div.modal.modify-filters-modal + .content .filter-section.advanced-insight .item-container,
[class^="route-loading"] div.modal.modify-filters-modal + .content .filter-section.advanced-insight .item-container {
  max-height: 400px;
  overflow: scroll;
  margin-bottom: 10px;
}
[class^="route-insight-dashboard"] div.modal.modify-filters-modal + .content .filter-section.advanced-insight .item-container .ui-date-picker,
[class^="route-loading"] div.modal.modify-filters-modal + .content .filter-section.advanced-insight .item-container .ui-date-picker {
  top: 30px;
}
[class^="route-insight-dashboard"] div.modal.modify-filters-modal + .content .filter-section .filter-form,
[class^="route-loading"] div.modal.modify-filters-modal + .content .filter-section .filter-form,
[class^="route-insight-dashboard"] div.modal.modify-filters-modal + .content .filter-section .sort-form,
[class^="route-loading"] div.modal.modify-filters-modal + .content .filter-section .sort-form {
  overflow: auto;
  margin: 0 0 15px;
  margin-bottom: 25px;
  padding: 0 15px;
}
[class^="route-insight-dashboard"] div.modal.modify-filters-modal + .content .filter-section .filter-form .locked-filter,
[class^="route-loading"] div.modal.modify-filters-modal + .content .filter-section .filter-form .locked-filter,
[class^="route-insight-dashboard"] div.modal.modify-filters-modal + .content .filter-section .sort-form .locked-filter,
[class^="route-loading"] div.modal.modify-filters-modal + .content .filter-section .sort-form .locked-filter {
  position: relative;
  padding: 5px 0;
  max-width: 100% !important;
}
[class^="route-insight-dashboard"] div.modal.modify-filters-modal + .content .filter-section .filter-form .locked-filter .locked-filter-mask,
[class^="route-loading"] div.modal.modify-filters-modal + .content .filter-section .filter-form .locked-filter .locked-filter-mask,
[class^="route-insight-dashboard"] div.modal.modify-filters-modal + .content .filter-section .sort-form .locked-filter .locked-filter-mask,
[class^="route-loading"] div.modal.modify-filters-modal + .content .filter-section .sort-form .locked-filter .locked-filter-mask {
  pointer-events: none;
  background-color: #a7a7a7;
  margin-right: -20px;
  opacity: 0.5;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: -20px;
  z-index: 10;
}
[class^="route-insight-dashboard"] div.modal.modify-filters-modal + .content .filter-section .filter-form .locked-filter .locked-filter-mask + div .tooltip,
[class^="route-loading"] div.modal.modify-filters-modal + .content .filter-section .filter-form .locked-filter .locked-filter-mask + div .tooltip,
[class^="route-insight-dashboard"] div.modal.modify-filters-modal + .content .filter-section .sort-form .locked-filter .locked-filter-mask + div .tooltip,
[class^="route-loading"] div.modal.modify-filters-modal + .content .filter-section .sort-form .locked-filter .locked-filter-mask + div .tooltip {
  display: none;
}
[class^="route-insight-dashboard"] div.modal.modify-filters-modal + .content .filter-section .filter-form .locked-filter .locked-filter-mask + div:hover .tooltip,
[class^="route-loading"] div.modal.modify-filters-modal + .content .filter-section .filter-form .locked-filter .locked-filter-mask + div:hover .tooltip,
[class^="route-insight-dashboard"] div.modal.modify-filters-modal + .content .filter-section .sort-form .locked-filter .locked-filter-mask + div:hover .tooltip,
[class^="route-loading"] div.modal.modify-filters-modal + .content .filter-section .sort-form .locked-filter .locked-filter-mask + div:hover .tooltip {
  background: #555555;
  border-radius: 3px;
  color: white;
  display: block;
  margin-top: -44px;
  margin-left: -10px;
  position: absolute;
  width: 150px;
  text-align: center;
  padding: 3px 5px;
  z-index: 99;
}
[class^="route-insight-dashboard"] div.modal.modify-filters-modal + .content .filter-section .filter-form .locked-filter .locked-filter-mask + div:hover .tooltip:after,
[class^="route-loading"] div.modal.modify-filters-modal + .content .filter-section .filter-form .locked-filter .locked-filter-mask + div:hover .tooltip:after,
[class^="route-insight-dashboard"] div.modal.modify-filters-modal + .content .filter-section .sort-form .locked-filter .locked-filter-mask + div:hover .tooltip:after,
[class^="route-loading"] div.modal.modify-filters-modal + .content .filter-section .sort-form .locked-filter .locked-filter-mask + div:hover .tooltip:after {
  top: 100%;
  left: 15px;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(36, 59, 95, 0);
  border-top-color: #555555;
  border-width: 5px;
  margin-left: -5px;
}
[class^="route-insight-dashboard"] div.modal.modify-filters-modal + .content .filter-section .filter-form .locked-filter .locked-filter-mask + div::before,
[class^="route-loading"] div.modal.modify-filters-modal + .content .filter-section .filter-form .locked-filter .locked-filter-mask + div::before,
[class^="route-insight-dashboard"] div.modal.modify-filters-modal + .content .filter-section .sort-form .locked-filter .locked-filter-mask + div::before,
[class^="route-loading"] div.modal.modify-filters-modal + .content .filter-section .sort-form .locked-filter .locked-filter-mask + div::before {
  font-family: "fontawesome" !important;
  content: "\f023";
  color: black;
  display: inline-block;
  font-size: 16px;
  font-size: 1.6rem;
  width: 14px;
}
[class^="route-insight-dashboard"] div.modal.modify-filters-modal + .content .filter-section .filter-form .insight-filter-field,
[class^="route-loading"] div.modal.modify-filters-modal + .content .filter-section .filter-form .insight-filter-field,
[class^="route-insight-dashboard"] div.modal.modify-filters-modal + .content .filter-section .sort-form .insight-filter-field,
[class^="route-loading"] div.modal.modify-filters-modal + .content .filter-section .sort-form .insight-filter-field,
[class^="route-insight-dashboard"] div.modal.modify-filters-modal + .content .filter-section .filter-form .condition-select-wrap,
[class^="route-loading"] div.modal.modify-filters-modal + .content .filter-section .filter-form .condition-select-wrap,
[class^="route-insight-dashboard"] div.modal.modify-filters-modal + .content .filter-section .sort-form .condition-select-wrap,
[class^="route-loading"] div.modal.modify-filters-modal + .content .filter-section .sort-form .condition-select-wrap {
  max-width: 305px;
}
[class^="route-insight-dashboard"] div.modal.modify-filters-modal + .content .filter-section input,
[class^="route-loading"] div.modal.modify-filters-modal + .content .filter-section input,
[class^="route-insight-dashboard"] div.modal.modify-filters-modal + .content .filter-section input[type="number"],
[class^="route-loading"] div.modal.modify-filters-modal + .content .filter-section input[type="number"],
[class^="route-insight-dashboard"] div.modal.modify-filters-modal + .content .filter-section select,
[class^="route-loading"] div.modal.modify-filters-modal + .content .filter-section select {
  width: 100%;
  margin: 0;
}
[class^="route-insight-dashboard"] div.modal.modify-filters-modal + .content .filter-section .condition-select-wrap,
[class^="route-loading"] div.modal.modify-filters-modal + .content .filter-section .condition-select-wrap {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
}
[class^="route-insight-dashboard"] div.modal.modify-filters-modal + .content .filter-section .condition-select-wrap .x-autocomplete-wrap.x-autocomplete-core,
[class^="route-loading"] div.modal.modify-filters-modal + .content .filter-section .condition-select-wrap .x-autocomplete-wrap.x-autocomplete-core {
  width: 100%;
}
[class^="route-insight-dashboard"] div.modal.modify-filters-modal + .content .filter-section .insight-filter-field,
[class^="route-loading"] div.modal.modify-filters-modal + .content .filter-section .insight-filter-field {
  color: #404d5e;
  text-align: left;
}
[class^="route-insight-dashboard"] div.modal.modify-filters-modal + .content .filter-section .insight-filter-field .filter-conditional,
[class^="route-loading"] div.modal.modify-filters-modal + .content .filter-section .insight-filter-field .filter-conditional {
  display: inline-block;
  width: 100%;
  text-align: right;
}
[class^="route-insight-dashboard"] div.modal.modify-filters-modal + .content .filter-section .insight-filter-field > span + .filter-conditional,
[class^="route-loading"] div.modal.modify-filters-modal + .content .filter-section .insight-filter-field > span + .filter-conditional {
  display: none;
}
[class^="route-insight-dashboard"] div.modal.modify-filters-modal + .content .filter-section .flex-row,
[class^="route-loading"] div.modal.modify-filters-modal + .content .filter-section .flex-row {
  align-items: center;
  width: 750px;
  margin-bottom: 8px;
}
[class^="route-insight-dashboard"] div.modal.modify-filters-modal + .content .filter-section .flex-row input,
[class^="route-loading"] div.modal.modify-filters-modal + .content .filter-section .flex-row input,
[class^="route-insight-dashboard"] div.modal.modify-filters-modal + .content .filter-section .flex-row select,
[class^="route-loading"] div.modal.modify-filters-modal + .content .filter-section .flex-row select {
  margin-top: 0 !important;
}
[class^="route-insight-dashboard"] div.modal.modify-filters-modal + .content .filter-section .flex-row > div:last-child,
[class^="route-loading"] div.modal.modify-filters-modal + .content .filter-section .flex-row > div:last-child {
  margin-right: 0;
}
[class^="route-insight-dashboard"] div.modal.modify-filters-modal + .content .filter-section .flex-row:last-child,
[class^="route-loading"] div.modal.modify-filters-modal + .content .filter-section .flex-row:last-child {
  padding-bottom: 250px;
}
[class^="route-insight-dashboard"] div.modal.modify-filters-modal + .content .filter-section .filter-form,
[class^="route-loading"] div.modal.modify-filters-modal + .content .filter-section .filter-form {
  margin-bottom: 25px;
  max-height: 450px;
  overflow: auto;
}
[class^="route-insight-dashboard"] div.modal.modify-filters-modal + .content .filter-section .filter-form .flex-row,
[class^="route-loading"] div.modal.modify-filters-modal + .content .filter-section .filter-form .flex-row {
  max-width: 1000px;
}
[class^="route-insight-dashboard"] div.modal.modify-filters-modal + .content .filter-section .filter-form .label-field select,
[class^="route-loading"] div.modal.modify-filters-modal + .content .filter-section .filter-form .label-field select {
  width: 62px;
  font-size: 1.3rem;
}
[class^="route-insight-dashboard"] div.modal.modify-filters-modal + .content .filter-section .filter-form .label-field span.conditional-text,
[class^="route-loading"] div.modal.modify-filters-modal + .content .filter-section .filter-form .label-field span.conditional-text {
  width: 62px;
  padding-left: 8px;
  box-sizing: border-box;
  display: inline-block;
}
[class^="route-insight-dashboard"] div.modal.modify-filters-modal + .content .filter-section .filter-form .condition-select-wrap,
[class^="route-loading"] div.modal.modify-filters-modal + .content .filter-section .filter-form .condition-select-wrap {
  margin-right: 5px;
}
[class^="route-insight-dashboard"] div.modal.modify-filters-modal + .content .filter-section input[type="number"],
[class^="route-loading"] div.modal.modify-filters-modal + .content .filter-section input[type="number"],
[class^="route-insight-dashboard"] div.modal.modify-filters-modal + .content .filter-section input[type="text"],
[class^="route-loading"] div.modal.modify-filters-modal + .content .filter-section input[type="text"],
[class^="route-insight-dashboard"] div.modal.modify-filters-modal + .content .filter-section select,
[class^="route-loading"] div.modal.modify-filters-modal + .content .filter-section select {
  box-sizing: border-box;
  height: 26px;
  margin: 8px 0 0 0;
  padding: 0 7px;
  border-radius: 3px;
  background: #fff;
  font-size: 12px;
  font-size: 1.2rem;
}
[class^="route-insight-dashboard"] div.modal.modify-filters-modal + .content .filter-section input[type="number"].end-value,
[class^="route-loading"] div.modal.modify-filters-modal + .content .filter-section input[type="number"].end-value,
[class^="route-insight-dashboard"] div.modal.modify-filters-modal + .content .filter-section input[type="text"].end-value,
[class^="route-loading"] div.modal.modify-filters-modal + .content .filter-section input[type="text"].end-value,
[class^="route-insight-dashboard"] div.modal.modify-filters-modal + .content .filter-section select.end-value,
[class^="route-loading"] div.modal.modify-filters-modal + .content .filter-section select.end-value {
  margin-left: 10px;
}
[class^="route-insight-dashboard"] div.modal.modify-filters-modal + .content .filter-section .inline-error,
[class^="route-loading"] div.modal.modify-filters-modal + .content .filter-section .inline-error {
  color: #ed4651;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 700;
}
[class^="route-insight-dashboard"] div.modal.modify-filters-modal + .content .filter-section .range,
[class^="route-loading"] div.modal.modify-filters-modal + .content .filter-section .range {
  margin: 0 5px;
}
[class^="route-insight-dashboard"] div.modal.modify-filters-modal + .content .filter-section .cancel,
[class^="route-loading"] div.modal.modify-filters-modal + .content .filter-section .cancel {
  margin-right: 10px;
}
[class^="route-insight-dashboard"] div.modal.modify-filters-modal + .content .filter-section select,
[class^="route-loading"] div.modal.modify-filters-modal + .content .filter-section select {
  margin-right: 10px;
  background: white url("/assets/img/sort-icon-teal.svg") no-repeat calc(100% - 10px) center;
  background-color: transparent;
  background-size: 10px auto;
  padding-right: 25px;
}
[class^="route-insight-dashboard"] div.modal.modify-filters-modal + .content .filter-section select.condition-select,
[class^="route-loading"] div.modal.modify-filters-modal + .content .filter-section select.condition-select {
  padding-left: 80px;
  margin-left: -78px;
}
[class^="route-insight-dashboard"] div.modal.modify-filters-modal + .content .filter-section .tt-dropdown-menu,
[class^="route-loading"] div.modal.modify-filters-modal + .content .filter-section .tt-dropdown-menu {
  box-sizing: border-box;
  background: #fff;
  display: block;
  padding: 8px 5px 5px 5px;
  z-index: 2;
  width: calc(100% - 10px);
  border: solid 1px #e6e6e6;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
  text-align: left;
  max-height: 120px;
  overflow: scroll;
  margin: 0;
  width: 100%;
}
[class^="route-insight-dashboard"] div.modal.modify-filters-modal + .content .filter-section .tt-dropdown-menu .tt-suggestion,
[class^="route-loading"] div.modal.modify-filters-modal + .content .filter-section .tt-dropdown-menu .tt-suggestion {
  border-radius: 3px;
  padding: 1px 3px 3px 3px;
  margin: 0px 0px 4px 0px;
  border: none;
  outline: 0;
  font-size: 11px;
  font-size: 1.1rem;
  display: inline-block;
  font-weight: bold;
  cursor: pointer;
}
[class^="route-insight-dashboard"] div.modal.modify-filters-modal + .content .filter-section .tt-dropdown-menu .tt-suggestion:hover,
[class^="route-loading"] div.modal.modify-filters-modal + .content .filter-section .tt-dropdown-menu .tt-suggestion:hover {
  background: #276ca0;
}
[class^="route-insight-dashboard"] div.modal.modify-filters-modal + .content .filter-section .tt-dropdown-menu .tt-suggestion.no-result,
[class^="route-loading"] div.modal.modify-filters-modal + .content .filter-section .tt-dropdown-menu .tt-suggestion.no-result {
  background: none;
  padding: 0;
  color: #555555;
}
[class^="route-insight-dashboard"] div.modal.modify-filters-modal + .content .filter-section .tt-dropdown-menu .tt-suggestion[data-tag-type="standard"],
[class^="route-loading"] div.modal.modify-filters-modal + .content .filter-section .tt-dropdown-menu .tt-suggestion[data-tag-type="standard"] {
  background: #3188c9;
}
[class^="route-insight-dashboard"] div.modal.modify-filters-modal + .content .filter-section .tt-dropdown-menu .tt-suggestion[data-tag-type="custom"],
[class^="route-loading"] div.modal.modify-filters-modal + .content .filter-section .tt-dropdown-menu .tt-suggestion[data-tag-type="custom"] {
  background: #18b28b;
}
[class^="route-insight-dashboard"] div.modal.modify-filters-modal + .content .filter-section .tt-dropdown-menu .tt-suggestion,
[class^="route-loading"] div.modal.modify-filters-modal + .content .filter-section .tt-dropdown-menu .tt-suggestion {
  color: black;
}
[class^="route-insight-dashboard"] div.modal.modify-filters-modal + .content .filter-section .tt-dropdown-menu .tt-suggestion:hover,
[class^="route-loading"] div.modal.modify-filters-modal + .content .filter-section .tt-dropdown-menu .tt-suggestion:hover {
  color: white;
}
[class^="route-insight-dashboard"] div.modal.modify-filters-modal + .content .filter-section .tag-container,
[class^="route-loading"] div.modal.modify-filters-modal + .content .filter-section .tag-container {
  width: 100%;
}
[class^="route-insight-dashboard"] div.modal.modify-filters-modal + .content .filter-section .tag-container .tag-input,
[class^="route-loading"] div.modal.modify-filters-modal + .content .filter-section .tag-container .tag-input {
  box-sizing: border-box;
  margin: 0;
  border: 1px solid #e6e6e6;
  height: 52px;
  padding: 4px 3px 0 2px;
  overflow-x: hidden;
  overflow-y: auto;
}
[class^="route-insight-dashboard"] div.modal.modify-filters-modal + .content .filter-section .tag-container li,
[class^="route-loading"] div.modal.modify-filters-modal + .content .filter-section .tag-container li {
  float: left;
}
[class^="route-insight-dashboard"] div.modal.modify-filters-modal + .content .filter-section .tag-container .inserted-tag,
[class^="route-loading"] div.modal.modify-filters-modal + .content .filter-section .tag-container .inserted-tag {
  margin: 2px 0 0 2px;
}
[class^="route-insight-dashboard"] div.modal.modify-filters-modal + .content .filter-section .tag-container .x-autocomplete-wrap,
[class^="route-loading"] div.modal.modify-filters-modal + .content .filter-section .tag-container .x-autocomplete-wrap {
  min-height: 26px;
  overflow: hidden;
  text-align: left;
  width: 100%;
}
[class^="route-insight-dashboard"] div.modal.modify-filters-modal + .content .filter-section .tag-container .x-autocomplete-wrap .tt-dropdown-menu,
[class^="route-loading"] div.modal.modify-filters-modal + .content .filter-section .tag-container .x-autocomplete-wrap .tt-dropdown-menu {
  position: absolute;
  top: 50px;
  left: 0;
}
[class^="route-insight-dashboard"] div.modal.modify-filters-modal + .content .filter-section .tag-container .x-autocomplete-wrap input,
[class^="route-loading"] div.modal.modify-filters-modal + .content .filter-section .tag-container .x-autocomplete-wrap input {
  height: 20px;
  margin: 0 0 0 4px;
  padding: 0;
}
[class^="route-insight-dashboard"] .insight-dashboard-controls .back-report-directory,
[class^="route-loading"] .insight-dashboard-controls .back-report-directory {
  min-width: 145px;
}
[class^="route-insight-dashboard"] .insight-dashboard-controls .ui-button,
[class^="route-loading"] .insight-dashboard-controls .ui-button,
[class^="route-insight-dashboard"] .insight-dashboard-controls .add-page,
[class^="route-loading"] .insight-dashboard-controls .add-page {
  white-space: nowrap;
}
[class^="route-insight-dashboard"] .insight-dashboard-controls .show-data-point-label,
[class^="route-loading"] .insight-dashboard-controls .show-data-point-label {
  margin-left: 10px;
}
[class^="route-insight-dashboard"] .insight-dashboard-controls .insight-dashboard-options,
[class^="route-loading"] .insight-dashboard-controls .insight-dashboard-options {
  flex: 0;
}
[class^="route-insight-dashboard"] .insight-dashboard-controls .cog-options + .insight-dashboard-actions-wrapper,
[class^="route-loading"] .insight-dashboard-controls .cog-options + .insight-dashboard-actions-wrapper {
  margin-left: -26px;
}
[class^="route-insight-dashboard"] .insight-dashboard-controls select,
[class^="route-loading"] .insight-dashboard-controls select {
  margin-left: 12px !important;
  max-width: calc(100% - 165px);
  width: 100%;
}
[class^="route-insight-dashboard"] .insight-dashboard-controls .chart-loading-indicator,
[class^="route-loading"] .insight-dashboard-controls .chart-loading-indicator {
  position: absolute;
}
[class^="route-insight-dashboard"] .insight-dashboard-controls .chart-loading-indicator .spinner,
[class^="route-loading"] .insight-dashboard-controls .chart-loading-indicator .spinner {
  width: 12px;
  height: 12px;
  top: 6px;
  left: 155px;
  border-left: 2px solid rgba(255, 255, 255, 0.15);
  border-right: 2px solid rgba(255, 255, 255, 0.15);
  border-bottom: 2px solid rgba(255, 255, 255, 0.15);
  border-top: 2px solid white;
}
[class^="route-insight-dashboard"] .insight-dashboard-controls .insight-dashboard-selector,
[class^="route-loading"] .insight-dashboard-controls .insight-dashboard-selector {
  min-width: 230px;
  max-width: 350px;
}
[class^="route-insight-dashboard"] .insight-dashboard-controls .insight-dashboard-selector > .ember-basic-dropdown-trigger.ember-power-select-trigger > span.ember-power-select-selected-item,
[class^="route-loading"] .insight-dashboard-controls .insight-dashboard-selector > .ember-basic-dropdown-trigger.ember-power-select-trigger > span.ember-power-select-selected-item {
  margin: 0 3px 0 8px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 13px;
  font-size: 1.3rem;
}
[class^="route-insight-dashboard"] .insight-dashboard-controls .insight-dashboard-selector > .ember-basic-dropdown-trigger.ember-power-select-trigger > span.ember-power-select-status-icon,
[class^="route-loading"] .insight-dashboard-controls .insight-dashboard-selector > .ember-basic-dropdown-trigger.ember-power-select-trigger > span.ember-power-select-status-icon {
  margin: auto;
}
[class^="route-insight-dashboard"] .admin-warning,
[class^="route-loading"] .admin-warning {
  background-color: #ff9933;
  text-align: center;
  padding: 5px;
}
[class^="route-insight-dashboard"] .dashboard-cpt-copyright,
[class^="route-loading"] .dashboard-cpt-copyright {
  display: flex;
  margin: 0;
  align-items: center;
}
[class^="route-insight-dashboard"] .dashboard-cpt-copyright p,
[class^="route-loading"] .dashboard-cpt-copyright p {
  margin: 5px 34px 0px 0px;
  margin-left: auto;
  font-size: 8px;
  cursor: pointer;
}
[class^="route-insight-dashboard"] .widget-wrapper,
[class^="route-loading"] .widget-wrapper {
  margin-top: 20px;
}
[class^="route-insight-dashboard"] .widget-wrapper section.flex-row,
[class^="route-loading"] .widget-wrapper section.flex-row {
  margin-top: 0;
}
[class^="route-insight-dashboard"] .widget-wrapper section.flex-row h1.no-content,
[class^="route-loading"] .widget-wrapper section.flex-row h1.no-content {
  margin-top: 40px !important;
  margin-bottom: 50px !important;
}
[class^="route-insight-dashboard"] .widget-wrapper section.flex-row h1.sub-header,
[class^="route-loading"] .widget-wrapper section.flex-row h1.sub-header {
  margin-top: 0px !important;
}
[class^="route-insight-dashboard"] .widget-wrapper section.flex-row button,
[class^="route-loading"] .widget-wrapper section.flex-row button {
  margin-bottom: 40px;
}
[class^="route-insight-dashboard"] .insight-dashboard-actions-wrapper,
[class^="route-loading"] .insight-dashboard-actions-wrapper {
  right: 38px;
}
[class^="route-insight-dashboard"] .insight-dashboard-actions-wrapper .insight-actions.true li,
[class^="route-loading"] .insight-dashboard-actions-wrapper .insight-actions.true li {
  font-family: "neue-helvetica", "Helvetica Neue", Helvetica, sans-serif !important;
}
[class^="route-insight-dashboard"] .widget-add-form,
[class^="route-loading"] .widget-add-form {
  flex-direction: column;
}
[class^="route-insight-dashboard"] .widget-add-form .ix-select,
[class^="route-loading"] .widget-add-form .ix-select,
[class^="route-insight-dashboard"] .widget-add-form input,
[class^="route-loading"] .widget-add-form input,
[class^="route-insight-dashboard"] .widget-add-form textarea,
[class^="route-loading"] .widget-add-form textarea {
  margin-bottom: 15px;
}
[class^="route-insight-dashboard"] .widget-add-form .ui-accordion header,
[class^="route-loading"] .widget-add-form .ui-accordion header {
  padding: 15px;
}
[class^="route-insight-dashboard"] .widget-add-form .ui-accordion header .status-indicator,
[class^="route-loading"] .widget-add-form .ui-accordion header .status-indicator {
  top: 9px;
}
[class^="route-insight-dashboard"] .widget-add-form .ui-accordion h2,
[class^="route-loading"] .widget-add-form .ui-accordion h2 {
  font-size: 15px;
  font-size: 1.5rem;
  color: #757575;
  margin: 0;
}
[class^="route-insight-dashboard"] .widget-add-form .ui-accordion .ui-accordion-content,
[class^="route-loading"] .widget-add-form .ui-accordion .ui-accordion-content {
  padding: 0;
}
[class^="route-insight-dashboard"] .widget-add-form .markdown-preview,
[class^="route-loading"] .widget-add-form .markdown-preview {
  border: 1px solid #cbc8ca;
  border-radius: 3px;
  overflow-y: scroll;
  height: 140px;
  max-height: 140px;
  padding: 15px;
  max-width: 250px;
}
[class^="route-insight-dashboard"] .widget-add-form .markdown-preview h1,
[class^="route-loading"] .widget-add-form .markdown-preview h1,
[class^="route-insight-dashboard"] .widget-add-form .markdown-preview h2,
[class^="route-loading"] .widget-add-form .markdown-preview h2,
[class^="route-insight-dashboard"] .widget-add-form .markdown-preview h3,
[class^="route-loading"] .widget-add-form .markdown-preview h3,
[class^="route-insight-dashboard"] .widget-add-form .markdown-preview h4,
[class^="route-loading"] .widget-add-form .markdown-preview h4,
[class^="route-insight-dashboard"] .widget-add-form .markdown-preview h5,
[class^="route-loading"] .widget-add-form .markdown-preview h5,
[class^="route-insight-dashboard"] .widget-add-form .markdown-preview h6,
[class^="route-loading"] .widget-add-form .markdown-preview h6,
[class^="route-insight-dashboard"] .widget-add-form .markdown-preview p,
[class^="route-loading"] .widget-add-form .markdown-preview p {
  font-family: "neue-helvetica", "Helvetica Neue", Helvetica, sans-serif !important;
  font-weight: 400;
  margin: 0 0 10px 0 !important;
  padding: 0 !important;
  text-align: left;
}
[class^="route-insight-dashboard"] .widget-add-form .markdown-preview p,
[class^="route-loading"] .widget-add-form .markdown-preview p,
[class^="route-insight-dashboard"] .widget-add-form .markdown-preview li,
[class^="route-loading"] .widget-add-form .markdown-preview li {
  line-height: 1.6em;
}
[class^="route-insight-dashboard"] .widget-add-form .markdown-preview ul,
[class^="route-loading"] .widget-add-form .markdown-preview ul {
  font-family: "neue-helvetica", "Helvetica Neue", Helvetica, sans-serif !important;
  text-align: left;
  padding-left: 15px;
  margin-top: 0;
}
[class^="route-insight-dashboard"] .widget-add-form .description-edit,
[class^="route-loading"] .widget-add-form .description-edit {
  background: white;
  border: 1px solid #cbc8ca;
  box-shadow: none;
  margin: 0px;
  width: 100%;
  min-width: 255px;
}
[class^="route-insight-dashboard"] .widget-add-form .inner-label,
[class^="route-loading"] .widget-add-form .inner-label {
  margin: 0 0 15px 0;
  padding: 0;
  position: relative;
}
[class^="route-insight-dashboard"] .widget-add-form .inner-label label,
[class^="route-loading"] .widget-add-form .inner-label label {
  border: 1px solid #cbc8ca;
  border-radius: 3px 0 0 3px;
  border-right: none;
  box-sizing: border-box;
  color: #7a8593;
  font-size: 12px;
  font-size: 1.2rem;
  height: 24px;
  left: 0;
  line-height: 22px;
  line-height: 2.2rem;
  padding-right: 13px;
  position: absolute;
  text-align: right;
  top: 0;
  width: 133px;
}
[class^="route-insight-dashboard"] .widget-add-form .inner-label label::after,
[class^="route-loading"] .widget-add-form .inner-label label::after {
  content: "|";
  position: relative;
  left: 10px;
}
[class^="route-insight-dashboard"] .widget-add-form .inner-label input,
[class^="route-loading"] .widget-add-form .inner-label input,
[class^="route-insight-dashboard"] .widget-add-form .inner-label select,
[class^="route-loading"] .widget-add-form .inner-label select {
  background-color: transparent;
  width: calc(100% - 133px);
  border-left: none;
  margin-left: 133px;
  border-radius: 0 3px 3px 0;
  margin-bottom: 0;
}
[class^="route-insight-dashboard"] .widget-add-form .inner-label.required,
[class^="route-loading"] .widget-add-form .inner-label.required {
  border: solid 1px #ed4651;
  border-radius: 4px;
}
[class^="route-insight-dashboard"] .widget-add-form .inner-label.checkbox label,
[class^="route-loading"] .widget-add-form .inner-label.checkbox label {
  border: none;
}
[class^="route-insight-dashboard"] .widget-add-form .inner-label.checkbox input,
[class^="route-loading"] .widget-add-form .inner-label.checkbox input {
  margin-top: 6px;
  width: 20px;
  margin-left: -300px;
}
[class^="route-insight-dashboard"] .widget-add-form .modal-buttons,
[class^="route-loading"] .widget-add-form .modal-buttons {
  margin-top: 10px;
}
[class^="route-insight-dashboard"] .widget-add-form .modal-buttons .cancel,
[class^="route-loading"] .widget-add-form .modal-buttons .cancel {
  margin-right: 10px;
}
[class^="route-insight-dashboard"] .widget-custom:hover .insight-visualization-wrapper .insight-section-header,
[class^="route-loading"] .widget-custom:hover .insight-visualization-wrapper .insight-section-header {
  opacity: 1;
  transition: 0.3s;
}
[class^="route-insight-dashboard"] .widget-custom.widget-text,
[class^="route-loading"] .widget-custom.widget-text {
  overflow: hidden;
}
[class^="route-insight-dashboard"] .widget-custom.widget-text .text-content,
[class^="route-loading"] .widget-custom.widget-text .text-content {
  overflow: auto;
  max-height: calc(100% - 60px);
  padding: 20px;
}
[class^="route-insight-dashboard"] .widget-custom.widget-text .text-content a,
[class^="route-loading"] .widget-custom.widget-text .text-content a {
  text-decoration: underline;
  color: #4892c7;
}
[class^="route-insight-dashboard"] .widget-custom.widget-text .text-content.innovu-image,
[class^="route-loading"] .widget-custom.widget-text .text-content.innovu-image {
  height: calc(100% - 80px);
  width: calc(100% - 40px);
  overflow: hidden;
}
[class^="route-insight-dashboard"] .widget-custom.widget-text .text-content.innovu-image.hide-header,
[class^="route-loading"] .widget-custom.widget-text .text-content.innovu-image.hide-header {
  height: 100%;
}
[class^="route-insight-dashboard"] .widget-custom.widget-text .text-content img,
[class^="route-loading"] .widget-custom.widget-text .text-content img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
[class^="route-insight-dashboard"] .widget-custom.widget-text .text-content h1,
[class^="route-loading"] .widget-custom.widget-text .text-content h1,
[class^="route-insight-dashboard"] .widget-custom.widget-text .text-content h2,
[class^="route-loading"] .widget-custom.widget-text .text-content h2,
[class^="route-insight-dashboard"] .widget-custom.widget-text .text-content h3,
[class^="route-loading"] .widget-custom.widget-text .text-content h3,
[class^="route-insight-dashboard"] .widget-custom.widget-text .text-content h4,
[class^="route-loading"] .widget-custom.widget-text .text-content h4,
[class^="route-insight-dashboard"] .widget-custom.widget-text .text-content h5,
[class^="route-loading"] .widget-custom.widget-text .text-content h5,
[class^="route-insight-dashboard"] .widget-custom.widget-text .text-content h6,
[class^="route-loading"] .widget-custom.widget-text .text-content h6,
[class^="route-insight-dashboard"] .widget-custom.widget-text .text-content p,
[class^="route-loading"] .widget-custom.widget-text .text-content p {
  font-family: "neue-helvetica", "Helvetica Neue", Helvetica, sans-serif !important;
  font-weight: 400;
  line-height: initial;
  margin: 0 0 10px 0 !important;
  padding: 0 !important;
  text-align: left;
}
[class^="route-insight-dashboard"] .widget-custom.widget-text .text-content h1,
[class^="route-loading"] .widget-custom.widget-text .text-content h1 {
  font-size: 34px;
  font-size: 3.4rem;
  margin-bottom: 20px !important;
}
[class^="route-insight-dashboard"] .widget-custom.widget-text .text-content p,
[class^="route-loading"] .widget-custom.widget-text .text-content p,
[class^="route-insight-dashboard"] .widget-custom.widget-text .text-content li,
[class^="route-loading"] .widget-custom.widget-text .text-content li {
  line-height: 1.6em;
}
[class^="route-insight-dashboard"] .widget-custom.widget-text .text-content ul,
[class^="route-loading"] .widget-custom.widget-text .text-content ul {
  font-family: "neue-helvetica", "Helvetica Neue", Helvetica, sans-serif !important;
  text-align: left;
  padding-left: 15px;
  margin-top: 0;
}
[class^="route-insight-dashboard"] .widget-custom .widget-header-base,
[class^="route-loading"] .widget-custom .widget-header-base {
  padding: 10px 0 5px 10px;
  background-color: white;
}
[class^="route-insight-dashboard"] .widget-custom .widget-header-base .flex-row,
[class^="route-loading"] .widget-custom .widget-header-base .flex-row {
  margin-right: 10px;
}
[class^="route-insight-dashboard"] .widget-custom .widget-header-base .icon-wrapper,
[class^="route-loading"] .widget-custom .widget-header-base .icon-wrapper {
  text-align: right;
  max-width: 13px;
}
[class^="route-insight-dashboard"] .widget-custom .widget-header-base h1,
[class^="route-loading"] .widget-custom .widget-header-base h1 {
  color: #243b5f;
  font-family: "neue-helvetica", "Helvetica Neue", Helvetica, sans-serif !important;
  font-weight: 400;
  display: inline-block;
  line-height: 22px;
  line-height: 2.2rem;
  font-size: 18px;
  font-size: 1.8rem;
  max-width: 100%;
  max-height: 2.5rem;
  overflow: hidden;
  text-align: center;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  white-space: nowrap;
}
[class^="route-insight-dashboard"] .widget-header,
[class^="route-loading"] .widget-header {
  background-color: white;
  margin: -1px;
  padding-bottom: 1px;
}
[class^="route-insight-dashboard"] .widget-header .widget-header-base,
[class^="route-loading"] .widget-header .widget-header-base {
  height: 100% !important;
  padding: 0;
  background-color: transparent;
  border-bottom: none;
}
[class^="route-insight-dashboard"] .widget-header .widget-header-base .flex-row,
[class^="route-loading"] .widget-header .widget-header-base .flex-row {
  padding-left: 10px;
  height: 100%;
  align-items: center;
}
[class^="route-insight-dashboard"] .widget-header .widget-header-base h1,
[class^="route-loading"] .widget-header .widget-header-base h1 {
  font-family: "neue-helvetica", "Helvetica Neue", Helvetica, sans-serif !important;
  font-weight: 300;
  font-size: 28px;
  font-size: 2.8rem;
  padding-top: 8px;
  padding-bottom: 8px;
}
[class^="route-insight-dashboard"] .widget-header-button,
[class^="route-loading"] .widget-header-button {
  cursor: pointer;
}
[class^="route-insight-dashboard"] .widget-header-button div.flex-row,
[class^="route-loading"] .widget-header-button div.flex-row {
  padding: 10px 5px;
}
[class^="route-insight-dashboard"] .widget-header-button .widget-button,
[class^="route-loading"] .widget-header-button .widget-button {
  height: 100%;
}
[class^="route-insight-dashboard"] .widget-header-button .widget-button .flex-row,
[class^="route-loading"] .widget-header-button .widget-button .flex-row {
  height: calc(100% - 20px);
}
[class^="route-insight-dashboard"] .widget-header-button .widget-button a,
[class^="route-loading"] .widget-header-button .widget-button a {
  color: white;
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 22px;
  line-height: 2.2rem;
  text-align: center;
}
[class^="route-insight-dashboard"] .widget-header-button .widget-button .icon-wrapper,
[class^="route-loading"] .widget-header-button .widget-button .icon-wrapper {
  max-width: 18px;
}
[class^="route-insight-dashboard"] .widget-header-button .widget-button .icon-wrapper button span,
[class^="route-loading"] .widget-header-button .widget-button .icon-wrapper button span {
  color: white !important;
}
[class^="route-insight-dashboard"] .widget-header-button.blue,
[class^="route-loading"] .widget-header-button.blue {
  background: #243b5f;
}
[class^="route-insight-dashboard"] .widget-header-button.blue:hover,
[class^="route-loading"] .widget-header-button.blue:hover {
  background: #2b4671;
}
[class^="route-insight-dashboard"] .widget-header-button.red,
[class^="route-loading"] .widget-header-button.red {
  background: #ed4651;
}
[class^="route-insight-dashboard"] .widget-header-button.red:hover,
[class^="route-loading"] .widget-header-button.red:hover {
  background: #ef5d67;
}
[class^="route-insight-dashboard"] .widget-header-button.amber,
[class^="route-loading"] .widget-header-button.amber {
  background: #ff9933;
}
[class^="route-insight-dashboard"] .widget-header-button.amber:hover,
[class^="route-loading"] .widget-header-button.amber:hover {
  background: #ffa64d;
}
[class^="route-insight-dashboard"] .widget-header-button.green,
[class^="route-loading"] .widget-header-button.green {
  background: #18b28b;
}
[class^="route-insight-dashboard"] .widget-header-button.green:hover,
[class^="route-loading"] .widget-header-button.green:hover {
  background: #1bc89d;
}
[class^="route-insight-dashboard"] .layout-button.save,
[class^="route-loading"] .layout-button.save {
  background-color: #18b28b;
}
[class^="route-insight-dashboard"] .layout-button.save.is-saving:before,
[class^="route-loading"] .layout-button.save.is-saving:before {
  color: transparent;
}
[class^="route-insight-dashboard"] .layout-button.cancel,
[class^="route-loading"] .layout-button.cancel {
  margin-right: 10px;
  background-color: #ed4651;
}
[class^="route-insight-dashboard"] .widget-custom,
[class^="route-loading"] .widget-custom {
  height: 100%;
}
[class^="route-insight-dashboard"] .widget-custom .widget-header-base,
[class^="route-loading"] .widget-custom .widget-header-base {
  height: 25px;
}
[class^="route-insight-dashboard"] .widget-custom .widget-header-base.has-org-header,
[class^="route-loading"] .widget-custom .widget-header-base.has-org-header {
  height: 45px;
}
[class^="route-insight-dashboard"] .widget-custom .widget-header-base .widget-org-name,
[class^="route-loading"] .widget-custom .widget-header-base .widget-org-name {
  margin: 3px;
}
[class^="route-insight-dashboard"] .widget-custom .widget-header-base .insight-actions,
[class^="route-loading"] .widget-custom .widget-header-base .insight-actions {
  left: -122px;
}
[class^="route-insight-dashboard"] .widget-custom .widget-header-base h1,
[class^="route-loading"] .widget-custom .widget-header-base h1 {
  margin: 0;
}
[class^="route-insight-dashboard"] .widget-custom .widget-header-base .edit.circle-button span,
[class^="route-loading"] .widget-custom .widget-header-base .edit.circle-button span {
  font-size: 15px !important;
  font-size: 1.5rem !important;
}
[class^="route-insight-dashboard"] .widget-custom .widget-header-base .insight-dashboard-actions-wrapper,
[class^="route-loading"] .widget-custom .widget-header-base .insight-dashboard-actions-wrapper {
  margin-left: 5px;
  margin-top: -9px;
}
[class^="route-insight-dashboard"] .widget-custom .widget-header-base.hidden-header,
[class^="route-loading"] .widget-custom .widget-header-base.hidden-header {
  height: 0px;
  padding: 0 0 0 10px;
}
[class^="route-insight-dashboard"] .widget-custom .widget-header-base.hidden-header .icon-wrapper,
[class^="route-loading"] .widget-custom .widget-header-base.hidden-header .icon-wrapper {
  margin-top: 10px;
  z-index: 100;
}
[class^="route-insight-dashboard"] .widget-custom .widget-content,
[class^="route-loading"] .widget-custom .widget-content {
  height: calc(100% - 40px);
  overflow: auto;
}
[class^="route-insight-dashboard"] .widget-custom .widget-content.has-org,
[class^="route-loading"] .widget-custom .widget-content.has-org {
  height: calc(100% - 60px);
}
[class^="route-insight-dashboard"] .widget-custom .widget-content .hidden,
[class^="route-loading"] .widget-custom .widget-content .hidden {
  display: none !important;
}
[class^="route-insight-dashboard"] .widget-custom .widget-content .highcharts-no-data,
[class^="route-loading"] .widget-custom .widget-content .highcharts-no-data {
  color: #243b5f;
  font-family: "neue-helvetica", "Helvetica Neue", Helvetica, sans-serif !important;
  font-weight: 300;
  font-size: 30px;
  font-size: 3rem;
}
[class^="route-insight-dashboard"] .widget-custom .widget-content section div.flex-row:nth-child(3),
[class^="route-loading"] .widget-custom .widget-content section div.flex-row:nth-child(3) {
  height: 23px;
  position: absolute;
  top: 5px;
  right: 10px;
}
[class^="route-insight-dashboard"] .widget-custom .widget-content section .hidden-options,
[class^="route-loading"] .widget-custom .widget-content section .hidden-options {
  display: none;
}
[class^="route-insight-dashboard"] .widget-custom .widget-content .error-wrap,
[class^="route-loading"] .widget-custom .widget-content .error-wrap {
  height: 100%;
}
[class^="route-insight-dashboard"] .widget-custom .widget-content h1.error,
[class^="route-loading"] .widget-custom .widget-content h1.error,
[class^="route-insight-dashboard"] .widget-custom .widget-content h1.single-value,
[class^="route-loading"] .widget-custom .widget-content h1.single-value {
  font-weight: 300;
  line-height: 35px;
  line-height: 3.5rem;
  max-width: 525px;
  margin: 0 auto;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
[class^="route-insight-dashboard"] .widget-custom .widget-content h2.warning,
[class^="route-loading"] .widget-custom .widget-content h2.warning {
  font-weight: 300;
  font-size: 1.2em;
}
[class^="route-insight-dashboard"] .widget-custom.short-widget .spinner,
[class^="route-loading"] .widget-custom.short-widget .spinner {
  width: 30px;
  height: 30px;
  margin-top: 0;
}
[class^="route-insight-dashboard"] .widget-custom.widget-value .widget-content .error-wrap h1.error,
[class^="route-loading"] .widget-custom.widget-value .widget-content .error-wrap h1.error {
  font-size: 20px;
  font-size: 2rem;
  line-height: 25px;
  line-height: 2.5rem;
  margin: 0 8px;
}
[class^="route-insight-dashboard"] .widget-custom.widget-value .widget-content,
[class^="route-loading"] .widget-custom.widget-value .widget-content {
  overflow: hidden;
}
[class^="route-insight-dashboard"] .widget-custom.widget-insight.hidden-header .widget-content,
[class^="route-loading"] .widget-custom.widget-insight.hidden-header .widget-content {
  height: 100%;
}
[class^="route-insight-dashboard"] .widget-custom.widget-insight.hidden-header .widget-content .chart-actions,
[class^="route-loading"] .widget-custom.widget-insight.hidden-header .widget-content .chart-actions {
  margin-right: 20px;
}
[class^="route-insight-dashboard"] .widget-custom.widget-insight.hidden-header .widget-header-base.hidden-header .icon-wrapper,
[class^="route-loading"] .widget-custom.widget-insight.hidden-header .widget-header-base.hidden-header .icon-wrapper {
  margin-top: 6px;
}
[class^="route-insight-dashboard"] main.main-content .page-content,
[class^="route-loading"] main.main-content .page-content {
  scroll-behavior: smooth;
}
[class^="route-insight-dashboard"] main.main-content .page-content .main-container.editing .insight-visualization-wrapper,
[class^="route-loading"] main.main-content .page-content .main-container.editing .insight-visualization-wrapper {
  pointer-events: none;
}
[class^="route-insight-dashboard"] main.main-content .page-content .main-container.web-view .widget-comparative .widget-content section,
[class^="route-loading"] main.main-content .page-content .main-container.web-view .widget-comparative .widget-content section {
  margin-top: 5px;
}
[class^="route-insight-dashboard"] main.main-content .page-content .main-container.web-view .widget-content .insight-section-header,
[class^="route-loading"] main.main-content .page-content .main-container.web-view .widget-content .insight-section-header {
  display: block;
}
[class^="route-insight-dashboard"] main.main-content .page-content .main-container.web-view .widget-content section,
[class^="route-loading"] main.main-content .page-content .main-container.web-view .widget-content section {
  height: calc(100% - 37px);
}
[class^="route-insight-dashboard"] main.main-content .page-content .widget-value .widget-content section,
[class^="route-loading"] main.main-content .page-content .widget-value .widget-content section {
  height: calc(100% - 5px);
}
[class^="route-insight-dashboard"] main.main-content .page-content .widget-value .widget-content .insight-visualization-wrapper section,
[class^="route-loading"] main.main-content .page-content .widget-value .widget-content .insight-visualization-wrapper section {
  height: calc(100% - 15px);
}
[class^="route-insight-dashboard"] main.main-content .page-content .widget-comparative .widget-content section,
[class^="route-loading"] main.main-content .page-content .widget-comparative .widget-content section {
  margin-top: 30px;
  height: calc(100% - 37px);
}
[class^="route-insight-dashboard"] main.main-content .page-content .widget-content .insight-section-header,
[class^="route-loading"] main.main-content .page-content .widget-content .insight-section-header {
  display: none;
}
[class^="route-insight-dashboard"] main.main-content .page-content .widget-content section,
[class^="route-loading"] main.main-content .page-content .widget-content section {
  margin: 0px;
  border: none;
  margin-top: 5px;
  padding: 0 10px 0;
  width: calc(100% - 10px);
  height: calc(100% - 7px);
}
[class^="route-insight-dashboard"] main.main-content .page-content .widget-content section .visualization-chart,
[class^="route-loading"] main.main-content .page-content .widget-content section .visualization-chart {
  height: 100%;
}
[class^="route-insight-dashboard"] main.main-content .page-content .widget-content section .map,
[class^="route-loading"] main.main-content .page-content .widget-content section .map {
  height: 100%;
}
[class^="route-insight-dashboard"] main.main-content .page-content .widget-content section .map > div,
[class^="route-loading"] main.main-content .page-content .widget-content section .map > div {
  height: 100%;
}
[class^="route-insight-dashboard"] main.main-content .page-content section,
[class^="route-loading"] main.main-content .page-content section {
  padding: 0;
}
[class^="route-insight-dashboard"] .widget-table .insight-visualization-wrapper,
[class^="route-loading"] .widget-table .insight-visualization-wrapper {
  overflow: auto;
}
[class^="route-insight-dashboard"] .insight-visualization-wrapper,
[class^="route-loading"] .insight-visualization-wrapper {
  height: 100%;
  padding-top: 0px;
  overflow: auto;
}
[class^="route-insight-dashboard"] .insight-visualization-wrapper .insight-section-header,
[class^="route-loading"] .insight-visualization-wrapper .insight-section-header {
  background-color: #f8f8f8;
  border: 1px solid #e2e2e2;
  border-right: 1px solid #d9d9d9;
  border-left: 1px solid #d9d9d9;
  text-align: center;
  opacity: 0;
  transition: 0.3s;
}
[class^="route-insight-dashboard"] .insight-visualization-wrapper .insight-section-header span,
[class^="route-loading"] .insight-visualization-wrapper .insight-section-header span {
  color: #243b5f;
}
[class^="route-insight-dashboard"] .chart-loading-indicator .spinner,
[class^="route-loading"] .chart-loading-indicator .spinner {
  top: 50px;
}
.route-insight-dashboard-index .chart-loading-indicator .spinner {
  top: 150px;
}
.route-insight-dashboard-index .insights-header.content-header {
  align-items: center;
}
.route-insight-dashboard-index .insights-header.content-header .advanced-insight-search-controls button {
  margin-top: 0;
}
.route-insight-dashboard-view-index .edit-loading {
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  background: rgba(255, 255, 255, 0.5);
  z-index: 1;
}
.route-insight-dashboard-view-index .edit-loading .chart-loading-indicator {
  position: relative;
  top: calc(50% - 35px);
}
.route-insight-dashboard-view-index .ember-power-select-dropdown.insight-selector,
.route-insight-dashboard-view-index .ember-power-select-dropdown.client-select-dropdown {
  z-index: 10000;
  border-color: #cbc8ca;
  color: #6c7280;
  box-shadow: 0px 3px 4px 1px rgba(0, 0, 0, 0.1);
  font-size: 12px;
  font-size: 1.2rem;
}
.route-insight-dashboard-view-index div.modal-scroll-container > form.widget-add-form > p > div > div.ember-power-select-trigger,
.route-insight-dashboard-view-index div.modal-scroll-container > form.widget-add-form .inner-label > div div.ember-power-select-trigger {
  color: #6c7280;
  text-align: left;
  border: 1px solid #cbc8ca;
  border-left: none;
  line-height: 0;
  border-radius: 0 3px 3px 0;
  margin-left: 128px;
  min-height: 22px;
}
.route-insight-dashboard-view-index div.modal-scroll-container > form.widget-add-form > p > div > div.ember-power-select-trigger[aria-expanded="true"],
.route-insight-dashboard-view-index div.modal-scroll-container > form.widget-add-form .inner-label > div div.ember-power-select-trigger[aria-expanded="true"] {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.route-insight-dashboard-view-index div.modal-scroll-container > form.widget-add-form > p > div > div.ember-power-select-trigger span.ember-power-select-selected-item,
.route-insight-dashboard-view-index div.modal-scroll-container > form.widget-add-form .inner-label > div div.ember-power-select-trigger span.ember-power-select-selected-item {
  margin-left: 13px;
  font-size: 12px;
  font-size: 1.2rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  line-height: 22px;
}
.route-insight-dashboard-view-index div.modal-scroll-container > form.widget-add-form > p > div > div.ember-power-select-trigger span.ember-power-select-status-icon,
.route-insight-dashboard-view-index div.modal-scroll-container > form.widget-add-form .inner-label > div div.ember-power-select-trigger span.ember-power-select-status-icon {
  right: 10px;
  border-color: #2e8b9d transparent transparent transparent;
  border-width: 7px 5px 0 5px;
}
.route-insight-dashboard-view-index main.main-content .ui-header h1 {
  max-width: 50%;
}
.route-insight-dashboard-view-index main.main-content .ui-header .content-header-title.editing h1 {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  max-width: 100%;
}
.route-insight-dashboard-view-index main.main-content .ui-header .insight-dashboard-options {
  margin-left: 5px;
}
.route-insight-dashboard-view-index main.main-content .ui-header .insight-dashboard-controls .insight-dashboard-selector {
  margin-left: 10px;
}
.route-insight-dashboard-view-index main.main-content .ui-header .insight-dashboard-controls .insight-dashboard-selector > .ember-basic-dropdown-trigger.ember-power-select-trigger > span.ember-power-select-selected-item {
  margin: 0 3px 0 8px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 13px;
  font-size: 1.3rem;
}
.route-insight-dashboard-view-index main.main-content .ui-header .insight-dashboard-controls .insight-dashboard-selector > .ember-basic-dropdown-trigger.ember-power-select-trigger > span.ember-power-select-status-icon {
  margin: auto;
  right: 10px;
  border-color: #2e8b9d transparent transparent transparent;
  border-width: 7px 5px 0 5px;
}
.route-insight-dashboard-view-index .ember-power-select-search {
  padding: 8px 8px 3px;
}
.route-insight-dashboard-view-index .ember-power-select-search input {
  padding-left: 4px;
  width: 100%;
  border-radius: 3px;
  height: 24px;
  background-size: auto 16px;
}
@media only screen and (max-width: 1500px) {
  .route-insight-dashboard-view-index main.main-content .ui-header h1 {
    max-width: 44%;
  }
}
ul.insight-table-list {
  position: relative;
}
main.main-content .page-content .insight-content-wrapper.filter-section section {
  overflow: visible;
}
.insights .insight-table table td {
  padding: 6px 20px;
}
.insight-table {
  max-height: 550px;
  min-height: 250px;
}
.insight-table thead {
  position: sticky !important;
}
.insight-table .ember-table-overflow {
  min-height: inherit;
  overflow: visible !important;
}
.insight-table.is-pivoted {
  min-height: 320px;
}
.insight-table.is-pivoted table thead tr:nth-of-type(1) .dimension {
  background: #3b77a3;
}
.insight-table table {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  border-top: 1px solid #ababab;
  border-bottom: 1px solid #ababab;
}
.insight-table table th:first-child,
.insight-table table td:first-child {
  border-left: 1px solid #ababab;
}
.insight-table table td.calculated,
.insight-table table td.measure {
  text-align: right;
}
.insight-table table th.row-number,
.insight-table table td.row-number,
.insight-table table td.is-first-column,
.insight-table table th.is-first-column {
  font-size: 10px;
  padding: 5px 0px;
  text-align: center;
  width: 28px !important;
  max-width: 28px !important;
  min-width: 28px !important;
}
.insight-table table th.top-header-column {
  padding: 0px;
  border: none;
  height: 0px;
  line-height: 0px;
}
.insight-table table th.top-header-column .cell-content {
  display: none;
}
.insight-table table td.is-error {
  color: #ed4651;
}
.insight-table table td {
  box-sizing: border-box;
  border-right: 1px solid #ababab;
  color: #555555;
  padding: 5px 10px;
}
.insight-table table td.advisorlens-feature,
.insight-table table td.employerlens-feature,
.insight-table table td.deprecated {
  opacity: 0.6;
  pointer-events: none;
}
.insight-table table td.advisorlens-feature.dimension:hover,
.insight-table table td.employerlens-feature.dimension:hover,
.insight-table table td.deprecated.dimension:hover {
  cursor: default;
  text-decoration: none;
}
.insight-table table td.dimension:not(.row-number):hover .menu-handle {
  cursor: pointer;
  text-decoration: underline;
}
.insight-table table tr.stripe-light td.dimension {
  background: #d8e6f1;
}
.insight-table table tr.stripe-light td.measure {
  background: #cde7e2;
}
.insight-table table tr.stripe-light td.calculated {
  background: #e0e1f0;
}
.insight-table table tr.stripe-dark td.dimension {
  background: #ffffff;
}
.insight-table table tr.stripe-dark td.measure {
  background: #ffffff;
}
.insight-table table tr.stripe-dark td.calculated {
  background: #ffffff;
}
.insight-table table tr.total-row,
.insight-table table tr.grand-total-row {
  background-color: #3b77a3 !important;
  border-top: 1px solid #ababab;
}
.insight-table table tr.total-row td,
.insight-table table tr.grand-total-row td {
  color: #ffffff;
  font-weight: bold;
  background: transparent !important;
  border-right: 1px solid #fff;
}
.insight-table table tr.total-row td:nth-child(2):after {
  content: "Total";
}
.insight-table table tr.grand-total-row td:nth-child(2):after {
  content: "Grand Total";
}
.insight-table table th {
  box-sizing: border-box;
  color: #fff;
  border-right: 1px solid #fff;
  z-index: 0;
  overflow: visible;
  padding: 7px 5px 7px 10px;
  border-top: none;
}
.insight-table table th.active-cell {
  z-index: 1;
}
.insight-table table th.dimension {
  overflow: visible;
  background: #4891c6;
}
.insight-table table th.dimension .tooltip:after {
  border-top-color: #ecebeb;
}
.insight-table table th.measure {
  overflow: visible;
  background: #3db39e;
}
.insight-table table th.measure .tooltip:after {
  border-top-color: #ecebeb;
}
.insight-table table th.measure .insight-options .insight-actions {
  left: -173px;
  width: 200px;
}
.insight-table table th.calculated {
  background: #5e70b5;
}
.insight-table table th.empty {
  background: transparent;
}
.insight-table table th .column-header-container {
  position: relative;
  width: calc(100% - 32px);
}
.insight-table table th .column-header-container:hover .tooltip {
  display: block;
}
.insight-table table th .column-name {
  display: inline-block;
  max-width: 100%;
}
.insight-table table th .tooltip {
  display: none;
  position: absolute;
  background: #ecebeb;
  color: #555555;
  border: 1px solid #ababab;
  font-weight: 400;
  top: 115%;
  padding: 5px;
  border-radius: 3px;
  z-index: 10;
}
.insight-table table th .tooltip:after,
.insight-table table th .tooltip:before {
  top: -10px;
  left: 20px;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
}
.insight-table table th .tooltip:after {
  border-color: rgba(136, 183, 213, 0);
  border-top-color: #3db39e;
  border-width: 5px;
  margin-left: -5px;
}
.insight-table table th .tooltip:before {
  border-color: rgba(194, 225, 245, 0);
  border-top-color: #ababab;
  border-width: 6px;
  margin-left: -6px;
  margin-top: -2px;
}
.insight-table table th:hover {
  cursor: move;
}
.insight-table table th:active .tooltip,
.insight-table table th .insight-options .tooltip {
  display: none;
}
.insight-table table th .insight-options .standard-button {
  height: initial;
  line-height: inherit;
  background: transparent;
  font-size: 15px;
  font-size: 1.5rem;
  padding: 0;
  color: #fff;
  transition: 0.2s;
}
.insight-table table th .insight-options .standard-button:hover {
  color: white;
  transition: 0.2s;
}
.insight-table table th .insight-options .insight-dashboard-actions-wrapper {
  display: inline-block;
  height: 0;
  margin-top: 20px;
  right: inherit;
}
.insight-table table th .insight-options .insight-actions {
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
  width: 180px;
  left: -172px;
  top: -21px;
  overflow: scroll;
  padding: 5px 0;
  border-radius: 0;
  max-height: 210px;
}
.insight-table table th .insight-options .insight-actions li {
  font-weight: 400;
  border-bottom: none;
  color: #555555;
}
.insight-table table th .insight-options .insight-actions li span {
  vertical-align: inherit;
}
.insight-table table th .insight-options .insight-actions li .format-arrow {
  font-size: 0.9rem;
  float: right;
  cursor: pointer;
  transition: 0.3s;
  margin-top: 3px;
}
.insight-table table th .insight-options .insight-actions li .format-arrow.open {
  transition: 0.3s;
  -ms-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.insight-table table th .insight-options .insight-actions li.formatting-option {
  background: #f5f5f5;
}
.insight-table table th .insight-options .insight-actions li.formatting-option.header {
  border-bottom: 1px solid #e1e1e1;
}
.insight-table table th .insight-options .insight-actions li.formatting-option.sub-item {
  padding-left: 30px;
}
.insight-table table th .insight-options .insight-actions li.formatting-option.sub-item.selected:before {
  content: "\2713";
}
.insight-table table th .insight-options .insight-actions li.formatting-option.sub-item.selected {
  font-weight: bold;
}
.insight-table table th .insight-options .insight-actions li.formatting-option:hover {
  background: white;
  border-bottom: 1px solid #f5f5f5;
}
.insight-table table th .insight-options .insight-actions li.dotted-line-option.selected {
  font-weight: bold;
}
.insight-table table th .flex-justify {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.insight-table table .aliasContainer {
  display: flex;
  align-items: center;
}
.insight-table table .aliasContainer .aliasInput {
  margin-right: 3px;
  flex: 2;
}
.insight-table table .aliasContainer .columnAlias {
  width: 100%;
}
.insight-table table .aliasContainer .aliasButtons {
  min-width: 38px;
}
.insight-table table .aliasContainer .aliasButtons button {
  transition: 0.5s;
}
.insight-table table .aliasContainer .aliasButtons button:hover {
  opacity: 0.7;
}
.insight-table table .aliasContainer .aliasButtons button:last-child {
  background: #ed4651;
}
.insight-table.is-pivoted tr:nth-child(2) th {
  border-top: 1px solid #fff;
}
.insight-table th:nth-child(2) .insight-options .insight-actions {
  left: -125px;
}
.insight-table .et-header-resize-area {
  display: none;
}
.insight-table .et-reorder-main-indicator {
  position: absolute;
  background: #404d5e;
  opacity: 0.75;
  z-index: 10;
}
.insight-table .et-reorder-main-indicator th {
  color: white;
  line-height: 18px;
  padding: 7px 10px;
  max-height: 32px;
}
.insight-table .et-reorder-main-indicator th .tooltip,
.insight-table .et-reorder-main-indicator th .insight-options {
  display: none;
}
.insight-table .et-reorder-drop-indicator {
  position: absolute;
  box-sizing: border-box;
  border-right: 2px solid #555555;
  z-index: 10;
  height: 75px;
}
.insight-table .et-reorder-drop-indicator:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #555555;
  bottom: -6px;
  right: -7px;
}
.insight-table.is-reordering * {
  user-select: none;
}
.insight-table .fa-eye-slash {
  width: 14px;
  margin-right: 3px;
}
.insight-table.is-pivoted table thead tr:first-child th:nth-child(2) {
  z-index: 10;
}
main.main-content header.insights-header.content-header {
  z-index: unset;
}
main.main-content header.insights-header.content-header.has-banner {
  position: relative;
  padding: 31px 35px 0px 18px;
}
main.main-content header.insights-header.content-header.has-banner .edit-banner {
  background: #ff9933;
  box-sizing: border-box;
  left: 0;
  padding: 5px 34px;
  position: absolute;
  top: 0;
  width: 100%;
}
main.main-content header.insights-header.content-header.has-banner .edit-banner p,
main.main-content header.insights-header.content-header.has-banner .edit-banner button {
  margin: 0;
}
main.main-content header.insights-header.content-header.has-banner .edit-banner button {
  max-width: 80px;
  margin-left: 10px;
}
main.main-content header.insights-header.content-header.has-banner > div {
  position: initial;
}
main.main-content header.insights-header.content-header .action-items {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}
main.main-content header.insights-header.content-header .action-items .insight-options .insight-actions {
  width: 170px;
}
main.main-content header.insights-header.content-header .action-items .wide-options .insight-actions {
  width: 185px;
}
main.main-content header.insights-header.content-header h1 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  padding-bottom: 5px;
  max-height: 66px;
}
main.main-content header.insights-header.content-header .insight-table-header {
  height: 40px;
  min-width: 355px;
  margin-right: 0;
}
main.main-content header.insights-header.content-header .insight-table-header .validation-wrapper .message {
  display: none;
}
main.main-content header.insights-header.content-header .insight-table-header .validation-wrapper.has-error:hover .message {
  color: #202c47;
  border-radius: 3px;
  display: block;
  font-weight: normal;
  position: absolute;
  margin: -25px 0 0 -10px;
  background: #ed4651;
  padding: 5px;
  font-size: 13px;
  font-size: 1.3rem;
  z-index: 1001;
}
main.main-content header.insights-header.content-header .insight-table-header .validation-wrapper.has-error:hover .message:after {
  top: 100%;
  left: 60%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(237, 70, 81, 0);
  border-top-color: #ed4651;
  border-width: 6px;
  margin-left: -6px;
}
main.main-content header.insights-header.content-header .insight-table-header .validation-wrapper.has-error input {
  background: #f8babe;
}
main.main-content header.insights-header.content-header .insight-table-header .standard-button.large,
main.main-content header.insights-header.content-header .insight-table-header .validation-wrapper {
  max-width: 115px;
  min-width: 115px;
  margin-left: 0;
}
main.main-content header.insights-header.content-header .insight-table-header .action-items {
  max-width: 105px;
  min-width: 105px;
  margin-right: 0;
}
main.main-content header.insights-header.content-header .insight-table-header .action-items > * {
  margin-top: 8px;
}
main.main-content header.insights-header.content-header .insight-table-header .save-warning {
  max-width: 27px;
  min-width: 27px;
}
main.main-content header.insights-header.content-header .insight-table-header .cog-options {
  margin-left: 5px;
}
main.main-content header.insights-header.content-header .insight-table-header .insight-indicator {
  display: none;
}
main.main-content header.insights-header.content-header .insight-table-header.unsaved-changes .insight-indicator {
  display: block;
  margin-right: 8px;
}
main.main-content header.insights-header.content-header .insight-table-header.unsaved-changes .insight-indicator .unsaved {
  min-width: 205px;
}
main.main-content header.insights-header.content-header > div {
  position: relative;
}
main.main-content header.insights-header.content-header > div > *,
main.main-content header.insights-header.content-header > div div.validation-wrapper > * {
  float: left;
}
main.main-content header.insights-header.content-header > div div.validation-wrapper {
  margin: 0 0 0 15px;
}
main.main-content header.insights-header.content-header > div label {
  text-transform: uppercase;
}
main.main-content header.insights-header.content-header > div input[type="number"] {
  width: 42px;
  height: 24px;
  margin: 8px 0 0 5px;
  padding: 0 7px;
  border-radius: 3px;
  background: #fff;
  font-size: 11px;
  font-size: 1.1rem;
}
main.main-content header.insights-header.content-header > div button {
  margin: 0 0 0 10px;
}
main.main-content header.insights-header.content-header > div button.large {
  margin: 0 0 0 10px;
}
main.main-content header.insights-header.content-header > div button .tooltip {
  border-radius: 3px;
  color: white;
  display: none;
  margin-left: -350px;
  margin-top: 0;
  position: absolute;
  width: 300px;
}
main.main-content header.insights-header.content-header > div button.run:hover .tooltip {
  display: block;
}
main.main-content header.insights-header.content-header > div button .tooltip:after {
  left: 100%;
  top: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(136, 183, 213, 0);
  border-left-color: #888888;
  border-width: 5px;
  margin-top: -5px;
}
main.main-content header.insights-header.content-header > div button.changes .tooltip {
  background: #18b28b;
}
main.main-content header.insights-header.content-header > div button.changes .tooltip:after {
  border-left-color: #18b28b;
}
main.main-content header.insights-header.content-header > div button.no-changes .tooltip {
  background: #888888;
}
div.page-content.insights.meta-data aside ul .collapse-button {
  right: 3%;
}
div.page-content.insights.meta-data aside ul button.category-label {
  background-position: 98% 10px;
}
div.page-content.insights.meta-data aside ul button.category-label.active {
  background-position: 98% 12px;
}
div.page-content.insights aside {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  position: relative;
  width: 324px;
  max-width: 324px;
  border-right: 1px solid #e6e6e6;
  transition: 0.2s;
}
div.page-content.insights aside.hidden {
  margin-left: -325px;
  overflow: visible;
}
div.page-content.insights aside.hidden header > button {
  right: -21px;
  background-image: url("/assets/img/carat-right-4892c7.svg");
}
div.page-content.insights aside header {
  position: relative;
  float: left;
}
div.page-content.insights aside header > button {
  position: absolute;
  border-radius: 0;
  top: -1px;
  right: -1px;
  display: block;
  width: 0;
  height: 0;
  padding: 19px 0 0 19px;
  overflow: hidden;
  border: 1px solid #e6e6e6;
  background-color: #f7f6f8;
  background-repeat: no-repeat;
  background-size: 7px 9px;
  background-position: 6px 5px;
  background-image: url("/assets/img/carat-left-4892c7.svg");
  z-index: 100;
}
div.page-content.insights aside header h1 {
  float: left;
  margin: 17px 20px 14px;
  font-family: "neue-helvetica-condensed", "Helvetica Neue", Helvetica, sans-serif !important;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 18px;
  line-height: 1.8rem;
  font-weight: 400;
  color: #222c48;
}
div.page-content.insights aside header .cpt-copyright {
  position: absolute;
  left: 20px;
  top: 24px;
  font-size: 8px;
  font-size: 0.8rem;
  cursor: pointer;
}
div.page-content.insights aside header .cpt-copyright + h1 {
  margin-bottom: 20px;
}
div.page-content.insights aside header input[type="search"] {
  width: calc(100% - 40px);
  height: 28px;
  margin: 0 20px;
  padding: 0 8px 0 30px;
  background: #fff url("/assets/img/icon-search.svg") no-repeat 8px 5px;
  background-size: auto 16px;
  font-size: 13px;
  font-size: 1.3rem;
}
div.page-content.insights aside header .clear-search {
  color: #243b5f;
  cursor: pointer;
  display: block;
  height: 12px;
  opacity: 0;
  margin-top: -20px;
  pointer-events: none;
  position: absolute;
  right: 30px;
  transition: 0.3s;
  width: 12px;
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 9px;
  line-height: 0.9rem;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  font-weight: 700;
}
div.page-content.insights aside header .clear-search.visible {
  pointer-events: all;
  opacity: 1;
}
div.page-content.insights aside header > div {
  float: left;
  clear: both;
  margin: 10px 20px 21px;
}
div.page-content.insights aside header > div button {
  float: left;
  display: block;
  height: 20px;
  width: 95px;
  font-size: 11px;
  font-size: 1.1rem;
  border: 1px solid #cbc8ca;
  background: #f9f7f8;
  color: #8a8a8a;
}
div.page-content.insights aside header > div button:hover {
  background: #dddbde;
}
div.page-content.insights aside header > div button.active {
  background: #404d5e;
  border-color: #243b5f;
  color: #fff;
}
div.page-content.insights aside header > div button:nth-child(1) {
  border-radius: 3px 0 0 3px;
}
div.page-content.insights aside header > div button:nth-child(2) {
  width: 94px;
  border-left: none;
  border-right: none;
  border-radius: 0;
}
div.page-content.insights aside header > div button:nth-child(2).active {
  width: 96px;
  margin: 0 0 0 -1px;
}
div.page-content.insights aside header > div button:nth-child(2).active + button {
  border-left: none;
  width: 94px;
}
div.page-content.insights aside header > div button:nth-child(3) {
  border-radius: 0 3px 3px 0;
}
div.page-content.insights aside ul {
  list-style: outside none none;
  margin: 0;
  padding: 0;
}
div.page-content.insights aside ul li {
  position: relative;
}
div.page-content.insights aside ul li.closed-subcategory {
  overflow: hidden;
}
div.page-content.insights aside ul li.open-subcategory {
  overflow: visible;
}
div.page-content.insights aside ul li.is-active > .standard-button,
div.page-content.insights aside ul li:hover > .standard-button {
  display: inline-block;
  position: absolute;
}
div.page-content.insights aside ul li.is-active > .standard-button [data-id="button"],
div.page-content.insights aside ul li:hover > .standard-button [data-id="button"] {
  display: none;
}
div.page-content.insights aside ul li.is-active > .standard-button.filter,
div.page-content.insights aside ul li:hover > .standard-button.filter {
  right: 10px;
}
div.page-content.insights aside ul li.is-active > .standard-button.filter span.fa,
div.page-content.insights aside ul li:hover > .standard-button.filter span.fa {
  padding-bottom: 2px;
}
div.page-content.insights aside ul li.is-active > .standard-button.filter .tooltip,
div.page-content.insights aside ul li:hover > .standard-button.filter .tooltip {
  margin-left: -33px;
}
div.page-content.insights aside ul li.is-active > .standard-button.filter .tooltip:after,
div.page-content.insights aside ul li:hover > .standard-button.filter .tooltip:after {
  left: 74%;
}
div.page-content.insights aside ul li.is-active > .standard-button.count,
div.page-content.insights aside ul li:hover > .standard-button.count {
  right: 33px;
}
div.page-content.insights aside ul li.is-active > .standard-button:hover .tooltip,
div.page-content.insights aside ul li:hover > .standard-button:hover .tooltip {
  display: block;
}
div.page-content.insights aside ul li > .info {
  opacity: 0.5;
  position: absolute;
  left: 14px;
}
div.page-content.insights aside ul li > .info.fa-exclamation-triangle {
  opacity: 1;
  color: #ff9933;
}
div.page-content.insights aside ul li > .info.fa-exclamation-triangle[data-field-tooltip]:hover:after {
  border: solid 1px #fab26b;
  background: #fff;
}
div.page-content.insights aside ul li > .info[data-field-tooltip]:hover:after {
  z-index: 10;
  content: attr(data-field-tooltip);
  top: 2px;
  left: 0;
  width: 100%;
  display: block;
  text-align: left;
  border-radius: 5px;
  border: solid 1px #cecece;
  position: relative;
  max-width: calc(220px - 10px);
  color: #555555;
  padding: 5px;
  background: #e2e2e2;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.3);
  font-family: sans-serif;
  font-size: 11px;
  font-size: 1.1rem;
}
div.page-content.insights aside ul li:hover > .info {
  opacity: 1;
}
div.page-content.insights aside ul li.locked:hover > .tooltip.row.locked {
  background: #555555;
  color: #f8f8f8;
  display: block;
  margin-left: -25px;
  text-align: center;
  width: 150px;
  bottom: 25px;
}
div.page-content.insights aside ul li.locked:hover > .tooltip.row.locked:after {
  border-top-color: #555555;
  left: 12px;
}
div.page-content.insights aside ul li .tooltip {
  background: #243b5f;
  border-radius: 3px;
  color: white;
  display: none;
  margin-top: -30px;
  margin-left: -20px;
  position: absolute;
  width: 42px;
  padding: 3px 5px;
}
div.page-content.insights aside ul li .tooltip:after {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(36, 59, 95, 0);
  border-top-color: #243b5f;
  border-width: 5px;
  margin-left: -5px;
}
div.page-content.insights aside ul > li:first-child > ul > li.locked:hover:nth-child(-n + 2) > .tooltip.row.locked {
  max-width: 303px;
  min-width: 150px;
  width: unset;
}
div.page-content.insights aside ul > li:first-child > ul > li.locked:hover:first-child > .tooltip.row.locked {
  max-height: 42px;
}
div.page-content.insights aside ul > li:first-child > ul > li.locked:hover:nth-child(2) > .tooltip.row.locked {
  max-height: 63px;
}
div.page-content.insights aside ul .standard-button.small {
  display: none;
}
div.page-content.insights aside ul .standard-button.small:hover {
  display: inline-block;
}
div.page-content.insights aside ul.field-list li {
  box-sizing: border-box;
  width: 100%;
  padding: 3px 20px 4px 34px;
  color: #555555;
}
div.page-content.insights aside ul.field-list li.measure-subcategory {
  padding: 0;
}
div.page-content.insights aside ul.field-list li.measure-subcategory .field-list {
  background: #deefec;
  border-bottom: 1px solid #cde7e2;
}
div.page-content.insights aside ul.field-list li.measure-subcategory .field-list li:hover,
div.page-content.insights aside ul.field-list li.measure-subcategory .field-list li.is-active {
  background: #cde7e2;
}
div.page-content.insights aside ul.field-list li.measure-subcategory button.source-label {
  background-color: inherit;
}
div.page-content.insights aside ul.field-list li.measure-subcategory button.source-label.active {
  background-color: #cde7e2;
}
div.page-content.insights aside ul.field-list li.measure-subcategory button.source-label:hover {
  background-color: #cde7e2;
}
div.page-content.insights aside ul.field-list li button.standard-button.filter {
  position: absolute;
  right: 10px;
}
div.page-content.insights aside ul.field-list li button.standard-button.subpopulation-filter {
  position: absolute;
  right: 57px;
  padding: 0 6px;
}
div.page-content.insights aside ul.field-list li button.standard-button.subpopulation-filter .tooltip {
  width: 88px;
  margin-left: -46px;
}
div.page-content.insights aside ul.field-list li button.standard-button.subpopulation-filter.has-subpop {
  background: #798ca4;
}
div.page-content.insights aside ul.field-list li button.standard-button.subpopulation-filter.has-subpop::before {
  content: "";
  width: 25px;
  height: 1px;
  background: white;
  position: absolute;
  z-index: 5;
  left: -4px;
  top: 7px;
  transform: rotate(40deg);
}
div.page-content.insights aside ul.field-list li button.standard-button.subpopulation-filter.has-subpop .fa {
  color: #e4e7ec;
}
div.page-content.insights aside ul.field-list li:hover {
  cursor: pointer;
}
div.page-content.insights aside ul.field-list li.is-active {
  padding-right: 60px;
}
div.page-content.insights aside ul.field-list li.hidden {
  display: none !important;
}
div.page-content.insights aside ul.field-list li.locked {
  position: relative;
  overflow: visible;
  background-color: #e6e6e6;
}
div.page-content.insights aside ul.field-list li.locked::before {
  font-family: "fontawesome" !important;
  content: "\f023";
  color: #959595;
  margin-left: -18px;
  margin-right: 10px;
  display: inline-block;
  width: 8px;
}
div.page-content.insights aside ul.field-list li.locked:hover {
  background: #dedede !important;
}
div.page-content.insights aside ul.field-list li.locked.is-active {
  background: #f3f3f3 !important;
}
div.page-content.insights aside .insight-subnav-dimensions .field-list {
  background: #eff4f9;
  border-bottom: 1px solid #d8e6f1;
}
div.page-content.insights aside .insight-subnav-dimensions .field-list li {
  color: #555555;
  padding: 3px 20px 4px 35px;
}
div.page-content.insights aside .insight-subnav-dimensions .field-list li:hover,
div.page-content.insights aside .insight-subnav-dimensions .field-list li.is-active {
  background: white;
}
div.page-content.insights aside .insight-table-list .measures .field-list li:hover {
  background: #cde7e2;
}
div.page-content.insights aside .insight-table-list .measures .field-list li.is-active {
  background: #cde7e2;
}
div.page-content.insights aside > ul {
  float: left;
  width: 100%;
  overflow-y: auto;
}
div.page-content.insights aside > ul button.category-label,
div.page-content.insights aside > ul button.source-label {
  position: relative;
  box-sizing: border-box;
  display: block;
  width: 100%;
  padding: 3px 20px 4px 34px;
  border: none;
  outline: none;
  text-align: left;
  font-weight: 500;
  background-repeat: no-repeat;
  background-size: auto 8px;
  background-position: 21px 7px;
}
div.page-content.insights aside > ul button.category-label:hover,
div.page-content.insights aside > ul button.source-label:hover {
  cursor: pointer;
}
div.page-content.insights aside > ul button.category-label.active,
div.page-content.insights aside > ul button.source-label.active {
  background-size: 8px auto;
  background-position: 19px 7px;
}
div.page-content.insights aside > ul button.category-label.active + ul,
div.page-content.insights aside > ul button.source-label.active + ul {
  display: block;
}
div.page-content.insights aside > ul button.category-label {
  background-position: 96% 10px;
}
div.page-content.insights aside > ul button.category-label.active {
  background-position: 96% 12px;
}
div.page-content.insights aside > ul .category-block {
  transition: 0.2s;
}
div.page-content.insights aside > ul .category-block.is-closed {
  display: none;
}
div.page-content.insights aside > ul .category-block h2.no-fields {
  text-align: center;
  font-weight: 300;
}
div.page-content.insights aside > ul .field-list.is-closed {
  display: none;
}
div.page-content.insights aside > ul .collapse-button {
  position: absolute;
  top: 8px;
  right: 25px;
  padding: 0 30px 0 0;
  border: none;
  outline: none;
  background: none;
  text-transform: uppercase;
  font-size: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  background-repeat: no-repeat;
  background-position: 90% 0;
  background-image: url("/assets/img/icon-square-minus-fff.svg");
}
div.page-content.insights aside > ul .collapse-button.plus {
  background-image: url("/assets/img/icon-square-plus-fff.svg");
}
div.page-content.insights aside > ul li.dimensions .type-icon {
  background: #4891c6;
}
div.page-content.insights aside > ul li.measures .type-icon {
  background: #3db39e;
}
div.page-content.insights aside > ul li button.category-label {
  height: 30px;
  color: #fff;
  padding: 0px 20px 0px 0px;
  background-color: #404d5e;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 400;
  background-image: url("/assets/img/carat-right-fff.svg");
}
div.page-content.insights aside > ul li button.category-label.active {
  background-image: url("/assets/img/carat-down-fff.svg");
}
div.page-content.insights aside > ul li button.category-label.active + ul {
  max-height: 10000px;
}
div.page-content.insights aside > ul li button.category-label .type-icon {
  width: 40px;
  height: 21px;
  text-align: center;
  padding-top: 9px;
  margin-right: 5px;
}
div.page-content.insights aside > ul li > ul li button.source-label {
  color: #555555;
  background-color: #fff;
  background-image: url("/assets/img/carat-right-243b5f.svg");
}
div.page-content.insights aside > ul li > ul li button.source-label.active {
  background-color: #ebf2f8;
  background-image: url("/assets/img/carat-down-243b5f.svg");
}
div.page-content.insights aside > ul li > ul li button.source-label.active + ul {
  max-height: 2000px;
}
div.page-content.insights aside > ul li > ul li button.source-label:hover {
  background-color: #ebf2f8;
}
div.page-content.insights aside > ul li > ul li button.source-label.locked-category {
  background-color: #dedede;
}
div.page-content.insights aside > ul li > ul li button.source-label.locked-category::after {
  font-family: "fontawesome" !important;
  content: "\f023";
  color: #555555;
  position: absolute;
  top: 3px;
  right: 10px;
  font-size: 15px;
}
.insight-filter-field {
  display: inline-block;
}
.insights .toggle-totals-checkbox,
.insights .toggle-advanced-filters-checkbox {
  position: absolute;
  top: 4px;
  color: #fff;
  font-weight: bold;
}
.insights .toggle-totals-checkbox .custom-checkbox,
.insights .toggle-advanced-filters-checkbox .custom-checkbox {
  position: relative;
  top: 5px;
  right: 3px;
}
.insights .toggle-totals-checkbox {
  right: 240px;
}
.insights .toggle-advanced-filters-checkbox {
  right: 70px;
}
.insights .table-header > .standard-button {
  position: absolute;
  top: 16px;
  right: 70px;
  transition: 0.2s;
  background-color: #eaebf5;
  color: #344893;
}
.insights .table-header > .standard-button:hover {
  background-color: #ffffff;
  transition: 0.2s;
}
.insights .table-header > .standard-button.disabled {
  opacity: 0.45;
  pointer-events: none;
}
.insights > .flex-row {
  margin-right: 0;
  height: 100%;
}
.insights .table-name {
  font-size: 2rem;
  margin-top: 11px;
  margin-left: 20px;
}
.insights input,
.insights input[type="text"],
.insights input[type="number"],
.insights select {
  height: 24px;
  margin: 8px 0 0 5px;
  padding: 0 7px;
  border-radius: 3px;
  background: #fff;
  font-size: 11px;
  font-size: 1.1rem;
}
.insights input[type="text"].columnAlias {
  margin: 0;
  padding: 0 5px;
}
.insights select {
  background: white url("/assets/img/sort-icon-teal.svg") no-repeat calc(100% - 4px) center;
  background-size: 9px auto;
}
.insights .content {
  overflow: auto;
  padding-top: 10px;
}
.insights .content .action-items {
  text-align: right;
  padding-right: 10px;
}
.insights .content > div {
  padding: 8px 20px 0px 20px;
}
.insights .content .over-row-limit {
  background-color: #ff9933;
  color: white;
  margin: 10px 20px 20px 20px;
  padding-bottom: 8px;
}
.insights .content .filter-section .filter-form {
  margin-bottom: 25px;
}
.insights .content .filter-section .filter-form .condition-select-wrap {
  margin-right: 5px;
}
.insights .content .filter-section .filter-form input,
.insights .content .filter-section .filter-form input[type="number"],
.insights .content .filter-section .filter-form select {
  width: 100%;
  margin: 0;
}
.insights .content .filter-section .timeline-checkbox {
  margin-top: 20px;
  color: #555555;
}
.insights .content .filter-section .timeline-checkbox input[type="checkbox"] {
  width: inherit;
  vertical-align: middle;
}
.insights .content .filter-section .timeline-checkbox span {
  vertical-align: middle;
}
.insights .content .filter-section .condition-select-wrap {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}
.insights .content .filter-section .condition-select-wrap .x-autocomplete-core {
  width: 100%;
  margin-bottom: 0px;
}
.insights .content .filter-section .condition-select-wrap .x-autocomplete-core.x-autocomplete-wrap {
  position: relative;
}
.insights .content .filter-section .condition-select-wrap .x-autocomplete-core.x-autocomplete-wrap .tt-dropdown-menu {
  width: 100%;
  position: absolute;
  left: 0;
}
.insights .content .filter-section .condition-select-wrap .tt-dropdown-menu {
  box-sizing: border-box;
  background: #fff;
  display: block;
  padding: 8px 5px 5px 5px;
  z-index: 2;
  width: calc(100% - 10px);
  border: solid 1px #e6e6e6;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
  width: 100%;
  position: absolute;
  max-height: 120px;
  overflow: scroll;
  margin: 0;
}
.insights .content .filter-section .condition-select-wrap .tt-dropdown-menu .tt-suggestion {
  border-radius: 3px;
  padding: 1px 3px 3px 3px;
  margin: 0px 0px 4px 0px;
  border: none;
  outline: 0;
  font-size: 11px;
  font-size: 1.1rem;
  display: inline-block;
  font-weight: bold;
  cursor: pointer;
}
.insights .content .filter-section .condition-select-wrap .tt-dropdown-menu .tt-suggestion:hover {
  background: #276ca0;
}
.insights .content .filter-section .condition-select-wrap .tt-dropdown-menu .tt-suggestion.no-result {
  background: none;
  padding: 0;
  color: #555555;
}
.insights .content .filter-section .condition-select-wrap .tt-dropdown-menu .tt-suggestion[data-tag-type="standard"] {
  background: #3188c9;
}
.insights .content .filter-section .condition-select-wrap .tt-dropdown-menu .tt-suggestion[data-tag-type="custom"] {
  background: #18b28b;
}
.insights .content .filter-section .condition-select-wrap .tt-dropdown-menu .tt-suggestion {
  color: black;
}
.insights .content .filter-section .condition-select-wrap .tt-dropdown-menu .tt-suggestion:hover {
  color: white;
}
.insights .content .filter-section .filter-row {
  background: #f8f8f8;
  padding: 6px;
  border: solid 1px #e6e6e6;
}
.insights .content .filter-section .filter-row > div {
  margin-right: 10px;
}
.insights .content .filter-section .filter-row.child-filter {
  border-top: none;
  border-bottom: none;
  margin-top: -1px;
  margin-bottom: 1px;
}
.insights .content .filter-section .filter-row.child-filter + .filter-cat-container {
  border-top: solid 1px #e6e6e6;
}
.insights .content .filter-section .filter-row .tag-input .inserted-tag {
  background: #404d5e;
}
.insights .content .filter-section .filter-row .tag-input .inserted-tag.should-remove {
  background: #7a8593;
}
.insights .content .filter-section .filter-row.subpopulation-filter {
  display: flex;
  align-items: center;
}
.insights .content .filter-section .filter-row.subpopulation-filter .dimension-filter {
  border-radius: 100px;
  background: #3188c9;
  width: 25px;
  height: 25px;
  margin-right: 5px;
}
.insights .content .filter-section .filter-row.subpopulation-filter .dimension-filter::before {
  margin-top: 5px;
  display: block;
  margin-left: 6px;
  font-size: 14px;
  font-size: 1.4rem;
  color: #fff;
}
.insights .content .filter-section .filter-row.subpopulation-filter .label-field {
  display: flex;
  align-items: center;
}
.insights .content .filter-section .filter-row.subpopulation-filter .insight-filter-field {
  width: 150px;
}
.insights .content .filter-section .filter-row.subpopulation-filter .insight-selector {
  width: 100%;
  margin-right: 5px;
}
.insights .content .filter-section .filter-row.subpopulation-filter .icon-button {
  margin: 2px;
}
.insights .content .filter-section .filter-cat-container {
  color: #555555;
}
.insights .content .filter-section .filter-cat-container .filter-cat-title {
  margin: 6px 0px 6px 0px;
  display: inline-block;
  line-height: 20px;
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: 300;
}
.insights .content .filter-section .filter-cat-container .conditional-text {
  display: inline-block;
  font-weight: 500;
  font-size: 15px;
  font-size: 1.5rem;
}
.insights .content .filter-section .filter-cat-container .logical-operators {
  max-width: 50px;
  height: 20px;
}
.insights .content .filter-section .measure-filter:before {
  font-family: "fontawesome" !important;
  color: #3db39e;
  content: "\f0ae";
  margin-right: 3px;
}
.insights .content .filter-section .dimension-filter:before {
  font-family: "fontawesome" !important;
  color: #3188c9;
  content: "\f1b2";
  margin-right: 3px;
}
.insights .content .filter-section .insight-filter-field {
  color: #555555;
}
.insights .content .filter-section .insight-filter-field:nth-of-type(1) {
  min-width: 290px;
  max-width: 290px;
}
.insights .content .filter-section .insight-filter-field:nth-of-type(2) {
  max-width: 150px;
}
.insights .content .filter-section .insight-filter-field .filter-conditional {
  display: inline-block;
  width: 100%;
  text-align: right;
}
.insights .content .filter-section .insight-filter-field.label-field select {
  width: 62px;
  font-size: 1.3rem;
}
.insights .content .filter-section .insight-filter-field.label-field span.conditional-text {
  width: 62px;
  padding-left: 8px;
  box-sizing: border-box;
  display: inline-block;
}
.insights .content .filter-section .insight-filter-field.label-field .label-top {
  font-size: 1.1rem;
}
.insights .content .filter-section .locked-filter .insight-filter-field:nth-of-type(2) {
  min-width: 275px;
  max-width: 275px;
}
.insights .content .filter-section .locked-filter .insight-filter-field:nth-of-type(3) {
  max-width: 150px;
}
.insights .content .filter-section .title {
  font-weight: 300;
  font-size: 22px;
  font-size: 2.2rem;
  color: #404d5e;
  margin: 0;
  padding-bottom: 10px;
  border-bottom: 1px solid #ababab;
}
.insights .content .filter-section .no-content-sub {
  padding-top: 0;
}
.insights .content .filter-section .flex-row {
  align-items: center;
}
.insights .content .filter-section .flex-row > div:last-child {
  margin-right: 0;
}
.insights .content .filter-section .filter-form .locked-filter,
.insights .content .filter-section .sort-form .locked-filter {
  position: relative;
  padding: 6px 6px 6px 20px;
  max-width: 100% !important;
}
.insights .content .filter-section .filter-form .locked-filter .tooltip,
.insights .content .filter-section .sort-form .locked-filter .tooltip {
  display: none;
}
.insights .content .filter-section .filter-form .locked-filter:hover .tooltip,
.insights .content .filter-section .sort-form .locked-filter:hover .tooltip {
  background: #555555;
  border-radius: 3px;
  color: white;
  display: block;
  margin-top: -30px;
  margin-left: -29px;
  position: absolute;
  width: 150px;
  text-align: center;
  padding: 3px 5px;
  z-index: 99;
}
.insights .content .filter-section .filter-form .locked-filter:hover .tooltip:after,
.insights .content .filter-section .sort-form .locked-filter:hover .tooltip:after {
  top: 100%;
  left: 20px;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(36, 59, 95, 0);
  border-top-color: #555555;
  border-width: 5px;
  margin-left: -5px;
}
.insights .content .filter-section .filter-form .locked-filter .locked-filter-mask,
.insights .content .filter-section .sort-form .locked-filter .locked-filter-mask {
  background-color: #a7a7a7;
  margin-right: 0px;
  opacity: 0.5;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0px;
  z-index: 10;
}
.insights .content .filter-section .filter-form .locked-filter .locked-filter-mask::before,
.insights .content .filter-section .sort-form .locked-filter .locked-filter-mask::before {
  font-family: "fontawesome" !important;
  position: absolute;
  content: "\f023";
  color: black;
  display: inline-block;
  font-size: 16px;
  font-size: 1.6rem;
  width: 14px;
  left: 5px;
  top: 12px;
}
.insights .content .filter-section .sort-form .flex-row .sort-direction {
  margin-right: 10px;
  max-width: 150px;
}
.insights .content .filter-section .sort-form .flex-row .sort-direction select {
  width: 100%;
  margin: 0;
  margin-top: 0px;
}
.insights .content .filter-section .sort-form .flex-row button {
  margin-right: 5px;
}
.insights .content .filter-section .sort-form .flex-row .pivot-option {
  margin-right: 31px;
  color: #625666;
}
.insights .content .filter-section .sort-form .flex-row .pivot-option select {
  width: inherit;
}
.insights .content .filter-section .icon-button {
  background: transparent;
  line-height: 14px;
  max-width: 20px;
  padding: 0;
  text-align: center;
}
.insights .content .filter-section .fa-close,
.insights .content .filter-section .fa-plus {
  color: white;
  border-radius: 50%;
  background-color: #ed4651;
  box-sizing: border-box;
  cursor: pointer;
  height: 16px;
  line-height: 16px;
  text-align: center;
  min-width: 16px;
  font-size: 12px;
  font-size: 1.2rem;
}
.insights .content .filter-section .fa-plus {
  background-color: #2e8b9d;
  line-height: 18px;
  line-height: 1.8rem;
}
.insights .content .filter-section .active-filters {
  margin-top: 15px;
  padding-left: 40px;
}
.insights .content .filter-section .active-filters p {
  color: #555555;
  margin: 10px 0;
}
.insights .content .filter-section .active-filters .fa-close {
  vertical-align: top;
  margin-left: 3px;
}
.insights .content .filter-section .insight-condition-numeric {
  position: relative;
}
.insights .content .filter-section .insight-condition-numeric .tag-container .new-tag .x-autocomplete-wrap {
  position: inherit;
}
.insights .content .filter-section .tag-container {
  width: 100%;
}
.insights .content .filter-section .tag-container .tag-input {
  min-height: 25px;
  max-height: 50px;
  overflow-x: hidden;
  overflow-y: auto;
  border-radius: 3px;
  margin: 0;
  border: 1px solid #e6e6e6;
  box-sizing: border-box;
}
.insights .content .insight-table thead {
  border-bottom: none;
}
.insights .content .insight-table thead table {
  margin-top: 0;
  border-bottom: none;
}
@-moz-document url-prefix() {
  .insights .content .insight-table thead table {
    border-collapse: inherit;
    border: none;
  }
  .insights .content .insight-table thead table tr th:first-child {
    border-left: 1px #ababab solid;
  }
}
.insights .content .insight-table thead + table {
  margin-top: 0;
}
.insights .content .insight-table thead .invalid-data {
  background-color: #ed4651;
  color: white;
}
.insights .content .insight-table thead .invalid-data .fa-close {
  border-color: white;
}
.insights .content .no-content-sub {
  color: #555555 !important;
  padding-top: 70px;
}
.insights .content .no-content-sub.no-filters {
  padding: 10px 0;
}
.insights .content .insight-table .no-data td {
  color: #555555;
  font-size: 30px;
  font-size: 3rem;
  font-weight: 100;
  padding: 130px 0;
  text-align: center;
  line-height: 1em;
}
.insights .content .insight-content-wrapper {
  position: relative;
}
.insights .content .insight-content-wrapper:last-of-type {
  margin-bottom: 20px;
}
.insights .content .insight-content-wrapper .hidden {
  display: none !important;
}
.insights .content .insight-content-wrapper .hidden.total-row,
.insights .content .insight-content-wrapper .hidden.grand-total-row {
  opacity: 0;
  border: solid 1px #fff;
  display: table-row !important;
  pointer-events: none;
}
.insights .content .insight-content-wrapper .hidden.total-row td,
.insights .content .insight-content-wrapper .hidden.grand-total-row td {
  border-right: none;
}
.insights .content .insight-content-wrapper .hidden.total-row {
  border-top: solid 1px #ababab;
}
.insights .content .insight-content-wrapper .content-wrapper {
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
}
.insights .content .insight-content-wrapper.data-table .content-wrapper {
  padding: 10px;
}
.insights .content .insight-content-wrapper.data-table .content-wrapper > div {
  width: 100%;
  overflow-y: auto;
  min-height: 325px;
}
.insights .content .insight-content-wrapper section,
.insights .content .insight-visualization-wrapper section {
  margin: 0px;
  width: 100%;
  border: 1px solid #e6e6e6;
  border-top: none;
  background: #fff;
}
.insights .content .insight-visualization-wrapper section {
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
  min-height: 300px;
}
.insights .content .insight-visualization-wrapper h1 {
  margin-bottom: 0px;
}
.insights .content .insight-visualization-wrapper .no-content-sub {
  padding-top: 100px;
}
[class^="route-insight-table"] main.main-content header.content-header span.save-warning {
  color: #ff9933;
  cursor: pointer;
  text-align: center;
  line-height: 1.2em;
  font-size: 1.7em;
  margin: 10px 0px 0px 8px;
}
[class^="route-insight-table"] main.main-content header.content-header span.save-warning:hover:after {
  background: #ff9933;
  border-radius: 3px;
  bottom: 0;
  color: #fff;
  content: attr(data-title);
  font-size: 13px;
  line-height: 15px;
  padding: 5px 15px;
  pointer-events: none;
  position: absolute;
  right: 34px;
  width: 440px;
  z-index: 98;
}
[class^="route-insight-table"] main.main-content header.content-header span.save-warning:hover:before {
  border: solid;
  border-color: transparent #ff9933;
  border-width: 6px 0 6px 6px;
  bottom: 13px;
  content: "";
  right: 29px;
  position: absolute;
  z-index: 99;
}
[class^="route-insight-table"] .modal .add-filter {
  margin-bottom: 20px;
}
[class^="route-insight-table"] .modal h2 {
  font-weight: 300;
}
[class^="route-insight-table"] .modal .delete-setting {
  color: #ed4651;
  font-size: 20px;
  font-size: 2rem;
  line-height: 21px;
  vertical-align: middle;
  cursor: pointer;
}
[class^="route-insight-table"] .modal .inner-label {
  margin-left: 15px;
}
[class^="route-insight-table"] .modal input[type="number"],
[class^="route-insight-table"] .modal input[type="text"],
[class^="route-insight-table"] .modal select {
  box-sizing: border-box;
  height: 26px;
  margin: 8px 0 0 5px;
  padding: 0 7px;
  border-radius: 3px;
  background: #fff;
  font-size: 12px;
  font-size: 1.2rem;
}
[class^="route-insight-table"] .modal input[type="number"].end-value,
[class^="route-insight-table"] .modal input[type="text"].end-value,
[class^="route-insight-table"] .modal select.end-value {
  margin-left: 10px;
}
[class^="route-insight-table"] .modal .range {
  margin: 0 -5px 0 5px;
}
[class^="route-insight-table"] .modal select {
  margin-right: 10px;
  background: white url("/assets/img/sort-icon-teal.svg") no-repeat calc(100% - 10px) center;
  background-color: transparent;
  background-size: 10px auto;
  padding-right: 25px;
}
[class^="route-insight-table"] .modal select.condition-select {
  padding-left: 80px;
  margin-left: -78px;
}
[class^="route-insight-table"] .modal .modal-buttons {
  margin-bottom: 0px;
  margin-top: 20px;
}
[class^="route-insight-table"] .modal .character-limit-text {
  text-align: left;
  display: block;
  margin: 0;
  font-size: 10px;
  font-size: 1rem;
  padding: 0;
}
[class^="route-insight-table"] .modal .chart-select {
  margin-bottom: 15px;
}
[class^="route-insight-table"] .modal .chart-select p {
  margin-bottom: 0;
}
[class^="route-insight-table"] .modal .isf-checkbox-container {
  display: table;
  margin: 0 auto;
}
[class^="route-insight-table"] .modal .isf-checkbox-container .ui-label {
  padding: 0px 0px 15px 0px;
}
[class^="route-insight-table"] .modal input[type="text"]:not(.date):not(.contains) {
  width: 100%;
  margin: 5px 0 12px 0;
}
[class^="route-insight-table"] .modal textarea {
  background: white;
  border: 1px solid #e6e6e6;
  border-radius: 3px;
  box-shadow: none;
  font-size: 12px;
  font-size: 1.2rem;
  min-height: 110px;
  margin-bottom: 10px;
  padding: 7px;
  width: 100%;
}
[class^="route-insight-table"] .modal textarea:focus {
  border-color: #a6a6a6;
}
[class^="route-insight-table"] .modal .user-share:last-of-type {
  margin-bottom: 20px;
}
.route-insight-table-save .modal .close {
  display: none;
}
.route-insight-table-save .modal .loading-indicator {
  height: 100%;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 5px;
}
.insight-section-header {
  cursor: pointer;
}
.insight-table-visualization-wrapper {
  padding: 10px !important;
}
.insight-table-visualization-wrapper [data-id="insightTableHeader"] {
  overflow-x: auto;
}
.insight-table-visualization-wrapper .table-container {
  max-height: 550px;
  min-height: 250px;
  overflow: auto;
}
.insight-table-visualization-wrapper .table-container table.dashboard-table {
  width: auto;
  min-width: 100%;
}
.insight-table-visualization-wrapper .table-container table.dashboard-table th,
.insight-table-visualization-wrapper .table-container table.dashboard-table td {
  min-width: 130px;
  flex: 1;
  display: flex;
  align-items: center;
}
.insight-table-visualization-wrapper .table-container table.dashboard-table th.row-number,
.insight-table-visualization-wrapper .table-container table.dashboard-table td.row-number {
  justify-content: center !important;
}
.insight-table-visualization-wrapper .table-container table.dashboard-table td.total,
.insight-table-visualization-wrapper .table-container table.dashboard-table td.grand-total {
  justify-content: flex-end;
}
.insight-table-visualization-wrapper .table-container table.dashboard-table td.total.row-number + td,
.insight-table-visualization-wrapper .table-container table.dashboard-table td.grand-total.row-number + td {
  justify-content: flex-start;
}
.insight-table-visualization-wrapper .table-container table.dashboard-table td.calculated-value,
.insight-table-visualization-wrapper .table-container table.dashboard-table td.measure {
  justify-content: flex-end;
}
.insight-table-visualization-wrapper .table-container table.dashboard-table tr {
  display: flex;
}
.insight-table-visualization-wrapper .table-container table.dashboard-table thead th[colspan="1"] {
  flex: 1;
}
.insight-table-visualization-wrapper .table-container table.dashboard-table thead th[colspan="2"] {
  flex: 2;
}
.insight-table-visualization-wrapper .table-container table.dashboard-table thead th[colspan="3"] {
  flex: 3;
}
.insight-table-visualization-wrapper .table-container table.dashboard-table thead th[colspan="4"] {
  flex: 4;
}
.insight-table-visualization-wrapper .table-container table.dashboard-table thead th[colspan="5"] {
  flex: 5;
}
.insight-table-visualization-wrapper .table-container table.dashboard-table thead th[colspan="6"] {
  flex: 6;
}
.insight-table-visualization-wrapper .table-container table.dashboard-table thead th[colspan="7"] {
  flex: 7;
}
.insight-table-visualization-wrapper .table-container table.dashboard-table thead th[colspan="8"] {
  flex: 8;
}
.insight-table-visualization-wrapper .table-container table.dashboard-table thead th[colspan="9"] {
  flex: 9;
}
.insight-table-visualization-wrapper .table-container table.dashboard-table thead th[colspan="10"] {
  flex: 10;
}
.insight-table-visualization-wrapper table,
.widget-table-wrap table {
  margin: 0;
  pointer-events: none;
}
.insight-table-visualization-wrapper table .insight-options,
.widget-table-wrap table .insight-options {
  display: none !important;
}
.insight-table-visualization-wrapper table th,
.widget-table-wrap table th {
  cursor: default !important;
}
.insight-table-visualization-wrapper table tr.hidden,
.widget-table-wrap table tr.hidden {
  display: none !important;
}
div.modal.period-comparison-modal + div.content {
  width: 85%;
  max-height: 700px;
}
div.modal.period-comparison-modal + div.content .no-period-message {
  font-size: 2rem;
}
div.modal.period-comparison-modal + div.content h1 {
  margin: 7px 0 0;
  padding: 0 40px 1px 14px;
  text-align: left;
  color: #786070;
  font-size: 25px;
  font-size: 2.5rem;
  font-weight: 300;
}
div.modal.period-comparison-modal + div.content span.close {
  top: 20px;
  right: 30px;
  font-size: 38px;
  font-size: 3.8rem;
  color: #c9bfc6;
}
.period-comparison-form fieldset {
  text-align: left;
}
.period-comparison-form fieldset.date-field {
  padding: 22px 15px 20px;
  text-align: left;
}
.period-comparison-form fieldset.date-field label {
  text-transform: uppercase;
}
.period-comparison-form fieldset.rolling-select {
  margin: 20px 0 0 0;
  min-height: 24px;
}
.period-comparison-form fieldset label {
  padding: 0 16px 0 0;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #555555;
}
.period-comparison-form fieldset label.date-default {
  margin-left: 5px;
}
.period-comparison-form fieldset input:not([type="checkbox"]).standard:focus + label {
  border: none !important;
}
.period-comparison-form div.form-row {
  text-align: left;
}
.period-comparison-form div.date-blocks {
  min-height: 150px;
  padding: 20px;
}
.period-comparison-form div.date-blocks > div {
  box-sizing: border-box;
  padding: 20px;
  overflow: visible;
  border: 1px solid #cacacb;
  background: #fff;
}
.period-comparison-form .add-period {
  padding: 20px 0 0 0;
  background: #f8f8f8;
}
.period-comparison-form .add-period.new-period {
  margin-top: 5px;
}
.period-comparison-form .add-period:nth-child(even) {
  background: #f3f3f4;
}
.period-comparison-form .add-period input.standard.large {
  min-width: 400px;
}
.period-comparison-form .add-period > fieldset:nth-of-type(1) label:nth-of-type(1),
.period-comparison-form .add-period > fieldset:nth-of-type(2) label:nth-of-type(1) {
  display: block;
  width: 103px;
  margin: 3px 0 0 0;
  float: left;
  text-align: right;
}
.period-comparison-form .add-period > fieldset:nth-of-type(1) label:nth-of-type(2),
.period-comparison-form .add-period > fieldset:nth-of-type(2) label:nth-of-type(2) {
  padding: 0 13px 0 0;
}
.period-comparison-form .add-period input[type="checkbox"] {
  margin: 7px 30px 0 0;
}
.period-comparison-form .add-period input[type="checkbox"]:checked {
  margin: 0 30px 0 0;
}
.period-comparison-form .add-period.existing-period {
  width: 100%;
}
.period-comparison-form .add-period.closed {
  height: 0px;
  visibility: hidden;
}
.period-comparison-form .add-period.open {
  visibility: visible;
}
.period-comparison-form .add-period h3 {
  margin-bottom: 3px;
}
.period-comparison-form .add-period h3.date-title {
  margin-bottom: 10px;
}
.period-comparison-form .add-period .offset-input {
  width: 50px;
  border-radius: 9px;
}
.period-comparison-form .add-period .fa-close {
  color: white;
  border-radius: 50%;
  background-color: #ed4651;
  box-sizing: border-box;
  cursor: pointer;
  height: 14px;
  line-height: 14px;
  text-align: center;
  min-width: 14px;
  font-size: 10px;
  font-size: 1rem;
}
.period-comparison-form .add-period input[disabled] {
  background-color: lightgrey;
}
.period-comparison-form .add-period button.save {
  margin-left: 40px;
}
.period-comparison-form .periods {
  max-height: 350px;
  overflow: auto;
}
.period-comparison-form .periods .add-period.new-period {
  margin: 20px 15px 0;
}
.period-comparison-form .periods .period-row {
  background: #f8f8f8;
  padding: 10px;
}
.period-comparison-form .periods .period-row:nth-child(even) {
  background: #f3f3f4;
}
.period-comparison-form .periods .period-row button.save {
  margin-left: 20px;
}
.period-comparison-form .periods .period-row button.delete {
  width: 76px;
}
.period-comparison-form .periods .period-row > * {
  flex-grow: 1;
}
.period-comparison-form .periods .period-row > div {
  flex-grow: 3;
}
.period-comparison-form .periods .period-row > div > * {
  float: left;
}
.period-comparison-form .periods .period-row h2 {
  flex-grow: 3;
  margin: 5px 30px 0 0;
  text-align: left;
  font-weight: 700;
  font-size: 18px;
  font-size: 1.8rem;
  color: #3e4e78;
}
.period-comparison-form .periods .period-row span {
  display: block;
  padding: 2px 16px 0 0;
  text-transform: capitalize;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #555555;
  text-align: right;
}
.period-comparison-form .periods .period-row span:nth-of-type(1) {
  margin-top: 5px;
  width: 90px;
  text-align: right;
}
.period-comparison-form .periods .period-row span:nth-of-type(2) {
  margin-top: 5px;
  width: 200px;
  text-align: left;
  white-space: nowrap;
}
.period-comparison-form .periods .period-row h3 {
  margin: 0px;
}
.period-comparison-form .periods .period-row p.detail {
  margin-top: 0px;
  margin-bottom: 4px;
}
.period-comparison-form .periods .period-row p.detail span.type {
  text-transform: uppercase;
}
.period-comparison-form span.add:hover {
  cursor: pointer;
}
.period-comparison-form .bottom-buttons {
  margin-top: 20px;
}
.period-comparison-form button.clone {
  margin: 20px 0 0 0;
}
.condition-select-wrap {
  position: relative;
  flex-direction: column;
  align-self: flex-start;
  flex: 1.5;
}
.condition-select-wrap.x-autocomplete-wrap {
  margin-right: 0;
}
.condition-select-wrap.insight-condition-numeric {
  flex-direction: row;
  align-items: center;
}
.condition-select-wrap.insight-condition-numeric .tag-input .new-tag .x-autocomplete-wrap.x-autocomplete-core .tt-dropdown-menu {
  width: inherit;
}
.condition-select-wrap.insight-condition-numeric .range {
  margin: 0 5px;
}
.route-insight-table-index .insight-selector.subpopulation-filter .ember-power-select-search-input {
  width: 100%;
  padding: 1px 17px 0 39px;
  background: white url(/assets/img/icon-search.svg) no-repeat;
  background-position: 6px center;
  background-size: 15px;
}
body.is-not-authenticated {
  background: #071432;
}
body.is-not-authenticated.route-login-next .innovu-logo-container,
body.is-not-authenticated.route-login-next .theme-logo,
body.is-not-authenticated.route-login-next .login-empowered {
  display: none;
}
body.is-not-authenticated.route-login-next #wormholeDestination .overlay.qr-auth-modal {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.3);
  z-index: 999;
}
body.is-not-authenticated.route-login-next #wormholeDestination .overlay.qr-auth-modal .modal-content {
  background: white;
  border-radius: 3px;
  position: absolute;
  top: 30px;
  right: 30px;
  bottom: 30px;
  left: 30px;
}
body.is-not-authenticated.route-login-next #wormholeDestination .overlay.qr-auth-modal .modal-content h3 {
  font-size: 26px;
  font-weight: 300;
  margin: 0 auto;
  margin-top: 40px;
  text-align: center;
}
body.is-not-authenticated.route-login-next #wormholeDestination .overlay.qr-auth-modal .modal-content span.close {
  cursor: pointer;
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 40px;
}
body.is-not-authenticated.route-login-next #wormholeDestination .overlay.qr-auth-modal .modal-content img {
  display: block;
  width: 350px;
  height: 350px;
  position: absolute;
  top: calc(50% - 175px);
  left: calc(50% - 175px);
}
body.is-not-authenticated main.main-content,
body.is-not-authenticated nav.main-nav,
body.is-not-authenticated div.notification-wrapper {
  display: none;
}
body.is-not-authenticated .custom-notify {
  box-shadow: none;
  left: calc(50% - 200px);
}
body.is-not-authenticated main {
  right: 0;
  left: 0;
  background: #cccccc;
  background: radial-gradient(circle at 50% calc(50% - 52px), #1c2844, #071432 35%);
  background-position: top center;
}
body.is-not-authenticated main > div {
  background: none;
  border-top: none;
}
body.is-not-authenticated main section {
  position: fixed;
  display: inline-block;
  width: 768px;
  left: 50%;
  top: calc(50% - 52.5px);
  padding: 10px 0;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: url("/assets/img/bg-login-line.png") repeat-y 384px 0;
}
body.is-not-authenticated main section .theme-logo {
  position: absolute;
  left: 0;
  top: calc(50% - 6px);
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  width: 353px;
  height: auto;
  display: inline-block;
  vertical-align: top;
  margin: 0;
}
body.is-not-authenticated main section img[alt*="kapnick.svg"] + .login-empowered {
  bottom: -20px;
}
body.is-not-authenticated main section img[alt*="bbi.svg"] + .login-empowered {
  bottom: -100px;
}
body.is-not-authenticated main section img[alt*="graham.svg"] + .login-empowered {
  bottom: -120px;
}
body.is-not-authenticated main section img[alt*="wortham.svg"] + .login-empowered {
  bottom: 20px;
}
body.is-not-authenticated main section img[alt*="rcmd.svg"] + .login-empowered {
  bottom: -50px;
}
body.is-not-authenticated main section img[alt*="epic.svg"] {
  top: calc(50% - 20px);
  width: 200px;
  left: 150px;
}
body.is-not-authenticated main section img[alt*="epic.svg"] + .login-empowered {
  bottom: -10px;
}
body.is-not-authenticated main section img[alt*="mahoney.svg"] {
  left: 193px;
  top: calc(50% - 30px);
  width: 160px;
}
body.is-not-authenticated main section img[alt*="mahoney.svg"] + .login-empowered {
  bottom: 20px;
}
body.is-not-authenticated main section img[alt*="medtrans.svg"] {
  left: 55px;
  top: calc(50% - 17px);
  width: 300px;
}
body.is-not-authenticated main section img[alt*="collier.svg"] {
  left: 55px;
  top: calc(50% - 17px);
  width: 300px;
}
body.is-not-authenticated main section img[alt*="cbiz.svg"] {
  top: calc(50% - 13px);
}
body.is-not-authenticated main section img[alt*="totalControlHealth.svg"] {
  top: calc(50% - 20px);
}
body.is-not-authenticated main section img[alt*="totalControlHealth.svg"] + .login-empowered {
  bottom: 10px;
}
body.is-not-authenticated main section img[alt*="ima.svg"] {
  top: calc(50% - 20px);
  left: 75px;
  width: 280px;
}
body.is-not-authenticated main section img[alt*="ima.svg"] + .login-empowered {
  bottom: -13px;
}
body.is-not-authenticated main section img[alt*="goldenwest.svg"] {
  top: calc(50% - 20px);
  left: 94px;
  width: 260px;
}
body.is-not-authenticated main section img[alt*="goldenwest.svg"] + .login-empowered {
  bottom: -13px;
}
body.is-not-authenticated main section img[alt*="gallagher.svg"] {
  top: calc(50% - 30px);
  left: 94px;
  width: 260px;
}
body.is-not-authenticated main section img[alt*="gallagher.svg"] + .login-empowered {
  bottom: 30px;
}
body.is-not-authenticated main section img[alt*="relationInsurance.svg"] {
  top: calc(50% - 30px);
  left: 94px;
  width: 260px;
}
body.is-not-authenticated main section img[alt*="relationInsurance.svg"] + .login-empowered {
  bottom: 30px;
}
body.is-not-authenticated main section img[alt*="acrisure.svg"] {
  top: calc(50% - 30px);
  left: 94px;
  width: 260px;
}
body.is-not-authenticated main section img[alt*="acrisure.svg"] + .login-empowered {
  bottom: 30px;
}
body.is-not-authenticated main section img[alt*="ccig.svg"] {
  top: calc(50% - 30px);
  left: 94px;
  width: 260px;
}
body.is-not-authenticated main section img[alt*="ccig.svg"] + .login-empowered {
  bottom: 30px;
}
body.is-not-authenticated main section img[alt*="consiliariumGroup.svg"] {
  top: calc(50% - 30px);
  left: 94px;
  width: 260px;
}
body.is-not-authenticated main section img[alt*="consiliariumGroup.svg"] + .login-empowered {
  bottom: 30px;
}
body.is-not-authenticated main section img[alt*="howdenCCG.svg"] {
  top: calc(50% - 30px);
  left: 94px;
  width: 260px;
}
body.is-not-authenticated main section img[alt*="howdenCCG.svg"] + .login-empowered {
  bottom: 30px;
}
body.is-not-authenticated main section img[alt*="cgi.svg"] {
  top: calc(50% - 30px);
  left: 148px;
  width: 200px;
}
body.is-not-authenticated main section img[alt*="cgi.svg"] + .login-empowered {
  bottom: 0px;
}
body.is-not-authenticated main section .login-empowered {
  bottom: 0;
  color: #b5b5b5;
  font-weight: 300;
  position: absolute;
  font-size: 14px;
  font-size: 1.4rem;
  width: 353px;
  text-align: right;
  left: 0;
}
body.is-not-authenticated main section .login-empowered img {
  display: inline;
  height: 26px;
}
body.is-not-authenticated main section input {
  background: white;
  height: 36px;
  border-radius: 3px;
}
body.is-not-authenticated main section input[type="text"],
body.is-not-authenticated main section input[type="email"],
body.is-not-authenticated main section input[type="password"] {
  clear: both;
  margin: 0 0 10px calc(50% + 31px);
  width: calc(50% - 31px);
  padding: 0 17px;
  border: none;
}
body.is-not-authenticated main section .error-message,
body.is-not-authenticated main section .success-message,
body.is-not-authenticated main section .warning-message {
  margin: 0 0 10px calc(50% + 31px);
  font-size: 12px;
  font-size: 1.2rem;
  color: #ed4651;
  text-align: center;
}
body.is-not-authenticated main section .error-message .fa,
body.is-not-authenticated main section .success-message .fa,
body.is-not-authenticated main section .warning-message .fa {
  font-size: 16px;
  font-size: 1.6rem;
  position: relative;
  bottom: -1px;
}
body.is-not-authenticated main section .success-message {
  color: #18b28b;
}
body.is-not-authenticated main section .warning-message {
  color: #b5b5b5;
  font-size: 11px;
  font-size: 1.1rem;
}
body.is-not-authenticated main section .warning-message .fa-exclamation-circle {
  color: #ff9933;
  margin-right: 5px;
}
body.is-not-authenticated main section button {
  clear: both;
  margin: 10px 0 10px calc(50% + 31px);
  width: calc(50% - 31px);
  background: #505d9c;
}
body.is-not-authenticated main section button:hover {
  background: #5b68ab;
}
body.is-not-authenticated main section button.disable {
  opacity: 0.4;
  pointer-events: none;
}
body.is-not-authenticated main section p {
  font-size: 12px;
  font-size: 1.2rem;
}
body.is-not-authenticated main section p.forgot-password-text,
body.is-not-authenticated main section p.verification-text,
body.is-not-authenticated main section p.login-instruction-text {
  margin-bottom: 17px;
}
body.is-not-authenticated main section p.forgot-password-text strong,
body.is-not-authenticated main section p.verification-text strong,
body.is-not-authenticated main section p.login-instruction-text strong {
  display: block;
  margin-bottom: 2px;
}
body.is-not-authenticated main section p.forgot-password-text a,
body.is-not-authenticated main section p.verification-text a,
body.is-not-authenticated main section p.login-instruction-text a {
  color: #fff;
  text-decoration: underline;
}
body.is-not-authenticated main section p.forgot-password-text a:hover,
body.is-not-authenticated main section p.verification-text a:hover,
body.is-not-authenticated main section p.login-instruction-text a:hover {
  color: #c2c2c2;
}
body.is-not-authenticated main section p.verification-text p {
  margin: 0;
}
body.is-not-authenticated main section .two-factor-info {
  width: 355px;
  display: block;
  text-align: center;
  font-size: 12px;
  font-size: 1.2rem;
  position: absolute;
}
body.is-not-authenticated main section .two-factor-info.auth-instructions {
  margin-top: -30px;
}
body.is-not-authenticated main section .two-factor-info .auth-toggler-image {
  cursor: pointer;
}
body.is-not-authenticated main section .two-factor-info > p {
  margin: 0;
}
body.is-not-authenticated main section .two-factor-info > p.login-instruction-text {
  margin: -70px 0 18px;
}
body.is-not-authenticated main section .two-factor-info > p.trouble-instruction {
  margin-top: 10px;
}
body.is-not-authenticated main section .two-factor-info .flex-row {
  margin-right: 0;
}
body.is-not-authenticated main section .two-factor-info .flex-row.phone-imgs {
  margin: 18px 18px 0;
}
body.is-not-authenticated main section .two-factor-info .flex-row.phone-imgs .separator {
  background: #696e87;
  width: 1px;
  max-width: 1px;
  margin: 0 39px;
}
body.is-not-authenticated main section .two-factor-info .flex-row.phone-imgs img {
  height: auto;
  width: 100%;
  max-width: 100%;
}
body.is-not-authenticated main section .two-factor-info .flex-row.button-row {
  margin-top: 15px;
}
body.is-not-authenticated main section .two-factor-info .flex-row.button-row .standard-button {
  margin: 0;
  padding: 0;
}
body.is-not-authenticated main section .two-factor-info .flex-row.button-row .standard-button.active {
  background: #18b28b;
}
body.is-not-authenticated main section .two-factor-info .flex-row.button-row span {
  font-size: 12px;
  font-size: 1.2rem;
  flex: 0.5;
  line-height: 24px;
  line-height: 2.4rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #b5b5b5;
}
body.is-not-authenticated main section .two-factor-info .text-form .verification-text span {
  width: 100%;
}
body.is-not-authenticated main section .two-factor-info .text-form > * {
  margin-left: 0;
  width: 100%;
}
body.is-not-authenticated main section .info-text {
  margin: 0 0 10px calc(50% + 31px);
  text-align: center;
  color: #fff;
}
body.is-not-authenticated main section .second-auth-type {
  margin-top: 20px;
}
body.is-not-authenticated main section a {
  color: #fff;
  font-weight: 700;
}
body.is-not-authenticated main section a span.fa {
  font-size: 16px;
  font-size: 1.6rem;
  position: relative;
  bottom: -1px;
}
body.is-not-authenticated main section a:hover {
  text-decoration: underline;
}
body.is-not-authenticated main section > a,
body.is-not-authenticated main section > form > a,
body.is-not-authenticated main section > div > a {
  display: block;
  margin: 0 0 0 calc(50% + 31px);
  text-align: center;
}
body.is-not-authenticated main section > a.auth-toggler-link,
body.is-not-authenticated main section > form > a.auth-toggler-link,
body.is-not-authenticated main section > div > a.auth-toggler-link {
  margin: 10px 0 10px calc(50% + 31px);
}
body.is-not-authenticated main section .checkbox {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  margin: 0 0 0 calc(50% + 31px);
}
body.is-not-authenticated main section .custom-checkbox label {
  background: #505d9c;
  border-radius: 2px;
  display: block;
  height: 11px;
  margin-top: 2px;
  width: 11px;
}
body.is-not-authenticated main section .custom-checkbox label span {
  display: none;
  color: white;
  font-size: 14px;
  line-height: 9px;
  line-height: 0.9rem;
  margin-left: 1px;
}
body.is-not-authenticated main section .custom-checkbox input[type="checkbox"] {
  display: none;
}
body.is-not-authenticated main section .custom-checkbox input[type="checkbox"]:checked + label span {
  display: block;
}
body.is-not-authenticated main section .custom-checkbox + label {
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-left: 8px;
}
body.is-not-authenticated main section .password-changer .error-message,
body.is-not-authenticated main section .password-changer .info {
  margin-bottom: 10px;
}
body.is-not-authenticated main section .password-changer p {
  margin-bottom: 0;
}
body.is-not-authenticated main section .password-changer p label {
  display: none;
}
body.is-not-authenticated main section .password-changer p input {
  width: 100%;
  margin-left: 0;
  color: #555555;
}
body.is-not-authenticated main footer {
  position: fixed;
  display: table;
  width: calc(100% - 40px);
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 20px;
  min-height: 65px;
  background: #172c5c;
}
body.is-not-authenticated main footer p {
  min-height: 65px;
  margin: 0 auto;
  padding: 0;
  color: #5573ba;
  text-align: justify;
  font-size: 11px;
  font-size: 1.1rem;
  line-height: 13px;
  line-height: 1.3rem;
  display: table-cell;
  height: 65px;
  vertical-align: middle;
}
body.is-not-authenticated main footer p span {
  display: block;
  margin: 0 auto;
  max-width: 960px;
  text-align: center;
  color: #fff;
}
body.is-not-authenticated main footer a {
  color: #fff;
  text-decoration: underline;
}
body.is-not-authenticated div.modal {
  margin-top: 5vh;
  max-height: 75vh;
}
body.is-not-authenticated div.modal .content {
  overflow-y: auto;
  margin: 0 20px;
  padding: 15px 25px;
  align-self: normal;
}
body.is-not-authenticated div.modal .content h1 {
  margin: 10px 0 0;
  padding: 0 40px 1px;
  font-weight: 100;
  font-size: 34px;
  font-size: 3.4rem;
  line-height: 34px;
  text-align: center;
}
body.is-not-authenticated div.modal .content h2 {
  font-size: 12px;
  line-height: 14px;
  text-align: left;
  font-weight: 300;
  color: #202c47;
}
body.is-not-authenticated div.modal .content ul {
  list-style: none;
  padding-left: 0;
}
body.is-not-authenticated div.modal .content li {
  font-size: 12px;
  line-height: 16px;
  font-weight: 300;
  text-align: left;
  margin-bottom: 15px;
}
body.is-not-authenticated div.modal .content li.block-indent {
  display: flex;
}
body.is-not-authenticated div.modal .content li span {
  padding-left: 15px;
}
body.is-not-authenticated div.modal .content li ul {
  padding-left: 15px;
}
body.is-not-authenticated div.modal .content .button-container {
  display: flex;
  flex-direction: row-reverse;
}
body.is-not-authenticated div.modal .content.hipaa {
  align-self: center;
}
body.is-not-authenticated div.modal .acceptable-use-agreement .underline {
  text-decoration: underline;
  padding: 0;
  margin: 0;
}
body.is-not-authenticated div.modal .acceptable-use-agreement ol ul {
  margin-top: 10px;
}
body.is-not-authenticated div.modal .acceptable-use-agreement ol ul.restriction-on-use li {
  list-style: disc;
}
body.is-not-authenticated div.modal .acceptable-use-agreement ol ul.flex-list li {
  display: flex;
}
body.is-not-authenticated div.modal .acceptable-use-agreement p {
  padding: 0 20px;
  line-height: 16px;
  word-wrap: normal;
  font-size: 12px;
  font-weight: 300;
  text-align: left;
  margin-bottom: 15px;
}
body.is-not-authenticated div.modal .online-privacy-policy h2 {
  font-size: 16px;
  font-size: 1.6rem;
  margin: 20px 0px 10px 0px;
}
body.is-not-authenticated div.modal .online-privacy-policy p {
  text-align: left;
  padding: 0;
  font-weight: 300;
}
body.is-not-authenticated div.modal .online-privacy-policy ul {
  padding-left: 20px;
}
body.is-not-authenticated div.modal .online-privacy-policy ul li {
  list-style: disc;
}
.route-my-file-files .ui-header .toggle-share,
.route-my-file-shares .ui-header .toggle-share {
  display: inline;
}
.route-my-file-files .ui-header .file-buttons,
.route-my-file-shares .ui-header .file-buttons {
  color: #2e8b9d;
  border: solid 1px #2e8b9d;
  background: #fff;
}
.route-my-file-files .ui-header .file-buttons:hover,
.route-my-file-shares .ui-header .file-buttons:hover {
  background: #2e8b9d;
  color: #fff;
}
.route-my-file-files .ui-header .file-buttons.active,
.route-my-file-shares .ui-header .file-buttons.active {
  color: #fff;
  background: #2e8b9d;
}
.my-files .card {
  padding: 0 0 35px;
}
.my-files .card header {
  margin-bottom: 0;
}
.my-files .card .user-info {
  width: calc(100% - 160px);
}
.my-files .card .action-items {
  position: absolute;
  right: 10px;
  min-width: 110px;
}
.my-files .card.expired .user-info {
  width: calc(100% - 60px);
}
.my-files .card .vault-icon {
  width: 40px;
  height: 40px;
  margin-right: 2rem;
}
.my-files .card .status {
  display: inline-block;
}
main.main-content .page-content .my-files.list .flex-row {
  margin-right: -20px;
}
main.main-content .page-content .my-files.list .flex-row .flex-row {
  margin-right: 0;
}
main.main-content .page-content .my-files.list .loading-indicator h1 {
  opacity: 0;
}
main.main-content .page-content .my-files .drag-download-icon::after {
  font-family: "fontawesome" !important;
  content: "\f0ee";
  font-size: 50px;
  font-size: 5rem;
  display: block;
}
main.main-content .page-content .my-files .standard-button.upload {
  cursor: default;
  position: fixed;
  right: 263px;
  top: 125px;
}
main.main-content .page-content .my-files .standard-button.upload.dz-clickable {
  cursor: pointer;
}
main.main-content .page-content .my-files .overlay {
  display: none;
}
main.main-content .page-content .my-files .doc-uploader.dropzone {
  min-height: 250px;
  box-sizing: border-box;
  overflow: hidden;
}
main.main-content .page-content .my-files .doc-uploader.dropzone.dz-drag-hover {
  border: 4px dashed #18b28b;
  margin: -10px;
  padding: 6px;
  min-height: 270px;
}
main.main-content .page-content .my-files .doc-uploader.dropzone.dz-drag-hover .overlay {
  display: block;
  background: trasparent;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}
main.main-content .page-content .my-files .doc-uploader.dropzone.dz-drag-hover .overlay::before {
  content: "Upload files by dragging them here!";
  font-size: 35px;
  font-size: 3.5rem;
  font-weight: 300;
  top: calc(50% - 160px);
}
main.main-content .page-content .my-files .doc-uploader.dropzone.dz-drag-hover .overlay::after {
  content: "\f0ee";
  font-size: 50px;
  font-size: 5rem;
  font-family: "fontawesome" !important;
  top: calc(50% - 100px);
}
main.main-content .page-content .my-files .doc-uploader.dropzone.dz-drag-hover .overlay::before,
main.main-content .page-content .my-files .doc-uploader.dropzone.dz-drag-hover .overlay::after {
  color: #18b28b;
  display: block;
  left: 225px;
  opacity: 1;
  position: fixed;
  text-align: center;
  text-shadow: 0 0 2px #ffffff;
  width: calc(100% - 265px);
  z-index: 5;
}
main.main-content .page-content .my-files .doc-uploader.dropzone.dz-drag-hover .doc-uploader-outlet-wrap .flex-row,
main.main-content .page-content .my-files .doc-uploader.dropzone.dz-drag-hover .doc-uploader-outlet-wrap h1,
main.main-content .page-content .my-files .doc-uploader.dropzone.dz-drag-hover .doc-uploader-outlet-wrap h2 {
  opacity: 0.1;
}
main.main-content .page-content .my-files .doc-uploader-outlet-wrap > h1 {
  margin-top: 40px;
  padding-top: 50px;
}
main.main-content .page-content .my-files .doc-uploader-outlet-wrap > h2 {
  margin: 25px 0 0 0;
  padding-bottom: 30px;
}
main.main-content .page-content .shares .no-content {
  margin: 50px 0;
}
.modal-scroll-container .loading-indicator {
  position: static;
}
.modal-scroll-container .loading-text {
  margin: -19px 0 15px 0 !important;
  color: #555555;
  font-size: 12px;
}
.dz-message {
  display: none;
}
[class^="route-error-page"] section h1 {
  color: white;
  text-align: center;
}
body.is-not-authenticated[class^="route-error-page"] main section {
  background: none;
}
.page-content > .loading-indicator {
  top: 100px;
}
.loading-indicator {
  text-align: center;
  top: 0px;
  left: 0px;
  color: #243b5f;
  position: absolute;
  width: 100% !important;
  z-index: 200;
}
.loading-indicator h1 {
  margin: 50px 0;
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 300;
}
.chart-loading-indicator {
  text-align: center;
  width: 100% !important;
  z-index: 9999;
  color: #243b5f;
}
.route-loading .spinner,
.loading-indicator .spinner,
.chart-loading-indicator .spinner {
  width: 70px;
  height: 70px;
  background: url(/assets/img/lens-loading.gif);
  background-size: cover;
  margin: 12px auto 25px auto;
}
.route-loading.mini .spinner,
.loading-indicator.mini .spinner,
.chart-loading-indicator.mini .spinner {
  height: 25px;
  width: 25px;
  border-width: 3px;
  margin: 7px auto;
}
.route-user-settings-index #ember-basic-dropdown-wormhole .client-select-dropdown.partner-select-dropdown {
  border-top: none;
  border-radius: 0 0 4px 4px;
}
main.main-content .user-settings {
  position: relative;
}
main.main-content .user-settings h2,
main.main-content .user-settings h3 {
  margin: 0;
  font-weight: normal;
}
main.main-content .user-settings .settings-wrapper {
  padding: 30px !important;
  max-width: 700px;
  margin: 20px auto !important;
}
main.main-content .user-settings .collapsible-content {
  background: #f3f3f3;
  position: relative;
}
main.main-content .user-settings .collapsible-content:nth-last-of-type(2n) {
  background: #f8f8f8;
}
main.main-content .user-settings .collapsible-content .collapsible-content-wrapper {
  padding: 0 30px 30px;
}
main.main-content .user-settings .collapsible-content .collapsible-content-wrapper .standard-button {
  padding: 0 40px;
  background: #555555;
  margin-top: 10px;
}
main.main-content .user-settings .collapsible-content .org-label {
  display: none;
}
main.main-content .user-settings .error-message {
  color: #ed4651;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 700;
}
main.main-content .user-settings .user-info {
  padding: 30px;
  background: #f8f8f8;
}
main.main-content .user-settings .user-info .flex-row {
  margin-bottom: 10px;
}
main.main-content .user-settings .user-info .user-wrapper {
  width: 101px;
  max-width: 101px;
  margin: 0;
}
main.main-content .user-settings .user-info .user-wrapper[data-tooltip]:hover label {
  cursor: pointer;
}
main.main-content .user-settings .user-info .user-wrapper[data-tooltip]:hover:after {
  height: 24px;
  padding: 0 9px;
  left: 76px;
  line-height: 24px;
  line-height: 2.4rem;
  background: #555555;
  border-radius: 3px;
}
main.main-content .user-settings .user-info .user-wrapper[data-tooltip]:hover:before {
  border: solid transparent;
  border-color: rgba(136, 183, 213, 0);
  border-top-color: #555555;
  border-width: 10px;
  content: " ";
  height: 0;
  margin-top: -5px;
  pointer-events: none;
  position: absolute;
  right: 24px;
  top: -7px;
  width: 0;
}
main.main-content .user-settings .user-info .name-org {
  margin: 8px 20px 7px;
  text-align: center;
}
main.main-content .user-settings .user-info .name-org h2,
main.main-content .user-settings .user-info .name-org h3 {
  color: #555555;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 23px;
  line-height: 2.3rem;
}
main.main-content .user-settings .user-info .name-org h2 {
  font-size: 25px;
  font-size: 2.5rem;
  line-height: 27px;
  line-height: 2.7rem;
  margin-bottom: 1px;
  font-weight: 300;
}
main.main-content .user-settings .user-info .user-item {
  color: #555555;
  font-size: 12px;
  font-size: 1.2rem;
  margin: 0 0 0 1px;
  height: 24px;
  line-height: 24px;
  line-height: 2.4rem;
  padding-left: 140px;
}
main.main-content .user-settings .user-info .user-item strong {
  display: inline-block;
  margin-right: 20px;
  width: 101px;
  text-align: right;
}
main.main-content .user-settings .user-info .user-item span:first-of-type input[readonly="true"] {
  margin-left: -3px;
}
main.main-content .user-settings .user-info .user-item input[readonly="true"] {
  background: transparent;
  border: none;
  height: auto;
  padding: 0;
  pointer-events: none;
  width: 64px;
}
main.main-content .user-settings .user-info .instruction-title {
  color: #555555;
  font-size: 20px;
  font-size: 2rem;
  margin-top: 28px;
  text-align: center;
  text-transform: capitalize;
  font-weight: 300;
}
main.main-content .user-settings .default-page .standard-button,
main.main-content .user-settings .password-change .standard-button {
  transition: 0.6s;
  opacity: 1;
}
main.main-content .user-settings .default-page .standard-button.disabled,
main.main-content .user-settings .password-change .standard-button.disabled {
  pointer-events: none;
  opacity: 0.35;
  transition: 0.6s;
}
main.main-content .user-settings .default-page h3 {
  font-size: 14px;
  font-size: 1.4rem;
  color: #555555;
  text-align: left;
  font-weight: bold;
  margin: 0 0 5px 0;
}
main.main-content .user-settings .default-page .info-text {
  color: #555555;
  font-size: 12px;
  font-size: 1.2rem;
  margin: 0 0 20px 0;
  text-align: left;
}
main.main-content .user-settings .default-page .inline-error {
  font-size: 11px;
  font-size: 1.1rem;
}
main.main-content .user-settings .default-page .starting-page-selector {
  border-radius: 4px;
}
main.main-content .user-settings .default-page .starting-page-selector.standard {
  height: 23px;
  border: 1px solid #aaaaaa;
}
main.main-content .user-settings .default-page .starting-org-selector {
  text-align: left;
  font-size: 12px;
  font-size: 1.2rem;
  color: #555555;
  text-wrap: nowrap;
}
main.main-content .user-settings .default-page .starting-org-selector .ember-power-select-status-icon {
  border: none;
  position: absolute;
  margin: 0;
  display: inline-block;
  width: 24px;
  height: 24px;
  right: 0;
  top: -1px;
  background: white url(/assets/img/select-dropdown-icon.svg) no-repeat calc(100% + 1px) center;
  background-size: cover;
  transform: rotate(0) !important;
}
main.main-content .user-settings .default-page select.standard {
  width: 100%;
}
main.main-content .user-settings .default-page select.standard.error {
  box-shadow: #d34612 0px 0px 5px 1px;
  border: solid 1px #d34612;
}
main.main-content .user-settings .default-page .collapsible-content-wrapper {
  text-align: center;
}
main.main-content .user-settings .default-page .collapsible-content-wrapper .standard-button {
  margin-top: 30px;
}
main.main-content .user-settings .password-change {
  color: #555555;
}
main.main-content .user-settings .password-change .error-message {
  margin-left: 137px;
}
main.main-content .user-settings .password-change .success-overlay {
  padding-top: 100px;
}
main.main-content .user-settings .password-change .requirement-wrapper {
  position: relative;
  overflow: hidden;
  height: 90px;
}
main.main-content .user-settings .password-change .requirement-wrapper .requirements {
  position: absolute;
  top: 0;
  left: 117px;
}
main.main-content .user-settings .password-change .requirement-wrapper .requirement {
  height: 15px;
  line-height: 15px;
  line-height: 1.5rem;
  margin-bottom: 3px;
  transition: 0.6s;
}
main.main-content .user-settings .password-change .requirement-wrapper .requirement.valid {
  color: #18b28b;
}
main.main-content .user-settings .password-change .requirement-wrapper .requirement.valid img {
  opacity: 1;
}
main.main-content .user-settings .password-change .requirement-wrapper .requirement img {
  height: 13px;
  margin: 1px 0 -2px;
  opacity: 0;
  transition: 0.6s;
  width: 13px;
}
main.main-content .user-settings .password-change .requirement-wrapper .requirement span {
  font-size: 12px;
  font-size: 1.2rem;
}
main.main-content .user-settings .password-change .collapsible-content-wrapper > div {
  width: 350px;
  margin: 0 auto;
}
main.main-content .user-settings .password-change .button-wrap {
  text-align: center;
}
main.main-content .user-settings .password-change label {
  display: inline-block;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 700;
  margin-right: 20px;
  width: 110px;
  text-align: right;
}
main.main-content .user-settings .password-change input {
  width: 200px;
}
main.main-content .user-settings .two-fa {
  color: #555555;
}
main.main-content .user-settings .two-fa .collapsible-content-wrapper {
  max-width: 490px;
  margin: 0 auto;
}
main.main-content .user-settings .two-fa .error-message {
  text-align: center;
  margin: 0;
  line-height: 23px;
  line-height: 2.3rem;
}
main.main-content .user-settings .two-fa .reset-info {
  margin: 0 10px 0 35px;
  font-size: 12px;
  font-size: 1.2rem;
  font-style: italic;
}
main.main-content .user-settings .two-fa h3 {
  text-align: center;
  font-size: 19px;
  font-size: 1.9rem;
  margin: 26px 0 20px;
}
main.main-content .user-settings .two-fa .info {
  background: white;
  display: block;
  padding: 18px 68px;
  text-align: center;
  font-size: 12px;
  font-size: 1.2rem;
}
main.main-content .user-settings .two-fa .info > p {
  margin: 0;
}
main.main-content .user-settings .two-fa .info .flex-row {
  margin-right: 0;
}
main.main-content .user-settings .two-fa .info .flex-row.phone-imgs {
  margin-top: 18px;
}
main.main-content .user-settings .two-fa .info .flex-row.phone-imgs .separator {
  background: #696e87;
  width: 1px;
  max-width: 1px;
  margin: 0 39px;
}
main.main-content .user-settings .two-fa .info .flex-row.phone-imgs img {
  height: auto;
  width: 100%;
  max-width: 100%;
}
main.main-content .user-settings .two-fa .info .flex-row.button-row {
  margin-top: 15px;
}
main.main-content .user-settings .two-fa .info .flex-row.button-row .standard-button.disabled {
  background: #505d9c;
  margin: 0;
  opacity: 0.5;
  pointer-events: none;
  padding: 0;
}
main.main-content .user-settings .two-fa .info .flex-row.button-row span {
  font-size: 12px;
  font-size: 1.2rem;
  flex: 0.5;
  line-height: 24px;
  line-height: 2.4rem;
  text-transform: uppercase;
  font-weight: 700;
}
main.main-content .user-settings .two-fa .underline {
  text-decoration: underline;
}
main.main-content .user-settings .two-fa .standard-button.reset-2fa {
  display: block;
  margin: 28px auto 0;
}
main.main-content .user-settings .two-fa .success-overlay {
  padding-top: 206px;
}
main.main-content .user-settings .effective-date,
main.main-content .user-settings .expiration-date {
  color: black;
}
form.doc-uploader.is-uploading .is-processing {
  position: relative;
  min-height: 100px;
  margin: 0;
}
.route-vault-index div.modal.share-file + .content input[type="search"].standard.search,
.route-vault-share div.modal.share-file + .content input[type="search"].standard.search,
.route-vault-request div.modal.share-file + .content input[type="search"].standard.search {
  background: white url(/assets/img/icon-search-teal.svg) no-repeat 99% 4px;
  background-size: 15px;
}
.route-vault-index div.modal.share-file + .content h1,
.route-vault-share div.modal.share-file + .content h1,
.route-vault-request div.modal.share-file + .content h1 {
  color: #243b5f;
  border-bottom: solid 1px #e6e6e6;
  padding: 0px 0px 20px 0px;
}
.route-vault-index div.modal.share-file + .content h1:before,
.route-vault-share div.modal.share-file + .content h1:before,
.route-vault-request div.modal.share-file + .content h1:before {
  font-family: "fontawesome" !important;
  content: "\f064";
  color: #2e8b9d;
  padding: 0px 10px 0px 0px;
}
.route-vault-index div.modal.share-file + .content .shared-item-title,
.route-vault-share div.modal.share-file + .content .shared-item-title,
.route-vault-request div.modal.share-file + .content .shared-item-title {
  background: #fbfbfb;
  border: solid 1px #e6e6e6;
  padding: 10px 20px 10px 20px;
  line-height: 18px;
  color: #555555;
  text-align: left;
}
.route-vault-index div.modal.share-file + .content .share-card-body,
.route-vault-share div.modal.share-file + .content .share-card-body,
.route-vault-request div.modal.share-file + .content .share-card-body {
  border: none;
  margin: 0;
  color: #555555;
  padding: 0px 15px 0px 15px;
}
.route-vault-index div.modal.share-file + .content h3,
.route-vault-share div.modal.share-file + .content h3,
.route-vault-request div.modal.share-file + .content h3 {
  text-align: left;
  display: inline-block;
  font-weight: 300;
}
.route-vault-index div.modal.share-file + .content .share,
.route-vault-share div.modal.share-file + .content .share,
.route-vault-request div.modal.share-file + .content .share {
  margin-bottom: 0;
}
.route-vault-index div.modal.share-file + .content .share + h3,
.route-vault-share div.modal.share-file + .content .share + h3,
.route-vault-request div.modal.share-file + .content .share + h3 {
  display: block;
  border-bottom: solid 1px #e6e6e6;
  padding: 0px 0px 10px 0px;
}
.route-vault-index div.modal.share-file + .content .share + h3:before,
.route-vault-share div.modal.share-file + .content .share + h3:before,
.route-vault-request div.modal.share-file + .content .share + h3:before {
  font-family: "fontawesome" !important;
  content: "\f007";
  color: #2e8b9d;
  padding: 0px 5px 0px 0px;
}
.route-vault-index div.modal.share-file + .content .share .duration,
.route-vault-share div.modal.share-file + .content .share .duration,
.route-vault-request div.modal.share-file + .content .share .duration {
  margin-left: 0;
}
.route-vault-index div.modal.share-file + .content .share .duration select,
.route-vault-share div.modal.share-file + .content .share .duration select,
.route-vault-request div.modal.share-file + .content .share .duration select {
  width: 175px;
}
.route-vault-index div.modal.share-file + .content .share .duration h3,
.route-vault-share div.modal.share-file + .content .share .duration h3,
.route-vault-request div.modal.share-file + .content .share .duration h3 {
  margin-right: 5px;
}
.route-vault-index div.modal.share-file + .content .share .duration h3:before,
.route-vault-share div.modal.share-file + .content .share .duration h3:before,
.route-vault-request div.modal.share-file + .content .share .duration h3:before {
  font-family: "fontawesome" !important;
  content: "\f017";
  color: #2e8b9d;
  padding: 0px 5px 0px 0px;
}
.route-vault-index main.main-content .page-content section,
.route-vault-share main.main-content .page-content section,
.route-vault-request main.main-content .page-content section {
  background: none;
  border: none;
  padding: 0;
}
.route-vault-index .page-content > section,
.route-vault-share .page-content > section,
.route-vault-request .page-content > section {
  height: calc(100% - 40px);
  max-height: 910px;
}
.route-vault-index .page-content form.doc-uploader > .standard-button.upload,
.route-vault-share .page-content form.doc-uploader > .standard-button.upload,
.route-vault-request .page-content form.doc-uploader > .standard-button.upload {
  display: none;
}
.route-vault-index form.doc-uploader,
.route-vault-share form.doc-uploader,
.route-vault-request form.doc-uploader {
  float: left;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.route-vault-index form.doc-uploader.dz-drag-hover:not(.is-uploading),
.route-vault-share form.doc-uploader.dz-drag-hover:not(.is-uploading),
.route-vault-request form.doc-uploader.dz-drag-hover:not(.is-uploading) {
  margin: -6px;
  padding: 5px;
  border: 1px dashed #d89680;
  width: 100%;
}
.route-vault-index form.doc-uploader .doc-uploader-outlet-wrap,
.route-vault-share form.doc-uploader .doc-uploader-outlet-wrap,
.route-vault-request form.doc-uploader .doc-uploader-outlet-wrap {
  height: 100%;
}
.route-vault-index form.doc-uploader div.vault-list,
.route-vault-share form.doc-uploader div.vault-list,
.route-vault-request form.doc-uploader div.vault-list {
  float: left;
  box-sizing: border-box;
  width: calc(100% + 40px);
  margin: 10px 0 0 -20px;
  padding: 6px 20px 0 20px;
  position: relative;
  height: 100%;
  overflow: auto;
  font-size: 0px;
  font-size: 0rem;
}
.route-vault-index form.doc-uploader div.vault-list + .doc-uploader-outlet-wrap,
.route-vault-share form.doc-uploader div.vault-list + .doc-uploader-outlet-wrap,
.route-vault-request form.doc-uploader div.vault-list + .doc-uploader-outlet-wrap {
  display: none;
}
.route-vault-index form.doc-uploader div.vault-list > h1,
.route-vault-share form.doc-uploader div.vault-list > h1,
.route-vault-request form.doc-uploader div.vault-list > h1,
.route-vault-index form.doc-uploader div.vault-list > h2,
.route-vault-share form.doc-uploader div.vault-list > h2,
.route-vault-request form.doc-uploader div.vault-list > h2 {
  font-weight: 400;
  color: #555555;
  font-family: "neue-helvetica", "Helvetica Neue", Helvetica, sans-serif !important;
  text-align: left;
}
.route-vault-index form.doc-uploader div.vault-list > h1,
.route-vault-share form.doc-uploader div.vault-list > h1,
.route-vault-request form.doc-uploader div.vault-list > h1 {
  margin-bottom: 18px;
  font-weight: 300;
  font-size: 20px;
  font-size: 2rem;
  line-height: 20px;
  line-height: 2rem;
}
.route-vault-index form.doc-uploader div.vault-list > h1:before,
.route-vault-share form.doc-uploader div.vault-list > h1:before,
.route-vault-request form.doc-uploader div.vault-list > h1:before {
  font-family: "fontawesome" !important;
  content: "\f187";
  color: #2e8b9d;
  padding: 0px 5px 0px 0px;
}
.route-vault-index form.doc-uploader div.vault-list > h2,
.route-vault-share form.doc-uploader div.vault-list > h2,
.route-vault-request form.doc-uploader div.vault-list > h2 {
  margin-bottom: 18px;
  font-size: 15px;
  font-size: 1.5rem;
  display: block;
  line-height: 15px;
  line-height: 1.5rem;
  border-bottom: solid 1px #e6e6e6;
  padding: 0px 0px 25px 0px;
}
.route-vault-index form.doc-uploader div.vault-list > h2:before,
.route-vault-share form.doc-uploader div.vault-list > h2:before,
.route-vault-request form.doc-uploader div.vault-list > h2:before {
  font-family: "fontawesome" !important;
  content: "\f06a";
  color: #2e8b9d;
  padding: 0px 5px 0px 0px;
}
.route-vault-index form.doc-uploader div.vault-list .file-list,
.route-vault-share form.doc-uploader div.vault-list .file-list,
.route-vault-request form.doc-uploader div.vault-list .file-list {
  display: flex;
  flex-wrap: wrap;
  padding: 0 5px 0 5px;
}
.route-vault-index form.doc-uploader div.vault-list .file-list .file-to-upload,
.route-vault-share form.doc-uploader div.vault-list .file-list .file-to-upload,
.route-vault-request form.doc-uploader div.vault-list .file-list .file-to-upload {
  background: #fff;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0px 1px 3px rgba(173, 173, 173, 0.4);
  margin: 0 10px 10px 0;
  position: relative;
}
.route-vault-index form.doc-uploader div.vault-list .file-list .file-to-upload .remove-file-btn,
.route-vault-share form.doc-uploader div.vault-list .file-list .file-to-upload .remove-file-btn,
.route-vault-request form.doc-uploader div.vault-list .file-list .file-to-upload .remove-file-btn {
  width: 20px;
  height: 20px;
  border-radius: 100%;
  background: url(/assets/insight/close-icon.svg);
  position: absolute;
  top: -5px;
  background-size: cover;
  right: -5px;
  transition: all 0.5s;
}
.route-vault-index form.doc-uploader div.vault-list .file-list .file-to-upload .remove-file-btn:hover,
.route-vault-share form.doc-uploader div.vault-list .file-list .file-to-upload .remove-file-btn:hover,
.route-vault-request form.doc-uploader div.vault-list .file-list .file-to-upload .remove-file-btn:hover {
  cursor: pointer;
  box-shadow: 0px 1px 2px #adadad;
}
.route-vault-index form.doc-uploader div.vault-list .file-list .file-to-upload .file-header,
.route-vault-share form.doc-uploader div.vault-list .file-list .file-to-upload .file-header,
.route-vault-request form.doc-uploader div.vault-list .file-list .file-to-upload .file-header {
  display: flex;
  align-items: center;
  padding: 0 0 5px 0;
  border-bottom: solid 1px #d6d6d6;
}
.route-vault-index form.doc-uploader div.vault-list .file-list .file-to-upload .file-header h3,
.route-vault-share form.doc-uploader div.vault-list .file-list .file-to-upload .file-header h3,
.route-vault-request form.doc-uploader div.vault-list .file-list .file-to-upload .file-header h3 {
  margin: 0;
  padding: 0;
  color: #243b5f;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 16px;
  line-height: 1.6rem;
  font-weight: 400;
  word-wrap: break-word;
  text-align: left;
  font-family: "neue-helvetica", "Helvetica Neue", Helvetica, sans-serif !important;
}
.route-vault-index form.doc-uploader div.vault-list .file-list .file-to-upload .file-header .file-icon,
.route-vault-share form.doc-uploader div.vault-list .file-list .file-to-upload .file-header .file-icon,
.route-vault-request form.doc-uploader div.vault-list .file-list .file-to-upload .file-header .file-icon {
  display: block;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 14px;
  margin: 0;
}
.route-vault-index form.doc-uploader div.vault-list .file-list .file-to-upload .file-header .file-icon:before,
.route-vault-share form.doc-uploader div.vault-list .file-list .file-to-upload .file-header .file-icon:before,
.route-vault-request form.doc-uploader div.vault-list .file-list .file-to-upload .file-header .file-icon:before {
  font-family: "fontawesome" !important;
  content: "\f15b";
  color: #2e8b9d;
  padding: 0px 5px 0px 0px;
}
.route-vault-index form.doc-uploader div.vault-list .file-list .file-to-upload .flex-row,
.route-vault-share form.doc-uploader div.vault-list .file-list .file-to-upload .flex-row,
.route-vault-request form.doc-uploader div.vault-list .file-list .file-to-upload .flex-row {
  margin: 0;
  padding: 10px 0px 0px 0px;
}
.route-vault-index form.doc-uploader div.vault-list .file-list .file-to-upload .file-label,
.route-vault-share form.doc-uploader div.vault-list .file-list .file-to-upload .file-label,
.route-vault-request form.doc-uploader div.vault-list .file-list .file-to-upload .file-label {
  display: block;
  font-size: 13px;
  font-size: 1.3rem;
  color: #243b5f;
  text-align: left;
  padding: 0px 0px 5px 0px;
  margin: 0px 0px 7px 0px;
  border-bottom: solid 1px #cccccc;
}
.route-vault-index form.doc-uploader div.vault-list .file-list .file-to-upload select.standard,
.route-vault-share form.doc-uploader div.vault-list .file-list .file-to-upload select.standard,
.route-vault-request form.doc-uploader div.vault-list .file-list .file-to-upload select.standard {
  font-size: 13px;
  font-size: 1.3rem;
  width: 100%;
}
.route-vault-index form.doc-uploader div.vault-list .file-list .file-to-upload select.standard div,
.route-vault-share form.doc-uploader div.vault-list .file-list .file-to-upload select.standard div,
.route-vault-request form.doc-uploader div.vault-list .file-list .file-to-upload select.standard div {
  width: 50%;
}
.route-vault-index form.doc-uploader div.vault-list .file,
.route-vault-share form.doc-uploader div.vault-list .file,
.route-vault-request form.doc-uploader div.vault-list .file {
  position: relative;
  max-width: 350px;
  min-width: 350px;
  margin: 10px 10px;
  padding: 10px 0 15px 0;
  border-radius: 5px;
  vertical-align: top;
  background: white;
}
.route-vault-index form.doc-uploader div.vault-list .file span.icon-circle-cross,
.route-vault-share form.doc-uploader div.vault-list .file span.icon-circle-cross,
.route-vault-request form.doc-uploader div.vault-list .file span.icon-circle-cross {
  position: absolute;
  cursor: pointer;
  font-size: 22px;
  font-size: 2.2rem;
  color: #8a8888;
  top: 7px;
  right: 5px;
  text-align: right;
}
.route-vault-index form.doc-uploader div.vault-list footer,
.route-vault-share form.doc-uploader div.vault-list footer,
.route-vault-request form.doc-uploader div.vault-list footer {
  box-sizing: border-box;
  margin: 40px 0px;
  position: relative;
}
.route-vault-index form.doc-uploader div.vault-list footer .border,
.route-vault-share form.doc-uploader div.vault-list footer .border,
.route-vault-request form.doc-uploader div.vault-list footer .border {
  height: 2px;
  width: 100%;
  position: absolute;
  top: 50%;
  background: #e6e6e6;
  z-index: 1;
}
.route-vault-index form.doc-uploader div.vault-list footer .upload-files-container,
.route-vault-share form.doc-uploader div.vault-list footer .upload-files-container,
.route-vault-request form.doc-uploader div.vault-list footer .upload-files-container {
  display: table;
  margin: 0 auto;
  background: #f8f8f8;
  z-index: 2;
  padding: 0px 60px 0px 60px;
  position: relative;
}
.route-vault-index form.doc-uploader div.vault-list footer .upload-files-container:hover,
.route-vault-share form.doc-uploader div.vault-list footer .upload-files-container:hover,
.route-vault-request form.doc-uploader div.vault-list footer .upload-files-container:hover {
  cursor: pointer;
}
.route-vault-index form.doc-uploader div.vault-list footer .upload-files-container:hover button,
.route-vault-share form.doc-uploader div.vault-list footer .upload-files-container:hover button,
.route-vault-request form.doc-uploader div.vault-list footer .upload-files-container:hover button {
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.3);
}
.route-vault-index form.doc-uploader div.vault-list footer .upload-files-container:hover span,
.route-vault-share form.doc-uploader div.vault-list footer .upload-files-container:hover span,
.route-vault-request form.doc-uploader div.vault-list footer .upload-files-container:hover span {
  color: #2e8b9d;
}
.route-vault-index form.doc-uploader div.vault-list footer .upload-files-container button,
.route-vault-share form.doc-uploader div.vault-list footer .upload-files-container button,
.route-vault-request form.doc-uploader div.vault-list footer .upload-files-container button {
  border-radius: 100%;
  width: 80px;
  height: 80px;
  background: #2e8b9d;
  display: block;
  border: none;
  margin: 0 auto;
  transition: 0.5s;
}
.route-vault-index form.doc-uploader div.vault-list footer .upload-files-container button:before,
.route-vault-share form.doc-uploader div.vault-list footer .upload-files-container button:before,
.route-vault-request form.doc-uploader div.vault-list footer .upload-files-container button:before {
  font-family: "fontawesome" !important;
  content: "\f0ee";
  color: white;
  font-size: 45px;
  font-size: 4.5rem;
}
.route-vault-index form.doc-uploader div.vault-list footer .upload-files-container button:hover,
.route-vault-share form.doc-uploader div.vault-list footer .upload-files-container button:hover,
.route-vault-request form.doc-uploader div.vault-list footer .upload-files-container button:hover {
  cursor: pointer;
}
.route-vault-index form.doc-uploader div.vault-list footer .upload-files-container span,
.route-vault-share form.doc-uploader div.vault-list footer .upload-files-container span,
.route-vault-request form.doc-uploader div.vault-list footer .upload-files-container span {
  font-size: 17px;
  font-size: 1.7rem;
  color: #243b5f;
  display: block;
  text-align: center;
  margin: 10px 0px 0px 0px;
  transition: 0.5s;
}
.route-vault-index .request-form textarea,
.route-vault-share .request-form textarea,
.route-vault-request .request-form textarea {
  resize: none;
  box-sizing: border-box;
  display: block;
  width: 100%;
  height: 100%;
  padding: 10px 17px 0;
  background: white;
  border: 1px solid #e6e6e6;
  border-radius: 5px;
}
.route-vault-index .list-wrapper,
.route-vault-share .list-wrapper,
.route-vault-request .list-wrapper {
  height: 100%;
}
.route-vault-index .list-wrapper .filter-subheader,
.route-vault-share .list-wrapper .filter-subheader,
.route-vault-request .list-wrapper .filter-subheader {
  color: #555555;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 300;
}
.route-vault-index .list-wrapper .filter-subheader:before,
.route-vault-share .list-wrapper .filter-subheader:before,
.route-vault-request .list-wrapper .filter-subheader:before {
  font-family: "fontawesome" !important;
  content: "\f1de";
  color: #2e8b9d;
  padding: 0px 10px 0px 0px;
}
.route-vault-index .list-wrapper .calendar-container > div,
.route-vault-share .list-wrapper .calendar-container > div,
.route-vault-request .list-wrapper .calendar-container > div {
  margin-left: auto;
  margin-right: 2px;
  max-width: 325px;
  display: flex;
  align-items: center;
}
.route-vault-index .list-wrapper .calendar-container > div .date-hyphen,
.route-vault-share .list-wrapper .calendar-container > div .date-hyphen,
.route-vault-request .list-wrapper .calendar-container > div .date-hyphen {
  padding: 0px 5px 0px 5px;
}
.route-vault-index .list-wrapper .calendar-icon,
.route-vault-share .list-wrapper .calendar-icon,
.route-vault-request .list-wrapper .calendar-icon {
  padding-right: 5px;
}
.route-vault-index .list-wrapper .calendar-icon:before,
.route-vault-share .list-wrapper .calendar-icon:before,
.route-vault-request .list-wrapper .calendar-icon:before {
  font-size: 18px;
  font-size: 1.8rem;
  font-family: "fontawesome" !important;
  content: "\f073";
  color: #2e8b9d;
}
.route-vault-index .list-wrapper div.vault-file-filter,
.route-vault-share .list-wrapper div.vault-file-filter,
.route-vault-request .list-wrapper div.vault-file-filter {
  height: 55px;
}
.route-vault-index .list-wrapper div.vault-file-filter + div table,
.route-vault-share .list-wrapper div.vault-file-filter + div table,
.route-vault-request .list-wrapper div.vault-file-filter + div table {
  border-right: 1px solid #e6e6e6;
  border-left: 1px solid #e6e6e6;
}
.route-vault-index .list-wrapper div.vault-file-filter div.group,
.route-vault-share .list-wrapper div.vault-file-filter div.group,
.route-vault-request .list-wrapper div.vault-file-filter div.group {
  min-width: 230px;
}
.route-vault-index .list-wrapper div.vault-file-filter div.group input,
.route-vault-share .list-wrapper div.vault-file-filter div.group input,
.route-vault-request .list-wrapper div.vault-file-filter div.group input {
  background: white;
}
.route-vault-index .list-wrapper .vault-scroll-wrapper,
.route-vault-share .list-wrapper .vault-scroll-wrapper,
.route-vault-request .list-wrapper .vault-scroll-wrapper {
  position: relative;
  height: calc(100% - 55px - 10px - 59px);
  top: 10px;
  bottom: 10px;
  overflow: auto;
  width: 100%;
}
.route-vault-index .list-wrapper .vault-scroll-wrapper > div,
.route-vault-share .list-wrapper .vault-scroll-wrapper > div,
.route-vault-request .list-wrapper .vault-scroll-wrapper > div {
  max-height: 100%;
}
.route-vault-index .list-wrapper .vault-scroll-wrapper .all-data,
.route-vault-share .list-wrapper .vault-scroll-wrapper .all-data,
.route-vault-request .list-wrapper .vault-scroll-wrapper .all-data {
  font-size: 30px;
  font-size: 3rem;
  font-family: "neue-helvetica", "Helvetica Neue", Helvetica, sans-serif !important;
  margin-top: 15px;
  text-align: center;
  font-weight: 100;
}
.route-vault-index .list-wrapper .vault-scroll-wrapper + .modal,
.route-vault-share .list-wrapper .vault-scroll-wrapper + .modal,
.route-vault-request .list-wrapper .vault-scroll-wrapper + .modal {
  position: fixed;
}
.route-vault-index .list-wrapper .innovu-table-striped,
.route-vault-share .list-wrapper .innovu-table-striped,
.route-vault-request .list-wrapper .innovu-table-striped {
  margin: 0;
  border: 1px solid #e6e6e6;
  border-left: none;
  border-right: none;
  table-layout: fixed;
}
.route-vault-index .list-wrapper .innovu-table-striped thead,
.route-vault-share .list-wrapper .innovu-table-striped thead,
.route-vault-request .list-wrapper .innovu-table-striped thead {
  border-bottom: 1px solid #e6e6e6;
  background: #fff;
  color: #555555;
}
.route-vault-index .list-wrapper .innovu-table-striped tr td span,
.route-vault-share .list-wrapper .innovu-table-striped tr td span,
.route-vault-request .list-wrapper .innovu-table-striped tr td span,
.route-vault-index .list-wrapper .innovu-table-striped tr td a,
.route-vault-share .list-wrapper .innovu-table-striped tr td a,
.route-vault-request .list-wrapper .innovu-table-striped tr td a {
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  white-space: nowrap;
  color: #2e8b9d;
  font-weight: 500;
}
.route-vault-index .list-wrapper .innovu-table-striped td.vault-filename,
.route-vault-share .list-wrapper .innovu-table-striped td.vault-filename,
.route-vault-request .list-wrapper .innovu-table-striped td.vault-filename {
  max-width: 100px;
}
.route-vault-index .list-wrapper .innovu-table-striped tr td:nth-child(4),
.route-vault-share .list-wrapper .innovu-table-striped tr td:nth-child(4),
.route-vault-request .list-wrapper .innovu-table-striped tr td:nth-child(4) {
  min-width: 60px;
  display: block;
}
.route-vault-index .list-wrapper .innovu-table-striped colgroup col,
.route-vault-share .list-wrapper .innovu-table-striped colgroup col,
.route-vault-request .list-wrapper .innovu-table-striped colgroup col {
  min-width: 50px;
  border-right: 1px solid #e6e6e6;
  width: 10%;
}
.route-vault-index .list-wrapper .innovu-table-striped colgroup col.select,
.route-vault-share .list-wrapper .innovu-table-striped colgroup col.select,
.route-vault-request .list-wrapper .innovu-table-striped colgroup col.select {
  width: 7%;
}
.route-vault-index .list-wrapper .innovu-table-striped colgroup col.filename,
.route-vault-share .list-wrapper .innovu-table-striped colgroup col.filename,
.route-vault-request .list-wrapper .innovu-table-striped colgroup col.filename {
  width: 35%;
  word-wrap: break-word;
}
.route-vault-index .list-wrapper .innovu-table-striped colgroup col.filesize,
.route-vault-share .list-wrapper .innovu-table-striped colgroup col.filesize,
.route-vault-request .list-wrapper .innovu-table-striped colgroup col.filesize {
  width: 7%;
}
.route-vault-index .list-wrapper .innovu-table-striped th.center-column,
.route-vault-share .list-wrapper .innovu-table-striped th.center-column,
.route-vault-request .list-wrapper .innovu-table-striped th.center-column {
  padding: 8px 5px;
}
.route-vault-index .list-wrapper .innovu-table-striped th.action,
.route-vault-share .list-wrapper .innovu-table-striped th.action,
.route-vault-request .list-wrapper .innovu-table-striped th.action {
  cursor: pointer;
  background: url("/assets/img/sort-button-inactive-teal.svg") no-repeat;
  background-size: 14px 31px;
  background-position: center right;
}
.route-vault-index .list-wrapper .innovu-table-striped th.action.desc,
.route-vault-share .list-wrapper .innovu-table-striped th.action.desc,
.route-vault-request .list-wrapper .innovu-table-striped th.action.desc {
  background: url("/assets/img/sort-button-desc-teal.svg") no-repeat;
  background-size: 14px 31px;
  background-position: center right;
}
.route-vault-index .list-wrapper .innovu-table-striped th.action.asc,
.route-vault-share .list-wrapper .innovu-table-striped th.action.asc,
.route-vault-request .list-wrapper .innovu-table-striped th.action.asc {
  background: url("/assets/img/sort-button-asc-teal.svg") no-repeat;
  background-size: 14px 31px;
  background-position: center right;
}
.route-vault-index .list-wrapper ul.pager,
.route-vault-share .list-wrapper ul.pager,
.route-vault-request .list-wrapper ul.pager {
  margin: 20px 20px 0 0;
}
@media screen and (max-width: 1200px) {
  .route-vault-index .list-wrapper .innovu-table-striped colgroup col:nth-child(1),
  .route-vault-share .list-wrapper .innovu-table-striped colgroup col:nth-child(1),
  .route-vault-request .list-wrapper .innovu-table-striped colgroup col:nth-child(1),
  .route-vault-index .list-wrapper .innovu-table-striped colgroup col:nth-child(2),
  .route-vault-share .list-wrapper .innovu-table-striped colgroup col:nth-child(2),
  .route-vault-request .list-wrapper .innovu-table-striped colgroup col:nth-child(2),
  .route-vault-index .list-wrapper .innovu-table-striped colgroup col:nth-child(4),
  .route-vault-share .list-wrapper .innovu-table-striped colgroup col:nth-child(4),
  .route-vault-request .list-wrapper .innovu-table-striped colgroup col:nth-child(4),
  .route-vault-index .list-wrapper .innovu-table-striped colgroup col:nth-child(5),
  .route-vault-share .list-wrapper .innovu-table-striped colgroup col:nth-child(5),
  .route-vault-request .list-wrapper .innovu-table-striped colgroup col:nth-child(5),
  .route-vault-index .list-wrapper .innovu-table-striped colgroup col:nth-child(6),
  .route-vault-share .list-wrapper .innovu-table-striped colgroup col:nth-child(6),
  .route-vault-request .list-wrapper .innovu-table-striped colgroup col:nth-child(6) {
    width: 14%;
  }
  .route-vault-index .list-wrapper div.vault-file-filter .options-wrapper select.standard:last-of-type,
  .route-vault-share .list-wrapper div.vault-file-filter .options-wrapper select.standard:last-of-type,
  .route-vault-request .list-wrapper div.vault-file-filter .options-wrapper select.standard:last-of-type {
    margin-right: 10px;
  }
}
@media screen and (max-width: 1100px) {
  .route-vault-index table.innovu-table-striped td,
  .route-vault-share table.innovu-table-striped td,
  .route-vault-request table.innovu-table-striped td,
  .route-vault-index table.innovu-table-striped th,
  .route-vault-share table.innovu-table-striped th,
  .route-vault-request table.innovu-table-striped th {
    padding: 8px 10px;
  }
}
.route-report-burst-index .ui-input .ui-field-container.no-label {
  margin-top: 0;
}
.route-report-burst-index .ui-grid {
  padding: 0px 0px 20px 0px;
}
.route-report-burst-index main.main-content .page-content section {
  background: none;
  padding: 0;
  border: none;
}
.filter-dropdown {
  margin-bottom: 10px;
  padding: 1px 39px 0 17px;
}
.report-burst-card {
  background: white;
  border-radius: 10px;
  border: solid 1px #e6e6e6;
  height: 100%;
}
.report-burst-card .header {
  border-bottom: solid 1px #e6e6e6;
  height: 60px;
  position: relative;
}
.report-burst-card .header .icon-container {
  cursor: pointer;
  position: absolute;
  height: 75px;
  width: 75px;
  border-radius: 100%;
  border: solid 1px #e6e6e6;
  left: 25px;
  top: 20px;
  background: #ffffff;
  background: radial-gradient(circle, #ffffff 0%, #f5f5f5 100%);
}
.report-burst-card .header .icon-container .icon {
  height: 40px;
  width: 33px;
  margin: 0 auto;
  margin-top: 15px;
  background: url("/assets/img/report-burst-icon.svg") no-repeat;
}
.report-burst-card .header .bubble-container {
  position: absolute;
  right: 20px;
  top: 20px;
}
.report-burst-card .header .bubble-container .bubble {
  height: 25px;
  width: 25px;
  background: #f8f8f8;
  border: solid 1px #e6e6e6;
  border-radius: 100%;
  display: inline-block;
  margin-left: 10px;
  position: relative;
}
.report-burst-card .header .bubble-container .bubble .count {
  background: #555555;
  color: #fff;
  border-radius: 100%;
  position: absolute;
  top: -8px;
  left: 18px;
  width: 15px;
  text-align: center;
  height: 15px;
  right: 0;
  letter-spacing: 0px;
  font-size: 10px;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.2);
}
.report-burst-card .header .bubble-container .bubble::before {
  font-size: 16px;
  font-size: 1.6rem;
  font-family: "fontawesome" !important;
  color: #2e8b9d;
}
.report-burst-card .header .bubble-container .bubble::after {
  background: #f9f9f9;
  border: solid 1px #cbc8ca;
  color: #555555;
  position: absolute;
  top: 27px;
  right: 0px;
  border-radius: 3px;
  padding: 3px;
  font-size: 10px;
  opacity: 0;
  pointer-events: none;
}
.report-burst-card .header .bubble-container .bubble:hover {
  cursor: help;
}
.report-burst-card .header .bubble-container .bubble:hover::after {
  transition: 0.5s;
  opacity: 1;
}
.report-burst-card .header .bubble-container .bubble.dashboard::before {
  content: "\f009";
  top: 6px;
  left: 6px;
  position: absolute;
}
.report-burst-card .header .bubble-container .bubble.dashboard::after {
  content: "Number of dashboards included in burst";
  width: 105px;
}
.report-burst-card .header .bubble-container .bubble.recipient::before {
  content: "\f0c0";
  top: 6px;
  left: 4px;
  position: absolute;
}
.report-burst-card .header .bubble-container .bubble.recipient::after {
  content: "Number of users/recipients included in burst";
  width: 125px;
}
.report-burst-card .header .bubble-container .card-menu {
  width: 25px;
  display: inline-block;
  height: 25px;
  margin: 0px 0px 0px 10px;
  top: -12px;
  background: #f8f8f8;
  border: 1px solid #e6e6e6;
}
.report-burst-card .header .bubble-container .card-menu nav {
  right: -7px;
}
.report-burst-card .header .bubble-container .card-menu nav .delete span::before {
  color: #ed4651;
}
.report-burst-card .header .bubble-container .card-menu nav .open span::before {
  color: #2e8b9d;
}
.report-burst-card .header .bubble-container .card-menu::before {
  content: "\f085";
  top: 6px;
  color: #555555;
  font-size: 16px;
  font-size: 1.6rem;
}
.report-burst-card .header .bubble-container .card-menu:hover {
  border: 1px solid #2e8b9d;
  cursor: pointer;
}
.report-burst-card .header .bubble-container .card-menu:hover::before {
  color: #2e8b9d;
}
.report-burst-card .content {
  padding: 50px 20px 15px 20px;
}
.report-burst-card .content h2 {
  color: #243b5f;
  font-size: 20px;
  font-size: 2rem;
  line-height: 2rem;
  border-bottom: solid 1px #555555;
  margin: 0px 0px 10px 0px;
  font-weight: 300;
  padding: 0px 0px 10px 0px;
}
.report-burst-card .content p {
  color: #555555;
  font-size: 12px;
  font-size: 1.2rem;
  margin: 0px 0px 5px 0px !important;
  line-height: 12px;
  font-weight: 300;
}
.report-burst-card .content p strong {
  font-weight: 700;
}
.report-burst-card .content .icon::before {
  font-size: 14px;
  font-size: 1.4rem;
  font-family: "fontawesome" !important;
  color: #243b5f;
  margin-right: 5px;
}
.report-burst-card .content .icon.owned::before {
  content: "\f007";
}
.report-burst-card .content .icon.shared::before {
  content: "\f064";
}
.route-report-burst-view-edit .subhead,
.route-report-burst-new .subhead {
  font-size: 17px;
  font-size: 1.7rem;
  font-weight: 300;
  border-bottom: solid 1px #cccccc;
  padding-bottom: 10px;
  color: #243b5f;
}
.route-report-burst-view-edit .subhead.title .icon,
.route-report-burst-new .subhead.title .icon {
  display: inline-block;
  height: 20px;
  width: 15px;
  margin: 0px 10px -5px 0px;
  background: url("/assets/img/report-burst-icon.svg") no-repeat;
}
.route-report-burst-view-edit .subhead.schedule,
.route-report-burst-new .subhead.schedule {
  margin-top: 40px;
}
.route-report-burst-view-edit .subhead.schedule .icon,
.route-report-burst-new .subhead.schedule .icon {
  font-size: 16px;
  font-size: 1.6rem;
  font-family: "fontawesome" !important;
  color: #2e8b9d;
}
.route-report-burst-view-edit .subhead.schedule .icon::before,
.route-report-burst-new .subhead.schedule .icon::before {
  content: "\f073";
  margin-right: 10px;
}
.route-report-burst-view-edit .schedule-container .ui-block .ui-input:last-of-type,
.route-report-burst-new .schedule-container .ui-block .ui-input:last-of-type {
  margin-top: 10px;
}
.route-report-burst-view-edit .schedule-container .ui-block .ui-input .ui-label,
.route-report-burst-new .schedule-container .ui-block .ui-input .ui-label {
  font-size: 16px;
  font-size: 1.6rem;
  color: #555555;
  font-weight: 300;
}
.route-report-burst-view-edit .schedule-container .starting-date,
.route-report-burst-new .schedule-container .starting-date {
  width: 100%;
}
.route-report-burst-view-edit .history-container,
.route-report-burst-new .history-container {
  margin-top: 30px;
  position: relative;
}
.route-report-burst-view-edit .history-container h2,
.route-report-burst-new .history-container h2 {
  font-weight: 300;
  color: #243b5f;
  font-size: 22px;
  font-size: 2.2rem;
}
.route-report-burst-view-edit .history-container h2::before,
.route-report-burst-new .history-container h2::before {
  font-size: 22px;
  font-size: 2.2rem;
  margin-right: 5px;
  font-family: "fontawesome" !important;
  color: #2e8b9d;
  content: "\f017";
}
.route-report-burst-view-edit .history-container .run-now-btn,
.route-report-burst-new .history-container .run-now-btn {
  position: absolute;
  right: 0px;
  padding-right: 23px;
  top: 0px;
  background: #18b28b url(/assets/img/run-report-icon.svg) no-repeat;
  background-size: 15px;
  background-position: 97% 5px;
}
.route-report-burst-view-edit .history-container .chart-loading-indicator,
.route-report-burst-new .history-container .chart-loading-indicator {
  margin-top: 90px;
}
.route-report-burst-view-edit .history-container .content,
.route-report-burst-new .history-container .content {
  background: #fefefe;
  border: solid 1px #e6e6e6;
  height: 288px;
  overflow: auto;
}
.route-report-burst-view-edit .history-container .content .list-item.history,
.route-report-burst-new .history-container .content .list-item.history {
  display: flex;
  align-items: center;
  padding: 20px 20px 20px 20px;
  transition: all 0.3s;
}
.route-report-burst-view-edit .history-container .content .list-item.history:hover,
.route-report-burst-new .history-container .content .list-item.history:hover {
  background: #f3f3f3;
}
.route-report-burst-view-edit .history-container .content .list-item.history .icon,
.route-report-burst-new .history-container .content .list-item.history .icon {
  max-width: 20px;
  margin: 5px 10px 0px 0px;
}
.route-report-burst-view-edit .history-container .content .list-item.history .icon::before,
.route-report-burst-new .history-container .content .list-item.history .icon::before {
  font-size: 25px;
  font-size: 2.5rem;
  font-family: "fontawesome" !important;
  color: #2e8b9d;
}
.route-report-burst-view-edit .history-container .content .list-item.history.history .icon,
.route-report-burst-new .history-container .content .list-item.history.history .icon {
  margin-right: 15px;
}
.route-report-burst-view-edit .history-container .content .list-item.history.history .icon.scheduled::before,
.route-report-burst-new .history-container .content .list-item.history.history .icon.scheduled::before {
  content: "\f274";
}
.route-report-burst-view-edit .history-container .content .list-item.history.history .icon.manual::before,
.route-report-burst-new .history-container .content .list-item.history.history .icon.manual::before {
  content: "\f273";
}
.route-report-burst-view-edit .history-container .content .list-item.history .info,
.route-report-burst-new .history-container .content .list-item.history .info {
  flex: 2;
  position: relative;
}
.route-report-burst-view-edit .history-container .content .list-item.history .info strong,
.route-report-burst-new .history-container .content .list-item.history .info strong {
  font-weight: 300;
  color: #243b5f;
  margin: 0px 0px 5px 0px;
  font-size: 15px;
  font-size: 1.5rem;
}
.route-report-burst-view-edit .history-container .content .list-item.history .info p,
.route-report-burst-new .history-container .content .list-item.history .info p {
  margin: 0px 0px 0px 0px;
  color: #555555;
  font-size: 11px;
  font-size: 1.1rem;
}
.route-report-burst-view-edit .history-container .content .list-item.history .info p span::before,
.route-report-burst-new .history-container .content .list-item.history .info p span::before {
  font-size: 12px;
  font-size: 1.2rem;
  font-family: "fontawesome" !important;
  color: #243b5f;
  margin-right: 5px;
}
.route-report-burst-view-edit .history-container .content .list-item.history .info .download-history-btn,
.route-report-burst-new .history-container .content .list-item.history .info .download-history-btn {
  position: absolute;
  right: 0;
  top: 10px;
  transition: 0.3s;
}
.route-report-burst-view-edit .history-container .content .list-item.history .info .download-history-btn:hover,
.route-report-burst-new .history-container .content .list-item.history .info .download-history-btn:hover {
  background: white;
  border: solid 1px #243b5f;
  color: #243b5f;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2);
}
.route-report-burst-view-edit .history-container .no-history,
.route-report-burst-new .history-container .no-history,
.route-report-burst-view-edit .list.history .no-history,
.route-report-burst-new .list.history .no-history {
  padding: 20px;
}
.route-report-burst-view-edit .history-container .no-history .flex-row,
.route-report-burst-new .history-container .no-history .flex-row,
.route-report-burst-view-edit .list.history .no-history .flex-row,
.route-report-burst-new .list.history .no-history .flex-row {
  align-items: center;
}
.route-report-burst-view-edit .history-container .no-history .icon,
.route-report-burst-new .history-container .no-history .icon,
.route-report-burst-view-edit .list.history .no-history .icon,
.route-report-burst-new .list.history .no-history .icon {
  font-size: 40px;
  font-size: 4rem;
  font-family: "fontawesome" !important;
  color: #969595;
  max-width: 40px;
  margin-right: 10px;
  line-height: 2rem;
}
.route-report-burst-view-edit .history-container .no-history .icon::before,
.route-report-burst-new .history-container .no-history .icon::before,
.route-report-burst-view-edit .list.history .no-history .icon::before,
.route-report-burst-new .list.history .no-history .icon::before {
  content: "\f273";
  margin-right: 10px;
}
.route-report-burst-view-edit .history-container .no-history p,
.route-report-burst-new .history-container .no-history p,
.route-report-burst-view-edit .list.history .no-history p,
.route-report-burst-new .list.history .no-history p {
  font-size: 20px;
  font-size: 2rem;
  line-height: 2rem;
  color: #555555;
}
.route-report-burst-view-edit .history-container .download-history-btn,
.route-report-burst-new .history-container .download-history-btn,
.route-report-burst-view-edit .list.history .download-history-btn,
.route-report-burst-new .list.history .download-history-btn {
  top: 4px;
}
.route-report-burst-view-edit .ui-grid .span-2,
.route-report-burst-new .ui-grid .span-2 {
  grid-column-start: 2;
  grid-column-end: 4;
  grid-row-start: 1;
  grid-row-end: span 1;
}
.run-button-container {
  display: table;
  margin: 0 auto;
  margin-top: 60px;
}
.run-button-container button {
  background: #2e8b9d url(/assets/img/run-report-icon.svg) no-repeat;
  background-size: auto 45px;
  border-radius: 100%;
  width: 80px;
  height: 80px;
  display: block;
  border: none;
  background-position: 22px 20px;
  transition: 0.3s;
}
.run-button-container button:hover {
  cursor: pointer;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.3);
}
.run-button-container strong {
  display: block;
  font-size: 15px;
  font-size: 1.5rem;
  color: #555555;
  margin-top: 5px;
  text-align: center;
}
.list-container {
  background: #fefefe;
  border: solid 1px #e6e6e6;
  padding: 20px;
  margin-top: 43px;
}
.list-container header {
  position: relative;
}
.list-container header input[type="search"].standard.search {
  width: 100%;
  margin-bottom: 10px;
  background-image: white url(/assets/img/icon-search-teal.svg) no-repeat;
  background-position: calc(100% - 10px) center;
  background-size: auto 14px;
}
.list-container header input[type="search"].standard.search:disabled {
  background-color: #dedede;
  background-image: white url(/assets/img/icon-search.svg) no-repeat;
  background-position: calc(100% - 10px) center;
  background-size: auto 14px;
}
.list-container header .select-dashboards,
.list-container header .back-to-users {
  position: absolute;
  right: 0;
  top: 15px;
}
.list-container h2 {
  min-width: 170px;
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 300;
  color: #243b5f;
  margin-right: 20px;
}
.list-container h2 .icon {
  margin-right: 10px;
}
.list-container h2 .icon::before {
  font-size: 25px;
  font-size: 2.5rem;
  font-family: "fontawesome" !important;
  color: #2e8b9d;
}
.list-container h2 .icon.users::before {
  content: "\f0c0";
}
.list-container h2 .icon.dashboards {
  margin-right: 10px;
}
.list-container h2 .icon.dashboards::before {
  content: "\f009";
}
.list-container h2 .icon.history::before {
  content: "\f017";
}
.list-container .list {
  background: #fff;
  border: solid 1px #e6e6e6;
  height: 446px;
  overflow: auto;
}
.list-container .list h3 {
  padding: 20px 0px 0px 20px;
  margin: 0;
}
.list-container .list.selected {
  margin-top: 55px;
  height: 480px;
}
.list-container .list.selected.dashboard {
  margin-top: 55px;
  height: 514px;
}
.list-container .list .list-item {
  display: flex;
  align-items: center;
  padding: 20px 20px 20px 20px;
  transition: all 0.3s;
}
.list-container .list .list-item:hover {
  background: #f3f3f3;
}
.list-container .list .list-item input {
  margin-right: 10px;
}
.list-container .list .list-item .icon {
  max-width: 20px;
  margin: 5px 10px 0px 0px;
}
.list-container .list .list-item .icon::before {
  font-size: 25px;
  font-size: 2.5rem;
  font-family: "fontawesome" !important;
  color: #2e8b9d;
}
.list-container .list .list-item.user .icon::before {
  content: "\f007";
}
.list-container .list .list-item.owner {
  flex-wrap: wrap;
}
.list-container .list .list-item.owner .info span {
  color: #555555;
  font-weight: 400;
}
.list-container .list .list-item.owner .icon::before {
  color: #243b5f;
}
.list-container .list .list-item.owner:hover {
  background: transparent;
}
.list-container .list .list-item.no-users:hover {
  background: #fff;
}
.list-container .list .list-item.no-users .icon::before {
  font-size: 22px;
  font-size: 2.2rem;
  color: #808084;
  content: "\f234";
}
.list-container .list .list-item.no-dashboards:hover {
  background: #fff;
}
.list-container .list .list-item.no-dashboards .icon::before {
  color: #808084;
  content: "\f009";
}
.list-container .list .list-item.dashboard .icon {
  margin-right: 15px;
}
.list-container .list .list-item.dashboard .icon::before {
  content: "\f009";
}
.list-container .list .list-item.history .icon {
  margin-right: 15px;
}
.list-container .list .list-item.history .icon::before {
  content: "\f274";
}
.list-container .list .list-item .info {
  flex: 2;
  position: relative;
}
.list-container .list .list-item .info strong {
  font-weight: 300;
  color: #243b5f;
  margin: 0px 0px 5px 0px;
  font-size: 15px;
  font-size: 1.5rem;
}
.list-container .list .list-item .info p {
  margin: 0px 0px 0px 0px;
  color: #555555;
  font-size: 11px;
  font-size: 1.1rem;
}
.list-container .list .list-item .info p span::before {
  font-size: 12px;
  font-size: 1.2rem;
  font-family: "fontawesome" !important;
  color: #243b5f;
  margin-right: 5px;
}
.list-container .list .list-item .info p span.mine::before {
  content: "\f007";
}
.list-container .list .list-item .info p span.global::before {
  content: "\f0ac";
}
.list-container .list .list-item .info p span.static::before {
  content: "\f023";
}
.list-container .list .list-item .info p span.shared::before {
  content: "\f064";
}
.list-container .list .list-item .info .ui-button.download-history-btn {
  position: absolute;
  right: 0;
  top: 4px;
}
.list-container .list .list-item .remove {
  height: 20px;
  width: 20px;
  background: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  outline: none;
  padding: 0;
  margin-right: 10px;
}
.list-container .list .list-item .remove:hover {
  cursor: pointer;
}
.list-container .list .list-item .remove:hover::before {
  color: #ed4651;
}
.list-container .list .list-item .remove::before {
  transition: all 0.3s;
  font-size: 20px;
  font-size: 2rem;
  font-family: "fontawesome" !important;
  color: #888686;
  content: "\f057";
}
.shared-view .subhead.schedule {
  margin-top: 0;
}
.shared-view .list-container {
  margin-top: 0;
}
.shared-view .list-container header .ui-button {
  position: absolute;
  right: 0;
  bottom: 0px;
}
.shared-view .list-container .list {
  height: 400px;
}
.shared-view .list-container .list.list {
  margin-top: 0;
}
.shared-view .history .no-history {
  display: table;
  margin: 0 auto;
  margin-top: 80px;
}
.shared-view .history .run-button-container {
  margin-top: 0;
}
.history .no-history h1,
.history .chart-loading-indicator h1 {
  font-weight: 300;
  font-size: 28px;
  font-size: 2.8rem;
  line-height: 30px;
  line-height: 3rem;
}
.history .chart-loading-indicator {
  margin-top: 130px;
  color: #555555;
}
.history .chart-loading-indicator h1 {
  text-align: center;
}
div.modal.clone .content {
  max-width: 600px;
}
div.modal.clone .content h1.clone-title {
  display: inline-block;
  padding-left: 10px;
}
div.modal.clone .content p {
  padding: 0;
}
div.modal.clone .ui-grid:last-of-type {
  padding: 0;
}
div.modal.clone .name-field-group .ui-label {
  font-size: 16px;
  font-size: 1.6rem;
  text-align: left;
  padding-bottom: 10px;
}
div.modal.clone .name-field-group input {
  width: 100%;
}
div.modal.clone .clone-icon {
  display: inline-block;
  height: 30px;
  width: 30px;
  margin: 0 auto;
  background: url(/assets/img/clone-icon-filled.svg) no-repeat;
  position: relative;
  top: 3px;
}
div.modal.clone hr {
  border-color: #2e8b9d;
}
div.modal.clone p {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 16px;
  line-height: 1.6rem;
  text-align: left;
}
div.modal.clone .client-select label {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 16px;
  line-height: 1.6rem;
  text-align: left;
  margin-bottom: 8px;
}
div.modal.clone .button-container {
  display: flex;
  align-items: flex-end;
}
div.modal.clone .ui-button.clone {
  margin-right: 10px;
  min-width: 115px;
}
div.modal.clone .ember-power-select-trigger {
  z-index: 9999;
  text-align: left;
  border-radius: 3px;
  border: 1px solid #cbc8ca;
  min-height: 1.77em;
}
.ember-basic-dropdown-content.in-modal {
  z-index: 9999;
}
.insight-dashboard-card {
  position: relative;
}
.insight-dashboard-card input:not(.ui-toggle-switch) {
  max-width: 80%;
  margin: 10px;
}
.insight-dashboard-card .content {
  display: none;
}
.insight-dashboard-card .card {
  border: none;
  border-radius: 0;
  margin-bottom: 15px;
  padding-bottom: 0;
  position: initial;
  transition: 0.3s;
}
.insight-dashboard-card .card:hover {
  box-shadow: 0px 4px 4px -3px rgba(0, 0, 0, 0.15);
}
.insight-dashboard-card .card-body {
  border: 1px solid #e6e6e6;
  background: white;
}
.insight-dashboard-card .insight-model {
  background-color: #f8f8f8;
  border: 1px solid #e6e6e6;
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  padding: 3px 5px;
  text-transform: uppercase;
  font-weight: 600;
  text-align: center;
  min-width: 95px;
}
.insight-dashboard-card .share-card-header {
  margin-right: 0;
  align-items: center;
  padding: 10px;
}
.insight-dashboard-card .share-card-header .action-items {
  position: relative;
  height: 40px;
  max-width: 120px;
  min-width: 120px;
  align-items: center;
  display: flex;
}
.insight-dashboard-card .share-card-header .action-items .insight-dashboard-actions-wrapper {
  right: 45px;
  top: 54px;
}
.insight-dashboard-card .share-card-header span.type-icon {
  font-size: 27px;
  font-size: 2.7rem;
  max-width: 75px;
  min-width: 75px;
  margin-right: 10px;
  text-align: center;
  z-index: 2;
}
.insight-dashboard-card .share-card-header span.type-icon.fa-lock {
  color: #8f5ba4;
}
.insight-dashboard-card .share-card-header span.type-icon.fa-lock + .template-content h2.insight-dashboard-name span:hover {
  color: #8f5ba4;
}
.insight-dashboard-card .share-card-header span.type-icon.fa-globe {
  color: #3188c9;
}
.insight-dashboard-card .share-card-header span.type-icon.fa-globe + .template-content h2.insight-dashboard-name span:hover {
  color: #3188c9;
}
.insight-dashboard-card .share-card-header span.type-icon.fa-share-square-o {
  color: #ff8c19;
}
.insight-dashboard-card .share-card-header span.type-icon.fa-share-square-o + .template-content h2.insight-dashboard-name span:hover {
  color: #ff8c19;
}
.insight-dashboard-card .share-card-header span.type-icon.fa-user {
  color: #18b28b;
}
.insight-dashboard-card .share-card-header span.type-icon.fa-user + .template-content h2.insight-dashboard-name span:hover {
  color: #18b28b;
}
.insight-dashboard-card .share-card-header .template-content {
  width: calc(100% - 135px);
  max-width: calc(100% - 135px);
  margin-right: 0;
}
.insight-dashboard-card .share-card-header .template-content h2.insight-dashboard-name {
  line-height: 24px;
  line-height: 2.4rem;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 400;
  margin: 0 0 3px 0;
}
.insight-dashboard-card .share-card-header .template-content h2.insight-dashboard-name span {
  cursor: pointer;
  transition: 0.3s;
}
.insight-dashboard-card .share-card-header .template-content p.insight-dashboard-description {
  margin: 0 0 3px 0;
}
.insight-dashboard-card .share-card-header .template-content p.insight-dashboard-description.no-description {
  color: #9e9e9e;
}
.insight-dashboard-card .share-card-header .template-content p.insight-dashboard-author {
  margin: 0;
}
.insight-dashboard-card .insight-dashboard-description {
  display: inline-block;
  line-height: 15px;
  line-height: 1.5rem;
  max-width: 100%;
  max-height: 1.5rem;
  overflow: hidden;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  white-space: nowrap;
}
.route-release-notes main.main-content .page-content section {
  background: transparent;
  border: none;
  padding: 0;
}
.route-release-notes main.main-content .page-content section h1 {
  font-weight: 300;
  font-size: 25px;
  font-size: 2.5rem;
  margin: 15px 0 15px 0;
}
.route-release-notes .note-group {
  border: 1px solid #e6e6e6;
  background: white;
  margin-bottom: 10px;
}
.route-release-notes .note-group div:last-child {
  border-bottom: none;
}
.route-release-notes .note-body {
  padding: 0px 15px 15px;
  border-bottom: 1px solid #e6e6e6;
}
.route-release-notes .note-body a {
  color: #2e8b9d;
  font-weight: bold;
}
.route-release-notes .note-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.route-release-notes .note-body li {
  padding-left: 2em;
  text-indent: -0.7em;
  margin-bottom: 5px;
}
.route-release-notes .note-body li::before {
  content: "• ";
}
.route-release-notes .note-body h2 {
  border-bottom: 1px solid #e6e6e6;
  line-height: 1.5em;
}
.route-release-notes .note-body .image-toggle {
  font-weight: bold;
  color: #2e8b9d;
  display: block;
  margin-left: 30px;
  margin-top: 10px;
}
.route-release-notes .note-body .image-toggle:hover {
  cursor: pointer;
}
.route-release-notes .note-body .image-toggle::before {
  margin: 0px 5px 0px 0px;
  font-family: "fontawesome" !important;
  content: "\f03e";
}
.route-release-notes .note-body img {
  width: 60%;
  margin: 10px 0px 10px 30px;
  display: none;
}
.route-release-notes .note-body img.is-open {
  display: block;
}
.route-release-notes .note-body.minor-version li::before {
  color: #2e8b9d;
}
.route-release-notes .note-body.patch-version li::before {
  color: #8f5ba4;
}
.route-release-notes h1,
.route-release-notes h2 {
  font-weight: 300;
}
.route-release-notes h1.new-message,
.route-release-notes h2.new-message {
  margin-top: 0px;
}
.route-release-notes .note-heading {
  border-bottom: 1px solid #e6e6e6;
  margin-right: 0px;
  height: 60px;
  cursor: pointer;
  position: relative;
}
.route-release-notes .note-heading h2 {
  display: inline-block;
  margin-left: 10px;
  line-height: 1.6rem;
}
.route-release-notes .note-heading h2 span {
  font-weight: 200;
}
.route-release-notes .note-heading > span:last-child {
  position: absolute;
}
.route-release-notes .note-heading > div:first-child {
  display: inline-block;
  position: relative;
  width: 60px;
  float: left;
  box-sizing: border-box;
}
.route-release-notes .note-heading.patch-version {
  height: 30px;
}
.route-release-notes .note-heading.patch-version h2 {
  font-size: 15px;
  font-size: 1.5rem;
  margin-top: 6px;
}
.route-release-notes .note-heading.patch-version h2 span {
  font-size: 13px;
  font-size: 1.3rem;
}
.route-release-notes .note-heading.patch-version > span:last-child {
  top: 10px;
  right: 21px;
  height: 11px;
  width: 17px;
  display: block;
  background: url("/assets/img/purple-arrow-down.svg");
  background-size: cover;
}
.route-release-notes .note-heading.patch-version > span:last-child.open {
  transform: rotate(180deg);
}
.route-release-notes .note-heading.patch-version > div:first-child {
  height: 30px;
  border-left: 5px solid #8f5ba4;
  border-right: 1px solid #e6e6e6;
}
.route-release-notes .note-heading.patch-version > div:first-child span {
  position: absolute;
  color: purple;
  font-size: 23px;
  font-size: 2.3rem;
  top: 4px;
  left: 15px;
}
.route-release-notes .note-heading.minor-version {
  height: 60px;
}
.route-release-notes .note-heading.minor-version h2 {
  margin-top: 10px;
}
.route-release-notes .note-heading.minor-version h2 span {
  font-size: 15px;
  font-size: 1.5rem;
}
.route-release-notes .note-heading.minor-version > span:last-child {
  top: 15px;
  right: 15px;
  height: 30px;
  width: 30px;
  display: block;
}
.route-release-notes .note-heading.minor-version > span:last-child.open {
  background: url("/assets/img/collapsible-header-close.svg");
  background-size: cover;
}
.route-release-notes .note-heading.minor-version > span:last-child.closed {
  background: url("/assets/img/collapsible-header-open.svg");
  background-size: cover;
}
.route-release-notes .note-heading.minor-version > div:first-child {
  background: #2e8b9d;
  background-image: url("/assets/img/clipboard-list.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 30px;
  height: 60px;
}
[class^="route-admin-permissions-group"] .admin-navigation h2.standard-h2 {
  font-size: 20px;
  font-size: 2rem;
  line-height: 20px;
  line-height: 2rem;
  font-family: "neue-helvetica", "Helvetica Neue", Helvetica, sans-serif !important;
  font-weight: 400;
  color: #202c47;
  margin: 0px 0px 0px 0px;
}
.route-admin-permissions-group-new .admin-navigation div.group-permissions-editor > div.group-editing-details,
.route-admin-permissions-group-edit .admin-navigation div.group-permissions-editor > div.group-editing-details {
  background-color: #f3f3f3;
  padding: 20px 10px 10px 10px;
}
.route-admin-permissions-group-new .admin-navigation div.group-permissions-editor > div.group-editing-details .deprecation-message,
.route-admin-permissions-group-edit .admin-navigation div.group-permissions-editor > div.group-editing-details .deprecation-message {
  margin: 0.5rem 3rem 0;
}
.route-admin-permissions-group-new .admin-navigation div.group-permissions-editor > div.group-editing-details .deprecation-message div.ui-input > label > div,
.route-admin-permissions-group-edit .admin-navigation div.group-permissions-editor > div.group-editing-details .deprecation-message div.ui-input > label > div {
  background-color: white;
}
.route-admin-permissions-group-new .admin-navigation div.group-permissions-editor > div.group-editing-details > input,
.route-admin-permissions-group-edit .admin-navigation div.group-permissions-editor > div.group-editing-details > input {
  margin-right: 8px;
}
.route-admin-permissions-group-new .admin-navigation div.group-permissions-editor > div.group-editing-details > input:nth-child(1),
.route-admin-permissions-group-edit .admin-navigation div.group-permissions-editor > div.group-editing-details > input:nth-child(1) {
  width: 10%;
  max-width: 100px;
}
.route-admin-permissions-group-new .admin-navigation div.group-permissions-editor > div.group-editing-details > input:nth-child(2),
.route-admin-permissions-group-edit .admin-navigation div.group-permissions-editor > div.group-editing-details > input:nth-child(2) {
  width: 30%;
  max-width: 300px;
}
.route-admin-permissions-group-new .admin-navigation div.group-permissions-editor > div.group-editing-details > input:nth-child(3),
.route-admin-permissions-group-edit .admin-navigation div.group-permissions-editor > div.group-editing-details > input:nth-child(3) {
  width: 50%;
  max-width: 500px;
}
.route-admin-permissions-group-new .admin-navigation div.group-permissions-editor > div.group-editing-details header,
.route-admin-permissions-group-edit .admin-navigation div.group-permissions-editor > div.group-editing-details header {
  padding: 10px;
  background-color: #ededed;
  border-bottom: 1px solid #ababab;
}
.route-admin-permissions-group-new .admin-navigation div.group-permissions-editor > div.group-editing-details header h2.standard-h2,
.route-admin-permissions-group-edit .admin-navigation div.group-permissions-editor > div.group-editing-details header h2.standard-h2 {
  padding: 0;
  margin: 0;
  font-size: 13px;
  font-size: 1.3rem;
  font-weight: bold;
  text-transform: uppercase;
}
.route-admin-permissions-group-new .admin-navigation div.group-permissions-editor > div.group-editing-details header span,
.route-admin-permissions-group-edit .admin-navigation div.group-permissions-editor > div.group-editing-details header span {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.5rem;
  font-weight: normal;
  text-transform: capitalize;
}
.route-admin-permissions-group-new .admin-navigation div.group-permissions-editor > div.group-editing-details header span input,
.route-admin-permissions-group-edit .admin-navigation div.group-permissions-editor > div.group-editing-details header span input {
  margin-top: 0px;
  margin-left: 10px;
}
.route-admin-permissions-group-new .admin-navigation div.group-permissions-editor > div.group-editing-details > div,
.route-admin-permissions-group-edit .admin-navigation div.group-permissions-editor > div.group-editing-details > div {
  margin: 20px 0;
  padding-bottom: 20px;
  border: 1px solid #ababab;
}
.route-admin-permissions-group-new .admin-navigation div.group-permissions-editor > div.group-editing-details > div.feature-subscriptions > input,
.route-admin-permissions-group-edit .admin-navigation div.group-permissions-editor > div.group-editing-details > div.feature-subscriptions > input {
  margin-top: 20px;
  margin-left: 10px;
}
.route-admin-permissions-group-new .admin-navigation div.group-permissions-editor > div.group-editing-details > div.page-subscriptions div.flex-row > div.col-4 div,
.route-admin-permissions-group-edit .admin-navigation div.group-permissions-editor > div.group-editing-details > div.page-subscriptions div.flex-row > div.col-4 div {
  padding: 0px 10px;
}
.route-admin-permissions-group-new .admin-navigation div.group-permissions-editor > div.group-editing-details > div div.flex-row > div.col-4,
.route-admin-permissions-group-edit .admin-navigation div.group-permissions-editor > div.group-editing-details > div div.flex-row > div.col-4 {
  margin-right: 0px;
  max-width: 33.33%;
  width: 33.33%;
}
.route-admin-permissions-group-new .admin-navigation div.group-permissions-editor > div.group-editing-details > div div.flex-row > div.col-4 h3,
.route-admin-permissions-group-edit .admin-navigation div.group-permissions-editor > div.group-editing-details > div div.flex-row > div.col-4 h3 {
  padding: 0px 10px;
}
.route-admin-permissions-group-new .admin-navigation div.group-permissions-editor > div.group-editing-details > div div.flex-row > div.col-4 h3 span,
.route-admin-permissions-group-edit .admin-navigation div.group-permissions-editor > div.group-editing-details > div div.flex-row > div.col-4 h3 span {
  font-size: 0.8em;
  margin-left: 5px;
}
.route-admin-permissions-group-new .admin-navigation div.group-permissions-editor > div.group-editing-details > div div.flex-row > div.col-4 div span,
.route-admin-permissions-group-edit .admin-navigation div.group-permissions-editor > div.group-editing-details > div div.flex-row > div.col-4 div span {
  margin-left: 5px;
  font-weight: 250;
  font-style: italic;
}
.route-admin-permissions-group-new .group-page-buttons,
.route-admin-permissions-group-edit .group-page-buttons {
  position: fixed;
  top: 84px;
  right: 70px;
  transition: 0.2s;
  z-index: 200;
}
.route-admin-permissions-group-new .group-page-buttons.active,
.route-admin-permissions-group-edit .group-page-buttons.active {
  right: 228px;
}
.route-admin-permissions-group-new .group-page-buttons .cancel,
.route-admin-permissions-group-edit .group-page-buttons .cancel {
  margin-right: 10px;
}
.route-admin-permissions-group-new input[type="checkbox"],
.route-admin-permissions-group-edit input[type="checkbox"],
.route-admin-permissions-group-new input[type="checkbox"] + label,
.route-admin-permissions-group-edit input[type="checkbox"] + label {
  cursor: pointer;
}
.route-admin-permissions-group-new .page-subscriptions .col-4 > div,
.route-admin-permissions-group-edit .page-subscriptions .col-4 > div {
  margin: 8px 0 0;
}
.route-admin-permissions-group-new .field-subscriptions,
.route-admin-permissions-group-edit .field-subscriptions {
  padding-bottom: 0 !important;
}
.route-admin-permissions-group-new .field-subscription-content,
.route-admin-permissions-group-edit .field-subscription-content {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}
.route-admin-permissions-group-new .advanced-insight-content,
.route-admin-permissions-group-edit .advanced-insight-content {
  padding: 20px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-flow: row wrap;
}
.route-admin-permissions-group-new .advanced-insight-content .ai-record,
.route-admin-permissions-group-edit .advanced-insight-content .ai-record {
  width: 46%;
  margin: 3px 2%;
}
.route-admin-permissions-group-new .advanced-insight-subscriptions,
.route-admin-permissions-group-edit .advanced-insight-subscriptions {
  position: relative;
}
.route-admin-permissions-group-new .standard-button.header,
.route-admin-permissions-group-edit .standard-button.header {
  position: fixed;
  top: 100px;
  right: 67px;
  opacity: 0;
  transition: 0.2s;
  z-index: 200;
}
.route-admin-permissions-group-new .standard-button.header.active,
.route-admin-permissions-group-edit .standard-button.header.active {
  top: 84px;
  opacity: 1;
}
.route-admin-permissions-group-new .standard-button.header.hidden,
.route-admin-permissions-group-edit .standard-button.header.hidden {
  display: none !important;
}
.route-admin-permissions-group-new .insight-model-sidebar,
.route-admin-permissions-group-edit .insight-model-sidebar {
  min-width: 250px;
  max-width: 250px;
  margin: 15px;
}
.route-admin-permissions-group-new .insight-model-sidebar ul,
.route-admin-permissions-group-edit .insight-model-sidebar ul {
  border: 1px solid #ababab;
  height: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
}
.route-admin-permissions-group-new .insight-model-sidebar ul li,
.route-admin-permissions-group-edit .insight-model-sidebar ul li {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 12px;
  font-size: 1.2rem;
  padding: 8px 12px;
  border-bottom: 1px solid #ababab;
}
.route-admin-permissions-group-new .insight-model-sidebar ul li:hover,
.route-admin-permissions-group-edit .insight-model-sidebar ul li:hover {
  cursor: pointer;
  background: #d9d9d9;
}
.route-admin-permissions-group-new .insight-model-sidebar ul li.active,
.route-admin-permissions-group-edit .insight-model-sidebar ul li.active {
  background: #d9d9d9;
}
.route-admin-permissions-group-new .model-fields,
.route-admin-permissions-group-edit .model-fields {
  width: 100%;
  padding-right: 15px;
}
.route-admin-permissions-group-new .model-fields > h1,
.route-admin-permissions-group-edit .model-fields > h1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: -10px;
  font-size: 24px;
  font-size: 2.4rem;
  color: #243b5f;
  font-weight: 300;
  padding-bottom: 5px;
}
.route-admin-permissions-group-new .model-fields header h2,
.route-admin-permissions-group-edit .model-fields header h2 {
  margin: 0;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 300;
  color: #243b5f;
}
.route-admin-permissions-group-new .model-fields header.insight-header,
.route-admin-permissions-group-edit .model-fields header.insight-header {
  border: 1px solid #ababab;
  padding: 0 !important;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}
.route-admin-permissions-group-new .model-fields header.insight-header .field-icon,
.route-admin-permissions-group-edit .model-fields header.insight-header .field-icon {
  display: block;
  width: 50px;
  min-width: 50px;
  height: 50px;
  text-align: center;
  background: #3188c9;
  margin-right: 20px;
}
.route-admin-permissions-group-new .model-fields header.insight-header .field-icon.measures,
.route-admin-permissions-group-edit .model-fields header.insight-header .field-icon.measures {
  background: #2e8b9d;
}
.route-admin-permissions-group-new .model-fields header.insight-header .field-icon span.fa,
.route-admin-permissions-group-edit .model-fields header.insight-header .field-icon span.fa {
  color: white;
  line-height: 50px;
  font-size: 35px;
  font-size: 3.5rem;
}
.route-admin-permissions-group-new .model-fields header.insight-header h2,
.route-admin-permissions-group-edit .model-fields header.insight-header h2 {
  width: 100%;
  line-height: 50px;
}
.route-admin-permissions-group-new .model-fields header.insight-header h2 + span,
.route-admin-permissions-group-edit .model-fields header.insight-header h2 + span {
  display: block;
  align-self: center;
  box-sizing: border-box;
  min-width: 170px;
  max-width: 170px;
  padding-right: 20px;
  text-align: right;
}
.route-admin-permissions-group-new .model-fields header.insight-header h2 + span label,
.route-admin-permissions-group-edit .model-fields header.insight-header h2 + span label {
  font-weight: 500;
}
.route-admin-permissions-group-new .model-fields .dimension-field-wrapper,
.route-admin-permissions-group-edit .model-fields .dimension-field-wrapper,
.route-admin-permissions-group-new .model-fields .measure-field-wrapper,
.route-admin-permissions-group-edit .model-fields .measure-field-wrapper {
  margin-bottom: 20px;
}
.route-admin-permissions-group-new .model-fields .dimension-field-wrapper > p,
.route-admin-permissions-group-edit .model-fields .dimension-field-wrapper > p,
.route-admin-permissions-group-new .model-fields .measure-field-wrapper > p,
.route-admin-permissions-group-edit .model-fields .measure-field-wrapper > p {
  margin: 8px 0 0;
}
.route-admin-permissions-group-new .model-fields .dimension-field-wrapper .field .fa,
.route-admin-permissions-group-edit .model-fields .dimension-field-wrapper .field .fa,
.route-admin-permissions-group-new .model-fields .measure-field-wrapper .field .fa,
.route-admin-permissions-group-edit .model-fields .measure-field-wrapper .field .fa {
  opacity: 0.5;
  display: inline-block;
  width: 12px;
  color: #3188c9;
  cursor: pointer;
}
.route-admin-permissions-group-new .model-fields .dimension-field-wrapper .field .fa.fa-lock,
.route-admin-permissions-group-edit .model-fields .dimension-field-wrapper .field .fa.fa-lock,
.route-admin-permissions-group-new .model-fields .measure-field-wrapper .field .fa.fa-lock,
.route-admin-permissions-group-edit .model-fields .measure-field-wrapper .field .fa.fa-lock {
  color: #ed4651;
  opacity: 1;
}
.route-admin-permissions-group-new .model-fields .dimension-field-wrapper .field .fa.fa-eye-slash,
.route-admin-permissions-group-edit .model-fields .dimension-field-wrapper .field .fa.fa-eye-slash,
.route-admin-permissions-group-new .model-fields .measure-field-wrapper .field .fa.fa-eye-slash,
.route-admin-permissions-group-edit .model-fields .measure-field-wrapper .field .fa.fa-eye-slash {
  color: black;
  cursor: w-resize;
}
.route-admin-permissions-group-new .model-fields .dimension-field-wrapper .field select.standard.inline,
.route-admin-permissions-group-edit .model-fields .dimension-field-wrapper .field select.standard.inline,
.route-admin-permissions-group-new .model-fields .measure-field-wrapper .field select.standard.inline,
.route-admin-permissions-group-edit .model-fields .measure-field-wrapper .field select.standard.inline {
  display: block;
  margin-top: 5px;
  margin-left: 13px;
}
.route-admin-permissions-group-new .model-fields .dimension-field-wrapper .field label,
.route-admin-permissions-group-edit .model-fields .dimension-field-wrapper .field label,
.route-admin-permissions-group-new .model-fields .measure-field-wrapper .field label,
.route-admin-permissions-group-edit .model-fields .measure-field-wrapper .field label {
  cursor: pointer;
}
.route-admin-permissions-group-new .model-fields .dimension-field-wrapper + header,
.route-admin-permissions-group-edit .model-fields .dimension-field-wrapper + header {
  margin-bottom: 20px;
}
.route-admin-permissions-group-new .model-fields .dimension-field-wrapper + header .select-category,
.route-admin-permissions-group-edit .model-fields .dimension-field-wrapper + header .select-category {
  font-weight: 500;
}
.route-admin-permissions-group-new .model-fields .dimension-category,
.route-admin-permissions-group-edit .model-fields .dimension-category {
  margin-top: 20px;
}
.route-admin-permissions-group-index .admin-navigation > div > div {
  background-color: #f3f3f3;
  margin: 0px;
  padding: 0 0 10px 0;
  width: 100%;
}
.route-admin-permissions-group-index .admin-navigation > div > div header {
  padding: 10px;
  background-color: #e4e4e4;
  border-bottom: 1px solid #ababab;
  position: relative;
  display: flex;
  justify-content: space-between;
}
.route-admin-permissions-group-index .admin-navigation > div > div header h2.standard-header {
  padding: 0;
  margin: 0;
}
.route-admin-permissions-group-index .admin-navigation > div > div header button {
  position: absolute;
  right: 20px;
  top: 8px;
}
.route-admin-permissions-group-index .admin-navigation > div > div > div {
  margin: 20px;
  margin-bottom: 10px;
}
.route-admin-permissions-group-index .admin-navigation > div > div > div > div.flex-row {
  margin-right: 0;
  cursor: pointer;
  border-left: 1px solid #ababab;
}
.route-admin-permissions-group-index .admin-navigation > div > div > div > div.flex-row div {
  margin-right: 0;
  border-right: 1px solid #ababab;
  padding: 8px 8px;
}
.route-admin-permissions-group-index .admin-navigation > div > div > div > div.flex-row:nth-child(odd) {
  background-color: #eeeeee;
}
.route-admin-permissions-group-index .admin-navigation > div > div > div > div.flex-row:hover {
  background-color: #e4e4e4;
}
.route-admin-permissions-group-index .admin-navigation > div > div > div > div.flex-row:first-child {
  border-top: 1px solid #ababab;
  background-color: #e4e4e4;
  cursor: default;
}
.route-admin-permissions-group-index .admin-navigation > div > div > div > div.flex-row:first-child:hover {
  background-color: #e4e4e4;
}
.route-admin-permissions-group-index .admin-navigation > div > div > div > div.flex-row:last-child {
  border-bottom: 1px solid #ababab;
}
[class^="route-admin-user"] main.main-content .page-content section {
  border: none;
  margin: 0px;
  width: 100%;
}
[class^="route-admin-user"] .admin-navigation > div {
  padding: 0;
}
[class^="route-admin-user"] section.user-index .subheader {
  padding: 0px 0px 20px 0px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}
[class^="route-admin-user"] section.user-index .subheader h2 {
  font-weight: 300;
  color: #243b5f;
  font-size: 25px;
  font-size: 2.5rem;
  margin: 0;
}
[class^="route-admin-user-edit"] .editing-wrapper,
[class^="route-admin-user-add"] .editing-wrapper {
  padding: 15px 10px;
  margin-top: 20px;
  border: 1px solid #e6e6e6;
  background: #f8f8f8;
}
[class^="route-admin-user-edit"] .editing-wrapper .add-org,
[class^="route-admin-user-add"] .editing-wrapper .add-org {
  margin-left: 10px;
}
[class^="route-admin-user-edit"] .user-details .standard-button.back,
[class^="route-admin-user-add"] .user-details .standard-button.back {
  margin-right: 10px;
}
[class^="route-admin-user-edit"] .user-details .top-button-wrap,
[class^="route-admin-user-add"] .user-details .top-button-wrap {
  width: auto;
}
[class^="route-admin-user-edit"] .details,
[class^="route-admin-user-add"] .details {
  position: relative;
  padding: 10px;
}
[class^="route-admin-user-edit"] .details .label-text,
[class^="route-admin-user-add"] .details .label-text {
  color: #555555;
}
[class^="route-admin-user-edit"] .admin-page-group,
[class^="route-admin-user-add"] .admin-page-group,
[class^="route-admin-user-edit"] .feature-group,
[class^="route-admin-user-add"] .feature-group {
  border: 1px solid #cacaca;
  margin: 35px 10px;
}
[class^="route-admin-user-edit"] .admin-page-group .admin-subheading,
[class^="route-admin-user-add"] .admin-page-group .admin-subheading,
[class^="route-admin-user-edit"] .feature-group .admin-subheading,
[class^="route-admin-user-add"] .feature-group .admin-subheading {
  height: 30px;
  background: #ebebeb;
  padding: 8px 20px;
  box-sizing: border-box;
  border-bottom: 1px solid #cacaca;
}
[class^="route-admin-user-edit"] .admin-page-group .admin-subheading h3,
[class^="route-admin-user-add"] .admin-page-group .admin-subheading h3,
[class^="route-admin-user-edit"] .feature-group .admin-subheading h3,
[class^="route-admin-user-add"] .feature-group .admin-subheading h3 {
  color: #555555;
  margin: 0px;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 13px;
  font-size: 1.3rem;
}
[class^="route-admin-user-edit"] .admin-page-group .admin-pages,
[class^="route-admin-user-add"] .admin-page-group .admin-pages,
[class^="route-admin-user-edit"] .feature-group .admin-pages,
[class^="route-admin-user-add"] .feature-group .admin-pages,
[class^="route-admin-user-edit"] .admin-page-group .features,
[class^="route-admin-user-add"] .admin-page-group .features,
[class^="route-admin-user-edit"] .feature-group .features,
[class^="route-admin-user-add"] .feature-group .features {
  justify-content: flex-start;
  padding: 10px 20px;
}
[class^="route-admin-user-edit"] .admin-page-group .admin-pages p,
[class^="route-admin-user-add"] .admin-page-group .admin-pages p,
[class^="route-admin-user-edit"] .feature-group .admin-pages p,
[class^="route-admin-user-add"] .feature-group .admin-pages p,
[class^="route-admin-user-edit"] .admin-page-group .features p,
[class^="route-admin-user-add"] .admin-page-group .features p,
[class^="route-admin-user-edit"] .feature-group .features p,
[class^="route-admin-user-add"] .feature-group .features p {
  min-width: 185px;
  max-width: 185px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}
[class^="route-admin-user-edit"] .admin-page-group .admin-pages p label.text-label,
[class^="route-admin-user-add"] .admin-page-group .admin-pages p label.text-label,
[class^="route-admin-user-edit"] .feature-group .admin-pages p label.text-label,
[class^="route-admin-user-add"] .feature-group .admin-pages p label.text-label,
[class^="route-admin-user-edit"] .admin-page-group .features p label.text-label,
[class^="route-admin-user-add"] .admin-page-group .features p label.text-label,
[class^="route-admin-user-edit"] .feature-group .features p label.text-label,
[class^="route-admin-user-add"] .feature-group .features p label.text-label {
  color: #555555;
  margin-left: 8px;
  white-space: nowrap;
  cursor: pointer;
}
[class^="route-admin-user-edit"] .admin-page-group .admin-pages .access-checkbox,
[class^="route-admin-user-add"] .admin-page-group .admin-pages .access-checkbox,
[class^="route-admin-user-edit"] .feature-group .admin-pages .access-checkbox,
[class^="route-admin-user-add"] .feature-group .admin-pages .access-checkbox,
[class^="route-admin-user-edit"] .admin-page-group .features .access-checkbox,
[class^="route-admin-user-add"] .admin-page-group .features .access-checkbox,
[class^="route-admin-user-edit"] .feature-group .features .access-checkbox,
[class^="route-admin-user-add"] .feature-group .features .access-checkbox {
  max-width: 15px;
}
[class^="route-admin-user-edit"] .admin-page-group .features p,
[class^="route-admin-user-add"] .admin-page-group .features p,
[class^="route-admin-user-edit"] .feature-group .features p,
[class^="route-admin-user-add"] .feature-group .features p {
  max-width: 220px;
}
[class^="route-admin-user-edit"] .access-table,
[class^="route-admin-user-add"] .access-table {
  margin: 10px;
}
[class^="route-account-structure"] .header-content-wrapper {
  top: 5px;
  display: flex;
  align-items: center;
}
[class^="route-account-structure"] .header-content-wrapper .btn {
  color: #fff;
  background: #1e3f56;
  border: solid 1px #81a1b8;
  border-radius: 15px;
  font-size: 14px;
  font-size: 1.4rem;
  padding: 5px 10px 5px 10px;
  display: flex;
  align-items: center;
  transition: all 0.5s;
  margin: 0 10px 0 0 !important;
}
[class^="route-account-structure"] .header-content-wrapper .btn:hover {
  cursor: pointer;
  box-shadow: 0px 0.5px 4px 0.5px rgba(0, 0, 0, 0.2);
  background: #235980;
}
[class^="route-account-structure"] .header-content-wrapper .btn .icon {
  margin-right: 5px;
  width: 14px;
  height: 15px;
}
[class^="route-account-structure"] .header-content-wrapper .btn.plan-year-summary .icon {
  background: url("/assets/button-icons/calendar-icon.svg") no-repeat;
  background-size: cover;
}
[class^="route-account-structure"] .header-content-wrapper .btn.as-submit-button.submit .icon {
  background: url("/assets/button-icons/submit-icon.svg") no-repeat;
  background-size: cover;
}
[class^="route-account-structure"] .header-content-wrapper .btn.as-submit-button.unsubmit .icon {
  background: url("/assets/button-icons/unsubmit-icon.svg") no-repeat;
  background-size: cover;
}
[class^="route-account-structure"] .header-content-wrapper .btn.upload .icon {
  background: url("/assets/button-icons/upload-icon.svg") no-repeat;
  background-size: cover;
}
[class^="route-account-structure"] .header-content-wrapper .btn.upload.loading .icon {
  background: none;
}
[class^="route-account-structure"] .header-content-wrapper .as-plan-year-controls {
  margin: 0 10px 0 0;
}
[class^="route-account-structure"] .header-content-wrapper .as-plan-year-controls select.standard {
  border: solid 1px #81a1b8 !important;
  border-radius: 15px;
  background: white url(/assets/button-icons/chevron-icon.svg) no-repeat calc(100% - 10px) center;
  background-size: 10px auto;
  height: 26px;
}
[class^="route-account-structure"] .header-content-wrapper .as-plan-year-controls select.standard:hover {
  cursor: pointer;
}
[class^="route-account-structure"] .header-content-wrapper .as-skeleton-container label {
  text-transform: none !important;
  font-weight: 400;
}
[class^="route-account-structure"] .pdt-wrapper {
  align-items: center;
  display: flex;
  width: calc(100% - 55px);
  padding: 20px 15px 0 20px;
}
[class^="route-account-structure"] .pdt-wrapper h3 {
  color: #1e3f56;
  font-size: 16px;
  font-size: 1.6rem;
  margin: 0 10px 0 0;
  font-weight: 400;
}
[class^="route-account-structure"] .pdt-wrapper .upload-btn-container {
  position: relative;
}
[class^="route-account-structure"] .pdt-wrapper .upload-btn-container input {
  position: absolute;
  top: 0;
  opacity: 0;
  width: 0;
  height: 0;
}
[class^="route-account-structure"] .pdt-wrapper .btn {
  color: #fff;
  background: #1e3f56;
  border: solid 1px #81a1b8;
  appearance: none;
  border-radius: 15px;
  font-size: 14px;
  font-size: 1.4rem;
  padding: 5px 10px 5px 10px;
  display: flex;
  align-items: center;
  transition: all 0.5s;
  margin-right: 10px;
}
[class^="route-account-structure"] .pdt-wrapper .btn .loading-indicator .spinner {
  width: 15px;
  height: 15px;
  background: url(/assets/img/lens-loading.gif);
  background-size: cover;
  margin: 6px 0 0 10px;
}
[class^="route-account-structure"] .pdt-wrapper .btn.disabled {
  pointer-events: none;
  opacity: 0.5;
}
[class^="route-account-structure"] .pdt-wrapper .btn:hover {
  cursor: pointer;
  box-shadow: 0px 0.5px 4px 0.5px rgba(0, 0, 0, 0.2);
  background: #235980;
}
[class^="route-account-structure"] .pdt-wrapper .btn .icon {
  margin-right: 5px;
  width: 14px;
  height: 15px;
}
[class^="route-account-structure"] .pdt-wrapper .btn.download .icon {
  background: url("/assets/button-icons/download-icon.svg") no-repeat;
  background-size: cover;
}
[class^="route-account-structure"] .pdt-wrapper .btn.upload .icon {
  background: url("/assets/button-icons/upload-icon.svg") no-repeat;
  background-size: cover;
}
[class^="route-account-structure"] .pdt-wrapper .btn.upload.loading .icon {
  background: none;
}
[class^="route-account-structure"] .pdt-wrapper .ui-toggle-switch.pdt-toggle {
  overflow: visible;
  height: 28px;
}
[class^="route-account-structure"] .pdt-wrapper .ui-toggle-switch.pdt-toggle label {
  background: #fff;
  border: solid 1px #81a1b8;
}
[class^="route-account-structure"] .pdt-wrapper .ui-toggle-switch.pdt-toggle label::after {
  background: #d8d8d8;
}
[class^="route-account-structure"] .pdt-wrapper .ui-toggle-switch.pdt-toggle input.is-checked + label:after {
  background: #2c72a6;
}
[class^="route-account-structure"] .pdt-wrapper .ui-toggle-switch.pdt-toggle .inset-text {
  font-size: 12px;
  font-size: 1.2rem;
  top: 9px;
  right: 10px;
  font-weight: bold;
  color: #555555;
}
[class^="route-account-structure"] .pdt-wrapper .ui-toggle-switch.pdt-toggle .inset-text.active {
  left: 10px;
}
[class^="route-account-structure"] .pdt-wrapper .toggle-switch-label {
  margin: 4px 0 0 10px;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 500;
  color: #555555;
}
table.plan-year-summary-table th {
  color: #fff;
}
.sbc-uploader-input {
  position: absolute;
  left: 100px;
  width: 0;
  top: 0;
  height: 0;
  opacity: 0;
}
.sbc-uploader-wrapper {
  display: inline-block;
  position: relative;
}
.sbc-uploader-wrapper .sbc-uploaded-file {
  font-size: 12px;
  font-size: 1.2rem;
  color: #555555;
  font-weight: bold;
  background: #f7f7f7;
  padding: 4px;
  border: solid 1px #d6d6d6;
  border-radius: 3px;
  position: relative;
  top: 1px;
}
.sbc-uploader-wrapper .sbc-uploaded-file::before {
  font-family: "fontawesome" !important;
  color: #243b5f;
  margin: 0px 5px 0px 0px;
  font-size: 12px;
  font-size: 1.2rem;
  content: "\f15b";
}
.hidden-field {
  display: none;
}
main.main-content header.content-header.account-structure {
  padding: 14px 20px 8px 18px;
}
.as-group-filter-search {
  cursor: pointer;
}
.as-group-filter-list {
  display: inline-block;
}
.as-filter-conjunction {
  display: inline-block;
  min-width: 54px;
  vertical-align: middle;
}
.as-filter-groups {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 10px;
}
.as-filter-group-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.as-filter-join {
  display: flex;
  align-items: center;
  align-self: stretch;
}
.as-group-filter-logical {
  width: 62px;
}
.as-filter-group-header {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 4px;
  padding-bottom: 5px;
}
.as-filter-group-header select {
  width: 155px;
}
.as-filter-add-condition {
  cursor: pointer;
  color: #2e8b9d;
}
.as-filter-condition {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 2px;
}
.as-filter-connector {
  font-size: 11px;
  font-size: 1.1rem;
  color: #555555;
  text-transform: uppercase;
  min-width: 26px;
  text-align: right;
}
.as-group-filter-operator {
  max-width: 140px;
}
.as-table .ember-table table thead th:has(.as-column-filter) {
  position: relative;
  padding-right: 16px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.as-column-filter {
  position: absolute;
  top: 50%;
  right: 3px;
  transform: translateY(-50%);
  cursor: pointer;
  color: #cacaca;
  text-transform: none;
  font-size: 10px;
  font-size: 1rem;
}
.as-column-filter:hover {
  color: #2e8b9d;
}
.as-column-filter.active {
  color: #2e8b9d;
}
.as-column-filter.active::after {
  content: "";
  position: absolute;
  top: 0;
  right: -1px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #2e8b9d;
}
.ember-basic-dropdown-content.as-column-filter-panel {
  z-index: 9999;
}
.as-column-filter-panel {
  padding: 6px;
  background: #f8f8f8;
  border: solid 1px #2e8b9d;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  cursor: default;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 300;
  color: #555555;
}
.as-column-filter-panel.value-list {
  width: 200px;
}
.as-column-filter-panel.condition-list {
  width: 330px;
}
.as-column-filter-panel > input.standard {
  width: 100%;
  max-width: none;
  margin: 0;
}
.as-column-filter-panel .as-filter-condition {
  margin-top: 0;
  gap: 3px;
}
.as-column-filter-panel .as-filter-condition + .as-filter-condition {
  margin-top: 3px;
}
.as-column-filter-panel .as-filter-condition input.standard {
  flex: 1 1 auto;
  min-width: 0;
}
.as-column-filter-panel .as-filter-condition select.standard {
  flex: 0 0 auto;
}
.as-column-filter-conditions {
  padding-bottom: 5px;
  border-bottom: solid 1px #e6e6e6;
}
.as-column-filter-search {
  margin-bottom: 4px;
}
.as-column-filter-actions {
  display: flex;
  gap: 10px;
  padding: 4px 0;
  border-bottom: solid 1px #e6e6e6;
}
.as-column-filter-actions:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.as-column-filter-link {
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  color: #2e8b9d;
  font-size: 11px;
  font-size: 1.1rem;
  text-transform: uppercase;
}
.as-column-filter-link:disabled {
  cursor: default;
  color: #cacaca;
}
.as-column-filter-values {
  max-height: 220px;
  overflow-y: auto;
  margin: 0;
  padding: 4px 0 0;
  list-style: none;
}
.as-column-filter-value {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 2px 0;
  cursor: pointer;
}
.as-column-filter-value input {
  margin: 0;
  flex: 0 0 auto;
}
.as-column-filter-label {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.as-column-filter-empty {
  margin: 0;
  padding: 4px 0;
  color: #cacaca;
}
.as-column-filter-failed {
  margin: 0;
  padding: 4px 0;
  color: #ed4651;
}
.as-column-filter-failed .as-column-filter-link {
  margin-left: 6px;
}
.viewing-box,
.group-action-box {
  display: inline-block;
  padding: 5px 6px;
  border: 1px solid #cacaca;
  background: #f3f3f3;
}
.viewing-box h3,
.group-action-box h3 {
  display: inline-block;
  font-weight: 300;
  margin: 0;
}
[class^="route-account-structure-financial-components-"] .group-action-box,
[class^="route-account-structure-read-financial-components-"] .group-action-box,
[class^="route-account-structure-write-financial-components-"] .group-action-box {
  margin-left: 10px;
  padding-bottom: 0;
}
[class^="route-account-structure-financial-components-"] .ember-table td.is-fixed-left,
[class^="route-account-structure-read-financial-components-"] .ember-table td.is-fixed-left,
[class^="route-account-structure-write-financial-components-"] .ember-table td.is-fixed-left,
[class^="route-account-structure-financial-components-"] .ember-table td.is-fixed-right,
[class^="route-account-structure-read-financial-components-"] .ember-table td.is-fixed-right,
[class^="route-account-structure-write-financial-components-"] .ember-table td.is-fixed-right {
  z-index: inherit;
}
[class^="route-account-structure-groups"] .et-tr th,
[class^="route-account-structure-read-groups"] .et-tr th,
[class^="route-account-structure-write-groups"] .et-tr th,
[class^="route-account-structure-plan-design-assign"] .et-tr th,
[class^="route-account-structure-read-plan-design-assign"] .et-tr th,
[class^="route-account-structure-write-plan-design-assign"] .et-tr th {
  text-transform: uppercase;
}
[class^="route-account-structure-groups"] h1,
[class^="route-account-structure-read-groups"] h1,
[class^="route-account-structure-write-groups"] h1,
[class^="route-account-structure-plan-design-assign"] h1,
[class^="route-account-structure-read-plan-design-assign"] h1,
[class^="route-account-structure-write-plan-design-assign"] h1,
[class^="route-account-structure-groups"] h2,
[class^="route-account-structure-read-groups"] h2,
[class^="route-account-structure-write-groups"] h2,
[class^="route-account-structure-plan-design-assign"] h2,
[class^="route-account-structure-read-plan-design-assign"] h2,
[class^="route-account-structure-write-plan-design-assign"] h2 {
  font-weight: 300;
}
[class^="route-account-structure-groups"] .options-wrapper,
[class^="route-account-structure-read-groups"] .options-wrapper,
[class^="route-account-structure-write-groups"] .options-wrapper,
[class^="route-account-structure-plan-design-assign"] .options-wrapper,
[class^="route-account-structure-read-plan-design-assign"] .options-wrapper,
[class^="route-account-structure-write-plan-design-assign"] .options-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 10px;
}
[class^="route-account-structure-groups"] .options-wrapper input,
[class^="route-account-structure-read-groups"] .options-wrapper input,
[class^="route-account-structure-write-groups"] .options-wrapper input,
[class^="route-account-structure-plan-design-assign"] .options-wrapper input,
[class^="route-account-structure-read-plan-design-assign"] .options-wrapper input,
[class^="route-account-structure-write-plan-design-assign"] .options-wrapper input,
[class^="route-account-structure-groups"] .options-wrapper button,
[class^="route-account-structure-read-groups"] .options-wrapper button,
[class^="route-account-structure-write-groups"] .options-wrapper button,
[class^="route-account-structure-plan-design-assign"] .options-wrapper button,
[class^="route-account-structure-read-plan-design-assign"] .options-wrapper button,
[class^="route-account-structure-write-plan-design-assign"] .options-wrapper button,
[class^="route-account-structure-groups"] .options-wrapper .standard-button,
[class^="route-account-structure-read-groups"] .options-wrapper .standard-button,
[class^="route-account-structure-write-groups"] .options-wrapper .standard-button,
[class^="route-account-structure-plan-design-assign"] .options-wrapper .standard-button,
[class^="route-account-structure-read-plan-design-assign"] .options-wrapper .standard-button,
[class^="route-account-structure-write-plan-design-assign"] .options-wrapper .standard-button {
  margin-left: 5px;
}
[class^="route-account-structure-groups"] .options-wrapper input.expand,
[class^="route-account-structure-read-groups"] .options-wrapper input.expand,
[class^="route-account-structure-write-groups"] .options-wrapper input.expand,
[class^="route-account-structure-plan-design-assign"] .options-wrapper input.expand,
[class^="route-account-structure-read-plan-design-assign"] .options-wrapper input.expand,
[class^="route-account-structure-write-plan-design-assign"] .options-wrapper input.expand,
[class^="route-account-structure-groups"] .options-wrapper button.expand,
[class^="route-account-structure-read-groups"] .options-wrapper button.expand,
[class^="route-account-structure-write-groups"] .options-wrapper button.expand,
[class^="route-account-structure-plan-design-assign"] .options-wrapper button.expand,
[class^="route-account-structure-read-plan-design-assign"] .options-wrapper button.expand,
[class^="route-account-structure-write-plan-design-assign"] .options-wrapper button.expand,
[class^="route-account-structure-groups"] .options-wrapper .standard-button.expand,
[class^="route-account-structure-read-groups"] .options-wrapper .standard-button.expand,
[class^="route-account-structure-write-groups"] .options-wrapper .standard-button.expand,
[class^="route-account-structure-plan-design-assign"] .options-wrapper .standard-button.expand,
[class^="route-account-structure-read-plan-design-assign"] .options-wrapper .standard-button.expand,
[class^="route-account-structure-write-plan-design-assign"] .options-wrapper .standard-button.expand {
  max-width: 32px;
  transition: max-width 0.5s ease;
  white-space: nowrap;
}
[class^="route-account-structure-groups"] .options-wrapper input.expand.category,
[class^="route-account-structure-read-groups"] .options-wrapper input.expand.category,
[class^="route-account-structure-write-groups"] .options-wrapper input.expand.category,
[class^="route-account-structure-plan-design-assign"] .options-wrapper input.expand.category,
[class^="route-account-structure-read-plan-design-assign"] .options-wrapper input.expand.category,
[class^="route-account-structure-write-plan-design-assign"] .options-wrapper input.expand.category,
[class^="route-account-structure-groups"] .options-wrapper button.expand.category,
[class^="route-account-structure-read-groups"] .options-wrapper button.expand.category,
[class^="route-account-structure-write-groups"] .options-wrapper button.expand.category,
[class^="route-account-structure-plan-design-assign"] .options-wrapper button.expand.category,
[class^="route-account-structure-read-plan-design-assign"] .options-wrapper button.expand.category,
[class^="route-account-structure-write-plan-design-assign"] .options-wrapper button.expand.category,
[class^="route-account-structure-groups"] .options-wrapper .standard-button.expand.category,
[class^="route-account-structure-read-groups"] .options-wrapper .standard-button.expand.category,
[class^="route-account-structure-write-groups"] .options-wrapper .standard-button.expand.category,
[class^="route-account-structure-plan-design-assign"] .options-wrapper .standard-button.expand.category,
[class^="route-account-structure-read-plan-design-assign"] .options-wrapper .standard-button.expand.category,
[class^="route-account-structure-write-plan-design-assign"] .options-wrapper .standard-button.expand.category {
  max-width: 28px;
}
[class^="route-account-structure-groups"] .options-wrapper input.expand.add,
[class^="route-account-structure-read-groups"] .options-wrapper input.expand.add,
[class^="route-account-structure-write-groups"] .options-wrapper input.expand.add,
[class^="route-account-structure-plan-design-assign"] .options-wrapper input.expand.add,
[class^="route-account-structure-read-plan-design-assign"] .options-wrapper input.expand.add,
[class^="route-account-structure-write-plan-design-assign"] .options-wrapper input.expand.add,
[class^="route-account-structure-groups"] .options-wrapper button.expand.add,
[class^="route-account-structure-read-groups"] .options-wrapper button.expand.add,
[class^="route-account-structure-write-groups"] .options-wrapper button.expand.add,
[class^="route-account-structure-plan-design-assign"] .options-wrapper button.expand.add,
[class^="route-account-structure-read-plan-design-assign"] .options-wrapper button.expand.add,
[class^="route-account-structure-write-plan-design-assign"] .options-wrapper button.expand.add,
[class^="route-account-structure-groups"] .options-wrapper .standard-button.expand.add,
[class^="route-account-structure-read-groups"] .options-wrapper .standard-button.expand.add,
[class^="route-account-structure-write-groups"] .options-wrapper .standard-button.expand.add,
[class^="route-account-structure-plan-design-assign"] .options-wrapper .standard-button.expand.add,
[class^="route-account-structure-read-plan-design-assign"] .options-wrapper .standard-button.expand.add,
[class^="route-account-structure-write-plan-design-assign"] .options-wrapper .standard-button.expand.add {
  max-width: 25px;
}
[class^="route-account-structure-groups"] .options-wrapper input.expand.download,
[class^="route-account-structure-read-groups"] .options-wrapper input.expand.download,
[class^="route-account-structure-write-groups"] .options-wrapper input.expand.download,
[class^="route-account-structure-plan-design-assign"] .options-wrapper input.expand.download,
[class^="route-account-structure-read-plan-design-assign"] .options-wrapper input.expand.download,
[class^="route-account-structure-write-plan-design-assign"] .options-wrapper input.expand.download,
[class^="route-account-structure-groups"] .options-wrapper button.expand.download,
[class^="route-account-structure-read-groups"] .options-wrapper button.expand.download,
[class^="route-account-structure-write-groups"] .options-wrapper button.expand.download,
[class^="route-account-structure-plan-design-assign"] .options-wrapper button.expand.download,
[class^="route-account-structure-read-plan-design-assign"] .options-wrapper button.expand.download,
[class^="route-account-structure-write-plan-design-assign"] .options-wrapper button.expand.download,
[class^="route-account-structure-groups"] .options-wrapper .standard-button.expand.download,
[class^="route-account-structure-read-groups"] .options-wrapper .standard-button.expand.download,
[class^="route-account-structure-write-groups"] .options-wrapper .standard-button.expand.download,
[class^="route-account-structure-plan-design-assign"] .options-wrapper .standard-button.expand.download,
[class^="route-account-structure-read-plan-design-assign"] .options-wrapper .standard-button.expand.download,
[class^="route-account-structure-write-plan-design-assign"] .options-wrapper .standard-button.expand.download {
  max-width: 32px;
}
[class^="route-account-structure-groups"] .options-wrapper input.expand.edit-item,
[class^="route-account-structure-read-groups"] .options-wrapper input.expand.edit-item,
[class^="route-account-structure-write-groups"] .options-wrapper input.expand.edit-item,
[class^="route-account-structure-plan-design-assign"] .options-wrapper input.expand.edit-item,
[class^="route-account-structure-read-plan-design-assign"] .options-wrapper input.expand.edit-item,
[class^="route-account-structure-write-plan-design-assign"] .options-wrapper input.expand.edit-item,
[class^="route-account-structure-groups"] .options-wrapper button.expand.edit-item,
[class^="route-account-structure-read-groups"] .options-wrapper button.expand.edit-item,
[class^="route-account-structure-write-groups"] .options-wrapper button.expand.edit-item,
[class^="route-account-structure-plan-design-assign"] .options-wrapper button.expand.edit-item,
[class^="route-account-structure-read-plan-design-assign"] .options-wrapper button.expand.edit-item,
[class^="route-account-structure-write-plan-design-assign"] .options-wrapper button.expand.edit-item,
[class^="route-account-structure-groups"] .options-wrapper .standard-button.expand.edit-item,
[class^="route-account-structure-read-groups"] .options-wrapper .standard-button.expand.edit-item,
[class^="route-account-structure-write-groups"] .options-wrapper .standard-button.expand.edit-item,
[class^="route-account-structure-plan-design-assign"] .options-wrapper .standard-button.expand.edit-item,
[class^="route-account-structure-read-plan-design-assign"] .options-wrapper .standard-button.expand.edit-item,
[class^="route-account-structure-write-plan-design-assign"] .options-wrapper .standard-button.expand.edit-item {
  max-width: 29px;
}
[class^="route-account-structure-groups"] .options-wrapper input.expand::before,
[class^="route-account-structure-read-groups"] .options-wrapper input.expand::before,
[class^="route-account-structure-write-groups"] .options-wrapper input.expand::before,
[class^="route-account-structure-plan-design-assign"] .options-wrapper input.expand::before,
[class^="route-account-structure-read-plan-design-assign"] .options-wrapper input.expand::before,
[class^="route-account-structure-write-plan-design-assign"] .options-wrapper input.expand::before,
[class^="route-account-structure-groups"] .options-wrapper button.expand::before,
[class^="route-account-structure-read-groups"] .options-wrapper button.expand::before,
[class^="route-account-structure-write-groups"] .options-wrapper button.expand::before,
[class^="route-account-structure-plan-design-assign"] .options-wrapper button.expand::before,
[class^="route-account-structure-read-plan-design-assign"] .options-wrapper button.expand::before,
[class^="route-account-structure-write-plan-design-assign"] .options-wrapper button.expand::before,
[class^="route-account-structure-groups"] .options-wrapper .standard-button.expand::before,
[class^="route-account-structure-read-groups"] .options-wrapper .standard-button.expand::before,
[class^="route-account-structure-write-groups"] .options-wrapper .standard-button.expand::before,
[class^="route-account-structure-plan-design-assign"] .options-wrapper .standard-button.expand::before,
[class^="route-account-structure-read-plan-design-assign"] .options-wrapper .standard-button.expand::before,
[class^="route-account-structure-write-plan-design-assign"] .options-wrapper .standard-button.expand::before {
  margin: 1px 10px 0 0;
}
[class^="route-account-structure-groups"] .options-wrapper input.expand:hover,
[class^="route-account-structure-read-groups"] .options-wrapper input.expand:hover,
[class^="route-account-structure-write-groups"] .options-wrapper input.expand:hover,
[class^="route-account-structure-plan-design-assign"] .options-wrapper input.expand:hover,
[class^="route-account-structure-read-plan-design-assign"] .options-wrapper input.expand:hover,
[class^="route-account-structure-write-plan-design-assign"] .options-wrapper input.expand:hover,
[class^="route-account-structure-groups"] .options-wrapper button.expand:hover,
[class^="route-account-structure-read-groups"] .options-wrapper button.expand:hover,
[class^="route-account-structure-write-groups"] .options-wrapper button.expand:hover,
[class^="route-account-structure-plan-design-assign"] .options-wrapper button.expand:hover,
[class^="route-account-structure-read-plan-design-assign"] .options-wrapper button.expand:hover,
[class^="route-account-structure-write-plan-design-assign"] .options-wrapper button.expand:hover,
[class^="route-account-structure-groups"] .options-wrapper .standard-button.expand:hover,
[class^="route-account-structure-read-groups"] .options-wrapper .standard-button.expand:hover,
[class^="route-account-structure-write-groups"] .options-wrapper .standard-button.expand:hover,
[class^="route-account-structure-plan-design-assign"] .options-wrapper .standard-button.expand:hover,
[class^="route-account-structure-read-plan-design-assign"] .options-wrapper .standard-button.expand:hover,
[class^="route-account-structure-write-plan-design-assign"] .options-wrapper .standard-button.expand:hover {
  max-width: 180px;
}
[class^="route-account-structure-groups"] .viewing-box:hover,
[class^="route-account-structure-read-groups"] .viewing-box:hover,
[class^="route-account-structure-write-groups"] .viewing-box:hover,
[class^="route-account-structure-plan-design-assign"] .viewing-box:hover,
[class^="route-account-structure-read-plan-design-assign"] .viewing-box:hover,
[class^="route-account-structure-write-plan-design-assign"] .viewing-box:hover {
  cursor: pointer;
}
[class^="route-account-structure-groups"] .viewing-box select:hover,
[class^="route-account-structure-read-groups"] .viewing-box select:hover,
[class^="route-account-structure-write-groups"] .viewing-box select:hover,
[class^="route-account-structure-plan-design-assign"] .viewing-box select:hover,
[class^="route-account-structure-read-plan-design-assign"] .viewing-box select:hover,
[class^="route-account-structure-write-plan-design-assign"] .viewing-box select:hover {
  cursor: pointer;
}
[class^="route-account-structure-groups"] .group-action-box,
[class^="route-account-structure-read-groups"] .group-action-box,
[class^="route-account-structure-write-groups"] .group-action-box,
[class^="route-account-structure-plan-design-assign"] .group-action-box,
[class^="route-account-structure-read-plan-design-assign"] .group-action-box,
[class^="route-account-structure-write-plan-design-assign"] .group-action-box {
  margin-left: 5px;
}
[class^="route-account-structure-groups"] .ui-accordion.as-filter-accordion,
[class^="route-account-structure-read-groups"] .ui-accordion.as-filter-accordion,
[class^="route-account-structure-write-groups"] .ui-accordion.as-filter-accordion,
[class^="route-account-structure-plan-design-assign"] .ui-accordion.as-filter-accordion,
[class^="route-account-structure-read-plan-design-assign"] .ui-accordion.as-filter-accordion,
[class^="route-account-structure-write-plan-design-assign"] .ui-accordion.as-filter-accordion {
  position: relative;
}
[class^="route-account-structure-groups"] .ui-accordion.as-filter-accordion header,
[class^="route-account-structure-read-groups"] .ui-accordion.as-filter-accordion header,
[class^="route-account-structure-write-groups"] .ui-accordion.as-filter-accordion header,
[class^="route-account-structure-plan-design-assign"] .ui-accordion.as-filter-accordion header,
[class^="route-account-structure-read-plan-design-assign"] .ui-accordion.as-filter-accordion header,
[class^="route-account-structure-write-plan-design-assign"] .ui-accordion.as-filter-accordion header {
  padding: 0 15px;
}
[class^="route-account-structure-groups"] .ui-accordion.as-filter-accordion .ui-accordion-content,
[class^="route-account-structure-read-groups"] .ui-accordion.as-filter-accordion .ui-accordion-content,
[class^="route-account-structure-write-groups"] .ui-accordion.as-filter-accordion .ui-accordion-content,
[class^="route-account-structure-plan-design-assign"] .ui-accordion.as-filter-accordion .ui-accordion-content,
[class^="route-account-structure-read-plan-design-assign"] .ui-accordion.as-filter-accordion .ui-accordion-content,
[class^="route-account-structure-write-plan-design-assign"] .ui-accordion.as-filter-accordion .ui-accordion-content {
  position: absolute;
  z-index: 10;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.3);
}
[class^="route-account-structure-groups"] .ui-accordion.as-filter-accordion .status-indicator,
[class^="route-account-structure-read-groups"] .ui-accordion.as-filter-accordion .status-indicator,
[class^="route-account-structure-write-groups"] .ui-accordion.as-filter-accordion .status-indicator,
[class^="route-account-structure-plan-design-assign"] .ui-accordion.as-filter-accordion .status-indicator,
[class^="route-account-structure-read-plan-design-assign"] .ui-accordion.as-filter-accordion .status-indicator,
[class^="route-account-structure-write-plan-design-assign"] .ui-accordion.as-filter-accordion .status-indicator {
  top: 11px;
}
[class^="route-account-structure-groups"] .ui-accordion.as-filter-accordion .add,
[class^="route-account-structure-read-groups"] .ui-accordion.as-filter-accordion .add,
[class^="route-account-structure-write-groups"] .ui-accordion.as-filter-accordion .add,
[class^="route-account-structure-plan-design-assign"] .ui-accordion.as-filter-accordion .add,
[class^="route-account-structure-read-plan-design-assign"] .ui-accordion.as-filter-accordion .add,
[class^="route-account-structure-write-plan-design-assign"] .ui-accordion.as-filter-accordion .add {
  float: left;
  margin: 10px 10px 10px 0px;
}
[class^="route-account-structure-groups"] .ui-accordion.as-filter-accordion .ui-grid,
[class^="route-account-structure-read-groups"] .ui-accordion.as-filter-accordion .ui-grid,
[class^="route-account-structure-write-groups"] .ui-accordion.as-filter-accordion .ui-grid,
[class^="route-account-structure-plan-design-assign"] .ui-accordion.as-filter-accordion .ui-grid,
[class^="route-account-structure-read-plan-design-assign"] .ui-accordion.as-filter-accordion .ui-grid,
[class^="route-account-structure-write-plan-design-assign"] .ui-accordion.as-filter-accordion .ui-grid {
  clear: both;
}
[class^="route-account-structure-groups"] .as-groups-filter-container,
[class^="route-account-structure-read-groups"] .as-groups-filter-container,
[class^="route-account-structure-write-groups"] .as-groups-filter-container,
[class^="route-account-structure-plan-design-assign"] .as-groups-filter-container,
[class^="route-account-structure-read-plan-design-assign"] .as-groups-filter-container,
[class^="route-account-structure-write-plan-design-assign"] .as-groups-filter-container {
  border: solid 1px #e6e6e6;
  padding: 10px 15px 10px 10px;
  margin-bottom: 10px;
  display: none;
}
[class^="route-account-structure-groups"] .as-groups-filter-container.true,
[class^="route-account-structure-read-groups"] .as-groups-filter-container.true,
[class^="route-account-structure-write-groups"] .as-groups-filter-container.true,
[class^="route-account-structure-plan-design-assign"] .as-groups-filter-container.true,
[class^="route-account-structure-read-plan-design-assign"] .as-groups-filter-container.true,
[class^="route-account-structure-write-plan-design-assign"] .as-groups-filter-container.true {
  display: table;
}
[class^="route-account-structure-groups"] .as-groups-filter-container .add,
[class^="route-account-structure-read-groups"] .as-groups-filter-container .add,
[class^="route-account-structure-write-groups"] .as-groups-filter-container .add,
[class^="route-account-structure-plan-design-assign"] .as-groups-filter-container .add,
[class^="route-account-structure-read-plan-design-assign"] .as-groups-filter-container .add,
[class^="route-account-structure-write-plan-design-assign"] .as-groups-filter-container .add {
  margin-bottom: 10px;
}
[class^="route-account-structure-groups"] .as-groups-filter-container .as-filter-group .fa-close::before,
[class^="route-account-structure-read-groups"] .as-groups-filter-container .as-filter-group .fa-close::before,
[class^="route-account-structure-write-groups"] .as-groups-filter-container .as-filter-group .fa-close::before,
[class^="route-account-structure-plan-design-assign"] .as-groups-filter-container .as-filter-group .fa-close::before,
[class^="route-account-structure-read-plan-design-assign"] .as-groups-filter-container .as-filter-group .fa-close::before,
[class^="route-account-structure-write-plan-design-assign"] .as-groups-filter-container .as-filter-group .fa-close::before {
  font-size: 10px;
  font-size: 1rem;
  position: relative;
  bottom: 2px;
  left: 2px;
}
[class^="route-account-structure-groups"] .as-group-filter-btn,
[class^="route-account-structure-read-groups"] .as-group-filter-btn,
[class^="route-account-structure-write-groups"] .as-group-filter-btn,
[class^="route-account-structure-plan-design-assign"] .as-group-filter-btn,
[class^="route-account-structure-read-plan-design-assign"] .as-group-filter-btn,
[class^="route-account-structure-write-plan-design-assign"] .as-group-filter-btn {
  border: solid 1px #e6e6e6;
  background: url(/assets/img/teal-arrow.svg) #fff no-repeat;
  background-position: 95% 14px;
  background-size: 14px;
  margin-left: 0 !important;
  margin-right: 3px;
  height: 36px;
  width: 125px;
  border-radius: 0;
  text-align: left;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 300;
  color: #555555;
}
[class^="route-account-structure-groups"] .as-group-filter-btn::before,
[class^="route-account-structure-read-groups"] .as-group-filter-btn::before,
[class^="route-account-structure-write-groups"] .as-group-filter-btn::before,
[class^="route-account-structure-plan-design-assign"] .as-group-filter-btn::before,
[class^="route-account-structure-read-plan-design-assign"] .as-group-filter-btn::before,
[class^="route-account-structure-write-plan-design-assign"] .as-group-filter-btn::before {
  color: #2e8b9d;
}
[class^="route-account-structure-groups"] .as-group-filter-btn:hover,
[class^="route-account-structure-read-groups"] .as-group-filter-btn:hover,
[class^="route-account-structure-write-groups"] .as-group-filter-btn:hover,
[class^="route-account-structure-plan-design-assign"] .as-group-filter-btn:hover,
[class^="route-account-structure-read-plan-design-assign"] .as-group-filter-btn:hover,
[class^="route-account-structure-write-plan-design-assign"] .as-group-filter-btn:hover,
[class^="route-account-structure-groups"] .as-group-filter-btn.open,
[class^="route-account-structure-read-groups"] .as-group-filter-btn.open,
[class^="route-account-structure-write-groups"] .as-group-filter-btn.open,
[class^="route-account-structure-plan-design-assign"] .as-group-filter-btn.open,
[class^="route-account-structure-read-plan-design-assign"] .as-group-filter-btn.open,
[class^="route-account-structure-write-plan-design-assign"] .as-group-filter-btn.open {
  border: solid 1px #2e8b9d;
  background: #fff;
  background: url(/assets/img/teal-arrow.svg) #fff no-repeat;
  background-position: 95% 14px;
  background-size: 14px;
}
[class^="route-account-structure-groups"] .as-filter-group,
[class^="route-account-structure-read-groups"] .as-filter-group,
[class^="route-account-structure-write-groups"] .as-filter-group,
[class^="route-account-structure-plan-design-assign"] .as-filter-group,
[class^="route-account-structure-read-plan-design-assign"] .as-filter-group,
[class^="route-account-structure-write-plan-design-assign"] .as-filter-group {
  background: #fcfcfc;
  border: solid 1px #e6e6e6;
  padding: 5px;
  position: relative;
}
[class^="route-account-structure-groups"] .as-filter-group .fa-close,
[class^="route-account-structure-read-groups"] .as-filter-group .fa-close,
[class^="route-account-structure-write-groups"] .as-filter-group .fa-close,
[class^="route-account-structure-plan-design-assign"] .as-filter-group .fa-close,
[class^="route-account-structure-read-plan-design-assign"] .as-filter-group .fa-close,
[class^="route-account-structure-write-plan-design-assign"] .as-filter-group .fa-close {
  border-radius: 100%;
  background: #ed4651;
  width: 12px;
  height: 12px;
  display: block;
  color: white;
  top: -5px;
  right: -7px;
  position: absolute;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.3);
}
[class^="route-account-structure-groups"] .as-filter-group .fa-close::before,
[class^="route-account-structure-read-groups"] .as-filter-group .fa-close::before,
[class^="route-account-structure-write-groups"] .as-filter-group .fa-close::before,
[class^="route-account-structure-plan-design-assign"] .as-filter-group .fa-close::before,
[class^="route-account-structure-read-plan-design-assign"] .as-filter-group .fa-close::before,
[class^="route-account-structure-write-plan-design-assign"] .as-filter-group .fa-close::before {
  font-size: 10px;
  font-size: 1rem;
  position: relative;
  bottom: 2px;
}
[class^="route-account-structure-groups"] .as-filter-group .form-select,
[class^="route-account-structure-read-groups"] .as-filter-group .form-select,
[class^="route-account-structure-write-groups"] .as-filter-group .form-select,
[class^="route-account-structure-plan-design-assign"] .as-filter-group .form-select,
[class^="route-account-structure-read-plan-design-assign"] .as-filter-group .form-select,
[class^="route-account-structure-write-plan-design-assign"] .as-filter-group .form-select {
  margin-right: 5px;
}
[class^="route-account-structure-groups"] .as-filter-group .as-filter-condition .fa-close,
[class^="route-account-structure-read-groups"] .as-filter-group .as-filter-condition .fa-close,
[class^="route-account-structure-write-groups"] .as-filter-group .as-filter-condition .fa-close,
[class^="route-account-structure-plan-design-assign"] .as-filter-group .as-filter-condition .fa-close,
[class^="route-account-structure-read-plan-design-assign"] .as-filter-group .as-filter-condition .fa-close,
[class^="route-account-structure-write-plan-design-assign"] .as-filter-group .as-filter-condition .fa-close {
  position: static;
  box-shadow: none;
  flex: none;
}
[class^="route-account-structure-groups"] .as-filter-group > div,
[class^="route-account-structure-read-groups"] .as-filter-group > div,
[class^="route-account-structure-write-groups"] .as-filter-group > div,
[class^="route-account-structure-plan-design-assign"] .as-filter-group > div,
[class^="route-account-structure-read-plan-design-assign"] .as-filter-group > div,
[class^="route-account-structure-write-plan-design-assign"] .as-filter-group > div {
  display: flex;
}
[class^="route-account-structure-groups"] .group-category-editor section,
[class^="route-account-structure-read-groups"] .group-category-editor section,
[class^="route-account-structure-write-groups"] .group-category-editor section,
[class^="route-account-structure-plan-design-assign"] .group-category-editor section,
[class^="route-account-structure-read-plan-design-assign"] .group-category-editor section,
[class^="route-account-structure-write-plan-design-assign"] .group-category-editor section {
  width: 370px;
}
[class^="route-account-structure-groups"] .group-category-editor .category-card,
[class^="route-account-structure-read-groups"] .group-category-editor .category-card,
[class^="route-account-structure-write-groups"] .group-category-editor .category-card,
[class^="route-account-structure-plan-design-assign"] .group-category-editor .category-card,
[class^="route-account-structure-read-plan-design-assign"] .group-category-editor .category-card,
[class^="route-account-structure-write-plan-design-assign"] .group-category-editor .category-card {
  margin: 0px auto;
  margin-top: 5px;
  width: calc(100% - 10px);
  text-align: left;
  padding: 4px;
  background: #fff;
  border: 1px solid #cacaca;
  color: #555555;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
}
[class^="route-account-structure-groups"] .group-category-editor .category-card .title:before,
[class^="route-account-structure-read-groups"] .group-category-editor .category-card .title:before,
[class^="route-account-structure-write-groups"] .group-category-editor .category-card .title:before,
[class^="route-account-structure-plan-design-assign"] .group-category-editor .category-card .title:before,
[class^="route-account-structure-read-plan-design-assign"] .group-category-editor .category-card .title:before,
[class^="route-account-structure-write-plan-design-assign"] .group-category-editor .category-card .title:before {
  font-family: "fontawesome" !important;
  font-size: 13px;
  font-size: 1.3rem;
  margin-right: 5px;
  color: #2e8b9d;
  content: "\f187";
}
[class^="route-account-structure-groups"] .group-category-editor .category-card .arrow,
[class^="route-account-structure-read-groups"] .group-category-editor .category-card .arrow,
[class^="route-account-structure-write-groups"] .group-category-editor .category-card .arrow,
[class^="route-account-structure-plan-design-assign"] .group-category-editor .category-card .arrow,
[class^="route-account-structure-read-plan-design-assign"] .group-category-editor .category-card .arrow,
[class^="route-account-structure-write-plan-design-assign"] .group-category-editor .category-card .arrow {
  width: 17px;
  height: 10px;
  margin-left: auto;
  display: inline-block;
  background: url(/assets/img/teal-arrow.svg) no-repeat;
}
[class^="route-account-structure-groups"] .group-category-editor .category-card strong,
[class^="route-account-structure-read-groups"] .group-category-editor .category-card strong,
[class^="route-account-structure-write-groups"] .group-category-editor .category-card strong,
[class^="route-account-structure-plan-design-assign"] .group-category-editor .category-card strong,
[class^="route-account-structure-read-plan-design-assign"] .group-category-editor .category-card strong,
[class^="route-account-structure-write-plan-design-assign"] .group-category-editor .category-card strong {
  font-weight: 500;
}
[class^="route-account-structure-groups"] .group-category-editor .category-card:hover,
[class^="route-account-structure-read-groups"] .group-category-editor .category-card:hover,
[class^="route-account-structure-write-groups"] .group-category-editor .category-card:hover,
[class^="route-account-structure-plan-design-assign"] .group-category-editor .category-card:hover,
[class^="route-account-structure-read-plan-design-assign"] .group-category-editor .category-card:hover,
[class^="route-account-structure-write-plan-design-assign"] .group-category-editor .category-card:hover {
  cursor: pointer;
}
[class^="route-account-structure-groups"] .group-category-editor .category-value-container,
[class^="route-account-structure-read-groups"] .group-category-editor .category-value-container,
[class^="route-account-structure-write-groups"] .group-category-editor .category-value-container,
[class^="route-account-structure-plan-design-assign"] .group-category-editor .category-value-container,
[class^="route-account-structure-read-plan-design-assign"] .group-category-editor .category-value-container,
[class^="route-account-structure-write-plan-design-assign"] .group-category-editor .category-value-container {
  background: #f1f1f1;
  padding: 10px 0px 10px 0px;
  border: solid 1px #e6e6e6;
  border-top: none;
}
[class^="route-account-structure-groups"] .group-category-editor .input-wrapper,
[class^="route-account-structure-read-groups"] .group-category-editor .input-wrapper,
[class^="route-account-structure-write-groups"] .group-category-editor .input-wrapper,
[class^="route-account-structure-plan-design-assign"] .group-category-editor .input-wrapper,
[class^="route-account-structure-read-plan-design-assign"] .group-category-editor .input-wrapper,
[class^="route-account-structure-write-plan-design-assign"] .group-category-editor .input-wrapper {
  margin: 5px auto;
  display: flex;
  align-items: center;
  width: 95%;
}
[class^="route-account-structure-groups"] .group-category-editor .input-wrapper input,
[class^="route-account-structure-read-groups"] .group-category-editor .input-wrapper input,
[class^="route-account-structure-write-groups"] .group-category-editor .input-wrapper input,
[class^="route-account-structure-plan-design-assign"] .group-category-editor .input-wrapper input,
[class^="route-account-structure-read-plan-design-assign"] .group-category-editor .input-wrapper input,
[class^="route-account-structure-write-plan-design-assign"] .group-category-editor .input-wrapper input {
  width: 89%;
}
[class^="route-account-structure-groups"] .group-category-editor .input-wrapper button,
[class^="route-account-structure-read-groups"] .group-category-editor .input-wrapper button,
[class^="route-account-structure-write-groups"] .group-category-editor .input-wrapper button,
[class^="route-account-structure-plan-design-assign"] .group-category-editor .input-wrapper button,
[class^="route-account-structure-read-plan-design-assign"] .group-category-editor .input-wrapper button,
[class^="route-account-structure-write-plan-design-assign"] .group-category-editor .input-wrapper button {
  margin-left: 5px;
}
[class^="route-account-structure-groups"] .group-category-editor button.add.add-category,
[class^="route-account-structure-read-groups"] .group-category-editor button.add.add-category,
[class^="route-account-structure-write-groups"] .group-category-editor button.add.add-category,
[class^="route-account-structure-plan-design-assign"] .group-category-editor button.add.add-category,
[class^="route-account-structure-read-plan-design-assign"] .group-category-editor button.add.add-category,
[class^="route-account-structure-write-plan-design-assign"] .group-category-editor button.add.add-category {
  display: block;
  margin: 0 auto;
  margin-top: 10px;
}
[class^="route-account-structure-groups"] .group-category-editor button.add.bulk-link::before,
[class^="route-account-structure-read-groups"] .group-category-editor button.add.bulk-link::before,
[class^="route-account-structure-write-groups"] .group-category-editor button.add.bulk-link::before,
[class^="route-account-structure-plan-design-assign"] .group-category-editor button.add.bulk-link::before,
[class^="route-account-structure-read-plan-design-assign"] .group-category-editor button.add.bulk-link::before,
[class^="route-account-structure-write-plan-design-assign"] .group-category-editor button.add.bulk-link::before {
  content: "";
}
[class^="route-account-structure-groups"] .group-category-editor button.delete-x,
[class^="route-account-structure-read-groups"] .group-category-editor button.delete-x,
[class^="route-account-structure-write-groups"] .group-category-editor button.delete-x,
[class^="route-account-structure-plan-design-assign"] .group-category-editor button.delete-x,
[class^="route-account-structure-read-plan-design-assign"] .group-category-editor button.delete-x,
[class^="route-account-structure-write-plan-design-assign"] .group-category-editor button.delete-x {
  background-color: #ed4651;
}
[class^="route-account-structure-groups"] .group-category-editor .categories-wrapper,
[class^="route-account-structure-read-groups"] .group-category-editor .categories-wrapper,
[class^="route-account-structure-write-groups"] .group-category-editor .categories-wrapper,
[class^="route-account-structure-plan-design-assign"] .group-category-editor .categories-wrapper,
[class^="route-account-structure-read-plan-design-assign"] .group-category-editor .categories-wrapper,
[class^="route-account-structure-write-plan-design-assign"] .group-category-editor .categories-wrapper {
  height: 300px;
  overflow: auto;
  margin-bottom: 10px;
}
[class^="route-account-structure-groups"] .group-editor form .plan-year-checkbox,
[class^="route-account-structure-read-groups"] .group-editor form .plan-year-checkbox,
[class^="route-account-structure-write-groups"] .group-editor form .plan-year-checkbox,
[class^="route-account-structure-plan-design-assign"] .group-editor form .plan-year-checkbox,
[class^="route-account-structure-read-plan-design-assign"] .group-editor form .plan-year-checkbox,
[class^="route-account-structure-write-plan-design-assign"] .group-editor form .plan-year-checkbox {
  font-weight: 700;
  color: #555555;
  margin: 0px 0px 5px 0px;
}
[class^="route-account-structure-groups"] .group-editor form .plan-year-checkbox label,
[class^="route-account-structure-read-groups"] .group-editor form .plan-year-checkbox label,
[class^="route-account-structure-write-groups"] .group-editor form .plan-year-checkbox label,
[class^="route-account-structure-plan-design-assign"] .group-editor form .plan-year-checkbox label,
[class^="route-account-structure-read-plan-design-assign"] .group-editor form .plan-year-checkbox label,
[class^="route-account-structure-write-plan-design-assign"] .group-editor form .plan-year-checkbox label {
  margin: 0px 5px 0px 0px;
  display: inline-block;
}
[class^="route-account-structure-groups"] .group-editor form > button,
[class^="route-account-structure-read-groups"] .group-editor form > button,
[class^="route-account-structure-write-groups"] .group-editor form > button,
[class^="route-account-structure-plan-design-assign"] .group-editor form > button,
[class^="route-account-structure-read-plan-design-assign"] .group-editor form > button,
[class^="route-account-structure-write-plan-design-assign"] .group-editor form > button {
  margin-right: 5px;
}
[class^="route-account-structure-groups"] .group-editor form h1,
[class^="route-account-structure-read-groups"] .group-editor form h1,
[class^="route-account-structure-write-groups"] .group-editor form h1,
[class^="route-account-structure-plan-design-assign"] .group-editor form h1,
[class^="route-account-structure-read-plan-design-assign"] .group-editor form h1,
[class^="route-account-structure-write-plan-design-assign"] .group-editor form h1 {
  margin-top: 0px;
}
[class^="route-account-structure-groups"] .group-editor form > div,
[class^="route-account-structure-read-groups"] .group-editor form > div,
[class^="route-account-structure-write-groups"] .group-editor form > div,
[class^="route-account-structure-plan-design-assign"] .group-editor form > div,
[class^="route-account-structure-read-plan-design-assign"] .group-editor form > div,
[class^="route-account-structure-write-plan-design-assign"] .group-editor form > div {
  margin-top: 20px;
  box-sizing: border-box;
  background: #f3f3f3;
  border: 1px solid #e6e6e6;
  padding: 20px;
}
[class^="route-account-structure-groups"] .group-editor form > div span.plan-message,
[class^="route-account-structure-read-groups"] .group-editor form > div span.plan-message,
[class^="route-account-structure-write-groups"] .group-editor form > div span.plan-message,
[class^="route-account-structure-plan-design-assign"] .group-editor form > div span.plan-message,
[class^="route-account-structure-read-plan-design-assign"] .group-editor form > div span.plan-message,
[class^="route-account-structure-write-plan-design-assign"] .group-editor form > div span.plan-message {
  color: #ed4651;
}
[class^="route-account-structure-groups"] .group-editor form > div > div.group-row,
[class^="route-account-structure-read-groups"] .group-editor form > div > div.group-row,
[class^="route-account-structure-write-groups"] .group-editor form > div > div.group-row,
[class^="route-account-structure-plan-design-assign"] .group-editor form > div > div.group-row,
[class^="route-account-structure-read-plan-design-assign"] .group-editor form > div > div.group-row,
[class^="route-account-structure-write-plan-design-assign"] .group-editor form > div > div.group-row {
  margin-bottom: 20px;
}
[class^="route-account-structure-groups"] .group-editor form > div > div.group-row.category-row input,
[class^="route-account-structure-read-groups"] .group-editor form > div > div.group-row.category-row input,
[class^="route-account-structure-write-groups"] .group-editor form > div > div.group-row.category-row input,
[class^="route-account-structure-plan-design-assign"] .group-editor form > div > div.group-row.category-row input,
[class^="route-account-structure-read-plan-design-assign"] .group-editor form > div > div.group-row.category-row input,
[class^="route-account-structure-write-plan-design-assign"] .group-editor form > div > div.group-row.category-row input,
[class^="route-account-structure-groups"] .group-editor form > div > div.group-row.category-row select,
[class^="route-account-structure-read-groups"] .group-editor form > div > div.group-row.category-row select,
[class^="route-account-structure-write-groups"] .group-editor form > div > div.group-row.category-row select,
[class^="route-account-structure-plan-design-assign"] .group-editor form > div > div.group-row.category-row select,
[class^="route-account-structure-read-plan-design-assign"] .group-editor form > div > div.group-row.category-row select,
[class^="route-account-structure-write-plan-design-assign"] .group-editor form > div > div.group-row.category-row select {
  margin-bottom: 20px;
}
[class^="route-account-structure-groups"] .group-editor form > div > div.group-row select.disabled,
[class^="route-account-structure-read-groups"] .group-editor form > div > div.group-row select.disabled,
[class^="route-account-structure-write-groups"] .group-editor form > div > div.group-row select.disabled,
[class^="route-account-structure-plan-design-assign"] .group-editor form > div > div.group-row select.disabled,
[class^="route-account-structure-read-plan-design-assign"] .group-editor form > div > div.group-row select.disabled,
[class^="route-account-structure-write-plan-design-assign"] .group-editor form > div > div.group-row select.disabled {
  pointer-events: none;
}
[class^="route-account-structure-groups"] .group-editor form > div > div.group-row:nth-child(2),
[class^="route-account-structure-read-groups"] .group-editor form > div > div.group-row:nth-child(2),
[class^="route-account-structure-write-groups"] .group-editor form > div > div.group-row:nth-child(2),
[class^="route-account-structure-plan-design-assign"] .group-editor form > div > div.group-row:nth-child(2),
[class^="route-account-structure-read-plan-design-assign"] .group-editor form > div > div.group-row:nth-child(2),
[class^="route-account-structure-write-plan-design-assign"] .group-editor form > div > div.group-row:nth-child(2) {
  margin-top: 20px;
}
[class^="route-account-structure-groups"] .group-editor form > div > div.group-row input.standard:focus + label,
[class^="route-account-structure-read-groups"] .group-editor form > div > div.group-row input.standard:focus + label,
[class^="route-account-structure-write-groups"] .group-editor form > div > div.group-row input.standard:focus + label,
[class^="route-account-structure-plan-design-assign"] .group-editor form > div > div.group-row input.standard:focus + label,
[class^="route-account-structure-read-plan-design-assign"] .group-editor form > div > div.group-row input.standard:focus + label,
[class^="route-account-structure-write-plan-design-assign"] .group-editor form > div > div.group-row input.standard:focus + label,
[class^="route-account-structure-groups"] .group-editor form > div > div.group-row select.standard:focus + label,
[class^="route-account-structure-read-groups"] .group-editor form > div > div.group-row select.standard:focus + label,
[class^="route-account-structure-write-groups"] .group-editor form > div > div.group-row select.standard:focus + label,
[class^="route-account-structure-plan-design-assign"] .group-editor form > div > div.group-row select.standard:focus + label,
[class^="route-account-structure-read-plan-design-assign"] .group-editor form > div > div.group-row select.standard:focus + label,
[class^="route-account-structure-write-plan-design-assign"] .group-editor form > div > div.group-row select.standard:focus + label {
  border: none;
}
[class^="route-account-structure-groups"] .group-editor form > div > div.group-row label,
[class^="route-account-structure-read-groups"] .group-editor form > div > div.group-row label,
[class^="route-account-structure-write-groups"] .group-editor form > div > div.group-row label,
[class^="route-account-structure-plan-design-assign"] .group-editor form > div > div.group-row label,
[class^="route-account-structure-read-plan-design-assign"] .group-editor form > div > div.group-row label,
[class^="route-account-structure-write-plan-design-assign"] .group-editor form > div > div.group-row label {
  padding: 0 5px;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #555555;
  margin-right: 2px;
  text-align: right;
  max-width: 140px;
}
[class^="route-account-structure-groups"] .group-editor form > div > div.group-row label.required:after,
[class^="route-account-structure-read-groups"] .group-editor form > div > div.group-row label.required:after,
[class^="route-account-structure-write-groups"] .group-editor form > div > div.group-row label.required:after,
[class^="route-account-structure-plan-design-assign"] .group-editor form > div > div.group-row label.required:after,
[class^="route-account-structure-read-plan-design-assign"] .group-editor form > div > div.group-row label.required:after,
[class^="route-account-structure-write-plan-design-assign"] .group-editor form > div > div.group-row label.required:after {
  content: "*";
}
[class^="route-account-structure-groups"] .group-editor form > div > div.group-row input[disabled],
[class^="route-account-structure-read-groups"] .group-editor form > div > div.group-row input[disabled],
[class^="route-account-structure-write-groups"] .group-editor form > div > div.group-row input[disabled],
[class^="route-account-structure-plan-design-assign"] .group-editor form > div > div.group-row input[disabled],
[class^="route-account-structure-read-plan-design-assign"] .group-editor form > div > div.group-row input[disabled],
[class^="route-account-structure-write-plan-design-assign"] .group-editor form > div > div.group-row input[disabled] {
  background-color: #dedede;
}
[class^="route-account-structure-groups"] .group-editor form > div > div.group-row input,
[class^="route-account-structure-read-groups"] .group-editor form > div > div.group-row input,
[class^="route-account-structure-write-groups"] .group-editor form > div > div.group-row input,
[class^="route-account-structure-plan-design-assign"] .group-editor form > div > div.group-row input,
[class^="route-account-structure-read-plan-design-assign"] .group-editor form > div > div.group-row input,
[class^="route-account-structure-write-plan-design-assign"] .group-editor form > div > div.group-row input,
[class^="route-account-structure-groups"] .group-editor form > div > div.group-row select,
[class^="route-account-structure-read-groups"] .group-editor form > div > div.group-row select,
[class^="route-account-structure-write-groups"] .group-editor form > div > div.group-row select,
[class^="route-account-structure-plan-design-assign"] .group-editor form > div > div.group-row select,
[class^="route-account-structure-read-plan-design-assign"] .group-editor form > div > div.group-row select,
[class^="route-account-structure-write-plan-design-assign"] .group-editor form > div > div.group-row select {
  margin-right: 10px;
}
[class^="route-account-structure-groups"] .group-editor form > div > div.group-row input.code,
[class^="route-account-structure-read-groups"] .group-editor form > div > div.group-row input.code,
[class^="route-account-structure-write-groups"] .group-editor form > div > div.group-row input.code,
[class^="route-account-structure-plan-design-assign"] .group-editor form > div > div.group-row input.code,
[class^="route-account-structure-read-plan-design-assign"] .group-editor form > div > div.group-row input.code,
[class^="route-account-structure-write-plan-design-assign"] .group-editor form > div > div.group-row input.code,
[class^="route-account-structure-groups"] .group-editor form > div > div.group-row select.code,
[class^="route-account-structure-read-groups"] .group-editor form > div > div.group-row select.code,
[class^="route-account-structure-write-groups"] .group-editor form > div > div.group-row select.code,
[class^="route-account-structure-plan-design-assign"] .group-editor form > div > div.group-row select.code,
[class^="route-account-structure-read-plan-design-assign"] .group-editor form > div > div.group-row select.code,
[class^="route-account-structure-write-plan-design-assign"] .group-editor form > div > div.group-row select.code {
  width: 70px;
}
[class^="route-account-structure-groups"] .group-editor form > div > div.group-row input.group-name,
[class^="route-account-structure-read-groups"] .group-editor form > div > div.group-row input.group-name,
[class^="route-account-structure-write-groups"] .group-editor form > div > div.group-row input.group-name,
[class^="route-account-structure-plan-design-assign"] .group-editor form > div > div.group-row input.group-name,
[class^="route-account-structure-read-plan-design-assign"] .group-editor form > div > div.group-row input.group-name,
[class^="route-account-structure-write-plan-design-assign"] .group-editor form > div > div.group-row input.group-name,
[class^="route-account-structure-groups"] .group-editor form > div > div.group-row select.group-name,
[class^="route-account-structure-read-groups"] .group-editor form > div > div.group-row select.group-name,
[class^="route-account-structure-write-groups"] .group-editor form > div > div.group-row select.group-name,
[class^="route-account-structure-plan-design-assign"] .group-editor form > div > div.group-row select.group-name,
[class^="route-account-structure-read-plan-design-assign"] .group-editor form > div > div.group-row select.group-name,
[class^="route-account-structure-write-plan-design-assign"] .group-editor form > div > div.group-row select.group-name {
  width: 120px;
}
[class^="route-account-structure-groups"] .group-editor form > div > div.group-row input.group-number,
[class^="route-account-structure-read-groups"] .group-editor form > div > div.group-row input.group-number,
[class^="route-account-structure-write-groups"] .group-editor form > div > div.group-row input.group-number,
[class^="route-account-structure-plan-design-assign"] .group-editor form > div > div.group-row input.group-number,
[class^="route-account-structure-read-plan-design-assign"] .group-editor form > div > div.group-row input.group-number,
[class^="route-account-structure-write-plan-design-assign"] .group-editor form > div > div.group-row input.group-number,
[class^="route-account-structure-groups"] .group-editor form > div > div.group-row select.group-number,
[class^="route-account-structure-read-groups"] .group-editor form > div > div.group-row select.group-number,
[class^="route-account-structure-write-groups"] .group-editor form > div > div.group-row select.group-number,
[class^="route-account-structure-plan-design-assign"] .group-editor form > div > div.group-row select.group-number,
[class^="route-account-structure-read-plan-design-assign"] .group-editor form > div > div.group-row select.group-number,
[class^="route-account-structure-write-plan-design-assign"] .group-editor form > div > div.group-row select.group-number {
  width: 100px;
}
[class^="route-account-structure-groups"] .group-editor form > div .generic-tab-navigator,
[class^="route-account-structure-read-groups"] .group-editor form > div .generic-tab-navigator,
[class^="route-account-structure-write-groups"] .group-editor form > div .generic-tab-navigator,
[class^="route-account-structure-plan-design-assign"] .group-editor form > div .generic-tab-navigator,
[class^="route-account-structure-read-plan-design-assign"] .group-editor form > div .generic-tab-navigator,
[class^="route-account-structure-write-plan-design-assign"] .group-editor form > div .generic-tab-navigator {
  margin: 0;
}
[class^="route-account-structure-groups"] .group-editor form > div .generic-tab-navigator > div,
[class^="route-account-structure-read-groups"] .group-editor form > div .generic-tab-navigator > div,
[class^="route-account-structure-write-groups"] .group-editor form > div .generic-tab-navigator > div,
[class^="route-account-structure-plan-design-assign"] .group-editor form > div .generic-tab-navigator > div,
[class^="route-account-structure-read-plan-design-assign"] .group-editor form > div .generic-tab-navigator > div,
[class^="route-account-structure-write-plan-design-assign"] .group-editor form > div .generic-tab-navigator > div {
  height: 300px;
  overflow-y: auto;
}
[class^="route-account-structure-groups"] .group-editor form > div .generic-tab-navigator .tab-bar > ul li,
[class^="route-account-structure-read-groups"] .group-editor form > div .generic-tab-navigator .tab-bar > ul li,
[class^="route-account-structure-write-groups"] .group-editor form > div .generic-tab-navigator .tab-bar > ul li,
[class^="route-account-structure-plan-design-assign"] .group-editor form > div .generic-tab-navigator .tab-bar > ul li,
[class^="route-account-structure-read-plan-design-assign"] .group-editor form > div .generic-tab-navigator .tab-bar > ul li,
[class^="route-account-structure-write-plan-design-assign"] .group-editor form > div .generic-tab-navigator .tab-bar > ul li {
  font-size: 2.2rem;
}
[class^="route-account-structure-groups"] .table-container,
[class^="route-account-structure-read-groups"] .table-container,
[class^="route-account-structure-write-groups"] .table-container,
[class^="route-account-structure-plan-design-assign"] .table-container,
[class^="route-account-structure-read-plan-design-assign"] .table-container,
[class^="route-account-structure-write-plan-design-assign"] .table-container {
  width: 100%;
  position: relative;
  max-height: 300px;
  margin-top: 15px;
  overflow: auto;
}
[class^="route-account-structure-groups"] .table-container ::-webkit-scrollbar,
[class^="route-account-structure-read-groups"] .table-container ::-webkit-scrollbar,
[class^="route-account-structure-write-groups"] .table-container ::-webkit-scrollbar,
[class^="route-account-structure-plan-design-assign"] .table-container ::-webkit-scrollbar,
[class^="route-account-structure-read-plan-design-assign"] .table-container ::-webkit-scrollbar,
[class^="route-account-structure-write-plan-design-assign"] .table-container ::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 7px;
  height: 7px;
}
[class^="route-account-structure-groups"] .table-container ::-webkit-scrollbar-thumb,
[class^="route-account-structure-read-groups"] .table-container ::-webkit-scrollbar-thumb,
[class^="route-account-structure-write-groups"] .table-container ::-webkit-scrollbar-thumb,
[class^="route-account-structure-plan-design-assign"] .table-container ::-webkit-scrollbar-thumb,
[class^="route-account-structure-read-plan-design-assign"] .table-container ::-webkit-scrollbar-thumb,
[class^="route-account-structure-write-plan-design-assign"] .table-container ::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
}
.as-table {
  height: 300px !important;
}
.as-table .ember-table td .unassigned {
  color: #ed4651;
}
.assigning-group .as-table {
  height: 500px !important;
}
#ember-basic-dropdown-wormhole .client-select-dropdown.partner-select-dropdown {
  border-top: 1px solid #aaaaaa;
  border-radius: 4px;
}
.as-organization-metadata {
  margin: 20px 20px 0px 20px;
  width: calc(100% - 70px);
  padding: 15px;
}
.as-organization-metadata > .flex-row {
  margin-right: 0;
  flex-wrap: wrap;
}
.as-organization-metadata > .flex-row > .flex-row {
  flex-wrap: nowrap;
}
.as-organization-metadata > .flex-row > .flex-row > label {
  flex: none;
}
.as-organization-metadata .employer-size,
.as-organization-metadata .state,
.as-organization-metadata .industry,
.as-organization-metadata .partner {
  background: white;
  border: solid 1px #e6e6e6;
  padding: 5px 10px 5px 10px;
  border-radius: 5px;
  align-items: center;
}
.as-organization-metadata .employer-size select:focus,
.as-organization-metadata .state select:focus,
.as-organization-metadata .industry select:focus,
.as-organization-metadata .partner select:focus {
  outline: 0;
  border: none !important;
  -webkit-appearance: none;
}
.as-organization-metadata .save-button {
  width: 56px;
  flex: 0 0 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px 0px 5px 14px;
}
.as-organization-metadata .icon {
  width: 14px;
  height: 16px;
  display: inline-block;
  margin: 0px 5px 0px 0px;
}
.as-organization-metadata .state {
  margin-right: 20px;
  min-width: 188px;
}
.as-organization-metadata .state .icon {
  background: url(/assets/plan-design-benchmark/map-marker-icon.svg) no-repeat;
  margin-bottom: -2px;
}
.as-organization-metadata .employer-size {
  margin-right: 20px;
  min-width: 253px;
}
.as-organization-metadata .employer-size .icon {
  background: url(/assets/img/user-tie-icon.svg);
  margin-bottom: -2px;
}
.as-organization-metadata .partner {
  min-width: 144px;
}
.as-organization-metadata .partner .icon {
  background: url(/assets/img/user-tie-icon.svg);
  margin-bottom: -2px;
}
.as-organization-metadata .partner .client-select {
  color: #6c7280;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: calc(100% - 72px);
  font-size: 12px;
  font-size: 1.2rem;
}
.as-organization-metadata .partner .client-select .client-power-select {
  border: none;
}
.as-organization-metadata .partner .client-select .client-power-select[aria-disabled] {
  background: none;
}
.as-organization-metadata .partner .client-select .client-select-trigger > span.ember-power-select-status-icon {
  border-color: #2c8b9d transparent transparent transparent;
}
.as-organization-metadata .industry {
  margin-right: 20px;
  min-width: 555px;
}
.as-organization-metadata .industry label::before {
  font-family: "fontawesome" !important;
  color: #2e8b9d;
  margin: 0px 5px 0px 0px;
  font-size: 14px;
  font-size: 1.4rem;
  content: "\f275";
}
.as-organization-metadata label {
  color: #6f6f6f;
  font-weight: 300;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 15px;
  border-right: 1px solid #6f6f6f;
  padding-right: 5px;
}
.as-organization-metadata select.standard {
  border: none;
}
[class^="route-account-structure-plan-design-assign"] .table-container,
[class^="route-account-structure-read-plan-design-assign"] .table-container,
[class^="route-account-structure-write-plan-design-assign"] .table-container,
[class^="route-account-structure-groups-listing-all-groups-bulk-category"] .table-container,
[class^="route-account-structure-read-groups-listing-all-groups-bulk-category"] .table-container,
[class^="route-account-structure-write-groups-listing-all-groups-bulk-category"] .table-container {
  max-height: 300px;
}
.as-submitted-label {
  margin: 5px 5px 0 0;
}
main.main-content header.content-header span.fa.as-validation-icon,
main.main-content header.content-header span.fa.fa-info-circle {
  cursor: pointer;
  margin-left: 5px;
}
main.main-content header.content-header .as-validation-icon + .as-validation-tooltip {
  visibility: hidden;
  position: absolute;
  top: -15px;
  right: 15px;
  background: white;
  padding: 10px;
  border: solid 1px #e6e6e6;
  color: inherit;
}
main.main-content header.content-header .as-validation-icon:hover + .as-validation-tooltip {
  visibility: visible;
}
main.main-content header.content-header span.fa.as-validation-icon {
  color: #18b28b;
}
main.main-content header.content-header span.fa.fa-info-circle {
  color: #ed4651;
}
[class^="route-account-structure"] main.main-content .page-content section.bulk-plan-year,
[class^="route-account-structure-read"] main.main-content .page-content section.bulk-plan-year,
[class^="route-account-structure-write"] main.main-content .page-content section.bulk-plan-year {
  width: 100%;
  margin: 0;
}
[class^="route-account-structure"] main.main-content .page-content section.bulk-plan-year .bulk-plan-year-buttons,
[class^="route-account-structure-read"] main.main-content .page-content section.bulk-plan-year .bulk-plan-year-buttons,
[class^="route-account-structure-write"] main.main-content .page-content section.bulk-plan-year .bulk-plan-year-buttons {
  display: flex;
  justify-content: space-between;
}
[class^="route-account-structure"] ul.pager,
[class^="route-account-structure-read"] ul.pager,
[class^="route-account-structure-write"] ul.pager {
  margin-top: 0;
  margin-bottom: 20px;
  border-radius: 0;
  border-top: 0;
}
[class^="route-account-structure"] .group-counts,
[class^="route-account-structure-read"] .group-counts,
[class^="route-account-structure-write"] .group-counts {
  float: left;
  margin-top: 3px;
}
[class^="route-account-structure"] .validation-errors-wrap,
[class^="route-account-structure-read"] .validation-errors-wrap,
[class^="route-account-structure-write"] .validation-errors-wrap {
  position: absolute;
  right: 0;
  top: 35px;
  background: white;
  border: solid 1px #e6e6e6;
  padding: 0 10px;
  z-index: 10;
}
[class^="route-account-structure"] .validation-errors-wrap > pre,
[class^="route-account-structure-read"] .validation-errors-wrap > pre,
[class^="route-account-structure-write"] .validation-errors-wrap > pre {
  font-size: 13px;
  font-size: 1.3rem;
  font-family: "neue-helvetica", "Helvetica Neue", Helvetica, sans-serif !important;
}
[class^="route-account-structure"] input[type="text"][readonly],
[class^="route-account-structure-read"] input[type="text"][readonly],
[class^="route-account-structure-write"] input[type="text"][readonly] {
  background: inherit;
}
[class^="route-account-structure"] p.error,
[class^="route-account-structure-read"] p.error,
[class^="route-account-structure-write"] p.error {
  color: #ed4651;
  font-weight: bold;
}
[class^="route-account-structure"] h2.no-data,
[class^="route-account-structure-read"] h2.no-data,
[class^="route-account-structure-write"] h2.no-data {
  font-weight: 300;
  margin: 20px 10%;
  text-align: center;
  line-height: 2rem;
}
[class^="route-account-structure"] button.no-data,
[class^="route-account-structure-read"] button.no-data,
[class^="route-account-structure-write"] button.no-data,
[class^="route-account-structure"] select.no-data,
[class^="route-account-structure-read"] select.no-data,
[class^="route-account-structure-write"] select.no-data {
  margin: 10px auto;
  display: block;
}
[class^="route-account-structure"] .plan-year-modal .copy-plan-year-data,
[class^="route-account-structure-read"] .plan-year-modal .copy-plan-year-data,
[class^="route-account-structure-write"] .plan-year-modal .copy-plan-year-data {
  margin-top: 14px;
}
[class^="route-account-structure"] .plan-year-modal .date-row.header,
[class^="route-account-structure-read"] .plan-year-modal .date-row.header,
[class^="route-account-structure-write"] .plan-year-modal .date-row.header {
  padding: 0 15px 0 15px;
}
[class^="route-account-structure"] .plan-year-modal .plan-year-list-wrap,
[class^="route-account-structure-read"] .plan-year-modal .plan-year-list-wrap,
[class^="route-account-structure-write"] .plan-year-modal .plan-year-list-wrap {
  max-height: 400px;
  margin-bottom: 20px;
  overflow: visible scroll;
  background: #f8f8f8;
  padding: 15px 15px 5px 15px;
  border: 1px solid #ababab;
}
[class^="route-account-structure"] .plan-year-modal .plan-year-list-wrap .date-row .ui-input,
[class^="route-account-structure-read"] .plan-year-modal .plan-year-list-wrap .date-row .ui-input,
[class^="route-account-structure-write"] .plan-year-modal .plan-year-list-wrap .date-row .ui-input {
  margin-right: 10px;
}
[class^="route-account-structure"] .plan-year-modal .plan-year-list-wrap .date-row select,
[class^="route-account-structure-read"] .plan-year-modal .plan-year-list-wrap .date-row select,
[class^="route-account-structure-write"] .plan-year-modal .plan-year-list-wrap .date-row select {
  width: 100%;
}
[class^="route-account-structure"] .plan-year-modal div.date-row,
[class^="route-account-structure-read"] .plan-year-modal div.date-row,
[class^="route-account-structure-write"] .plan-year-modal div.date-row {
  margin-bottom: 10px;
  margin-right: 0px;
}
[class^="route-account-structure"] .plan-year-modal div.date-row input,
[class^="route-account-structure-read"] .plan-year-modal div.date-row input,
[class^="route-account-structure-write"] .plan-year-modal div.date-row input {
  text-align: center;
  background-color: white;
}
[class^="route-account-structure"] .plan-year-modal div.date-row.header,
[class^="route-account-structure-read"] .plan-year-modal div.date-row.header,
[class^="route-account-structure-write"] .plan-year-modal div.date-row.header {
  margin-bottom: 0px;
}
[class^="route-account-structure"] .plan-year-modal div.date-row.last-child,
[class^="route-account-structure-read"] .plan-year-modal div.date-row.last-child,
[class^="route-account-structure-write"] .plan-year-modal div.date-row.last-child {
  margin-bottom: 20px;
}
[class^="route-account-structure"] .plan-year-modal div.date-row > div,
[class^="route-account-structure-read"] .plan-year-modal div.date-row > div,
[class^="route-account-structure-write"] .plan-year-modal div.date-row > div {
  margin-right: 0px;
}
[class^="route-account-structure"] .plan-year-modal h3,
[class^="route-account-structure-read"] .plan-year-modal h3,
[class^="route-account-structure-write"] .plan-year-modal h3 {
  font-weight: 300;
}
[class^="route-account-structure"] .as-table .ember-table table tbody tr td .insight-actions,
[class^="route-account-structure-read"] .as-table .ember-table table tbody tr td .insight-actions,
[class^="route-account-structure-write"] .as-table .ember-table table tbody tr td .insight-actions {
  top: -40px;
  left: -135px;
}
[class^="route-account-structure"] .as-table .ember-table table tbody tr td .insight-actions:before,
[class^="route-account-structure-read"] .as-table .ember-table table tbody tr td .insight-actions:before,
[class^="route-account-structure-write"] .as-table .ember-table table tbody tr td .insight-actions:before,
[class^="route-account-structure"] .as-table .ember-table table tbody tr td .insight-actions:after,
[class^="route-account-structure-read"] .as-table .ember-table table tbody tr td .insight-actions:after,
[class^="route-account-structure-write"] .as-table .ember-table table tbody tr td .insight-actions:after {
  display: none;
}
[class^="route-account-structure"] .as-table .ember-table table tbody tr td .insight-options button,
[class^="route-account-structure-read"] .as-table .ember-table table tbody tr td .insight-options button,
[class^="route-account-structure-write"] .as-table .ember-table table tbody tr td .insight-options button {
  border-radius: 12px;
}
[class^="route-account-structure-stop-loss"] .disabled-controls *,
[class^="route-account-structure-read-stop-loss"] .disabled-controls *,
[class^="route-account-structure-write-stop-loss"] .disabled-controls * {
  opacity: 0.6;
}
[class^="route-account-structure-plan-design-edit"] .plan-tier-wrapper,
[class^="route-account-structure-plan-design-new"] .plan-tier-wrapper,
[class^="route-account-structure-read-plan-design-edit"] .plan-tier-wrapper,
[class^="route-account-structure-write-plan-design-edit"] .plan-tier-wrapper,
[class^="route-account-structure-write-plan-design-new"] .plan-tier-wrapper {
  margin: 20px 0px 0px 0px;
  border: solid 1px #e6e6e6;
}
[class^="route-account-structure-plan-design-edit"] .plan-tier-wrapper.closed,
[class^="route-account-structure-plan-design-new"] .plan-tier-wrapper.closed,
[class^="route-account-structure-read-plan-design-edit"] .plan-tier-wrapper.closed,
[class^="route-account-structure-write-plan-design-edit"] .plan-tier-wrapper.closed,
[class^="route-account-structure-write-plan-design-new"] .plan-tier-wrapper.closed {
  border-bottom: none;
}
[class^="route-account-structure-plan-design-edit"] .plan-tier-wrapper.closed .collapse-icon,
[class^="route-account-structure-plan-design-new"] .plan-tier-wrapper.closed .collapse-icon,
[class^="route-account-structure-read-plan-design-edit"] .plan-tier-wrapper.closed .collapse-icon,
[class^="route-account-structure-write-plan-design-edit"] .plan-tier-wrapper.closed .collapse-icon,
[class^="route-account-structure-write-plan-design-new"] .plan-tier-wrapper.closed .collapse-icon {
  background: url(/assets/img/collapsible-header-open.svg);
  background-size: contain;
}
[class^="route-account-structure-plan-design-edit"] .plan-tier-wrapper header,
[class^="route-account-structure-plan-design-new"] .plan-tier-wrapper header,
[class^="route-account-structure-read-plan-design-edit"] .plan-tier-wrapper header,
[class^="route-account-structure-write-plan-design-edit"] .plan-tier-wrapper header,
[class^="route-account-structure-write-plan-design-new"] .plan-tier-wrapper header {
  border-bottom: solid 1px #e6e6e6;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
}
[class^="route-account-structure-plan-design-edit"] .plan-tier-wrapper header:hover,
[class^="route-account-structure-plan-design-new"] .plan-tier-wrapper header:hover,
[class^="route-account-structure-read-plan-design-edit"] .plan-tier-wrapper header:hover,
[class^="route-account-structure-write-plan-design-edit"] .plan-tier-wrapper header:hover,
[class^="route-account-structure-write-plan-design-new"] .plan-tier-wrapper header:hover {
  cursor: pointer;
}
[class^="route-account-structure-plan-design-edit"] .plan-tier-wrapper header .icon,
[class^="route-account-structure-plan-design-new"] .plan-tier-wrapper header .icon,
[class^="route-account-structure-read-plan-design-edit"] .plan-tier-wrapper header .icon,
[class^="route-account-structure-write-plan-design-edit"] .plan-tier-wrapper header .icon,
[class^="route-account-structure-write-plan-design-new"] .plan-tier-wrapper header .icon {
  display: block;
  width: 50px;
  height: 40px;
}
[class^="route-account-structure-plan-design-edit"] .plan-tier-wrapper header .icon.medical-icon,
[class^="route-account-structure-plan-design-new"] .plan-tier-wrapper header .icon.medical-icon,
[class^="route-account-structure-read-plan-design-edit"] .plan-tier-wrapper header .icon.medical-icon,
[class^="route-account-structure-write-plan-design-edit"] .plan-tier-wrapper header .icon.medical-icon,
[class^="route-account-structure-write-plan-design-new"] .plan-tier-wrapper header .icon.medical-icon {
  background: url(/assets/img/medical-icon.svg) #2e8b9d no-repeat center;
  background-size: 25px;
}
[class^="route-account-structure-plan-design-edit"] .plan-tier-wrapper header .icon.pharmacy-icon,
[class^="route-account-structure-plan-design-new"] .plan-tier-wrapper header .icon.pharmacy-icon,
[class^="route-account-structure-read-plan-design-edit"] .plan-tier-wrapper header .icon.pharmacy-icon,
[class^="route-account-structure-write-plan-design-edit"] .plan-tier-wrapper header .icon.pharmacy-icon,
[class^="route-account-structure-write-plan-design-new"] .plan-tier-wrapper header .icon.pharmacy-icon {
  background: url(/assets/img/pills-icon.svg) #2e8b9d no-repeat center;
  background-size: 25px;
}
[class^="route-account-structure-plan-design-edit"] .plan-tier-wrapper header h3,
[class^="route-account-structure-plan-design-new"] .plan-tier-wrapper header h3,
[class^="route-account-structure-read-plan-design-edit"] .plan-tier-wrapper header h3,
[class^="route-account-structure-write-plan-design-edit"] .plan-tier-wrapper header h3,
[class^="route-account-structure-write-plan-design-new"] .plan-tier-wrapper header h3 {
  margin: 0;
  color: #555555;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0px 0px 0px 15px;
}
[class^="route-account-structure-plan-design-edit"] .plan-tier-wrapper header .collapse-icon,
[class^="route-account-structure-plan-design-new"] .plan-tier-wrapper header .collapse-icon,
[class^="route-account-structure-read-plan-design-edit"] .plan-tier-wrapper header .collapse-icon,
[class^="route-account-structure-write-plan-design-edit"] .plan-tier-wrapper header .collapse-icon,
[class^="route-account-structure-write-plan-design-new"] .plan-tier-wrapper header .collapse-icon {
  margin-left: auto;
  width: 30px;
  display: block;
  height: 30px;
  margin-right: 15px;
  background: url(/assets/img/collapsible-header-close.svg);
  background-size: contain;
}
[class^="route-account-structure-plan-design-edit"] .plan-tier-wrapper .plan-tier-content,
[class^="route-account-structure-plan-design-new"] .plan-tier-wrapper .plan-tier-content,
[class^="route-account-structure-read-plan-design-edit"] .plan-tier-wrapper .plan-tier-content,
[class^="route-account-structure-write-plan-design-edit"] .plan-tier-wrapper .plan-tier-content,
[class^="route-account-structure-write-plan-design-new"] .plan-tier-wrapper .plan-tier-content {
  padding: 20px;
}
[class^="route-account-structure-plan-design-edit"] .plan-tier-wrapper .plan-tier-content.hidden,
[class^="route-account-structure-plan-design-new"] .plan-tier-wrapper .plan-tier-content.hidden,
[class^="route-account-structure-read-plan-design-edit"] .plan-tier-wrapper .plan-tier-content.hidden,
[class^="route-account-structure-write-plan-design-edit"] .plan-tier-wrapper .plan-tier-content.hidden,
[class^="route-account-structure-write-plan-design-new"] .plan-tier-wrapper .plan-tier-content.hidden {
  display: none;
}
[class^="route-account-structure-plan-design-edit"] .plan-tier-wrapper .plan-tier-content .add-plan-button,
[class^="route-account-structure-plan-design-new"] .plan-tier-wrapper .plan-tier-content .add-plan-button,
[class^="route-account-structure-read-plan-design-edit"] .plan-tier-wrapper .plan-tier-content .add-plan-button,
[class^="route-account-structure-write-plan-design-edit"] .plan-tier-wrapper .plan-tier-content .add-plan-button,
[class^="route-account-structure-write-plan-design-new"] .plan-tier-wrapper .plan-tier-content .add-plan-button {
  margin: 0px 0px 20px 0px;
}
[class^="route-account-structure-plan-design-edit"] .loading-indicator,
[class^="route-account-structure-plan-design-new"] .loading-indicator,
[class^="route-account-structure-read-plan-design-edit"] .loading-indicator,
[class^="route-account-structure-write-plan-design-edit"] .loading-indicator,
[class^="route-account-structure-write-plan-design-new"] .loading-indicator {
  top: 222px;
  height: 1000px;
}
[class^="route-account-structure-stop-loss-index"] .new-policy-btn,
[class^="route-account-structure-read-stop-loss-index"] .new-policy-btn,
[class^="route-account-structure-write-stop-loss-index"] .new-policy-btn,
[class^="route-account-structure-plan-design-"] .new-policy-btn,
[class^="route-account-structure-read-plan-design-"] .new-policy-btn,
[class^="route-account-structure-write-plan-design-"] .new-policy-btn,
[class^="route-account-structure-stop-loss-index"] .new-plan-btn,
[class^="route-account-structure-read-stop-loss-index"] .new-plan-btn,
[class^="route-account-structure-write-stop-loss-index"] .new-plan-btn,
[class^="route-account-structure-plan-design-"] .new-plan-btn,
[class^="route-account-structure-read-plan-design-"] .new-plan-btn,
[class^="route-account-structure-write-plan-design-"] .new-plan-btn {
  margin: 15px 0px 30px 0px;
}
[class^="route-account-structure-stop-loss-index"] .as-index-card,
[class^="route-account-structure-read-stop-loss-index"] .as-index-card,
[class^="route-account-structure-write-stop-loss-index"] .as-index-card,
[class^="route-account-structure-plan-design-"] .as-index-card,
[class^="route-account-structure-read-plan-design-"] .as-index-card,
[class^="route-account-structure-write-plan-design-"] .as-index-card {
  margin-bottom: 25px;
  border: 1px solid #ababab;
  padding: 8px 8px;
}
[class^="route-account-structure-stop-loss-index"] .as-index-card .flex-row,
[class^="route-account-structure-read-stop-loss-index"] .as-index-card .flex-row,
[class^="route-account-structure-write-stop-loss-index"] .as-index-card .flex-row,
[class^="route-account-structure-plan-design-"] .as-index-card .flex-row,
[class^="route-account-structure-read-plan-design-"] .as-index-card .flex-row,
[class^="route-account-structure-write-plan-design-"] .as-index-card .flex-row {
  align-items: center;
}
[class^="route-account-structure-stop-loss-index"] .as-index-card .flex-row .flex-row,
[class^="route-account-structure-read-stop-loss-index"] .as-index-card .flex-row .flex-row,
[class^="route-account-structure-write-stop-loss-index"] .as-index-card .flex-row .flex-row,
[class^="route-account-structure-plan-design-"] .as-index-card .flex-row .flex-row,
[class^="route-account-structure-read-plan-design-"] .as-index-card .flex-row .flex-row,
[class^="route-account-structure-write-plan-design-"] .as-index-card .flex-row .flex-row {
  align-items: center;
}
[class^="route-account-structure-stop-loss-index"] .as-index-card .icon,
[class^="route-account-structure-read-stop-loss-index"] .as-index-card .icon,
[class^="route-account-structure-write-stop-loss-index"] .as-index-card .icon,
[class^="route-account-structure-plan-design-"] .as-index-card .icon,
[class^="route-account-structure-read-plan-design-"] .as-index-card .icon,
[class^="route-account-structure-write-plan-design-"] .as-index-card .icon {
  max-width: 50px;
  max-height: 50px;
  margin-right: 10px;
}
[class^="route-account-structure-stop-loss-index"] .as-index-card .icon::before,
[class^="route-account-structure-read-stop-loss-index"] .as-index-card .icon::before,
[class^="route-account-structure-write-stop-loss-index"] .as-index-card .icon::before,
[class^="route-account-structure-plan-design-"] .as-index-card .icon::before,
[class^="route-account-structure-read-plan-design-"] .as-index-card .icon::before,
[class^="route-account-structure-write-plan-design-"] .as-index-card .icon::before {
  font-family: "fontawesome" !important;
  content: "\f15c";
  font-size: 35px;
  font-size: 3.5rem;
  color: #2e8b9d;
  display: block;
  text-align: center;
}
[class^="route-account-structure-stop-loss-index"] .as-index-card h2,
[class^="route-account-structure-read-stop-loss-index"] .as-index-card h2,
[class^="route-account-structure-write-stop-loss-index"] .as-index-card h2,
[class^="route-account-structure-plan-design-"] .as-index-card h2,
[class^="route-account-structure-read-plan-design-"] .as-index-card h2,
[class^="route-account-structure-write-plan-design-"] .as-index-card h2 {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  margin: 0px 0px 5px 0px;
  color: #555555;
}
[class^="route-account-structure-stop-loss-index"] .as-index-card .as-detail-item,
[class^="route-account-structure-read-stop-loss-index"] .as-index-card .as-detail-item,
[class^="route-account-structure-write-stop-loss-index"] .as-index-card .as-detail-item,
[class^="route-account-structure-plan-design-"] .as-index-card .as-detail-item,
[class^="route-account-structure-read-plan-design-"] .as-index-card .as-detail-item,
[class^="route-account-structure-write-plan-design-"] .as-index-card .as-detail-item {
  margin: 0;
  flex: 1 2;
  box-sizing: border-box;
  padding-right: 10px;
  width: 100%;
  color: #555555;
}
[class^="route-account-structure-stop-loss-index"] .as-index-card .as-detail-item strong,
[class^="route-account-structure-read-stop-loss-index"] .as-index-card .as-detail-item strong,
[class^="route-account-structure-write-stop-loss-index"] .as-index-card .as-detail-item strong,
[class^="route-account-structure-plan-design-"] .as-index-card .as-detail-item strong,
[class^="route-account-structure-read-plan-design-"] .as-index-card .as-detail-item strong,
[class^="route-account-structure-write-plan-design-"] .as-index-card .as-detail-item strong {
  color: #555555;
  display: block;
}
[class^="route-account-structure-stop-loss-index"] .as-index-card .insight-options,
[class^="route-account-structure-read-stop-loss-index"] .as-index-card .insight-options,
[class^="route-account-structure-write-stop-loss-index"] .as-index-card .insight-options,
[class^="route-account-structure-plan-design-"] .as-index-card .insight-options,
[class^="route-account-structure-read-plan-design-"] .as-index-card .insight-options,
[class^="route-account-structure-write-plan-design-"] .as-index-card .insight-options {
  position: relative;
  max-width: 30px;
  height: 30px;
  margin-left: auto;
  margin-top: -17px;
}
[class^="route-account-structure-stop-loss-index"] .as-index-card .insight-options button,
[class^="route-account-structure-read-stop-loss-index"] .as-index-card .insight-options button,
[class^="route-account-structure-write-stop-loss-index"] .as-index-card .insight-options button,
[class^="route-account-structure-plan-design-"] .as-index-card .insight-options button,
[class^="route-account-structure-read-plan-design-"] .as-index-card .insight-options button,
[class^="route-account-structure-write-plan-design-"] .as-index-card .insight-options button {
  border: solid 2px #9a9a9a;
  background: none;
  border-radius: 100%;
  transition: 0.5s;
  height: 30px;
  width: 30px;
}
[class^="route-account-structure-stop-loss-index"] .as-index-card .insight-options button span,
[class^="route-account-structure-read-stop-loss-index"] .as-index-card .insight-options button span,
[class^="route-account-structure-write-stop-loss-index"] .as-index-card .insight-options button span,
[class^="route-account-structure-plan-design-"] .as-index-card .insight-options button span,
[class^="route-account-structure-read-plan-design-"] .as-index-card .insight-options button span,
[class^="route-account-structure-write-plan-design-"] .as-index-card .insight-options button span {
  margin-left: -2.5px;
  margin-top: 5px;
}
[class^="route-account-structure-stop-loss-index"] .as-index-card .insight-options:hover button,
[class^="route-account-structure-read-stop-loss-index"] .as-index-card .insight-options:hover button,
[class^="route-account-structure-write-stop-loss-index"] .as-index-card .insight-options:hover button,
[class^="route-account-structure-plan-design-"] .as-index-card .insight-options:hover button,
[class^="route-account-structure-read-plan-design-"] .as-index-card .insight-options:hover button,
[class^="route-account-structure-write-plan-design-"] .as-index-card .insight-options:hover button {
  cursor: pointer;
  background: #2e8b9d;
  border: solid 2px #2e8b9d;
}
[class^="route-account-structure-stop-loss-index"] .as-index-card .insight-options:hover button .fa-cog::before,
[class^="route-account-structure-read-stop-loss-index"] .as-index-card .insight-options:hover button .fa-cog::before,
[class^="route-account-structure-write-stop-loss-index"] .as-index-card .insight-options:hover button .fa-cog::before,
[class^="route-account-structure-plan-design-"] .as-index-card .insight-options:hover button .fa-cog::before,
[class^="route-account-structure-read-plan-design-"] .as-index-card .insight-options:hover button .fa-cog::before,
[class^="route-account-structure-write-plan-design-"] .as-index-card .insight-options:hover button .fa-cog::before {
  color: white;
}
[class^="route-account-structure-stop-loss-index"] .as-index-card .insight-options .fa-cog::before,
[class^="route-account-structure-read-stop-loss-index"] .as-index-card .insight-options .fa-cog::before,
[class^="route-account-structure-write-stop-loss-index"] .as-index-card .insight-options .fa-cog::before,
[class^="route-account-structure-plan-design-"] .as-index-card .insight-options .fa-cog::before,
[class^="route-account-structure-read-plan-design-"] .as-index-card .insight-options .fa-cog::before,
[class^="route-account-structure-write-plan-design-"] .as-index-card .insight-options .fa-cog::before {
  font-size: 18px;
  font-size: 1.8rem;
  color: #9a9a9a;
  transition: 0.5s;
}
[class^="route-account-structure-stop-loss-index"] .as-index-card .insight-dashboard-actions-wrapper,
[class^="route-account-structure-read-stop-loss-index"] .as-index-card .insight-dashboard-actions-wrapper,
[class^="route-account-structure-write-stop-loss-index"] .as-index-card .insight-dashboard-actions-wrapper,
[class^="route-account-structure-plan-design-"] .as-index-card .insight-dashboard-actions-wrapper,
[class^="route-account-structure-read-plan-design-"] .as-index-card .insight-dashboard-actions-wrapper,
[class^="route-account-structure-write-plan-design-"] .as-index-card .insight-dashboard-actions-wrapper {
  right: 28px;
}
[class^="route-account-structure-plan-design-index"] .as-detail-item,
[class^="route-account-structure-read-plan-design-index"] .as-detail-item,
[class^="route-account-structure-write-plan-design-index"] .as-detail-item {
  max-width: 200px;
}
[class^="route-account-structure-stop-loss-edit"] .ui-grid .ui-block .ui-label,
[class^="route-account-structure-read-stop-loss-edit"] .ui-grid .ui-block .ui-label,
[class^="route-account-structure-write-stop-loss-edit"] .ui-grid .ui-block .ui-label,
[class^="route-account-structure-stop-loss-new"] .ui-grid .ui-block .ui-label,
[class^="route-account-structure-read-stop-loss-new"] .ui-grid .ui-block .ui-label,
[class^="route-account-structure-write-stop-loss-new"] .ui-grid .ui-block .ui-label {
  color: #555555;
}
[class^="route-account-structure-stop-loss-edit"] .checkbox-group,
[class^="route-account-structure-read-stop-loss-edit"] .checkbox-group,
[class^="route-account-structure-write-stop-loss-edit"] .checkbox-group,
[class^="route-account-structure-stop-loss-new"] .checkbox-group,
[class^="route-account-structure-read-stop-loss-new"] .checkbox-group,
[class^="route-account-structure-write-stop-loss-new"] .checkbox-group {
  display: flex;
}
[class^="route-account-structure-stop-loss-edit"] .checkbox-group + .disclaimer,
[class^="route-account-structure-read-stop-loss-edit"] .checkbox-group + .disclaimer,
[class^="route-account-structure-write-stop-loss-edit"] .checkbox-group + .disclaimer,
[class^="route-account-structure-stop-loss-new"] .checkbox-group + .disclaimer,
[class^="route-account-structure-read-stop-loss-new"] .checkbox-group + .disclaimer,
[class^="route-account-structure-write-stop-loss-new"] .checkbox-group + .disclaimer {
  font-size: 10px;
  font-style: italic;
  display: block;
  margin: 5px 0px 0px 0;
}
[class^="route-account-structure-stop-loss-edit"] .checkbox-group input[type="checkbox"],
[class^="route-account-structure-read-stop-loss-edit"] .checkbox-group input[type="checkbox"],
[class^="route-account-structure-write-stop-loss-edit"] .checkbox-group input[type="checkbox"],
[class^="route-account-structure-stop-loss-new"] .checkbox-group input[type="checkbox"],
[class^="route-account-structure-read-stop-loss-new"] .checkbox-group input[type="checkbox"],
[class^="route-account-structure-write-stop-loss-new"] .checkbox-group input[type="checkbox"] {
  margin: 0px 5px 0px 5px;
}
[class^="route-account-structure-stop-loss-edit"] .checkbox-group .checkbox-wrapper,
[class^="route-account-structure-read-stop-loss-edit"] .checkbox-group .checkbox-wrapper,
[class^="route-account-structure-write-stop-loss-edit"] .checkbox-group .checkbox-wrapper,
[class^="route-account-structure-stop-loss-new"] .checkbox-group .checkbox-wrapper,
[class^="route-account-structure-read-stop-loss-new"] .checkbox-group .checkbox-wrapper,
[class^="route-account-structure-write-stop-loss-new"] .checkbox-group .checkbox-wrapper {
  border: solid 1px #e6e6e6;
  background: #f3f3f3;
  padding: 5px 0px 5px 5px;
  display: flex;
  align-items: center;
  border-radius: 3px;
}
[class^="route-account-structure-stop-loss-edit"] .checkbox-group .checkbox-wrapper:first-of-type,
[class^="route-account-structure-read-stop-loss-edit"] .checkbox-group .checkbox-wrapper:first-of-type,
[class^="route-account-structure-write-stop-loss-edit"] .checkbox-group .checkbox-wrapper:first-of-type,
[class^="route-account-structure-stop-loss-new"] .checkbox-group .checkbox-wrapper:first-of-type,
[class^="route-account-structure-read-stop-loss-new"] .checkbox-group .checkbox-wrapper:first-of-type,
[class^="route-account-structure-write-stop-loss-new"] .checkbox-group .checkbox-wrapper:first-of-type {
  margin-right: 10px;
}
[class^="route-account-structure-stop-loss-edit"] .ui-block input,
[class^="route-account-structure-read-stop-loss-edit"] .ui-block input,
[class^="route-account-structure-write-stop-loss-edit"] .ui-block input,
[class^="route-account-structure-stop-loss-new"] .ui-block input,
[class^="route-account-structure-read-stop-loss-new"] .ui-block input,
[class^="route-account-structure-write-stop-loss-new"] .ui-block input {
  padding: 0 12px;
}
[class^="route-account-structure-stop-loss-edit"] .input-container,
[class^="route-account-structure-read-stop-loss-edit"] .input-container,
[class^="route-account-structure-write-stop-loss-edit"] .input-container,
[class^="route-account-structure-stop-loss-new"] .input-container,
[class^="route-account-structure-read-stop-loss-new"] .input-container,
[class^="route-account-structure-write-stop-loss-new"] .input-container {
  position: relative;
}
[class^="route-account-structure-stop-loss-edit"] .input-container span,
[class^="route-account-structure-read-stop-loss-edit"] .input-container span,
[class^="route-account-structure-write-stop-loss-edit"] .input-container span,
[class^="route-account-structure-stop-loss-new"] .input-container span,
[class^="route-account-structure-read-stop-loss-new"] .input-container span,
[class^="route-account-structure-write-stop-loss-new"] .input-container span {
  position: absolute;
  top: 4px;
  z-index: 2;
  font-size: 11px;
  font-size: 1.1rem;
  color: #7a7a7a;
}
[class^="route-account-structure-stop-loss-edit"] .input-container span.dollar-label,
[class^="route-account-structure-read-stop-loss-edit"] .input-container span.dollar-label,
[class^="route-account-structure-write-stop-loss-edit"] .input-container span.dollar-label,
[class^="route-account-structure-stop-loss-new"] .input-container span.dollar-label,
[class^="route-account-structure-read-stop-loss-new"] .input-container span.dollar-label,
[class^="route-account-structure-write-stop-loss-new"] .input-container span.dollar-label {
  left: 4px;
}
[class^="route-account-structure-stop-loss-edit"] .input-container span.percent-label,
[class^="route-account-structure-read-stop-loss-edit"] .input-container span.percent-label,
[class^="route-account-structure-write-stop-loss-edit"] .input-container span.percent-label,
[class^="route-account-structure-stop-loss-new"] .input-container span.percent-label,
[class^="route-account-structure-read-stop-loss-new"] .input-container span.percent-label,
[class^="route-account-structure-write-stop-loss-new"] .input-container span.percent-label {
  right: 4px;
}
[class^="route-account-structure-stop-loss-edit"] p.error,
[class^="route-account-structure-read-stop-loss-edit"] p.error,
[class^="route-account-structure-write-stop-loss-edit"] p.error,
[class^="route-account-structure-stop-loss-new"] p.error,
[class^="route-account-structure-read-stop-loss-new"] p.error,
[class^="route-account-structure-write-stop-loss-new"] p.error {
  margin: 0;
}
[class^="route-account-structure-stop-loss-edit"] .specific-stop-lost.border-top,
[class^="route-account-structure-read-stop-loss-edit"] .specific-stop-lost.border-top,
[class^="route-account-structure-write-stop-loss-edit"] .specific-stop-lost.border-top,
[class^="route-account-structure-stop-loss-new"] .specific-stop-lost.border-top,
[class^="route-account-structure-read-stop-loss-new"] .specific-stop-lost.border-top,
[class^="route-account-structure-write-stop-loss-new"] .specific-stop-lost.border-top {
  border-top: solid 1px #e6e6e6;
  padding-top: 20px;
}
[class^="route-account-structure-stop-loss-edit"] .specific-stop-lost.border-bottom,
[class^="route-account-structure-read-stop-loss-edit"] .specific-stop-lost.border-bottom,
[class^="route-account-structure-write-stop-loss-edit"] .specific-stop-lost.border-bottom,
[class^="route-account-structure-stop-loss-new"] .specific-stop-lost.border-bottom,
[class^="route-account-structure-read-stop-loss-new"] .specific-stop-lost.border-bottom,
[class^="route-account-structure-write-stop-loss-new"] .specific-stop-lost.border-bottom {
  border-bottom: solid 1px #e6e6e6;
  padding-bottom: 20px;
}
[class^="route-account-structure-stop-loss-edit"] .aggregating-factors,
[class^="route-account-structure-read-stop-loss-edit"] .aggregating-factors,
[class^="route-account-structure-write-stop-loss-edit"] .aggregating-factors,
[class^="route-account-structure-stop-loss-new"] .aggregating-factors,
[class^="route-account-structure-read-stop-loss-new"] .aggregating-factors,
[class^="route-account-structure-write-stop-loss-new"] .aggregating-factors {
  margin: 20px 0px 0px 0px;
}
[class^="route-account-structure-financial-components"] .table-container,
[class^="route-account-structure-read-financial-components"] .table-container,
[class^="route-account-structure-write-financial-components"] .table-container {
  margin-top: 15px;
  height: 500px;
  overflow: auto;
}
[class^="route-account-structure-financial-components"] .generic-tab-navigator .generic-tab-navigator,
[class^="route-account-structure-read-financial-components"] .generic-tab-navigator .generic-tab-navigator,
[class^="route-account-structure-write-financial-components"] .generic-tab-navigator .generic-tab-navigator {
  margin: 0;
}
[class^="route-account-structure-financial-components"] .as-table .ember-table table tbody tr.is-editing td,
[class^="route-account-structure-read-financial-components"] .as-table .ember-table table tbody tr.is-editing td,
[class^="route-account-structure-write-financial-components"] .as-table .ember-table table tbody tr.is-editing td {
  border-bottom: 1px solid #18b28b;
  border-top: 1px solid #18b28b;
}
[class^="route-account-structure-financial-components"] .as-table .ember-table table tbody tr.is-editing td input,
[class^="route-account-structure-read-financial-components"] .as-table .ember-table table tbody tr.is-editing td input,
[class^="route-account-structure-write-financial-components"] .as-table .ember-table table tbody tr.is-editing td input {
  width: 80%;
  height: 22px;
  background-color: white;
  padding: 0 10px;
}
[class^="route-account-structure-financial-components"] .as-table .ember-table table tbody tr.is-editing td:first-child,
[class^="route-account-structure-read-financial-components"] .as-table .ember-table table tbody tr.is-editing td:first-child,
[class^="route-account-structure-write-financial-components"] .as-table .ember-table table tbody tr.is-editing td:first-child {
  border-left: 1px solid #18b28b;
}
[class^="route-account-structure-financial-components"] .as-table .ember-table table tbody tr.is-editing td:last-child,
[class^="route-account-structure-read-financial-components"] .as-table .ember-table table tbody tr.is-editing td:last-child,
[class^="route-account-structure-write-financial-components"] .as-table .ember-table table tbody tr.is-editing td:last-child {
  border-right: 1px solid #18b28b;
}
[class^="route-account-structure-financial-components"] .as-table .ember-table table tbody tr.group-assignment-row,
[class^="route-account-structure-read-financial-components"] .as-table .ember-table table tbody tr.group-assignment-row,
[class^="route-account-structure-write-financial-components"] .as-table .ember-table table tbody tr.group-assignment-row {
  background-color: white;
}
[class^="route-account-structure-financial-components"] .as-table .ember-table table tbody tr.group-assignment-row > td,
[class^="route-account-structure-read-financial-components"] .as-table .ember-table table tbody tr.group-assignment-row > td,
[class^="route-account-structure-write-financial-components"] .as-table .ember-table table tbody tr.group-assignment-row > td {
  max-width: 100px;
  overflow: visible !important;
}
[class^="route-account-structure-financial-components"] .as-table .ember-table table tbody tr.group-assignment-row > td h3,
[class^="route-account-structure-read-financial-components"] .as-table .ember-table table tbody tr.group-assignment-row > td h3,
[class^="route-account-structure-write-financial-components"] .as-table .ember-table table tbody tr.group-assignment-row > td h3 {
  font-weight: 300;
}
[class^="route-account-structure-financial-components"] .as-table .ember-table table tbody tr.group-assignment-row > td .no-data-wrapper button,
[class^="route-account-structure-read-financial-components"] .as-table .ember-table table tbody tr.group-assignment-row > td .no-data-wrapper button,
[class^="route-account-structure-write-financial-components"] .as-table .ember-table table tbody tr.group-assignment-row > td .no-data-wrapper button {
  display: block;
  margin: 10px auto;
}
[class^="route-account-structure-financial-components"] .as-table .ember-table table tbody tr.group-assignment-row > td .options-wrapper,
[class^="route-account-structure-read-financial-components"] .as-table .ember-table table tbody tr.group-assignment-row > td .options-wrapper,
[class^="route-account-structure-write-financial-components"] .as-table .ember-table table tbody tr.group-assignment-row > td .options-wrapper {
  display: flex;
  align-items: center;
  padding-bottom: 10px;
}
[class^="route-account-structure-financial-components"] .as-table .ember-table table tbody tr.group-assignment-row > td .table-group-filter-container .filter-controls,
[class^="route-account-structure-read-financial-components"] .as-table .ember-table table tbody tr.group-assignment-row > td .table-group-filter-container .filter-controls,
[class^="route-account-structure-write-financial-components"] .as-table .ember-table table tbody tr.group-assignment-row > td .table-group-filter-container .filter-controls {
  margin-right: 10px;
}
[class^="route-account-structure-financial-components"] .as-table .ember-table table tbody tr.group-assignment-row > td .table-group-filter-container .ui-accordion.as-filter-accordion,
[class^="route-account-structure-read-financial-components"] .as-table .ember-table table tbody tr.group-assignment-row > td .table-group-filter-container .ui-accordion.as-filter-accordion,
[class^="route-account-structure-write-financial-components"] .as-table .ember-table table tbody tr.group-assignment-row > td .table-group-filter-container .ui-accordion.as-filter-accordion {
  position: relative;
  max-width: 955px;
  margin: 0;
}
[class^="route-account-structure-financial-components"] .as-table .ember-table table tbody tr.group-assignment-row > td .table-group-filter-container .ui-accordion.as-filter-accordion.open header .status-indicator,
[class^="route-account-structure-read-financial-components"] .as-table .ember-table table tbody tr.group-assignment-row > td .table-group-filter-container .ui-accordion.as-filter-accordion.open header .status-indicator,
[class^="route-account-structure-write-financial-components"] .as-table .ember-table table tbody tr.group-assignment-row > td .table-group-filter-container .ui-accordion.as-filter-accordion.open header .status-indicator {
  top: 7px;
  transform: rotate(180deg);
}
[class^="route-account-structure-financial-components"] .as-table .ember-table table tbody tr.group-assignment-row > td .table-group-filter-container .ui-accordion.as-filter-accordion header,
[class^="route-account-structure-read-financial-components"] .as-table .ember-table table tbody tr.group-assignment-row > td .table-group-filter-container .ui-accordion.as-filter-accordion header,
[class^="route-account-structure-write-financial-components"] .as-table .ember-table table tbody tr.group-assignment-row > td .table-group-filter-container .ui-accordion.as-filter-accordion header {
  padding: 0 15px;
}
[class^="route-account-structure-financial-components"] .as-table .ember-table table tbody tr.group-assignment-row > td .table-group-filter-container .ui-accordion.as-filter-accordion header h2,
[class^="route-account-structure-read-financial-components"] .as-table .ember-table table tbody tr.group-assignment-row > td .table-group-filter-container .ui-accordion.as-filter-accordion header h2,
[class^="route-account-structure-write-financial-components"] .as-table .ember-table table tbody tr.group-assignment-row > td .table-group-filter-container .ui-accordion.as-filter-accordion header h2 {
  font-size: 15px;
  font-size: 1.5rem;
  margin: 10px 0 10px 0;
}
[class^="route-account-structure-financial-components"] .as-table .ember-table table tbody tr.group-assignment-row > td .table-group-filter-container .ui-accordion.as-filter-accordion .ui-accordion-content,
[class^="route-account-structure-read-financial-components"] .as-table .ember-table table tbody tr.group-assignment-row > td .table-group-filter-container .ui-accordion.as-filter-accordion .ui-accordion-content,
[class^="route-account-structure-write-financial-components"] .as-table .ember-table table tbody tr.group-assignment-row > td .table-group-filter-container .ui-accordion.as-filter-accordion .ui-accordion-content {
  position: absolute;
  z-index: 5;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.3);
}
[class^="route-account-structure-financial-components"] .as-table .ember-table table tbody tr.group-assignment-row > td .table-group-filter-container .ui-accordion.as-filter-accordion .status-indicator,
[class^="route-account-structure-read-financial-components"] .as-table .ember-table table tbody tr.group-assignment-row > td .table-group-filter-container .ui-accordion.as-filter-accordion .status-indicator,
[class^="route-account-structure-write-financial-components"] .as-table .ember-table table tbody tr.group-assignment-row > td .table-group-filter-container .ui-accordion.as-filter-accordion .status-indicator {
  top: 4px;
  background: url(/assets/img/teal-arrow.svg) #fff no-repeat;
  background-position: 95% 11px;
  background-size: 14px;
  border: none;
}
[class^="route-account-structure-financial-components"] .as-table .ember-table table tbody tr.group-assignment-row > td .table-group-filter-container .ui-accordion.as-filter-accordion .status-indicator .symbol-container,
[class^="route-account-structure-read-financial-components"] .as-table .ember-table table tbody tr.group-assignment-row > td .table-group-filter-container .ui-accordion.as-filter-accordion .status-indicator .symbol-container,
[class^="route-account-structure-write-financial-components"] .as-table .ember-table table tbody tr.group-assignment-row > td .table-group-filter-container .ui-accordion.as-filter-accordion .status-indicator .symbol-container {
  display: none;
}
[class^="route-account-structure-financial-components"] .as-table .ember-table table tbody tr.group-assignment-row > td .table-group-filter-container .ui-accordion.as-filter-accordion .add,
[class^="route-account-structure-read-financial-components"] .as-table .ember-table table tbody tr.group-assignment-row > td .table-group-filter-container .ui-accordion.as-filter-accordion .add,
[class^="route-account-structure-write-financial-components"] .as-table .ember-table table tbody tr.group-assignment-row > td .table-group-filter-container .ui-accordion.as-filter-accordion .add {
  float: left;
  margin: 10px 10px 10px 0;
}
[class^="route-account-structure-financial-components"] .as-table .ember-table table tbody tr.group-assignment-row > td .table-group-filter-container .ui-accordion.as-filter-accordion .ui-grid,
[class^="route-account-structure-read-financial-components"] .as-table .ember-table table tbody tr.group-assignment-row > td .table-group-filter-container .ui-accordion.as-filter-accordion .ui-grid,
[class^="route-account-structure-write-financial-components"] .as-table .ember-table table tbody tr.group-assignment-row > td .table-group-filter-container .ui-accordion.as-filter-accordion .ui-grid {
  clear: both;
}
[class^="route-account-structure-financial-components"] .as-table .ember-table table tbody tr.group-assignment-row > td .table-group-filter-container .as-groups-filter-container,
[class^="route-account-structure-read-financial-components"] .as-table .ember-table table tbody tr.group-assignment-row > td .table-group-filter-container .as-groups-filter-container,
[class^="route-account-structure-write-financial-components"] .as-table .ember-table table tbody tr.group-assignment-row > td .table-group-filter-container .as-groups-filter-container {
  border: solid 1px #e6e6e6;
  padding: 10px 15px 10px 10px;
  margin-bottom: 10px;
  display: none;
}
[class^="route-account-structure-financial-components"] .as-table .ember-table table tbody tr.group-assignment-row > td .table-group-filter-container .as-groups-filter-container.true,
[class^="route-account-structure-read-financial-components"] .as-table .ember-table table tbody tr.group-assignment-row > td .table-group-filter-container .as-groups-filter-container.true,
[class^="route-account-structure-write-financial-components"] .as-table .ember-table table tbody tr.group-assignment-row > td .table-group-filter-container .as-groups-filter-container.true {
  display: table;
}
[class^="route-account-structure-financial-components"] .as-table .ember-table table tbody tr.group-assignment-row > td .table-group-filter-container .as-groups-filter-container .add,
[class^="route-account-structure-read-financial-components"] .as-table .ember-table table tbody tr.group-assignment-row > td .table-group-filter-container .as-groups-filter-container .add,
[class^="route-account-structure-write-financial-components"] .as-table .ember-table table tbody tr.group-assignment-row > td .table-group-filter-container .as-groups-filter-container .add {
  margin: 10px 10px 10px 0;
}
[class^="route-account-structure-financial-components"] .as-table .ember-table table tbody tr.group-assignment-row > td .table-group-filter-container .as-groups-filter-container .as-filter-group .fa-close::before,
[class^="route-account-structure-read-financial-components"] .as-table .ember-table table tbody tr.group-assignment-row > td .table-group-filter-container .as-groups-filter-container .as-filter-group .fa-close::before,
[class^="route-account-structure-write-financial-components"] .as-table .ember-table table tbody tr.group-assignment-row > td .table-group-filter-container .as-groups-filter-container .as-filter-group .fa-close::before {
  font-size: 10px;
  font-size: 1rem;
  position: relative;
  bottom: 2px;
  left: 2px;
}
[class^="route-account-structure-financial-components"] .as-table .ember-table table tbody tr.group-assignment-row > td .table-group-filter-container .as-filter-group,
[class^="route-account-structure-read-financial-components"] .as-table .ember-table table tbody tr.group-assignment-row > td .table-group-filter-container .as-filter-group,
[class^="route-account-structure-write-financial-components"] .as-table .ember-table table tbody tr.group-assignment-row > td .table-group-filter-container .as-filter-group {
  background: #fcfcfc;
  border: solid 1px #e6e6e6;
  padding: 5px;
  position: relative;
}
[class^="route-account-structure-financial-components"] .as-table .ember-table table tbody tr.group-assignment-row > td .table-group-filter-container .as-filter-group .fa-close,
[class^="route-account-structure-read-financial-components"] .as-table .ember-table table tbody tr.group-assignment-row > td .table-group-filter-container .as-filter-group .fa-close,
[class^="route-account-structure-write-financial-components"] .as-table .ember-table table tbody tr.group-assignment-row > td .table-group-filter-container .as-filter-group .fa-close {
  border-radius: 100%;
  background: #ed4651;
  width: 12px;
  height: 12px;
  display: block;
  color: white;
  top: -5px;
  right: -7px;
  position: absolute;
  text-align: center;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.3);
}
[class^="route-account-structure-financial-components"] .as-table .ember-table table tbody tr.group-assignment-row > td .table-group-filter-container .as-filter-group .fa-close::before,
[class^="route-account-structure-read-financial-components"] .as-table .ember-table table tbody tr.group-assignment-row > td .table-group-filter-container .as-filter-group .fa-close::before,
[class^="route-account-structure-write-financial-components"] .as-table .ember-table table tbody tr.group-assignment-row > td .table-group-filter-container .as-filter-group .fa-close::before {
  font-size: 10px;
  font-size: 1rem;
  position: relative;
  bottom: 2px;
}
[class^="route-account-structure-financial-components"] .as-table .ember-table table tbody tr.group-assignment-row > td .table-group-filter-container .as-filter-group .form-select,
[class^="route-account-structure-read-financial-components"] .as-table .ember-table table tbody tr.group-assignment-row > td .table-group-filter-container .as-filter-group .form-select,
[class^="route-account-structure-write-financial-components"] .as-table .ember-table table tbody tr.group-assignment-row > td .table-group-filter-container .as-filter-group .form-select {
  margin-right: 5px;
}
[class^="route-account-structure-financial-components"] .as-table .ember-table table tbody tr.group-assignment-row > td .table-group-filter-container .as-filter-group > div,
[class^="route-account-structure-read-financial-components"] .as-table .ember-table table tbody tr.group-assignment-row > td .table-group-filter-container .as-filter-group > div,
[class^="route-account-structure-write-financial-components"] .as-table .ember-table table tbody tr.group-assignment-row > td .table-group-filter-container .as-filter-group > div {
  display: flex;
}
[class^="route-account-structure-financial-components"] .as-table .ember-table table tbody tr.group-assignment-row > td .group-table-wrapper,
[class^="route-account-structure-read-financial-components"] .as-table .ember-table table tbody tr.group-assignment-row > td .group-table-wrapper,
[class^="route-account-structure-write-financial-components"] .as-table .ember-table table tbody tr.group-assignment-row > td .group-table-wrapper {
  width: 95%;
  max-height: 300px;
  margin: 5px auto;
  border-right: 1px solid #cacaca;
  position: relative;
  z-index: 1;
  overflow: auto;
}
[class^="route-account-structure-financial-components"] .as-table .ember-table table tbody tr.group-assignment-row > td table td .unassigned,
[class^="route-account-structure-read-financial-components"] .as-table .ember-table table tbody tr.group-assignment-row > td table td .unassigned,
[class^="route-account-structure-write-financial-components"] .as-table .ember-table table tbody tr.group-assignment-row > td table td .unassigned {
  color: #ed4651;
}
[class^="route-account-structure-financial-components"] .as-table .ember-table table tbody tr.group-assignment-row:hover,
[class^="route-account-structure-read-financial-components"] .as-table .ember-table table tbody tr.group-assignment-row:hover,
[class^="route-account-structure-write-financial-components"] .as-table .ember-table table tbody tr.group-assignment-row:hover {
  background-color: inherit;
}
main.main-content .header-content-wrapper .as-plan-year-controls {
  display: flex;
}
main.main-content .header-content-wrapper .as-plan-year-controls input {
  width: 120px;
  margin-top: 0px;
}
main.main-content .header-content-wrapper .as-plan-year-controls label {
  margin-top: 5px;
  margin-right: 5px;
}
.et-sort-indicator {
  display: inline-block;
  font: normal normal normal 14px/1 fontawesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.et-sort-indicator.is-ascending::after {
  content: "\f0de";
}
.et-sort-indicator.is-descending::after {
  content: "\f0dd";
}
.plan-details {
  margin-top: 15px;
  border: 1px solid #ababab;
  padding: 8px;
  background: #f8f8f8;
}
.plan-details .ui-grid .ui-block .ui-label {
  color: #555555;
}
.plan-details strong span {
  color: #2e8b9d;
}
.plan-details .disabled {
  pointer-events: none;
  opacity: 0.6;
}
.add-plan-button.hidden {
  display: none;
}
.plan-tiers {
  border: 1px solid #ababab;
  background: #f8f8f8;
  position: relative;
  min-height: 35px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
}
.plan-tiers.hidden {
  display: none;
}
.plan-tiers > * input,
.plan-tiers > * select {
  width: 100%;
}
.plan-tiers > * input.disabled,
.plan-tiers > * select.disabled {
  pointer-events: none;
  opacity: 0;
}
.plan-tiers .label-list {
  min-width: 200px;
  max-width: 200px;
  margin-right: 10px;
  position: absolute;
  z-index: 10;
  background: #f3f3f3;
  padding: 12px 13px 22px 7px;
  border-right: solid 1px #e6e6e6;
}
.plan-tiers .label-list .note {
  font-size: 11px;
  font-size: 1.1rem;
  line-height: 12px;
  line-height: 1.2rem;
  font-weight: 700;
  color: #2e8b9d;
  margin: 0 0 30px 0;
}
.plan-tiers .label-list label {
  display: block;
  text-align: right;
  margin-bottom: 10px;
  line-height: 24px;
  color: #555555;
  font-weight: 700;
}
.plan-tiers .label-list + .future-plan-info {
  margin-left: 230px;
}
.plan-tiers .label-list > .sublabel {
  font-weight: 300;
}
.plan-tiers .label-list > .sublabel span {
  color: #2e8b9d;
  font-weight: 700;
  position: absolute;
  right: 6px;
}
.plan-tiers .label-list .empty {
  min-height: 15px;
}
.plan-tiers .future-plan-info {
  margin: 0 10px 20px 0;
  min-width: 140px;
  max-width: 140px;
  padding-top: 20px;
}
.plan-tiers .future-plan-info .hidden {
  pointer-events: none;
  opacity: 0;
}
.plan-tiers .future-plan-info .disabled {
  pointer-events: none;
  opacity: 0.6;
}
.plan-tiers .future-plan-info .standard-button.delete {
  margin-bottom: 10px;
}
.plan-tiers .future-plan-info .message {
  bottom: 41px;
}
.plan-tiers .future-plan-info .right-align.note-percent > .symbol-label.percent {
  font-weight: bold;
  font-size: 12px;
  font-size: 1.2rem;
  position: absolute;
  top: 5px;
  right: 30px;
}
.plan-tiers .future-plan-info .input-container {
  position: relative;
}
.plan-tiers .future-plan-info .input-container input[type="string"] {
  padding: 0 7px;
}
.plan-tiers .future-plan-info .input-container span {
  position: absolute;
  top: 4px;
  z-index: 2;
  font-size: 11px;
  font-size: 1.1rem;
  color: #7a7a7a;
}
.plan-tiers .future-plan-info .input-container span.dollar-label {
  left: 4px;
}
.plan-tiers .future-plan-info .input-container span.percent-label {
  right: 4px;
}
.plan-tiers .future-plan-info input,
.plan-tiers .future-plan-info select {
  margin-bottom: 10px;
  min-height: 24px;
  max-height: 24px;
  box-sizing: border-box;
  padding: 0 10px;
  color: #555555;
}
.plan-tiers .future-plan-info input[required],
.plan-tiers .future-plan-info select[required] {
  border: 1px solid #2e8b9d;
}
.plan-tiers .future-plan-info > .hide {
  opacity: 0;
}
.plan-tiers .future-plan-info .column-label {
  display: block;
  margin-bottom: 12px;
}
.clone-plan-year-selection-modal-content-wrapper .as-plan-year-controls {
  margin: 30px;
}
.as-locked-message {
  display: block;
  margin: 20px 0px 0px 20px;
  color: #2e8b9d;
}
.as-locked-message::before {
  font-family: "fontawesome" !important;
  content: "\f06a";
  margin-right: 5px;
  font-size: 14px;
  font-size: 1.4rem;
}
.as-locked-message.group-info {
  margin: 0 0 20px 0;
}
.as-disabled + .generic-tab-navigator input,
.as-disabled + .generic-tab-navigator select,
.as-disabled + .generic-tab-navigator .ui-toggle-switch,
.as-disabled + .generic-tab-navigator td .insight-options,
.as-disabled + .generic-tab-navigator input + label {
  pointer-events: none;
  opacity: 0.6;
  color: #555555;
}
.as-disabled + .generic-tab-navigator .standard-button.add,
.as-disabled + .generic-tab-navigator .new-plan-btn,
.as-disabled + .generic-tab-navigator .standard-button.filters,
.as-disabled + .generic-tab-navigator .standard-button.save,
.as-disabled + .generic-tab-navigator .standard-button.cancel,
.as-disabled + .generic-tab-navigator .add-plan-button,
.as-disabled + .generic-tab-navigator .standard-button.delete {
  pointer-events: none;
  opacity: 0.6;
  color: white;
}
.as-disabled + .generic-tab-navigator .insight-actions li {
  pointer-events: none;
  opacity: 0.6;
  color: #555555;
}
.as-disabled + .generic-tab-navigator .insight-actions li:first-child {
  pointer-events: all;
  opacity: 1;
  color: #243b5f;
}
.group-pasting {
  text-align: center;
  margin: 3rem 1rem 1rem;
}
.group-pasting div {
  text-align: left;
  width: 95%;
  margin: 2px auto 0;
  padding: 5px;
}
.group-pasting textarea {
  resize: none;
  width: 95%;
  margin: 2px auto 0;
  padding: 15px;
  border: none;
  border-radius: 3px;
  background: #f9f9fa;
  box-shadow: inset 0px 2px 3px 0px rgba(0, 0, 0, 0.1);
}
.as-bulk-upload-container {
  max-width: 60%;
}
.as-bulk-upload-container p {
  margin: 0px 0px 10px 0px;
}
.as-bulk-upload-container h2 {
  color: #243b5f;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 300;
  border-bottom: 1px solid #7e7e7e;
  padding: 0px 0px 10px 0px;
}
.as-bulk-upload-container h2::before {
  font-family: "fontawesome" !important;
  color: #2e8b9d;
  margin: 0px 5px 0px 0px;
  font-size: 14px;
  font-size: 1.4rem;
  content: "\f093";
}
.as-bulk-upload-container .ui-button {
  margin-bottom: 10px;
}
.as-bulk-upload-container .field-container {
  max-width: 110px;
  position: relative;
  display: inline-block;
  margin-right: 10px;
}
.as-bulk-upload-container .field-container .cancel {
  position: absolute;
  left: 65%;
  top: -4px;
  width: 20px;
  background: #7a8593;
  height: 20px;
  border-radius: 100%;
  z-index: 5;
  border: none;
  transition: all 0.3s;
  box-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
}
.as-bulk-upload-container .field-container .cancel:hover {
  background: #ed4651;
  cursor: pointer;
}
.as-bulk-upload-container .field-container .cancel::before {
  font-family: "fontawesome" !important;
  content: "\f00d";
  color: white;
  display: block;
  margin: 0px 0px 0px -1px;
  text-align: center;
}
.as-bulk-upload-container .field-container strong {
  color: #555555;
  font-size: 14px;
  font-size: 1.4rem;
  text-align: center;
  display: block;
  margin-top: 10px;
}
.as-bulk-upload-container .submit-btn {
  height: 80px;
  width: 80px;
  display: block;
  background: #2e8b9d;
  border-radius: 100%;
  margin: 0 auto;
  transition: 0.3s;
  appearance: none;
  outline: none;
  border: none;
}
.as-bulk-upload-container .submit-btn::before {
  color: white;
  font-size: 50px;
  font-size: 5rem;
  display: block;
  text-align: center;
}
.as-bulk-upload-container .submit-btn.check::before {
  font-family: "fontawesome" !important;
  content: "\f00c";
}
.as-bulk-upload-container .submit-btn.close {
  background: #ed4651;
}
.as-bulk-upload-container .submit-btn.close:hover {
  cursor: not-allowed;
  box-shadow: none;
}
.as-bulk-upload-container .submit-btn.close::before {
  font-family: "fontawesome" !important;
  content: "\f00d";
}
.as-bulk-upload-container .submit-btn:hover {
  cursor: pointer;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.3);
}
.as-bulk-upload-container .upload-input {
  height: 80px;
  width: 80px;
  position: absolute;
  top: 0;
  left: 13px;
  opacity: 0;
}
.as-bulk-upload-container .upload-input:hover {
  cursor: pointer;
}
.as-bulk-upload-container .upload-input:hover + .upload-btn {
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.3);
}
.as-bulk-upload-container .upload-btn {
  height: 80px;
  width: 80px;
  display: block;
  background: #2e8b9d;
  border-radius: 100%;
  margin: 0 auto;
  transition: 0.3s;
}
.as-bulk-upload-container .upload-btn::before {
  font-family: "fontawesome" !important;
  content: "\f093";
  color: white;
  font-size: 50px;
  font-size: 5rem;
  display: block;
  padding-top: 30px;
  text-align: center;
}
.as-bulk-upload-container .error {
  margin: 10px 0px 10px 0px;
}
.as-bulk-download-link {
  color: #2e8b9d;
  font-weight: 700;
}
#accountOptionOutlet {
  position: absolute;
}
#accountOptionOutlet:empty {
  display: none;
}
#accountOptionOutlet.bottom:after,
#accountOptionOutlet.bottom:before {
  bottom: 90%;
  left: 88%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  z-index: 3;
}
#accountOptionOutlet.bottom:after {
  border-color: rgba(136, 183, 213, 0);
  border-bottom-color: white;
  border-width: 6px;
  margin-left: -6px;
}
#accountOptionOutlet.bottom:before {
  border-color: rgba(194, 225, 245, 0);
  border-bottom-color: #e6e6e6;
  border-width: 7px;
  margin-left: -7px;
}
#accountOptionOutlet.left:after,
#accountOptionOutlet.left:before {
  bottom: 13%;
  left: 104%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  z-index: 3;
}
#accountOptionOutlet.left:after {
  border-color: rgba(136, 183, 213, 0);
  border-left-color: white;
  border-width: 5px;
  margin-left: -6px;
}
#accountOptionOutlet.left:before {
  border-color: rgba(194, 225, 245, 0);
  border-left-color: #e6e6e6;
  border-width: 5px;
  margin-left: -5px;
}
.account-structure-options {
  background: white;
  border: 1px solid #e6e6e6;
  list-style: none;
  padding: 0px;
  position: relative;
  text-align: left;
  width: 155px;
  z-index: 100;
}
.account-structure-options li {
  cursor: pointer;
  padding: 6px 10px;
}
.account-structure-options li:hover {
  background: #f5f5f5;
}
.account-structure-options li span {
  margin-right: 5px;
  vertical-align: sub;
}
.account-structure-options li:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.account-structure-options li.disabled {
  opacity: 0.5;
  cursor: default;
}
.route-smart-cohort-loading .loading-indicator {
  position: absolute;
  top: 0;
  background: #fff;
  height: 100%;
  padding: 150px 0px 0px 0px;
}
.unsupported-export {
  margin: 5px 5px 0 10px;
}
.route-smart-cohort-index .error-indexes,
.route-smart-cohort-output .error-indexes {
  width: 200px;
  display: block;
  word-wrap: break-word;
  max-height: 50px;
  overflow-y: auto;
  border: solid 1px #e6e6e6;
  padding: 5px;
}
.route-smart-cohort-index p.error span.error,
.route-smart-cohort-output p.error span.error {
  display: block;
}
.route-smart-cohort-index .highcharts-plot-band-label,
.route-smart-cohort-output .highcharts-plot-band-label {
  top: 30px !important;
}
.route-smart-cohort-index .sc-legend,
.route-smart-cohort-output .sc-legend {
  height: 50px;
  padding: 0px 0px 0px 70px;
  max-width: 600px;
  margin: 0 auto;
  display: flex;
}
.route-smart-cohort-index .sc-legend p,
.route-smart-cohort-output .sc-legend p {
  position: relative;
  padding: 0px 0px 0px 20px;
  font-size: 12px;
  font-size: 1.2rem;
  color: #555555;
  margin-right: 10px !important;
}
.route-smart-cohort-index .sc-legend p span,
.route-smart-cohort-output .sc-legend p span {
  display: block;
  margin: 0 auto;
}
.route-smart-cohort-index .sc-legend .swatch,
.route-smart-cohort-output .sc-legend .swatch {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
}
.route-smart-cohort-index .sc-summary,
.route-smart-cohort-output .sc-summary {
  width: calc(100% - 40px);
  padding: 20px 20px 0px 20px;
  font-size: 14px;
  font-size: 1.4rem;
  color: #555555;
}
.route-smart-cohort-index .sc-summary .ui-accordion,
.route-smart-cohort-output .sc-summary .ui-accordion {
  margin-top: 30px;
}
.route-smart-cohort-index .sc-summary .ui-block.how-it-works,
.route-smart-cohort-output .sc-summary .ui-block.how-it-works {
  padding: 20px 30px 20px 20px;
  margin: 0;
  border-right: 1px solid #e6e6e6;
}
.route-smart-cohort-index .sc-summary .ui-block.how-it-works p,
.route-smart-cohort-output .sc-summary .ui-block.how-it-works p {
  margin: 0px 0px 20px 0px;
}
.route-smart-cohort-index .sc-summary .ui-block h3,
.route-smart-cohort-output .sc-summary .ui-block h3 {
  display: block;
  color: #243b5f;
  border-bottom: solid 1px #e6e6e6;
  padding: 0px 0px 5px 0px;
  margin: 0px 0px 20px 0px;
  font-size: 15px;
  font-size: 1.5rem;
}
.route-smart-cohort-index .sc-summary .ui-block.example-container,
.route-smart-cohort-output .sc-summary .ui-block.example-container {
  padding: 20px;
}
.route-smart-cohort-index .sc-summary .ui-block.example-container p,
.route-smart-cohort-output .sc-summary .ui-block.example-container p {
  margin: 0px 0px 5px 0px;
}
.route-smart-cohort-index .sc-summary .ui-block.example-container strong,
.route-smart-cohort-output .sc-summary .ui-block.example-container strong {
  display: inline-block;
  margin: 0;
}
.route-smart-cohort-index .sc-summary .ui-block.example-container .better-performance,
.route-smart-cohort-output .sc-summary .ui-block.example-container .better-performance {
  color: #2e8b9d;
}
.route-smart-cohort-index .sc-summary .ui-block.example-container .worse-performance,
.route-smart-cohort-output .sc-summary .ui-block.example-container .worse-performance {
  color: #8f5ba4;
}
.route-smart-cohort-index .sc-summary .ui-block.example-container .example-graph-parent,
.route-smart-cohort-output .sc-summary .ui-block.example-container .example-graph-parent {
  display: table;
  margin: 0 auto;
}
.route-smart-cohort-index .sc-summary .ui-block.example-container .example-graph-parent img,
.route-smart-cohort-output .sc-summary .ui-block.example-container .example-graph-parent img {
  width: 100%;
}
.route-smart-cohort-index .sc-summary .ui-block ul,
.route-smart-cohort-output .sc-summary .ui-block ul {
  margin: 0px 0px 20px 0px;
  padding: 0px 0px 0px 20px;
}
.route-smart-cohort-index .sc-summary .ui-block ul li,
.route-smart-cohort-output .sc-summary .ui-block ul li {
  color: #2e8b9d;
  margin: 0px 0px 10px 0px;
}
.route-smart-cohort-index .sc-summary .ui-block ul li span,
.route-smart-cohort-output .sc-summary .ui-block ul li span {
  color: #555555;
}
.route-smart-cohort-index .sc-summary .example-graph,
.route-smart-cohort-output .sc-summary .example-graph {
  padding: 30px 0px 0px 0px;
  position: relative;
}
.route-smart-cohort-index .sc-summary .example-graph .arrow-container,
.route-smart-cohort-output .sc-summary .example-graph .arrow-container {
  max-width: 345px;
  margin: 0 auto;
  padding: 0px 0px 0px 30px;
  position: relative;
  z-index: 1;
}
.route-smart-cohort-index .sc-summary .example-graph .arrow-container div,
.route-smart-cohort-output .sc-summary .example-graph .arrow-container div {
  max-width: 100px;
}
.route-smart-cohort-index .sc-summary .example-graph .arrow-container strong,
.route-smart-cohort-output .sc-summary .example-graph .arrow-container strong {
  text-align: center;
  display: table;
  margin: 0 auto;
}
.route-smart-cohort-index .sc-summary .example-graph .arrow-container .favorable-container,
.route-smart-cohort-output .sc-summary .example-graph .arrow-container .favorable-container {
  margin-right: auto;
}
.route-smart-cohort-index .sc-summary .example-graph .arrow-container .unfavorable-container,
.route-smart-cohort-output .sc-summary .example-graph .arrow-container .unfavorable-container {
  margin-left: auto;
}
.route-smart-cohort-index .sc-summary .example-graph .arrow-container .arrow,
.route-smart-cohort-output .sc-summary .example-graph .arrow-container .arrow {
  display: block;
  width: 100px;
  height: 20px;
  margin: 0 auto;
}
.route-smart-cohort-index .sc-summary .example-graph .arrow-container .arrow.better,
.route-smart-cohort-output .sc-summary .example-graph .arrow-container .arrow.better {
  background: url("/assets/img/better-arrow.svg") no-repeat;
}
.route-smart-cohort-index .sc-summary .example-graph .arrow-container .arrow.worse,
.route-smart-cohort-output .sc-summary .example-graph .arrow-container .arrow.worse {
  background: url("/assets/img/worse-arrow.svg") no-repeat;
}
.route-smart-cohort-index main.main-content .page-content section.sc-content,
.route-smart-cohort-output main.main-content .page-content section.sc-content,
.route-smart-cohort-index main.main-content .page-content section.sc-validation,
.route-smart-cohort-output main.main-content .page-content section.sc-validation {
  margin-bottom: 20px;
}
.route-smart-cohort-index .sc-content h2,
.route-smart-cohort-output .sc-content h2 {
  color: #243b5f;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 300;
  border-bottom: 1px solid #7e7e7e;
  padding: 0px 0px 10px 0px;
}
.route-smart-cohort-index .sc-content h2::before,
.route-smart-cohort-output .sc-content h2::before {
  font-family: "fontawesome" !important;
  color: #2e8b9d;
  margin: 0px 5px 0px 0px;
  font-size: 14px;
  font-size: 1.4rem;
}
.route-smart-cohort-index .sc-content .output-group h2,
.route-smart-cohort-output .sc-content .output-group h2 {
  font-size: 20px;
  font-size: 2rem;
}
.route-smart-cohort-index .sc-content .output-group h2::before,
.route-smart-cohort-output .sc-content .output-group h2::before {
  font-size: 20px;
  font-size: 2rem;
}
.route-smart-cohort-index .sc-content .output-group .flex-row,
.route-smart-cohort-output .sc-content .output-group .flex-row {
  flex-wrap: wrap;
}
.route-smart-cohort-index .sc-content .icon,
.route-smart-cohort-output .sc-content .icon {
  width: 16px;
  height: 18px;
  display: inline-block;
  margin: 0px 5px 0px 0px;
}
.route-smart-cohort-index .sc-content .demographics,
.route-smart-cohort-output .sc-content .demographics {
  padding: 0px 0px 20px 0px;
}
.route-smart-cohort-index .sc-content .demographics h2::before,
.route-smart-cohort-output .sc-content .demographics h2::before {
  content: "\f0c0";
}
.route-smart-cohort-index .sc-content .demographics .chart.first,
.route-smart-cohort-output .sc-content .demographics .chart.first {
  min-height: 400px;
}
.route-smart-cohort-index .sc-content .allowed-costs .icon,
.route-smart-cohort-output .sc-content .allowed-costs .icon {
  height: 20px;
  margin-bottom: -2px;
  width: 20px;
  background: url("/assets/img/allowed-costs-icon.svg");
}
.route-smart-cohort-index .sc-content .allowed-costs .chart,
.route-smart-cohort-output .sc-content .allowed-costs .chart {
  max-width: 50%;
  min-width: 50%;
}
.route-smart-cohort-index .sc-content .chart,
.route-smart-cohort-output .sc-content .chart {
  margin: 0px 0px 20px 0px;
}
.route-smart-cohort-index .sc-content .chart tspan,
.route-smart-cohort-output .sc-content .chart tspan {
  color: #555555;
}
.route-smart-cohort-index .sc-validation header h2,
.route-smart-cohort-output .sc-validation header h2 {
  border-bottom: 1px solid #cccccc;
  margin: 0 -20px;
  padding: 0 20px 15px;
  font-weight: 300;
}
.route-smart-cohort-index .sc-validation header h2 .fa,
.route-smart-cohort-output .sc-validation header h2 .fa {
  color: #ff9933;
}
.route-smart-cohort-index .sc-validation header h2 .fa.error,
.route-smart-cohort-output .sc-validation header h2 .fa.error {
  color: #ed4651;
}
.route-smart-cohort-index .sc-input-form,
.route-smart-cohort-output .sc-input-form {
  position: relative;
  font-family: "neue-helvetica", "Helvetica Neue", Helvetica, sans-serif !important;
}
.route-smart-cohort-index .sc-input-form ul,
.route-smart-cohort-output .sc-input-form ul {
  margin: 0;
  padding: 0;
}
.route-smart-cohort-index .sc-input-form ul li,
.route-smart-cohort-output .sc-input-form ul li {
  list-style: none;
}
.route-smart-cohort-index .sc-input-form ul li::before,
.route-smart-cohort-output .sc-input-form ul li::before {
  font-size: 20px;
  font-size: 2rem;
  margin: 0px 5px 0px 0px;
  content: "• ";
  color: #2e8b9d;
}
.route-smart-cohort-index .sc-input-form .prepared-for .icon,
.route-smart-cohort-output .sc-input-form .prepared-for .icon {
  background: url("/assets/img/user-tie-icon.svg");
}
.route-smart-cohort-index .sc-input-form .prepared-for input,
.route-smart-cohort-output .sc-input-form .prepared-for input {
  width: 50%;
}
.route-smart-cohort-index .sc-input-form .upload-census h2::before,
.route-smart-cohort-output .sc-input-form .upload-census h2::before {
  content: "\f15b";
}
.route-smart-cohort-index .sc-input-form .upload-census ol,
.route-smart-cohort-output .sc-input-form .upload-census ol {
  padding-left: 20px;
}
.route-smart-cohort-index .sc-input-form .upload-census ol strong,
.route-smart-cohort-output .sc-input-form .upload-census ol strong {
  display: inline;
  text-align: left;
}
.route-smart-cohort-index .sc-input-form .regional-benchmark h2::before,
.route-smart-cohort-output .sc-input-form .regional-benchmark h2::before {
  content: "\f080";
}
.route-smart-cohort-index .sc-input-form .med-trend .icon,
.route-smart-cohort-output .sc-input-form .med-trend .icon {
  background: url("/assets/img/medical-icon-teal.svg");
  background-repeat: no-repeat;
}
.route-smart-cohort-index .sc-input-form .rx-trend .icon,
.route-smart-cohort-output .sc-input-form .rx-trend .icon {
  width: 18px;
  background: url("/assets/img/pills-icon-teal.svg");
}
.route-smart-cohort-index .sc-input-form .employer-actual-data,
.route-smart-cohort-output .sc-input-form .employer-actual-data {
  margin-top: 20px;
}
.route-smart-cohort-index .sc-input-form .employer-actual-data .ui-input .ui-label,
.route-smart-cohort-output .sc-input-form .employer-actual-data .ui-input .ui-label {
  color: #555555;
}
.route-smart-cohort-index .sc-input-form .employer-actual-data h2::before,
.route-smart-cohort-output .sc-input-form .employer-actual-data h2::before {
  content: "\f1c0";
}
.route-smart-cohort-index .sc-input-form .input-group .rb-select,
.route-smart-cohort-output .sc-input-form .input-group .rb-select {
  width: calc(50% - 10px);
}
.route-smart-cohort-index .sc-input-form .ead-select,
.route-smart-cohort-output .sc-input-form .ead-select {
  margin: 20px 0px 20px 0px;
  width: 100%;
}
.route-smart-cohort-index .sc-input-form .ui-block.actuarial-value-container,
.route-smart-cohort-output .sc-input-form .ui-block.actuarial-value-container {
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
}
.route-smart-cohort-index .sc-input-form .ui-block.paid,
.route-smart-cohort-output .sc-input-form .ui-block.paid {
  opacity: 1;
  pointer-events: all;
}
.route-smart-cohort-index .upload-census-container,
.route-smart-cohort-output .upload-census-container {
  position: relative;
}
.route-smart-cohort-index .failed-msg,
.route-smart-cohort-output .failed-msg,
.route-smart-cohort-index .warning-msg,
.route-smart-cohort-output .warning-msg {
  text-align: center;
  padding-top: 15px;
  color: #ed4651;
}
.route-smart-cohort-index .failed-msg .fail-info,
.route-smart-cohort-output .failed-msg .fail-info,
.route-smart-cohort-index .warning-msg .fail-info,
.route-smart-cohort-output .warning-msg .fail-info,
.route-smart-cohort-index .failed-msg .warn-info,
.route-smart-cohort-output .failed-msg .warn-info,
.route-smart-cohort-index .warning-msg .warn-info,
.route-smart-cohort-output .warning-msg .warn-info {
  display: block;
  margin-top: 10px;
}
.route-smart-cohort-index .ui-button.error,
.route-smart-cohort-output .ui-button.error {
  margin: 10px 0 0 0;
}
.route-smart-cohort-index .warning-msg,
.route-smart-cohort-output .warning-msg {
  color: #555555;
}
.route-smart-cohort-index .warning-msg .fa,
.route-smart-cohort-output .warning-msg .fa {
  color: #ff9933;
}
.route-smart-cohort-index .error-container,
.route-smart-cohort-output .error-container,
.route-smart-cohort-index .soft-error-container,
.route-smart-cohort-output .soft-error-container,
.route-smart-cohort-index .warning-container,
.route-smart-cohort-output .warning-container {
  padding: 10px;
  margin-top: 10px;
  text-align: left;
}
.route-smart-cohort-index .error-container strong,
.route-smart-cohort-output .error-container strong,
.route-smart-cohort-index .soft-error-container strong,
.route-smart-cohort-output .soft-error-container strong,
.route-smart-cohort-index .warning-container strong,
.route-smart-cohort-output .warning-container strong {
  text-align: left;
  margin: 0 auto 15px;
}
.route-smart-cohort-index .error-container strong .fa,
.route-smart-cohort-output .error-container strong .fa,
.route-smart-cohort-index .soft-error-container strong .fa,
.route-smart-cohort-output .soft-error-container strong .fa,
.route-smart-cohort-index .warning-container strong .fa,
.route-smart-cohort-output .warning-container strong .fa {
  color: #ff9933;
}
.route-smart-cohort-index .error-container .error,
.route-smart-cohort-output .error-container .error,
.route-smart-cohort-index .soft-error-container .error,
.route-smart-cohort-output .soft-error-container .error,
.route-smart-cohort-index .warning-container .error,
.route-smart-cohort-output .warning-container .error,
.route-smart-cohort-index .error-container .warning,
.route-smart-cohort-output .error-container .warning,
.route-smart-cohort-index .soft-error-container .warning,
.route-smart-cohort-output .soft-error-container .warning,
.route-smart-cohort-index .warning-container .warning,
.route-smart-cohort-output .warning-container .warning {
  color: #555555;
  margin: 0px 0px 5px 0px;
}
.route-smart-cohort-index .error-container .error:before,
.route-smart-cohort-output .error-container .error:before,
.route-smart-cohort-index .soft-error-container .error:before,
.route-smart-cohort-output .soft-error-container .error:before,
.route-smart-cohort-index .warning-container .error:before,
.route-smart-cohort-output .warning-container .error:before,
.route-smart-cohort-index .error-container .warning:before,
.route-smart-cohort-output .error-container .warning:before,
.route-smart-cohort-index .soft-error-container .warning:before,
.route-smart-cohort-output .soft-error-container .warning:before,
.route-smart-cohort-index .warning-container .warning:before,
.route-smart-cohort-output .warning-container .warning:before {
  margin: 0px 5px 0px 0px;
  content: "• ";
  color: #ed4651;
}
.route-smart-cohort-index .error-container .warning:before,
.route-smart-cohort-output .error-container .warning:before,
.route-smart-cohort-index .soft-error-container .warning:before,
.route-smart-cohort-output .soft-error-container .warning:before,
.route-smart-cohort-index .warning-container .warning:before,
.route-smart-cohort-output .warning-container .warning:before {
  color: #ff9933;
}
.route-smart-cohort-index .error-container strong .fa,
.route-smart-cohort-output .error-container strong .fa {
  color: #ed4651;
}
.route-smart-cohort-index .upload-btn-container,
.route-smart-cohort-output .upload-btn-container {
  position: relative;
  margin: 0 auto;
  width: 80px;
}
.route-smart-cohort-index .ui-grid .ui-block label.upload-btn,
.route-smart-cohort-output .ui-grid .ui-block label.upload-btn {
  height: 80px;
  width: 80px !important;
  display: block;
  background: #2e8b9d;
  border-radius: 100%;
  transition: 0.3s;
}
.route-smart-cohort-index .ui-grid .ui-block label.upload-btn::before,
.route-smart-cohort-output .ui-grid .ui-block label.upload-btn::before {
  font-family: "fontawesome" !important;
  content: "\f093";
  color: white;
  font-size: 50px;
  font-size: 5rem;
  display: block;
  padding-top: 30px;
  text-align: center;
}
.route-smart-cohort-index .upload-input,
.route-smart-cohort-output .upload-input {
  width: 100%;
  height: 100%;
  position: absolute;
  display: block;
  opacity: 0;
  top: 0;
}
.route-smart-cohort-index .upload-input:hover,
.route-smart-cohort-output .upload-input:hover {
  cursor: pointer;
}
.route-smart-cohort-index .upload-input:hover + .upload-btn,
.route-smart-cohort-output .upload-input:hover + .upload-btn {
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.3);
}
.route-smart-cohort-index strong,
.route-smart-cohort-output strong {
  color: #555555;
  font-size: 14px;
  font-size: 1.4rem;
  text-align: center;
  display: block;
  margin-top: 10px;
}
.route-smart-cohort-index .submit-csv,
.route-smart-cohort-output .submit-csv {
  height: 80px;
  width: 80px;
  display: block;
  border-radius: 100%;
  margin: 0 auto;
  transition: 0.3s;
  background: #2e8b9d;
  border: none;
}
.route-smart-cohort-index .submit-csv::before,
.route-smart-cohort-output .submit-csv::before {
  font-family: "fontawesome" !important;
  content: "\f00c";
  color: white;
  font-size: 50px;
  font-size: 5rem;
  display: block;
  padding-top: 5px;
  text-align: center;
}
.route-smart-cohort-index .submit-csv.invalid,
.route-smart-cohort-output .submit-csv.invalid {
  background: #7a8593;
}
.route-smart-cohort-index .submit-csv.invalid:hover,
.route-smart-cohort-output .submit-csv.invalid:hover {
  background: #ed4651;
}
.route-smart-cohort-index .submit-csv.invalid::before,
.route-smart-cohort-output .submit-csv.invalid::before {
  font-family: "fontawesome" !important;
  content: "\f00d";
  padding-top: 0px;
}
.route-smart-cohort-index .submit-csv:hover,
.route-smart-cohort-output .submit-csv:hover {
  cursor: pointer;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.3);
}
.route-smart-cohort-index .reset-file,
.route-smart-cohort-output .reset-file {
  position: absolute;
  left: 28%;
  top: -4px;
  width: 20px;
  background: #7a8593;
  height: 20px;
  border-radius: 100%;
  border: none;
  transition: all 0.3s;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.3);
  z-index: 5;
}
.route-smart-cohort-index .reset-file:hover,
.route-smart-cohort-output .reset-file:hover {
  background: #ed4651;
  cursor: pointer;
}
.route-smart-cohort-index .reset-file::before,
.route-smart-cohort-output .reset-file::before {
  font-family: "fontawesome" !important;
  content: "\f00d";
  color: white;
  display: block;
  margin: 0px 0px 0px -2px;
  text-align: center;
}
.route-smart-cohort-index .generate-visualizations-btn,
.route-smart-cohort-output .generate-visualizations-btn {
  position: absolute;
  bottom: 20px;
}
.route-smart-cohort-index .loading-indicator,
.route-smart-cohort-output .loading-indicator {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  top: 35px;
  backdrop-filter: blur(4px);
}
.route-smart-cohort-index .loading-indicator > h1,
.route-smart-cohort-output .loading-indicator > h1 {
  margin: revert;
}
[class^="route-plan-design-benchmark"] canvas {
  display: none;
}
[class^="route-plan-design-benchmark"] #ember-basic-dropdown-wormhole .ember-power-select-option[aria-selected="true"] {
  background: #e6e6e6;
  color: #555555;
}
[class^="route-plan-design-benchmark"] #ember-basic-dropdown-wormhole .ember-power-select-search {
  padding: 8px 8px 3px;
}
[class^="route-plan-design-benchmark"] #ember-basic-dropdown-wormhole .ember-power-select-search input {
  width: 100%;
  max-width: 100%;
  padding-left: 4px;
  border-radius: 3px;
  height: 24px;
  background-size: auto 16px;
}
[class^="route-plan-design-benchmark"] .pdb-wormhole-exporting {
  pointer-events: none;
}
[class^="route-plan-design-benchmark"] .pdb-wormhole-exporting + .content .close {
  display: none;
}
[class^="route-plan-design-benchmark"] .pdb-wormhole-exporting + .content .pdb-modal {
  min-width: 300px;
  min-height: 120px;
}
[class^="route-plan-design-benchmark"] .pdb-wormhole-exporting + .content .pdb-modal .loading-indicator {
  margin-top: 80px;
}
[class^="route-plan-design-benchmark"] .pdb-modal {
  text-align: left;
}
[class^="route-plan-design-benchmark"] .pdb-modal h2 {
  font-weight: 300;
  color: #555555;
}
[class^="route-plan-design-benchmark"] .pdb-modal .tab-bar {
  margin: 27px 0 -21px;
}
[class^="route-plan-design-benchmark"] .pdb-modal .tab-bar > ul {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  list-style: none;
  margin: 0;
  overflow: hidden;
  padding: 0;
  transition: 0.2s;
}
[class^="route-plan-design-benchmark"] .pdb-modal .tab-bar > ul li {
  background: #f3f3f3;
  border-top: 1px solid #e6e6e6;
  color: #888888;
  cursor: pointer;
  display: block;
  font-size: 25px;
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 45px;
  line-height: 4.5rem;
  height: 47px;
  width: 100%;
  text-align: center;
}
[class^="route-plan-design-benchmark"] .pdb-modal .tab-bar > ul li:hover {
  background: #e6e6e6;
}
[class^="route-plan-design-benchmark"] .pdb-modal .tab-bar > ul li.active {
  background: white;
  box-shadow: 5px 0px 5px 0px #ddd, -5px 0px 5px 0px #ddd;
  color: #555555;
  position: relative;
}
[class^="route-plan-design-benchmark"] .pdb-modal .tab-bar > ul li:first-child {
  border-left: 1px solid #e6e6e6;
}
[class^="route-plan-design-benchmark"] .pdb-modal .tab-bar > ul li:first-child.active {
  box-shadow: 5px 0px 5px 0px #ddd;
}
[class^="route-plan-design-benchmark"] .pdb-modal .tab-bar > ul li:last-child {
  border-right: 1px solid #e6e6e6;
}
[class^="route-plan-design-benchmark"] .pdb-modal .tab-bar > ul li:last-child.active {
  box-shadow: -5px 0px 5px 0px #ddd;
}
[class^="route-plan-design-benchmark"] .pdb-modal .tab-bar > ul li span.fa {
  font-size: 22px;
  font-size: 2.2rem;
  color: #2e8b9d;
}
[class^="route-plan-design-benchmark"] .pdb-modal .modal-content-container {
  padding: 20px 10px 0px 10px;
  min-height: 350px;
  border: solid 1px #e6e6e6;
}
[class^="route-plan-design-benchmark"] .pdb-modal .modal-content-container ul {
  margin: 20px 0px 0px 0px;
  padding: 10px;
  list-style: none;
}
[class^="route-plan-design-benchmark"] .pdb-modal .modal-content-container ul li {
  text-align: left;
  margin: 0px 0px 10px 0px;
  font-size: 12px;
  font-size: 1.2rem;
}
[class^="route-plan-design-benchmark"] .pdb-modal .modal-content-container ul li strong {
  color: #243b5f;
  display: block;
}
[class^="route-plan-design-benchmark"] .pdb-modal .list {
  height: 300px;
  overflow: auto;
  background: #fbfbfb;
  margin-top: 25px;
  border-top: solid 1px #e6e6e6;
  border-bottom: solid 1px #e6e6e6;
}
[class^="route-plan-design-benchmark"] .pdb-modal .list .item {
  text-align: left;
  margin: 20px 20px 25px 20px;
  padding-bottom: 20px;
  border-bottom: solid 1px #2e8b9d;
}
[class^="route-plan-design-benchmark"] .pdb-modal .list .item h3 {
  font-style: italic;
  border-bottom: solid 1px #e6e6e6;
  padding-bottom: 5px;
  display: table;
  color: #555555;
}
[class^="route-plan-design-benchmark"] .ui-accordion {
  width: calc(100% - 40px);
  margin: 20px 0 0 20px;
}
[class^="route-plan-design-benchmark"] .ui-accordion .pdb-form-container {
  padding: 20px;
  background: #f8f8f8;
  border: solid 1px #e6e6e6;
}
[class^="route-plan-design-benchmark"] .ui-accordion .pdb-form-container:first-of-type {
  margin-bottom: 20px;
}
[class^="route-plan-design-benchmark"] .pdb-form-container .filter-title {
  font-size: 20px;
  font-weight: 300;
  color: #555555;
  margin: 10px 0px 5px 0px;
  padding: 0px 0px 10px 0px;
}
[class^="route-plan-design-benchmark"] .pdb-form-container .filter-title::before {
  font-family: "fontawesome" !important;
  color: #555555;
  font-size: 20px;
  font-size: 2rem;
  margin-right: 7px;
  content: "\f1de";
}
[class^="route-plan-design-benchmark"] .pdb-form-container .filter-mask {
  position: absolute;
  display: none;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
  background: #f1f1f1;
  opacity: 0.9;
}
[class^="route-plan-design-benchmark"] .pdb-form-container .filter-mask.filtering {
  display: block;
}
[class^="route-plan-design-benchmark"] .pdb-form-container .filter-mask .loader-container {
  margin: 0 auto;
  position: relative;
  display: table;
  margin-top: 80px;
}
[class^="route-plan-design-benchmark"] .pdb-form-container .filter-mask p {
  font-size: 20px;
  font-size: 2rem;
  font-weight: 300;
  text-align: center;
  display: block;
  margin: 0;
  color: #555555;
}
[class^="route-plan-design-benchmark"] .pdb-form-container .filter-mask .loader {
  width: 15px;
  height: 15px;
  background: url(/assets/img/lens-loading.gif);
  background-size: cover;
  display: inline-block;
}
[class^="route-plan-design-benchmark"] .pdb-form-container .filter-container {
  position: relative;
  overflow: hidden;
  padding: 15px 10px 15px 10px;
  background: #f3f3f3;
  border: solid 1px #e6e6e6;
}
[class^="route-plan-design-benchmark"] .pdb-form-container label {
  color: #243b5f;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 300;
  border-bottom: 1px solid #7e7e7e;
  padding: 0px 0px 10px 0px;
  margin: 0px 0px 10px 0px;
  display: block;
}
[class^="route-plan-design-benchmark"] .pdb-form-container label::before {
  font-family: "fontawesome" !important;
  color: #2e8b9d;
  margin: 0px 5px 0px 0px;
  font-size: 14px;
  font-size: 1.4rem;
}
[class^="route-plan-design-benchmark"] .pdb-form-container label .icon {
  width: 16px;
  height: 18px;
  display: inline-block;
  margin: 0px 5px 0px 0px;
}
[class^="route-plan-design-benchmark"] .pdb-form-container .toggle-container {
  position: absolute;
  right: 0px;
  top: -7px;
  display: flex;
  align-items: center;
}
[class^="route-plan-design-benchmark"] .pdb-form-container .toggle-container span {
  margin: 0px 7px 0px 0px;
  color: #555555;
}
[class^="route-plan-design-benchmark"] .pdb-form-container .toggle-container label {
  width: 65px;
  height: 10px;
  margin: 0px 0px 0px 0px;
}
[class^="route-plan-design-benchmark"] .pdb-form-container .ui-toggle-switch.is-checked + label {
  background-color: #2e8b9d;
}
[class^="route-plan-design-benchmark"] .pdb-form-container .ui-toggle-switch.is-checked + label::after {
  background-color: #2e8b9d;
}
[class^="route-plan-design-benchmark"] .pdb-form-container .ui-toggle-switch + label {
  border-bottom: none;
}
[class^="route-plan-design-benchmark"] .pdb-form-container .ui-toggle-switch + label::before {
  margin: 0px 0px 0px 0px;
}
[class^="route-plan-design-benchmark"] .pdb-form-container .ember-power-select-multiple-option {
  background: #f8f8f8;
  color: #555555;
}
[class^="route-plan-design-benchmark"] .pdb-form-container [type="search"] {
  background: none;
  border: none;
  padding: none;
  margin: 0;
}
[class^="route-plan-design-benchmark"] .pdb-form-container .employer-size .icon {
  background: url(/assets/img/user-tie-icon.svg);
  margin-bottom: -4px;
}
[class^="route-plan-design-benchmark"] .pdb-form-container .state .icon {
  background: url(/assets/plan-design-benchmark/map-marker-icon.svg) no-repeat;
  margin-bottom: -4px;
}
[class^="route-plan-design-benchmark"] .pdb-form-container .funding .icon {
  background: url(/assets/img/allowed-costs-icon.svg) no-repeat;
  margin-bottom: -4px;
}
[class^="route-plan-design-benchmark"] .pdb-form-container .industry label::before {
  content: "\f275";
}
[class^="route-plan-design-benchmark"] .pdb-form-container .plan-year label::before {
  content: "\f073";
}
[class^="route-plan-design-benchmark"] .pdb-form-container .plan-type label::before {
  content: "\f0ca";
}
[class^="route-plan-design-benchmark"] .pdb-form-container .plan-org label::before,
[class^="route-plan-design-benchmark"] .pdb-form-container .client-org label::before {
  content: "\f0c0";
}
[class^="route-plan-design-benchmark"] .pdb-form-container .plan-name label::before {
  content: "\f02d";
}
[class^="route-plan-design-benchmark"] .single-data-row {
  align-items: stretch;
}
[class^="route-plan-design-benchmark"] .single-data-row > * {
  display: block !important;
}
[class^="route-plan-design-benchmark"] .offset-single-data {
  padding-top: 60px;
}
[class^="route-plan-design-benchmark"] .single-data-box {
  display: table;
  border: solid 1px #e6e6e6;
  text-align: center;
  color: #555555;
  line-height: 20px;
}
[class^="route-plan-design-benchmark"] .single-data-box.full-row {
  width: 100%;
  margin-bottom: 20px;
}
[class^="route-plan-design-benchmark"] .single-data-box.col-6 {
  margin-bottom: 20px;
}
[class^="route-plan-design-benchmark"] .single-data-box.col-6:nth-of-type(2n) {
  margin-right: 0;
}
[class^="route-plan-design-benchmark"] .single-data-box div {
  padding: 10px 3px;
}
[class^="route-plan-design-benchmark"] .single-data-box .title {
  background: #f1f1f1;
  font-weight: 300;
  font-size: 17px;
  font-size: 1.7rem;
}
[class^="route-plan-design-benchmark"] .single-data-box .value {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 400;
}
[class^="route-plan-design-benchmark"] .no-table-data {
  border-bottom: none;
  margin: 40px 0;
  width: 100%;
  text-align: center;
  font-weight: normal;
}
[class^="route-plan-design-benchmark"] .plan-design-table {
  margin-bottom: 20px;
}
[class^="route-plan-design-benchmark"] .pdb-table.access-management-table {
  border-collapse: collapse;
}
[class^="route-plan-design-benchmark"] .pdb-table.access-management-table table {
  border: 1px solid #f00;
  margin-bottom: 0;
  margin-top: 0;
  width: 100%;
}
[class^="route-plan-design-benchmark"] .pdb-table.access-management-table tr:hover {
  cursor: default;
  background-color: transparent;
}
[class^="route-plan-design-benchmark"] .pdb-table.access-management-table th,
[class^="route-plan-design-benchmark"] .pdb-table.access-management-table td {
  padding: 10px;
}
[class^="route-plan-design-benchmark"] .pdb-table.access-management-table thead {
  background: #f7f7f7;
  border-bottom: solid 1px #e6e6e6;
}
[class^="route-plan-design-benchmark"] .pdb-table.access-management-table thead .client-row {
  border-bottom: 1px solid #e6e6e6;
}
[class^="route-plan-design-benchmark"] .pdb-table.access-management-table thead .client-row th {
  text-align: center;
}
[class^="route-plan-design-benchmark"] .pdb-table.access-management-table thead .client-row th:last-child {
  background-color: #404d5e;
  color: white;
}
[class^="route-plan-design-benchmark"] .pdb-table.access-management-table thead tr.last-1 th:nth-last-child(-n + 1),
[class^="route-plan-design-benchmark"] .pdb-table.access-management-table thead tr.last-2 th:nth-last-child(-n + 2),
[class^="route-plan-design-benchmark"] .pdb-table.access-management-table thead tr.last-3 th:nth-last-child(-n + 3),
[class^="route-plan-design-benchmark"] .pdb-table.access-management-table thead tr.last-4 th:nth-last-child(-n + 4),
[class^="route-plan-design-benchmark"] .pdb-table.access-management-table thead tr.last-5 th:nth-last-child(-n + 5),
[class^="route-plan-design-benchmark"] .pdb-table.access-management-table thead tr.last-6 th:nth-last-child(-n + 6),
[class^="route-plan-design-benchmark"] .pdb-table.access-management-table thead tr.last-7 th:nth-last-child(-n + 7) {
  background-color: #404d5e;
  color: white;
}
[class^="route-plan-design-benchmark"] .pdb-table.access-management-table thead tr th {
  font-size: 14px;
  font-size: 1.4rem;
  color: #333333;
}
[class^="route-plan-design-benchmark"] .pdb-table.access-management-table tr td {
  padding: 10px;
  font-size: 16px;
  font-size: 1.6rem;
  color: #555555;
  font-weight: 300;
  text-align: center;
}
[class^="route-plan-design-benchmark"] .pdb-table.access-management-table tr td:first-child {
  text-align: left;
}
[class^="route-plan-design-benchmark"] .last-row-bold tr:last-child td {
  font-weight: bold;
}
[class^="route-plan-design-benchmark"] .pdb-table-color {
  border: solid 1px #ababab;
  width: 100%;
  margin-bottom: 20px;
}
[class^="route-plan-design-benchmark"] .pdb-table-color thead {
  border-bottom: solid 1px #ababab;
}
[class^="route-plan-design-benchmark"] .pdb-table-color thead tr th {
  border-right: solid 1px #ababab;
  font-size: 13px;
  font-size: 1.3rem;
  font-weight: 400;
  padding: 5px;
  color: #555555;
  text-align: left;
}
[class^="route-plan-design-benchmark"] .pdb-table-color thead tr th.plan-name-col {
  background: #bcd9ef;
}
[class^="route-plan-design-benchmark"] .pdb-table-color thead tr th.employee-col,
[class^="route-plan-design-benchmark"] .pdb-table-color thead tr th.member-col {
  background: #cfebf1;
}
[class^="route-plan-design-benchmark"] .pdb-table-color tr {
  border-bottom: solid 1px #ababab;
}
[class^="route-plan-design-benchmark"] .pdb-table-color tr.grand-total {
  background: #404d5e;
}
[class^="route-plan-design-benchmark"] .pdb-table-color tr.grand-total td {
  font-weight: bold;
  color: white;
  text-align: right;
}
[class^="route-plan-design-benchmark"] .pdb-table-color tr.grand-total td:first-child {
  text-align: left;
}
[class^="route-plan-design-benchmark"] .pdb-table-color tr:nth-child(odd) td.plan-name-col {
  background: #fafcfe;
}
[class^="route-plan-design-benchmark"] .pdb-table-color tr:nth-child(odd) td.employee-col,
[class^="route-plan-design-benchmark"] .pdb-table-color tr:nth-child(odd) td.member-col {
  background: #feffff;
  text-align: right;
}
[class^="route-plan-design-benchmark"] .pdb-table-color tr:nth-child(even) td.plan-name-col {
  background: #c9e0f2;
}
[class^="route-plan-design-benchmark"] .pdb-table-color tr:nth-child(even) td.employee-col,
[class^="route-plan-design-benchmark"] .pdb-table-color tr:nth-child(even) td.member-col {
  background: #dbf0f4;
  text-align: right;
}
[class^="route-plan-design-benchmark"] .pdb-table-color tr td {
  padding: 5px;
  border-right: solid 1px #ababab;
  font-size: 13px;
  font-size: 1.3rem;
  color: #555555;
  font-weight: 300;
}
[class^="route-plan-design-benchmark"] .generic-tab-navigator .loading-mask {
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 1;
  left: 0;
  height: 100%;
  background: #fff;
  display: none;
}
[class^="route-plan-design-benchmark"] .generic-tab-navigator .loading-mask.loading {
  display: block;
}
[class^="route-plan-design-benchmark"] .generic-tab-navigator .loading-mask .loader-container {
  margin: 0 auto;
  position: relative;
  top: 80px;
  display: table;
}
[class^="route-plan-design-benchmark"] .generic-tab-navigator .loading-mask span {
  font-size: 20px;
  font-size: 2rem;
  font-weight: 300;
  text-align: center;
  display: block;
  margin-top: 15px;
  color: #555555;
}
[class^="route-plan-design-benchmark"] .generic-tab-navigator .loading-mask .loader {
  width: 100px;
  height: 100px;
  background: url(/assets/img/lens-loading.gif);
  background-size: cover;
  margin: 0 auto;
}
[class^="route-plan-design-benchmark"] .generic-tab-navigator > div {
  min-height: 500px;
  position: relative;
}
[class^="route-plan-design-benchmark"] .generic-tab-navigator > div h2,
[class^="route-plan-design-benchmark"] .generic-tab-navigator > div h3 {
  font-weight: 300;
  padding: 0px 0px 10px 0px;
}
[class^="route-plan-design-benchmark"] .generic-tab-navigator > div h2::before,
[class^="route-plan-design-benchmark"] .generic-tab-navigator > div h3::before {
  font-family: "fontawesome" !important;
  color: #2e8b9d;
  margin: 0px 5px 0px 0px;
  font-size: 20px;
  font-size: 2rem;
}
[class^="route-plan-design-benchmark"] .generic-tab-navigator > div h2 {
  color: #243b5f;
  font-size: 20px;
  font-size: 2rem;
  border-bottom: 1px solid #7e7e7e;
}
[class^="route-plan-design-benchmark"] .generic-tab-navigator > div h2 .icon {
  width: 16px;
  height: 18px;
  display: inline-block;
  margin: 0px 5px 0px 0px;
}
[class^="route-plan-design-benchmark"] .generic-tab-navigator > div h2 .icon.employer {
  background: url(/assets/img/user-tie-icon.svg);
  margin-bottom: -2px;
}
[class^="route-plan-design-benchmark"] .generic-tab-navigator > div h2 .icon.medical {
  background: url(/assets/img/medical-icon-teal.svg);
  margin-bottom: -2px;
}
[class^="route-plan-design-benchmark"] .generic-tab-navigator > div h2 .icon.pharmacy {
  background: url(/assets/img/pills-icon-teal.svg);
  height: 16px;
}
[class^="route-plan-design-benchmark"] .generic-tab-navigator > div h2 .icon.rates {
  height: 16px;
  background: url(/assets/img/allowed-costs-icon.svg);
}
[class^="route-plan-design-benchmark"] .generic-tab-navigator > div h2 .icon.claim-xp {
  background: url(/assets/plan-design-benchmark/claim-xp-icon.svg);
  width: 14px;
}
[class^="route-plan-design-benchmark"] .generic-tab-navigator > div h2.no-data {
  text-align: center;
  margin: 100px 0px;
  border-bottom: none;
}
[class^="route-plan-design-benchmark"] .generic-tab-navigator > div h3 {
  font-size: 16px;
  font-size: 1.6rem;
  color: #555555;
  border-bottom: 1px solid #e6e6e6;
}
[class^="route-plan-design-benchmark"] .generic-tab-navigator > div .flex-row {
  margin-bottom: 20px;
}
[class^="route-plan-design-benchmark"] .generic-tab-navigator > div .flex-row.no-push {
  margin-right: 0;
}
[class^="route-plan-design-benchmark"] .generic-tab-navigator .tab-bar {
  margin: 0px;
}
[class^="route-plan-design-benchmark"] .generic-tab-navigator .tab-bar > ul {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  overflow: hidden;
  transition: 0.2s;
}
[class^="route-plan-design-benchmark"] .generic-tab-navigator .tab-bar > ul li {
  background: #f3f3f3;
  border-top: 1px solid #e6e6e6;
  color: #888888;
  cursor: pointer;
  display: block;
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 45px;
  line-height: 4.5rem;
  height: 47px;
  width: 100%;
  text-align: center;
}
[class^="route-plan-design-benchmark"] .generic-tab-navigator .tab-bar > ul li:hover {
  background: #e6e6e6;
}
[class^="route-plan-design-benchmark"] .generic-tab-navigator .tab-bar > ul li.active {
  background: white;
  box-shadow: 5px 0px 5px 0px #ddd, -5px 0px 5px 0px #ddd;
  color: #555555;
  position: relative;
}
[class^="route-plan-design-benchmark"] .generic-tab-navigator .tab-bar > ul li:first-child {
  border-left: 1px solid #e6e6e6;
}
[class^="route-plan-design-benchmark"] .generic-tab-navigator .tab-bar > ul li:first-child.active {
  box-shadow: 5px 0px 5px 0px #ddd;
}
[class^="route-plan-design-benchmark"] .generic-tab-navigator .tab-bar > ul li:first-child .icon::before {
  content: "\f080";
}
[class^="route-plan-design-benchmark"] .generic-tab-navigator .tab-bar > ul li:nth-of-type(2n) .icon {
  background: url(/assets/img/medical-icon-teal.svg) no-repeat;
}
[class^="route-plan-design-benchmark"] .generic-tab-navigator .tab-bar > ul li:nth-of-type(3n) .icon {
  background: url(/assets/img/pills-icon-teal.svg) no-repeat;
}
[class^="route-plan-design-benchmark"] .generic-tab-navigator .tab-bar > ul li:last-child {
  border-right: 1px solid #e6e6e6;
}
[class^="route-plan-design-benchmark"] .generic-tab-navigator .tab-bar > ul li:last-child .icon {
  height: 16px;
  background: url(/assets/img/allowed-costs-icon.svg);
}
[class^="route-plan-design-benchmark"] .generic-tab-navigator .tab-bar > ul li:last-child.active {
  box-shadow: -5px 0px 5px 0px #ddd;
}
[class^="route-plan-design-benchmark"] .generic-tab-navigator .tab-bar > ul li .icon {
  width: 16px;
  height: 18px;
  display: inline-block;
  margin: 0px 0px -3px 0px;
  font-size: 15px;
  font-size: 1.5rem;
  color: #2e8b9d;
}
.pvb-summary {
  width: calc(100% - 40px);
  padding: 20px 20px 0px 20px;
}
.pvb-content h2 {
  color: #243b5f;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 300;
  border-bottom: 1px solid #7e7e7e;
  padding: 0px 0px 10px 0px;
  margin: 0px 0px 10px 0px;
}
.pvb-content h2::before {
  font-family: "fontawesome" !important;
  color: #2e8b9d;
  margin: 0px 5px 0px 0px;
  font-size: 14px;
  font-size: 1.4rem;
}
.pvb-content h2 span {
  color: #2e8b9d;
}
.pvb-content .icon {
  width: 14px;
  height: 16px;
  display: inline-block;
  margin: 0px 5px 0px 0px;
}
.pvb-input-form {
  position: relative;
  font-family: "neue-helvetica", "Helvetica Neue", Helvetica, sans-serif !important;
}
.pvb-input-form .flex-row {
  margin-bottom: 35px;
}
.pvb-input-form a {
  color: #3a759f;
  font-style: italic;
  font-weight: 700;
  transition: all 0.5s;
  text-decoration: underline;
}
.pvb-input-form a:hover {
  color: #243b5f;
}
.pvb-input-form ol {
  margin: 0;
  padding: 0;
}
.pvb-input-form ol li {
  list-style: none;
}
.pvb-input-form ol li span {
  color: #243b5f;
  font-weight: 700;
}
.pvb-input-form .prepared-for,
.pvb-input-form .broker-name {
  margin-bottom: 15px;
}
.pvb-input-form .prepared-for .icon,
.pvb-input-form .broker-name .icon {
  background: url("/assets/img/user-tie-icon.svg");
}
.pvb-input-form .upload-type .icon,
.pvb-input-form .upload-census .icon {
  background: url("/assets/img/file-csv-icon.svg");
  width: 12px;
  height: 16px;
}
.pvb-input-form .dependent-message {
  padding: 3px;
  background: #f8f8f8;
  color: #555555;
  font-weight: 300;
  font-size: 12px;
  font-size: 1.2rem;
  text-align: center;
  border: solid 1px #e6e6e6;
  margin: 41px 0px 0px 0px;
  display: block;
}
.pvb-input-form .dependent-message::before {
  font-family: "fontawesome" !important;
  color: #2e8b9d;
  font-size: 10px;
  font-size: 1rem;
  content: "\f0c0";
  margin-right: 5px;
}
.pvb-input-form .pricing-model .icon,
.pvb-input-form .benefit-amount .icon {
  background: url("/assets/img/allowed-costs-icon.svg");
  width: 16px;
  height: 16px;
  margin-bottom: -2px;
}
.pvb-input-form .input-container input {
  margin: 0px 0px 20px 0px;
  width: 100%;
}
.pvb-input-form .input-container label {
  display: block;
  color: #6f6f6f;
  font-size: 14px;
  font-size: 1.4rem;
  margin: 0px 0px 5px 0px;
}
.pvb-input-form .input-container.actuarial-value-container {
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
}
.pvb-input-form .input-container.paid {
  opacity: 1;
  pointer-events: all;
}
.pvb-input-form .upload-census-container {
  position: relative;
}
.pvb-input-form .upload-census-container.flex-row {
  margin-bottom: 0;
}
.pvb-input-form strong {
  color: #555555;
  font-size: 14px;
  font-size: 1.4rem;
  text-align: center;
  display: block;
  margin-top: 10px;
}
.pvb-input-form strong.inline {
  display: inline-block;
}
.pvb-input-form .valid-csv {
  height: 80px;
  width: 80px;
  display: block;
  border-radius: 100%;
  margin: 0 auto;
  transition: 0.3s;
  background: #2e8b9d;
}
.pvb-input-form .valid-csv::before {
  font-family: "fontawesome" !important;
  content: "\f00c";
  color: white;
  font-size: 50px;
  font-size: 5rem;
  display: block;
  padding-top: 5px;
  text-align: center;
}
.pvb-input-form .valid-csv.invalid {
  background: #7a8593;
}
.pvb-input-form .valid-csv.invalid::before {
  font-family: "fontawesome" !important;
  content: "\f00d";
  padding-top: 0px;
}
.pvb-input-form .pvb-upload-details {
  text-align: center;
  margin-top: 15px;
}
.pvb-input-form .pvb-upload-details .toggle-details {
  cursor: pointer;
}
.pvb-input-form .skipped-rows {
  width: 200px;
}
.pvb-input-form .skipped-rows ol {
  max-height: 130px;
  overflow: scroll;
  padding-left: 10px;
}
.pvb-input-form .reset-file {
  position: absolute;
  left: 28%;
  top: -4px;
  width: 20px;
  background: #7a8593;
  height: 20px;
  border-radius: 100%;
  border: none;
  transition: 0.3s;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.3);
}
.pvb-input-form .reset-file:hover {
  background: #ed4651;
  cursor: pointer;
}
.pvb-input-form .reset-file::before {
  font-family: "fontawesome" !important;
  content: "\f00d";
  color: white;
  display: block;
  margin: 0px 0px 0px -2px;
  text-align: center;
}
.error-container {
  padding: 20px 0px 0px 0px;
}
.error-container .error {
  color: #555555;
  margin: 0px 0px 5px 0px;
}
.error-container .error:before {
  margin: 0px 5px 0px 0px;
  content: "• ";
  color: #ed4651;
}
.upload-btn {
  height: 80px;
  width: 80px !important;
  display: block;
  background: #2e8b9d;
  border-radius: 100%;
  margin: 0 auto;
  transition: 0.3s;
}
.upload-btn[disabled] {
  background: #7a8593;
}
.upload-btn::before {
  font-family: "fontawesome" !important;
  content: "\f093";
  color: white;
  font-size: 50px;
  font-size: 5rem;
  display: block;
  padding-top: 30px;
  text-align: center;
}
.upload-btn:hover:not([disabled]) {
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}
.upload-btn input {
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0;
  pointer-events: none;
}
.run-report {
  font-size: 17px;
  font-size: 1.7rem;
  margin: 0 auto;
  display: block;
  padding: 8px 20px;
  margin-top: 20px;
  height: auto;
}
.run-report:before {
  font-size: 18px;
  font-size: 1.8rem;
  content: "\f058";
}
.pvb-loading-mask {
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 1;
  left: 0;
  height: 100%;
  background: #fff;
  display: none;
}
.pvb-loading-mask.loading {
  display: block;
}
.pvb-loading-mask .loader-container {
  margin: 100px auto;
  position: relative;
  top: 80px;
  display: table;
}
.pvb-loading-mask span {
  font-size: 20px;
  font-size: 2rem;
  font-weight: 300;
  text-align: center;
  display: block;
  margin-top: 15px;
  color: #555555;
}
.pvb-loading-mask .loader {
  width: 100px;
  height: 100px;
  background: url(/assets/img/lens-loading.gif);
  background-size: cover;
  margin: 0 auto;
}
.overview-content-wrapper {
  max-width: 1330px;
  min-width: 850px;
  margin: 0 auto;
  padding-bottom: 50px;
  width: calc(100% - 80px);
}
.overview-content-wrapper section {
  background: none;
}
.overview-content-wrapper .overview-header .flex-row {
  margin-right: 0;
}
.overview-content-wrapper .overview-header .top {
  border-bottom: 1px solid #e6e6e6;
}
.overview-content-wrapper .overview-header .bottom {
  padding: 30px 0px 30px 0px;
  position: relative;
}
.overview-content-wrapper .overview-header .button-container {
  max-width: 255px;
  margin-left: auto;
  margin-right: 0;
  padding: 10px 0;
  display: flex;
  justify-content: flex-end;
}
.overview-content-wrapper .overview-header .button-container.ai-active {
  max-width: 345px;
}
.overview-content-wrapper .overview-header .button-container > div {
  display: inline;
  position: relative;
}
.overview-content-wrapper .overview-header .button-container > div > ul {
  background-color: white;
  list-style-type: none;
  padding: 0;
  position: absolute;
  top: 9px;
  right: -10px;
  z-index: 2;
  white-space: nowrap;
  border: solid 1px #e6e6e6;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
}
.overview-content-wrapper .overview-header .button-container > div > ul::before {
  content: "";
  width: 0px;
  height: 0px;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid white;
  position: absolute;
  top: -7px;
  right: 8px;
  z-index: 2;
}
.overview-content-wrapper .overview-header .button-container > div > ul::after {
  content: "";
  width: 0px;
  height: 0px;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #e6e6e6;
  position: absolute;
  top: -8px;
  right: 7px;
}
.overview-content-wrapper .overview-header .button-container > div > ul > li {
  padding: 10px 10px;
  cursor: pointer;
  font-weight: bold;
}
.overview-content-wrapper .overview-header .button-container > div > ul > li:hover {
  background: #f8f8f8;
}
.overview-content-wrapper .overview-header .button-container > div > ul hr {
  border: none;
  border-top: 1px solid #e6e6e6;
  margin: 0 10px;
}
.overview-content-wrapper .overview-header .button-container > div > ul.exporting {
  pointer-events: none;
}
.overview-content-wrapper .overview-header .button-container button {
  background: none;
  font-size: 15px;
  font-size: 1.5rem;
  color: #687082;
  text-transform: uppercase;
  -webkit-appearance: none;
  padding: 0;
  border: none;
  display: inline-block;
  transition: 0.3s;
}
.overview-content-wrapper .overview-header .button-container button:hover {
  color: #444f63;
  cursor: pointer;
}
.overview-content-wrapper .overview-header .button-container button:hover:disabled {
  cursor: auto;
  color: #8f97a5;
}
.overview-content-wrapper .overview-header .button-container button span {
  width: 16px;
  height: 15px;
  display: inline-block;
  margin-left: 5px;
}
.overview-content-wrapper .overview-header .button-container button.methodology {
  margin-right: 10px;
  display: flex;
}
.overview-content-wrapper .overview-header .button-container button.methodology span {
  background: url(/assets/executive-reports/methodology-icon.svg) no-repeat;
}
.overview-content-wrapper .overview-header .button-container button.ai-analysis {
  margin-right: 10px;
  display: flex;
}
.overview-content-wrapper .overview-header .button-container button.ai-analysis span {
  background: url(/assets/executive-reports/ai-analysis-icon.svg) no-repeat;
}
.overview-content-wrapper .overview-header .button-container button.download span {
  width: 12px;
  background: url(/assets/executive-reports/download-icon.svg) no-repeat;
}
.overview-content-wrapper .overview-header .button-container button.download.exporting {
  pointer-events: none;
}
.overview-content-wrapper .overview-header .button-container button.download.exporting span {
  background: none;
}
.overview-content-wrapper .overview-header .button-container button.download.exporting span .loading-indicator {
  top: -5px;
  left: 60px;
  width: 20px !important;
}
.overview-content-wrapper .overview-header .button-container button.download.exporting span .loading-indicator .spinner {
  width: 15px;
  height: 15px;
}
.overview-content-wrapper .overview-header h1 {
  font-size: 25px;
  font-size: 2.5rem;
  font-weight: 500;
  color: #9b9a9b;
  margin: 0;
  text-transform: capitalize;
}
.overview-content-wrapper .overview-widget-container {
  flex-wrap: wrap;
  margin-right: 0;
}
.overview-content-wrapper .overview-widget-container .date-range-message {
  margin: 0 auto;
  max-width: 800px;
  border-top: solid 1px #D8D8D8;
  border-bottom: solid 1px #D8D8D8;
  color: #555555;
  padding: 30px 0 30px 0;
  margin-top: 70px;
  margin-bottom: 70px;
  text-align: center;
}
.overview-content-wrapper .overview-widget-container .date-range-message .icon {
  background: url(/assets/executive-reports/calendar-icon.svg) no-repeat;
  width: 50px;
  height: 50px;
  display: block;
  margin: 0 auto;
}
.overview-content-wrapper .overview-widget-container .date-range-message h3 {
  font-size: 20px;
  font-size: 2rem;
  font-weight: 300;
}
.overview-content-wrapper .overview-widget-container .date-range-message p {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 300;
}
.overview-content-wrapper .overview-widget-container .widget-img {
  width: 100%;
  height: auto;
  margin-top: -40px;
}
.overview-content-wrapper .overview-widget-container .overview-widget {
  background: white;
  margin-bottom: 25px;
  margin-right: 25px;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  position: relative;
}
.overview-content-wrapper .overview-widget-container .overview-widget::before {
  content: '';
  display: block;
  padding-top: 93%;
}
.overview-content-wrapper .overview-widget-container .overview-widget.no-push {
  margin-right: 0;
}
.overview-content-wrapper .overview-widget-container .overview-widget.quarter-block {
  min-width: calc(25% - 19px);
  max-width: calc(25% - 19px);
}
.overview-content-wrapper .overview-widget-container .overview-widget.quarter-block .error-msg {
  font-size: 22px;
  line-height: 28px;
  top: calc(40% - 53px);
}
.overview-content-wrapper .overview-widget-container .overview-widget.half-block {
  min-width: calc(50% - 13px);
  max-width: calc(50% - 13px);
}
.overview-content-wrapper .overview-widget-container .overview-widget.half-block::before {
  padding-top: 55%;
}
.overview-content-wrapper .overview-widget-container .overview-widget.full-width-block {
  min-width: 100%;
  max-width: 100%;
}
.overview-content-wrapper .overview-widget-container .overview-widget.full-width-block::before {
  padding-top: 27.4667%;
  /* widget image height/width ratio */
}
.overview-content-wrapper .overview-widget-container .overview-widget.full-block {
  min-width: 100%;
  max-width: 100%;
}
.overview-content-wrapper .overview-widget-container .overview-widget.full-block::before {
  padding-top: 50.2667%;
}
.overview-content-wrapper .overview-widget-container .overview-widget.no-image.loading::before {
  animation: loadFlicker 1.6s infinite;
  background: #f8f8f8;
}
.overview-content-wrapper .overview-widget-container .overview-widget > img {
  max-width: 100%;
  position: absolute;
  top: 0;
}
.overview-content-wrapper .overview-widget-container .overview-widget .error-msg {
  position: absolute;
  top: calc(50% - 53px);
  height: 106px;
  width: 100%;
  text-align: center;
  font-weight: 300;
  color: #555555;
  font-size: 26px;
  margin: 0;
  padding: 0 20px;
  box-sizing: border-box;
  line-height: 34px;
}
.overview-content-wrapper .overview-widget-container .overview-widget .error-msg > strong {
  text-transform: capitalize;
  font-weight: 600;
}
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header .arrow-button {
  top: 20px;
}
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header a,
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header button,
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header .arrow-button {
  border: none;
  background: url(/assets/executive-reports/dashboard-arrow-icon.svg) no-repeat;
  width: 15px;
  max-width: 15px;
  height: 15px;
  margin-left: auto;
  margin-top: 0;
  background-size: cover;
  transition: 0.3s;
  position: absolute;
  right: 20px;
  z-index: 5;
}
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header a.medical,
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header button.medical,
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header .arrow-button.medical,
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header a.rx,
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header button.rx,
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header .arrow-button.rx,
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header a.budget,
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header button.budget,
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header .arrow-button.budget {
  top: 87.25%;
  left: 23.7%;
  right: auto;
}
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header a.medical:hover,
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header button.medical:hover,
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header .arrow-button.medical:hover,
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header a.rx:hover,
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header button.rx:hover,
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header .arrow-button.rx:hover,
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header a.budget:hover,
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header button.budget:hover,
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header .arrow-button.budget:hover {
  left: calc(23.7% + 4px);
  right: auto;
}
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header a.rx,
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header button.rx,
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header .arrow-button.rx {
  left: 63.9%;
}
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header a.rx:hover,
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header button.rx:hover,
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header .arrow-button.rx:hover {
  left: calc(63.9% + 4px);
}
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header a.budget,
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header button.budget,
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header .arrow-button.budget {
  left: 93.8%;
}
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header a.budget:hover,
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header button.budget:hover,
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header .arrow-button.budget:hover {
  left: calc(93.8% + 4px);
}
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header a.potential-savings-1,
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header button.potential-savings-1,
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header .arrow-button.potential-savings-1 {
  right: 50.533%;
  bottom: 56.624%;
  background: url(/assets/executive-reports/white-dashboard-arrow-icon.svg) no-repeat;
}
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header a.potential-savings-1:hover,
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header button.potential-savings-1:hover,
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header .arrow-button.potential-savings-1:hover {
  right: calc(50.533% - 4px);
}
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header a.potential-savings-2,
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header button.potential-savings-2,
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header .arrow-button.potential-savings-2 {
  right: 1.6%;
  bottom: 56.624%;
  background: url(/assets/executive-reports/white-dashboard-arrow-icon.svg) no-repeat;
}
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header a.potential-savings-2:hover,
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header button.potential-savings-2:hover,
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header .arrow-button.potential-savings-2:hover {
  right: calc(1.6% - 4px);
}
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header a.potential-savings-3,
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header button.potential-savings-3,
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header .arrow-button.potential-savings-3 {
  right: 50.533%;
  bottom: 38.653%;
  background: url(/assets/executive-reports/white-dashboard-arrow-icon.svg) no-repeat;
}
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header a.potential-savings-3:hover,
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header button.potential-savings-3:hover,
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header .arrow-button.potential-savings-3:hover {
  right: calc(50.533% - 4px);
}
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header a.potential-savings-4,
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header button.potential-savings-4,
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header .arrow-button.potential-savings-4 {
  right: 1.6%;
  bottom: 38.653%;
  background: url(/assets/executive-reports/white-dashboard-arrow-icon.svg) no-repeat;
}
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header a.potential-savings-4:hover,
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header button.potential-savings-4:hover,
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header .arrow-button.potential-savings-4:hover {
  right: calc(1.6% - 4px);
}
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header a.potential-savings-5,
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header button.potential-savings-5,
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header .arrow-button.potential-savings-5 {
  right: 50.533%;
  bottom: 20.682%;
  background: url(/assets/executive-reports/white-dashboard-arrow-icon.svg) no-repeat;
}
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header a.potential-savings-5:hover,
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header button.potential-savings-5:hover,
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header .arrow-button.potential-savings-5:hover {
  right: calc(50.533% - 4px);
}
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header a.potential-savings-6,
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header button.potential-savings-6,
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header .arrow-button.potential-savings-6 {
  right: 1.6%;
  bottom: 20.682%;
  background: url(/assets/executive-reports/white-dashboard-arrow-icon.svg) no-repeat;
}
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header a.potential-savings-6:hover,
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header button.potential-savings-6:hover,
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header .arrow-button.potential-savings-6:hover {
  right: calc(1.6% - 4px);
}
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header a.potential-savings-7,
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header button.potential-savings-7,
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header .arrow-button.potential-savings-7 {
  right: 75%;
  bottom: 2.712%;
  background: url(/assets/executive-reports/white-dashboard-arrow-icon.svg) no-repeat;
}
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header a.potential-savings-7:hover,
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header button.potential-savings-7:hover,
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header .arrow-button.potential-savings-7:hover {
  right: calc(75% - 4px);
}
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header a.potential-savings-8,
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header button.potential-savings-8,
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header .arrow-button.potential-savings-8 {
  right: 50.533%;
  bottom: 2.712%;
  background: url(/assets/executive-reports/white-dashboard-arrow-icon.svg) no-repeat;
}
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header a.potential-savings-8:hover,
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header button.potential-savings-8:hover,
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header .arrow-button.potential-savings-8:hover {
  right: calc(50.533% - 4px);
}
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header a.potential-savings-9,
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header button.potential-savings-9,
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header .arrow-button.potential-savings-9 {
  right: 26.067%;
  bottom: 2.712%;
  background: url(/assets/executive-reports/white-dashboard-arrow-icon.svg) no-repeat;
}
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header a.potential-savings-9:hover,
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header button.potential-savings-9:hover,
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header .arrow-button.potential-savings-9:hover {
  right: calc(26.067% - 4px);
}
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header a.potential-savings-10,
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header button.potential-savings-10,
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header .arrow-button.potential-savings-10 {
  right: 1.6%;
  bottom: 2.712%;
  background: url(/assets/executive-reports/white-dashboard-arrow-icon.svg) no-repeat;
}
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header a.potential-savings-10:hover,
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header button.potential-savings-10:hover,
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header .arrow-button.potential-savings-10:hover {
  right: calc(1.6% - 4px);
}
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header a:hover,
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header button:hover,
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header .arrow-button:hover {
  cursor: pointer;
  right: 16px;
}
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header span.notice {
  position: absolute;
  top: 20px;
  right: 38px;
  z-index: 6;
}
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header span.notice.potential-savings-1 {
  right: 52.533%;
  bottom: 56.624%;
  top: auto;
}
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header span.notice.potential-savings-2 {
  right: 3.6%;
  bottom: 56.624%;
  top: auto;
}
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header span.notice.potential-savings-3 {
  right: 52.533%;
  bottom: 38.653%;
  top: auto;
}
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header span.notice.potential-savings-4 {
  right: 3.6%;
  bottom: 38.653%;
  top: auto;
}
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header span.notice.potential-savings-5 {
  right: 52.533%;
  bottom: 20.682%;
  top: auto;
}
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header span.notice.potential-savings-6 {
  right: 3.6%;
  bottom: 20.682%;
  top: auto;
}
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header span.notice.potential-savings-7 {
  right: 77%;
  bottom: 2.712%;
  top: auto;
}
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header span.notice.potential-savings-8 {
  right: 52.533%;
  bottom: 2.712%;
  top: auto;
}
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header span.notice.potential-savings-9 {
  right: 28.067%;
  bottom: 2.712%;
  top: auto;
}
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header span.notice.potential-savings-10 {
  right: 3.6%;
  bottom: 2.712%;
  top: auto;
}
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header span.notice[data-tooltip]:after {
  transform: translateX(calc(-50% - 8px));
  white-space: pre;
}
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header span.notice.multiline-1.bottom:hover[data-tooltip]:after {
  height: 18px;
  top: 17px;
  padding-top: 11px;
  background: linear-gradient(transparent 0, transparent 8px, #243b5f 8px, #243b5f 100%), url(/assets/img/tooltip-pointer-up.svg) no-repeat 50% 0;
}
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header span.notice.multiline-1.top:hover[data-tooltip]:after {
  height: 25px;
  top: -29px;
  background: linear-gradient(#243b5f 0, #243b5f 24px, transparent 24px, transparent 100%), url(/assets/img/tooltip-pointer.svg) no-repeat 50% 100%;
}
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header span.notice.multiline-2.bottom:hover[data-tooltip]:after {
  height: 33px;
  top: 17px;
  padding-top: 11px;
  background: linear-gradient(transparent 0, transparent 8px, #243b5f 8px, #243b5f 100%), url(/assets/img/tooltip-pointer-up.svg) no-repeat 50% 0;
}
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header span.notice.multiline-2.top:hover[data-tooltip]:after {
  height: 40px;
  top: -44px;
  background: linear-gradient(#243b5f 0, #243b5f 39px, transparent 39px, transparent 100%), url(/assets/img/tooltip-pointer.svg) no-repeat 50% 100%;
}
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header span.notice.multiline-3.bottom:hover[data-tooltip]:after {
  height: 48px;
  top: 17px;
  padding-top: 11px;
  background: linear-gradient(transparent 0, transparent 8px, #243b5f 8px, #243b5f 100%), url(/assets/img/tooltip-pointer-up.svg) no-repeat 50% 0;
}
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header span.notice.multiline-3.top:hover[data-tooltip]:after {
  height: 55px;
  top: -59px;
  background: linear-gradient(#243b5f 0, #243b5f 54px, transparent 54px, transparent 100%), url(/assets/img/tooltip-pointer.svg) no-repeat 50% 100%;
}
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header span.notice.multiline-4.bottom:hover[data-tooltip]:after {
  height: 63px;
  top: 17px;
  padding-top: 11px;
  background: linear-gradient(transparent 0, transparent 8px, #243b5f 8px, #243b5f 100%), url(/assets/img/tooltip-pointer-up.svg) no-repeat 50% 0;
}
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header span.notice.multiline-4.top:hover[data-tooltip]:after {
  height: 70px;
  top: -74px;
  background: linear-gradient(#243b5f 0, #243b5f 69px, transparent 69px, transparent 100%), url(/assets/img/tooltip-pointer.svg) no-repeat 50% 100%;
}
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header span.notice.multiline-5.bottom:hover[data-tooltip]:after {
  height: 78px;
  top: 17px;
  padding-top: 11px;
  background: linear-gradient(transparent 0, transparent 8px, #243b5f 8px, #243b5f 100%), url(/assets/img/tooltip-pointer-up.svg) no-repeat 50% 0;
}
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header span.notice.multiline-5.top:hover[data-tooltip]:after {
  height: 85px;
  top: -89px;
  background: linear-gradient(#243b5f 0, #243b5f 84px, transparent 84px, transparent 100%), url(/assets/img/tooltip-pointer.svg) no-repeat 50% 100%;
}
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header span.notice.multiline-6.bottom:hover[data-tooltip]:after {
  height: 93px;
  top: 17px;
  padding-top: 11px;
  background: linear-gradient(transparent 0, transparent 8px, #243b5f 8px, #243b5f 100%), url(/assets/img/tooltip-pointer-up.svg) no-repeat 50% 0;
}
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header span.notice.multiline-6.top:hover[data-tooltip]:after {
  height: 100px;
  top: -104px;
  background: linear-gradient(#243b5f 0, #243b5f 99px, transparent 99px, transparent 100%), url(/assets/img/tooltip-pointer.svg) no-repeat 50% 100%;
}
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header span.notice.multiline-7.bottom:hover[data-tooltip]:after {
  height: 108px;
  top: 17px;
  padding-top: 11px;
  background: linear-gradient(transparent 0, transparent 8px, #243b5f 8px, #243b5f 100%), url(/assets/img/tooltip-pointer-up.svg) no-repeat 50% 0;
}
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header span.notice.multiline-7.top:hover[data-tooltip]:after {
  height: 115px;
  top: -119px;
  background: linear-gradient(#243b5f 0, #243b5f 114px, transparent 114px, transparent 100%), url(/assets/img/tooltip-pointer.svg) no-repeat 50% 100%;
}
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header span.notice.multiline-8.bottom:hover[data-tooltip]:after {
  height: 123px;
  top: 17px;
  padding-top: 11px;
  background: linear-gradient(transparent 0, transparent 8px, #243b5f 8px, #243b5f 100%), url(/assets/img/tooltip-pointer-up.svg) no-repeat 50% 0;
}
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header span.notice.multiline-8.top:hover[data-tooltip]:after {
  height: 130px;
  top: -134px;
  background: linear-gradient(#243b5f 0, #243b5f 129px, transparent 129px, transparent 100%), url(/assets/img/tooltip-pointer.svg) no-repeat 50% 100%;
}
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header span.notice.multiline-9.bottom:hover[data-tooltip]:after {
  height: 138px;
  top: 17px;
  padding-top: 11px;
  background: linear-gradient(transparent 0, transparent 8px, #243b5f 8px, #243b5f 100%), url(/assets/img/tooltip-pointer-up.svg) no-repeat 50% 0;
}
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header span.notice.multiline-9.top:hover[data-tooltip]:after {
  height: 145px;
  top: -149px;
  background: linear-gradient(#243b5f 0, #243b5f 144px, transparent 144px, transparent 100%), url(/assets/img/tooltip-pointer.svg) no-repeat 50% 100%;
}
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header span.notice.multiline-10.bottom:hover[data-tooltip]:after {
  height: 153px;
  top: 17px;
  padding-top: 11px;
  background: linear-gradient(transparent 0, transparent 8px, #243b5f 8px, #243b5f 100%), url(/assets/img/tooltip-pointer-up.svg) no-repeat 50% 0;
}
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header span.notice.multiline-10.top:hover[data-tooltip]:after {
  height: 160px;
  top: -164px;
  background: linear-gradient(#243b5f 0, #243b5f 159px, transparent 159px, transparent 100%), url(/assets/img/tooltip-pointer.svg) no-repeat 50% 100%;
}
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header span.notice.multiline-11.bottom:hover[data-tooltip]:after {
  height: 168px;
  top: 17px;
  padding-top: 11px;
  background: linear-gradient(transparent 0, transparent 8px, #243b5f 8px, #243b5f 100%), url(/assets/img/tooltip-pointer-up.svg) no-repeat 50% 0;
}
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header span.notice.multiline-11.top:hover[data-tooltip]:after {
  height: 175px;
  top: -179px;
  background: linear-gradient(#243b5f 0, #243b5f 174px, transparent 174px, transparent 100%), url(/assets/img/tooltip-pointer.svg) no-repeat 50% 100%;
}
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header span.notice.multiline-12.bottom:hover[data-tooltip]:after {
  height: 183px;
  top: 17px;
  padding-top: 11px;
  background: linear-gradient(transparent 0, transparent 8px, #243b5f 8px, #243b5f 100%), url(/assets/img/tooltip-pointer-up.svg) no-repeat 50% 0;
}
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header span.notice.multiline-12.top:hover[data-tooltip]:after {
  height: 190px;
  top: -194px;
  background: linear-gradient(#243b5f 0, #243b5f 189px, transparent 189px, transparent 100%), url(/assets/img/tooltip-pointer.svg) no-repeat 50% 100%;
}
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header span.notice.multiline-13.bottom:hover[data-tooltip]:after {
  height: 198px;
  top: 17px;
  padding-top: 11px;
  background: linear-gradient(transparent 0, transparent 8px, #243b5f 8px, #243b5f 100%), url(/assets/img/tooltip-pointer-up.svg) no-repeat 50% 0;
}
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header span.notice.multiline-13.top:hover[data-tooltip]:after {
  height: 205px;
  top: -209px;
  background: linear-gradient(#243b5f 0, #243b5f 204px, transparent 204px, transparent 100%), url(/assets/img/tooltip-pointer.svg) no-repeat 50% 100%;
}
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header span.notice.multiline-14.bottom:hover[data-tooltip]:after {
  height: 213px;
  top: 17px;
  padding-top: 11px;
  background: linear-gradient(transparent 0, transparent 8px, #243b5f 8px, #243b5f 100%), url(/assets/img/tooltip-pointer-up.svg) no-repeat 50% 0;
}
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header span.notice.multiline-14.top:hover[data-tooltip]:after {
  height: 220px;
  top: -224px;
  background: linear-gradient(#243b5f 0, #243b5f 219px, transparent 219px, transparent 100%), url(/assets/img/tooltip-pointer.svg) no-repeat 50% 100%;
}
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header span.notice.multiline-15.bottom:hover[data-tooltip]:after {
  height: 228px;
  top: 17px;
  padding-top: 11px;
  background: linear-gradient(transparent 0, transparent 8px, #243b5f 8px, #243b5f 100%), url(/assets/img/tooltip-pointer-up.svg) no-repeat 50% 0;
}
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header span.notice.multiline-15.top:hover[data-tooltip]:after {
  height: 235px;
  top: -239px;
  background: linear-gradient(#243b5f 0, #243b5f 234px, transparent 234px, transparent 100%), url(/assets/img/tooltip-pointer.svg) no-repeat 50% 100%;
}
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header span.notice.multiline-16.bottom:hover[data-tooltip]:after {
  height: 243px;
  top: 17px;
  padding-top: 11px;
  background: linear-gradient(transparent 0, transparent 8px, #243b5f 8px, #243b5f 100%), url(/assets/img/tooltip-pointer-up.svg) no-repeat 50% 0;
}
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header span.notice.multiline-16.top:hover[data-tooltip]:after {
  height: 250px;
  top: -254px;
  background: linear-gradient(#243b5f 0, #243b5f 249px, transparent 249px, transparent 100%), url(/assets/img/tooltip-pointer.svg) no-repeat 50% 100%;
}
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header span.notice.multiline-17.bottom:hover[data-tooltip]:after {
  height: 258px;
  top: 17px;
  padding-top: 11px;
  background: linear-gradient(transparent 0, transparent 8px, #243b5f 8px, #243b5f 100%), url(/assets/img/tooltip-pointer-up.svg) no-repeat 50% 0;
}
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header span.notice.multiline-17.top:hover[data-tooltip]:after {
  height: 265px;
  top: -269px;
  background: linear-gradient(#243b5f 0, #243b5f 264px, transparent 264px, transparent 100%), url(/assets/img/tooltip-pointer.svg) no-repeat 50% 100%;
}
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header span.notice.multiline-18.bottom:hover[data-tooltip]:after {
  height: 273px;
  top: 17px;
  padding-top: 11px;
  background: linear-gradient(transparent 0, transparent 8px, #243b5f 8px, #243b5f 100%), url(/assets/img/tooltip-pointer-up.svg) no-repeat 50% 0;
}
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header span.notice.multiline-18.top:hover[data-tooltip]:after {
  height: 280px;
  top: -284px;
  background: linear-gradient(#243b5f 0, #243b5f 279px, transparent 279px, transparent 100%), url(/assets/img/tooltip-pointer.svg) no-repeat 50% 100%;
}
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header span.notice.multiline-19.bottom:hover[data-tooltip]:after {
  height: 288px;
  top: 17px;
  padding-top: 11px;
  background: linear-gradient(transparent 0, transparent 8px, #243b5f 8px, #243b5f 100%), url(/assets/img/tooltip-pointer-up.svg) no-repeat 50% 0;
}
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header span.notice.multiline-19.top:hover[data-tooltip]:after {
  height: 295px;
  top: -299px;
  background: linear-gradient(#243b5f 0, #243b5f 294px, transparent 294px, transparent 100%), url(/assets/img/tooltip-pointer.svg) no-repeat 50% 100%;
}
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header span.notice.multiline-20.bottom:hover[data-tooltip]:after {
  height: 303px;
  top: 17px;
  padding-top: 11px;
  background: linear-gradient(transparent 0, transparent 8px, #243b5f 8px, #243b5f 100%), url(/assets/img/tooltip-pointer-up.svg) no-repeat 50% 0;
}
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header span.notice.multiline-20.top:hover[data-tooltip]:after {
  height: 310px;
  top: -314px;
  background: linear-gradient(#243b5f 0, #243b5f 309px, transparent 309px, transparent 100%), url(/assets/img/tooltip-pointer.svg) no-repeat 50% 100%;
}
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header span.notice i {
  font-size: 18px;
  font-size: 1.8rem;
  top: -1px;
  position: relative;
}
.overview-content-wrapper .overview-widget-container .overview-widget .widget-header span.notice i.inner-notice {
  top: 2px;
}
.overview-content-wrapper .overview-widget-container .overview-widget .loading-indicator {
  top: 50%;
  margin-top: -53px;
}
.overview-content-wrapper .overview-reporting-essentials-wrapper {
  margin-top: 10px;
}
.overview-content-wrapper .overview-reporting-essentials-wrapper .notification {
  border-radius: 100%;
  width: 20px;
  height: 18px;
  background: #106170;
  border: solid 1px #b4e8f2;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: -12px;
  right: -12px;
  z-index: 5;
  color: white;
  font-size: 15px;
  font-size: 1.5rem;
  text-align: center;
  padding-top: 2px;
  display: none;
}
.overview-content-wrapper .overview-reporting-essentials-wrapper .notification.active {
  display: block;
}
.overview-content-wrapper .overview-reporting-essentials-wrapper .subheader {
  display: flex;
  align-items: center;
  padding: 20px 0px 20px 0px;
  border-top: solid 1px #d6d6d6;
  justify-content: space-between;
}
.overview-content-wrapper .overview-reporting-essentials-wrapper .subheader .collection-count-link-wrapper {
  display: flex;
  justify-content: space-between;
}
.overview-content-wrapper .overview-reporting-essentials-wrapper .subheader h2 {
  display: inline-block;
  color: #9b9a9b;
  margin: 0;
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: 500;
  position: relative;
}
.overview-content-wrapper .overview-reporting-essentials-wrapper .subheader h2 .info-tooltip {
  display: block;
  position: absolute;
  top: -5px;
  right: -20px;
  width: 12px;
  height: 12px;
  background: url('/assets/info-tooltip-icon.svg');
}
.overview-content-wrapper .overview-reporting-essentials-wrapper .subheader h2 .info-tooltip:hover {
  cursor: pointer;
}
.overview-content-wrapper .overview-reporting-essentials-wrapper .subheader h2 .info-tooltip[data-field-tooltip]:hover:after {
  z-index: 25;
  content: attr(data-field-tooltip);
  top: 15px;
  left: 0;
  width: 226px;
  display: block;
  text-align: left;
  border-radius: 5px;
  border: solid 1px #cecece;
  position: relative;
  color: #555555;
  padding: 4px 3px 4px 3px;
  background: #fff;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2);
  font-family: sans-serif;
  font-size: 10px;
  font-size: 1rem;
}
.overview-content-wrapper .overview-reporting-essentials-wrapper .subheader .btn {
  position: relative;
  padding-top: 4px;
  border-radius: 5px;
  color: #fff;
  height: 19px;
  display: inline-block;
  margin-left: auto;
  font-weight: 300;
  background: #2e8b9d;
  transition: all 0.4s;
}
.overview-content-wrapper .overview-reporting-essentials-wrapper .subheader .btn .icon {
  position: absolute;
  right: 0;
  top: 0;
  width: 23px;
  height: 23px;
  border-radius: 0 5px 5px 0;
  text-align: center;
  background: #b4e8f2;
}
.overview-content-wrapper .overview-reporting-essentials-wrapper .subheader .btn:hover {
  cursor: pointer;
}
.overview-content-wrapper .overview-reporting-essentials-wrapper .subheader .btn:hover.view-all {
  background: #106170;
}
.overview-content-wrapper .overview-reporting-essentials-wrapper .subheader .btn.view-all {
  margin-left: 0;
  padding: 4px 30px 0 9px;
  position: relative;
}
.overview-content-wrapper .overview-reporting-essentials-wrapper .subheader .btn.view-all .icon svg {
  width: 15px;
  margin-top: 5px;
}
.overview-content-wrapper .overview-reporting-essentials-wrapper .collection {
  background: #fff;
  border-radius: 5px;
  border: solid 1px #d6d6d6;
  box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, 0.1);
  padding: 10px 20px 10px 20px;
  position: relative;
  height: 155px;
}
.overview-content-wrapper .overview-reporting-essentials-wrapper .collection:hover {
  cursor: pointer;
}
.overview-content-wrapper .overview-reporting-essentials-wrapper .collection:hover .content .title-wrapper {
  border-bottom: solid 1px #2e8b9d;
}
.overview-content-wrapper .overview-reporting-essentials-wrapper .collection:hover .bg-container .logo-bg {
  opacity: 0.3;
  transform: rotate(10deg);
}
.overview-content-wrapper .overview-reporting-essentials-wrapper .collection:hover .item-count {
  color: #555555;
}
.overview-content-wrapper .overview-reporting-essentials-wrapper .collection:hover .item-count .icon svg path {
  fill: #555555;
}
.overview-content-wrapper .overview-reporting-essentials-wrapper .collection .item-count {
  font-size: 14px;
  font-size: 1.4rem;
  color: #9a9a9a;
  font-weight: 200;
  display: table;
  border-bottom: solid 1px #d8d8d8;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  transition: all 0.5s;
}
.overview-content-wrapper .overview-reporting-essentials-wrapper .collection .item-count .icon {
  margin-right: 3px;
  display: inline-block;
}
.overview-content-wrapper .overview-reporting-essentials-wrapper .collection .item-count .icon svg {
  width: 15px;
}
.overview-content-wrapper .overview-reporting-essentials-wrapper .collection .item-count .icon svg path {
  transition: all 0.5s;
}
.overview-content-wrapper .overview-reporting-essentials-wrapper .collection-type {
  width: 28px;
  height: 28px;
  border-radius: 100%;
  position: absolute;
  right: 5px;
  top: 5px;
  z-index: 20;
}
.overview-content-wrapper .overview-reporting-essentials-wrapper .collection-type svg {
  margin: 0 auto;
  display: block;
}
.overview-content-wrapper .overview-reporting-essentials-wrapper .collection-type.innovu {
  background: #4892c7;
  border: solid 1px #2d76ab;
}
.overview-content-wrapper .overview-reporting-essentials-wrapper .collection-type.innovu svg {
  width: 14px;
  margin-top: 6px;
}
.overview-content-wrapper .overview-reporting-essentials-wrapper .collection-type.user {
  background: #3eb39f;
  border: solid 1px #508b82;
}
.overview-content-wrapper .overview-reporting-essentials-wrapper .collection-type.user svg {
  width: 12px;
  margin-top: 6px;
}
.overview-content-wrapper .overview-reporting-essentials-wrapper .content {
  padding: 30px 0 0 0;
  z-index: 2;
  position: relative;
}
.overview-content-wrapper .overview-reporting-essentials-wrapper .content .title-wrapper {
  height: 60px;
  display: flex;
  align-items: center;
  border-bottom: solid 1px #d8d8d8;
  padding-bottom: 10px;
  transition: all 0.5s;
}
.overview-content-wrapper .overview-reporting-essentials-wrapper .content h3 {
  font-size: 25px;
  font-size: 2.5rem;
  color: #666666;
  text-align: center;
  margin: 0 auto;
  font-weight: 300;
  margin-bottom: -2px;
  line-height: 30px;
}
.overview-content-wrapper .overview-reporting-essentials-wrapper .content .icon {
  display: inline-block;
  margin-right: 10px;
}
.overview-content-wrapper .overview-reporting-essentials-wrapper .content .icon svg {
  width: 28px;
  margin-bottom: -3px;
}
.overview-content-wrapper .overview-reporting-essentials-wrapper .content .description p {
  font-size: 16px;
  font-size: 1.6rem;
  color: #666666;
  margin: 15px 0 0 0;
  text-align: center;
  font-weight: 300;
}
.overview-content-wrapper .overview-reporting-essentials-wrapper .bg-container {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
}
.overview-content-wrapper .overview-reporting-essentials-wrapper .bg-container .logo-bg {
  transition: all 0.5s;
  position: absolute;
  top: -16px;
  right: -56px;
  z-index: 1;
  opacity: 0.1;
}
.overview-content-wrapper .overview-reporting-essentials-wrapper .bg-container .logo-bg svg {
  width: 240px;
}
div.modal .content.methodology-modal {
  background: #f7f7fa;
  padding: 20px 40px 20px 40px;
  margin: 0;
}
div.modal .content.methodology-modal h1 {
  text-align: left;
  font-weight: 700;
  margin: 0;
  font-size: 27px;
  font-size: 2.7rem;
  color: #1f263e;
  padding: 0;
}
div.modal .content.methodology-modal h2 {
  text-align: left;
  text-transform: uppercase;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 300;
  color: #1f263e;
}
div.modal .content.methodology-modal .border {
  width: 100%;
  height: 1px;
  background: #d8d8d8;
}
div.modal .content.methodology-modal .intro-text {
  color: #656565;
  font-size: 16px;
  font-size: 1.6rem;
  text-align: left;
  margin: 0;
  padding: 20px 0px 40px 0px;
  line-height: 32px;
}
.overview-methodology {
  overflow: scroll;
  max-height: 60vh;
}
.overview-methodology .widget-methodology {
  margin: 0px 0px 40px 0px;
}
.overview-methodology .widget-methodology .flex-row {
  align-items: start;
}
.overview-methodology .widget-methodology .widget-image {
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
  background: #fff;
  border-radius: 3px;
}
.overview-methodology .widget-methodology .widget-image.small {
  max-width: 140px;
}
.overview-methodology .widget-methodology .widget-image.medium {
  max-width: 280px;
}
.overview-methodology .widget-methodology .widget-image.large {
  max-width: 300px;
}
.overview-methodology .widget-methodology .widget-image img {
  width: 100%;
}
.overview-methodology .widget-methodology .definitions {
  text-align: left;
  margin: 0;
  padding: 0;
  color: #656565;
}
.overview-methodology .widget-methodology .definitions h3 {
  font-size: 16px;
  font-size: 1.6rem;
  margin: 0px 0px 10px 0px;
}
.overview-methodology .widget-methodology .definitions strong {
  font-size: 15px;
  font-size: 1.5rem;
  margin: 0px 0px 5px 0px;
  color: #747474;
}
.overview-methodology .widget-methodology .definitions p {
  padding: 0;
  margin: 0px 0px 5px 0px;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 20px;
}
@media screen and (min-width: 1300px) {
  .overview-content-wrapper .carousel-card .card-tag {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1800px) {
  .overview-content-wrapper {
    max-width: 1500px;
  }
}
@media screen and (max-width: 1000px) {
  .overview-content-wrapper {
    padding-left: 25px;
  }
}
@media screen and (max-width: 1125px) {
  .overview-content-wrapper .carousel-card {
    height: 250px;
  }
  .overview-content-wrapper .carousel-card .card-header h3 {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 16px;
  }
  .overview-content-wrapper .carousel-card .card-link {
    line-height: 20px;
    height: 120px;
  }
  .overview-content-wrapper .carousel-card .card-link p {
    font-size: 14px;
    font-size: 1.4rem;
  }
  .overview-content-wrapper .carousel-card .card-tag {
    font-size: 10px;
    font-size: 1rem;
  }
  .overview-content-wrapper .overview-widget-container .overview-widget .error-msg {
    font-size: 22px;
    line-height: 26px;
  }
}
.route-overview-enrollment .overview-content-wrapper .overview-widget.half-block::before {
  padding-top: 58%;
}
.route-overview-risk .overview-content-wrapper .overview-widget.half-block:nth-child(3)::before {
  padding-top: 45.0475%;
}
.route-overview-high-cost-claimants .overview-content-wrapper .overview-widget.half-block::before {
  padding-top: 45.0475%;
}
.route-overview-cost-per-month .overview-content-wrapper .overview-widget.half-block:nth-child(1)::before {
  padding-top: 45.0475%;
}
.pso-overview-modal .content {
  position: relative;
}
.pso-overview-modal .close-modal {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #d1514a;
  appearance: none;
  border-radius: 100%;
  border: none;
  width: 30px;
  height: 30px;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.4);
  z-index: 5;
  transition: all 0.5s;
}
.pso-overview-modal .close-modal:hover {
  cursor: pointer;
  background: #ed4651;
}
.pso-overview-modal .close-modal::before {
  content: 'x';
  color: white;
  font-size: 30px;
  font-size: 3rem;
  font-weight: 300;
  position: relative;
  top: -6px;
}
@keyframes loadFlicker {
  0% {
    background: transparent;
  }
  50% {
    background: #f8f8f8;
  }
  100% {
    background: transparent;
  }
}
.manage-lensui-content-wrapper {
  padding-top: 25px;
  margin: 0 20px 0 20px;
}
.manage-lensui-content-wrapper .sub-header {
  display: flex;
}
.manage-lensui-content-wrapper .sub-header .button-container {
  margin-left: auto;
}
.manage-lensui-content-wrapper .subtitle {
  color: #555555;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 24px;
  margin: 0px 0px 20px 0px;
  text-transform: capitalize;
}
.manage-lensui-link-wrapper {
  background: #f3f3f3;
  padding: 40px;
  border: solid 1px #e6e6e6;
  width: calc(100% - 80px);
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}
.route-admin-overview-index .manage-lensui-content-wrapper {
  max-width: 430px;
}
.route-admin-overview-index .manage-lensui-content-wrapper h2 {
  font-size: 24px;
  font-size: 2.4rem;
  color: #555555;
  font-weight: 700;
}
.route-admin-overview-index .manage-lensui-content-wrapper .manage-lensui-link-wrapper .manage-lensui-link {
  background: white;
  border: solid 1px #e6e6e6;
  margin-right: 40px;
  padding: 30px 0px 30px 0px;
  text-align: center;
}
.route-admin-overview-index .manage-lensui-content-wrapper .manage-lensui-link-wrapper .manage-lensui-link:hover {
  cursor: pointer;
}
.route-admin-overview-index .manage-lensui-content-wrapper .manage-lensui-link-wrapper .manage-lensui-link:hover h3 {
  color: #2e8b9d;
}
.route-admin-overview-index .manage-lensui-content-wrapper .manage-lensui-link-wrapper .manage-lensui-link:hover .icon {
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.3);
}
.route-admin-overview-index .manage-lensui-content-wrapper .manage-lensui-link-wrapper .manage-lensui-link:last-child {
  margin-right: 0;
}
.route-admin-overview-index .manage-lensui-content-wrapper .manage-lensui-link-wrapper .manage-lensui-link .icon {
  display: block;
  width: 135px;
  height: 135px;
  background: #2e8b9d;
  border-radius: 100%;
  margin: 0 auto;
  margin-bottom: 20px;
  color: white;
  font-size: 25px;
  font-size: 2.5rem;
  transition: all 0.5s;
}
.route-admin-overview-index .manage-lensui-content-wrapper .manage-lensui-link-wrapper .manage-lensui-link .icon.edit-widgets {
  background: url(/assets/admin-overview/widgets-icon.svg) #2e8b9d no-repeat;
  background-size: 80px;
  background-position: 28px 24px;
}
.route-admin-overview-index .manage-lensui-content-wrapper .manage-lensui-link-wrapper .manage-lensui-link h3 {
  color: #243b5f;
  font-size: 20px;
  font-size: 2rem;
  margin: 0px 0px 20px 0px;
  line-height: 20px;
  transition: all 0.5s;
  padding: 0px 15px 0px 15px;
}
.route-admin-overview-index .manage-lensui-content-wrapper .manage-lensui-link-wrapper .manage-lensui-link p {
  font-size: 12px;
  font-size: 1.2rem;
  text-align: center;
  color: #555555;
  max-width: 80%;
  margin: 0 auto;
}
.route-admin-overview-widgets-index .manage-lensui-link-wrapper {
  flex-wrap: wrap;
  padding: 40px 40px 20px 40px;
}
.route-admin-overview-widgets-index .component-wrapper {
  width: calc(50% - 20px);
  margin: 0 40px 20px 0;
}
.route-admin-overview-widgets-index .component-wrapper:nth-of-type(2n) {
  margin-right: 0;
}
.route-admin-overview-widgets-index .component-wrapper .overview-link {
  padding: 0;
  width: 100%;
  background: white;
  height: 60px;
  border: #e6e6e6 solid 1px;
  display: flex;
  align-items: center;
}
.route-admin-overview-widgets-index .component-wrapper .overview-link:hover {
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
.route-admin-overview-widgets-index .component-wrapper .overview-link:hover .carat {
  margin: 0 10px 0 auto;
}
.route-admin-overview-widgets-index .component-wrapper .overview-link:hover h3 {
  color: #626262;
}
.route-admin-overview-widgets-index .component-wrapper .overview-link .icon {
  display: inline-block;
  width: 75px;
  height: 58px;
  margin-right: 20px;
}
.route-admin-overview-widgets-index .component-wrapper .overview-link .icon.cost-per-month {
  background: url(/assets/admin-overview/cost-per-month-icon.svg) #2e8b9d no-repeat center;
  background-size: 30px;
}
.route-admin-overview-widgets-index .component-wrapper .overview-link .icon.financial {
  background: url(/assets/admin-overview/financial-icon.svg) #2e8b9d no-repeat center;
  background-size: 35px;
}
.route-admin-overview-widgets-index .component-wrapper .overview-link .icon.medical {
  background: url(/assets/admin-overview/medical-icon.svg) #2e8b9d no-repeat center;
  background-size: 35px;
}
.route-admin-overview-widgets-index .component-wrapper .overview-link .icon.potential-savings-opportunities {
  background: url(/assets/admin-overview/potential-savings-opportunities-icon.svg) #2e8b9d no-repeat center;
  background-size: 40px;
}
.route-admin-overview-widgets-index .component-wrapper .overview-link .icon.enrollment {
  background: url(/assets/admin-overview/enrollment-icon.svg) #2e8b9d no-repeat center;
  background-size: 35px;
}
.route-admin-overview-widgets-index .component-wrapper .overview-link .icon.high-cost-claimants {
  background: url(/assets/admin-overview/high-cost-claimants-icon.svg) #2e8b9d no-repeat center;
  background-size: 35px;
}
.route-admin-overview-widgets-index .component-wrapper .overview-link .icon.pharmacy {
  background: url(/assets/admin-overview/pharmacy-icon.svg) #2e8b9d no-repeat center;
  background-size: 35px;
}
.route-admin-overview-widgets-index .component-wrapper .overview-link .icon.risk {
  background: url(/assets/admin-overview/risk-icon.svg) #2e8b9d no-repeat center;
  background-size: 35px;
}
.route-admin-overview-widgets-index .component-wrapper .overview-link .icon.workers-compensation {
  background: url(/assets/admin-overview/workers-comp-icon.svg) #2e8b9d no-repeat center;
  background-size: 35px;
}
.route-admin-overview-widgets-index .component-wrapper .overview-link h3 {
  color: #243b5f;
  text-align: left;
  margin: 0;
  font-size: 20px;
  font-size: 2rem;
  transition: 0.2s;
}
.route-admin-overview-widgets-index .component-wrapper .overview-link .carat {
  width: 15px;
  max-width: 15px;
  height: 20px;
  background: url(/assets/admin-overview/grey-carat.svg) no-repeat center;
  margin: 0 15px 0 auto;
  transition: all 0.1s;
}
.manage-lensui-widgets-wrapper {
  background: #f3f3f3;
  padding: 40px;
  border: solid 1px #e6e6e6;
  width: calc(100% - 80px);
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
}
.manage-lensui-widgets-wrapper .widget-wrapper {
  width: calc(25% - 57px);
  margin-right: 20px;
  margin-bottom: 20px;
  background: white;
  border: #e6e6e6 solid 1px;
  padding: 20px;
}
.manage-lensui-widgets-wrapper .widget-wrapper:nth-of-type(4n) {
  margin-right: 0;
}
.manage-lensui-widgets-wrapper .widget-wrapper strong {
  color: #243b5f;
  font-size: 15px;
  font-size: 1.5rem;
  display: block;
  border-bottom: solid 1px #e6e6e6;
  padding: 0px 0px 10px 0px;
}
.manage-lensui-widgets-wrapper .widget-wrapper .input-group {
  padding: 10px 0px 0px 0px;
}
.manage-lensui-widgets-wrapper .widget-wrapper .input-group select {
  width: 100%;
  color: #838282;
  border-radius: 0;
}
.manage-lensui-widgets-wrapper .widget-wrapper .input-group label {
  display: block;
  color: #6f6f6f;
  font-weight: 300;
  font-size: 15px;
  font-size: 1.5rem;
  margin: 0px 0px 10px 0px;
}
.manage-lensui-widgets-wrapper .widget-wrapper .input-group label span {
  color: #2e8b9d;
  margin-right: 5px;
}
.manage-lensui-widgets-wrapper .widget-wrapper .widget-link-select {
  position: relative;
  overflow: hidden;
  min-width: 100%;
  max-width: calc(100% - 134px);
}
.manage-lensui-widgets-wrapper .widget-wrapper .widget-link-select .link-label {
  color: #555555;
  font-size: 14px;
  font-size: 1.4rem;
  margin: 0px 0px 5px 0px;
  font-weight: 300;
}
.manage-lensui-widgets-wrapper .widget-wrapper .widget-link-select .link-label span {
  color: #2e8b9d;
}
.manage-lensui-widgets-wrapper .widget-wrapper .widget-link-select div.ember-power-select-trigger {
  box-sizing: border-box;
  color: #2e8b9d;
  height: 30px;
  outline: none;
  width: 100%;
  padding: 6px 50px 0 0;
  overflow: hidden;
  position: relative;
}
.manage-lensui-widgets-wrapper .widget-wrapper .widget-link-select div.ember-power-select-trigger:before {
  font-family: "fontawesome" !important;
  content: "\f13a";
  font-size: 20px;
  position: absolute;
  width: 20px;
  height: 20px;
  line-height: 20px;
  top: 5px;
  right: 10px;
  text-align: center;
  transition: 0.2s;
}
.manage-lensui-widgets-wrapper .widget-wrapper .widget-link-select div.ember-power-select-trigger[aria-expanded="true"]:before {
  transform: rotate(180deg);
  transition: 0.2s;
}
.manage-lensui-widgets-wrapper .widget-wrapper .widget-link-select div.ember-power-select-trigger .ember-power-select-status-icon {
  display: none;
}
.route-admin-overview-widgets-edit .widget-link-select-dropdown {
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}
.route-admin-overview-widgets-edit .ember-power-select-search {
  padding: 10px;
}
.route-admin-overview-widgets-edit input[type="search"][type="search"] {
  width: 100%;
  background-size: auto 14px;
}
.route-admin-overview-widgets-edit .ember-power-select-selected-item {
  display: block;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
}
.route-admin-overview-widgets-edit .ember-power-select-selected-item p {
  margin: 0;
  color: #555555;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 14px;
}
.route-admin-overview-widgets-edit .ember-power-select-selected-item .icon {
  margin-right: 7px;
}
.route-admin-overview-widgets-edit .ember-power-select-selected-item .icon::before {
  color: #243b5f;
}
.route-admin-overview-widgets-edit .ember-power-select-selected-item .icon.template::before {
  content: "\f0eb";
  font-size: 16px;
  font-size: 1.6rem;
}
.route-admin-overview-widgets-edit .ember-power-select-selected-item .icon.dashboard::before {
  content: "\f009";
}
.route-admin-overview-widgets-edit .ember-power-select-selected-item .icon.insight::before {
  content: "\f0eb";
  font-size: 16px;
  font-size: 1.6rem;
}
.route-admin-overview-widgets-edit .ember-power-select-selected-item .icon.insight_dashboard::before {
  content: "\f009";
}
.route-admin-overview-widgets-edit .ember-power-select-option {
  padding: 5px 10px 5px 10px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
}
.route-admin-overview-widgets-edit .ember-power-select-option p {
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 16px;
}
.route-admin-overview-widgets-edit .ember-power-select-option .icon {
  margin-right: 10px;
}
.route-admin-overview-widgets-edit .ember-power-select-option .icon.template::before {
  content: "\f0eb";
  font-size: 16px;
  font-size: 1.6rem;
}
.route-admin-overview-widgets-edit .ember-power-select-option .icon.dashboard::before {
  content: "\f009";
}
.route-admin-overview-widgets-edit .ember-power-select-option .icon.insight::before {
  content: "\f0eb";
  font-size: 16px;
  font-size: 1.6rem;
}
.route-admin-overview-widgets-edit .ember-power-select-option .icon.insight_dashboard::before {
  content: "\f009";
}
main.main-content .access-management-loading-wrapper .page-content {
  background: none;
}
.access-management-loading-wrapper .loading-indicator {
  position: inherit;
}
.access-management-loading-wrapper .loading-indicator .spinner {
  margin-bottom: 100px;
}
.route-pharmacy-program-analysis .download-link {
  color: #555555;
  text-decoration: underline;
  margin: 0;
}
.route-pharmacy-program-analysis .download-link:hover {
  color: #2e8b9d;
}
.route-pharmacy-program-analysis .ember-power-select-dropdown input[type="search"][type="search"] {
  width: 100%;
}
.route-pharmacy-program-analysis .page-content header {
  background: white;
  border: 1px solid #e6e6e6;
  width: calc(100% - 40px);
  margin: 20px 0 0 20px;
  padding: 0px 20px 0px 20px;
  box-sizing: border-box;
}
.route-pharmacy-program-analysis .page-content header .title {
  margin: 0;
  line-height: 78px;
  font-weight: 300 !important;
  font-size: 25px;
  font-size: 2.5rem;
  color: #555555;
}
.route-pharmacy-program-analysis .ppa-input-form .ui-grid .span-2 {
  grid-column-start: 2;
  grid-column-end: 4;
  grid-row-start: 2;
  grid-row-end: span 2;
}
.route-pharmacy-program-analysis .ppa-input-form .ui-grid .error .span-2 {
  grid-row-start: 1;
  grid-row-end: span 1;
}
.route-pharmacy-program-analysis .ppa-input-form .ember-basic-dropdown-trigger {
  padding: 5px 0px 5px 0px;
}
.route-pharmacy-program-analysis .ppa-input-form .client-selection .c-select-container {
  position: relative;
}
.route-pharmacy-program-analysis .ppa-input-form .client-selection .c-select-container .ui-input {
  position: absolute;
  width: 99%;
}
.route-pharmacy-program-analysis .ppa-input-form .client-selection .input-container {
  padding: 6px 0 3px 0;
}
.route-pharmacy-program-analysis .ppa-input-form .client-selection .input-container label {
  margin: 0;
}
.route-pharmacy-program-analysis .ppa-input-form .client-selection .icon::before {
  content: "\f0c0";
}
.route-pharmacy-program-analysis .ppa-input-form .client-selection .client-input-container {
  position: relative;
}
.route-pharmacy-program-analysis .ppa-input-form .prospective-client-container {
  display: flex;
  align-items: center;
  background: white;
  width: calc(100% - 1px);
  height: 100%;
}
.route-pharmacy-program-analysis .ppa-input-form .prospective-client-container .client-select-back {
  display: block;
  width: 30px;
  max-width: 30px;
  height: 30px;
  font-family: "fontawesome" !important;
  background: none;
  border: none;
  margin-right: 5px;
}
.route-pharmacy-program-analysis .ppa-input-form .prospective-client-container .client-select-back:hover {
  cursor: pointer;
}
.route-pharmacy-program-analysis .ppa-input-form .prospective-client-container .client-select-back::before {
  color: #2e8b9d;
  content: "\f137";
  font-size: 25px;
  font-size: 2.5rem;
}
.route-pharmacy-program-analysis .ppa-input-form .prospective-client-container .ui-input {
  width: 100%;
}
.route-pharmacy-program-analysis .ppa-input-form .prospective-client-container .ui-input .grid-container {
  height: 33px;
}
.route-pharmacy-program-analysis .ppa-input-form .rm-select {
  height: 33px;
}
.route-pharmacy-program-analysis .ppa-input-form .date-range .icon::before {
  content: "\f073";
}
.route-pharmacy-program-analysis .ppa-input-form .date-range-container {
  display: flex;
  align-items: center;
  background: #fbfbfb;
  padding: 5px;
  border: solid 1px #e6e6e6;
}
.route-pharmacy-program-analysis .ppa-input-form .date-range-container .start-date-container,
.route-pharmacy-program-analysis .ppa-input-form .date-range-container .end-date-container {
  display: flex;
  align-items: center;
  flex: auto;
}
.route-pharmacy-program-analysis .ppa-input-form .date-range-container .ui-typography {
  font-size: 14px;
  font-size: 1.4rem;
  margin-right: 3px;
  min-width: 62px;
  color: #555555;
}
.route-pharmacy-program-analysis .ppa-input-form .date-range-container .end-date-container .ui-typography {
  margin-right: 0;
}
.route-pharmacy-program-analysis .ppa-input-form .date-range-container .month {
  min-width: 70px;
}
.route-pharmacy-program-analysis .ppa-input-form .date-range-container .year {
  min-width: 70px;
  margin-right: 5px;
}
.route-pharmacy-program-analysis .ppa-input-form .date-range-container .divider {
  height: 2px;
  width: 15px;
  max-width: 15px;
  margin: 0 5px 0 5px;
  background: #cccccc;
}
.route-pharmacy-program-analysis .ppa-input-form .file-upload-container.hidden {
  display: none;
}
.route-pharmacy-program-analysis .ppa-input-form .small-text {
  font-size: 10px;
  font-size: 1rem;
}
.route-pharmacy-program-analysis .ppa-input-form .self-reporting {
  display: inline-grid;
  grid-template-columns: auto 14px;
  place-items: center end;
  grid-gap: 15px;
  width: 100%;
}
.route-pharmacy-program-analysis .ppa-input-form .self-reporting label {
  cursor: pointer;
  text-align: right;
}
.route-pharmacy-program-analysis .ppa-input-form .self-reporting label span {
  color: #2e8b9d;
  background: white;
  border: 1px solid #cbc8ca;
  border-radius: 3px;
  height: 12px;
  width: 12px;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 18px;
  line-height: 1.8rem;
  position: relative;
  top: 2px;
}
.route-pharmacy-program-analysis .ppa-input-form .self-reporting label span::before {
  position: relative;
  bottom: 4px;
}
.route-pharmacy-program-analysis .ppa-input-form .self-reporting [type="checkbox"] {
  width: auto;
  height: 14px;
  visibility: hidden;
  opacity: 0;
  position: absolute;
}
.route-pharmacy-program-analysis .ppa-input-form .self-reporting [type="checkbox"] + label span::before {
  visibility: hidden;
}
.route-pharmacy-program-analysis .ppa-input-form .self-reporting [type="checkbox"]:checked + label span::before {
  visibility: visible;
}
.route-pharmacy-program-analysis .ppa-input-form.flex-row {
  margin-right: 0;
}
.route-pharmacy-program-analysis .ppa-input-form .input-container {
  margin-bottom: 25px;
  display: flex;
  align-items: center;
}
.route-pharmacy-program-analysis .ppa-input-form .input-container .ui-input {
  width: 100%;
  margin-right: 10px;
}
.route-pharmacy-program-analysis .ppa-input-form .input-container .self-reporting {
  max-width: 20px;
}
.route-pharmacy-program-analysis .ppa-input-form .input-container .self-reporting label {
  margin: 0;
}
.route-pharmacy-program-analysis .ppa-input-form h2 {
  color: #243b5f;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 300;
  border-bottom: 1px solid #7e7e7e;
  padding: 0px 0px 10px 0px;
}
.route-pharmacy-program-analysis .ppa-input-form h2::before {
  font-family: "fontawesome" !important;
  color: #2e8b9d;
  margin: 0px 5px 0px 0px;
  font-size: 14px;
  font-size: 1.4rem;
}
.route-pharmacy-program-analysis .ppa-input-form .error-grid-container {
  margin: 0px 0px 5px 0px;
}
.route-pharmacy-program-analysis .ppa-input-form .error-message {
  color: #ed4651;
}
.route-pharmacy-program-analysis .ppa-input-form .error-button-container {
  display: grid;
}
.route-pharmacy-program-analysis .ppa-input-form .error-button-container .ui-button {
  max-width: 100px;
  justify-self: end;
}
.route-pharmacy-program-analysis .ppa-input-form label {
  display: block;
  color: #6f6f6f;
  font-size: 14px;
  font-size: 1.4rem;
  margin: 0px 0px 5px 0px;
}
.route-pharmacy-program-analysis .ppa-input-form select {
  width: 100%;
  height: 24px;
}
.route-pharmacy-program-analysis .ppa-input-form .icon {
  font-family: "fontawesome" !important;
  color: #2e8b9d;
  margin: 0px 5px 0px 0px;
  font-size: 16px;
  font-size: 1.6rem;
}
.route-pharmacy-program-analysis .ppa-input-form .reporting-metric .icon::before {
  content: "\f201";
}
.route-pharmacy-program-analysis .ppa-input-form .svg-icon {
  width: 18px;
  height: 18px;
  display: inline-block;
  margin: 0px 10px 0px 0px;
}
.route-pharmacy-program-analysis .ppa-input-form .pharmacy-data-container {
  margin-bottom: 30px;
}
.route-pharmacy-program-analysis .ppa-input-form .pharmacy-data-container .label-container {
  display: flex;
  align-items: center;
}
.route-pharmacy-program-analysis .ppa-input-form .pharmacy-data-container .label-container strong {
  color: #555555;
  font-size: 16px;
  font-size: 1.6rem;
}
.route-pharmacy-program-analysis .ppa-input-form .pharmacy-data-container h2 {
  padding: 0px 0px 7px 0px;
}
.route-pharmacy-program-analysis .ppa-input-form .pharmacy-data-container h2 .svg-icon {
  height: 16px;
  width: 16px;
  color: #2e8b9d;
  background: url("/assets/img/pills-icon-teal.svg");
}
.route-pharmacy-program-analysis .ppa-input-form .enrollment-data-container .label-container {
  display: flex;
  align-items: center;
}
.route-pharmacy-program-analysis .ppa-input-form .enrollment-data-container .label-container strong {
  color: #555555;
  font-size: 16px;
  font-size: 1.6rem;
}
.route-pharmacy-program-analysis .ppa-input-form .enrollment-data-container h2 .icon::before {
  content: "\f0c0";
}
.route-pharmacy-program-analysis .ppa-input-form .ppa-upload-label {
  color: white;
  background: #2e8b9d;
  max-width: 50px;
  height: 50px;
  border-radius: 100%;
  margin-right: 10px;
  transition: 0.5s;
}
.route-pharmacy-program-analysis .ppa-input-form .ppa-upload-label:hover {
  cursor: pointer;
  opacity: 0.7;
}
.route-pharmacy-program-analysis .ppa-input-form .ppa-upload-label::before {
  font-family: "fontawesome" !important;
  content: "\f093";
  color: white;
  font-size: 30px;
  font-size: 3rem;
  display: block;
  padding-top: 18px;
  text-align: center;
}
.route-pharmacy-program-analysis .ppa-input-form .ppa-upload-input {
  opacity: 0;
  position: absolute;
  width: 0;
  height: 0;
}
.route-pharmacy-program-analysis .ppa-input-form .ppa-upload-input[disabled] + .ppa-upload-label {
  background: #dedede;
  cursor: default;
}
.route-pharmacy-program-analysis .ppa-input-form .uploaded-file {
  display: block;
  width: 100%;
  border-bottom: solid 1px #cccccc;
  padding-bottom: 10px;
  position: relative;
}
.route-pharmacy-program-analysis .ppa-input-form .uploaded-file .ppa-upload-filename {
  font-size: 15px;
  font-size: 1.5rem;
  color: #555555;
}
.route-pharmacy-program-analysis .ppa-input-form .uploaded-file .ppa-upload-filename .svg-icon {
  background: url(/assets/img/file-csv-icon.svg);
  width: 15px;
  height: 20px;
  background-size: cover;
  margin-bottom: -4px;
  margin-right: 5px;
}
.route-pharmacy-program-analysis .ppa-input-form .uploaded-file .validation-container {
  position: absolute;
  right: 0;
  bottom: 5px;
}
.route-pharmacy-program-analysis .ppa-input-form .uploaded-file .validation-container .icon {
  font-size: 18px;
  font-size: 1.8rem;
}
.route-pharmacy-program-analysis .ppa-input-form .uploaded-file .validation-container .icon:hover {
  cursor: pointer;
}
.route-pharmacy-program-analysis .ppa-input-form .uploaded-file .validation-container .icon.fa-times-circle {
  color: #888686;
}
.route-pharmacy-program-analysis .ppa-input-form .uploaded-file .validation-container .icon.fa-times-circle:hover {
  color: #ed4651;
}
.route-pharmacy-program-analysis .ppa-input-form .uploaded-file .validation-container .icon.fa-times-circle.error {
  color: #ed4651;
}
.route-pharmacy-program-analysis .ppa-input-form .uploaded-file .validation-container .icon.fa-check-circle {
  color: #888686;
}
.route-pharmacy-program-analysis .ppa-input-form .uploaded-file .validation-container .icon.fa-check-circle.success {
  color: #18b28b;
}
.route-pharmacy-program-analysis .ppa-input-form .uploaded-file .validation-container .icon.fa-check-circle.spinner {
  width: 15px;
  height: 15px;
  background: url(/assets/img/lens-loading.gif);
  background-size: cover;
  bottom: 28px;
}
.route-pharmacy-program-analysis .ppa-input-form .uploaded-file .validation-container .icon.fa-check-circle.spinner::before {
  content: "";
}
.route-pharmacy-program-analysis .ppa-input-form .uploaded-file .validation-container .error {
  color: #ed4651;
}
.route-pharmacy-program-analysis .ppa-input-form .uploaded-file .validation-container .success {
  color: #18b28b;
}
.route-pharmacy-program-analysis .ppa-input-form .uploaded-file .error-grid-container {
  display: none;
}
.route-pharmacy-program-analysis .ppa-input-form .uploaded-file .error-message {
  display: none;
  font-size: 12px;
  font-size: 1.2rem;
  color: #ed4651;
}
.route-pharmacy-program-analysis .ppa-input-form .uploaded-file .error-message .icon {
  font-family: "fontawesome" !important;
}
.route-pharmacy-program-analysis .ppa-input-form .uploaded-file .error-message .icon::before {
  color: #ed4651;
  content: "\f06a";
}
.route-pharmacy-program-analysis .ppa-input-form .uploaded-file.error {
  border-bottom: solid 1px #ed4651;
}
.route-pharmacy-program-analysis .ppa-input-form .uploaded-file.error .error-message {
  display: inline-block;
}
.route-pharmacy-program-analysis .ppa-input-form .uploaded-file.error .error-grid-container {
  display: grid;
}
.route-pharmacy-program-analysis .ppa-input-form .uploaded-file.error .ppa-upload-filename .svg-icon {
  background: url(/assets/img/file-csv-icon-red.svg);
}
.route-pharmacy-program-analysis .ppa-input-form .uploaded-file.success {
  border-bottom: solid 1px #18b28b;
}
.route-pharmacy-program-analysis .ppa-input-form .uploaded-file.success .ppa-upload-filename .svg-icon {
  background: url(/assets/img/file-csv-icon-green.svg);
}
.route-pharmacy-program-analysis .ppa-input-form .defaults-label-container {
  padding-top: 60px;
  text-align: right;
  max-width: 115px;
}
.route-pharmacy-program-analysis .ppa-input-form .defaults-label-container .input-container {
  height: 26px;
}
.route-pharmacy-program-analysis .ppa-input-form .input-amount-block {
  background: #fbfbfb;
  border: solid 1px #e6e6e6;
  padding: 20px;
  position: relative;
  overflow: hidden;
  height: 225px;
}
.route-pharmacy-program-analysis .ppa-input-form .input-amount-block .ui-block {
  position: relative;
}
.route-pharmacy-program-analysis .ppa-input-form .input-amount-block .checkbox-instruction {
  font-size: 10px;
  font-size: 1rem;
  position: absolute;
  left: 0;
  bottom: 0px;
  line-height: 10px;
}
.route-pharmacy-program-analysis .ppa-input-form .input-amount-block .checkbox-instruction span::before {
  font-family: "fontawesome" !important;
  content: "\f14a";
  color: #2e8b9d;
  font-size: 10px;
  font-size: 1rem;
  margin-right: 3px;
}
.route-pharmacy-program-analysis .ppa-input-form .input-amount-block .instructions {
  height: 100%;
}
.route-pharmacy-program-analysis .ppa-input-form .input-amount-block .instructions ol {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  list-style: none;
  counter-reset: instructions-counter;
  margin: 0;
  padding: 20px 0;
  box-sizing: border-box;
}
.route-pharmacy-program-analysis .ppa-input-form .input-amount-block .instructions ol li {
  counter-increment: instructions-counter;
  font-size: 16px;
  font-size: 1.6rem;
  color: #555555;
  line-height: 16px;
  font-weight: 300;
  margin: 20px 30px;
}
.route-pharmacy-program-analysis .ppa-input-form .input-amount-block .instructions ol li::before {
  content: counter(instructions-counter);
  font-weight: bold;
  border: solid 1px #e6e6e6;
  border-radius: 100%;
  color: #2e8b9d;
  background: #fff;
  font-size: 30px;
  font-size: 3rem;
  padding: 0 10px;
  margin-right: 5px;
  position: relative;
  top: 5px;
}
.route-pharmacy-program-analysis .ppa-input-form .loading {
  display: table;
  margin: 0 auto;
  padding-top: 55px;
}
.route-pharmacy-program-analysis .ppa-input-form .loading .spinner {
  display: block;
  width: 80px;
  height: 80px;
  background: url(/assets/img/lens-loading.gif);
  background-size: cover;
  margin: 12px auto 25px auto;
}
.route-pharmacy-program-analysis .ppa-input-form .rebate-amount .svg-icon,
.route-pharmacy-program-analysis .ppa-input-form .fee-amount .svg-icon {
  height: 16px;
  width: 16px;
  color: #2e8b9d;
  background: url("/assets/img/allowed-costs-icon.svg");
}
.route-pharmacy-program-analysis .ppa-input-form .pharmacy-data,
.route-pharmacy-program-analysis .ppa-input-form .enrollment-data {
  position: relative;
}
.route-pharmacy-program-analysis .ppa-input-form .pharmacy-data .icon,
.route-pharmacy-program-analysis .ppa-input-form .enrollment-data .icon {
  font-size: 24px;
  font-size: 2.4rem;
  position: absolute;
  right: 0;
  margin: 0;
  color: #dedede;
}
.route-pharmacy-program-analysis .ppa-input-form .enrollment-data h2 {
  padding: 0px 0px 9px 0px;
}
.route-pharmacy-program-analysis .ppa-input-form .error-wrapper {
  padding: 0;
  max-height: 400px;
  overflow: auto;
}
.route-pharmacy-program-analysis .ppa-input-form .error-wrapper h2 {
  padding: 15px;
  border-bottom: solid 1px #e6e6e6;
}
.route-pharmacy-program-analysis .ppa-input-form .error-wrapper h2::before {
  font-family: "fontawesome" !important;
  content: "\f06a";
  color: #ed4651;
  font-size: 20px;
  font-size: 2rem;
  margin-right: 10px;
}
.route-pharmacy-program-analysis .ppa-input-form .error-wrapper .error-content {
  padding: 20px;
}
.route-pharmacy-program-analysis .ppa-input-form .error-wrapper .error-content strong {
  color: #555555;
  font-size: 16px;
  font-size: 1.6rem;
}
.route-pharmacy-program-analysis .ppa-input-form .error-wrapper .error-content ul:first-of-type {
  margin-bottom: 30px;
}
.route-pharmacy-program-analysis .ppa-input-form .error-wrapper .error-content ul li {
  list-style: none;
  color: #555555;
}
.route-pharmacy-program-analysis .ppa-input-form .error-wrapper .error-content ul li::before {
  content: "•";
  color: #ed4651;
  margin-right: 10px;
}
.route-pharmacy-program-analysis .ppa-input-form .error-wrapper .error-content .Pharmacy-icon {
  display: inline-block;
  height: 16px;
  width: 16px;
  color: #2e8b9d;
  background: url(/assets/img/pills-icon-red.svg);
  margin-right: 10px;
}
.route-pharmacy-program-analysis .ppa-input-form .error-wrapper .error-content .Enrollment-icon::before {
  font-family: "fontawesome" !important;
  content: "\f0c0";
  color: #ed4651;
  margin-right: 10px;
  font-weight: 300;
}
@keyframes aperture {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(45deg) scale(1.2, 1.2);
    opacity: 0.5;
  }
  100% {
    transform: rotate(0deg);
  }
}
.fxp-landing-wrapper {
  background: white;
  padding: 20px 50px 20px 50px;
  border: solid 1px #e6e6e6;
  border-radius: 5px;
  margin-top: 30px;
}
.fxp-landing-wrapper h2 {
  color: #898989;
  font-weight: 200;
  text-align: center;
  margin: 0;
}
.fxp-landing-wrapper h2 span {
  background: url("/assets/financial-experience/info-icon.svg");
  width: 20px;
  height: 20px;
  background-size: cover;
  display: inline-block;
  margin: 0px 5px -3px 0px;
}
.fxp-landing-wrapper .border {
  height: 1px;
  width: 100%;
  background: #e6e6e6;
  margin: 30px 0px 30px 0px;
}
.fxp-landing-content {
  max-width: 90%;
  margin: 0 auto;
}
.fxp-landing-content .fxp-report-btn-container {
  background: #f7f7f7;
  border-radius: 5px;
  padding: 30px 80px 30px 80px;
  box-shadow: inset 0px 0px 3px rgba(0, 0, 0, 0.2);
}
.fxp-landing-content .fxp-report-btn-container .fxp-btn .icon svg {
  width: 63px;
  height: 70px;
  margin-top: 30px;
  margin-left: -5px;
}
.fxp-landing-content .fxp-report-btn-container .fxp-btn .icon .fe {
  fill: #79818c;
}
.fxp-landing-content .fxp-report-btn-container .slr-btn .icon span {
  display: block;
  width: 81px;
  height: 69px;
  margin: 0 auto;
  margin-top: 30px;
  background: url("/assets/img/stop-loss-report-icon.png");
  background-size: cover;
}
.fxp-landing-content .fxp-report-btn-container .icon {
  width: 130px;
  height: 130px;
  border-radius: 100%;
  border: solid 1px #79818c;
  margin: 0 auto;
  margin-top: 40px;
  margin-bottom: 20px;
  position: relative;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.4);
  transition: 0.5s;
}
.fxp-landing-content .fxp-report-btn-container h3 {
  color: white;
  font-weight: 300;
  text-align: center;
  background: #2c3a4b;
  padding: 10px;
  border-radius: 5px;
  position: relative;
  z-index: 5;
  display: table;
  margin: 0 auto;
  font-size: 20px;
  font-size: 2rem;
}
.fxp-landing-content .fxp-report-btn-container button {
  width: 100%;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.2);
  height: 260px;
  overflow: hidden;
  position: relative;
  background: #2c3a4b;
  border: none;
  appearance: none;
}
.fxp-landing-content .fxp-report-btn-container button .bg-logo {
  position: absolute;
  z-index: 1;
  top: -50%;
  left: -50%;
  width: 100%;
  height: 100%;
}
.fxp-landing-content .fxp-report-btn-container button .bg-logo svg {
  transition: 0.5s;
  height: 200%;
  width: 200%;
}
.fxp-landing-content .fxp-report-btn-container button .bg-logo svg .s {
  opacity: 0.5;
  fill: #3b4858;
}
.fxp-landing-content .fxp-report-btn-container button:hover {
  cursor: pointer;
}
.fxp-landing-content .fxp-report-btn-container button:hover .icon {
  box-shadow: 0px 7px 7px rgba(0, 0, 0, 0.6);
  border: solid 1px #efefef;
}
.fxp-landing-content .fxp-report-btn-container button:hover .bg-logo svg {
  animation: aperture 1.6s ease;
}
.fe-page-wrapper {
  max-width: 1330px;
  min-width: 850px;
  margin: 0 auto;
  padding-bottom: 50px;
  width: calc(100% - 80px);
}
.fe-header {
  padding: 30px 0px 15px 0px;
  border-bottom: solid 1px #e6e6e6;
}
.fe-header .ui-button.back {
  margin-right: 25px;
}
.fe-header.slr .title-wrapper h1 {
  margin: 25px 0 0 0;
}
.fe-header.slr .ui-label {
  border-bottom: solid 1px #d8d8d8;
  margin-bottom: 10px;
}
.fe-header.slr .ui-label .label-text {
  color: #555555;
  font-weight: 500;
  font-size: 15px;
  font-size: 1.5rem;
}
.fe-header.slr .slr-input-wrapper {
  position: relative;
}
.fe-header.slr .slr-input-wrapper .ui-button.back {
  position: absolute;
  left: -40px;
  top: 20px;
}
.fe-header .title-wrapper h1 {
  color: #9b9b9b;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 22px;
  margin: 0px 0px 10px 0px;
}
.fe-header .title-wrapper h2 {
  color: #6b6b6b;
  font-size: 15px;
  font-size: 1.5rem;
}
.fe-header .input-wrapper {
  display: flex;
  align-items: center;
  width: 650px;
  max-width: 650px;
  margin-left: auto;
}
.fe-header .fe-plan-year-container {
  display: flex;
  align-items: center;
  margin-right: 10px;
}
.fe-header .fe-plan-year-container .ui-label {
  color: #555555;
  font-weight: 300;
  font-size: 15px;
  font-size: 1.5rem;
  margin: 5px 10px 0px 0px;
}
.fe-header .fe-plan-year-container .ember-basic-dropdown-trigger {
  width: 150px;
  box-shadow: 0px 1px 3px 2px #e5e5e5;
  border: solid 1px white;
}
.fe-header .fe-plan-year-container .ember-basic-dropdown-content {
  box-shadow: 0px 1px 3px 2px #e5e5e5;
  border: none;
}
.fe-header .fe-button-container {
  position: relative;
}
.fe-header .fe-button-container .fe-button {
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  background: none;
  border: none;
}
.fe-header .fe-button-container .fe-button:hover {
  cursor: pointer;
}
.fe-header .fe-button-container .fe-button div {
  border-radius: 100%;
  background: white;
  border: solid 1px #003b5c;
  width: 45px;
  height: 45px;
  margin: 0 auto;
  box-shadow: 0px 0.5px 4px 0.5px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
}
.fe-header .fe-button-container .fe-button div svg {
  display: block;
  margin: 0 auto;
}
.fe-header .fe-button-container .fe-button div svg .fill {
  transition: 0.3s;
}
.fe-header .fe-button-container .fe-button span {
  color: #555555;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 300;
  text-align: center;
  display: block;
  margin-top: 5px;
  transition: 0.3s;
}
.fe-header .fe-button-container .fe-button .fe-excel-icon {
  width: 19px;
  height: 25px;
  margin-top: 10px;
}
.fe-header .fe-button-container .fe-button .fe-excel-icon .fill {
  fill: #003b5c;
}
.fe-header .fe-button-container .fe-button .fe-run-icon {
  margin-top: 10px;
  width: 26px;
  height: 26px;
}
.fe-header .fe-button-container .fe-button .fe-word-icon {
  margin-top: 10px;
}
.fe-header .fe-button-container .fe-button .fe-word-icon .fill {
  fill: #003b5c;
}
.fe-header .fe-button-container .fe-button:hover div,
.fe-header .fe-button-container .fe-button.active div {
  border: solid 1px white;
  background: #003b5c;
}
.fe-header .fe-button-container .fe-button:hover div .fill,
.fe-header .fe-button-container .fe-button.active div .fill {
  fill: white;
}
.fe-header .fe-button-container .fe-button:hover span,
.fe-header .fe-button-container .fe-button.active span {
  color: #003b5c;
}
.fe-header .fe-button-container .fe-button[disabled] div {
  box-shadow: none;
  background: #e2e2e2;
  border: solid 1px #e2e2e2;
}
.fe-header .fe-button-container .fe-button[disabled] div .fill {
  fill: white;
}
.fe-header .fe-button-container .fe-button[disabled] span {
  color: #e2e2e2;
}
.fe-header .fe-button-container .fe-button[disabled]:hover {
  cursor: not-allowed;
}
.fe-widget-wrapper {
  margin-top: 30px;
}
.fe-widget-wrapper .fe-widget {
  background: white;
  border-radius: 5px;
  box-shadow: 0px 0.5px 4px 0.5px rgba(0, 0, 0, 0.1);
  padding: 0px;
}
.fe-widget-wrapper .fe-widget.span-2:nth-child(odd) {
  grid-column-start: 1;
  grid-column-end: 3;
}
.fe-widget-wrapper .fe-widget.span-2:nth-child(even) {
  grid-column-start: 3;
  grid-column-end: 5;
}
.fe-widget-wrapper .fe-widget.span-3 {
  grid-column-start: 1;
  grid-column-end: 4;
}
.fe-widget-wrapper .fe-widget img {
  width: 100%;
}
.fe-widget-wrapper .fe-widget.table-widget {
  padding: 20px;
  overflow: hidden;
}
.fe-widget-wrapper .fe-widget.table-widget .widget-title {
  font-size: 13.5px;
  font-size: 1.35rem;
  color: #2c2c2c;
  margin: 0px 0px 20px 0px;
  display: block;
}
.financial-experience-table {
  border-left: solid 1px #e6e6e6;
  border-right: solid 1px #e6e6e6;
  width: 100%;
  position: relative;
  overflow-x: scroll;
}
.financial-experience-table.medical-experience table {
  width: 100%;
  border-top: solid 1px #e6e6e6;
  border-bottom: solid 1px #e6e6e6;
  border-collapse: collapse;
}
.financial-experience-table.medical-experience table th,
.financial-experience-table.medical-experience table td {
  text-align: center;
}
.financial-experience-table.medical-experience table th.red,
.financial-experience-table.medical-experience table td.red {
  color: red;
}
.financial-experience-table.medical-experience table tr td:first-child,
.financial-experience-table.medical-experience table tr th:first-child {
  border-right: solid 1px #e6e6e6;
}
.financial-experience-table.medical-experience table tr td:nth-child(3),
.financial-experience-table.medical-experience table tr th:nth-child(3) {
  border-right: solid 1px #e6e6e6;
}
.financial-experience-table.medical-experience table tr td:nth-child(7),
.financial-experience-table.medical-experience table tr th:nth-child(7) {
  border-right: solid 1px #e6e6e6;
}
.financial-experience-table.medical-experience table tr td:nth-child(13),
.financial-experience-table.medical-experience table tr th:nth-child(13) {
  border-right: solid 1px #e6e6e6;
}
.financial-experience-table.medical-experience table tr td:nth-child(16),
.financial-experience-table.medical-experience table tr th:nth-child(16) {
  border-right: solid 1px #e6e6e6;
}
.financial-experience-table.medical-experience table tr td:nth-child(17),
.financial-experience-table.medical-experience table tr th:nth-child(17) {
  border-right: solid 1px #e6e6e6;
}
.financial-experience-table.medical-experience table tr td:nth-child(20),
.financial-experience-table.medical-experience table tr th:nth-child(20) {
  border-right: solid 1px #e6e6e6;
}
.financial-experience-table.medical-experience table thead tr {
  border-bottom: solid 1px #e6e6e6;
}
.financial-experience-table.medical-experience table thead tr:nth-child(odd) {
  background: #f7f7f7;
}
.financial-experience-table.medical-experience table thead tr:nth-child(odd) th {
  border-right: solid 1px #e6e6e6;
  color: #555555;
  font-size: 14px;
  font-size: 1.4rem;
}
.financial-experience-table.medical-experience table thead th {
  padding: 15px 10px 15px 10px;
  color: #003b5c;
  font-size: 11px;
  font-size: 1.1rem;
  line-height: 12px;
  min-width: 40px;
}
.financial-experience-table.medical-experience table tbody tr {
  color: #555555;
}
.financial-experience-table.medical-experience table tbody tr td {
  padding: 5px;
  font-size: 11px;
  font-size: 1.1rem;
  line-height: 11px;
  text-align: center;
  font-weight: 500;
}
.financial-experience-table.medical-experience table tbody tr:nth-child(odd) {
  background: #f7f7f7;
}
.financial-experience-table.medical-experience table tbody tr:nth-child(odd).row-total {
  background: #003b5c;
}
.financial-experience-table.medical-experience table tr.row-total {
  background: #003b5c;
}
.financial-experience-table.medical-experience table tr.row-total td {
  color: white;
  font-weight: 700;
  padding: 10px;
  font-size: 11px;
  font-size: 1.1rem;
  text-align: center;
}
.financial-experience-table.large-claim-exibit table {
  width: 100%;
  border: solid 1px #e6e6e6;
  border-collapse: collapse;
  background: #f7f7f7;
}
.financial-experience-table.large-claim-exibit table th,
.financial-experience-table.large-claim-exibit table td {
  text-align: center;
}
.financial-experience-table.large-claim-exibit table th.red,
.financial-experience-table.large-claim-exibit table td.red {
  color: red;
}
.financial-experience-table.large-claim-exibit table thead tr {
  border-bottom: solid 1px #e6e6e6;
}
.financial-experience-table.large-claim-exibit table thead tr:nth-child(odd) {
  background: #f7f7f7;
}
.financial-experience-table.large-claim-exibit table thead tr:nth-child(odd) th {
  color: #555555;
  font-size: 14px;
  font-size: 1.4rem;
}
.financial-experience-table.large-claim-exibit table thead tr:nth-child(odd) th:nth-child(2) {
  border-right: solid 1px #e6e6e6;
}
.financial-experience-table.large-claim-exibit table thead tr:nth-child(odd) th:nth-child(3) {
  border-right: solid 1px #e6e6e6;
}
.financial-experience-table.large-claim-exibit table thead tr:nth-child(even) {
  background: white;
}
.financial-experience-table.large-claim-exibit table thead th {
  padding: 15px 10px 15px 10px;
  color: #003b5c;
  font-size: 11px;
  font-size: 1.1rem;
  line-height: 12px;
}
.financial-experience-table.large-claim-exibit table tbody tr {
  color: #555555;
}
.financial-experience-table.large-claim-exibit table tbody tr td {
  padding: 5px;
  font-size: 11px;
  font-size: 1.1rem;
  line-height: 11px;
  text-align: center;
  font-weight: 500;
  border-right: solid 1px #e6e6e6;
}
.financial-experience-table.large-claim-exibit table tbody tr:nth-child(odd) {
  background: #f7f7f7;
}
.financial-experience-table.large-claim-exibit table tbody tr:nth-child(odd).total-row {
  background: #003b5c;
}
.financial-experience-table.large-claim-exibit table tbody tr:nth-child(even) {
  background: white;
}
.financial-experience-table.large-claim-exibit table tbody tr:nth-child(even).total-row {
  background: #003b5c;
}
.financial-experience-table.large-claim-exibit table tr.total-row {
  background: #003b5c;
}
.financial-experience-table.large-claim-exibit table tr.total-row td {
  color: white;
  font-weight: 700;
  padding: 10px;
  font-size: 11px;
  font-size: 1.1rem;
  text-align: center;
  border-right: solid 1px #e6e6e6;
}
.financial-experience-table.large-claim-exibit table tr.total-row td.header {
  text-align: left;
}
.no-data-message {
  font-weight: 700;
  font-size: 16px;
  font-size: 1.6rem;
  color: #555555;
  text-align: center;
  padding: 65px 0;
}
.route-lite-network-analysis select.standard {
  height: 26px;
}
.route-lite-network-analysis .carriers input[type="search"][type="search"] {
  background: none;
  border: none;
  padding: 0;
}
.route-lite-network-analysis .cfr-header .ember-power-select-trigger-input::placeholder {
  color: #6d727f;
}
.route-lite-network-analysis .cfr-header .ember-power-select-trigger {
  padding: 0 16px 0 5px;
  border: 1px solid #cbc8ca;
  background: white url(/assets/img/sort-icon-teal.svg) no-repeat calc(100% - 10px) center;
  background-size: 10px auto;
}
.route-lite-network-analysis .cfr-header .ember-power-select-trigger .ember-power-select-status-icon {
  display: none;
}
.route-report-directory .loading-wrapper {
  width: 100%;
  position: absolute;
  z-index: 10;
  backdrop-filter: blur(4px);
}
.route-report-directory .loading-wrapper.file-status {
  top: 100px;
}
.route-report-directory .loading-wrapper .loading-indicator {
  top: calc(50% - 115px);
}
.route-report-directory .loading-wrapper .loading-indicator .spinner {
  margin: 12px auto 0px auto;
}
.route-report-directory .loading-wrapper .loading-indicator h1 {
  margin: 0;
  margin-bottom: 30px;
}
.route-report-directory .io-wrapper {
  position: relative;
  height: 100%;
}
.route-report-directory .io-wrapper .center {
  left: 50%;
  margin-left: -585px;
  width: 1170px;
  z-index: 1;
  position: absolute;
  transition: all 0.5s;
  height: 100%;
}
.route-report-directory .io-wrapper .center.leftOpen {
  margin-left: -430px;
}
.route-report-directory .io-wrapper .center.rightOpen {
  margin-left: -710px;
}
.route-report-directory .io-wrapper .center.allOpen {
  margin-left: -488px;
  width: 980px;
}
.route-report-directory .io-wrapper .center .loading-wrapper {
  height: 100%;
}
.route-report-directory .io-wrapper .right {
  position: absolute;
  right: -280px;
  top: 0;
  width: 280px;
  height: 100%;
  background: #fff;
  box-shadow: -1px 1px 4px 1px rgba(0, 0, 0, 0.1);
  z-index: 5;
  transition: all 0.5s;
}
.route-report-directory .io-wrapper .right.active {
  right: 0;
}
.route-report-directory .io-wrapper .left {
  position: absolute;
  left: -280px;
  top: 0;
  width: 280px;
  height: 100%;
  background: #fff;
  box-shadow: -1px 1px 4px 1px rgba(0, 0, 0, 0.1);
  z-index: 5;
  transition: all 0.5s;
}
.route-report-directory .io-wrapper .left.active {
  left: 0;
}
.route-report-directory .io-wrapper .io-header {
  position: relative;
}
.route-report-directory .io-wrapper .io-header .main-header {
  display: flex;
  align-items: center;
  border-bottom: solid #e6e6e6 1px;
  padding-bottom: 17px;
  background: #f8f8f8;
  position: relative;
  padding-top: 20px;
  z-index: 10;
}
.route-report-directory .io-wrapper .io-header .main-header h1 {
  position: relative;
  color: #9b9b9c;
  font-size: 24px;
  font-size: 2.4rem;
}
.route-report-directory .io-wrapper .io-header .main-header h1 .info-tooltip {
  display: none;
  position: absolute;
  top: -5px;
  right: -20px;
  width: 12px;
  height: 12px;
  background: url("/assets/info-tooltip-icon.svg");
}
.route-report-directory .io-wrapper .io-header .main-header h1 .info-tooltip:hover {
  cursor: pointer;
}
.route-report-directory .io-wrapper .io-header .main-header .controls {
  margin-left: auto;
  display: flex;
  align-items: center;
}
.route-report-directory .io-wrapper .io-header .main-header .controls .ui-input .ui-field-container .grid-container {
  border-radius: 20px;
  height: 30px;
}
.route-report-directory .io-wrapper .io-header .main-header .controls .search {
  width: 380px;
  font-size: 14px;
  font-size: 1.4rem;
  background-size: 18px !important;
}
.route-report-directory .io-wrapper .io-header .main-header .controls .header-btns {
  display: flex;
  align-items: center;
}
.route-report-directory .io-wrapper .io-header .main-header .controls .header-btns .btn {
  margin: 0px 0px 0px 20px;
}
.route-report-directory .io-wrapper .io-header .main-header .controls .header-btns .btn:hover {
  cursor: pointer;
}
.route-report-directory .io-wrapper .io-header .main-header .controls .header-btns .filter-btn svg {
  width: 26px;
}
.route-report-directory .io-wrapper .io-header .main-header .controls .header-btns .filter-btn svg path {
  transition: all 0.4s;
}
.route-report-directory .io-wrapper .io-header .main-header .controls .header-btns .filter-btn.active svg path {
  fill: #2e8b9d;
}
.route-report-directory .io-wrapper .io-header .main-header .controls .header-btns .filter-btn:hover {
  cursor: pointer;
}
.route-report-directory .io-wrapper .io-header .main-header .controls .header-btns .filter-btn:hover svg path {
  fill: #2e8b9d;
}
.route-report-directory .io-wrapper .io-header .main-header .controls .header-btns .admin-btn svg {
  width: 30px;
}
.route-report-directory .io-wrapper .io-header .main-header .controls .header-btns .admin-btn svg path {
  transition: all 0.4s;
  fill: #9b9b9c;
}
.route-report-directory .io-wrapper .io-header .main-header .controls .header-btns .admin-btn.active svg path {
  fill: #2e8b9d;
}
.route-report-directory .io-wrapper .io-header .main-header .controls .header-btns .admin-btn:hover {
  cursor: pointer;
}
.route-report-directory .io-wrapper .io-header .main-header .controls .header-btns .admin-btn:hover svg path {
  fill: #2e8b9d;
}
.route-report-directory .io-wrapper .io-header .main-header .controls .header-btns .create-new-btn svg path {
  transition: all 0.4s;
}
.route-report-directory .io-wrapper .io-header .main-header .controls .header-btns .create-new-btn.active svg path {
  fill: #2e8b9d;
}
.route-report-directory .io-wrapper .io-header .main-header .controls .header-btns .create-new-btn:hover {
  cursor: pointer;
}
.route-report-directory .io-wrapper .io-header .main-header .controls .header-btns .create-new-btn:hover svg path {
  fill: #2e8b9d;
}
.route-report-directory .io-wrapper .io-header .main-header .controls .header-btns .favorite-btn {
  width: 28px;
  position: relative;
}
.route-report-directory .io-wrapper .io-header .main-header .controls .header-btns .favorite-btn:hover .fav-stroke {
  fill: #ed4651;
}
.route-report-directory .io-wrapper .io-header .main-header .controls .header-btns .favorite-btn svg .fav-stroke {
  fill: #9b9b9c;
  transition: all 0.4s;
}
.route-report-directory .io-wrapper .io-header .main-header .controls .header-btns .favorite-btn svg .fav-fill {
  fill: #ed4651;
  opacity: 0;
  transition: all 0.4s;
}
.route-report-directory .io-wrapper .io-header .main-header .controls .header-btns .favorite-btn.active svg .fav-stroke {
  fill: #ed4651;
}
.route-report-directory .io-wrapper .io-header .main-header .controls .header-btns .favorite-btn.active svg .fav-fill {
  opacity: 1;
}
.route-report-directory .io-wrapper .io-header .main-header .controls .header-btns .favorite-btn input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.route-report-directory .io-wrapper .io-header .filters {
  position: absolute;
  width: 100%;
  z-index: 2;
  background: #f8f8f8;
  top: -6px;
  display: flex;
  align-items: center;
  padding: 17px 0 17px 0;
  border-bottom: solid #e6e6e6 1px;
  transition: all 0.5s;
}
.route-report-directory .io-wrapper .io-header .filters.active {
  top: 85px;
}
.route-report-directory .io-wrapper .io-header .filters .label {
  display: table;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 200;
  margin: 0 auto;
  margin-bottom: 10px;
  position: relative;
}
.route-report-directory .io-wrapper .io-header .filters .label .info-tooltip {
  display: block;
  position: absolute;
  top: 3px;
  right: -17px;
  width: 10px;
  height: 10px;
  background: url("/assets/insight/info-tooltip-grey-icon.svg");
  background-size: cover;
}
.route-report-directory .io-wrapper .io-header .filters .label .info-tooltip:hover {
  cursor: pointer;
}
.route-report-directory .io-wrapper .io-header .filters .label .info-tooltip[data-field-tooltip]:hover:after {
  z-index: 15;
  content: attr(data-field-tooltip);
  top: 15px;
  left: 0;
  width: 211px;
  display: block;
  text-align: left;
  border-radius: 5px;
  border: solid 1px #cecece;
  position: relative;
  color: #555555;
  padding: 4px 3px 4px 3px;
  background: #fff;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2);
  font-family: sans-serif;
  font-size: 10px;
  font-size: 1rem;
}
.route-report-directory .io-wrapper .io-header .filters .sort {
  flex: 1;
}
.route-report-directory .io-wrapper .io-header .filters .sort select.standard {
  border-radius: 20px;
  height: 27px;
  width: 100%;
  font-size: 14px;
  padding-left: 15px;
  background: #fff;
}
.route-report-directory .io-wrapper .io-header .filters .button-container {
  display: flex;
  align-items: center;
  margin: 0 auto;
}
.route-report-directory .io-wrapper .io-header .filters .button-container .btn {
  width: 30px;
  height: 27px;
  border-radius: 3px;
  margin: 0px 2px 0px 2px;
  opacity: 0.5;
}
.route-report-directory .io-wrapper .io-header .filters .button-container .btn:hover {
  cursor: pointer;
}
.route-report-directory .io-wrapper .io-header .filters .button-container .btn.active {
  opacity: 1;
}
.route-report-directory .io-wrapper .io-header .filters .button-container svg {
  display: block;
  margin: 0 auto;
  margin-top: 4px;
}
.route-report-directory .io-wrapper .io-header .filters .owner-status {
  flex: 1;
}
.route-report-directory .io-wrapper .io-header .filters .owner-status .button-container {
  width: 102px;
}
.route-report-directory .io-wrapper .io-header .filters .owner-status .button-container label {
  position: relative;
}
.route-report-directory .io-wrapper .io-header .filters .owner-status .button-container label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.route-report-directory .io-wrapper .io-header .filters .owner-status .button-container .btn {
  background: #767676;
}
.route-report-directory .io-wrapper .io-header .filters .owner-status .button-container .btn.shared svg {
  width: 18px;
}
.route-report-directory .io-wrapper .io-header .filters .owner-status .button-container .btn.owned svg,
.route-report-directory .io-wrapper .io-header .filters .owner-status .button-container .btn.owned-by-other svg,
.route-report-directory .io-wrapper .io-header .filters .owner-status .button-container .btn.global svg {
  width: 15px;
}
.route-report-directory .io-wrapper .io-header .filters .owner-status .button-container .btn.checked {
  opacity: 1;
}
.route-report-directory .io-wrapper .io-header .filters .owner-status .button-container .btn.checked.owned {
  background: #3eb39f;
  box-shadow: #3eb39f 0px 0px 2px;
}
.route-report-directory .io-wrapper .io-header .filters .owner-status .button-container .btn.checked.owned-by-other {
  background: #ffb327;
  box-shadow: #ffb327 0px 0px 2px;
}
.route-report-directory .io-wrapper .io-header .filters .owner-status .button-container .btn.checked.shared {
  background: #ffb327;
  box-shadow: #ffb327 0px 0px 2px;
}
.route-report-directory .io-wrapper .io-header .filters .owner-status .button-container .btn.checked.global {
  background: #4892c7;
  box-shadow: #4892c7 0px 0px 2px;
}
.route-report-directory .io-wrapper .io-header .filters .shares {
  flex: 1;
}
.route-report-directory .io-wrapper .io-header .filters .shares .ui-toggle-switch {
  max-width: 75px;
  margin: 0 auto;
}
.route-report-directory .io-wrapper .io-header .filters .shares .ui-toggle-switch .inset-text {
  font-size: 13px;
  font-size: 1.3rem;
  right: 17px;
}
.route-report-directory .io-wrapper .io-header .filters .shares .ui-toggle-switch label {
  width: 75px;
}
.route-report-directory .io-wrapper .io-header .filters .content-type {
  flex: 1;
}
.route-report-directory .io-wrapper .io-header .filters .content-type .button-container {
  width: 102px;
}
.route-report-directory .io-wrapper .io-header .filters .content-type .button-container label {
  position: relative;
}
.route-report-directory .io-wrapper .io-header .filters .content-type .button-container label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.route-report-directory .io-wrapper .io-header .filters .content-type .button-container .btn {
  background: #767676;
}
.route-report-directory .io-wrapper .io-header .filters .content-type .button-container .btn.checked {
  opacity: 1;
  background: #2e8b9d;
  box-shadow: #2e8b9d 0px 0px 2px;
}
.route-report-directory .io-wrapper .io-header .filters .content-type .button-container .btn.shared svg {
  width: 18px;
}
.route-report-directory .io-wrapper .io-header .filters .content-type .button-container .btn.insight svg {
  width: 13px;
}
.route-report-directory .io-wrapper .io-header .filters .content-type .button-container .btn.dashboard svg {
  width: 20px;
  margin-top: 5px;
}
.route-report-directory .io-wrapper .io-header .filters .content-type .button-container .btn.isf svg {
  width: 17px;
}
.route-report-directory .io-wrapper .io-header .filters .page-style {
  flex: 1;
}
.route-report-directory .io-wrapper .io-header .filters .page-style .label .info-tooltip[data-field-tooltip]:hover:after {
  left: auto;
  right: 155px;
}
.route-report-directory .io-wrapper .io-header .filters .page-style .button-container {
  width: 67px;
}
.route-report-directory .io-wrapper .io-header .filters .page-style .button-container svg {
  margin-top: 5px;
}
.route-report-directory .io-wrapper .io-header .filters .page-style .button-container svg path {
  fill: #9b9b9c;
}
.route-report-directory .io-wrapper .io-header .filters .page-style .button-container .btn {
  opacity: 1;
  transition: all 0.5s;
  border: solid 1px #9b9b9c;
}
.route-report-directory .io-wrapper .io-header .filters .page-style .button-container .btn.active {
  border: solid 1px #2e8b9d;
  background: #2e8b9d;
  box-shadow: #2e8b9d 0px 0px 2px;
}
.route-report-directory .io-wrapper .io-header .filters .page-style .button-container .btn.active svg path {
  fill: #fff;
}
.route-report-directory .io-wrapper .ui-content-header {
  transition: all 0.5s;
  position: relative;
}
.route-report-directory .io-wrapper .ui-content-header.filters-open {
  margin-top: 90px;
}
.route-report-directory .io-wrapper .ui-content-header .controls-container {
  background: #f8f8f8;
  position: relative;
  z-index: 10;
  padding: 25px 0 2px 0;
  transition: all 0.5s;
}
.route-report-directory .io-wrapper .ui-content-header .controls-container.active-tags-open {
  margin-bottom: 90px;
}
.route-report-directory .io-wrapper .ui-content-header .controls {
  display: flex;
  align-items: center;
  height: 30px;
}
.route-report-directory .io-wrapper .ui-content-header .controls .ui-input {
  margin: 0 15px 0 0;
}
.route-report-directory .io-wrapper .ui-content-header .controls .ui-input .checkbox .ui-input-checkbox {
  width: 15px;
  height: 15px;
  border: solid 1px #d6d6d6;
  border-radius: 3px;
}
.route-report-directory .io-wrapper .ui-content-header .controls .ui-input .checkbox .label-text {
  color: #555555;
  font-size: 16px;
  font-size: 1.6rem;
}
.route-report-directory .io-wrapper .ui-content-header .controls .ui-input .tag-search {
  width: 260px;
}
.route-report-directory .io-wrapper .ui-content-header .controls .ui-input .ui-field-container .grid-container {
  border-radius: 20px;
  height: 30px;
}
.route-report-directory .io-wrapper .ui-content-header .controls .btn-container {
  position: relative;
  width: 55px;
  height: 25px;
}
.route-report-directory .io-wrapper .ui-content-header .controls .expandable-btn-wrapper {
  position: absolute;
  height: 25px;
  top: 0;
  right: 0px;
}
.route-report-directory .io-wrapper .ui-content-header .controls .expandable-btn-wrapper .expandable-btn {
  position: absolute;
  width: 25px;
  height: 25px;
  border-radius: 5px;
  background: #2e8b9d;
  overflow: hidden;
  transition: all 0.5s;
  right: 0;
}
.route-report-directory .io-wrapper .ui-content-header .controls .expandable-btn-wrapper .expandable-btn:nth-of-type(1) {
  right: 25px;
}
.route-report-directory .io-wrapper .ui-content-header .controls .expandable-btn-wrapper .expandable-btn.disabled {
  background: #878787;
  pointer-events: none;
}
.route-report-directory .io-wrapper .ui-content-header .controls .expandable-btn-wrapper .expandable-btn.delete {
  right: 30px;
}
.route-report-directory .io-wrapper .ui-content-header .controls .expandable-btn-wrapper .expandable-btn.delete .icon svg {
  width: 14px;
  margin-top: 2px;
}
.route-report-directory .io-wrapper .ui-content-header .controls .expandable-btn-wrapper .expandable-btn.delete > div {
  width: 141px;
}
.route-report-directory .io-wrapper .ui-content-header .controls .expandable-btn-wrapper .expandable-btn.share {
  right: 0;
}
.route-report-directory .io-wrapper .ui-content-header .controls .expandable-btn-wrapper .expandable-btn.share .icon svg {
  width: 16px;
  margin-top: 4px;
}
.route-report-directory .io-wrapper .ui-content-header .controls .expandable-btn-wrapper .expandable-btn.share > div {
  width: 139px;
}
.route-report-directory .io-wrapper .ui-content-header .controls .expandable-btn-wrapper .expandable-btn > div {
  display: flex;
  align-items: center;
  position: absolute;
  width: 73px;
  right: 0;
}
.route-report-directory .io-wrapper .ui-content-header .controls .expandable-btn-wrapper .expandable-btn .text {
  font-size: 11px;
  font-size: 1.1rem;
  color: #fff;
  font-weight: 500;
}
.route-report-directory .io-wrapper .ui-content-header .controls .expandable-btn-wrapper .expandable-btn .icon {
  margin-left: auto;
  width: 25px;
  height: 25px;
  transition: all 0.5s;
}
.route-report-directory .io-wrapper .ui-content-header .controls .expandable-btn-wrapper .expandable-btn .icon svg {
  display: block;
  margin: 0 auto;
  width: 20px;
}
.route-report-directory .io-wrapper .ui-content-header .controls .expandable-btn-wrapper .expandable-btn:hover {
  cursor: pointer;
  box-shadow: -1px 1px 4px 1px rgba(0, 0, 0, 0.1);
}
.route-report-directory .io-wrapper .ui-content-header .controls .expandable-btn-wrapper .expandable-btn:hover.delete {
  width: 145px;
}
.route-report-directory .io-wrapper .ui-content-header .controls .expandable-btn-wrapper .expandable-btn:hover.share {
  width: 145px;
}
.route-report-directory .io-wrapper .ui-content-header .controls .expandable-btn-wrapper .expandable-btn:hover .icon {
  background: #b4e8f2;
}
.route-report-directory .io-wrapper .ui-content-header .controls .expandable-btn-wrapper .expandable-btn:hover .icon svg path {
  fill: #2e8b9d;
}
.route-report-directory .io-wrapper .ui-content-header .controls .selected-count {
  padding-left: 5px;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 300;
  color: #888888;
}
.route-report-directory .io-wrapper .ui-content-header .controls .selected-count strong {
  color: #555555;
}
.route-report-directory .io-wrapper .ui-content-header .controls .result-count {
  margin-left: auto;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 300;
  color: #888888;
}
.route-report-directory .io-wrapper .ui-content-header .controls .result-count strong {
  color: #555555;
}
.route-report-directory .io-wrapper .ui-content-header .controls .merge-controls {
  display: flex;
  align-items: center;
}
.route-report-directory .io-wrapper .ui-content-header .controls .merge-controls .merge-instructions {
  font-size: 14px;
  font-size: 1.4rem;
  color: #555555;
  border-top: solid 1px #d8d8d8;
  border-bottom: solid 1px #d8d8d8;
  padding: 5px 0 5px 0;
  margin-right: 20px;
}
.route-report-directory .io-wrapper .ui-content-header .controls .merge-controls button {
  position: relative;
  padding-top: 2px;
  border-radius: 5px;
  border: none;
  color: #fff;
  height: 23px;
  display: inline-block;
  font-weight: 300;
  padding-left: 10px;
  text-align: left;
  transition: all 0.4s;
}
.route-report-directory .io-wrapper .ui-content-header .controls .merge-controls button:hover {
  cursor: pointer;
}
.route-report-directory .io-wrapper .ui-content-header .controls .merge-controls button[disabled] {
  opacity: 0.4;
}
.route-report-directory .io-wrapper .ui-content-header .controls .merge-controls button[disabled]:hover {
  cursor: not-allowed;
}
.route-report-directory .io-wrapper .ui-content-header .controls .merge-controls button div {
  position: absolute;
  right: 0;
  top: 0;
  width: 23px;
  height: 23px;
  border-radius: 0 5px 5px 0;
  text-align: center;
}
.route-report-directory .io-wrapper .ui-content-header .controls .merge-controls button.merge {
  background: #2e8b9d;
  margin-right: 5px;
  width: 130px;
}
.route-report-directory .io-wrapper .ui-content-header .controls .merge-controls button.merge div {
  background: #b4e8f2;
}
.route-report-directory .io-wrapper .ui-content-header .controls .merge-controls button.merge div svg {
  width: 15px;
  margin-top: 6px;
}
.route-report-directory .io-wrapper .ui-content-header .controls .merge-controls button.merge div svg path {
  fill: #2e8b9d;
}
.route-report-directory .io-wrapper .ui-content-header .controls .merge-controls button.merge:hover {
  background: #106170;
}
.route-report-directory .io-wrapper .ui-content-header .controls .merge-controls button.cancel {
  background: #878787;
  width: 80px;
}
.route-report-directory .io-wrapper .ui-content-header .controls .merge-controls button.cancel:hover {
  background: #595959;
}
.route-report-directory .io-wrapper .ui-content-header .controls .merge-controls button.cancel div {
  background: #d6d6d6;
}
.route-report-directory .io-wrapper .ui-content-header .controls .merge-controls button.cancel div svg {
  margin-top: 3px;
}
.route-report-directory .io-wrapper .ui-content-header .controls .tag-input-container {
  position: relative;
}
.route-report-directory .io-wrapper .ui-content-header .controls .tag-input-container .tags-loading-spinner {
  position: absolute;
  width: 17px;
  z-index: 10;
  right: 21px;
  top: 8px;
}
.route-report-directory .io-wrapper .ui-content-header .controls .tt-dropdown-menu {
  background: #fff;
  padding: 8px 5px 5px 5px;
  z-index: 6;
  width: calc(100% - 50px);
  border: solid 1px #e6e6e6;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
  top: 32px;
  left: 13px;
  position: absolute;
  box-sizing: content-box;
  overflow: scroll;
  max-height: 255px;
}
.route-report-directory .io-wrapper .ui-content-header .controls .tt-dropdown-menu .tt-suggestions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.route-report-directory .io-wrapper .ui-content-header .controls .tt-dropdown-menu .tt-suggestions .tt-suggestion .tag {
  color: #fff;
  border-radius: 12px;
  padding: 3px 8px 3px 8px;
  font-weight: bold;
  font-size: 11px;
  font-size: 1.1rem;
  text-align: center;
  margin: 0 3px 3px 0;
}
.route-report-directory .io-wrapper .ui-content-header .controls .tt-dropdown-menu .tt-suggestions .tt-suggestion .tag:hover {
  cursor: pointer;
}
.route-report-directory .io-wrapper .ui-content-header .controls .tt-dropdown-menu .tt-suggestions .tt-suggestion .tag.user {
  background: #4ac1a2;
  border: solid 1px #3eb39f;
}
.route-report-directory .io-wrapper .ui-content-header .controls .tt-dropdown-menu .tt-suggestions .tt-suggestion .tag.innovu {
  background: #59a0d4;
  border: solid 1px #3088c9;
}
.route-report-directory .io-wrapper .ui-content-header .controls .tt-dropdown-menu .tt-suggestions .tt-suggestion .tag.innovu.admin {
  background: #678499;
  border: solid 1px #4b5460;
}
.route-report-directory .io-wrapper .ui-content-header .controls .tt-dropdown-menu .tt-suggestions .tt-suggestion .tag.innovu.admin .locked-icon {
  background: url(/assets/img/lens-icon-white.svg) no-repeat;
  width: 10px;
  height: 10px;
  background-size: contain;
  display: inline-block;
  margin-bottom: -1px;
}
.route-report-directory .io-wrapper .ui-content-header .reset-active-tag-btns {
  display: flex;
  align-items: center;
}
.route-report-directory .io-wrapper .ui-content-header .reset-active-tag-btns .btn:first-of-type {
  margin-right: 20px;
}
.route-report-directory .io-wrapper .ui-content-header .reset-active-tag-btns .btn .icon {
  position: relative;
  display: inline-block;
}
.route-report-directory .io-wrapper .ui-content-header .reset-active-tag-btns .btn.reset-filters .icon {
  top: 1px;
}
.route-report-directory .io-wrapper .ui-content-header .reset-active-tag-btns .btn.reset-filters .icon svg {
  width: 11px;
}
.route-report-directory .io-wrapper .ui-content-header .reset-active-tag-btns .btn.reset-filters .icon svg path {
  fill: #2e8b9d;
}
.route-report-directory .io-wrapper .ui-content-header .reset-active-tag-btns .btn.toggle-active-tags .icon {
  top: 3px;
  height: 15px;
  width: 12px;
  background: url("/assets/insight/tags-icon.svg") no-repeat;
  background-size: cover;
}
.route-report-directory .io-wrapper .ui-content-header .reset-filters,
.route-report-directory .io-wrapper .ui-content-header .toggle-active-tags {
  font-size: 12px;
  font-size: 1.2rem;
  color: #555555;
  transition: all 0.4s;
  display: table;
  position: relative;
  padding-bottom: 2px;
}
.route-report-directory .io-wrapper .ui-content-header .reset-filters .border,
.route-report-directory .io-wrapper .ui-content-header .toggle-active-tags .border {
  height: 1px;
  width: 0;
  transition: all 0.4s;
  background: #555555;
  position: absolute;
  left: 0;
  bottom: 0;
}
.route-report-directory .io-wrapper .ui-content-header .reset-filters:hover,
.route-report-directory .io-wrapper .ui-content-header .toggle-active-tags:hover {
  color: #253c5f;
  cursor: pointer;
}
.route-report-directory .io-wrapper .ui-content-header .reset-filters:hover .border,
.route-report-directory .io-wrapper .ui-content-header .toggle-active-tags:hover .border {
  width: 100%;
}
.route-report-directory .io-wrapper .ui-content-header .actively-filtered-container {
  background: #fafafa;
  border: solid 1px #e6e6e6;
  border-radius: 0 0 10px 10px;
  padding: 10px;
  display: flex;
  position: absolute;
  width: calc(100% - 22px);
  z-index: 1;
  top: -100px;
  transition: all 0.5s;
}
.route-report-directory .io-wrapper .ui-content-header .actively-filtered-container.active {
  top: 85px;
}
.route-report-directory .io-wrapper .ui-content-header .actively-filtered-container .close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  background: url(/assets/insight/close-icon.svg);
  background-size: contain;
}
.route-report-directory .io-wrapper .ui-content-header .actively-filtered-container .close-btn:hover {
  cursor: pointer;
}
.route-report-directory .io-wrapper .ui-content-header .actively-filtered-container h3 {
  color: #555555;
  font-weight: 300;
  margin: 0;
}
.route-report-directory .io-wrapper .ui-content-header .actively-filtered-container h3 .icon {
  display: inline-block;
  margin-right: 5px;
  position: relative;
}
.route-report-directory .io-wrapper .ui-content-header .actively-filtered-container .active-search {
  width: 250px;
  min-width: 250px;
}
.route-report-directory .io-wrapper .ui-content-header .actively-filtered-container .active-search h3 .icon {
  top: 4px;
}
.route-report-directory .io-wrapper .ui-content-header .actively-filtered-container .active-search h3 .icon svg path {
  fill: #2e8b9d;
}
.route-report-directory .io-wrapper .ui-content-header .actively-filtered-container .active-search .search-term {
  padding: 3px 15px 3px 10px;
  background: #f1f1f1;
  border-radius: 10px;
  font-weight: bold;
  position: relative;
  margin: 10px 0 0 0;
  color: #555555;
  overflow: hidden;
  text-overflow: ellipsis;
  text-wrap: nowrap;
}
.route-report-directory .io-wrapper .ui-content-header .actively-filtered-container .active-search .search-term.no-search-term {
  color: #7e7e7e;
  font-weight: 400;
}
.route-report-directory .io-wrapper .ui-content-header .actively-filtered-container .active-search .clear-term {
  position: absolute;
  top: 6px;
  right: 5px;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background: url(/assets/insight/close-icon.svg);
  background-size: contain;
}
.route-report-directory .io-wrapper .ui-content-header .actively-filtered-container .active-search .clear-term:hover {
  cursor: pointer;
}
.route-report-directory .io-wrapper .ui-content-header .actively-filtered-container .border {
  width: 1px;
  height: 35px;
  background: #d8d8d8;
  margin: 0 20px 0 20px;
}
.route-report-directory .io-wrapper .ui-content-header .actively-filtered-container .active-tags h3 {
  display: inline-block;
}
.route-report-directory .io-wrapper .ui-content-header .actively-filtered-container .active-tags h3 .icon {
  background: url(/assets/insight/tags-icon.svg) no-repeat;
  background-size: contain;
  width: 16px;
  height: 20px;
  top: 4px;
}
.route-report-directory .io-wrapper .ui-content-header .actively-filtered-container .active-tags .reset-tag-filters {
  display: inline-block;
  font-size: 11px;
  color: #555555;
  margin-left: 5px;
  transition: all 0.5s;
}
.route-report-directory .io-wrapper .ui-content-header .actively-filtered-container .active-tags .reset-tag-filters:hover {
  color: #243b5f;
  cursor: pointer;
  text-decoration: underline;
}
.route-report-directory .io-wrapper .ui-content-header .actively-filtered-container .active-tags .tag-container {
  padding: 10px 0 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.route-report-directory .io-wrapper .ui-content-header .actively-filtered-container .active-tags .tag-container p {
  margin: 0;
  color: #555555;
  font-size: 12px;
  font-size: 1.2rem;
}
.route-report-directory .io-wrapper .ui-content-header .actively-filtered-container .active-tags .tag-container .tag-wrapper {
  position: relative;
}
.route-report-directory .io-wrapper .ui-content-header .actively-filtered-container .active-tags .tag-container .tag-wrapper .delete-icon {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background: url("/assets/insight/close-icon.svg") #fff;
  background-size: cover;
  position: absolute;
  top: 0px;
  right: 1px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s;
  box-shadow: -1px 1px 4px 1px rgba(0, 0, 0, 0.2);
}
.route-report-directory .io-wrapper .ui-content-header .actively-filtered-container .active-tags .tag-container .tag-wrapper.item-selected:hover.locked .delete-icon.locked {
  opacity: 0;
}
.route-report-directory .io-wrapper .ui-content-header .actively-filtered-container .active-tags .tag-container .tag-wrapper.item-selected:hover.locked.active .tag.innovu {
  background: #243b5f;
}
.route-report-directory .io-wrapper .ui-content-header .actively-filtered-container .active-tags .tag-container .tag-wrapper.item-selected:hover.locked .tag.innovu.locked {
  background: #678499;
  border: solid 1px #4b5460;
  cursor: not-allowed;
}
.route-report-directory .io-wrapper .ui-content-header .actively-filtered-container .active-tags .tag-container .tag-wrapper.item-selected:hover .delete-icon {
  opacity: 1;
  pointer-events: all;
}
.route-report-directory .io-wrapper .ui-content-header .actively-filtered-container .active-tags .tag-container .tag-wrapper.item-selected:hover .tag.user,
.route-report-directory .io-wrapper .ui-content-header .actively-filtered-container .active-tags .tag-container .tag-wrapper.item-selected:hover .tag.innovu {
  background: #842121;
  border: solid 1px #ed4651;
}
.route-report-directory .io-wrapper .ui-content-header .actively-filtered-container .active-tags .tag-container .tag-wrapper.active .tag.user {
  background: #118668;
}
.route-report-directory .io-wrapper .ui-content-header .actively-filtered-container .active-tags .tag-container .tag-wrapper.active .tag.innovu {
  background: #275a7f;
}
.route-report-directory .io-wrapper .ui-content-header .actively-filtered-container .active-tags .tag-container .tag-wrapper.locked .locked-icon {
  background: url(/assets/img/lens-icon-white.svg) no-repeat;
  width: 10px;
  height: 10px;
  background-size: contain;
  display: inline-block;
  margin-bottom: -1px;
}
.route-report-directory .io-wrapper .ui-content-header .actively-filtered-container .active-tags .tag-container .tag-wrapper.locked .tag.innovu {
  background: #678499;
  border: solid 1px #4b5460;
}
.route-report-directory .io-wrapper .ui-content-header .actively-filtered-container .active-tags .tag-container .tag-wrapper.locked.active .tag {
  background: #243b5f;
}
.route-report-directory .io-wrapper .ui-content-header .actively-filtered-container .active-tags .tag-container .tag {
  color: #fff;
  border-radius: 12px;
  padding: 3px 8px 3px 8px;
  font-weight: bold;
  text-align: center;
  margin: 0 3px 3px 0;
  max-height: 15px;
  transition: all 0.3s;
  font-size: 11px;
  font-size: 1.1rem;
}
.route-report-directory .io-wrapper .ui-content-header .actively-filtered-container .active-tags .tag-container .tag:hover {
  cursor: pointer;
}
.route-report-directory .io-wrapper .ui-content-header .actively-filtered-container .active-tags .tag-container .tag.user {
  background: #4ac1a2;
  border: solid 1px #3eb39f;
}
.route-report-directory .io-wrapper .ui-content-header .actively-filtered-container .active-tags .tag-container .tag.innovu {
  background: #59a0d4;
  border: solid 1px #3088c9;
}
.route-report-directory .io-wrapper .ui-content-header .active-collection-title {
  font-size: 18px;
  font-weight: 300;
  margin: 15px 0 -5px 0;
  color: #555555;
  display: table;
  padding: 0 0 8px 0;
  border-bottom: solid 1px #e2e2e2;
}
.route-report-directory .io-wrapper .ui-content-header .active-collection-title span {
  display: inline-block;
  margin-right: 10px;
}
.route-report-directory .io-wrapper .ui-content-header .active-collection-title span svg {
  width: 18px;
}
.route-report-directory .io-wrapper .ui-content-header .active-collection-title .close-btn {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 100%;
  background: url("/assets/insight/close-icon.svg");
  background-size: contain;
  position: relative;
  top: -5px;
  right: -1px;
  transition: all 0.4s;
}
.route-report-directory .io-wrapper .ui-content-header .active-collection-title .close-btn:hover {
  cursor: pointer;
  box-shadow: 0px 1px 2px 1px rgba(0, 0, 0, 0.2);
}
.route-report-directory .io-wrapper .io-content {
  height: calc(100vh - 300px);
  margin-top: 20px;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.route-report-directory .io-wrapper .io-content .infinite-loader-spinner {
  margin: 0 auto;
  display: block;
  width: 25px;
}
.route-report-directory .io-wrapper .io-content .no-content-available {
  text-align: center;
  padding-top: 50px;
  width: 100%;
}
.route-report-directory .io-wrapper .io-content .no-content-available h1 {
  color: #555555;
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 200;
}
.route-report-directory .io-wrapper .io-content .no-content-available h2 {
  color: #555555;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 200;
}
.route-report-directory .io-wrapper .io-content::-webkit-scrollbar {
  display: none;
}
.route-report-directory .io-wrapper .io-content.filters-active {
  height: calc(100vh - 390px);
}
.route-report-directory .io-wrapper .io-content.list {
  padding: 3px 3px 0 3px;
}
.route-report-directory .io-wrapper .io-content.list .io-item .title > div {
  position: relative;
}
.route-report-directory .io-wrapper .io-content.grid {
  display: flex;
  flex-wrap: wrap;
  padding: 2px;
  justify-content: center;
}
.route-report-directory .io-wrapper .io-content.grid .infinite-loader-spinner {
  position: absolute;
  bottom: 0;
}
.route-report-directory .io-wrapper .io-content.grid .io-item {
  width: 252px;
  height: 275px;
  padding: 10px;
  display: block;
  margin: 0 20px 20px 0;
}
.route-report-directory .io-wrapper .io-content.grid .io-item .navigation-click-area {
  top: 55px;
  width: 100%;
  height: 159px;
}
.route-report-directory .io-wrapper .io-content.grid .io-item:nth-of-type(4n) {
  margin: 0 0 20px 0;
}
.route-report-directory .io-wrapper .io-content.grid .io-item .type-icon {
  margin: 0 auto;
  margin-top: 55px;
  width: auto;
}
.route-report-directory .io-wrapper .io-content.grid .io-item .type-icon.insight svg {
  height: 45px;
  width: 31px;
}
.route-report-directory .io-wrapper .io-content.grid .io-item .type-icon.dashboard svg {
  height: 41px;
  width: 48px;
}
.route-report-directory .io-wrapper .io-content.grid .io-item .type-icon.isf {
  width: 40px;
}
.route-report-directory .io-wrapper .io-content.grid .io-item .title {
  text-align: center;
  margin: 0 auto;
  margin-top: 10px;
  width: auto;
}
.route-report-directory .io-wrapper .io-content.grid .io-item .title .inner {
  margin: 0 auto;
  display: table;
  padding-bottom: 5px;
}
.route-report-directory .io-wrapper .io-content.grid .io-item .info-container {
  margin-right: 0;
}
.route-report-directory .io-wrapper .io-content.grid .io-item .info-container .owner-fav-container {
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
  display: block;
}
.route-report-directory .io-wrapper .io-content.grid .io-item .info-container .owner-fav-container .owner-status {
  margin: 5px 0 0 10px;
}
.route-report-directory .io-wrapper .io-content.grid .io-item .info-container .owner-fav-container .favorite-container {
  position: absolute;
  top: 38px;
  left: 10px;
}
.route-report-directory .io-wrapper .io-content.grid .io-item .info-container .owner-fav-container .favorite-container svg {
  margin-left: 0;
}
.route-report-directory .io-wrapper .io-content.grid .io-item .info-container .user-updated-container {
  position: absolute;
  width: calc(100% - 20px);
  bottom: 80px;
  border-bottom: solid 1px #e6e6e6;
  padding-bottom: 5px;
}
.route-report-directory .io-wrapper .io-content.grid .io-item .info-container .user-updated-container .content-info {
  margin-left: auto;
}
.route-report-directory .io-wrapper .io-content.grid .io-item .info-container .user-updated-container .content-info .model {
  text-align: right;
}
.route-report-directory .io-wrapper .io-content.grid .io-item .tertiary-info-container {
  position: absolute;
  top: 23px;
  right: 10px;
  width: auto;
}
.route-report-directory .io-wrapper .io-content.grid .io-item .tertiary-info-container .notes-shares {
  padding-top: 15px;
}
.route-report-directory .io-wrapper .io-content.grid .io-item .tag-container {
  height: 50px;
  width: 255px;
  position: absolute;
  right: 10px;
  bottom: 10px;
}
.route-report-directory .io-wrapper .io-content .io-item {
  display: flex;
  position: relative;
  align-items: center;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, 0.1);
  padding: 10px 10px 10px 20px;
  margin: 0 0 10px 0;
  height: 50px;
  border: solid 2px #fff;
}
.route-report-directory .io-wrapper .io-content .io-item .navigation-click-area {
  flex: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  z-index: 1;
}
.route-report-directory .io-wrapper .io-content .io-item .navigation-click-area:hover {
  cursor: pointer;
}
.route-report-directory .io-wrapper .io-content .io-item .navigation-click-area:hover ~ .title {
  color: #253c5f;
  text-decoration: underline;
}
.route-report-directory .io-wrapper .io-content .io-item .navigation-click-area:hover ~ .title .border {
  width: 100%;
}
.route-report-directory .io-wrapper .io-content .io-item .navigation-click-area:hover ~ .type-icon svg path {
  fill: #2e8b9d;
}
.route-report-directory .io-wrapper .io-content .io-item.selected {
  background: #f0f0f0;
  border: solid 2px #2e8b9d;
}
.route-report-directory .io-wrapper .io-content .io-item.selected .type-icon svg path {
  fill: #2e8b9d;
}
.route-report-directory .io-wrapper .io-content .io-item.selected.merge-source {
  border: solid 2px #253c5f;
}
.route-report-directory .io-wrapper .io-content .io-item.selected.merge-source .type-icon {
  background: url("/assets/insight/merge-icon.svg") no-repeat center;
  height: 21px;
}
.route-report-directory .io-wrapper .io-content .io-item.selected.merge-source .type-icon svg {
  display: none;
}
.route-report-directory .io-wrapper .io-content .io-item.selected .title:hover {
  color: #106170;
}
.route-report-directory .io-wrapper .io-content .io-item.merge-target {
  background: #f0f0f0;
  border: solid 2px #2e8b9d;
}
.route-report-directory .io-wrapper .io-content .io-item.merge-target .type-icon svg path {
  fill: #2e8b9d;
}
.route-report-directory .io-wrapper .io-content .io-item .type-icon {
  margin-right: 14px;
  width: 28px;
  position: relative;
  z-index: 5;
}
.route-report-directory .io-wrapper .io-content .io-item .type-icon svg {
  margin: 0 auto;
  display: block;
}
.route-report-directory .io-wrapper .io-content .io-item .type-icon svg path {
  fill: #253c5f;
  transition: all 0.5s;
}
.route-report-directory .io-wrapper .io-content .io-item .type-icon.insight svg {
  height: 33px;
  width: 23px;
}
.route-report-directory .io-wrapper .io-content .io-item .type-icon.dashboard svg {
  height: 24px;
  width: 28px;
}
.route-report-directory .io-wrapper .io-content .io-item .type-icon.isf {
  width: 28px;
}
.route-report-directory .io-wrapper .io-content .io-item .type-icon:hover {
  cursor: pointer;
}
.route-report-directory .io-wrapper .io-content .io-item .type-icon:hover svg path {
  fill: #2e8b9d;
}
.route-report-directory .io-wrapper .io-content .io-item .title {
  font-size: 16px;
  font-size: 1.6rem;
  color: #555555;
  margin-right: 5%;
  width: 430px;
  transition: all 0.4s;
  display: block;
  position: relative;
  z-index: 5;
}
.route-report-directory .io-wrapper .io-content .io-item .title:hover {
  text-decoration: underline;
}
.route-report-directory .io-wrapper .io-content .io-item .title.ellipsis .inner {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  display: block;
  padding: 2px 0;
}
.route-report-directory .io-wrapper .io-content .io-item .title.ellipsis .inner .border {
  bottom: 0;
}
.route-report-directory .io-wrapper .io-content .io-item .title:hover {
  color: #253c5f;
  cursor: pointer;
}
.route-report-directory .io-wrapper .io-content .io-item .title:hover ~ .type-icon svg path {
  fill: #2e8b9d;
}
.route-report-directory .io-wrapper .io-content .io-item .info-container {
  margin-right: 5%;
}
.route-report-directory .io-wrapper .io-content .io-item .owner-fav-container {
  display: flex;
  align-items: center;
  border-bottom: solid 1px #d6d6d6;
  padding-bottom: 5px;
}
.route-report-directory .io-wrapper .io-content .io-item .owner-fav-container .owner-status {
  display: flex;
  align-items: center;
  flex: 1;
}
.route-report-directory .io-wrapper .io-content .io-item .owner-fav-container .owner-status .status-icon {
  border-radius: 100%;
  height: 20px;
  width: 20px;
}
.route-report-directory .io-wrapper .io-content .io-item .owner-fav-container .owner-status .status-type {
  font-size: 11px;
  font-size: 1.1rem;
  font-weight: 500;
  margin-left: 3px;
}
.route-report-directory .io-wrapper .io-content .io-item .owner-fav-container .owner-status.owned .status-type {
  color: #3eb39f;
}
.route-report-directory .io-wrapper .io-content .io-item .owner-fav-container .owner-status.owned .status-icon {
  background: url("/assets/insight/owned-icon.svg") #3eb39f no-repeat center;
  background-size: 11px;
}
.route-report-directory .io-wrapper .io-content .io-item .owner-fav-container .owner-status.shared .status-type {
  color: #ffb327;
}
.route-report-directory .io-wrapper .io-content .io-item .owner-fav-container .owner-status.shared .status-icon {
  background: url("/assets/insight/shared-icon.svg") #ffb327 no-repeat center;
  background-size: 11px;
}
.route-report-directory .io-wrapper .io-content .io-item .owner-fav-container .owner-status.owned-by-others .status-type {
  color: #ffb327;
}
.route-report-directory .io-wrapper .io-content .io-item .owner-fav-container .owner-status.owned-by-others .status-icon {
  background: url("/assets/insight/owned-icon.svg") #ffb327 no-repeat center;
  background-size: 11px;
}
.route-report-directory .io-wrapper .io-content .io-item .owner-fav-container .owner-status.global .status-type {
  color: #4892c7;
}
.route-report-directory .io-wrapper .io-content .io-item .owner-fav-container .owner-status.global .status-icon {
  background: url("/assets/insight/global-icon.svg") #4892c7 no-repeat center;
  background-size: 13px;
}
.route-report-directory .io-wrapper .io-content .io-item .owner-fav-container .favorite-container {
  width: 20px;
  margin-right: 95px;
}
.route-report-directory .io-wrapper .io-content .io-item .owner-fav-container .favorite-container:hover {
  cursor: pointer;
}
.route-report-directory .io-wrapper .io-content .io-item .owner-fav-container .favorite-container svg {
  width: 20px;
  margin-left: 15px;
  transition: all 0.5s;
}
.route-report-directory .io-wrapper .io-content .io-item .owner-fav-container .favorite-container svg .fav-stroke {
  fill: #9b9b9c;
  transition: all 0.4s;
}
.route-report-directory .io-wrapper .io-content .io-item .owner-fav-container .favorite-container svg .fav-fill {
  fill: #ed4651;
  transition: all 0.4s;
  opacity: 0;
}
.route-report-directory .io-wrapper .io-content .io-item .owner-fav-container .favorite-container svg:hover .fav-stroke {
  fill: #ed4651;
}
.route-report-directory .io-wrapper .io-content .io-item .owner-fav-container .favorite-container.active svg .fav-stroke {
  fill: #ed4651;
}
.route-report-directory .io-wrapper .io-content .io-item .owner-fav-container .favorite-container.active svg .fav-fill {
  opacity: 1;
}
.route-report-directory .io-wrapper .io-content .io-item .user-updated-container {
  display: flex;
  align-items: center;
  width: 260px;
}
.route-report-directory .io-wrapper .io-content .io-item .user-updated-container .user-info {
  padding-top: 5px;
}
.route-report-directory .io-wrapper .io-content .io-item .user-updated-container .user-info .name {
  font-size: 14px;
  font-size: 1.4rem;
  color: #555555;
  font-weight: 300;
  line-height: 14px;
}
.route-report-directory .io-wrapper .io-content .io-item .user-updated-container .user-info .org {
  font-size: 10px;
  font-size: 1rem;
  color: #6b6b6b;
  font-weight: 300;
  line-height: 10px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.route-report-directory .io-wrapper .io-content .io-item .user-updated-container .content-info {
  margin-top: 5px;
  text-align: right;
  margin-left: auto;
}
.route-report-directory .io-wrapper .io-content .io-item .user-updated-container .content-info .model {
  font-size: 12px;
  font-size: 1.2rem;
  color: #555555;
  font-weight: 300;
  line-height: 12px;
}
.route-report-directory .io-wrapper .io-content .io-item .user-updated-container .content-info .last-updated {
  font-size: 10px;
  font-size: 1rem;
  color: #6b6b6b;
  font-weight: 300;
  line-height: 10px;
}
.route-report-directory .io-wrapper .io-content .io-item .tag-container {
  width: 280px;
  position: absolute;
  right: 55px;
  height: 50px;
  overflow: hidden;
}
.route-report-directory .io-wrapper .io-content .io-item .tag-container .view-tags-btn {
  width: fit-content;
  transition: all 0.3s;
  color: #666;
  font-size: 13px;
  font-size: 1.3rem;
  font-weight: 300;
  margin: 0 auto;
  margin-top: 10px;
  display: none;
}
.route-report-directory .io-wrapper .io-content .io-item .tag-container .view-tags-btn:hover {
  color: #2e8b9d;
  cursor: pointer;
}
.route-report-directory .io-wrapper .io-content .io-item .tag-container .view-tags-btn:hover .icon svg path {
  fill: #2e8b9d;
}
.route-report-directory .io-wrapper .io-content .io-item .tag-container .view-tags-btn .icon {
  margin-right: 5px;
  top: 5px;
  position: relative;
}
.route-report-directory .io-wrapper .io-content .io-item .tag-container .view-tags-btn .icon svg {
  width: 16px;
}
.route-report-directory .io-wrapper .io-content .io-item .tag-container .view-tags-btn .icon svg path {
  transition: all 0.5s;
  fill: #666;
}
.route-report-directory .io-wrapper .io-content .io-item .tag-container .tag-inner-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.route-report-directory .io-wrapper .io-content .io-item .tag-container .tag-inner-container.ellipses-visible .ellipses {
  position: absolute;
  bottom: 7px;
  right: 0px;
}
.route-report-directory .io-wrapper .io-content .io-item .tag-container .tag-inner-container.ellipses-visible .ellipses:hover {
  cursor: pointer;
}
.route-report-directory .io-wrapper .io-content .io-item .tag-container .tag-inner-container.ellipses-visible .ellipses:hover div {
  background: #757575;
}
.route-report-directory .io-wrapper .io-content .io-item .tag-container .tag-inner-container.ellipses-visible .ellipses div {
  transition: all 0.4s;
  width: 4px;
  height: 4px;
  background: #b2b2b2;
  display: inline-block;
  border-radius: 100%;
}
.route-report-directory .io-wrapper .io-content .io-item .tag-container .tag-inner-container.collection-active .tag-wrapper {
  opacity: 0;
  pointer-events: none;
}
.route-report-directory .io-wrapper .io-content .io-item .tag-container .tag-inner-container.collection-active .show-tags-btn {
  pointer-events: all;
  opacity: 1;
}
.route-report-directory .io-wrapper .io-content .io-item .tag-container .tag-inner-container .show-tags-btn {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  left: 5px;
  top: 10px;
  transition: all 0.3s;
  color: #666;
  font-size: 13px;
  font-size: 1.3rem;
  font-weight: 300;
  z-index: 10;
  width: 100%;
  height: 100%;
}
.route-report-directory .io-wrapper .io-content .io-item .tag-container .tag-inner-container .show-tags-btn:hover {
  color: #2e8b9d;
  cursor: pointer;
}
.route-report-directory .io-wrapper .io-content .io-item .tag-container .tag-inner-container .show-tags-btn:hover .icon svg path {
  fill: #2e8b9d;
}
.route-report-directory .io-wrapper .io-content .io-item .tag-container .tag-inner-container .show-tags-btn .icon {
  margin-right: 5px;
  top: 5px;
  position: relative;
}
.route-report-directory .io-wrapper .io-content .io-item .tag-container .tag-inner-container .show-tags-btn .icon svg {
  width: 16px;
}
.route-report-directory .io-wrapper .io-content .io-item .tag-container .tag-inner-container .show-tags-btn .icon svg path {
  transition: all 0.5s;
  fill: #666;
}
.route-report-directory .io-wrapper .io-content .io-item .tag-container .tag-wrapper {
  position: relative;
}
.route-report-directory .io-wrapper .io-content .io-item .tag-container .tag-wrapper .delete-icon {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background: url("/assets/insight/close-icon.svg") #fff;
  background-size: cover;
  position: absolute;
  top: 0px;
  right: 1px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s;
  box-shadow: -1px 1px 4px 1px rgba(0, 0, 0, 0.2);
}
.route-report-directory .io-wrapper .io-content .io-item .tag-container .tag-wrapper.item-selected:hover.locked .delete-icon.locked {
  opacity: 0;
}
.route-report-directory .io-wrapper .io-content .io-item .tag-container .tag-wrapper.item-selected:hover.locked.active .tag.innovu {
  background: #243b5f;
}
.route-report-directory .io-wrapper .io-content .io-item .tag-container .tag-wrapper.item-selected:hover.locked .tag.innovu.locked {
  background: #678499;
  border: solid 1px #4b5460;
  cursor: not-allowed;
}
.route-report-directory .io-wrapper .io-content .io-item .tag-container .tag-wrapper.item-selected:hover .delete-icon {
  opacity: 1;
  pointer-events: all;
}
.route-report-directory .io-wrapper .io-content .io-item .tag-container .tag-wrapper.item-selected:hover .tag.user,
.route-report-directory .io-wrapper .io-content .io-item .tag-container .tag-wrapper.item-selected:hover .tag.innovu {
  background: #842121;
  border: solid 1px #ed4651;
}
.route-report-directory .io-wrapper .io-content .io-item .tag-container .tag-wrapper.active .tag.user {
  background: #118668;
}
.route-report-directory .io-wrapper .io-content .io-item .tag-container .tag-wrapper.active .tag.innovu {
  background: #275a7f;
}
.route-report-directory .io-wrapper .io-content .io-item .tag-container .tag-wrapper.locked .locked-icon {
  background: url(/assets/img/lens-icon-white.svg) no-repeat;
  width: 10px;
  height: 10px;
  background-size: contain;
  display: inline-block;
  margin-bottom: -1px;
}
.route-report-directory .io-wrapper .io-content .io-item .tag-container .tag-wrapper.locked .tag.innovu {
  background: #678499;
  border: solid 1px #4b5460;
}
.route-report-directory .io-wrapper .io-content .io-item .tag-container .tag-wrapper.locked.active .tag {
  background: #243b5f;
}
.route-report-directory .io-wrapper .io-content .io-item .tag-container .tag {
  color: #fff;
  border-radius: 12px;
  padding: 3px 8px 3px 8px;
  font-weight: bold;
  text-align: center;
  margin: 0 3px 3px 0;
  max-height: 15px;
  transition: all 0.3s;
  font-size: 11px;
  font-size: 1.1rem;
}
.route-report-directory .io-wrapper .io-content .io-item .tag-container .tag:hover {
  cursor: pointer;
}
.route-report-directory .io-wrapper .io-content .io-item .tag-container .tag.user {
  background: #4ac1a2;
  border: solid 1px #3eb39f;
}
.route-report-directory .io-wrapper .io-content .io-item .tag-container .tag.innovu {
  background: #59a0d4;
  border: solid 1px #3088c9;
}
.route-report-directory .io-wrapper .io-content .io-item .tertiary-info-container {
  margin-left: auto;
  width: 40px;
  position: relative;
}
.route-report-directory .io-wrapper .io-content .io-item .tertiary-info-container:hover {
  cursor: pointer;
}
.route-report-directory .io-wrapper .io-content .io-item .tertiary-info-container:hover .notes-shares .elippsis div {
  background: #106170;
  box-shadow: -1px 1px 4px 1px rgba(0, 0, 0, 0.1);
}
.route-report-directory .io-wrapper .io-content .io-item .tertiary-info-container:hover .notes-shares .note svg path,
.route-report-directory .io-wrapper .io-content .io-item .tertiary-info-container:hover .notes-shares .shares svg path {
  fill: #106170;
}
.route-report-directory .io-wrapper .io-content .io-item .tertiary-info-container .created-date {
  color: #6b6b6b;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 200;
  position: absolute;
  top: -15px;
  right: 0;
}
.route-report-directory .io-wrapper .io-content .io-item .tertiary-info-container .notes-shares {
  display: flex;
  align-items: center;
  padding-top: 8px;
  justify-content: flex-end;
}
.route-report-directory .io-wrapper .io-content .io-item .tertiary-info-container .notes-shares .note,
.route-report-directory .io-wrapper .io-content .io-item .tertiary-info-container .notes-shares .shares {
  margin-right: 5px;
}
.route-report-directory .io-wrapper .io-content .io-item .tertiary-info-container .notes-shares .note {
  width: 12px;
  height: 12px;
}
.route-report-directory .io-wrapper .io-content .io-item .tertiary-info-container .notes-shares svg {
  transition: all 0.4s;
}
.route-report-directory .io-wrapper .io-content .io-item .tertiary-info-container .notes-shares .shares {
  width: 12px;
  height: 12px;
}
.route-report-directory .io-wrapper .io-content .io-item .tertiary-info-container .notes-shares .shares svg path {
  fill: #2e8b9d;
}
.route-report-directory .io-wrapper .io-content .io-item .tertiary-info-container .notes-shares .elippsis div {
  transition: all 0.4s;
  height: 4px;
  width: 4px;
  background: #2e8b9d;
  margin-bottom: 2px;
  border-radius: 100%;
}
.route-report-directory .io-wrapper .allOpen .io-content.list .io-item {
  align-items: normal;
}
.route-report-directory .io-wrapper .allOpen .io-content.list .io-item .navigation-click-area {
  height: 35px;
}
.route-report-directory .io-wrapper .allOpen .io-content.list .io-item .navigation-click-area:hover ~ .info-container {
  border-top: solid 1px #253c5f;
}
.route-report-directory .io-wrapper .allOpen .io-content.list .io-item .title {
  height: 22px;
}
.route-report-directory .io-wrapper .allOpen .io-content.list .io-item .title .border {
  display: none;
}
.route-report-directory .io-wrapper .allOpen .io-content.list .io-item .title.hover-active ~ .info-container {
  border-top: solid 1px #253c5f;
}
.route-report-directory .io-wrapper .allOpen .io-content.list .io-item .type-icon.insight,
.route-report-directory .io-wrapper .allOpen .io-content.list .io-item .type-icon.isf {
  margin-top: 9px;
}
.route-report-directory .io-wrapper .allOpen .io-content.list .io-item .type-icon.dashboard {
  margin-top: 13px;
}
.route-report-directory .io-wrapper .allOpen .io-content.list .io-item .tertiary-info-container {
  margin-top: 12px;
}
.route-report-directory .io-wrapper .allOpen .io-content.list .io-item .info-container {
  position: absolute;
  top: 32px;
  width: 415px;
  left: 62px;
  display: flex;
  align-items: center;
  border-top: solid 1px #d8d8d8;
  transition: all 0.4s;
}
.route-report-directory .io-wrapper .allOpen .io-content.list .io-item .info-container.no-user-name {
  padding-top: 5px;
}
.route-report-directory .io-wrapper .allOpen .io-content.list .io-item .info-container .owner-fav-container {
  border-bottom: none;
  padding-bottom: 0;
}
.route-report-directory .io-wrapper .allOpen .io-content.list .io-item .info-container .owner-fav-container .owner-status {
  margin-right: 30px;
}
.route-report-directory .io-wrapper .allOpen .io-content.list .io-item .info-container .owner-fav-container .favorite-container {
  margin-right: 30px;
  margin-left: 15px;
  height: 17px;
}
.route-report-directory .io-wrapper .allOpen .io-content.list .io-item .tag-container {
  right: 150px;
}
.route-report-directory .io-wrapper .allOpen .io-content.grid .io-item {
  margin: 0 7% 20px 0;
}
.route-report-directory .io-wrapper .allOpen .io-content.grid .io-item:nth-of-type(3n) {
  margin: 0 0 20px 0;
}
.route-report-directory .io-wrapper .detail-wrapper {
  padding: 0 14px 14px 14px;
  overflow-y: scroll;
  height: 100%;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.route-report-directory .io-wrapper .detail-wrapper .none-found-message {
  margin: 0;
  color: #737373;
  font-size: 12px;
  font-size: 1.2rem;
}
.route-report-directory .io-wrapper .detail-wrapper::-webkit-scrollbar {
  display: none;
}
.route-report-directory .io-wrapper .detail-wrapper h3 {
  font-size: 16px;
  font-size: 1.6rem;
  color: #555555;
  font-weight: 300;
  margin: 0 0 10px 0;
}
.route-report-directory .io-wrapper .detail-wrapper .sticky-header {
  position: absolute;
  top: 0;
  left: 0;
  height: 30px;
  width: 100%;
  background: #fff;
  z-index: 5;
}
.route-report-directory .io-wrapper .detail-wrapper .close-btn {
  width: 25px;
  height: 25px;
  border-radius: 100%;
  background: url("/assets/insight/close-icon.svg");
  position: absolute;
  top: 5px;
  left: 5px;
}
.route-report-directory .io-wrapper .detail-wrapper .close-btn:hover {
  cursor: pointer;
}
.route-report-directory .io-wrapper .detail-wrapper .type-icon {
  width: 95px;
  height: 95px;
  border: solid 1px #253c5f;
  border-radius: 100%;
  background: #fafafa;
  margin: 0 auto;
  margin-top: 30px;
  margin-bottom: 10px;
}
.route-report-directory .io-wrapper .detail-wrapper .type-icon svg {
  display: block;
  margin: 0 auto;
}
.route-report-directory .io-wrapper .detail-wrapper .type-icon svg path {
  fill: #253c5f;
}
.route-report-directory .io-wrapper .detail-wrapper .type-icon.insight svg {
  width: 41px;
  margin-top: 18px;
}
.route-report-directory .io-wrapper .detail-wrapper .type-icon.dashboard svg {
  width: 55px;
  margin-top: 25px;
}
.route-report-directory .io-wrapper .detail-wrapper .type-icon.isf svg {
  width: 44px;
  margin-top: 24px;
}
.route-report-directory .io-wrapper .detail-wrapper .title {
  font-size: 20px;
  font-size: 2rem;
  color: #555555;
  text-align: center;
  font-weight: 300;
  line-height: 20px;
  border-bottom: solid 1px #d8d8d8;
  padding: 0 0 10px 0;
  margin: 0;
}
.route-report-directory .io-wrapper .detail-wrapper .date-container {
  display: flex;
  align-items: center;
  font-size: 12px;
  font-size: 1.2rem;
  color: #737373;
  padding: 5px 0 15px 0;
}
.route-report-directory .io-wrapper .detail-wrapper .date-container p {
  margin: 0;
}
.route-report-directory .io-wrapper .detail-wrapper .date-container .updated-date {
  margin-left: auto;
}
.route-report-directory .io-wrapper .detail-wrapper .action-btn-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
.route-report-directory .io-wrapper .detail-wrapper .action-btn-wrapper.admin-btn-wrapper {
  border-top: solid 1px #d6d6d6;
  border-bottom: solid 1px #d6d6d6;
  padding: 10px 0 10px 0;
  margin: 10px 0 0 0;
}
.route-report-directory .io-wrapper .detail-wrapper .action-btn-wrapper .btn-container span {
  color: #737373;
  font-size: 11px;
  font-size: 1.1rem;
  display: block;
  margin-top: 5px;
  text-align: center;
  font-weight: 500;
}
.route-report-directory .io-wrapper .detail-wrapper .action-btn-wrapper .btn {
  width: 25px;
  height: 25px;
  border-radius: 5px;
  background: #2e8b9d;
  margin: 0 auto;
}
.route-report-directory .io-wrapper .detail-wrapper .action-btn-wrapper .btn:hover {
  cursor: pointer;
  background: #106170;
}
.route-report-directory .io-wrapper .detail-wrapper .action-btn-wrapper .btn svg {
  display: block;
  margin: 0 auto;
}
.route-report-directory .io-wrapper .detail-wrapper .action-btn-wrapper .btn.edit svg {
  width: 14px;
  padding-top: 5px;
}
.route-report-directory .io-wrapper .detail-wrapper .action-btn-wrapper .btn.clone svg {
  width: 14px;
  padding-top: 4px;
}
.route-report-directory .io-wrapper .detail-wrapper .action-btn-wrapper .btn.delete svg {
  width: 13px;
  padding-top: 3px;
}
.route-report-directory .io-wrapper .detail-wrapper .action-btn-wrapper .btn.export svg {
  width: 18px;
  padding-top: 4px;
}
.route-report-directory .io-wrapper .detail-wrapper .action-btn-wrapper .btn.share svg {
  width: 17px;
  padding-top: 4px;
}
.route-report-directory .io-wrapper .detail-wrapper .action-btn-wrapper .btn.merge svg {
  width: 17px;
  padding-top: 6px;
}
.route-report-directory .io-wrapper .detail-wrapper .action-btn-wrapper .btn.merge svg path {
  fill: #fff;
}
.route-report-directory .io-wrapper .detail-wrapper .action-btn-wrapper .btn.global svg {
  width: 17px;
  padding-top: 3px;
}
.route-report-directory .io-wrapper .detail-wrapper .action-btn-wrapper .btn.global svg path {
  fill: #fff;
}
.route-report-directory .io-wrapper .detail-wrapper .action-btn-wrapper .btn.static svg {
  width: 15px;
  padding-top: 4px;
}
.route-report-directory .io-wrapper .detail-wrapper .action-btn-wrapper .btn.static svg path {
  fill: #fff;
}
.route-report-directory .io-wrapper .detail-wrapper .desc-wrapper {
  padding: 15px 0 15px 0;
  border-bottom: solid 1px #d8d8d8;
}
.route-report-directory .io-wrapper .detail-wrapper .desc-wrapper h3 {
  display: flex;
  align-items: center;
}
.route-report-directory .io-wrapper .detail-wrapper .desc-wrapper h3 .icon {
  display: inline-block;
  width: 13px;
  height: 13px;
  background: url("/assets/insight/note-icon.svg");
  margin: 0 5px 0 0;
}
.route-report-directory .io-wrapper .detail-wrapper .desc-wrapper .desc {
  font-size: 12px;
  font-size: 1.2rem;
  color: #737373;
  margin: 0;
  padding: 0 8px 0 8px;
}
.route-report-directory .io-wrapper .detail-wrapper .expandable-btn-wrapper {
  position: absolute;
  height: 20px;
  top: 0;
  right: 0px;
}
.route-report-directory .io-wrapper .detail-wrapper .expandable-btn-wrapper .expandable-btn {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 5px;
  background: #2e8b9d;
  overflow: hidden;
  transition: all 0.5s;
  right: 0;
}
.route-report-directory .io-wrapper .detail-wrapper .expandable-btn-wrapper .expandable-btn:nth-of-type(1) {
  right: 25px;
}
.route-report-directory .io-wrapper .detail-wrapper .expandable-btn-wrapper .expandable-btn > div {
  display: flex;
  align-items: center;
  position: absolute;
  width: 73px;
  right: 0;
}
.route-report-directory .io-wrapper .detail-wrapper .expandable-btn-wrapper .expandable-btn .text {
  font-size: 11px;
  font-size: 1.1rem;
  color: #fff;
  font-weight: 500;
}
.route-report-directory .io-wrapper .detail-wrapper .expandable-btn-wrapper .expandable-btn .icon {
  margin-left: auto;
  width: 20px;
  height: 20px;
  transition: all 0.5s;
}
.route-report-directory .io-wrapper .detail-wrapper .expandable-btn-wrapper .expandable-btn .icon svg {
  display: block;
  margin: 0 auto;
  width: 10px;
}
.route-report-directory .io-wrapper .detail-wrapper .expandable-btn-wrapper .expandable-btn:hover {
  cursor: pointer;
  box-shadow: -1px 1px 4px 1px rgba(0, 0, 0, 0.1);
}
.route-report-directory .io-wrapper .detail-wrapper .expandable-btn-wrapper .expandable-btn:hover .icon {
  background: #b4e8f2;
}
.route-report-directory .io-wrapper .detail-wrapper .expandable-btn-wrapper .expandable-btn:hover .icon svg path {
  fill: #2e8b9d;
}
.route-report-directory .io-wrapper .detail-wrapper .tags-wrapper {
  padding: 15px 0 15px 0;
  border-bottom: solid 1px #d8d8d8;
}
.route-report-directory .io-wrapper .detail-wrapper .tags-wrapper h3 {
  display: flex;
  align-items: center;
}
.route-report-directory .io-wrapper .detail-wrapper .tags-wrapper h3 .icon {
  display: inline-block;
  width: 16px;
  height: 20px;
  background: url("/assets/insight/tags-icon.svg");
  margin: 0 5px 0 0;
}
.route-report-directory .io-wrapper .detail-wrapper .tags-wrapper .subheader {
  position: relative;
}
.route-report-directory .io-wrapper .detail-wrapper .tags-wrapper .subheader .ui-input .ui-field-container .grid-container {
  border-radius: 20px;
}
.route-report-directory .io-wrapper .detail-wrapper .tags-wrapper .expandable-btn-wrapper {
  position: absolute;
  height: 20px;
  top: 0;
  right: 0px;
}
.route-report-directory .io-wrapper .detail-wrapper .tags-wrapper .expandable-btn-wrapper .expandable-btn.delete {
  right: 0;
}
.route-report-directory .io-wrapper .detail-wrapper .tags-wrapper .expandable-btn-wrapper .expandable-btn.delete .icon svg {
  width: 10px;
  margin-top: 3px;
}
.route-report-directory .io-wrapper .detail-wrapper .tags-wrapper .expandable-btn-wrapper .expandable-btn.delete > div {
  width: 110px;
}
.route-report-directory .io-wrapper .detail-wrapper .tags-wrapper .expandable-btn-wrapper .expandable-btn:hover.delete {
  width: 115px;
}
.route-report-directory .io-wrapper .detail-wrapper .tags-wrapper .tags-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border-top: solid 1px #d8d8d8;
  margin-top: 15px;
  padding-top: 15px;
}
.route-report-directory .io-wrapper .detail-wrapper .tags-wrapper .tags-container .tag {
  color: #fff;
  border-radius: 12px;
  padding: 3px 8px 3px 8px;
  font-weight: bold;
  text-align: center;
  margin: 0 3px 3px 0;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.route-report-directory .io-wrapper .detail-wrapper .tags-wrapper .tags-container .tag.user {
  background: #4ac1a2;
  border: solid 1px #18b28b;
}
.route-report-directory .io-wrapper .detail-wrapper .tags-wrapper .tags-container .tag.innovu {
  background: #59a0d4;
  border: solid 1px #3088c9;
}
.route-report-directory .io-wrapper .detail-wrapper .tags-wrapper .tags-container .tag.locked.innovu {
  background: #678499;
  border: solid 1px #4b5460;
}
.route-report-directory .io-wrapper .detail-wrapper .tags-wrapper .tags-container .tag.locked.innovu .locked-icon {
  background: url(/assets/img/lens-icon-white.svg) no-repeat;
  width: 10px;
  height: 10px;
  background-size: contain;
  display: inline-block;
  margin-bottom: -1px;
}
.route-report-directory .io-wrapper .detail-wrapper .tags-wrapper .tags-container .tag:hover {
  cursor: pointer;
}
.route-report-directory .io-wrapper .detail-wrapper .tags-wrapper .tags-container .tag-wrapper {
  position: relative;
}
.route-report-directory .io-wrapper .detail-wrapper .tags-wrapper .tags-container .tag-wrapper .delete-icon {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background: url("/assets/insight/close-icon.svg") #fff;
  background-size: cover;
  position: absolute;
  top: 0px;
  right: 1px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s;
  box-shadow: -1px 1px 4px 1px rgba(0, 0, 0, 0.2);
}
.route-report-directory .io-wrapper .detail-wrapper .tags-wrapper .tags-container .tag-wrapper.item-selected:hover.locked .delete-icon.locked {
  opacity: 0;
}
.route-report-directory .io-wrapper .detail-wrapper .tags-wrapper .tags-container .tag-wrapper.item-selected:hover.locked.active .tag.innovu {
  background: #243b5f;
}
.route-report-directory .io-wrapper .detail-wrapper .tags-wrapper .tags-container .tag-wrapper.item-selected:hover.locked .tag.innovu.locked {
  background: #678499;
  border: solid 1px #4b5460;
  cursor: not-allowed;
}
.route-report-directory .io-wrapper .detail-wrapper .tags-wrapper .tags-container .tag-wrapper.item-selected:hover .delete-icon {
  opacity: 1;
  pointer-events: all;
}
.route-report-directory .io-wrapper .detail-wrapper .tags-wrapper .tags-container .tag-wrapper.item-selected:hover .tag.user,
.route-report-directory .io-wrapper .detail-wrapper .tags-wrapper .tags-container .tag-wrapper.item-selected:hover .tag.innovu {
  background: #842121;
  border: solid 1px #ed4651;
}
.route-report-directory .io-wrapper .detail-wrapper .tags-wrapper .tags-container .tag-wrapper.locked .locked-icon {
  background: url(/assets/img/lens-icon-white.svg) no-repeat;
  width: 10px;
  height: 10px;
  background-size: contain;
  display: inline-block;
  margin-bottom: -1px;
}
.route-report-directory .io-wrapper .detail-wrapper .tags-wrapper .tags-container .tag-wrapper.locked .tag.innovu {
  background: #678499;
  border: solid 1px #4b5460;
}
.route-report-directory .io-wrapper .detail-wrapper .tags-wrapper .tags-container .tag-wrapper.locked.active .tag {
  background: #243b5f;
}
.route-report-directory .io-wrapper .detail-wrapper .tags-wrapper .tag-input-container {
  position: relative;
}
.route-report-directory .io-wrapper .detail-wrapper .tags-wrapper .tt-dropdown-menu {
  background: #fff;
  padding: 8px 5px 5px 5px;
  z-index: 2;
  width: calc(100% - 30px);
  border: solid 1px #e6e6e6;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
  top: 26px;
  left: 10px;
  position: absolute;
  box-sizing: content-box;
  overflow: scroll;
  max-height: 85px;
}
.route-report-directory .io-wrapper .detail-wrapper .tags-wrapper .tt-dropdown-menu .tt-suggestions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.route-report-directory .io-wrapper .detail-wrapper .tags-wrapper .tt-dropdown-menu .tt-suggestions .tt-suggestion .tag {
  color: #fff;
  border-radius: 12px;
  padding: 3px 8px 3px 8px;
  font-weight: bold;
  font-size: 11px;
  font-size: 1.1rem;
  text-align: center;
  margin: 0 3px 3px 0;
}
.route-report-directory .io-wrapper .detail-wrapper .tags-wrapper .tt-dropdown-menu .tt-suggestions .tt-suggestion .tag:hover {
  cursor: pointer;
}
.route-report-directory .io-wrapper .detail-wrapper .tags-wrapper .tt-dropdown-menu .tt-suggestions .tt-suggestion .tag.user {
  background: #4ac1a2;
  border: solid 1px #3eb39f;
}
.route-report-directory .io-wrapper .detail-wrapper .tags-wrapper .tt-dropdown-menu .tt-suggestions .tt-suggestion .tag.innovu {
  background: #59a0d4;
  border: solid 1px #3088c9;
}
.route-report-directory .io-wrapper .detail-wrapper .tags-wrapper .tt-dropdown-menu .tt-suggestions .tt-suggestion .tag.innovu.admin {
  background: #678499;
  border: solid 1px #4b5460;
}
.route-report-directory .io-wrapper .detail-wrapper .tags-wrapper .tt-dropdown-menu .tt-suggestions .tt-suggestion .tag.innovu.admin .locked-icon {
  background: url(/assets/img/lens-icon-white.svg) no-repeat;
  width: 10px;
  height: 10px;
  background-size: contain;
  display: inline-block;
  margin-bottom: -1px;
}
.route-report-directory .io-wrapper .detail-wrapper .shares-wrapper {
  padding: 15px 0 15px 0;
  border-bottom: solid 1px #d8d8d8;
}
.route-report-directory .io-wrapper .detail-wrapper .shares-wrapper h3 {
  display: flex;
  align-items: center;
}
.route-report-directory .io-wrapper .detail-wrapper .shares-wrapper h3 .icon {
  display: inline-block;
  width: 16px;
  height: 20px;
  margin: 0 5px 0 0;
}
.route-report-directory .io-wrapper .detail-wrapper .shares-wrapper h3 .icon svg path {
  margin-top: 2px;
  fill: #2e8b9d;
}
.route-report-directory .io-wrapper .detail-wrapper .shares-wrapper .subheader {
  position: relative;
}
.route-report-directory .io-wrapper .detail-wrapper .shares-wrapper .expandable-btn-wrapper {
  position: absolute;
  height: 20px;
  top: 0;
  right: 0px;
}
.route-report-directory .io-wrapper .detail-wrapper .shares-wrapper .expandable-btn-wrapper.single-btn .expandable-btn:nth-of-type(1) {
  right: 0;
}
.route-report-directory .io-wrapper .detail-wrapper .shares-wrapper .expandable-btn-wrapper .expandable-btn.add .icon svg {
  margin-top: 6px;
}
.route-report-directory .io-wrapper .detail-wrapper .shares-wrapper .expandable-btn-wrapper .expandable-btn.add > div {
  width: 85px;
}
.route-report-directory .io-wrapper .detail-wrapper .shares-wrapper .expandable-btn-wrapper .expandable-btn.delete .icon svg {
  width: 10px;
  margin-top: 3px;
}
.route-report-directory .io-wrapper .detail-wrapper .shares-wrapper .expandable-btn-wrapper .expandable-btn.delete > div {
  width: 120px;
}
.route-report-directory .io-wrapper .detail-wrapper .shares-wrapper .expandable-btn-wrapper .expandable-btn:hover.add {
  width: 90px;
}
.route-report-directory .io-wrapper .detail-wrapper .shares-wrapper .expandable-btn-wrapper .expandable-btn:hover.delete {
  width: 125px;
}
.route-report-directory .io-wrapper .detail-wrapper .shares-wrapper .shares-container {
  border-top: solid 1px #d8d8d8;
  margin-top: 15px;
  padding-top: 15px;
  max-height: 320px;
  overflow-y: scroll;
}
.route-report-directory .io-wrapper .detail-wrapper .shares-wrapper .shares-container .share {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
  padding: 3px 10px 3px 10px;
  transition: all 0.5s;
}
.route-report-directory .io-wrapper .detail-wrapper .shares-wrapper .shares-container .share:hover {
  cursor: pointer;
  background: #e8e8e8;
  border-radius: 5px;
}
.route-report-directory .io-wrapper .detail-wrapper .shares-wrapper .shares-container .share .icon {
  border-radius: 100%;
  width: 25px;
  height: 25px;
  border: solid 1px #d6d6d6;
  margin-right: 10px;
}
.route-report-directory .io-wrapper .detail-wrapper .shares-wrapper .shares-container .share p {
  margin: 0;
  max-width: 170px;
}
.route-report-directory .io-wrapper .detail-wrapper .shares-wrapper .shares-container .share .user-name,
.route-report-directory .io-wrapper .detail-wrapper .shares-wrapper .shares-container .share .org-name {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 14px;
  color: #555555;
}
.route-report-directory .io-wrapper .detail-wrapper .shares-wrapper .shares-container .share .user-org-name {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 12px;
  color: #6b6b6b;
}
.route-report-directory .io-wrapper .detail-wrapper .shares-wrapper .shares-container .share.user .icon {
  background: url("/assets/insight/share-user-icon.svg") #fff no-repeat center;
  background-size: 17px;
}
.route-report-directory .io-wrapper .detail-wrapper .shares-wrapper .shares-container .share.org .icon {
  background: url("/assets/insight/org-icon.svg") #fff no-repeat center;
}
.route-report-directory .io-wrapper .detail-wrapper .shares-wrapper .shares-container .share .delete {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  background: #2e8b9d;
  margin-left: auto;
}
.route-report-directory .io-wrapper .detail-wrapper .shares-wrapper .shares-container .share .delete svg {
  width: 11px;
  margin: 0 auto;
  display: block;
  margin-top: 2px;
}
.route-report-directory .io-wrapper .detail-wrapper .collections-wrapper {
  padding: 15px 0 15px 0;
}
.route-report-directory .io-wrapper .detail-wrapper .collections-wrapper h3 {
  display: flex;
  align-items: center;
}
.route-report-directory .io-wrapper .detail-wrapper .collections-wrapper h3 .icon {
  display: inline-block;
  width: 16px;
  height: 20px;
  margin: 0 5px 0 0;
}
.route-report-directory .io-wrapper .detail-wrapper .collections-wrapper h3 .icon svg {
  margin-top: 4px;
}
.route-report-directory .io-wrapper .detail-wrapper .collections-wrapper .subheader {
  position: relative;
}
.route-report-directory .io-wrapper .detail-wrapper .collections-wrapper .ui-input .ui-field-container .grid-container {
  border-radius: 20px;
}
.route-report-directory .io-wrapper .detail-wrapper .collections-wrapper .expandable-btn-wrapper {
  position: absolute;
  height: 20px;
  top: 0;
  right: 0px;
}
.route-report-directory .io-wrapper .detail-wrapper .collections-wrapper .expandable-btn-wrapper .expandable-btn.delete {
  right: 0;
}
.route-report-directory .io-wrapper .detail-wrapper .collections-wrapper .expandable-btn-wrapper .expandable-btn.delete .icon svg {
  width: 10px;
  margin-top: 3px;
}
.route-report-directory .io-wrapper .detail-wrapper .collections-wrapper .expandable-btn-wrapper .expandable-btn.delete > div {
  width: 108px;
}
.route-report-directory .io-wrapper .detail-wrapper .collections-wrapper .expandable-btn-wrapper .expandable-btn:hover.delete {
  width: 112px;
}
.route-report-directory .io-wrapper .detail-wrapper .collections-wrapper .collections-container {
  border-top: solid 1px #d8d8d8;
  margin-top: 15px;
  padding-top: 15px;
}
.route-report-directory .io-wrapper .detail-wrapper .collections-wrapper .collections-container .collection {
  display: flex;
  align-items: center;
  color: #fff;
  border-radius: 12px;
  padding: 3px 8px 3px 8px;
  text-align: center;
  margin: 0 3px 3px 0;
}
.route-report-directory .io-wrapper .detail-wrapper .collections-wrapper .collections-container .collection:hover {
  cursor: pointer;
  background: #e8e8e8;
  border-radius: 5px;
}
.route-report-directory .io-wrapper .detail-wrapper .collections-wrapper .collections-container .collection .icon {
  border-radius: 100%;
  width: 25px;
  height: 25px;
  border: solid 1px #d6d6d6;
  margin-right: 10px;
  background: url("/assets/insight/collection-icon.svg") #fff no-repeat center;
  background-size: 17px;
}
.route-report-directory .io-wrapper .detail-wrapper .collections-wrapper .collections-container .collection p {
  margin: 0;
}
.route-report-directory .io-wrapper .detail-wrapper .collections-wrapper .collections-container .collection .collection-name {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 14px;
  color: #555555;
  text-align: left;
  max-width: 160px;
}
.route-report-directory .io-wrapper .detail-wrapper .collections-wrapper .collections-container .collection .delete {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  background: #2e8b9d;
  margin-left: auto;
  transition: all 0.5s;
}
.route-report-directory .io-wrapper .detail-wrapper .collections-wrapper .collections-container .collection .delete svg {
  width: 11px;
  margin: 0 auto;
  display: block;
  margin-top: 2px;
}
.route-report-directory .io-wrapper .detail-wrapper .collections-wrapper .collections-container .collection .delete:hover {
  background: #b13e3e;
}
.route-report-directory .io-wrapper .detail-wrapper .collections-wrapper .tt-dropdown-menu {
  background: #fff;
  padding: 8px 5px 5px 5px;
  z-index: 2;
  width: calc(100% - 30px);
  border: solid 1px #e6e6e6;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
  top: 56px;
  left: 10px;
  position: absolute;
  box-sizing: content-box;
  overflow: scroll;
  max-height: 85px;
}
.route-report-directory .io-wrapper .detail-wrapper .collections-wrapper .tt-dropdown-menu .tt-suggestions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.route-report-directory .io-wrapper .detail-wrapper .collections-wrapper .tt-dropdown-menu .tt-suggestions .tt-suggestion .tag {
  color: #fff;
  font-weight: bold;
  font-size: 1.1rem;
  text-align: center;
  margin: 0 3px 3px 0;
  border-radius: 3px;
  background: #58a2b1;
  border: solid 1px #1b7080;
  padding: 2px 5px 2px 5px;
}
.route-report-directory .io-wrapper .detail-wrapper .collections-wrapper .tt-dropdown-menu .tt-suggestions .tt-suggestion .tag:hover {
  cursor: pointer;
}
.route-report-directory .io-wrapper .detail-wrapper .collections-wrapper .tt-dropdown-menu .tt-suggestions .tt-suggestion .tag span {
  background: url(/assets/insight/collection-icon-white.svg) center no-repeat;
  background-size: cover;
  display: inline-block;
  margin-right: 5px;
  width: 11px;
  height: 9px;
}
.route-report-directory .io-wrapper .tags-categories-wrapper {
  position: relative;
  height: 100%;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .tab {
  background: #2e8b9d;
  height: 250px;
  width: 35px;
  position: absolute;
  right: -35px;
  top: calc(50% - 125px);
  border-radius: 0 30px 30px 0;
  z-index: 5;
  box-shadow: 4px 0px 4px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.5s;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .tab:hover {
  cursor: pointer;
  box-shadow: 4px 0px 4px -3px rgba(0, 0, 0, 0.4);
}
.route-report-directory .io-wrapper .tags-categories-wrapper .tab .tab-content {
  transform: rotate(90deg);
  position: relative;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .tab .tab-content > div {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  position: absolute;
  width: 200px;
  top: -7px;
  left: 50px;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .tab .tab-content .arrow svg {
  display: block;
  width: 11px;
  height: 11px;
  transform: rotate(90deg);
  transition: all 0.5s;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .tab .tab-content .arrow svg path {
  fill: #fff;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .tab .tab-content .title {
  color: #fff;
  font-weight: 300;
  font-size: 20px;
  font-size: 2rem;
  transition: all 0.5s;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .tab.active {
  background: #fff;
  right: -23px;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .tab.active .title {
  color: #555555;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .tab.active .arrow svg {
  transform: rotate(-90deg);
}
.route-report-directory .io-wrapper .tags-categories-wrapper .tab.active .arrow svg path {
  fill: #555555;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content {
  padding: 20px 15px 20px 15px;
  overflow-y: scroll;
  height: 100%;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content::-webkit-scrollbar {
  display: none;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .ui-input .ui-field-container .grid-container {
  border-radius: 23px;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .filter-every-any-tag {
  margin-bottom: 5px;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .filter-every-any-tag .label {
  color: #555555;
  font-size: 10px;
  font-size: 1rem;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .filter-every-any-tag .ix-select.standard {
  border-radius: 23px;
  font-size: 10px;
  font-size: 1rem;
  height: 20px;
  background: white url("/assets/img/sort-icon-teal.svg") no-repeat calc(100% - 7px) center;
  background-size: 8px;
  padding: 0 19px 0 7px;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .search-field-wrapper {
  display: flex;
  align-items: center;
  margin: 15px 0 15px 0;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .search-field-wrapper .ui-input {
  width: 100%;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .search-field-wrapper .icon {
  display: block;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .search-field-wrapper.collections .icon {
  width: 18px;
  height: 15px;
  margin-right: 5px;
  background: url("/assets/insight/collection-icon.svg") no-repeat;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .search-field-wrapper.tags .icon {
  width: 19px;
  height: 21px;
  margin-right: 7px;
  background: url("/assets/insight/tags-icon.svg") no-repeat;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper {
  border-radius: 7px;
  padding: 10px;
  position: relative;
  margin-bottom: 20px;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .no-cat-message {
  font-size: 10px;
  font-size: 1rem;
  color: #555555;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper.moving-tag .category .cat-subheader {
  position: relative;
  transition: all 0.5s;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper.moving-tag .category .cat-subheader .move-tag-mask {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper.moving-tag .category .cat-subheader:hover {
  cursor: move;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper.moving-tag .category .cat-subheader:hover .title {
  color: #fff;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper.moving-tag.user .category .cat-subheader:hover {
  background: #118668;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper.moving-tag.innovu .category .cat-subheader:hover {
  background: #275a7f;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .subheader {
  display: flex;
  align-items: center;
  padding: 0 0 10px 0;
  margin-bottom: 20px;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .subheader .info-tooltip {
  display: block;
  width: 10px;
  height: 10px;
  background: url("/assets/info-tooltip-icon.svg");
  background-size: cover;
  margin-right: 5px;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .subheader .info-tooltip:hover {
  cursor: pointer;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .subheader .info-tooltip[data-field-tooltip]:hover:after {
  z-index: 15;
  content: attr(data-field-tooltip);
  top: 15px;
  left: 0;
  width: 140px;
  display: block;
  text-align: left;
  border-radius: 5px;
  border: solid 1px #cecece;
  position: relative;
  color: #555555;
  padding: 4px 3px 4px 3px;
  background: #fff;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2);
  font-family: sans-serif;
  font-size: 10px;
  font-size: 1rem;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .subheader .btn {
  width: 17px;
  height: 17px;
  border: solid 1px #2e8b9d;
  border-radius: 4px;
  margin-left: auto;
  transition: 0.4s;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .subheader .btn svg {
  transition: 0.4s;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .subheader .btn.edit.editing {
  background: #2e8b9d;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2);
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .subheader .btn.edit.editing svg path {
  fill: #fff;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .subheader .btn:hover {
  cursor: pointer;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .subheader .btn:hover.add,
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .subheader .btn:hover.edit {
  background: #2e8b9d;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .subheader .btn:hover.add svg path,
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .subheader .btn:hover.edit svg path {
  fill: #fff;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .subheader .btn.add svg,
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .subheader .btn.edit svg {
  width: 11px;
  margin: 0 auto;
  margin-top: 3px;
  display: block;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .subheader .btn.add svg path,
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .subheader .btn.edit svg path {
  fill: #2e8b9d;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .subheader .btn-container {
  margin-left: auto;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .subheader .btn-container .btn {
  margin-left: 0;
  display: inline-block;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .subheader .title {
  margin: 0;
  color: #555555;
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: 300;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .add-tag-indicator {
  display: flex;
  align-items: center;
  color: #666;
  margin: 5px 0 10px 0;
  font-size: 11px;
  font-size: 1.1rem;
  border-bottom: solid 1px #d6d6d6;
  border-top: solid 1px #d6d6d6;
  padding: 5px 0 5px 0;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .add-tag-indicator p {
  margin: 0;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .add-tag-indicator .icon {
  background: url(/assets/insight/tags-icon.svg) no-repeat;
  width: 20px;
  display: block;
  height: 20px;
  margin-right: 7px;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .add-new-category {
  display: none;
  margin-bottom: 20px;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .add-new-category.active {
  display: block;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .add-new-category .create-new-input-wrapper {
  position: relative;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .add-new-category .grid-container {
  border-radius: 4px;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .add-new-category .btn-wrapper {
  position: absolute;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .add-new-category .btn-wrapper.horz {
  bottom: -9px;
  right: -2px;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .add-new-category .btn-wrapper.horz .btn {
  display: inline-block;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .add-new-category .btn-wrapper .btn {
  height: 17px;
  width: 17px;
  border-radius: 5px;
  transition: 0.4s;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .add-new-category .btn-wrapper .btn:hover {
  cursor: pointer;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .add-new-category .btn-wrapper .btn:hover.add {
  background: #106170;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .add-new-category .btn-wrapper .btn:hover.cancel {
  background: #595959;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .add-new-category .btn-wrapper .btn.cancel {
  background: #7e7e7e;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .add-new-category .btn-wrapper .btn.cancel svg {
  margin: 0 auto;
  display: block;
  margin-top: 3px;
  width: 11px;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .add-new-category .btn-wrapper .btn.add {
  background: #2e8b9d;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .add-new-category .btn-wrapper .btn.add svg {
  margin: 0 auto;
  display: block;
  margin-top: 4px;
  width: 9px;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .move-tag-wrapper {
  position: relative;
  margin-bottom: 20px;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .move-tag-wrapper .btn {
  position: absolute;
  top: 0;
  right: 0;
  height: 17px;
  width: 17px;
  border-radius: 5px;
  transition: 0.4s;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .move-tag-wrapper .btn:hover {
  cursor: pointer;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .move-tag-wrapper .btn:hover.cancel {
  background: #595959;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .move-tag-wrapper .btn.cancel {
  background: #7e7e7e;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .move-tag-wrapper .btn.cancel svg {
  margin: 0 auto;
  display: block;
  margin-top: 3px;
  width: 11px;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .move-tag-wrapper .icon {
  margin: 0 auto;
  height: 30px;
  width: 30px;
  margin-top: 10px;
  margin-bottom: 5px;
  border-radius: 100%;
  border: solid 1px #e6e6e6;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .move-tag-wrapper .icon svg {
  width: 17px;
  margin: 0 auto;
  margin-top: 7px;
  display: block;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .move-tag-wrapper .icon svg path {
  fill: #2e8b9d;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .move-tag-wrapper p {
  text-align: center;
  border-bottom: solid 1px #e6e6e6;
  width: 80%;
  display: block;
  margin: 0 auto;
  padding-bottom: 10px;
  color: #666666;
  font-size: 12px;
  font-size: 1.2rem;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .category {
  background: #f8f8f8;
  border-radius: 5px;
  margin-bottom: 20px;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1);
  position: relative;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .category.menu-open {
  z-index: 10;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .category .cat-subheader {
  display: flex;
  align-items: center;
  padding: 5px;
  border-radius: 5px;
  position: relative;
  z-index: 5;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .category .cat-subheader .title {
  margin: 0;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 300;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .category .cat-subheader .edit-category-field {
  width: 100%;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .category .cat-subheader .indicator-container {
  margin-left: auto;
  display: flex;
  align-items: center;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .category .cat-subheader .ellipses {
  width: 15px;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .category .cat-subheader .ellipses div {
  width: 3px;
  height: 3px;
  border-radius: 100%;
  margin: 0 auto;
  margin-bottom: 1px;
  transition: all 0.5s;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .category .cat-subheader .arrow {
  width: 10px;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .category .cat-subheader .arrow svg {
  transition: all 0.3s;
  display: block;
  transform: rotate(90deg);
  height: 11px;
  width: 6px;
  margin: 0 auto;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .category.editing {
  padding: 0px 0px 25px 0px;
  z-index: 10;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .category.editing .done-editing {
  display: block;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .category.editing .edit-content {
  display: block;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .category .io-action-menu-wrapper.active {
  display: block;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .category.open .arrow svg {
  transform: rotate(-90deg);
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .category.open .tag-container {
  display: flex;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .category.open .cat-subheader {
  border-radius: 5px 5px 0 0;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .category.collections {
  background: none;
  box-shadow: none;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .category.collections .tag-container {
  display: flex;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .category .tag-container {
  display: none;
  align-items: center;
  flex-wrap: wrap;
  padding: 5px;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .category .tag-container .no-tags {
  font-size: 10px;
  font-size: 1rem;
  color: #666;
  margin: 0;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .category .tag-container .tag {
  margin: 0 3px 3px 0;
  color: #fff;
  padding: 2px 8px 2px 8px;
  border-radius: 12px;
  transition: all 0.4s;
  font-size: 11px;
  font-size: 1.1rem;
  font-weight: 700;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .category .tag-container .tag:hover {
  cursor: pointer;
  box-shadow: -1px 1px 4px 1px rgba(0, 0, 0, 0.2);
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .category .tag-container .tag.collection {
  border-radius: 3px;
  background: #58a2b1;
  border: solid 1px #1b7080;
  padding: 2px 5px 2px 5px;
  text-overflow: ellipsis;
  overflow: hidden;
  max-width: 206px;
  white-space: nowrap;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .category .tag-container .tag.collection span {
  background: url("/assets/insight/collection-icon-white.svg") center no-repeat;
  background-size: cover;
  display: inline-block;
  margin-right: 5px;
  width: 11px;
  height: 9px;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .category .tag-container .tag.collection.global span {
  background: url("/assets/insight/global-icon.svg") center no-repeat;
  background-size: cover;
  height: 12px;
  margin-bottom: -2px;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .category .tag-container .tag.collection.shared span {
  background: url("/assets/insight/shared-icon.svg") center no-repeat;
  background-size: cover;
  height: 11px;
  margin-bottom: -1px;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .category .tag-container .tag.collection.other-user span {
  background: url("/assets/insight/owned-icon.svg") center no-repeat;
  background-size: cover;
  height: 12px;
  margin-bottom: -2px;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .category .tag-container .tag.collection.disabled {
  cursor: not-allowed;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .category .tag-container .tag.user {
  background: #44bfa0;
  border: solid 1px #15b28a;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .category .tag-container .tag.innovu {
  background: #58a1d4;
  border: solid 1px #3087c9;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .category .tag-container .tag.innovu.locked {
  background: #678499;
  border: solid 1px #4b5460;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .category .tag-container .tag.innovu.locked .locked-icon {
  background: url(/assets/img/lens-icon-white.svg) no-repeat;
  width: 10px;
  height: 10px;
  background-size: contain;
  display: inline-block;
  margin-bottom: -1px;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .category .tag-container .tag-wrapper {
  position: relative;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .category .tag-container .tag-wrapper.active {
  z-index: 1;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .category .tag-container .tag-wrapper.active .tag {
  box-shadow: -1px 1px 4px 1px rgba(0, 0, 0, 0.2);
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .category .tag-container .tag-wrapper.active .tag.user {
  background: #118668;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .category .tag-container .tag-wrapper.active .tag.innovu {
  background: #275a7f;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .category .tag-container .tag-wrapper.active .tag.collection {
  border: solid 1px #126d7e;
  background: #106170;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .category .tag-container .tag-wrapper.active .tag input {
  background: transparent;
  border: none;
  color: #fff;
  font-weight: bold;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .category .tag-container .tag-wrapper.active .io-action-menu-wrapper.active {
  display: block;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .category .tag-container .tag-wrapper.menu-open {
  z-index: 2;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper.collection {
  border: solid 1px #2e8b9d;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper.collection .subheader {
  margin-bottom: 5px;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper.collection .edit-content {
  padding: 0;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper.collection .edit-content .edit-subheader {
  margin-top: 10px;
  padding: 5px 20px 10px 20px;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper.user {
  border: solid 1px #3eb39f;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper.user .subheader {
  border-bottom: solid 1px #3eb39f;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper.user .category .cat-subheader {
  background: #e6efed;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper.user .category .cat-subheader .title {
  color: #3eb39f;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper.user .category .cat-subheader .ellipses div {
  background: #3eb39f;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper.user .category .cat-subheader .ellipses.active div {
  background: #0d644e;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper.user .category .cat-subheader .ellipses:hover {
  cursor: pointer;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper.user .category .cat-subheader .ellipses:hover div {
  background: #0d644e;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper.user .category .cat-subheader .arrow svg path {
  transition: all 0.5s;
  fill: #3eb39f;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper.user .category .cat-subheader .arrow:hover {
  cursor: pointer;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper.user .category .cat-subheader .arrow:hover svg path {
  fill: #0d644e;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper.user .io-action-menu-wrapper.tag {
  background: #118668;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper.user .io-action-menu-wrapper.tag .count {
  background: #0d644e;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper.user .io-action-menu-wrapper.tag li:hover {
  background: #3eb39f;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper.user .io-action-menu-wrapper.category {
  background: #118668;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper.user .io-action-menu-wrapper.category .count {
  background: #0d644e;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper.user .io-action-menu-wrapper.category li:hover {
  background: #18b28b;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper.innovu {
  border: solid 1px #4892c7;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper.innovu .subheader {
  border-bottom: solid 1px #4892c7;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper.innovu .cat-subheader {
  background: #dfeaf0;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper.innovu .cat-subheader .title {
  color: #4892c7;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper.innovu .cat-subheader .ellipses div {
  background: #4892c7;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper.innovu .cat-subheader .ellipses.active div {
  background: #2c6188;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper.innovu .cat-subheader .ellipses:hover {
  cursor: pointer;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper.innovu .cat-subheader .ellipses:hover div {
  background: #2c6188;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper.innovu .cat-subheader .arrow svg path {
  transition: all 0.5s;
  fill: #4892c7;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper.innovu .cat-subheader .arrow:hover {
  cursor: pointer;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper.innovu .cat-subheader .arrow:hover svg path {
  fill: #2c6188;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper.innovu .io-action-menu-wrapper.tag {
  background: #275a7f;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper.innovu .io-action-menu-wrapper.tag .count {
  background: #2c6188;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper.innovu .io-action-menu-wrapper.tag li:hover {
  background: #4892c7;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper.innovu .io-action-menu-wrapper.category {
  background: #275a7f;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper.innovu .io-action-menu-wrapper.category .count {
  background: #2c6188;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper.innovu .io-action-menu-wrapper.category li:hover {
  background: #3088c9;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .edit-content {
  padding: 10px 0 10px 0;
  display: none;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .edit-content .create-new-input-wrapper {
  position: relative;
  height: 30px;
  width: 100%;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .edit-content .add-tags-input-wrapper {
  position: relative;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .edit-content .ui-input .ui-field-container .grid-container {
  border-radius: 4px;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .edit-content textarea {
  border-radius: 4px;
  min-width: 85%;
  max-width: 85%;
  margin: 0px auto;
  height: 137px;
  max-height: 60px;
  min-height: 60px;
  width: 278px;
  padding-right: 10px;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .edit-content .btn-wrapper {
  position: absolute;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .edit-content .btn-wrapper.horz {
  bottom: -7px;
  right: 0;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .edit-content .btn-wrapper.horz .btn {
  display: inline-block;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .edit-content .btn-wrapper.vert {
  top: 11px;
  right: 2px;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .edit-content .btn-wrapper.vert .btn {
  display: block;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .edit-content .btn-wrapper.vert .btn.cancel svg {
  position: relative;
  top: 3px;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .edit-content .btn-wrapper.vert .btn.add svg {
  position: relative;
  top: 4px;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .edit-content .btn-wrapper .btn {
  height: 17px;
  width: 17px;
  border-radius: 5px;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .edit-content .btn-wrapper .btn:hover {
  cursor: pointer;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .edit-content .btn-wrapper .btn.cancel {
  background: #7e7e7e;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .edit-content .btn-wrapper .btn.cancel svg {
  margin: 0 auto;
  display: block;
  margin-top: 3px;
  width: 11px;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .edit-content .btn-wrapper .btn.add {
  background: #2e8b9d;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .edit-content .btn-wrapper .btn.add svg {
  margin: 0 auto;
  display: block;
  margin-top: 4px;
  width: 9px;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .edit-content .edit-subheader {
  border-top: solid 1px #c6c1c1;
  margin: 0 auto;
  margin-top: 20px;
  padding: 5px 20px 0px 20px;
  display: table;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .edit-content h3 {
  color: #555555;
  display: flex;
  align-items: center;
  font-size: 11px;
  font-size: 1.1rem;
  font-weight: 300;
  margin: 0 auto;
  text-align: center;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .edit-content h3 .icon {
  margin-right: 5px;
  display: block;
  width: 12px;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .edit-content h3 .icon svg path {
  fill: #555555;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .done-editing {
  position: absolute;
  bottom: -12px;
  background: #2e8b9d;
  border-radius: 5px;
  color: #fff;
  width: 180px;
  left: 50%;
  margin-left: -90px;
  height: 23px;
  display: none;
  font-weight: 300;
  transition: all 0.5s;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .done-editing:hover {
  cursor: pointer;
  background: #106170;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .done-editing > div {
  position: relative;
  padding: 4px 0 0 43px;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .done-editing > div .icon {
  position: absolute;
  text-align: center;
  right: 0;
  top: 0;
  width: 23px;
  height: 23px;
  background: #b4e8f2;
  border-radius: 0 5px 5px 0;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .done-editing > div .icon svg {
  width: 16px;
  margin-top: 4px;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .done-editing > div .icon svg path {
  fill: #2e8b9d;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper div.show-all-res {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper div.show-all-res > button {
  background: #2e8b9d;
  border-radius: 5px;
  color: #fff;
  border: none;
  font-weight: 300;
  height: 23px;
  width: 180px;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper div.show-all-res > button:hover {
  cursor: pointer;
  background: #106170;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .io-action-menu-wrapper {
  border-radius: 5px;
  padding: 3px;
  color: #fff;
  position: absolute;
  box-shadow: -1px 1px 4px 1px rgba(0, 0, 0, 0.2);
  width: 80px;
  display: none;
  z-index: 10;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .io-action-menu-wrapper.collection {
  background: #106170;
  z-index: -1;
  top: 10px;
  margin-right: 20px;
  right: -80px;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .io-action-menu-wrapper.collection.adjust-menu-position {
  right: 3px;
  top: 11px;
  border-radius: 12px 0 12px 12px;
  padding: 10px 3px 3px 3px;
  margin-right: 0;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .io-action-menu-wrapper.collection.adjust-menu-position .count {
  position: relative;
  top: 4px;
  margin-bottom: 3px;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .io-action-menu-wrapper.collection .count {
  background: #064b57;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .io-action-menu-wrapper.collection li:hover {
  background: #3795a8;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .io-action-menu-wrapper.tag {
  z-index: -1;
  top: 10px;
  margin-right: 20px;
  right: -80px;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .io-action-menu-wrapper.tag.adjust-menu-position {
  right: 0px;
  top: 11px;
  border-radius: 12px 0 12px 12px;
  padding: 10px 3px 3px 3px;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .io-action-menu-wrapper.tag.adjust-menu-position .count {
  position: relative;
  top: 4px;
  margin-bottom: 3px;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .io-action-menu-wrapper.category {
  right: 9px;
  margin-right: 10px;
  top: 20px;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .io-action-menu-wrapper .count {
  display: table;
  padding: 3px;
  border-radius: 4px;
  font-size: 9px;
  line-height: 9px;
  margin-left: auto;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .io-action-menu-wrapper ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .io-action-menu-wrapper ul li {
  font-size: 10px;
  font-size: 1rem;
  line-height: 10px;
  border-radius: 2px;
  padding: 3px;
  display: flex;
  align-items: center;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .io-action-menu-wrapper ul li:hover {
  cursor: pointer;
}
.route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .io-action-menu-wrapper ul svg {
  margin-right: 7px;
  width: 12px;
}
.route-report-directory .bulk-collection-wrapper strong {
  font-size: 12px;
  color: #555555;
  margin: 0;
}
.route-report-directory .bulk-collection-wrapper p {
  font-size: 12px;
  color: #555555;
  line-height: 13px;
  margin: 10px 0 10px 0;
}
.route-report-directory .bulk-collection-wrapper .bulk-collection-container {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
.route-report-directory .bulk-collection-wrapper .bulk-collection-container input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.route-report-directory .bulk-collection-wrapper .bulk-collection-container .btn,
.route-report-directory .bulk-collection-wrapper .bulk-collection-container .upload-user-shares-label {
  position: relative;
  padding-top: 4px;
  border-radius: 5px;
  color: #fff !important;
  height: 19px;
  display: inline-block;
  font-weight: 300;
  font-size: 13px !important;
  background: #2e8b9d;
  transition: all 0.4s;
  width: 125px;
  padding-left: 10px;
}
.route-report-directory .bulk-collection-wrapper .bulk-collection-container .btn:hover,
.route-report-directory .bulk-collection-wrapper .bulk-collection-container .upload-user-shares-label:hover {
  background: #106170;
  cursor: pointer;
}
.route-report-directory .bulk-collection-wrapper .bulk-collection-container .btn .icon,
.route-report-directory .bulk-collection-wrapper .bulk-collection-container .upload-user-shares-label .icon {
  position: absolute;
  right: 0;
  top: 0;
  width: 23px;
  height: 23px;
  border-radius: 0 5px 5px 0;
  text-align: center;
  background: #b4e8f2;
}
.route-report-directory .bulk-collection-wrapper .bulk-collection-container .btn .icon svg,
.route-report-directory .bulk-collection-wrapper .bulk-collection-container .upload-user-shares-label .icon svg {
  width: 15px;
  margin-top: 4px;
}
.route-report-directory .bulk-collection-wrapper .bulk-collection-container .btn.download-users,
.route-report-directory .bulk-collection-wrapper .bulk-collection-container .upload-user-shares-label.download-users {
  margin-right: 5px;
}
.route-report-directory .bulk-collection-wrapper .bulk-collection-container .upload-user-shares-label {
  margin: 0 !important;
  padding: 2px 0px 2px 10px;
  width: 108px;
}
.route-report-directory .io-modal {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 999;
}
.route-report-directory .io-modal .modal {
  position: relative;
  border-radius: 8px;
  background: #fff;
  padding: 25px;
  box-shadow: -1px 1px 4px 1px rgba(0, 0, 0, 0.2);
  margin: 0 auto;
  top: calc(50% - 277px);
}
.route-report-directory .io-modal .modal .loading-wrapper {
  position: absolute;
  height: calc(100% - 40px);
  top: 35px;
  z-index: 10;
  backdrop-filter: blur(4px);
}
.route-report-directory .io-modal .modal .loading-wrapper .loading-indicator {
  top: calc(50% - 115px);
}
.route-report-directory .io-modal .modal .loading-wrapper .loading-indicator .spinner {
  margin: 12px auto 0px auto;
}
.route-report-directory .io-modal .modal .loading-wrapper .loading-indicator h1 {
  margin: 0;
  margin-bottom: 30px;
}
.route-report-directory .io-modal .modal.create {
  width: 850px;
}
.route-report-directory .io-modal .modal.create .loading-wrapper {
  top: 0;
}
.route-report-directory .io-modal .modal.create .loading-wrapper .loading-indicator {
  top: calc(50% - 65px);
}
.route-report-directory .io-modal .modal.create .loading-wrapper .loading-indicator h1 {
  margin: 0 auto;
}
.route-report-directory .io-modal .modal.share,
.route-report-directory .io-modal .modal.bulkShare,
.route-report-directory .io-modal .modal.collectionShare,
.route-report-directory .io-modal .modal.collectionOwner,
.route-report-directory .io-modal .modal.io-modal-delete-share,
.route-report-directory .io-modal .modal.deleteAllTags,
.route-report-directory .io-modal .modal.deleteTag,
.route-report-directory .io-modal .modal.io-modal-bulk-delete,
.route-report-directory .io-modal .modal.io-modal-delete-category {
  width: 500px;
}
.route-report-directory .io-modal .modal.share .content-wrapper,
.route-report-directory .io-modal .modal.bulkShare .content-wrapper,
.route-report-directory .io-modal .modal.collectionShare .content-wrapper,
.route-report-directory .io-modal .modal.collectionOwner .content-wrapper,
.route-report-directory .io-modal .modal.io-modal-delete-share .content-wrapper,
.route-report-directory .io-modal .modal.deleteAllTags .content-wrapper,
.route-report-directory .io-modal .modal.deleteTag .content-wrapper,
.route-report-directory .io-modal .modal.io-modal-bulk-delete .content-wrapper,
.route-report-directory .io-modal .modal.io-modal-delete-category .content-wrapper {
  width: 100%;
}
.route-report-directory .io-modal .modal.io-modal-remove-collection {
  width: 600px;
}
.route-report-directory .io-modal .modal.delete-collection {
  width: 850px;
}
.route-report-directory .io-modal .modal.delete-collection h1 {
  border-bottom: solid 1px #ed4651;
}
.route-report-directory .io-modal .modal.delete-collection .delete-collection-title {
  margin: 20px 0 10px 0;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 300;
}
.route-report-directory .io-modal .modal.delete-collection .delete-collection-title .icon svg {
  width: 18px;
  margin: 0 5px -2px 0;
}
.route-report-directory .io-modal .modal.edit,
.route-report-directory .io-modal .modal.unshare,
.route-report-directory .io-modal .modal.clone,
.route-report-directory .io-modal .modal.delete,
.route-report-directory .io-modal .modal.promoteToGlobal,
.route-report-directory .io-modal .modal.create-collection {
  width: 365px;
}
.route-report-directory .io-modal .modal.edit-collection {
  width: 510px;
}
.route-report-directory .io-modal .modal .close-btn {
  width: 25px;
  height: 25px;
  border-radius: 100%;
  background: url("/assets/insight/close-icon.svg");
  position: absolute;
  top: 5px;
  right: 5px;
}
.route-report-directory .io-modal .modal .close-btn:hover {
  cursor: pointer;
}
.route-report-directory .io-modal .content-wrapper {
  width: 100%;
}
.route-report-directory .io-modal .content-wrapper h1 {
  font-size: 26px;
  font-size: 2.6rem;
  font-weight: 300;
  color: #555555;
  border-bottom: solid 1px #d8d8d8;
  display: table;
  margin: 0 auto;
  padding: 0 0 15px;
  margin-top: 15px;
}
.route-report-directory .io-modal .content-wrapper h2 {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
  color: #555555;
  display: table;
  margin: 0 auto;
  padding: 0 0 15px;
  margin-top: 15px;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper {
  display: flex;
  align-items: center;
  padding-top: 25px;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper.delete-collection {
  padding: 13px;
  border: solid 1px #d8d8d8;
  border-radius: 8px;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper.delete-collection.no-shares .col.delete-collection .form-container {
  height: 230px;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper.delete-collection .no-items {
  background: #fafafa;
  border: solid 1px #d6d6d6;
  border-radius: 5px;
  padding-left: 10px;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper.delete-collection .no-items p {
  color: #555555;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .divider {
  height: 310px;
  width: 1px;
  background: #d8d8d8;
  position: absolute;
  top: calc(50% - 160px);
  left: calc(50% - 1px);
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col {
  position: relative;
  padding-bottom: 5px;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col form .btn-container button.btn {
  text-align: left;
  border: none;
  padding-bottom: 4px;
  height: 23px;
  vertical-align: top;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col form .btn-container button.btn.save {
  width: 100px;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col form .btn-container button.btn.save-edit {
  width: 90px;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col.dashboard .mask .icon svg {
  width: 62px;
  margin: 0 auto;
  margin-top: calc(50% - 26px);
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col.dashboard .form-container {
  width: 325px;
  height: 385px;
  overflow-y: scroll;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col.insight {
  margin-left: auto;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col.insight .form-container {
  width: 325px;
  height: 385px;
  overflow-y: scroll;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col.insight .mask .icon svg {
  width: 47px;
  margin: 0 auto;
  margin-top: calc(50% - 32px);
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col.delete-collection.items .form-container {
  width: 430px;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col.delete-collection .form-container {
  width: 340px;
  height: 385px;
  overflow-y: scroll;
  border: none;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col.delete-collection .form-container .user-shares-title {
  margin-top: 10px;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col.delete-collection .form-container .result-container:nth-last-of-type(1n) {
  margin-top: 10px;
  margin-bottom: 0;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col.delete-collection .form-container .result-container .result {
  pointer-events: none;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col.delete-collection .form-container .item-container {
  max-height: 500px;
  margin-top: 0px;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col.delete-collection .form-container .item-container .io-item .title {
  width: 330px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col.delete-collection .form-container .item-container .io-item .info-container {
  width: 374px;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col.delete-collection .form-container .item-container .io-item .info-container .user-info .name {
  display: inline-block;
  text-overflow: ellipsis;
  max-width: 104px;
  white-space: nowrap;
  overflow: hidden;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col.delete-collection .form-container .item-container .io-item .info-container .user-info .org {
  position: relative;
  bottom: 2px;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col.delete-collection .form-container .item-container .io-item .info-container .user-updated-container .content-info .model {
  width: 90px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col.delete-collection .form-container .item-container .io-item .info-container .user-updated-container .content-info .last-updated {
  position: relative;
  bottom: 1px;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col.delete-collection .form-container .item-container .io-item:hover {
  pointer-events: none;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col.delete .form-container {
  height: auto;
  max-height: 385px;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col.share,
.route-report-directory .io-modal .content-wrapper .col-wrapper .col.edit,
.route-report-directory .io-modal .content-wrapper .col-wrapper .col.bulk-delete {
  width: 100%;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .mask {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 10;
  top: 0;
  left: 0;
  backdrop-filter: blur(3px);
  transition: all 0.5s;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .mask.active {
  opacity: 0;
  pointer-events: none;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .mask:hover {
  cursor: pointer;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .mask:hover .content-container .icon {
  background: #253c5f;
  border: solid 1px white;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .mask:hover .content-container .icon svg path {
  fill: white;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .mask:hover .content-container .title {
  border-bottom: solid 1px #253c5f;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .mask .content-container {
  display: table;
  margin: 0 auto;
  position: relative;
  top: calc(50% - 100px);
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .mask .content-container .icon {
  width: 110px;
  height: 110px;
  border: solid 1px #253c5f;
  background: #fff;
  border-radius: 100%;
  position: relative;
  margin: 0 auto;
  margin-bottom: 10px;
  box-shadow: 0px 2px 4px 2px rgba(0, 0, 0, 0.2);
  transition: all 0.5s;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .mask .content-container .icon svg {
  transition: all 0.5s;
  display: block;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .mask .content-container .icon svg path {
  fill: #253c5f;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .mask .content-container .title {
  display: table;
  margin: 0 auto;
  transition: all 0.5s;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 300;
  color: #253c5f;
  border-bottom: solid 1px #d8d8d8;
  padding-bottom: 10px;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container {
  padding: 13px;
  border: solid 1px #d8d8d8;
  border-radius: 8px;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container .item-container {
  margin: 15px 0 10px 0;
  max-height: 200px;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container .item-container::-webkit-scrollbar {
  display: none;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container .item-container.bulk-delete {
  border: solid 1px #d8d8d8;
  padding: 10px 15px 0 15px;
  border-radius: 8px;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container .item-container .io-item {
  display: flex;
  position: relative;
  align-items: normal;
  background: #fff;
  border-radius: 5px;
  padding: 7px 7px 7px 10px;
  margin: 0 0 3px 0;
  height: 45px;
  border: solid 1px #d6d6d6;
  transition: all 0.5s;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container .item-container .io-item:hover {
  cursor: pointer;
  border: 1px solid #ed4651;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container .item-container .io-item:hover .type-icon svg path {
  fill: #ed4651;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container .item-container .io-item:hover .delete-icon {
  opacity: 1;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container .item-container .io-item .delete-icon {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  background: url("/assets/insight/close-icon.svg") no-repeat;
  background-size: cover;
  transition: all 0.5s;
  opacity: 0;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container .item-container .io-item .type-icon {
  margin-right: 12px;
  width: 20px;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container .item-container .io-item .type-icon svg {
  margin: 0 auto;
  display: block;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container .item-container .io-item .type-icon svg path {
  transition: all 0.5s;
  fill: #253c5f;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container .item-container .io-item .type-icon.insight {
  margin-top: 13px;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container .item-container .io-item .type-icon.insight svg {
  height: 20px;
  width: 14px;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container .item-container .io-item .type-icon.dashboard {
  margin-top: 15px;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container .item-container .io-item .type-icon.dashboard svg {
  height: 16px;
  width: 19px;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container .item-container .io-item .type-icon.isf {
  margin-top: 11px;
  width: 20px;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container .item-container .io-item .type-icon:hover {
  cursor: pointer;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container .item-container .io-item .title {
  font-size: 12px;
  font-size: 1.2rem;
  color: #555555;
  margin-right: 5%;
  width: 430px;
  transition: all 0.4s;
  display: block;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container .item-container .io-item .title.ellipsis {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container .item-container .io-item .title:hover {
  color: #253c5f;
  cursor: pointer;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container .item-container .io-item .info-container {
  position: absolute;
  top: 29px;
  width: 426px;
  left: 42px;
  display: flex;
  align-items: center;
  border-top: solid 1px #d8d8d8;
  padding-top: 5px;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container .item-container .io-item .owner-fav-container {
  display: flex;
  align-items: center;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container .item-container .io-item .owner-fav-container .owner-status {
  display: flex;
  align-items: center;
  flex: 1;
  margin-right: 30px;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container .item-container .io-item .owner-fav-container .owner-status .status-icon {
  border-radius: 100%;
  height: 20px;
  width: 20px;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container .item-container .io-item .owner-fav-container .owner-status .status-type {
  font-size: 11px;
  font-size: 1.1rem;
  font-weight: 500;
  margin-left: 3px;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container .item-container .io-item .owner-fav-container .owner-status.owned .status-type {
  color: #3eb39f;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container .item-container .io-item .owner-fav-container .owner-status.owned .status-icon {
  background: url("/assets/insight/owned-icon.svg") #3eb39f no-repeat center;
  background-size: 11px;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container .item-container .io-item .owner-fav-container .owner-status.shared .status-type {
  color: #ffb327;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container .item-container .io-item .owner-fav-container .owner-status.shared .status-icon {
  background: url("/assets/insight/shared-icon.svg") #ffb327 no-repeat center;
  background-size: 11px;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container .item-container .io-item .owner-fav-container .owner-status.global .status-type {
  color: #4892c7;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container .item-container .io-item .owner-fav-container .owner-status.global .status-icon {
  background: url("/assets/insight/global-icon.svg") #4892c7 no-repeat center;
  background-size: 13px;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container .item-container .io-item .user-updated-container {
  display: flex;
  align-items: center;
  width: 360px;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container .item-container .io-item .user-updated-container .user-info {
  padding-top: 5px;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container .item-container .io-item .user-updated-container .user-info .name {
  font-size: 12px;
  font-size: 1.2rem;
  color: #555555;
  font-weight: 300;
  line-height: 14px;
  display: inline-block;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container .item-container .io-item .user-updated-container .user-info .org {
  font-size: 10px;
  font-size: 1rem;
  color: #6b6b6b;
  font-weight: 300;
  line-height: 10px;
  display: inline-block;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container .item-container .io-item .user-updated-container .content-info {
  margin-top: 5px;
  text-align: right;
  margin-left: auto;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container .item-container .io-item .user-updated-container .content-info .model {
  font-size: 12px;
  font-size: 1.2rem;
  color: #555555;
  font-weight: 300;
  line-height: 12px;
  display: inline-block;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container .item-container .io-item .user-updated-container .content-info .last-updated {
  font-size: 10px;
  font-size: 1rem;
  color: #6b6b6b;
  font-weight: 300;
  line-height: 10px;
  display: inline-block;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container .tag-input-container {
  position: relative;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container .tt-dropdown-menu {
  background: #fff;
  padding: 8px 5px 5px 5px;
  z-index: 2;
  width: calc(100% - 10px);
  border: solid 1px #e6e6e6;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
  top: 24px;
  position: absolute;
  box-sizing: content-box;
  overflow: scroll;
  max-height: 85px;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container .tt-dropdown-menu .tt-suggestions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container .tt-dropdown-menu .tt-suggestions .tt-suggestion .tag {
  color: #fff;
  border-radius: 12px;
  padding: 3px 8px 3px 8px;
  font-weight: bold;
  font-size: 11px;
  font-size: 1.1rem;
  text-align: center;
  margin: 0 3px 3px 0;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container .tt-dropdown-menu .tt-suggestions .tt-suggestion .tag:hover {
  cursor: pointer;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container .tt-dropdown-menu .tt-suggestions .tt-suggestion .tag.user {
  background: #4ac1a2;
  border: solid 1px #3eb39f;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container .tt-dropdown-menu .tt-suggestions .tt-suggestion .tag.innovu {
  background: #59a0d4;
  border: solid 1px #3088c9;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container .tt-dropdown-menu .tt-suggestions .tt-suggestion .tag.innovu.admin {
  background: #678499;
  border: solid 1px #4b5460;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container .tt-dropdown-menu .tt-suggestions .tt-suggestion .tag.innovu.admin .locked-icon {
  background: url(/assets/img/lens-icon-white.svg) no-repeat;
  width: 10px;
  height: 10px;
  background-size: contain;
  display: inline-block;
  margin-bottom: -1px;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container label {
  font-size: 16px;
  font-size: 1.6rem;
  color: #555555;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  margin-top: 10px;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container label:first-of-type {
  margin-top: 0;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container label span {
  display: inline-block;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container label.dashboard-title span {
  width: 16px;
  margin-right: 10px;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container label.dashboard-title span svg path {
  fill: #2e8b9d;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container label.insight-title span {
  width: 12px;
  margin-right: 10px;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container label.insight-title span svg path {
  fill: #2e8b9d;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container label.collection-title span {
  width: 16px;
  margin-right: 6px;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container label.collection-title span svg path {
  fill: #2e8b9d;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container label.description-title span {
  width: 13px;
  margin-right: 5px;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container label.tag-title span {
  width: 16px;
  margin-right: 5px;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container label.share-target-title {
  padding-bottom: 20px;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container label.share-target-title span {
  margin-right: 10px;
  margin-bottom: -2px;
  width: 16px;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container label.share-target-title.insight span {
  width: 12px;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container label.share-target-title.insight span svg path {
  fill: #2e8b9d;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container label.share-target-title.dashboard span {
  width: 16px;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container label.share-target-title.dashboard span svg path {
  fill: #2e8b9d;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container label.user-shares-title {
  margin-bottom: 0;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container label.user-shares-title span {
  width: 17px;
  margin-right: 5px;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container label.clone-title {
  font-size: 14px;
  font-size: 1.4rem;
  margin-bottom: 15px;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container label.share-delete-warning {
  color: #666;
  font-size: 12px;
  font-size: 1.2rem;
  margin-bottom: 15px;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container label.bulk-delete-target-title {
  padding-bottom: 5px;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container label.bulk-delete-target-title span {
  margin-right: 10px;
  margin-bottom: -2px;
  width: 16px;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container label.bulk-delete-target-title.insight span {
  width: 12px;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container label.bulk-delete-target-title.insight span svg path {
  fill: #2e8b9d;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container label.bulk-delete-target-title.dashboard span {
  width: 16px;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container label.bulk-delete-target-title.dashboard span svg path {
  fill: #2e8b9d;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container .collection-type > p {
  text-align: center;
  font-size: 12px;
  font-size: 1.2rem;
  color: #555555;
  margin: 10px 0 15px 0;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container .collection-type .ui-input {
  display: table;
  margin: 0 auto;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container .collection-type .ui-input .ui-label {
  font-size: 14px;
  font-size: 1.4rem;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container .subhead {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container .subhead .delete-title {
  font-size: 18px;
  font-size: 1.8rem;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container .subhead .delete-prompt {
  font-size: 16px;
  font-size: 1.6rem;
  text-align: center;
  margin: 0 0 15px 0;
  color: #555555;
  font-weight: 400;
  line-height: 18px;
  width: 100%;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container .subhead .search .search-list {
  position: absolute;
  background: white;
  max-height: 200px;
  overflow: scroll;
  width: 215px;
  right: 5px;
  border: solid 1px #d6d6d6;
  border-radius: 5px;
  z-index: 1;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container .subhead .search .search-list .search-item {
  display: flex;
  align-items: center;
  margin: 10px;
  cursor: pointer;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container .subhead .search .search-list .search-item .name {
  font-size: 14px;
  font-size: 1.4rem;
  color: #555555;
  line-height: 14px;
  margin-right: 5px;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container .subhead .search .search-list .search-item .org {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 12px;
  color: #6b6b6b;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container .subhead .ui-input {
  margin-left: auto;
  width: 200px;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container .subhead .ui-input .ui-field-container .grid-container {
  border-radius: 20px;
  background: #fff;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container .subhead .ui-input .ui-field-container .grid-container .ui-input-field {
  background: url("/assets/insight/search-icon.svg") #fff no-repeat 100%;
  background-size: 14px;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container .result-container {
  margin-top: 5px;
  background: #fafafa;
  border: solid 1px #d6d6d6;
  border-radius: 5px;
  padding: 10px 0 10px 0;
  width: 100%;
  max-height: 150px;
  overflow: scroll;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container .result-container:nth-of-type(1n) {
  margin-bottom: 20px;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container .result-container .result {
  display: flex;
  align-items: center;
  padding: 3px 10px 3px 10px;
  transition: all 0.5s;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container .result-container .result:hover {
  background: #e8e8e8;
  cursor: pointer;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container .result-container .result:hover .delete {
  background: #ed4651;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container .result-container .result:hover.user .icon svg path {
  stroke: #ed4651;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container .result-container .result:hover.org .icon svg path {
  fill: #ed4651;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container .result-container .no-results {
  margin: 10px 0 10px 15px;
  color: #555555;
  font-size: 12px;
  font-size: 1.2rem;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container .result-container .icon {
  width: 25px;
  height: 25px;
  background: #fff;
  border: solid 1px #d6d6d6;
  border-radius: 100%;
  margin-right: 7px;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container .result-container .icon svg {
  transition: all 0.5s;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container .result-container.user .icon svg,
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container .result-container.org .icon svg {
  width: 17px;
  display: block;
  margin: 0 auto;
  margin-top: 4px;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container .result-container .name {
  font-size: 14px;
  font-size: 1.4rem;
  color: #555555;
  line-height: 14px;
  margin-right: 5px;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container .result-container .org {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 12px;
  color: #6b6b6b;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container .result-container .delete {
  background: #2e8b9d;
  width: 25px;
  height: 25px;
  border-radius: 5px;
  margin-left: auto;
  transition: all 0.5s;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container .result-container .delete svg {
  width: 13px;
  padding-top: 3px;
  margin: 0 auto;
  display: block;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container .result-container.collection {
  padding: 10px 0 10px 30px;
  box-sizing: border-box;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container .result-container.collection.user-prompt {
  padding: 10px 0 0px 15px;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container .result-container.collection .share-target-title.insight span {
  width: 16px;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container .ui-input textarea {
  background: #fafafa;
  max-height: 130px;
  min-height: 130px;
  border-radius: 5px;
  padding: 5px;
  max-width: calc(100% - 10px);
  min-width: calc(100% - 10px);
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container .ui-input textarea.delete {
  min-height: auto;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container .ui-input .ui-field-container .grid-container {
  background: #fafafa;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container .ui-input .ui-field-container .grid-container .ui-input-field {
  background: #fafafa;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container .ui-input .ui-field-container .grid-container .ui-input-field.tags {
  background: url("/assets/insight/search-icon.svg") #fafafa no-repeat 100%;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container .model-select {
  width: calc(100% - -2px);
  margin-top: 5px;
  background: #fafafa url(/assets/img/sort-icon-teal.svg) no-repeat calc(100% - 10px) center;
  background-size: 10px auto;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container .tag-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 290px;
  margin: 5px 0px;
  min-height: 55px;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container .tag-container.user-prompt {
  width: 100%;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container .tag-container.user-prompt .tag:hover {
  cursor: auto;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container .tag-container .tag {
  color: #fff;
  border-radius: 12px;
  padding: 3px 8px 3px 8px;
  font-weight: bold;
  text-align: center;
  margin: 0 3px 3px 0;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container .tag-container .tag:hover {
  cursor: pointer;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container .tag-container .tag.user {
  background: #4ac1a2;
  border: solid 1px #3eb39f;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container .tag-container .tag.innovu {
  background: #59a0d4;
  border: solid 1px #3088c9;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container .tag-container .tag.innovu.locked {
  background: #678499;
  border: solid 1px #4b5460;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container .tag-container .tag.innovu.locked .locked-icon {
  background: url(/assets/img/lens-icon-white.svg) no-repeat;
  width: 10px;
  height: 10px;
  background-size: contain;
  display: inline-block;
  margin-bottom: -1px;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .form-container .tag-container.new .tag:hover {
  cursor: default;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .btn-container {
  display: table;
  margin: 0 auto;
  padding-top: 10px;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .btn-container.manage-shares .btn.save {
  width: 70px;
  padding-left: 20px;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .btn-container .btn {
  position: relative;
  padding-top: 4px;
  border-radius: 5px;
  color: #fff;
  height: 19px;
  display: inline-block;
  font-weight: 300;
  background: #2e8b9d;
  transition: all 0.4s;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .btn-container .btn:hover {
  cursor: pointer;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .btn-container .btn:hover.save,
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .btn-container .btn:hover.clone,
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .btn-container .btn:hover.save-edit {
  background: #106170;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .btn-container .btn:hover.cancel {
  background: #595959;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .btn-container .btn:hover.delete {
  background: #842121;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .btn-container .btn.disabled {
  pointer-events: none;
  opacity: 0.5;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .btn-container .btn.save {
  width: 90px;
  padding-left: 10px;
  margin-right: 5px;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .btn-container .btn.save .icon svg {
  width: 15px;
  margin-top: 4px;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .btn-container .btn.clone {
  width: 70px;
  padding-left: 20px;
  margin-right: 5px;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .btn-container .btn.clone .icon svg {
  width: 13px;
  margin-top: 4px;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .btn-container .btn.save-edit {
  width: 70px;
  padding-left: 20px;
  margin-right: 5px;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .btn-container .btn.save-edit .icon svg {
  width: 15px;
  margin-top: 4px;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .btn-container .btn.cancel {
  background: #878787;
  width: 80px;
  padding-left: 20px;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .btn-container .btn.cancel .icon {
  background: #d6d6d6;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .btn-container .btn.cancel .icon svg {
  width: 17px;
  margin-top: 3px;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .btn-container .btn.cancel .icon svg path {
  fill: #878787;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .btn-container .btn.delete,
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .btn-container .btn.remove {
  background: #b13e3e;
  width: 70px;
  padding-left: 20px;
  margin-right: 5px;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .btn-container .btn.delete.unshare,
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .btn-container .btn.remove.unshare {
  width: 80px;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .btn-container .btn.delete .icon,
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .btn-container .btn.remove .icon {
  background: #e86464;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .btn-container .btn.delete .icon svg,
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .btn-container .btn.remove .icon svg {
  width: 11px;
  margin-top: 3px;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .btn-container .btn.delete .icon svg path,
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .btn-container .btn.remove .icon svg path {
  fill: #fff;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .btn-container .btn.remove {
  width: 82px;
  padding-left: 18px;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .btn-container .btn .icon {
  position: absolute;
  right: 0;
  top: 0;
  width: 23px;
  height: 23px;
  border-radius: 0 5px 5px 0;
  text-align: center;
  background: #b4e8f2;
}
.route-report-directory .io-modal .content-wrapper .col-wrapper .col .btn-container .btn .icon svg path {
  fill: #2e8b9d;
}
.route-report-directory .io-modal .content-wrapper .collection-delete-text {
  width: 500px;
  text-align: center;
  margin: 0 auto;
  margin-top: 10px;
  color: #555555;
}
.route-report-directory .io-modal .content-wrapper .manage-collection-delete {
  display: table;
  margin: 0 auto;
  padding-top: 10px;
}
.route-report-directory .io-modal .content-wrapper .manage-collection-delete .btn {
  position: relative;
  padding-top: 4px;
  border-radius: 5px;
  color: #fff;
  height: 19px;
  display: inline-block;
  font-weight: 300;
  background: #2e8b9d;
  transition: all 0.4s;
}
.route-report-directory .io-modal .content-wrapper .manage-collection-delete .btn:hover {
  cursor: pointer;
}
.route-report-directory .io-modal .content-wrapper .manage-collection-delete .btn:hover.cancel {
  background: #595959;
}
.route-report-directory .io-modal .content-wrapper .manage-collection-delete .btn:hover.delete {
  background: #842121;
}
.route-report-directory .io-modal .content-wrapper .manage-collection-delete .btn.cancel {
  background: #878787;
  width: 80px;
  padding-left: 20px;
}
.route-report-directory .io-modal .content-wrapper .manage-collection-delete .btn.cancel .icon {
  background: #d6d6d6;
}
.route-report-directory .io-modal .content-wrapper .manage-collection-delete .btn.cancel .icon svg {
  width: 17px;
  margin-top: 3px;
}
.route-report-directory .io-modal .content-wrapper .manage-collection-delete .btn.cancel .icon svg path {
  fill: #878787;
}
.route-report-directory .io-modal .content-wrapper .manage-collection-delete .btn.delete {
  background: #b13e3e;
  width: 70px;
  padding-left: 20px;
  margin-right: 5px;
}
.route-report-directory .io-modal .content-wrapper .manage-collection-delete .btn.delete .icon {
  background: #e86464;
}
.route-report-directory .io-modal .content-wrapper .manage-collection-delete .btn.delete .icon svg {
  width: 11px;
  margin-top: 3px;
}
.route-report-directory .io-modal .content-wrapper .manage-collection-delete .btn.delete .icon svg path {
  fill: #fff;
}
.route-report-directory .io-modal .content-wrapper .manage-collection-delete .btn .icon {
  position: absolute;
  right: 0;
  top: 0;
  width: 23px;
  height: 23px;
  border-radius: 0 5px 5px 0;
  text-align: center;
  background: #b4e8f2;
}
.route-report-directory .io-modal .content-wrapper .manage-collection-delete .btn .icon svg path {
  fill: #2e8b9d;
}
.route-report-directory .ui-input .ui-field-container .grid-container .ui-input-field.search {
  background: url("/assets/insight/search-icon.svg") no-repeat 100%;
  padding-right: 20px;
  background-size: 14px;
}
@media only screen and (max-width: 1680px) {
  .route-report-directory .io-wrapper .tags-categories-wrapper .content .category-wrapper .subheader .title {
    font-size: 15px;
    font-size: 1.5rem;
  }
  .route-report-directory .io-wrapper .detail-wrapper .date-container .updated-date {
    text-align: right;
  }
  .route-report-directory .io-wrapper .center {
    left: 50%;
    margin-left: -585px;
    width: 1170px;
  }
  .route-report-directory .io-wrapper .center.leftOpen {
    margin-left: -430px;
    width: 1115px;
  }
  .route-report-directory .io-wrapper .center.leftOpen .io-content.grid .io-item {
    width: 239px;
  }
  .route-report-directory .io-wrapper .center.leftOpen .io-content.grid .io-item:nth-of-type(4n) {
    margin: 0 20px 20px 0;
  }
  .route-report-directory .io-wrapper .center.leftOpen .io-content.grid .io-item .tag-container {
    width: 239px;
  }
  .route-report-directory .io-wrapper .center.leftOpen .io-content.list .io-item .tag-container {
    width: 236px;
    right: 50px;
  }
  .route-report-directory .io-wrapper .center.rightOpen {
    margin-left: -670px;
    width: 1115px;
  }
  .route-report-directory .io-wrapper .center.rightOpen .io-content.grid .io-item {
    width: 239px;
  }
  .route-report-directory .io-wrapper .center.rightOpen .io-content.grid .io-item:nth-of-type(4n) {
    margin: 0 20px 20px 0;
  }
  .route-report-directory .io-wrapper .center.rightOpen .io-content.grid .io-item .tag-container {
    width: 239px;
  }
  .route-report-directory .io-wrapper .center.rightOpen .io-content.list .io-item .tag-container {
    width: 236px;
    right: 50px;
  }
  .route-report-directory .io-wrapper .center.allOpen {
    margin-left: -430px;
    width: 860px;
  }
  .route-report-directory .io-wrapper .center.allOpen .io-content.grid .io-item {
    margin: 0 14px 20px 0;
  }
  .route-report-directory .io-wrapper .center.allOpen .io-content.grid .io-item:nth-of-type(3n) {
    margin: 0 0 20px 0;
  }
  .route-report-directory .io-wrapper .center.allOpen .io-content.list .io-item .tag-container {
    right: 73px;
  }
  .route-report-directory .io-wrapper .right {
    right: -250px;
    width: 250px;
  }
  .route-report-directory .io-wrapper .right .detail-wrapper .shares-wrapper .shares-container .share p {
    max-width: 140px;
  }
  .route-report-directory .io-wrapper .right .detail-wrapper .collections-wrapper .collections-container .collection .collection-name {
    max-width: 140px;
  }
  .route-report-directory .io-wrapper .left {
    left: -250px;
    width: 250px;
  }
  .route-report-directory .io-wrapper .left .tags-categories-wrapper .content .category-wrapper.collection {
    padding: 5px;
  }
  .route-report-directory .io-wrapper .left .tags-categories-wrapper .content .category-wrapper.collection .category .tag-container .tag.collection {
    font-size: 10px;
    font-size: 1rem;
    text-overflow: ellipsis;
    overflow: hidden;
    max-width: 186px;
    white-space: nowrap;
  }
  .route-report-directory .io-wrapper .left .tags-categories-wrapper .content .category-wrapper.collection .category .tag-container .tag.collection span {
    margin-right: 3px;
  }
}
@media only screen and (max-width: 1450px) {
  .route-report-directory .io-wrapper .ui-content-header .controls .ui-input .ui-label.checkbox {
    grid-gap: 10px;
  }
  .route-report-directory .io-wrapper .ui-content-header .controls .ui-input .ui-label.checkbox .label-text {
    font-size: 14px;
    font-size: 1.4rem;
  }
  .route-report-directory .io-wrapper .ui-content-header .controls .result-count {
    font-size: 16px;
    font-size: 1.6rem;
  }
  .route-report-directory .io-wrapper .center {
    width: 90%;
    min-width: 540px;
    margin-left: calc((90% / 2) * -1);
  }
  .route-report-directory .io-wrapper .center .io-content.list .io-item .title > div {
    position: relative;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    min-height: 19px;
  }
  .route-report-directory .io-wrapper .center.leftOpen {
    width: calc(96% - (250px + 35px));
    margin-left: calc((50% - (250px + 35px + 20px)) * -1);
  }
  .route-report-directory .io-wrapper .center.leftOpen .io-content.list .io-item .tag-container {
    right: -15px;
  }
  .route-report-directory .io-wrapper .center.leftOpen .io-content.list .io-item .tag-container .view-tags-btn {
    display: block;
  }
  .route-report-directory .io-wrapper .center.leftOpen .io-content.list .io-item .tag-container .tag-inner-container {
    display: none;
  }
  .route-report-directory .io-wrapper .center.rightOpen {
    width: calc(96% - 250px - 35px);
    margin-left: calc((50% - (35px + 20px)) * -1);
  }
  .route-report-directory .io-wrapper .center.rightOpen .io-content.list .io-item .tag-container {
    right: -15px;
  }
  .route-report-directory .io-wrapper .center.rightOpen .io-content.list .io-item .tag-container .view-tags-btn {
    display: block;
  }
  .route-report-directory .io-wrapper .center.rightOpen .io-content.list .io-item .tag-container .tag-inner-container {
    display: none;
  }
  .route-report-directory .io-wrapper .center.allOpen {
    width: calc(94% - (250px + 250px));
    margin-left: calc((50% - (250px + 35px)) * -1);
  }
  .route-report-directory .io-wrapper .center.allOpen .io-header .filters .label .full-label {
    display: none;
  }
  .route-report-directory .io-wrapper .center.allOpen .io-content.grid .io-item:nth-of-type(3n) {
    margin: 0 14px 20px 0;
  }
  .route-report-directory .io-wrapper .center.allOpen .io-content .tag-container .tag-inner-container {
    display: none;
  }
  .route-report-directory .io-wrapper .io-header .main-header {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  .route-report-directory .io-wrapper .io-header .main-header h1 {
    width: 100%;
    text-align: left;
  }
  .route-report-directory .io-wrapper .io-header .main-header .controls {
    width: 100%;
    margin-left: initial;
    align-items: center;
    justify-content: space-between;
  }
  .route-report-directory .io-wrapper .io-header .filters.active {
    top: 118px;
  }
  .route-report-directory .io-wrapper .io-header .filters .label {
    font-size: 14px;
    font-size: 1.4rem;
  }
  .route-report-directory .io-wrapper .io-header .filters .label .info-tooltip {
    right: -12px;
    width: 8px;
    height: 8px;
  }
  .route-report-directory .io-wrapper .io-header .filters .sort {
    flex: 1;
  }
  .route-report-directory .io-wrapper .io-header .filters .sort select.standard {
    border-radius: 20px;
    height: 27px;
    width: 100%;
    font-size: 14px;
    padding-left: 15px;
    background: #fff;
  }
  .route-report-directory .io-wrapper .io-header .filters .button-container {
    display: flex;
    align-items: center;
    margin: 0 auto;
  }
  .route-report-directory .io-wrapper .io-header .filters .button-container .btn {
    width: 30px;
    height: 27px;
    border-radius: 3px;
    margin: 0px 2px 0px 2px;
    opacity: 0.5;
  }
  .route-report-directory .io-wrapper .io-header .filters .button-container .btn:hover {
    cursor: pointer;
  }
  .route-report-directory .io-wrapper .io-header .filters .button-container .btn.active {
    opacity: 1;
  }
  .route-report-directory .io-wrapper .io-header .filters .button-container svg {
    display: block;
    margin: 0 auto;
    margin-top: 4px;
  }
  .route-report-directory .io-wrapper .io-header .filters .owner-status {
    flex: 1;
  }
  .route-report-directory .io-wrapper .io-header .filters .owner-status .button-container {
    width: 102px;
  }
  .route-report-directory .io-wrapper .io-header .filters .owner-status .button-container label {
    position: relative;
  }
  .route-report-directory .io-wrapper .io-header .filters .owner-status .button-container label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }
  .route-report-directory .io-wrapper .io-header .filters .owner-status .button-container .btn {
    background: #767676;
  }
  .route-report-directory .io-wrapper .io-header .filters .owner-status .button-container .btn.shared svg {
    width: 18px;
  }
  .route-report-directory .io-wrapper .io-header .filters .owner-status .button-container .btn.owned svg,
  .route-report-directory .io-wrapper .io-header .filters .owner-status .button-container .btn.owned-by-other svg,
  .route-report-directory .io-wrapper .io-header .filters .owner-status .button-container .btn.global svg {
    width: 15px;
  }
  .route-report-directory .io-wrapper .io-header .filters .owner-status .button-container .btn.checked {
    opacity: 1;
  }
  .route-report-directory .io-wrapper .io-header .filters .owner-status .button-container .btn.checked.owned {
    background: #3eb39f;
    box-shadow: #3eb39f 0px 0px 2px;
  }
  .route-report-directory .io-wrapper .io-header .filters .owner-status .button-container .btn.checked.owned-by-other {
    background: #ffb327;
    box-shadow: #ffb327 0px 0px 2px;
  }
  .route-report-directory .io-wrapper .io-header .filters .owner-status .button-container .btn.checked.shared {
    background: #ffb327;
    box-shadow: #ffb327 0px 0px 2px;
  }
  .route-report-directory .io-wrapper .io-header .filters .owner-status .button-container .btn.checked.global {
    background: #4892c7;
    box-shadow: #4892c7 0px 0px 2px;
  }
  .route-report-directory .io-wrapper .io-header .filters .shares {
    flex: 1;
  }
  .route-report-directory .io-wrapper .io-header .filters .shares .ui-toggle-switch {
    max-width: 75px;
    margin: 0 auto;
  }
  .route-report-directory .io-wrapper .io-header .filters .shares .ui-toggle-switch .inset-text {
    font-size: 13px;
    font-size: 1.3rem;
    right: 17px;
  }
  .route-report-directory .io-wrapper .io-header .filters .shares .ui-toggle-switch label {
    width: 75px;
  }
  .route-report-directory .io-wrapper .io-header .filters .content-type {
    flex: 1;
  }
  .route-report-directory .io-wrapper .io-header .filters .content-type .button-container {
    width: 102px;
  }
  .route-report-directory .io-wrapper .io-header .filters .content-type .button-container label {
    position: relative;
  }
  .route-report-directory .io-wrapper .io-header .filters .content-type .button-container label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }
  .route-report-directory .io-wrapper .io-header .filters .content-type .button-container .btn {
    background: #767676;
  }
  .route-report-directory .io-wrapper .io-header .filters .content-type .button-container .btn.checked {
    opacity: 1;
    background: #2e8b9d;
    box-shadow: #2e8b9d 0px 0px 2px;
  }
  .route-report-directory .io-wrapper .io-header .filters .content-type .button-container .btn.shared svg {
    width: 18px;
  }
  .route-report-directory .io-wrapper .io-header .filters .content-type .button-container .btn.insight svg {
    width: 13px;
  }
  .route-report-directory .io-wrapper .io-header .filters .content-type .button-container .btn.dashboard svg {
    width: 20px;
    margin-top: 5px;
  }
  .route-report-directory .io-wrapper .io-header .filters .content-type .button-container .btn.isf svg {
    width: 17px;
  }
  .route-report-directory .io-wrapper .io-header .filters .page-style {
    flex: 1;
  }
  .route-report-directory .io-wrapper .io-header .filters .page-style .label .info-tooltip[data-field-tooltip]:hover:after {
    left: auto;
    right: 155px;
  }
  .route-report-directory .io-wrapper .io-header .filters .page-style .button-container {
    width: 67px;
  }
  .route-report-directory .io-wrapper .io-header .filters .page-style .button-container svg {
    margin-top: 5px;
  }
  .route-report-directory .io-wrapper .io-header .filters .page-style .button-container svg path {
    fill: #9b9b9c;
  }
  .route-report-directory .io-wrapper .io-header .filters .page-style .button-container .btn {
    opacity: 1;
    transition: all 0.5s;
    border: solid 1px #9b9b9c;
  }
  .route-report-directory .io-wrapper .io-header .filters .page-style .button-container .btn.active {
    border: solid 1px #2e8b9d;
    background: #2e8b9d;
    box-shadow: #2e8b9d 0px 0px 2px;
  }
  .route-report-directory .io-wrapper .io-header .filters .page-style .button-container .btn.active svg path {
    fill: #fff;
  }
  .route-report-directory .io-wrapper .io-content.list .io-item {
    align-items: normal;
  }
  .route-report-directory .io-wrapper .io-content.list .io-item .navigation-click-area {
    height: 35px;
  }
  .route-report-directory .io-wrapper .io-content.list .io-item .navigation-click-area:hover ~ .info-container {
    border-top: solid 1px #253c5f;
  }
  .route-report-directory .io-wrapper .io-content.list .io-item .title {
    height: 22px;
  }
  .route-report-directory .io-wrapper .io-content.list .io-item .title .border {
    display: none;
  }
  .route-report-directory .io-wrapper .io-content.list .io-item .title.hover-active ~ .info-container {
    border-top: solid 1px #253c5f;
  }
  .route-report-directory .io-wrapper .io-content.list .io-item .type-icon.insight,
  .route-report-directory .io-wrapper .io-content.list .io-item .type-icon.isf {
    margin-top: 9px;
  }
  .route-report-directory .io-wrapper .io-content.list .io-item .type-icon.dashboard {
    margin-top: 13px;
  }
  .route-report-directory .io-wrapper .io-content.list .io-item .tertiary-info-container {
    margin-top: 12px;
  }
  .route-report-directory .io-wrapper .io-content.list .io-item .info-container {
    position: absolute;
    top: 32px;
    width: 415px;
    left: 62px;
    display: flex;
    align-items: center;
    border-top: solid 1px #d8d8d8;
    transition: all 0.4s;
  }
  .route-report-directory .io-wrapper .io-content.list .io-item .info-container.no-user-name {
    padding-top: 5px;
  }
  .route-report-directory .io-wrapper .io-content.list .io-item .info-container .owner-fav-container {
    border-bottom: none;
    padding-bottom: 0;
  }
  .route-report-directory .io-wrapper .io-content.list .io-item .info-container .owner-fav-container .owner-status {
    margin-right: 30px;
  }
  .route-report-directory .io-wrapper .io-content.list .io-item .info-container .owner-fav-container .favorite-container {
    margin-right: 30px;
    margin-left: 15px;
    height: 17px;
  }
  .route-report-directory .io-wrapper .io-content.list .io-item .tag-container {
    right: 150px;
    width: 240px;
  }
}
@media only screen and (max-width: 1395px) {
  .route-report-directory .io-wrapper .io-content.grid .io-item:nth-of-type(4n) {
    margin: 0 20px 20px 0;
  }
}
@media only screen and (max-width: 1160px) {
  .route-report-directory .io-wrapper .ui-content-header .controls .selected-count {
    font-size: 14px;
    font-size: 1.4rem;
  }
  .route-report-directory .io-wrapper .ui-content-header .controls .selected-count + .result-count {
    right: 3px;
    top: 70px;
    position: absolute;
  }
  .route-report-directory .io-wrapper .ui-content-header .controls .result-count {
    font-size: 14px;
    font-size: 1.4rem;
  }
  .route-report-directory .io-wrapper .center .io-header .filters .label .full-label {
    display: none;
  }
  .route-report-directory .io-wrapper .center .io-content.list .io-item .tag-container {
    right: -15px;
  }
  .route-report-directory .io-wrapper .center .io-content.list .io-item .tag-container .view-tags-btn {
    display: block;
  }
  .route-report-directory .io-wrapper .center .io-content.list .io-item .tag-container .tag-inner-container {
    display: none;
  }
  .route-report-directory .io-wrapper .center.leftOpen .io-content.list .io-item .tag-container {
    right: -15px;
  }
  .route-report-directory .io-wrapper .center.leftOpen .io-content.list .io-item .tag-container .view-tags-btn {
    display: block;
  }
  .route-report-directory .io-wrapper .center.leftOpen .io-content.list .io-item .tag-container .tag-inner-container {
    display: none;
  }
  .route-report-directory .io-wrapper .center.rightOpen .io-content.list .io-item .tag-container {
    right: -15px;
  }
  .route-report-directory .io-wrapper .center.rightOpen .io-content.list .io-item .tag-container .view-tags-btn {
    display: block;
  }
  .route-report-directory .io-wrapper .center.rightOpen .io-content.list .io-item .tag-container .tag-inner-container {
    display: none;
  }
  .route-report-directory .io-wrapper .center.allOpen .io-header .filters .label .full-label {
    display: none;
  }
  .route-report-directory .io-wrapper .center.allOpen .io-content .tag-container .view-tags-btn {
    display: none !important;
  }
  .route-report-directory .io-wrapper .center.allOpen .io-content .tag-container .tag-inner-container {
    display: none;
  }
}
@media only screen and (max-width: 1060px) {
  .route-report-directory .io-wrapper .center.leftOpen .ui-content-header .controls .tag-input-container {
    width: 180px;
  }
  .route-report-directory .io-wrapper .center.leftOpen .io-content.list .io-item .tag-container .view-tags-btn {
    display: none;
  }
  .route-report-directory .io-wrapper .center.rightOpen .io-content.list .io-item .tag-container .view-tags-btn {
    display: none;
  }
  .route-report-directory .io-wrapper .center.allOpen .io-content .tag-container .view-tags-btn {
    display: none;
  }
}
@media only screen and (max-width: 820px) {
  .route-report-directory .io-wrapper .ui-content-header .controls .tag-input-container {
    width: 180px;
  }
  .route-report-directory .io-wrapper .center .io-content.list .io-item .tag-container .view-tags-btn {
    display: none;
  }
}
.profiler-wrapper {
  max-width: 1330px;
  min-width: 850px;
  margin: 0 auto;
  padding-bottom: 25px;
  width: calc(100% - 80px);
  display: flex;
  flex-direction: column;
  overflow: scroll;
}
.profiler-wrapper .ui-input-checkbox {
  margin: 0;
}
.profiler-wrapper .profiler-statistic span {
  font-weight: bold;
}
.profiler-wrapper .highcharts-wrapper {
  height: calc(100% - 40px);
  min-height: 350px;
  width: 100%;
}
.profiler-wrapper .unsaved {
  display: inline-block;
  color: #ed4651;
  font-size: 16px;
  font-size: 1.6rem;
  cursor: pointer;
  margin: 0 15px;
}
.profiler-wrapper .requirements {
  position: relative;
  display: inline-block;
  font-size: 12px;
  font-size: 1.2rem;
  cursor: pointer;
  margin: 0 15px;
}
.profiler-wrapper .requirements ul {
  display: block;
  visibility: hidden;
  position: absolute;
  z-index: 1;
  top: 20px;
  left: 0;
  padding: 5px 20px;
  margin: 5px;
  background: white;
  border: 1px solid #dedede;
  width: 125px;
  line-height: 18px;
  line-height: 1.8rem;
}
.profiler-wrapper .requirements:hover ul {
  visibility: visible;
}
.profiler-wrapper .title-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 20px;
}
.profiler-wrapper .title-wrapper h1 {
  color: #9b9b9b;
  font-size: 24px;
  font-size: 2.4rem;
  margin: 25px 0px 0px 0px;
  padding: 0px 0px 25px 0px;
}
.profiler-wrapper .profile-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 20px;
  margin: 0px 0px 10px 0px;
}
.profiler-wrapper .config-part {
  padding: 0 15px;
  margin: 0 0 10px 0;
}
.profiler-wrapper .config-part:not(:first-child) {
  padding-top: 40px;
  border-top: solid 1px #d8d8d8;
}
.profiler-wrapper .config-part.profile-control-container {
  padding-top: 20px;
}
.profiler-wrapper .config-part.new-profile-notice {
  padding: 15px 15px 0 15px;
  margin: 15px 0;
}
.profiler-wrapper .config-part-controls {
  margin: 0 0 20px 0;
}
.profiler-wrapper .alert {
  margin: 0 0 0 15px;
}
.profiler-wrapper form.upload-button {
  position: relative;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  justify-content: space-around;
  margin: 0 0 0 15px;
}
.profiler-wrapper form.upload-button .upload-icon {
  border-radius: 100%;
  background: #2e8b9d;
  height: 30px;
  width: 30px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin: 0 7px 0 0;
  box-sizing: border-box;
  padding: 7px 0 0 0;
}
.profiler-wrapper form.upload-button .upload-icon::before {
  content: "\f093";
  font-family: "fontawesome" !important;
  color: white;
  font-size: 18px;
  font-size: 1.8rem;
  display: block;
}
.profiler-wrapper form.upload-button:hover .upload-icon {
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.3);
}
.profiler-wrapper form.upload-button .upload-input {
  cursor: pointer;
  font-size: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: 0;
}
.profiler-wrapper .selected-files li {
  margin: 0 0 3px 0;
}
.profiler-wrapper .config-field {
  width: 60%;
  padding: 0 0 0 20px;
  margin: 0 0 10px 0;
}
.profiler-wrapper .config-field.exclusion-field {
  width: 70%;
}
.profiler-wrapper .config-field.wrap label {
  flex-wrap: wrap;
}
.profiler-wrapper .config-field.full,
.profiler-wrapper .config-field .full {
  width: 100%;
}
.profiler-wrapper .config-field.half,
.profiler-wrapper .config-field .half {
  width: 50%;
}
.profiler-wrapper .config-field.eighty,
.profiler-wrapper .config-field .eighty {
  width: 80%;
}
.profiler-wrapper .config-field.forty,
.profiler-wrapper .config-field .forty {
  width: 40%;
}
.profiler-wrapper .config-field.quarter,
.profiler-wrapper .config-field .quarter {
  width: 25%;
}
.profiler-wrapper .config-field.radio label {
  margin: 0 0 20px 5px;
  cursor: pointer;
}
.profiler-wrapper .config-field.checkbox label {
  cursor: pointer;
}
.profiler-wrapper .config-field.upload {
  padding: 0 0 0 30px;
  margin: 0 0 20px 0;
}
.profiler-wrapper .config-field.justify label {
  justify-content: space-between;
}
.profiler-wrapper .config-field.monthly-enr-date {
  margin: 25px 0 20px 0;
}
.profiler-wrapper .config-field.monthly-enr-date label {
  justify-content: start;
}
.profiler-wrapper .config-field.monthly-enr-date input {
  margin: 5px 10px 5px 0;
}
.profiler-wrapper .config-field.date-option-header {
  display: flex;
  justify-content: space-between;
  height: 67px;
}
.profiler-wrapper .config-field.date-option-header,
.profiler-wrapper .config-field.date-field-option,
.profiler-wrapper .config-field.expected-date {
  margin: 5px;
  border-bottom: 1px solid #d8d8d8;
  padding: 5px 5px 5px 15px;
}
.profiler-wrapper .config-field.expected-date {
  padding: 11px 5px 11px 15px;
}
.profiler-wrapper .config-field.expected-date:last-child {
  border-bottom: none;
}
.profiler-wrapper label {
  display: flex;
  align-items: center;
  margin: 5px 5px 15px 5px;
}
.profiler-wrapper .vendor-code-select {
  margin-left: auto;
  width: calc(50% - 16px);
  margin-right: 4px;
}
.profiler-wrapper input {
  margin: 0 5px;
}
.profiler-wrapper select {
  margin: 0 5px;
  cursor: pointer;
}
.profiler-wrapper .grid-item input {
  margin: 0;
}
.profiler-wrapper textarea {
  margin: 10px 0;
  width: 100%;
  height: 100px;
}
.profiler-wrapper .claim-status-field {
  width: 70%;
}
.profiler-wrapper .claim-status-field label {
  font-size: 12px;
  font-size: 1.2rem;
}
.profiler-wrapper .claim-status-field input {
  margin: 15px 0 10px 0;
  width: 50%;
}
.profiler-wrapper .exclusion-field .exclusion-select {
  min-width: 250px;
  margin: 0 5px 0 10px;
}
.profiler-wrapper .group-code-field .group-code-select {
  min-width: 250px;
  margin: 0 5px 0 10px;
}
.profiler-wrapper .group-code-field label {
  margin: 5px;
}
.profiler-wrapper .group-code-field > span {
  font-size: 11px;
  font-size: 1.1rem;
  display: block;
  margin: 5px 10px 15px 0px;
  text-align: right;
}
.profiler-wrapper .group-code-buttons {
  margin: 30px 0 10px 0;
}
.profiler-wrapper .group-codes-table {
  width: 80%;
}
.profiler-wrapper .group-codes-table table {
  width: 100%;
}
.profiler-wrapper .group-codes-table table .field {
  display: flex;
  align-items: center;
}
.profiler-wrapper .group-codes-table table .field .single-delete {
  margin-right: 5px;
}
.profiler-wrapper .separator {
  display: flex;
  justify-content: start;
  margin: 10px 0 0 0;
}
.profiler-wrapper .separator-input,
.profiler-wrapper .header-row-input {
  width: 50px;
}
.profiler-wrapper .manual-column-headers {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.profiler-wrapper .manual-column-headers input {
  margin: 5px 5px 15px 5px;
}
.profiler-wrapper .note {
  font-size: 10px;
  font-size: 1rem;
  margin: 5px 10px 15px 10px;
}
.profiler-wrapper .right {
  text-align: right;
}
.profiler-wrapper .delete-button {
  margin: 20px 0 0 0;
  display: flex;
  flex-direction: row-reverse;
}
.profiler-wrapper .associated-file-container {
  display: grid;
  grid-gap: 5px;
  grid-template-columns: 24px 1fr 175px;
  align-items: center;
  padding: 0 0 10px 0;
}
.profiler-wrapper .claim-status-container .config-field {
  margin: 0 0 25px 0;
}
.profiler-wrapper .claim-status-container label {
  margin: 5px 5px 10px 5px;
}
.profiler-wrapper .single-remove,
.profiler-wrapper .single-delete {
  color: #ed4651;
  background-color: transparent;
  border-radius: 100px;
  padding: 0 5px;
  height: 23px;
}
.profiler-wrapper .single-remove:before,
.profiler-wrapper .single-delete:before {
  font-size: 18px;
  font-size: 1.8rem;
  margin: 0;
}
.profiler-wrapper .single-remove:hover,
.profiler-wrapper .single-delete:hover {
  color: #e81825;
  background-color: transparent;
}
.profiler-wrapper .single-add {
  color: #18b28b;
  background-color: transparent;
  border-radius: 100px;
  padding: 0 5px;
  height: 23px;
}
.profiler-wrapper .single-add:before {
  font-size: 18px;
  font-size: 1.8rem;
  margin: 0;
}
.profiler-wrapper .single-add:hover {
  color: #128568;
  background-color: transparent;
}
.profiler-wrapper .single-remove {
  padding: 0 4px;
}
.profiler-wrapper input[type="text"]:disabled {
  opacity: 1;
  color: #000;
  background: rgba(224, 224, 224, 0.5);
}
.profiler-wrapper div[data-lastpass-icon-root] {
  display: none;
}
.profiler-wrapper .ember-table table,
.profiler-wrapper .ember-table input {
  width: 100%;
  margin: 0;
}
.profiler-wrapper .innovu-table-striped th {
  color: #fff;
}
.excel-file-options .radio {
  margin: 0 0 20px 15px;
}
main.main-content .profiler-wrapper .page-content .profiler-content {
  display: flex;
  flex-direction: column;
  background: white;
  padding: 20px 10px;
  margin: 0 20px;
  border: 1px solid #dedede;
}
main.main-content .profiler-wrapper .page-content .profiler-content .profiler-search-controls {
  display: flex;
  align-items: center;
  grid-gap: 10px;
}
main.main-content .profiler-wrapper .page-content .profiler-content .profiler-search-controls .search-field {
  width: 350px;
}
main.main-content .profiler-wrapper .page-content .profiler-content .profiler-search-controls .filter-by-org .ui-input .ui-label.checkbox {
  margin: 0;
  padding: 0;
  grid-gap: 10px;
}
main.main-content .profiler-wrapper .page-content .profiler-content .profiler-search-controls .filter-by-org .ui-input .ui-label.checkbox:hover {
  cursor: pointer;
}
main.main-content .profiler-wrapper .page-content .profiler-content .profiler-search-controls .filter-by-org .ui-input .ui-label.checkbox .label-text {
  color: #555;
}
main.main-content .profiler-wrapper .page-content .profiler-content .profiler-search-controls .filter-by-org .ui-input .ui-label.checkbox .ui-input-checkbox {
  width: 12px;
}
main.main-content .profiler-wrapper .page-content .profiler-content .profiler-search-controls .filter-by-org .ui-input .ui-label.checkbox .ui-input-checkbox:hover {
  cursor: pointer;
}
main.main-content .profiler-wrapper .page-content .profiler-content .ember-table .ember-table-overflow {
  max-height: 600px;
}
main.main-content .profiler-wrapper .page-content .profiler-content .ember-table table th {
  color: #fff;
}
main.main-content .profiler-wrapper .page-content .profiler-content .ember-table table th,
main.main-content .profiler-wrapper .page-content .profiler-content .ember-table table td {
  border: 1px solid white;
}
main.main-content .profiler-wrapper .page-content .profiler-content .ember-table table tbody tr.grey {
  background: #f3f3f3;
}
.profile-form-wrapper {
  position: relative;
}
.profile-form-wrapper .name {
  margin-left: auto;
}
.profile-form-wrapper .loading-indicator {
  position: fixed;
  top: 100px;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.profile-form-wrapper .loading-indicator h1 {
  margin: -150px 0 25px 0;
}
.profiler-vault-notice {
  color: red;
}
.ic-wrapper {
  width: 90%;
  margin: 0 auto;
}
.ic-wrapper .notification {
  border-radius: 100%;
  width: 20px;
  height: 18px;
  background: #106170;
  border: solid 1px #b4e8f2;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: -12px;
  right: -12px;
  z-index: 5;
  color: white;
  font-size: 15px;
  font-size: 1.5rem;
  text-align: center;
  padding-top: 2px;
  display: none;
}
.ic-wrapper .notification.active {
  display: block;
}
.ic-wrapper .ic-header {
  display: flex;
  padding: 15px 0 15px 0;
  border-bottom: solid 1px #e6e6e6;
}
.ic-wrapper .ic-header h1 {
  position: relative;
  color: #9b9b9c;
  display: table;
  font-size: 24px;
  font-size: 2.4rem;
}
.ic-wrapper .ic-header h1 .info-tooltip {
  display: block;
  position: absolute;
  top: -5px;
  right: -20px;
  width: 12px;
  height: 12px;
  background: url("/assets/info-tooltip-icon.svg");
}
.ic-wrapper .ic-header h1 .info-tooltip:hover {
  cursor: pointer;
}
.ic-wrapper .ic-header h1 .info-tooltip[data-field-tooltip]:hover:after {
  z-index: 15;
  content: attr(data-field-tooltip);
  top: 15px;
  left: 0;
  width: 226px;
  display: block;
  text-align: left;
  border-radius: 5px;
  border: solid 1px #cecece;
  position: relative;
  color: #555555;
  padding: 4px 3px 4px 3px;
  background: #fff;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2);
  font-family: sans-serif;
  font-size: 10px;
  font-size: 1rem;
}
.ic-wrapper .ic-header .controls {
  display: flex;
  align-items: center;
  margin-left: auto;
}
.ic-wrapper .ic-header .controls .btn {
  position: relative;
  padding-top: 4px;
  border-radius: 5px;
  color: #fff;
  height: 19px;
  display: inline-block;
  font-weight: 300;
  background: #2e8b9d;
  transition: all 0.4s;
}
.ic-wrapper .ic-header .controls .btn .icon {
  position: absolute;
  right: 0;
  top: 0;
  width: 23px;
  height: 23px;
  border-radius: 0 5px 5px 0;
  text-align: center;
  background: #b4e8f2;
}
.ic-wrapper .ic-header .controls .btn.active {
  background: #106170;
  box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, 0.2);
}
.ic-wrapper .ic-header .controls .btn:hover {
  cursor: pointer;
}
.ic-wrapper .ic-header .controls .btn:hover.manage,
.ic-wrapper .ic-header .controls .btn:hover.view-all {
  background: #106170;
}
.ic-wrapper .ic-header .controls .btn.manage {
  padding: 4px 30px 0 9px;
}
.ic-wrapper .ic-header .controls .btn.manage .icon svg {
  width: 12px;
  margin-top: 5px;
}
.ic-wrapper .ic-header .controls .btn.manage .icon svg path {
  fill: #2e8b9d;
}
.ic-wrapper .ic-header .controls .btn.view-all {
  margin-right: 10px;
  padding: 4px 30px 0 9px;
  position: relative;
}
.ic-wrapper .ic-header .controls .btn.view-all .icon svg {
  width: 15px;
  margin-top: 5px;
}
.ic-wrapper .ic-header .controls .filter-title {
  font-size: 15px;
  margin: 0 10px 0 0;
  color: #555555;
}
.ic-wrapper .ic-content-wrapper {
  padding: 40px 12px 40px 12px;
  overflow: scroll;
  height: 575px;
}
.ic-wrapper .ic-content-wrapper .managing-instructions {
  color: #555555;
  font-size: 16px;
  font-weight: 300;
  text-align: center;
  display: table;
  margin: 0 auto;
  padding: 10px 0 10px 0;
  margin-bottom: 20px;
  border-bottom: solid 1px #d6d6d6;
}
.ic-wrapper .ic-content-wrapper .managing-instructions .icon {
  display: inline-block;
}
.ic-wrapper .ic-content-wrapper .managing-instructions .icon svg {
  width: 12px;
}
.ic-wrapper .ic-content-wrapper .managing-instructions .icon svg path {
  fill: #c6c6c6;
}
.ic-wrapper .ic-content-wrapper .collection {
  background: #fff;
  border-radius: 5px;
  border: solid 1px #d6d6d6;
  box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, 0.1);
  padding: 10px 20px 10px 20px;
  position: relative;
  height: 155px;
}
.ic-wrapper .ic-content-wrapper .collection:hover {
  cursor: pointer;
}
.ic-wrapper .ic-content-wrapper .collection:hover .content .title-wrapper {
  border-bottom: solid 1px #2e8b9d;
}
.ic-wrapper .ic-content-wrapper .collection:hover .bg-container .logo-bg {
  opacity: 0.3;
  transform: rotate(10deg);
}
.ic-wrapper .ic-content-wrapper .collection:hover .item-count {
  color: #555555;
}
.ic-wrapper .ic-content-wrapper .collection:hover .item-count .icon svg path {
  fill: #555555;
}
.ic-wrapper .ic-content-wrapper .collection .item-count {
  font-size: 14px;
  font-size: 1.4rem;
  color: #9a9a9a;
  font-weight: 200;
  display: table;
  border-bottom: solid 1px #d8d8d8;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  transition: all 0.5s;
}
.ic-wrapper .ic-content-wrapper .collection .item-count .icon {
  margin-right: 3px;
  display: inline-block;
}
.ic-wrapper .ic-content-wrapper .collection .item-count .icon svg {
  width: 15px;
}
.ic-wrapper .ic-content-wrapper .collection .item-count .icon svg path {
  transition: all 0.5s;
}
.ic-wrapper .ic-content-wrapper .collection-type {
  width: 28px;
  height: 28px;
  border-radius: 100%;
  position: absolute;
  right: 5px;
  top: 5px;
  z-index: 20;
}
.ic-wrapper .ic-content-wrapper .collection-type svg {
  margin: 0 auto;
  display: block;
}
.ic-wrapper .ic-content-wrapper .collection-type.innovu {
  background: #4892c7;
  border: solid 1px #2d76ab;
}
.ic-wrapper .ic-content-wrapper .collection-type.innovu svg {
  width: 14px;
  margin-top: 6px;
}
.ic-wrapper .ic-content-wrapper .collection-type.user {
  background: #3eb39f;
  border: solid 1px #508b82;
}
.ic-wrapper .ic-content-wrapper .collection-type.user svg {
  width: 12px;
  margin-top: 6px;
}
.ic-wrapper .ic-content-wrapper .content {
  padding: 30px 0 0 0;
  z-index: 2;
  position: relative;
}
.ic-wrapper .ic-content-wrapper .content .title-wrapper {
  height: 60px;
  display: flex;
  align-items: center;
  border-bottom: solid 1px #d8d8d8;
  padding-bottom: 10px;
  transition: all 0.5s;
}
.ic-wrapper .ic-content-wrapper .content h3 {
  font-size: 25px;
  font-size: 2.5rem;
  color: #666666;
  text-align: center;
  margin: 0 auto;
  font-weight: 300;
  margin-bottom: -2px;
  line-height: 30px;
}
.ic-wrapper .ic-content-wrapper .content .icon {
  display: inline-block;
  margin-right: 10px;
}
.ic-wrapper .ic-content-wrapper .content .icon svg {
  width: 28px;
  margin-bottom: -3px;
}
.ic-wrapper .ic-content-wrapper .content .description p {
  font-size: 16px;
  font-size: 1.6rem;
  color: #666666;
  margin: 15px 0 0 0;
  text-align: center;
  font-weight: 300;
}
.ic-wrapper .ic-content-wrapper .bg-container {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
}
.ic-wrapper .ic-content-wrapper .bg-container .logo-bg {
  transition: all 0.5s;
  position: absolute;
  top: -16px;
  right: -56px;
  z-index: 1;
  opacity: 0.1;
}
.ic-wrapper .ic-content-wrapper .bg-container .logo-bg svg {
  width: 240px;
}
.collection-count {
  color: white;
  font-size: 14px;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  border-radius: 5px;
  padding: 3px;
  margin-right: 10px;
  cursor: pointer;
  transition: all 0.5s;
}
.collection-count .icon {
  margin-right: 3px;
}
.collection-count .icon svg {
  display: block;
}
.collection-count.innovu {
  background: #4892c7;
  border: solid 1px #2d76ab;
}
.collection-count.innovu .icon svg {
  width: 12px;
  height: 15px;
}
.collection-count.innovu.inactive {
  background: #979797;
  border: solid 1px #767676;
}
.collection-count.user {
  background: #3eb39f;
  border: solid 1px #15b28a;
  margin-right: 20px;
  cursor: pointer;
}
.collection-count.user .icon svg {
  width: 12px;
  height: 14px;
}
.collection-count.user.inactive {
  background: #979797;
  border: solid 1px #767676;
}
.route-member-level-care-management {
  margin: 0;
}
.route-member-level-care-management .page-content {
  min-width: 1025px;
}
.route-member-level-care-management .mlcm-controls-wrapper {
  position: relative;
  z-index: 20;
  background: #f8f8f8;
}
.route-member-level-care-management .mlcm-page-wrapper {
  max-width: 1330px;
  min-width: 850px;
  margin: 0 auto;
  padding-bottom: 50px;
  width: calc(100% - 80px);
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-header {
  display: flex;
  align-items: center;
  padding: 30px 0px 15px 0px;
  border-bottom: solid 1px #e6e6e6;
  min-width: 1100px;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-header .title-wrapper h1 {
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 24px;
  margin: 0;
  color: #6d6d6d;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-header .title-wrapper h3 {
  color: #8e8e8e;
  font-weight: 400;
  margin: 10px 0 0 0;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-header .mlcm-input-wrapper {
  display: flex;
  align-items: end;
  margin-left: auto;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-header .mlcm-input-wrapper .time-range {
  width: 175px;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-header .mlcm-input-wrapper .time-range .label-icon {
  background: url("/assets/mlcm/calendar-icon.svg") no-repeat center;
  background-size: cover;
  width: 14px;
  height: 16px;
  margin-bottom: -2px;
  margin-right: 3px;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-header .mlcm-input-wrapper .time-range .ui-input .ui-field-container .grid-container .ui-clear-date {
  font-size: 20px;
  font-size: 2rem;
  right: 0;
  color: #555555;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-header .mlcm-input-wrapper .time-range .ui-input .ui-field-container .grid-container .ui-input-field {
  padding: 0 7px 0 0;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-header .mlcm-input-wrapper .selected-member {
  width: 160px;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-header .mlcm-input-wrapper .selected-member .label-icon {
  background: url("/assets/mlcm/member-outline-icon.svg") no-repeat center;
  background-size: cover;
  width: 14px;
  height: 16px;
  margin-bottom: -2px;
  margin-right: 3px;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-header .mlcm-input-wrapper .medical-spend {
  width: 190px;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-header .mlcm-input-wrapper .medical-spend .label-icon {
  background: url("/assets/mlcm/medical-spend-outline-icon.svg") no-repeat center;
  background-size: cover;
  width: 17px;
  height: 20px;
  margin-bottom: -2px;
  margin-right: 1px;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-header .mlcm-input-wrapper .rx-spend {
  width: 155px;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-header .mlcm-input-wrapper .rx-spend .label-icon {
  background: url("/assets/mlcm/rx-spend-outline-icon.svg") no-repeat center;
  background-size: cover;
  width: 17px;
  height: 20px;
  margin-bottom: -2px;
  margin-right: 1px;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-header .mlcm-input-wrapper .input-container {
  margin-left: 10px;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-header .ui-label {
  border-bottom: solid 1px #d8d8d8;
  margin-bottom: 10px;
  padding-bottom: 5px;
  display: block;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-header .ui-label .label-text {
  color: #868686;
  font-weight: 500;
  font-size: 14px;
  font-size: 1.4rem;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-header .circle-btn {
  position: relative;
  margin: 0 auto;
  margin-left: 0;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-header .circle-btn.generate-report,
.route-member-level-care-management .mlcm-page-wrapper .mlcm-header .circle-btn.generate-members,
.route-member-level-care-management .mlcm-page-wrapper .mlcm-header .circle-btn.export-members {
  width: 75px;
  position: relative;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-header .circle-btn.generate-report[data-field-tooltip]:hover:after,
.route-member-level-care-management .mlcm-page-wrapper .mlcm-header .circle-btn.generate-members[data-field-tooltip]:hover:after,
.route-member-level-care-management .mlcm-page-wrapper .mlcm-header .circle-btn.export-members[data-field-tooltip]:hover:after {
  z-index: 15;
  content: attr(data-field-tooltip);
  display: table;
  text-wrap: nowrap;
  text-align: center;
  border-radius: 5px;
  border: solid 1px #cecece;
  position: absolute;
  color: #555555;
  padding: 3px 4px 3px 4px;
  background: #fff;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2);
  font-family: sans-serif;
  font-size: 10px;
  font-size: 1rem;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-header .circle-btn.export-report {
  width: 89px;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-header .circle-btn.generate-report[data-field-tooltip]:hover:after {
  top: -25px;
  left: -100%;
  margin-left: 50px;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-header .circle-btn.generate-report .circle .icon svg {
  width: 27px;
  height: 27px;
  margin: 0 auto;
  margin-top: 9px;
  margin-right: 11px;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-header .circle-btn.generate-members[data-field-tooltip]:hover:after {
  top: -25px;
  left: -100%;
  margin-left: 50px;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-header .circle-btn.generate-members .circle .icon svg {
  width: 31px;
  height: 30px;
  margin: 0 auto;
  margin-top: 8px;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-header .circle-btn.export-members[data-field-tooltip]:hover:after {
  top: -25px;
  left: -100%;
  margin-left: 63px;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-header .circle-btn.export-members .circle .icon svg {
  width: 20px;
  height: 24px;
  margin: 0 auto;
  margin-top: 11px;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-header .circle-btn.back-to-members {
  width: 90px;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-header .circle-btn.back-to-members .circle .icon {
  width: 30px;
  height: 24px;
  margin: 0 auto;
  margin-top: 11px;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-header .circle-btn .btn {
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  background: none;
  border: none;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-header .circle-btn .btn:hover {
  cursor: pointer;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-header .circle-btn .btn .circle {
  border-radius: 100%;
  background: #243b5f;
  border: solid 1px #fff;
  width: 45px;
  height: 45px;
  margin: 0 auto;
  box-shadow: 0px 0.5px 4px 0.5px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-header .circle-btn .btn .circle svg {
  display: block;
  margin: 0 auto;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-header .circle-btn .btn .circle svg .fill {
  transition: 0.3s;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-header .circle-btn .btn .circle svg path {
  fill: #fff;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-header .circle-btn .btn span {
  color: #555555;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 300;
  text-align: center;
  display: block;
  margin-top: 5px;
  transition: 0.3s;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-header .circle-btn .btn:hover:not([disabled]) .circle,
.route-member-level-care-management .mlcm-page-wrapper .mlcm-header .circle-btn .btn.active .circle {
  border: solid 1px #243b5f;
  background: #fff;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-header .circle-btn .btn:hover:not([disabled]) .circle svg path,
.route-member-level-care-management .mlcm-page-wrapper .mlcm-header .circle-btn .btn.active .circle svg path {
  fill: #243b5f;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-header .circle-btn .btn:hover:not([disabled]) span,
.route-member-level-care-management .mlcm-page-wrapper .mlcm-header .circle-btn .btn.active span {
  color: #243b5f;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-header .circle-btn .btn[disabled] .circle {
  box-shadow: none;
  background: #e2e2e2;
  border: solid 1px #e2e2e2;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-header .circle-btn .btn[disabled] .circle .fill {
  fill: white;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-header .circle-btn .btn[disabled] span {
  color: #e2e2e2;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-header .circle-btn .btn[disabled]:hover {
  cursor: not-allowed;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-subheader {
  padding: 30px 0px 15px 0px;
  border-bottom: solid 1px #e6e6e6;
  display: flex;
  align-items: center;
  min-width: 1100px;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-subheader .ui-label {
  border-bottom: solid 1px #d8d8d8;
  margin-bottom: 10px;
  padding-bottom: 5px;
  display: block;
  white-space: normal;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-subheader .ui-label .label-text {
  color: #868686;
  font-weight: 500;
  font-size: 14px;
  font-size: 1.4rem;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-subheader .filter-containers {
  display: flex;
  align-items: center;
  position: relative;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-subheader .filter-containers .filters-changed-message {
  position: absolute;
  top: -20px;
  right: 0px;
  font-size: 11px;
  color: #555555;
  font-weight: 700;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-subheader .filter-containers .reset-filters {
  position: absolute;
  left: 0;
  top: -18px;
  font-size: 11px;
  font-size: 1.1rem;
  color: #555555;
  transition: all 0.5s;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-subheader .filter-containers .reset-filters:hover {
  text-decoration: underline;
  color: #4892c7;
  cursor: pointer;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-subheader .filter-containers .search {
  width: 200px;
  margin-right: 10px;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-subheader .filter-containers .chronic-conditions {
  width: 200px;
  margin-right: 20px;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-subheader .filter-containers .chronic-conditions select {
  width: 100%;
  height: 26px;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-subheader .filter-containers .filters {
  display: flex;
  align-items: center;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-subheader .filter-containers .filters strong {
  color: #868686;
  font-size: 15px;
  font-size: 1.5rem;
  margin: 0 10px 0 0;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-subheader .filter-containers .filters .filter {
  width: 30px;
  height: 30px;
  border-radius: 5px;
  border: 1px solid #b0b0b0;
  margin-left: 5px;
  transition: all 0.5s;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-subheader .filter-containers .filters .filter .icon {
  border-radius: 5px;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  transition: all 0.5s;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-subheader .filter-containers .filters .filter:hover {
  cursor: pointer;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-subheader .filter-containers .filters .filter:hover.disabled {
  cursor: not-allowed;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-subheader .filter-containers .filters .filter[data-field-tooltip]:hover:after {
  z-index: 15;
  content: attr(data-field-tooltip);
  top: -55px;
  left: 0;
  display: table;
  text-wrap: nowrap;
  text-align: center;
  border-radius: 5px;
  border: solid 1px #cecece;
  position: relative;
  color: #555555;
  padding: 3px 4px 3px 4px;
  background: #fff;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2);
  font-family: sans-serif;
  font-size: 10px;
  font-size: 1rem;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-subheader .filter-containers .filters .filter.active {
  box-shadow: 0px 0.5px 4px 0.5px rgba(0, 0, 0, 0.2);
  border: 1px solid #4892c7;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-subheader .filter-containers .filters .filter.active .icon {
  opacity: 1;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-subheader .filter-containers .filters .filter.high-cost-claimant .icon {
  background: url(/assets/mlcm/high-cost-claimants-filled-icon.svg) no-repeat 4px 3px #fff;
  background-size: 23px;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-subheader .filter-containers .filters .filter.risk-score .icon {
  background: url(/assets/mlcm/risk-score-filled-icon.svg) no-repeat center #fff;
  background-size: 23px;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-subheader .filter-containers .filters .filter.specialty-rx .icon {
  background: url(/assets/mlcm/specialty-rx-filled-icon.svg) no-repeat center #fff;
  background-size: 19px;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-subheader .filter-containers .filters .filter.chronic-condition .icon {
  background: url(/assets/mlcm/chronic-conditions-filled-icon.svg) no-repeat center #fff;
  background-size: 21px;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-subheader .filter-containers .filters .filter.medical-spend .icon {
  background: url(/assets/mlcm/medical-spend-filled-icon.svg) no-repeat 7px 2px #fff;
  background-size: 20px;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-subheader .filter-containers .filters .filter.rx-spend .icon {
  background: url(/assets/mlcm/rx-spend-filled-icon.svg) no-repeat 7px 2px #fff;
  background-size: 20px;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-subheader .filter-containers .filters .filter.med-rx-spend .icon {
  background: url(/assets/mlcm/med-rx-spend-filled-icon.svg) no-repeat 7px 2px #fff;
  background-size: 20px;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-subheader .threshold-container {
  display: flex;
  align-items: center;
  margin-left: auto;
  position: relative;
  top: -5px;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-subheader .threshold-container .medical-spend {
  width: 135px;
  margin-right: 10px;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-subheader .threshold-container .rx-spend {
  width: 130px;
  margin-right: 10px;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-subheader .threshold-container .mdrx-spend {
  width: 135px;
}
.route-member-level-care-management .mlcm-page-wrapper .instructions-wrapper {
  width: 800px;
  margin: 0 auto;
  margin-top: 50px;
}
.route-member-level-care-management .mlcm-page-wrapper .instructions-wrapper .info-icon {
  background: url("/assets/financial-experience/info-icon.svg");
  width: 75px;
  height: 75px;
  background-size: cover;
  margin: 0 auto;
  margin-bottom: 20px;
}
.route-member-level-care-management .mlcm-page-wrapper .instructions-wrapper .content {
  border-top: solid 1px #e6e6e6;
  border-bottom: solid 1px #e6e6e6;
  padding: 20px 0 20px 0;
  font-size: 18px;
  font-size: 1.8rem;
  color: #555555;
}
.route-member-level-care-management .mlcm-page-wrapper .instructions-wrapper .content ul {
  margin: 0;
  padding: 0 0 0 20px;
}
.route-member-level-care-management .mlcm-page-wrapper .instructions-wrapper .content ul li {
  color: #4892c7;
  margin: 0px 0px 20px 0px;
  line-height: 20px;
}
.route-member-level-care-management .mlcm-page-wrapper .instructions-wrapper .content ul li span {
  color: #555555;
}
.route-member-level-care-management .mlcm-page-wrapper > .loading-wrapper > .loading-indicator {
  position: relative;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-member-list-wrapper {
  margin: 0 auto;
  border-radius: 3px;
  border: solid 1px #4892c7;
  overflow: hidden;
  width: 100%;
  min-height: 200px;
  max-height: 450px;
  position: relative;
  background: #ededed;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-member-list-wrapper .ui-grid {
  grid-gap: 15px;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-member-list-wrapper.scrollable {
  overflow-y: scroll;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-member-list-wrapper > .loading-wrapper {
  position: sticky;
  top: 46px;
  z-index: 200;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-member-list-wrapper .sticky-header {
  width: calc(100% - 20px);
  padding: 0 10px 0 10px;
  height: 45px;
  display: flex;
  align-items: center;
  position: sticky;
  z-index: 2;
  top: 0;
  left: 0;
  background: #ededed;
  border-bottom: solid 1px #4892c7;
  justify-content: space-evenly;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-member-list-wrapper .sticky-header .overlay {
  position: absolute;
  top: 0;
  width: 100%;
  height: 45px;
  backdrop-filter: blur(1px);
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-member-list-wrapper .sticky-header .header {
  color: #555555;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 12px;
  display: flex;
  align-items: center;
  margin: 0 auto;
  position: relative;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-member-list-wrapper .sticky-header .header .title:hover {
  cursor: help;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-member-list-wrapper .sticky-header .header .title[data-field-tooltip]:hover:after {
  z-index: 15;
  content: attr(data-field-tooltip);
  top: 31px;
  left: 0;
  display: table;
  text-wrap: nowrap;
  text-align: center;
  border-radius: 5px;
  border: solid 1px #cecece;
  position: absolute;
  color: #555555;
  padding: 3px 4px 3px 4px;
  background: #fff;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2);
  font-family: sans-serif;
  font-size: 10px;
  font-size: 1rem;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-member-list-wrapper .sticky-header .header .subtitle {
  font-size: 12px;
  font-size: 1.2rem;
  display: block;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-member-list-wrapper .sticky-header .header .icon {
  display: inline-block;
  margin-right: 5px;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-member-list-wrapper .sticky-header .header .sort {
  width: 12px;
  min-width: 12px;
  height: 12px;
  display: block;
  background: url(/assets/mlcm/sort-arrow-inactive.svg) no-repeat;
  background-size: cover;
  margin-left: 5px;
  transform: scaleY(-1);
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-member-list-wrapper .sticky-header .header .sort:hover {
  cursor: pointer;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-member-list-wrapper .sticky-header .header .sort.active {
  background: url(/assets/mlcm/sort-arrow-active.svg) no-repeat;
  background-size: cover;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-member-list-wrapper .sticky-header .header .sort.active.descending {
  transform: scaleY(1);
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-member-list-wrapper .sticky-header .header.id .title:hover {
  cursor: inherit;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-member-list-wrapper .sticky-header .header.id .icon {
  width: 26px;
  height: 26px;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-member-list-wrapper .sticky-header .header.high-cost-claimants .title {
  width: 68px;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-member-list-wrapper .sticky-header .header.high-cost-claimants .icon {
  width: 21px;
  min-width: 21px;
  height: 21px;
  background: url(/assets/mlcm/high-cost-claimants-outline-icon.svg) no-repeat;
  background-size: cover;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-member-list-wrapper .sticky-header .header.risk-score .icon,
.route-member-level-care-management .mlcm-page-wrapper .mlcm-member-list-wrapper .sticky-header .header.risk-change .icon {
  width: 15px;
  min-width: 15px;
  height: 13px;
  background: url(/assets/mlcm/risk-score-outline-icon.svg) no-repeat;
  background-size: cover;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-member-list-wrapper .sticky-header .header.specialty-rx .icon {
  width: 12px;
  min-width: 12px;
  height: 13px;
  background: url(/assets/mlcm/specialty-rx-outline-icon.svg) no-repeat;
  background-size: cover;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-member-list-wrapper .sticky-header .header.primary-dx .icon {
  width: 14px;
  min-width: 14px;
  height: 14px;
  background: url(/assets/mlcm/primary-dx-outline-icon.svg) no-repeat;
  background-size: cover;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-member-list-wrapper .sticky-header .header.chronic-condition .title {
  width: 60px;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-member-list-wrapper .sticky-header .header.chronic-condition .icon {
  width: 15px;
  min-width: 15px;
  height: 17px;
  background: url(/assets/mlcm/chronic-conditions-outline-icon.svg) no-repeat;
  background-size: cover;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-member-list-wrapper .sticky-header .header.medical-spend .title {
  width: 95px;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-member-list-wrapper .sticky-header .header.medical-spend .icon {
  width: 18px;
  min-width: 18px;
  height: 20px;
  background: url(/assets/mlcm/medical-spend-outline-icon.svg) no-repeat;
  background-size: cover;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-member-list-wrapper .sticky-header .header.rx-spend .title {
  width: 80px;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-member-list-wrapper .sticky-header .header.rx-spend .icon {
  width: 18px;
  min-width: 18px;
  height: 20px;
  background: url(/assets/mlcm/rx-spend-outline-icon.svg) no-repeat;
  background-size: cover;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-member-list-wrapper .sticky-header .header.mdrx-spend .title {
  width: 80px;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-member-list-wrapper .sticky-header .header.mdrx-spend .title[data-field-tooltip]:hover:after {
  right: 0;
  left: auto;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-member-list-wrapper .sticky-header .header.mdrx-spend .icon {
  width: 18px;
  min-width: 18px;
  height: 20px;
  background: url(/assets/mlcm/med-rx-spend-outline-icon.svg) no-repeat;
  background-size: cover;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-member-list-wrapper .member-results-wrapper {
  position: relative;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-member-list-wrapper .member-results-wrapper .overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 19;
  backdrop-filter: blur(3px);
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-member-list-wrapper .member {
  width: calc(100% - 20px);
  padding: 0 10px 0 10px;
  height: 50px;
  display: flex;
  align-items: center;
  background: #fff;
  transition: all 0.5s;
  position: relative;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-member-list-wrapper .member:nth-of-type(2n) {
  background: #f9f9f9;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-member-list-wrapper .member:hover {
  cursor: pointer;
  box-shadow: 0px 0.5px 4px 0.5px rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-member-list-wrapper .member:hover .id {
  font-weight: 700;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-member-list-wrapper .member.active {
  box-shadow: 0px 0.5px 4px 0.5px rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-member-list-wrapper .member.active .icon {
  background: url(/assets/mlcm/circle-member-filled-icon.svg) no-repeat;
  background-size: cover;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-member-list-wrapper .member.active .id {
  font-weight: 700;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-member-list-wrapper .member .ui-grid {
  width: 100%;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-member-list-wrapper .member .ui-block {
  display: flex;
  align-items: center;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-member-list-wrapper .member .icon {
  width: 26px;
  height: 26px;
  background: url(/assets/mlcm/circle-member-outline-icon.svg) no-repeat;
  background-size: cover;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-member-list-wrapper .member .content {
  display: table;
  margin: 0 auto;
  text-align: center;
  color: #13365f;
  font-size: 14px;
  font-size: 1.4rem;
  font-size: 400;
  line-height: 14px;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-member-list-wrapper .member .id {
  color: #555555;
  font-weight: bold;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-member-list-wrapper .member .primary-dx .content {
  font-size: 12px;
  font-size: 1.2rem;
  max-height: 40px;
  word-break: break-word;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -ms-box-orient: vertical;
  -webkit-line-clamp: 3;
  -moz-line-clamp: 3;
  -ms-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-member-list-wrapper .member .risk-score .divider {
  display: inline-block;
  width: 1px;
  height: 10px;
  background: #d8d8d8;
  margin: 0 5px 0 5px;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-member-list-wrapper .member .indicator {
  width: 26px;
  height: 26px;
  background: url(/assets/mlcm/x-icon.svg) no-repeat;
  background-size: cover;
  margin: 0 auto;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-member-list-wrapper .member .indicator.true {
  background: url(/assets/mlcm/check-icon.svg) no-repeat;
  background-size: cover;
}
.route-member-level-care-management .mlcm-page-wrapper .member-result-count-wrapper {
  display: flex;
}
.route-member-level-care-management .mlcm-page-wrapper .member-result-count-wrapper .count {
  margin-left: auto;
  color: #555555;
  margin-top: 5px;
}
.route-member-level-care-management .mlcm-page-wrapper .member-info-parent-container {
  position: relative;
  margin-bottom: var(--margin);
  transition: all ease-in-out 0.5s;
}
.route-member-level-care-management .mlcm-page-wrapper .dependent-container {
  position: absolute;
  transition: all ease-in-out 0.5s;
  bottom: var(--bottom);
}
.route-member-level-care-management .mlcm-page-wrapper .dependent-container .member-info-wrapper.dependent {
  z-index: 5;
  box-shadow: none;
}
.route-member-level-care-management .mlcm-page-wrapper .member-info-wrapper {
  background: #fff;
  border: solid 1px #4892c7;
  padding: 20px;
  border-radius: 3px;
  box-shadow: 0px 0.7px 4px 0.5px rgba(0, 0, 0, 0.2);
  position: relative;
  transition: all 0.5s;
}
.route-member-level-care-management .mlcm-page-wrapper .member-info-wrapper.member {
  z-index: 10;
}
.route-member-level-care-management .mlcm-page-wrapper .member-info-wrapper .member-header {
  padding: 0px 0px 15px 0px;
  border-bottom: solid 1px #d8d8d8;
  display: flex;
  align-items: center;
}
.route-member-level-care-management .mlcm-page-wrapper .member-info-wrapper .member-header .member-identity {
  display: flex;
  align-items: center;
  font-weight: 300;
}
.route-member-level-care-management .mlcm-page-wrapper .member-info-wrapper .member-header .member-identity .name {
  font-size: 18px;
  font-size: 1.8rem;
  color: #555555;
}
.route-member-level-care-management .mlcm-page-wrapper .member-info-wrapper .member-header .member-identity .border {
  width: 1px;
  height: 11px;
  background: #959292;
  margin: 0 5px 0 5px;
}
.route-member-level-care-management .mlcm-page-wrapper .member-info-wrapper .member-header .member-identity .id {
  font-size: 14px;
  font-size: 1.4rem;
  color: #555555;
  font-weight: bold;
}
.route-member-level-care-management .mlcm-page-wrapper .member-info-wrapper .member-header .member-identity .icon {
  width: 26px;
  height: 26px;
  background: url(/assets/mlcm/circle-member-outline-icon.svg) no-repeat;
  background-size: cover;
  margin-right: 10px;
}
.route-member-level-care-management .mlcm-page-wrapper .member-info-wrapper .member-header .member-identity .enrollment-status {
  margin-left: 20px;
}
.route-member-level-care-management .mlcm-page-wrapper .member-info-wrapper .member-header .arrow {
  width: 30px;
  height: 15px;
  background: url(/assets/mlcm/member-info-arrow-icon.svg) no-repeat;
  background-size: cover;
  margin-left: auto;
  transition: all 0.5s;
}
.route-member-level-care-management .mlcm-page-wrapper .member-info-wrapper .member-header .arrow.down {
  transform: scaleY(-1);
}
.route-member-level-care-management .mlcm-page-wrapper .member-info-wrapper .member-header .arrow:hover {
  cursor: pointer;
}
.route-member-level-care-management .mlcm-page-wrapper .member-info-wrapper .info-item-wrapper {
  padding-top: 20px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.route-member-level-care-management .mlcm-page-wrapper .member-info-wrapper .info-item-wrapper .info-item {
  margin: 0 15px 15px 0;
}
.route-member-level-care-management .mlcm-page-wrapper .member-info-wrapper .info-item-wrapper .info-item svg {
  display: block;
}
.route-member-level-care-management .mlcm-page-wrapper .member-info-wrapper .info-item-wrapper .info-item svg path {
  fill: #44789e;
}
.route-member-level-care-management .mlcm-page-wrapper .member-info-wrapper .info-item-wrapper .info-item.PHI .text-wrapper {
  text-transform: uppercase;
}
.route-member-level-care-management .mlcm-page-wrapper .member-info-wrapper .info-item-wrapper .info-item .label {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 300;
}
.route-member-level-care-management .mlcm-page-wrapper .member-info-wrapper .info-item-wrapper .info-item .label .icon {
  margin-right: 3px;
}
.route-member-level-care-management .mlcm-page-wrapper .member-info-wrapper .info-item-wrapper .info-item .text-wrapper {
  border: solid 1px #d6d6d6;
  background: #f9f9f9;
  padding: 4px;
  text-align: center;
  border-radius: 3px;
  margin-top: 5px;
}
.route-member-level-care-management .mlcm-page-wrapper .member-info-wrapper .info-item-wrapper .info-item.dob {
  width: 105px;
}
.route-member-level-care-management .mlcm-page-wrapper .member-info-wrapper .info-item-wrapper .info-item.dob .label .icon {
  width: 14px;
  height: 16px;
}
.route-member-level-care-management .mlcm-page-wrapper .member-info-wrapper .info-item-wrapper .info-item.age {
  width: 42px;
}
.route-member-level-care-management .mlcm-page-wrapper .member-info-wrapper .info-item-wrapper .info-item.age .label .icon {
  width: 14px;
  height: 16px;
}
.route-member-level-care-management .mlcm-page-wrapper .member-info-wrapper .info-item-wrapper .info-item.gender {
  display: block;
  width: 105px;
}
.route-member-level-care-management .mlcm-page-wrapper .member-info-wrapper .info-item-wrapper .info-item.gender .label .icon {
  width: 13px;
  height: 14px;
}
.route-member-level-care-management .mlcm-page-wrapper .member-info-wrapper .info-item-wrapper .info-item.relationship {
  width: 165px;
}
.route-member-level-care-management .mlcm-page-wrapper .member-info-wrapper .info-item-wrapper .info-item.relationship .label .icon {
  width: 20px;
  height: 14px;
}
.route-member-level-care-management .mlcm-page-wrapper .member-info-wrapper .info-item-wrapper .info-item.phone {
  width: 107px;
}
.route-member-level-care-management .mlcm-page-wrapper .member-info-wrapper .info-item-wrapper .info-item.phone .label .icon {
  width: 10px;
  height: 16px;
}
.route-member-level-care-management .mlcm-page-wrapper .member-info-wrapper .info-item-wrapper .info-item.address {
  width: 290px;
}
.route-member-level-care-management .mlcm-page-wrapper .member-info-wrapper .info-item-wrapper .info-item.address .label .icon {
  width: 12px;
  height: 16px;
}
.route-member-level-care-management .mlcm-page-wrapper .member-info-wrapper .info-item-wrapper .info-item.last-visit {
  width: 114px;
}
.route-member-level-care-management .mlcm-page-wrapper .member-info-wrapper .info-item-wrapper .info-item.last-visit .label .icon {
  width: 15px;
  height: 18px;
}
.route-member-level-care-management .mlcm-page-wrapper .member-info-wrapper .info-item-wrapper .info-item.current-risk,
.route-member-level-care-management .mlcm-page-wrapper .member-info-wrapper .info-item-wrapper .info-item.future-risk {
  width: 107px;
}
.route-member-level-care-management .mlcm-page-wrapper .member-info-wrapper .info-item-wrapper .info-item.current-risk .label .icon,
.route-member-level-care-management .mlcm-page-wrapper .member-info-wrapper .info-item-wrapper .info-item.future-risk .label .icon {
  width: 15px;
  height: 14px;
}
.route-member-level-care-management .mlcm-page-wrapper .member-info-wrapper .info-item-wrapper .info-item.chronic-conditions {
  min-width: 280px;
}
.route-member-level-care-management .mlcm-page-wrapper .member-info-wrapper .info-item-wrapper .info-item.chronic-conditions .label .icon {
  width: 15px;
  height: 18px;
}
.route-member-level-care-management .mlcm-page-wrapper .member-info-wrapper .info-item-wrapper .view-dependents {
  border-radius: 3px;
  border: solid 1px white;
  padding: 5px 10px 5px 10px;
  background: #243b5f;
  margin: 8px 0 0 10px;
  color: white;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 300;
  box-shadow: 0px 0.5px 4px 0.5px rgba(0, 0, 0, 0.2);
  transition: all 0.5s;
}
.route-member-level-care-management .mlcm-page-wrapper .member-info-wrapper .info-item-wrapper .view-dependents:hover {
  cursor: pointer;
  background: #4892c7;
}
.route-member-level-care-management .mlcm-page-wrapper .member-info-wrapper .info-item-wrapper .view-dependents .icon {
  display: inline-block;
  background: url("/assets/mlcm/dependents-icon.svg") no-repeat center;
  background-size: cover;
  width: 15px;
  height: 16px;
  margin-right: 3px;
  margin-bottom: -3px;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-widget-wrapper {
  margin-top: 30px;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-widget-wrapper .mlcm-widget {
  background: white;
  border-radius: 5px;
  box-shadow: 0px 0.5px 4px 0.5px rgba(0, 0, 0, 0.1);
  padding: 20px;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-widget-wrapper .mlcm-widget > img {
  width: 100%;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-widget-wrapper .mlcm-widget.predicted-events-title {
  font-size: 18px;
  background: none;
  box-shadow: none;
  padding: 0;
  color: #555555;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-widget-wrapper .mlcm-widget.predicted-events-title span {
  color: #333333;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-widget-wrapper .mlcm-widget .cat-subheader {
  font-size: 18px;
  font-size: 1.8rem;
  color: #656565;
  font-weight: 700;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-widget-wrapper .mlcm-widget .mlcm-list-widget-wrapper .mlcm-list-widget-column {
  height: 200px;
  overflow: scroll;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-widget-wrapper .mlcm-widget .mlcm-list-widget-wrapper .single-category {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  max-height: 200px;
  overflow: scroll;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-widget-wrapper .mlcm-widget .mlcm-list-widget-wrapper .single-category .item-container > .item {
  margin-right: 15px;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-widget-wrapper .mlcm-widget .mlcm-list-widget-wrapper .single-category .item-container > .item > .value {
  margin-right: 5px;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-widget-wrapper .mlcm-widget .mlcm-list-widget-wrapper .item-container {
  font-size: 15px;
  font-size: 1.5rem;
  color: #656565;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-widget-wrapper .mlcm-widget .mlcm-list-widget-wrapper .item-container .item {
  border-bottom: solid 1px #d8d8d8;
  display: flex;
  align-items: center;
  padding-bottom: 5px;
  margin-bottom: 5px;
  text-transform: capitalize;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-widget-wrapper .mlcm-widget .mlcm-list-widget-wrapper .item-container .item .date {
  font-weight: 700;
  margin-left: auto;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-widget-wrapper .mlcm-widget .mlcm-list-widget-wrapper .Overdue-column {
  display: none;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-widget-wrapper .mlcm-widget .mlcm-widget-title {
  font-size: 20px;
  font-size: 2rem;
  color: #2c2c2c;
  margin: 0px 0px 20px 0px;
  display: block;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-widget-wrapper .report-widget-table .hyperlink-text {
  font-size: 12px;
  margin: -10px 0 10px 0;
  display: block;
  color: #555555;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-widget-wrapper .report-widget-table .hyperlink-text a {
  color: #4892c7;
  font-weight: 700;
  font-style: italic;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-widget-wrapper .report-widget-table .table-wrapper {
  border-top: solid 1px #e6e6e6;
}
.route-member-level-care-management .mlcm-page-wrapper .mlcm-widget-wrapper .report-widget-table .table-wrapper table {
  border-top: none;
}
@media only screen and (max-width: 1400px) {
  .route-member-level-care-management .mlcm-page-wrapper .mlcm-member-list-wrapper .sticky-header .header {
    font-size: 12px;
    font-size: 1.2rem;
  }
  .route-member-level-care-management .mlcm-page-wrapper .mlcm-member-list-wrapper .sticky-header .header.rx-spend .title {
    width: 72px;
  }
  .route-member-level-care-management .mlcm-page-wrapper .mlcm-member-list-wrapper .sticky-header .header.medical-spend .title {
    width: 81px;
  }
  .route-member-level-care-management .mlcm-page-wrapper .mlcm-member-list-wrapper .sticky-header .header.high-cost-claimants .title {
    width: 55px;
  }
  .route-member-level-care-management .mlcm-page-wrapper .mlcm-member-list-wrapper .member .id .icon {
    margin-right: 5px;
  }
  .route-member-level-care-management .mlcm-page-wrapper .mlcm-subheader .filter-containers .search {
    width: 165px;
  }
  .route-member-level-care-management .mlcm-page-wrapper .mlcm-subheader .filter-containers .chronic-conditions {
    width: 165px;
  }
}
@media only screen and (max-width: 1290px) {
  .route-member-level-care-management .mlcm-page-wrapper .mlcm-member-list-wrapper .sticky-header .header.risk-change .title {
    width: 45px;
  }
  .route-member-level-care-management .mlcm-page-wrapper .mlcm-member-list-wrapper .sticky-header .header.specialty-rx .title {
    width: 50px;
  }
}
.route-tpnet-2 div.modal {
  background: rgba(0, 0, 0, 0.4);
}
.route-tpnet-2 .advanced-options-modal .content {
  position: relative;
  width: 400px;
}
.route-tpnet-2 .advanced-options-modal .content h2 {
  font-size: 18px;
  font-size: 1.8rem;
  color: #555555;
  margin: 0 0 10px 0;
  font-weight: 300;
  text-align: left;
}
.route-tpnet-2 .advanced-options-modal .content h3 {
  font-size: 16px;
  font-size: 1.6rem;
  color: #555555;
  font-weight: 400;
  padding-bottom: 5px;
  border-bottom: solid 1px #d6d6d6;
  display: table;
  margin: 0 auto;
  margin-bottom: 10px;
}
.route-tpnet-2 .advanced-options-modal .content .advanced-option-content {
  background: #f7f7f7;
  padding: 20px 10px 0 10px;
  border-radius: 3px;
  border: solid 1px #e2e2e2;
}
.route-tpnet-2 .advanced-options-modal .content .advanced-option-content .checkbox-group-container {
  margin-bottom: 20px;
}
.route-tpnet-2 .advanced-options-modal .content .advanced-option-content .checkbox-group {
  display: flex;
  align-items: center;
  margin: 0 auto;
  align-content: space-evenly;
}
.route-tpnet-2 .advanced-options-modal .content .advanced-option-content .checkbox-group .ui-input {
  margin-right: 10px;
}
.route-tpnet-2 .advanced-options-modal .content .advanced-option-content .checkbox-group .ui-input .ui-label {
  color: #666;
}
.route-tpnet-2 .advanced-options-modal .content .advanced-option-content .checkbox-group.value-aggregation-method {
  width: 280px;
}
.route-tpnet-2 .advanced-options-modal .content .advanced-option-content .checkbox-group.report-output-mode {
  width: 235px;
}
.route-tpnet-2 .advanced-options-modal .content .advanced-option-content .checkbox-group .ui-input .ui-label.checkbox {
  grid-gap: 5px;
}
.route-tpnet-2 .advanced-options-modal .content .advanced-option-content .btn-container {
  margin: 0 auto;
  display: table;
  padding: 15px 0 20px 0;
  border-top: 1px solid #d6d6d6;
}
.route-tpnet-2 .advanced-options-modal .content .advanced-option-content .btn-container .btn {
  position: relative;
  border-radius: 5px;
  color: #fff;
  display: inline-block;
  font-weight: 300;
  background: #2e8b9d;
  transition: all 0.4s;
  text-align: left;
  border: none;
  height: 23px;
  vertical-align: top;
}
.route-tpnet-2 .advanced-options-modal .content .advanced-option-content .btn-container .btn .icon {
  position: absolute;
  right: 0;
  top: 0;
  width: 23px;
  height: 23px;
  border-radius: 0 5px 5px 0;
  text-align: center;
  background: #b4e8f2;
}
.route-tpnet-2 .advanced-options-modal .content .advanced-option-content .btn-container .btn.save {
  width: 90px;
  padding-left: 20px;
  margin-right: 5px;
}
.route-tpnet-2 .advanced-options-modal .content .advanced-option-content .btn-container .btn.save:hover {
  background: #106170;
  cursor: pointer;
}
.route-tpnet-2 .advanced-options-modal .content .advanced-option-content .btn-container .btn.save .icon svg {
  width: 15px;
  margin-top: 4px;
}
.route-tpnet-2 .advanced-options-modal .content .advanced-option-content .btn-container .btn.cancel {
  background: #878787;
  width: 80px;
  padding: 4px 0 0 18px;
  height: 19px;
}
.route-tpnet-2 .advanced-options-modal .content .advanced-option-content .btn-container .btn.cancel:hover {
  background: #595959;
  cursor: pointer;
}
.route-tpnet-2 .advanced-options-modal .content .advanced-option-content .btn-container .btn.cancel .icon {
  background: #d6d6d6;
}
.route-tpnet-2 .advanced-options-modal .content .advanced-option-content .btn-container .btn.cancel .icon svg {
  width: 17px;
  margin-top: 3px;
}
.route-tpnet-2 .advanced-options-modal .close-modal {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #d1514a;
  appearance: none;
  border-radius: 100%;
  border: none;
  width: 30px;
  height: 30px;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.4);
  z-index: 5;
  transition: all 0.5s;
}
.route-tpnet-2 .advanced-options-modal .close-modal:hover {
  cursor: pointer;
  background: #ed4651;
}
.route-tpnet-2 .advanced-options-modal .close-modal:before {
  content: "x";
  color: white;
  font-size: 30px;
  font-size: 3rem;
  font-weight: 300;
  position: relative;
  top: -6px;
}
.route-tpnet-2 .tpnet2-content-wrapper {
  max-width: 80%;
  min-width: 975px;
  margin: 0 auto;
}
.route-tpnet-2 .tpnet-header {
  padding: 30px 0px 15px 0px;
  border-bottom: solid 1px #e6e6e6;
}
.route-tpnet-2 .tpnet-header .tpnet-input-wrapper.option-1 .ui-grid,
.route-tpnet-2 .tpnet-header .tpnet-input-wrapper.option-3 .ui-grid {
  grid-template-columns: repeat(3, 1fr) 60px;
}
.route-tpnet-2 .tpnet-header .tpnet-input-wrapper.option-2 .ui-grid {
  grid-template-columns: repeat(2, 1fr) 160px;
}
.route-tpnet-2 .tpnet-header .ui-label {
  border-bottom: solid 1px #d8d8d8;
  margin-bottom: 10px;
  padding-bottom: 5px;
  display: block;
}
.route-tpnet-2 .tpnet-header .ui-label .label-text {
  color: #555555;
  font-weight: 500;
  font-size: 15px;
  font-size: 1.5rem;
}
.route-tpnet-2 .tpnet-header .title-wrapper h1 {
  color: #9b9b9b;
  font-size: 24px;
  font-size: 2.4rem;
  margin: 25px 0px 0px 0px;
}
.route-tpnet-2 .tpnet-header .tpnet-button-container {
  position: relative;
  margin-left: 10px;
  width: 132px;
}
.route-tpnet-2 .tpnet-header .tpnet-button-container.add-input-file {
  width: 160px;
}
.route-tpnet-2 .tpnet-header .tpnet-button-container.bulk-upload-zip {
  width: 95px;
}
.route-tpnet-2 .tpnet-header .tpnet-button-container .tpnet-button {
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  background: none;
  border: none;
}
.route-tpnet-2 .tpnet-header .tpnet-button-container .tpnet-button:hover {
  cursor: pointer;
}
.route-tpnet-2 .tpnet-header .tpnet-button-container .tpnet-button div {
  border-radius: 100%;
  background: white;
  border: solid 1px #243b5f;
  width: 45px;
  height: 45px;
  margin: 0 auto;
  box-shadow: 0px 0.5px 4px 0.5px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
}
.route-tpnet-2 .tpnet-header .tpnet-button-container .tpnet-button div svg {
  display: block;
  margin: 0 auto;
}
.route-tpnet-2 .tpnet-header .tpnet-button-container .tpnet-button div svg .fill {
  transition: 0.3s;
}
.route-tpnet-2 .tpnet-header .tpnet-button-container .tpnet-button span {
  color: #555555;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 300;
  text-align: center;
  display: block;
  margin-top: 5px;
  transition: 0.3s;
}
.route-tpnet-2 .tpnet-header .tpnet-button-container .tpnet-button .fe-excel-icon,
.route-tpnet-2 .tpnet-header .tpnet-button-container .tpnet-button .powerpoint-icon {
  margin-top: 10px;
  width: 19px;
  height: 25px;
  display: block;
}
.route-tpnet-2 .tpnet-header .tpnet-button-container .tpnet-button .fe-excel-icon .fill,
.route-tpnet-2 .tpnet-header .tpnet-button-container .tpnet-button .powerpoint-icon .fill {
  fill: #243b5f;
}
.route-tpnet-2 .tpnet-header .tpnet-button-container .tpnet-button:hover div,
.route-tpnet-2 .tpnet-header .tpnet-button-container .tpnet-button.active div {
  border: solid 1px white;
  background: #243b5f;
}
.route-tpnet-2 .tpnet-header .tpnet-button-container .tpnet-button:hover div .fill,
.route-tpnet-2 .tpnet-header .tpnet-button-container .tpnet-button.active div .fill {
  fill: white;
}
.route-tpnet-2 .tpnet-header .tpnet-button-container .tpnet-button:hover span,
.route-tpnet-2 .tpnet-header .tpnet-button-container .tpnet-button.active span {
  color: #243b5f;
}
.route-tpnet-2 .tpnet-header .tpnet-button-container .tpnet-button[disabled] div {
  box-shadow: none;
  background: #e2e2e2;
  border: solid 1px #e2e2e2;
}
.route-tpnet-2 .tpnet-header .tpnet-button-container .tpnet-button[disabled] div .fill {
  fill: white;
}
.route-tpnet-2 .tpnet-header .tpnet-button-container .tpnet-button[disabled] span {
  color: #e2e2e2;
}
.route-tpnet-2 .tpnet-header .tpnet-button-container .tpnet-button[disabled]:hover {
  cursor: not-allowed;
}
.route-tpnet-2 .tpnet-loader {
  background: rgba(255, 255, 255, 0.5);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 48px;
  z-index: 15;
}
.route-tpnet-2 .tpnet-loader .loading-indicator {
  top: 150px;
}
.route-tpnet-2 .tpnet-loader .loading-indicator h1 {
  margin: 20px 0;
}
.route-tpnet-2 .tpnet-loader + .instructions-wrapper .info-icon {
  opacity: 0;
}
.route-tpnet-2 .tpnet2-landing-container {
  background: #fff;
  border: solid 1px #d6d6d6;
  border-radius: 3px;
  margin-top: 30px;
  padding: 20px;
}
.route-tpnet-2 .tpnet2-landing-container .landing-instruction {
  display: table;
  margin: 0 auto;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 300;
  color: #898989;
}
.route-tpnet-2 .tpnet2-landing-container .landing-instruction .info-icon {
  display: inline-block;
  width: 22px;
  height: 22px;
  background: url("/assets/financial-experience/info-icon.svg");
  background-size: cover;
  margin-right: 5px;
  position: relative;
  top: 4px;
}
.route-tpnet-2 .tpnet2-landing-container .border {
  height: 1px;
  width: 80%;
  background: #d4d4d4;
  margin: 0 auto;
  margin-top: 10px;
  margin-bottom: 30px;
}
.route-tpnet-2 .tpnet2-landing-container .option-container {
  background: #f7f7f7;
  border-radius: 3px;
  padding: 20px;
  box-shadow: inset 0px 0px 3px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
}
.route-tpnet-2 .tpnet2-landing-container .option-container .tpnet-option-card {
  position: relative;
  background: #2c3a4b;
  border-radius: 3px;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.3);
  height: 380px;
  overflow: hidden;
}
.route-tpnet-2 .tpnet2-landing-container .option-container .tpnet-option-card:hover {
  cursor: pointer;
}
.route-tpnet-2 .tpnet2-landing-container .option-container .tpnet-option-card:hover.option-1 .option-number {
  border: solid 1px #b373cd;
}
.route-tpnet-2 .tpnet2-landing-container .option-container .tpnet-option-card:hover.option-2 .option-number {
  border: solid 1px #18b28b;
}
.route-tpnet-2 .tpnet2-landing-container .option-container .tpnet-option-card:hover.option-3 .option-number {
  border: solid 1px #4892c7;
}
.route-tpnet-2 .tpnet2-landing-container .option-container .tpnet-option-card:hover .icon {
  box-shadow: 0px 5px 4px 0px rgba(0, 0, 0, 0.4);
}
.route-tpnet-2 .tpnet2-landing-container .option-container .tpnet-option-card:hover .icon.option-1 {
  background: #b373cd;
}
.route-tpnet-2 .tpnet2-landing-container .option-container .tpnet-option-card:hover .icon.option-2 {
  background: #18b28b;
}
.route-tpnet-2 .tpnet2-landing-container .option-container .tpnet-option-card:hover .icon.option-3 {
  background: #4892c7;
}
.route-tpnet-2 .tpnet2-landing-container .option-container .tpnet-option-card:hover .logo-bg .l1 {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: drawStroke 3s linear forwards;
}
.route-tpnet-2 .tpnet2-landing-container .option-container .tpnet-option-card:hover .logo-bg.option-1 .l1 {
  stroke: #b373cd;
}
.route-tpnet-2 .tpnet2-landing-container .option-container .tpnet-option-card:hover .logo-bg.option-2 .l1 {
  stroke: #18b28b;
}
.route-tpnet-2 .tpnet2-landing-container .option-container .tpnet-option-card:hover .logo-bg.option-3 .l1 {
  stroke: #4892c7;
}
.route-tpnet-2 .tpnet2-landing-container .option-container .tpnet-option-card:hover .text-container.option-1 {
  border: solid 1px #b373cd !important;
}
.route-tpnet-2 .tpnet2-landing-container .option-container .tpnet-option-card:hover .text-container.option-2 {
  border: solid 1px #18b28b !important;
}
.route-tpnet-2 .tpnet2-landing-container .option-container .tpnet-option-card:hover .text-container.option-3 {
  border: solid 1px #4892c7 !important;
}
.route-tpnet-2 .tpnet2-landing-container .option-container .tpnet-option-card .option-number {
  position: absolute;
  top: 10px;
  left: 10px;
  border-radius: 5px;
  background: #2c3a4b;
  border: solid 1px #79818c;
  z-index: 10;
  padding: 5px 10px 5px 10px;
  transition: all 0.5s;
  display: table;
}
.route-tpnet-2 .tpnet2-landing-container .option-container .tpnet-option-card .option-number strong {
  color: #fff;
  text-align: center;
  font-size: 15px;
  font-size: 1.5rem;
  margin: 0 auto;
  display: block;
  margin-top: 0px;
  font-weight: 400;
}
.route-tpnet-2 .tpnet2-landing-container .option-container .tpnet-option-card .content {
  position: relative;
  z-index: 5;
}
.route-tpnet-2 .tpnet2-landing-container .option-container .tpnet-option-card .content .text-container {
  background: #2c3a4b;
  padding: 20px;
  border-radius: 3px;
  margin: 0 auto;
  width: calc(80% - 40px);
  height: 140px;
  color: #fff;
  text-align: center;
  transition: all 0.5s;
}
.route-tpnet-2 .tpnet2-landing-container .option-container .tpnet-option-card .content .text-container.option-1 {
  border: solid 1px #755e7f;
}
.route-tpnet-2 .tpnet2-landing-container .option-container .tpnet-option-card .content .text-container.option-2 {
  border: solid 1px #408574;
}
.route-tpnet-2 .tpnet2-landing-container .option-container .tpnet-option-card .content .text-container.option-3 {
  border: solid 1px #456983;
}
.route-tpnet-2 .tpnet2-landing-container .option-container .tpnet-option-card .content .text-container .title {
  font-size: 20px;
  font-size: 2rem;
  margin-bottom: 5px;
  line-height: 23px;
  line-height: 2.3rem;
}
.route-tpnet-2 .tpnet2-landing-container .option-container .tpnet-option-card .content .text-container .border {
  width: 100%;
  height: 1px;
  margin-bottom: 15px;
  background: #79818c;
}
.route-tpnet-2 .tpnet2-landing-container .option-container .tpnet-option-card .content .text-container .description {
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 16px;
  line-height: 1.6rem;
  margin: 10px 0 0 0;
}
.route-tpnet-2 .tpnet2-landing-container .option-container .tpnet-option-card .content .text-container .description p {
  margin: 0;
}
.route-tpnet-2 .tpnet2-landing-container .option-container .tpnet-option-card .logo-bg svg {
  position: absolute;
  top: 50%;
  margin-top: -265px;
  left: 50%;
  margin-left: -265px;
  width: 525px;
  z-index: 1;
  stroke-width: 0.5;
  transform: rotate(-27deg);
}
.route-tpnet-2 .tpnet2-landing-container .option-container .tpnet-option-card .logo-bg svg .s {
  opacity: 0.6;
  fill: #3b4858;
}
.route-tpnet-2 .tpnet2-landing-container .option-container .tpnet-option-card .icon {
  border-radius: 100%;
  background: #3b4858;
  width: 130px;
  height: 130px;
  margin: 0 auto;
  margin-top: 30px;
  margin-bottom: 10px;
  position: relative;
  transition: all 0.5s ease;
}
.route-tpnet-2 .tpnet2-landing-container .option-container .tpnet-option-card .icon svg {
  margin: 0 auto;
  display: block;
}
.route-tpnet-2 .tpnet2-landing-container .option-container .tpnet-option-card .icon.option-1 {
  border: solid 1px #b373cd;
}
.route-tpnet-2 .tpnet2-landing-container .option-container .tpnet-option-card .icon.option-1 svg {
  width: 84px;
  height: 72px;
  margin-top: 26px;
}
.route-tpnet-2 .tpnet2-landing-container .option-container .tpnet-option-card .icon.option-2 {
  border: solid 1px #18b28b;
}
.route-tpnet-2 .tpnet2-landing-container .option-container .tpnet-option-card .icon.option-2 svg {
  width: 91px;
  margin-top: 26px;
}
.route-tpnet-2 .tpnet2-landing-container .option-container .tpnet-option-card .icon.option-3 {
  border: solid 1px #4892c7;
}
.route-tpnet-2 .tpnet2-landing-container .option-container .tpnet-option-card .icon.option-3 svg {
  width: 105px;
  margin-top: 13px;
}
.route-tpnet-2 .tpnet-content-wrapper {
  background: #fff;
  border: solid 1px #d6d6d6;
  border-radius: 3px;
  margin-top: 30px;
  padding: 20px;
  position: relative;
}
.route-tpnet-2 .tpnet-content-wrapper .back-button {
  padding: 5px 10px 5px 10px;
  background: #2c3a4b;
  border-radius: 5px;
  appearance: none;
  display: flex;
  align-items: center;
  border: none;
  outline: none;
  color: white;
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: 300;
  height: 32px;
  transition: all 0.5s ease;
}
.route-tpnet-2 .tpnet-content-wrapper .back-button:hover {
  cursor: pointer;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}
.route-tpnet-2 .tpnet-content-wrapper .back-button span {
  display: inline-block;
  margin-right: 5px;
  background: url(/assets/compliance-document-storage/back-arrow-icon.svg);
  background-size: cover;
  width: 19px;
  height: 15px;
}
.route-tpnet-2 .tpnet-content-wrapper .col-header {
  display: flex;
  align-items: center;
  padding-bottom: 15px;
}
.route-tpnet-2 .tpnet-content-wrapper .col-header .selected-option-container {
  display: flex;
  align-items: center;
}
.route-tpnet-2 .tpnet-content-wrapper .col-header .selected-option-container .icon {
  width: 30px;
  height: 30px;
  margin: 3px 5px 0px 0px;
}
.route-tpnet-2 .tpnet-content-wrapper .col-header .selected-option-container .icon.option-1 {
  background: url("/assets/tpnet2/no-user-data-icon-small.svg");
  background-size: cover;
}
.route-tpnet-2 .tpnet-content-wrapper .col-header .selected-option-container .icon.option-2 {
  background: url("/assets/tpnet2/some-user-data-icon-small.svg");
  background-size: cover;
}
.route-tpnet-2 .tpnet-content-wrapper .col-header .selected-option-container .icon.option-3 {
  background: url("/assets/tpnet2/data-loaded-innovu-icon-small.svg");
  background-size: cover;
  width: 33px;
  height: 33px;
}
.route-tpnet-2 .tpnet-content-wrapper .col-header .selected-option-container .selected-option p {
  font-size: 12px;
  font-size: 1.2rem;
  color: #888888;
  margin: 0;
}
.route-tpnet-2 .tpnet-content-wrapper .col-header .selected-option-container .selected-option h3 {
  font-size: 18px;
  font-size: 1.8rem;
  color: #555555;
  margin: 0;
  font-weight: 400;
}
.route-tpnet-2 .tpnet-content-wrapper .col-header .advanced-options {
  margin-left: auto;
  appearance: none;
  border: none;
  background: none;
  font-size: 12px;
  font-size: 1.2rem;
  color: #555555;
}
.route-tpnet-2 .tpnet-content-wrapper .col-header .advanced-options .icon {
  width: 13px;
  height: 14px;
  margin: 0 5px 0 0;
  top: 3px;
  position: relative;
  display: inline-block;
  background: url("/assets/tpnet2/cog-icon.svg");
}
.route-tpnet-2 .tpnet-content-wrapper .col-header .advanced-options:hover {
  cursor: pointer;
  text-decoration: underline;
  color: #4892c7;
}
.route-tpnet-2 .tpnet-content-wrapper .content-container {
  box-shadow: inset 0px 0px 3px rgba(0, 0, 0, 0.2);
  background: #f7f7f7;
  border-radius: 3px;
  padding: 20px;
  height: calc(100% - 85px);
  min-height: 300px;
  position: relative;
}
.route-tpnet-2 .tpnet-content-wrapper .content-container.option-1-container {
  height: calc(100% - 115px);
  padding-bottom: 50px;
}
.route-tpnet-2 .tpnet-content-wrapper .instruction-container .title {
  color: #555555;
  font-size: 18px;
  font-size: 1.8rem;
  margin: 0;
  font-weight: 400;
  text-wrap: nowrap;
}
.route-tpnet-2 .tpnet-content-wrapper .instruction-container .title .icon {
  background: url(/assets/financial-experience/info-icon.svg);
  width: 27px;
  height: 27px;
  background-size: cover;
  display: inline-block;
  margin-right: 10px;
  position: relative;
  top: 6px;
}
.route-tpnet-2 .tpnet-content-wrapper .instruction-container .border {
  height: 1px;
  width: 100%;
  background: #4892c7;
  margin: 12px 0 12px 0;
}
.route-tpnet-2 .tpnet-content-wrapper .instruction-container ul {
  margin: 0;
  padding: 0 0 0 20px;
}
.route-tpnet-2 .tpnet-content-wrapper .instruction-container ul li {
  color: #4892c7;
  margin: 15px 0px 0px 0px;
  line-height: 20px;
  font-size: 16px;
  font-size: 1.6rem;
}
.route-tpnet-2 .tpnet-content-wrapper .instruction-container ul li span {
  color: #555555;
}
.route-tpnet-2 .tpnet-content-wrapper .selection-container .title {
  color: #555555;
  font-size: 18px;
  font-size: 1.8rem;
  margin: 10px 0 0 0;
  font-weight: 400;
}
.route-tpnet-2 .tpnet-content-wrapper .selection-container .border {
  height: 1px;
  width: 100%;
  background: #4892c7;
  margin: 12px 0 12px 0;
}
.route-tpnet-2 .tpnet-content-wrapper .selection-container .ui-grid {
  height: 100%;
}
.route-tpnet-2 .tpnet-content-wrapper .selection-container .selection-content {
  background: #fff;
  border: solid 1px #d6d6d6;
  border-radius: 3px;
  padding: 10px;
  height: calc(100% - 70px);
  max-height: 300px;
  position: relative;
}
.route-tpnet-2 .tpnet-content-wrapper .selection-container .selection-content.carrier-plan-type .tag-container {
  padding-top: 40px;
}
.route-tpnet-2 .tpnet-content-wrapper .selection-container .selection-content.carrier-plan-type .tag {
  margin-right: 15px;
}
.route-tpnet-2 .tpnet-content-wrapper .selection-container .selection-content .tag-container {
  overflow-y: auto;
  height: 100%;
}
.route-tpnet-2 .tpnet-content-wrapper .selection-container .selection-content .benchmark-index-label {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #555555;
  font-weight: 300;
  font-size: 12px;
  font-size: 1.2rem;
  margin: 0;
}
.route-tpnet-2 .tpnet-content-wrapper .selection-container .selection-content .tag-radio-container {
  display: flex;
  align-items: center;
}
.route-tpnet-2 .tpnet-content-wrapper .selection-container .selection-content .tag-radio-container input[type="radio"] {
  margin: 0 auto;
  margin-right: 5px;
}
.route-tpnet-2 .tpnet-content-wrapper .selection-container .selection-content .tag {
  background: #f7f7f7;
  border-radius: 10px;
  border: solid 1px #d4d4d4;
  padding: 4px 20px 4px 4px;
  display: table;
  margin-bottom: 5px;
  transition: all 0.5s;
  position: relative;
}
.route-tpnet-2 .tpnet-content-wrapper .selection-container .selection-content .tag:hover {
  cursor: pointer;
  border: solid 1px #e75353;
  background: #efefef;
}
.route-tpnet-2 .tpnet-content-wrapper .selection-container .selection-content .tag p {
  color: #555555;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 300;
  margin: 0;
  display: inline-block;
}
.route-tpnet-2 .tpnet-content-wrapper .selection-container .selection-content .tag .close-icon {
  width: 10px;
  height: 9px;
  display: inline-block;
  margin-left: 10px;
  background: url(/assets/tpnet2/close-icon.svg);
  position: absolute;
  right: 5px;
  top: 50%;
  margin-top: -5px;
}
.route-tpnet-2 .tpnet-content-wrapper .selection-container .file-upload-warning-alert {
  position: relative;
  z-index: 10;
  color: #555555;
  text-decoration: underline;
  transition: all 0.5s;
  font-size: 12px;
  font-size: 1.2rem;
}
.route-tpnet-2 .tpnet-content-wrapper .selection-container .file-upload-warning-alert .icon {
  background: url(/assets/tpnet2/warning-icon.svg);
  background-size: cover;
  width: 11px;
  height: 11px;
  margin: 0 4px 0 0;
  top: 2px;
  position: relative;
  display: inline-block;
}
.route-tpnet-2 .tpnet-content-wrapper .selection-container .file-upload-warning-alert:hover {
  color: #000;
  cursor: pointer;
}
.route-tpnet-2 .cfr-dropdown::before {
  left: 88%;
}
.route-tpnet-2 .cfr-dropdown::after {
  left: 88%;
}
.route-tpnet-2 .file-upload-warnings-wrapper {
  background: #fff;
  border: solid 1px #d6d6d6;
  border-radius: 3px;
  margin-top: 30px;
  padding: 20px;
}
.route-tpnet-2 .file-upload-warnings-wrapper h3 {
  margin: 0 0 10px 0;
  color: #555555;
  display: inline-block;
}
.route-tpnet-2 .file-upload-warnings-wrapper h3 .icon {
  background: url(/assets/tpnet2/warning-icon.svg);
  background-size: cover;
  width: 15px;
  height: 15px;
  margin: 0 5px 0 0;
  top: 1px;
  position: relative;
  display: inline-block;
}
.route-tpnet-2 .file-upload-warnings-wrapper p {
  display: inline-block;
  font-size: 12px;
  font-size: 1.2rem;
  margin: 0 0 0 5px;
  font-style: italic;
  color: #555555;
}
.route-tpnet-2 .file-upload-warnings-wrapper .warning-content {
  background: #f7f7f7;
  border-radius: 3px;
  padding: 15px 15px 10px 15px;
  box-shadow: inset 0px 0px 3px rgba(0, 0, 0, 0.2);
  max-height: 200px;
  overflow-y: scroll;
}
.route-tpnet-2 .file-upload-warnings-wrapper .warning-content ol {
  padding: 0 0 0 25px;
  margin: 0;
}
.route-tpnet-2 .file-upload-warnings-wrapper .warning-content ol li {
  margin: 0 0 5px 0;
  color: #333;
}
.route-tpnet-2 .ui-block.cbsa {
  display: flex;
}
.route-tpnet-2 .ui-block.cbsa .cbsa-lookup {
  width: 183.61px;
}
.route-tpnet-2 .zip-upload {
  width: 490px;
}
@media only screen and (max-width: 1480px) {
  .route-tpnet-2 .tpnet2-landing-container .option-container .tpnet-option-card {
    height: 100%;
    padding-bottom: 15px;
  }
  .route-tpnet-2 .tpnet2-landing-container .option-container .tpnet-option-card .logo-bg svg {
    margin-top: -100%;
    margin-left: -90%;
    width: 180%;
  }
  .route-tpnet-2 .tpnet2-landing-container .option-container .tpnet-option-card .content .text-container {
    height: auto;
  }
  .route-tpnet-2 .tpnet2-landing-container .option-container .tpnet-option-card .content .text-container .title {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 21px;
    line-height: 2.1rem;
  }
  .route-tpnet-2 .tpnet-content-wrapper .col-header .advanced-options {
    position: absolute;
    right: 5px;
    top: 7px;
  }
  .route-tpnet-2 .tpnet-content-wrapper .instruction-container ul li {
    font-size: 14px;
    font-size: 1.4rem;
  }
  .route-tpnet-2 .tpnet-content-wrapper .instruction-container .title {
    font-size: 16px;
    font-size: 1.6rem;
  }
  .route-tpnet-2 .tpnet-content-wrapper .instruction-container .title .icon {
    width: 24px;
    height: 24px;
  }
  .route-tpnet-2 .tpnet-content-wrapper .selection-container .title {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.fr-landing-wrapper {
  background: white;
  padding: 20px 50px 20px 50px;
  border: solid 1px #e6e6e6;
  border-radius: 5px;
  margin-top: 30px;
  min-width: 1130px;
}
.fr-landing-wrapper h2 {
  color: #898989;
  font-weight: 200;
  text-align: center;
  margin: 0;
}
.fr-landing-wrapper h2 span {
  background: url("/assets/financial-experience/info-icon.svg");
  width: 20px;
  height: 20px;
  background-size: cover;
  display: inline-block;
  margin: 0px 5px -3px 0px;
}
.fr-landing-wrapper .border {
  height: 1px;
  width: 100%;
  background: #e6e6e6;
  margin: 30px 0px 30px 0px;
}
.fr-landing-content {
  max-width: 90%;
  margin: 0 auto;
}
.fr-landing-content .fr-report-btn-container {
  background: #f7f7f7;
  border-radius: 5px;
  padding: 30px 80px 30px 80px;
  box-shadow: inset 0px 0px 3px rgba(0, 0, 0, 0.2);
}
.fr-landing-content .fr-report-btn-container .fr-btn .icon svg {
  width: 35px;
  margin: 0 auto;
  margin-top: 16px;
}
.fr-landing-content .fr-report-btn-container .slcd-btn .icon svg {
  width: 35px;
  margin: 0 auto;
  margin-top: 16px;
}
.fr-landing-content .fr-report-btn-container .icon-wrapper {
  width: 78px;
  height: 78px;
  border-radius: 100%;
  background: linear-gradient(to right, #3eb39f, #2863a8);
  padding: 1px;
  position: absolute;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.4);
  transition: 0.5s;
  top: 17px;
  left: 10px;
  z-index: 10;
}
.fr-landing-content .fr-report-btn-container .icon-wrapper .icon {
  background: #293647;
  border-radius: 100%;
  height: 100%;
}
.fr-landing-content .fr-report-btn-container .text-container {
  width: 100%;
  height: 100%;
  background: #2c3a4b;
  border-radius: 0px 8px 8px 0;
}
.fr-landing-content .fr-report-btn-container .text-wrapper {
  color: #fff;
  position: absolute;
  bottom: 0;
  z-index: 5;
  height: 55px;
  width: 86%;
  left: 10%;
  border-radius: 0 8px 8px 0;
  background: linear-gradient(to right, #2863a8, #3eb39f);
  top: 28px;
  padding: 1px;
  transition: 0.5s;
}
.fr-landing-content .fr-report-btn-container .text-wrapper p {
  text-align: left;
  position: relative;
  left: 55px;
  top: 0px;
}
.fr-landing-content .fr-report-btn-container .text-wrapper h3 {
  font-size: 20px;
  font-size: 2rem;
  line-height: 20px;
  font-weight: 500;
  text-align: left;
  position: relative;
}
.fr-landing-content .fr-report-btn-container .text-wrapper.focus-report h3 {
  margin: 0;
  left: 55px;
  top: 8px;
}
.fr-landing-content .fr-report-btn-container .text-wrapper.stop-loss h3 {
  margin: 0;
  left: 55px;
  top: 17px;
}
.fr-landing-content .fr-report-btn-container .list-wrapper {
  border-radius: 8px;
  border: solid 1px #2f7ea5;
  padding: 20px;
  width: calc(100% - 60px);
  margin: 0px 0px 0px 0px;
  max-width: 390px;
  height: 97px;
  position: relative;
  top: 48px;
  left: 9px;
  color: #fff;
  font-size: 1.2rem;
  font-size: 12px;
  z-index: 2;
}
.fr-landing-content .fr-report-btn-container .list-wrapper ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.fr-landing-content .fr-report-btn-container .list-wrapper ul li {
  margin: 0 0 10px 0;
  text-align: left;
  display: flex;
}
.fr-landing-content .fr-report-btn-container .list-wrapper ul li span {
  display: block;
}
.fr-landing-content .fr-report-btn-container .list-wrapper ul li::before {
  content: "\20DD";
  font-size: 12px;
  font-size: 1.2rem;
  color: #3eb39f;
  margin: 1px 15px 0 0;
}
.fr-landing-content .fr-report-btn-container .list-wrapper .bg {
  position: absolute;
}
.fr-landing-content .fr-report-btn-container button {
  width: 100%;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.2);
  height: 260px;
  overflow: hidden;
  position: relative;
  background: #2c3a4b;
  background-image: linear-gradient(#2c3a4b, #17212c);
  border: none;
  appearance: none;
  border-radius: 5px;
}
.fr-landing-content .fr-report-btn-container button .bg-logo {
  position: absolute;
  z-index: 1;
  top: -93px;
  left: -100px;
  width: 300px;
  height: 300px;
  transition: 0.5s;
  background: url("/assets/focus-report/logo-lens-gradient.svg") no-repeat;
}
.fr-landing-content .fr-report-btn-container button:hover {
  cursor: pointer;
}
.fr-landing-content .fr-report-btn-container button:hover .icon-wrapper {
  box-shadow: 0px 7px 7px rgba(0, 0, 0, 0.4);
}
.fr-landing-content .fr-report-btn-container button:hover .text-wrapper {
  box-shadow: 0px 7px 7px rgba(0, 0, 0, 0.4);
}
.fr-page-wrapper {
  max-width: 1330px;
  min-width: 850px;
  margin: 0 auto;
  padding-bottom: 50px;
  width: calc(100% - 80px);
}
.fr-header {
  padding: 30px 0px 15px 0px;
  border-bottom: solid 1px #e6e6e6;
}
.fr-header .ui-label {
  border-bottom: solid 1px #d8d8d8;
  margin-bottom: 10px;
  padding-bottom: 5px;
  display: block;
}
.fr-header .ui-label .label-text {
  color: #555555;
  font-weight: 500;
  font-size: 15px;
  font-size: 1.5rem;
}
.fr-header .ui-button.back {
  margin-right: 25px;
}
.fr-header.slcd .ui-label {
  border-bottom: solid 1px #d8d8d8;
  margin-bottom: 10px;
}
.fr-header.slcd .ui-label .label-text {
  color: #555555;
  font-weight: 500;
  font-size: 15px;
  font-size: 1.5rem;
}
.fr-header.slcd .slcd-input-wrapper {
  position: relative;
}
.fr-header.slcd .slcd-input-wrapper .ui-button.back {
  position: absolute;
  left: -40px;
  top: 20px;
}
.fr-header .title-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.fr-header .title-wrapper h1 {
  color: #9b9b9b;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 22px;
  margin: 0px 0px 10px 0px;
}
.fr-header .title-wrapper h2 {
  color: #6b6b6b;
  font-size: 15px;
  font-size: 1.5rem;
}
.fr-header .input-wrapper {
  display: flex;
  align-items: center;
  width: 650px;
  max-width: 650px;
  margin-left: auto;
}
.fr-header .fr-plan-year-container {
  display: flex;
  align-items: center;
  margin-right: 10px;
}
.fr-header .fr-plan-year-container .ui-label {
  color: #555555;
  font-weight: 300;
  font-size: 15px;
  font-size: 1.5rem;
  margin: 5px 10px 0px 0px;
}
.fr-header .fr-plan-year-container .ember-basic-dropdown-trigger {
  width: 150px;
  box-shadow: 0px 1px 3px 2px #e5e5e5;
  border: solid 1px white;
}
.fr-header .fr-plan-year-container .ember-basic-dropdown-content {
  box-shadow: 0px 1px 3px 2px #e5e5e5;
  border: none;
}
.fr-header .fr-button-container {
  position: relative;
}
.fr-header .fr-button-container .fr-button {
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  background: none;
  border: none;
}
.fr-header .fr-button-container .fr-button:hover {
  cursor: pointer;
}
.fr-header .fr-button-container .fr-button div {
  border-radius: 100%;
  background: white;
  border: solid 1px #003b5c;
  width: 45px;
  height: 45px;
  margin: 0 auto;
  box-shadow: 0px 0.5px 4px 0.5px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
}
.fr-header .fr-button-container .fr-button div svg {
  display: block;
  margin: 0 auto;
}
.fr-header .fr-button-container .fr-button div svg .fill {
  transition: 0.3s;
}
.fr-header .fr-button-container .fr-button span {
  color: #555555;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 300;
  text-align: center;
  display: block;
  margin-top: 5px;
  transition: 0.3s;
}
.fr-header .fr-button-container .fr-button .fe-excel-icon,
.fr-header .fr-button-container .fr-button .fe-word-icon {
  margin-top: 10px;
  width: 19px;
  height: 25px;
  display: block;
}
.fr-header .fr-button-container .fr-button .fe-excel-icon .fill,
.fr-header .fr-button-container .fr-button .fe-word-icon .fill {
  fill: #243b5f;
}
.fr-header .fr-button-container .fr-button:hover div,
.fr-header .fr-button-container .fr-button.active div {
  border: solid 1px white;
  background: #003b5c;
}
.fr-header .fr-button-container .fr-button:hover div .fill,
.fr-header .fr-button-container .fr-button.active div .fill {
  fill: white;
}
.fr-header .fr-button-container .fr-button:hover span,
.fr-header .fr-button-container .fr-button.active span {
  color: #003b5c;
}
.fr-header .fr-button-container .fr-button[disabled] div {
  box-shadow: none;
  background: #e2e2e2;
  border: solid 1px #e2e2e2;
}
.fr-header .fr-button-container .fr-button[disabled] div .fill {
  fill: white;
}
.fr-header .fr-button-container .fr-button[disabled] span {
  color: #e2e2e2;
}
.fr-header .fr-button-container .fr-button[disabled]:hover {
  cursor: not-allowed;
}
.fr-header .pepm-pmpm .ui-toggle-switch {
  max-width: 75px;
  font-weight: bold;
}
.fr-header .pepm-pmpm .ui-toggle-switch label {
  background: #18b28b;
}
.fr-header .pepm-pmpm .ui-toggle-switch .inset-text {
  color: white;
}
.data-health-header {
  display: flex !important;
  align-items: center;
  margin: 10px 0 0 15px;
  position: relative;
}
.data-health-header h3 {
  color: #6b6b6b;
  font-size: 13px;
  font-size: 1.3rem;
  margin-right: 10px;
}
.data-health-header .cohort-message {
  font-size: 12px;
  font-size: 1.2rem;
  margin: 3px 10px 0 0;
  color: #555555;
  border-bottom: solid 1px #d6d6d6;
  padding: 0 0 2px 0;
}
.data-health-header .date-wrapper {
  font-size: 13px;
  font-size: 1.3rem;
  font-weight: 600;
  margin-right: 5px;
  border-right: solid 2px #c0bdbd;
  padding-right: 5px;
}
.data-health-header .date-wrapper:nth-child(4n) {
  border-right: none;
}
.data-health-header .date-wrapper .cat {
  color: #555555;
}
.data-health-header .date-wrapper .date {
  color: #356a91;
}
.data-health-header .plan-design-status-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  height: 50%;
}
.data-health-header .plan-design-status-wrapper .plan-design-status span {
  color: #555555;
  font-weight: 600;
  font-size: 13px;
  font-size: 1.3rem;
}
.data-health-header .expandable-btn-wrapper {
  position: absolute;
  height: 25px;
  top: 8px;
  right: 0px;
}
.data-health-header .expandable-btn-wrapper .expandable-btn {
  position: absolute;
  width: 25px;
  height: 25px;
  border-radius: 5px;
  background: #fafafa;
  overflow: hidden;
  transition: all 0.5s;
  left: 0;
  z-index: 10;
  border: solid 1px #3a77a3;
}
.data-health-header .expandable-btn-wrapper .expandable-btn > div {
  display: flex;
  align-items: center;
  position: absolute;
  width: 125px;
  left: 0;
}
.data-health-header .expandable-btn-wrapper .expandable-btn .text {
  font-size: 11px;
  font-size: 1.1rem;
  color: #fff;
  font-weight: 500;
  background: #1e3f56;
  width: 100%;
  height: 15px;
  padding: 6px 5px 5px 5px;
  border-left: solid 1px #3a77a3;
}
.data-health-header .expandable-btn-wrapper .expandable-btn .icon {
  margin: 2px 0 2px 4px;
  width: 30px;
  height: 16px;
  transition: all 0.5s;
  background: url(/assets/data-health/data-health-icon.svg) no-repeat;
}
.data-health-header .expandable-btn-wrapper .expandable-btn:hover {
  width: 125px;
  cursor: pointer;
  box-shadow: -1px 1px 4px 1px rgba(0, 0, 0, 0.1);
}
.route-data-health .data-health-wrapper {
  overflow: scroll;
  width: 80%;
  margin: 0 auto;
  padding-bottom: 20px;
}
.route-data-health .data-health-wrapper .subheader {
  padding: 20px 0 20px 0;
}
.route-data-health .data-health-wrapper .subheader h1 {
  position: relative;
  color: #9b9b9c;
  display: table;
  font-size: 24px;
  font-size: 2.4rem;
}
.route-data-health .data-health-wrapper .ui-block {
  background: #fff;
  padding: 20px 20px 20px 20px;
  border-radius: 6px;
  border: solid 1px #d6d6d6;
}
.route-data-health .data-health-wrapper .data-health-info {
  padding: 20px 20px 10px 20px;
  color: #555555;
}
.route-data-health .data-health-wrapper .data-health-info h2 {
  margin: 0 0 10px 0;
  padding: 0 0 8px 0;
  font-size: 16px;
  font-size: 1.6rem;
  display: table;
  font-weight: 600;
  border-bottom: solid 1px #ffb327;
}
.route-data-health .data-health-wrapper .data-health-info p {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 16px;
  margin: 0 0 10px 0;
}
.route-data-health .data-health-wrapper .data-health-info ul {
  margin: 10px 0 15px 0;
  padding: 0;
}
.route-data-health .data-health-wrapper .data-health-info ul li {
  list-style: none;
  margin: 0 0 5px 0;
}
.route-data-health .data-health-wrapper .data-health-info ul li:before {
  content: "\2022";
  font-size: 16px;
  font-size: 1.6rem;
  color: #ffb327;
  margin: 0 7px 0 0;
  top: 2px;
  position: relative;
}
.route-data-health .data-health-wrapper .last-data-load {
  color: #555555;
}
.route-data-health .data-health-wrapper .last-data-load h3 {
  padding: 0 0 8px 0;
  font-size: 18px;
  font-size: 1.8rem;
  display: table;
  font-weight: 600;
  border-bottom: solid 1px #ffb327;
  margin: 0 auto;
}
.route-data-health .data-health-wrapper .last-data-load.med .icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(/assets/data-health/medical-icon.svg) no-repeat;
  background-size: cover;
  margin: 0px 5px -3px 0;
}
.route-data-health .data-health-wrapper .last-data-load.rx .icon {
  display: inline-block;
  width: 15px;
  height: 20px;
  background: url(/assets/data-health/rx-icon.svg) no-repeat;
  background-size: cover;
  margin: 0px 5px -3px 0;
}
.route-data-health .data-health-wrapper .last-data-load.enr .icon {
  display: inline-block;
  width: 20px;
  height: 16px;
  background: url(/assets/data-health/enrollment-icon.svg) no-repeat;
  background-size: cover;
  margin: 0px 5px -3px 0;
}
.route-data-health .data-health-wrapper .last-data-load .date {
  background: #f8f8f8;
  border: solid 1px #d6d6d6;
  border-radius: 6px;
  font-size: 24px;
  font-size: 2.4rem;
  color: #555555;
  padding: 15px 25px 15px 25px;
  margin: 0 auto;
  display: table;
  margin-top: 15px;
  font-weight: 500;
}
.route-data-health .data-health-wrapper .widget-title {
  font-size: 20px;
  font-size: 2rem;
  color: #555555;
  margin: 0;
}
@media only screen and (max-width: 1350px) {
  .data-health-header {
    margin: 13px 0 0 15px;
    max-width: 260px;
  }
  .data-health-header h3 {
    font-size: 12px;
    font-size: 1.2rem;
  }
  .data-health-header .date-wrapper {
    font-size: 12px;
    font-size: 1.2rem;
  }
  .data-health-header .expandable-btn-wrapper {
    top: 6px;
  }
  .data-health-header .plan-design-status-wrapper {
    margin-top: 2px;
  }
}
@media only screen and (max-width: 1160px) {
  .data-health-header h3 {
    font-size: 11px;
    font-size: 1.1rem;
  }
  .data-health-header .date-wrapper {
    max-width: 50px;
    border-right: solid 1px #c0bdbd;
    font-size: 11px;
    font-size: 1.1rem;
  }
  .data-health-header .date-wrapper .date {
    display: block;
  }
  .data-health-header .plan-design-status-wrapper {
    margin-right: 10px;
    margin-top: 2px;
  }
  .data-health-header .plan-design-status-wrapper .plan-design-status h3 {
    font-size: 11px;
    font-size: 1.1rem;
  }
  .data-health-header .plan-design-status-wrapper .plan-design-status span {
    font-size: 11px;
    font-size: 1.1rem;
  }
}
@media only screen and (max-width: 1135px) {
  .data-health-header {
    margin: 13px 0 0 10px;
  }
  .data-health-header .data-health-loader {
    display: none;
  }
  .data-health-header h3 {
    display: none;
  }
  .data-health-header .date-wrapper {
    display: none;
  }
  .data-health-header .plan-design-status-wrapper {
    display: none;
  }
}
.route-deductible-oop-tracking .ember-power-select-dropdown.ember-basic-dropdown-content--below {
  border-bottom: 1px solid #d8d8d8;
}
.route-deductible-oop-tracking .ember-power-select-dropdown {
  border-left: 1px solid #d8d8d8;
  border-right: 1px solid #d8d8d8;
}
.doopt-page-wrapper {
  max-width: 1330px;
  min-width: 850px;
  margin: 0 auto;
  padding-bottom: 50px;
  width: calc(100% - 80px);
}
.doopt-page-wrapper .ui-block.month,
.doopt-page-wrapper .ui-block.year,
.doopt-page-wrapper .ui-block.benchmark {
  position: relative;
}
.doopt-page-wrapper .ui-block.exportOnly,
.doopt-page-wrapper .ui-block.exportPlus {
  margin: 0 auto;
}
.doopt-page-wrapper .ui-block.exportOnly .doopt-button-container,
.doopt-page-wrapper .ui-block.exportPlus .doopt-button-container {
  margin: 0;
}
.doopt-page-wrapper .doopt-loading-container {
  position: absolute;
  top: -10px;
  right: 20px;
}
.doopt-page-wrapper .doopt-loading-container .spinner {
  width: 20px;
  height: 20px;
}
.doopt-page-wrapper .doopt-dropdown::after,
.doopt-page-wrapper .doopt-dropdown::before {
  left: var(--dooptAddDataDropdownPseudoLeftPosition, 89.2%);
}
.doopt-header-wrapper {
  margin-bottom: 20px;
}
.doopt-header-wrapper .title-wrapper {
  border-bottom: solid 1px #e6e6e6;
  padding: 0px 0px 25px 0px;
}
.doopt-header-wrapper .title-wrapper h1 {
  color: #9b9b9b;
  font-size: 24px;
  font-size: 2.4rem;
  margin: 25px 0px 0px 0px;
}
.doopt-header-wrapper .title-wrapper h2 {
  color: #6b6b6b;
  font-size: 15px;
  font-size: 1.5rem;
  margin: 12px 0px 0px 0px;
}
.doopt-header-wrapper .doopt-header {
  padding: 30px 0px 15px 0px;
  border-bottom: solid 1px #e6e6e6;
}
.doopt-header-wrapper .doopt-header .ui-label {
  border-bottom: solid 1px #d8d8d8;
  margin-bottom: 10px;
  padding-bottom: 5px;
  display: block;
}
.doopt-header-wrapper .doopt-header .ui-label .label-text {
  color: #555555;
  font-weight: 500;
  font-size: 15px;
  font-size: 1.5rem;
}
.doopt-header-wrapper .doopt-header .ix-select {
  border: 1px #d8d8d8 solid;
  border-radius: 8px;
  background: url(/assets/img/select-arrow.svg) no-repeat calc(100% - 10px) center;
}
.doopt-header-wrapper .doopt-header .ember-power-select-trigger {
  border-top: 1px #d8d8d8 solid;
  border-bottom: 1px #d8d8d8 solid;
  border-left: 1px #d8d8d8 solid;
  border-right: 1px #d8d8d8 solid;
  border-radius: 8px;
}
.doopt-header-wrapper .doopt-header .ember-basic-dropdown-trigger[aria-expanded="true"] .ember-power-select-status-icon {
  transform: rotate(180deg);
  top: -5px !important;
}
.doopt-header-wrapper .doopt-header .ember-power-select-status-icon {
  background: url(/assets/img/select-arrow.svg) no-repeat;
  right: 8px;
  width: 10px;
  height: 10px;
  top: 4px;
  border: none;
}
.doopt-header-wrapper .doopt-header input[type="search"] {
  border: none;
  background: none;
  width: 100%;
}
.doopt-header-wrapper .doopt-header .select-container {
  display: flex;
  align-items: center;
}
.doopt-header-wrapper .doopt-header .select-container .month {
  margin: 0 5px 0 0;
}
.doopt-header-wrapper .doopt-header .doopt-button-container {
  position: relative;
  margin: 0 auto;
}
.doopt-header-wrapper .doopt-header .doopt-button-container .doopt-button {
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  background: none;
  border: none;
}
.doopt-header-wrapper .doopt-header .doopt-button-container .doopt-button:hover {
  cursor: pointer;
}
.doopt-header-wrapper .doopt-header .doopt-button-container .doopt-button div {
  border-radius: 100%;
  background: white;
  border: solid 1px #243b5f;
  width: 45px;
  height: 45px;
  margin: 0 auto;
  box-shadow: 0px 0.5px 4px 0.5px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
}
.doopt-header-wrapper .doopt-header .doopt-button-container .doopt-button div svg {
  display: block;
  margin: 0 auto;
}
.doopt-header-wrapper .doopt-header .doopt-button-container .doopt-button div svg .fill {
  transition: 0.3s;
}
.doopt-header-wrapper .doopt-header .doopt-button-container .doopt-button span {
  color: #555555;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 300;
  text-align: center;
  display: block;
  margin-top: 5px;
  transition: 0.3s;
}
.doopt-header-wrapper .doopt-header .doopt-button-container .doopt-button .fe-word-icon,
.doopt-header-wrapper .doopt-header .doopt-button-container .doopt-button .fe-excel-icon {
  margin-top: 10px;
  width: 19px;
  height: 25px;
}
.doopt-header-wrapper .doopt-header .doopt-button-container .doopt-button .fe-word-icon .fill,
.doopt-header-wrapper .doopt-header .doopt-button-container .doopt-button .fe-excel-icon .fill {
  fill: #243b5f;
}
.doopt-header-wrapper .doopt-header .doopt-button-container .doopt-button:hover div,
.doopt-header-wrapper .doopt-header .doopt-button-container .doopt-button.active div {
  border: solid 1px white;
  background: #243b5f;
}
.doopt-header-wrapper .doopt-header .doopt-button-container .doopt-button:hover div .fill,
.doopt-header-wrapper .doopt-header .doopt-button-container .doopt-button.active div .fill {
  fill: white;
}
.doopt-header-wrapper .doopt-header .doopt-button-container .doopt-button:hover span,
.doopt-header-wrapper .doopt-header .doopt-button-container .doopt-button.active span {
  color: #243b5f;
}
.doopt-header-wrapper .doopt-header .doopt-button-container .doopt-button[disabled] div {
  box-shadow: none;
  background: #e2e2e2;
  border: solid 1px #e2e2e2;
}
.doopt-header-wrapper .doopt-header .doopt-button-container .doopt-button[disabled] div .fill {
  fill: white;
}
.doopt-header-wrapper .doopt-header .doopt-button-container .doopt-button[disabled] span {
  color: #e2e2e2;
}
.doopt-header-wrapper .doopt-header .doopt-button-container .doopt-button[disabled]:hover {
  cursor: not-allowed;
}
.doopt-content-wrapper .instructions-wrapper {
  width: 800px;
  margin: 0 auto;
  margin-top: 50px;
}
.doopt-content-wrapper .instructions-wrapper .info-icon {
  background: url("/assets/financial-experience/info-icon.svg");
  width: 75px;
  height: 75px;
  background-size: cover;
  margin: 0 auto;
  margin-bottom: 20px;
}
.doopt-content-wrapper .instructions-wrapper .content {
  border-top: solid 1px #e6e6e6;
  border-bottom: solid 1px #e6e6e6;
  padding: 30px;
  font-size: 18px;
  font-size: 1.8rem;
  color: #555555;
}
.doopt-content-wrapper .instructions-wrapper .content ul {
  margin: 0;
  padding: 0 0 0 20px;
}
.doopt-content-wrapper .instructions-wrapper .content ul li {
  color: #4892c7;
  margin: 0px 0px 20px 0px;
  line-height: 20px;
}
.doopt-content-wrapper .instructions-wrapper .content ul li span {
  color: #555555;
}
.doopt-loader {
  position: relative;
}
.doopt-loader .loading-indicator {
  top: 20px;
}
.doopt-loader .loading-indicator h1 {
  margin: 20px 0;
}
.deductible-oop-tracking-plan {
  padding: 20px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 10px;
  position: relative;
}
.deductible-oop-tracking-plan .content-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr auto;
  gap: 16px;
  align-items: end;
  padding: 15px;
  background: #f5f7fa;
  border: 1px solid #2c72a6;
  border-radius: 8px;
  position: relative;
}
.deductible-oop-tracking-plan .plan-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.deductible-oop-tracking-plan .plan-field .plan-name-label {
  margin-bottom: -9px;
}
.deductible-oop-tracking-plan .plan-field .plan-name {
  background: #fff;
  border: solid 1px #81a1b8;
  padding: 5px;
  border-radius: 8px;
}
.deductible-oop-tracking-plan .plan-field .ui-input .ui-field-container .grid-container {
  border: solid 1px #81a1b8;
  border-radius: 8px;
}
.deductible-oop-tracking-plan .plan-field .deductible-type-label {
  margin-bottom: -9px;
}
.deductible-oop-tracking-plan .plan-field .checkbox-container {
  display: flex;
  align-items: center;
  height: 25px;
}
.deductible-oop-tracking-plan .plan-field .checkbox-container .ui-input:first-of-type {
  margin-right: 10px;
}
.deductible-oop-tracking-plan .plan-field .checkbox-container input[type="checkbox"] {
  width: 20px;
}
.deductible-oop-tracking-plan .close-btn {
  position: absolute;
  top: 5px;
  right: 5px;
  border: none;
  background-color: transparent;
}
.deductible-oop-tracking-plan .close-btn:hover {
  cursor: pointer;
}
@media (max-width: 1400px) {
  .deductible-oop-tracking-plan {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .deductible-oop-tracking-plan {
    grid-template-columns: 1fr;
  }
}
@keyframes axiomLoadingAnimation {
  0% {
    transform: scale(1) translateY(0px);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.02) translateY(1px);
  }
  100% {
    transform: scale(1) translateY(0px);
  }
}
[class^="route-axiom"] .hidden {
  display: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
[class^="route-axiom"] .axiom-loader svg .axiom-shape {
  animation: axiomLoadingAnimation 1.5s ease-in-out infinite;
}
[class^="route-axiom"] .axiom-loader svg .axiom-shape.shape-2 {
  animation-delay: 0.2s;
}
[class^="route-axiom"] .axiom-loader svg .axiom-shape.shape-3 {
  animation-delay: 0.4s;
}
[class^="route-axiom"] .axiom-loader svg .axiom-shape.shape-4 {
  animation-delay: 0.6s;
}
[class^="route-axiom"] .axiom-loader svg .axiom-shape.shape-5 {
  animation-delay: 0.8s;
}
[class^="route-axiom"] .axiom-loader svg .axiom-shape.shape-6 {
  animation-delay: 1s;
}
[class^="route-axiom"] .application-header,
[class^="route-axiom"] .breadcrumbs-wrapper,
[class^="route-axiom"] .main-nav {
  display: none;
  opacity: 0;
  pointer-events: none;
}
[class^="route-axiom"] .nav-content-container {
  top: 0;
}
[class^="route-axiom"] .axiom-container {
  display: flex;
  height: 100vh;
  font-family: "Helvetica Neue", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow: hidden;
}
[class^="route-axiom"] .axiom-sidebar {
  width: 350px;
  background: linear-gradient(135deg, #133768 0%, #235b9d 50%, #2b9ea8 100%);
  color: white;
  display: flex;
  flex-direction: column;
  padding-bottom: 30px;
  position: relative;
  z-index: 10;
  transition: width 0.3s ease-out;
}
[class^="route-axiom"] .axiom-sidebar .new-chat-label,
[class^="route-axiom"] .axiom-sidebar .chat-section,
[class^="route-axiom"] .axiom-sidebar .view-all-btn {
  transition: all 0.2s ease;
}
[class^="route-axiom"] .axiom-sidebar.content-hidden .new-chat-label,
[class^="route-axiom"] .axiom-sidebar.content-hidden .chat-section,
[class^="route-axiom"] .axiom-sidebar.content-hidden .view-all-btn {
  opacity: 0;
}
[class^="route-axiom"] .axiom-sidebar.collapsed {
  width: 70px;
}
[class^="route-axiom"] .axiom-sidebar.collapsed .new-chat-label {
  display: none;
}
[class^="route-axiom"] .axiom-sidebar.collapsed .sidebar-header {
  padding: 10px 10px 21px 10px;
  min-height: 43px;
  cursor: pointer;
}
[class^="route-axiom"] .axiom-sidebar.collapsed .sidebar-header .bg-logo svg {
  left: -50px;
  top: -47px;
}
[class^="route-axiom"] .axiom-sidebar.collapsed .sidebar-header .axiom-icon-white {
  transition: all 0.2s;
}
[class^="route-axiom"] .axiom-sidebar.collapsed .sidebar-header:hover .axiom-icon-white {
  width: 40px;
  margin: 7px 0px 0px -6px;
  transform: rotate(-27deg);
}
[class^="route-axiom"] .axiom-sidebar.collapsed .sidebar-header::after {
  content: attr(data-tooltip);
  position: absolute;
  background: linear-gradient(#f5f7fa, #f5f7fa) padding-box, linear-gradient(90deg, #2863a8 0%, #2b9ea8 100%) border-box;
  color: #555;
  padding: 5px;
  height: 15px;
  font-weight: 500;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
  left: 100%;
  top: 50%;
  transform: translateY(-50%) translateX(8px);
}
[class^="route-axiom"] .axiom-sidebar.collapsed .sidebar-header::before {
  content: "";
  position: absolute;
  border: 6px solid transparent;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 1000;
  left: 100%;
  top: 50%;
  transform: translateY(-50%) translateX(2px);
  border-right-color: #2863a8;
}
[class^="route-axiom"] .axiom-sidebar.collapsed .sidebar-header:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(-4px);
}
[class^="route-axiom"] .axiom-sidebar.collapsed .sidebar-header:hover::before {
  opacity: 1;
  transform: translateY(-50%) translateX(6px);
}
[class^="route-axiom"] .axiom-sidebar.collapsed .axiom-logo {
  justify-content: center;
  width: 100%;
  position: relative;
  z-index: 10;
}
[class^="route-axiom"] .axiom-sidebar.collapsed .axiom-logo .axiom-icon-white {
  width: 50px;
  margin: 2px 0 0 0;
}
[class^="route-axiom"] .axiom-sidebar.collapsed .new-chat-btn {
  width: 42px;
  padding: 11px;
  gap: 0;
}
[class^="route-axiom"] .axiom-sidebar.collapsed .chat-section,
[class^="route-axiom"] .axiom-sidebar.collapsed .view-all-btn {
  display: none;
}
[class^="route-axiom"] .sidebar-header {
  margin-bottom: 24px;
  padding: 10px 20px 10px 20px;
  position: relative;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
[class^="route-axiom"] .sidebar-header .bg-logo {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0.2;
  z-index: 1;
  pointer-events: none;
}
[class^="route-axiom"] .sidebar-header .bg-logo svg {
  position: absolute;
  left: -42px;
  top: -50px;
  transition: all 0.2s;
}
[class^="route-axiom"] .sidebar-header .collapse-btn {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  appearance: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
  opacity: 0.7;
}
[class^="route-axiom"] .sidebar-header .collapse-btn svg {
  width: 16px;
  transform: rotate(90deg);
}
[class^="route-axiom"] .sidebar-header .collapse-btn svg path {
  fill: #fff;
}
[class^="route-axiom"] .sidebar-header .collapse-btn:hover {
  opacity: 1;
}
[class^="route-axiom"] .sidebar-header .collapse-btn::after {
  content: attr(data-tooltip);
  position: absolute;
  background: linear-gradient(#f5f7fa, #f5f7fa) padding-box, linear-gradient(90deg, #2863a8 0%, #2b9ea8 100%) border-box;
  color: #555;
  padding: 5px;
  height: 15px;
  font-weight: 500;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
}
[class^="route-axiom"] .sidebar-header .collapse-btn::before {
  content: "";
  position: absolute;
  border: 6px solid transparent;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 1000;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(2px);
  border-bottom-color: #2863a8;
}
[class^="route-axiom"] .sidebar-header .collapse-btn:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(12px);
}
[class^="route-axiom"] .sidebar-header .collapse-btn:hover::before {
  opacity: 1;
  transform: translateX(-50%) translateY(6px);
}
[class^="route-axiom"] .axiom-logo {
  display: flex;
  align-items: center;
}
[class^="route-axiom"] .axiom-logo svg {
  width: 165px;
}
[class^="route-axiom"] .logo-icon {
  width: 36px;
  height: 36px;
  background: white;
  color: #1e7a92;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.5px;
}
[class^="route-axiom"] .logo-text {
  font-size: 30px;
  font-weight: 400;
}
[class^="route-axiom"] .new-chat-btn {
  width: 90%;
  margin: 0 auto;
  padding: 11px 16px;
  background: linear-gradient(90deg, rgba(40, 99, 168, 0.7) 0%, rgba(43, 158, 168, 0.7) 100%);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  color: white;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s ease-out;
}
[class^="route-axiom"] .new-chat-btn:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
[class^="route-axiom"] .new-chat-btn:hover {
  background: linear-gradient(90deg, rgba(40, 99, 168, 0.8) 0%, rgba(43, 158, 168, 0.8) 100%);
  border-color: rgba(255, 255, 255, 0.35);
  transform: scale(1.03);
}
[class^="route-axiom"] .new-chat-btn .new-chat-icon {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
[class^="route-axiom"] .new-chat-btn .new-chat-icon svg {
  width: 100%;
  height: 100%;
}
[class^="route-axiom"] .chat-history-header {
  display: flex;
  align-items: center;
  margin: 0 0 5px 0;
}
[class^="route-axiom"] .chat-history-header .chat-history-title {
  font-size: 16px;
  font-size: 1.6rem;
  margin: 0;
}
[class^="route-axiom"] .chat-history-header .close-btn {
  appearance: none;
  background: none;
  border: none;
  margin-left: auto;
  transition: 0.5s all;
}
[class^="route-axiom"] .chat-history-header .close-btn svg {
  width: 20px;
}
[class^="route-axiom"] .chat-history-header .close-btn:hover {
  cursor: pointer;
  opacity: 0.7;
}
[class^="route-axiom"] .chat-search-container {
  width: 100%;
  margin: 0 auto;
}
[class^="route-axiom"] .chat-search-container input {
  border-radius: 8px;
  width: 100%;
  background: linear-gradient(#ffffff, #ffffff) padding-box, linear-gradient(90deg, #2863a8 0%, #2b9ea8 100%) border-box;
  border: 1px solid transparent;
  height: 25px;
}
[class^="route-axiom"] .org-filter-container {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 0 0 0;
}
[class^="route-axiom"] .org-filter-container p {
  font-size: 11px;
  font-size: 1.1rem;
}
[class^="route-axiom"] .org-filter-container .org-filter-toggle {
  --height: 20px;
}
[class^="route-axiom"] .org-filter-container .org-filter-toggle label {
  width: 50px;
  background: rgba(255, 255, 255, 0.15);
}
[class^="route-axiom"] .org-filter-container .org-filter-toggle input.is-checked + label {
  background: #fff;
  width: 50px;
}
[class^="route-axiom"] .org-filter-container .org-filter-toggle input.is-checked + label::after {
  background: #235998;
}
[class^="route-axiom"] .org-filter-container .org-filter-toggle .inset-text {
  top: 3px;
  font-weight: bold;
}
[class^="route-axiom"] .org-filter-container .org-filter-toggle .inset-text.active {
  color: #235998;
}
[class^="route-axiom"] .org-filter-container .org-filter-toggle .inset-text.inactive {
  color: #fff;
}
[class^="route-axiom"] .org-filter-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
  max-width: 45%;
  height: 25px;
  padding: 0 8px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  background: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: 11px;
  cursor: pointer;
  transition: all 0.15s;
}
[class^="route-axiom"] .org-filter-btn svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}
[class^="route-axiom"] .org-filter-btn .org-filter-label {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
[class^="route-axiom"] .org-filter-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}
[class^="route-axiom"] .org-filter-btn.active {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}
[class^="route-axiom"] .chat-section {
  flex: 1;
  overflow-y: auto;
  padding: 30px 20px 30px 20px;
}
[class^="route-axiom"] .chat-section::-webkit-scrollbar {
  width: 6px;
}
[class^="route-axiom"] .chat-section::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
}
[class^="route-axiom"] .chat-section .no-chat-history {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  margin: 0;
}
[class^="route-axiom"] .chat-section .load-more-btn {
  display: block;
  width: 100%;
  margin-top: 10px;
  background: none;
  border: solid 1px rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  padding: 8px 12px;
  transition: all 0.15s;
}
[class^="route-axiom"] .chat-section .load-more-btn:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}
[class^="route-axiom"] .chat-section .load-more-btn:disabled {
  cursor: default;
  opacity: 0.6;
}
[class^="route-axiom"] .section-title-container {
  display: flex;
  align-items: center;
  border-bottom: solid 1px rgba(255, 255, 255, 0.3);
  padding-bottom: 10px;
  margin: 10px 0 10px 0;
}
[class^="route-axiom"] .section-title-container .section-title {
  font-size: 14px;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
}
[class^="route-axiom"] .section-title-container .section-title .chat-count {
  font-size: 12px;
  font-weight: 400;
  opacity: 0.8;
}
[class^="route-axiom"] .section-title-container .section-view-all {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 6px;
  transition: all 0.15s;
  margin-left: auto;
}
[class^="route-axiom"] .section-title-container .section-view-all:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}
[class^="route-axiom"] .chat-list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}
[class^="route-axiom"] .chat-item {
  padding: 10px 12px;
  font-size: 13px;
  border-radius: 8px;
  margin-bottom: 2px;
  cursor: pointer;
  transition: background 0.15s;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  position: relative;
}
[class^="route-axiom"] .chat-item.disabled {
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.7;
}
[class^="route-axiom"] .chat-item svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}
[class^="route-axiom"] .chat-item .prompt {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  flex: 1;
}
[class^="route-axiom"] .chat-item .chat-menu-btn {
  opacity: 0;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
[class^="route-axiom"] .chat-item .chat-menu-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}
[class^="route-axiom"] .chat-item .chat-dropdown {
  position: absolute;
  right: 8px;
  top: 100%;
  background: linear-gradient(#f5f7fa, #f5f7fa) padding-box, linear-gradient(90deg, #2863a8 0%, #2b9ea8 100%) border-box;
  border: 1px solid transparent;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 100;
  min-width: 140px;
  overflow: hidden;
  margin-top: 4px;
}
[class^="route-axiom"] .chat-item .chat-dropdown .dropdown-item {
  width: 100%;
  padding: 10px 14px;
  border: none;
  background: none;
  color: #374151;
  font-size: 13px;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.15s;
}
[class^="route-axiom"] .chat-item .chat-dropdown .dropdown-item:hover {
  background: #fff;
  transform: scale(1.05);
}
[class^="route-axiom"] .chat-item .chat-dropdown .dropdown-item.delete {
  color: #d34612;
}
[class^="route-axiom"] .chat-item .chat-dropdown .dropdown-item.pin {
  color: #2863a8;
}
[class^="route-axiom"] .chat-item .chat-dropdown .dropdown-item i {
  width: 14px;
  font-size: 13px;
}
[class^="route-axiom"] .chat-item .chat-edit-input {
  width: 100%;
}
[class^="route-axiom"] .chat-item:hover {
  background: rgba(255, 255, 255, 0.12);
  opacity: 1;
}
[class^="route-axiom"] .chat-item:hover .chat-menu-btn {
  opacity: 1;
}
[class^="route-axiom"] .chat-item.active {
  background: rgba(255, 255, 255, 0.2);
}
[class^="route-axiom"] .chat-item.active .prompt {
  white-space: normal;
}
[class^="route-axiom"] .chat-item.active .chat-menu-btn {
  opacity: 1;
}
[class^="route-axiom"] .chat-item.dropdown-open {
  z-index: 200;
}
[class^="route-axiom"] .view-all-btn {
  width: 90%;
  margin: 0 auto;
  padding: 11px 16px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  color: white;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 30px;
}
[class^="route-axiom"] .view-all-btn:hover {
  transform: scale(1.03);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.35);
}
[class^="route-axiom"] .view-all-btn .conversation-icon {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
[class^="route-axiom"] .view-all-btn .conversation-icon svg {
  width: 100%;
  height: 100%;
}
[class^="route-axiom"] .axiom-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #f3f6fa;
  padding-bottom: 15px;
}
[class^="route-axiom"] .axiom-main .bg-gradient {
  position: absolute;
  top: 0;
  height: 150px;
  width: 100%;
  border-radius: 0 0 100% 100%;
  background: #d7eaff;
  opacity: 0.8;
  z-index: 1;
  filter: blur(60px);
  width: 900px;
  left: 50%;
  margin-left: -280px;
}
[class^="route-axiom"] .axiom-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 28px;
  background: white;
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}
[class^="route-axiom"] .chat-title {
  color: #13386a;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 80%;
}
[class^="route-axiom"] .chat-title .icon {
  width: 45px;
  min-width: 45px;
  height: 45px;
  background: linear-gradient(#f5f7fa, #f5f7fa) padding-box, linear-gradient(90deg, #2863a8 0%, #2b9ea8 100%) border-box;
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
[class^="route-axiom"] .chat-title .icon svg {
  width: 22px;
  height: 22px;
  margin: 0 auto;
}
[class^="route-axiom"] .header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
[class^="route-axiom"] .about-axiom-btn {
  appearance: none;
  cursor: pointer;
  border-radius: 8px;
  padding: 10px 15px;
  display: flex;
  gap: 8px;
  align-items: center;
  background: linear-gradient(90deg, #5e70b5 0%, #4891c6 100%);
  color: #fff;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: bold;
  border: none;
  transition: all 0.2s;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  min-width: 132px;
}
[class^="route-axiom"] .about-axiom-btn svg {
  width: 20px;
  height: 20px;
}
[class^="route-axiom"] .about-axiom-btn:hover {
  opacity: 0.9;
  box-shadow: none;
  transform: scale(1.05);
}
[class^="route-axiom"] .lens-btn {
  border-radius: 8px;
  padding: 10px 15px 10px 15px;
  background: #000;
  display: flex;
  gap: 8px;
  align-items: center;
  background: linear-gradient(90deg, #2863a8 0%, #2b9ea8 100%);
  color: #fff;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: bold;
  transition: all 0.2s;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
[class^="route-axiom"] .lens-btn.disabled {
  opacity: 0.8;
  background: linear-gradient(135deg, #d8d8d8 0%, #a29e9e 100%);
  pointer-events: none;
  box-shadow: none;
}
[class^="route-axiom"] .lens-btn:not(.disabled):hover {
  transform: scale(1.05);
  opacity: 0.9;
  box-shadow: none;
}
[class^="route-axiom"] .axiom-content {
  flex: 1;
  overflow-y: auto;
  margin: 0 auto;
  width: 95%;
  position: relative;
  z-index: 2;
}
[class^="route-axiom"] .welcome-section {
  text-align: center;
  margin-bottom: 56px;
}
[class^="route-axiom"] .main-title {
  font-size: 50px;
  font-weight: 300;
  color: #13386a;
  padding: 50px 0px 20px 0px;
  line-height: 50px;
  margin: 0;
}
[class^="route-axiom"] .main-title .brand {
  font-weight: 400;
  background: linear-gradient(90deg, #2863a8 0%, #2b9ea8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
[class^="route-axiom"] .subtitle {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.65;
  max-width: 620px;
  margin: 0 auto;
}
[class^="route-axiom"] .questions-section {
  margin-bottom: 36px;
  max-width: 1000px;
  margin: 0 auto;
  margin-bottom: 40px;
}
[class^="route-axiom"] .section-heading {
  font-size: 13px;
  font-weight: 600;
  color: #596171;
  margin-bottom: 14px;
  letter-spacing: 0.2px;
}
[class^="route-axiom"] .question-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
[class^="route-axiom"] .question-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
}
[class^="route-axiom"] .question-card:hover {
  transform: translateY(-1px);
}
[class^="route-axiom"] .question-card.core-question-card:hover {
  border-color: #4891c6;
}
[class^="route-axiom"] .question-card .card-header {
  padding: 6px 15px 6px 15px;
  color: #fff;
  font-weight: 500;
  display: flex;
  align-items: center;
}
[class^="route-axiom"] .question-card .card-icon-circle {
  width: 32px;
  height: 32px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}
[class^="route-axiom"] .question-card .card-body {
  padding: 15px;
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
}
[class^="route-axiom"] .question-card .card-body .icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(#f5f7fa, #f5f7fa) padding-box, linear-gradient(90deg, #2863a8 0%, #2b9ea8 100%) border-box;
  border: 1px solid transparent;
  border-radius: 100%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
[class^="route-axiom"] .question-card .card-body .icon svg {
  width: 22px;
  height: 22px;
  margin: 0 auto;
  display: block;
  margin-top: 9px;
}
[class^="route-axiom"] .question-card .card-title {
  font-size: 13px;
  color: #596171;
  margin: 0;
  font-weight: 500;
  flex: 1;
}
[class^="route-axiom"] .question-card .card-subtitle {
  font-size: 12px;
  color: #9ca3af;
  margin: 4px 0 0 0;
  line-height: 1.4;
}
[class^="route-axiom"] .question-card.core-question-card .card-header {
  background: linear-gradient(90deg, #5e70b5 0%, #4891c6 100%);
}
[class^="route-axiom"] .question-card.core-question-card .card-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
[class^="route-axiom"] .question-card.core-question-card .card-icon svg {
  width: 100%;
  height: 100%;
}
[class^="route-axiom"] .input-section {
  padding-top: 15px;
  border-top: 1px solid #e5e7eb;
}
[class^="route-axiom"] .input-container {
  background: white;
  border-radius: 15px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  width: calc(95% - 20px);
  margin: 0 auto;
}
[class^="route-axiom"] .input-container input[type="text"]:disabled {
  background: none;
}
[class^="route-axiom"] .input-container .new-chat-btn {
  max-width: 500px;
  width: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  background: linear-gradient(90deg, #2863a8 0%, #2b9ea8 100%);
}
[class^="route-axiom"] .input-container .new-chat-btn:hover {
  transform: scale(1.05);
  background: linear-gradient(90deg, rgba(40, 99, 168, 0.95) 0%, rgba(43, 158, 168, 0.95) 100%);
}
[class^="route-axiom"] .org-container {
  min-width: 250px;
  max-width: 250px;
  padding: 10px 15px 10px 15px;
  border-right: solid 1px #d6d6d6;
}
[class^="route-axiom"] .org-container .org-label {
  display: none;
}
[class^="route-axiom"] .org-container .tooltip {
  width: 15px;
  height: 15px;
  display: inline-block;
  position: relative;
  cursor: help;
}
[class^="route-axiom"] .org-container .tooltip::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: linear-gradient(#f5f7fa, #f5f7fa) padding-box, linear-gradient(90deg, #2863a8 0%, #2b9ea8 100%) border-box;
  color: #555;
  padding: 8px 12px;
  font-weight: 500;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 12px;
  white-space: nowrap;
  height: 15px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
}
[class^="route-axiom"] .org-container .tooltip::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-2px);
  border: 6px solid transparent;
  border-top-color: #1f2937;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 1000;
}
[class^="route-axiom"] .org-container .tooltip:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(-12px);
}
[class^="route-axiom"] .org-container .tooltip:hover::before {
  opacity: 1;
  transform: translateX(-50%) translateY(-6px);
}
[class^="route-axiom"] .org-container label {
  color: #555555;
  font-size: 14px;
  margin-bottom: 5px;
  display: inline-block;
}
[class^="route-axiom"] .org-container .disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
[class^="route-axiom"] .org-container .ember-power-select-trigger {
  border-radius: 15px;
  background: linear-gradient(#ffffff, #ffffff) padding-box, linear-gradient(90deg, #2863a8 0%, #2b9ea8 100%) border-box;
  border: 1px solid transparent;
  height: 25px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding: 0 21px 0 0;
}
[class^="route-axiom"] .org-container .ember-power-select-trigger:before {
  font-family: "fontawesome" !important;
  content: "\f078";
  font-size: 13px;
  position: absolute;
  width: 15px;
  height: 15px;
  line-height: 15px;
  top: 4px;
  right: 6px;
  text-align: center;
  transition: 0.2s;
  color: #2863a8;
}
[class^="route-axiom"] .org-container .ember-power-select-status-icon {
  border: none;
}
[class^="route-axiom"] .message-input-wrapper {
  display: flex;
  gap: 10px;
  align-items: center;
  width: 100%;
  padding: 10px 15px 10px 15px;
}
[class^="route-axiom"] .message-input-wrapper .lost-org-access {
  opacity: 1;
}
[class^="route-axiom"] .message-input-wrapper .lost-org-access::placeholder {
  color: #555;
}
[class^="route-axiom"] .message-input-wrapper input[type="text"] {
  border: none !important;
  background: none;
  padding: 0;
  font-size: 14px;
  font-size: 1.4rem;
}
[class^="route-axiom"] .message-input {
  flex: 1;
  padding: 13px 16px;
  border-radius: 10px;
  font-size: 14px;
  color: #1f2937;
  background: #f9fafb;
  transition: all 0.15s;
}
[class^="route-axiom"] .message-input:focus {
  outline: none;
  border-color: #3b82f6;
  background: white;
}
[class^="route-axiom"] .message-input::placeholder {
  color: #9ca3af;
}
[class^="route-axiom"] .send-btn {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #2863a8 0%, #2b9ea8 100%);
  border: none;
  border-radius: 15px;
  color: white;
  cursor: pointer;
  transition: all 0.15s;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
[class^="route-axiom"] .send-btn:hover:not(:disabled) {
  transform: scale(1.05);
}
[class^="route-axiom"] .send-btn:disabled {
  cursor: not-allowed;
  background: linear-gradient(135deg, #d8d8d8 0%, #a29e9e 100%);
  box-shadow: none;
}
[class^="route-axiom"] .send-btn .submit-icon {
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  margin: 0 auto;
  justify-content: center;
  margin-left: 1px;
}
[class^="route-axiom"] .send-btn .submit-icon svg {
  width: 100%;
  height: 100%;
}
[class^="route-axiom"] .conversation-container {
  padding: 50px 5px 0 5px;
}
[class^="route-axiom"] .conversation-container .message-wrapper {
  display: flex;
  margin-bottom: 30px;
}
[class^="route-axiom"] .conversation-container .message-container {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  position: relative;
  max-width: 100%;
}
[class^="route-axiom"] .conversation-container .message-container .word-bubble {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}
[class^="route-axiom"] .conversation-container .message-container .word-bubble .header {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 10px 5px 10px;
}
[class^="route-axiom"] .conversation-container .message-container .word-bubble .header .icon svg path {
  fill: #fff;
}
[class^="route-axiom"] .conversation-container .message-container .message-icon {
  width: 55px;
  min-width: 55px;
  height: 55px;
  border: 1px solid transparent;
  border-radius: 100%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
[class^="route-axiom"] .conversation-container .message-container .message-content {
  padding: 20px;
}
[class^="route-axiom"] .conversation-container .message-container.question {
  margin-left: auto;
}
[class^="route-axiom"] .conversation-container .message-container.question .word-bubble {
  width: 650px;
}
[class^="route-axiom"] .conversation-container .message-container.question .word-bubble .header {
  background: linear-gradient(90deg, #5e70b5 0%, #4891c6 100%);
}
[class^="route-axiom"] .conversation-container .message-container.question .word-bubble .header svg {
  width: 25px;
  display: block;
}
[class^="route-axiom"] .conversation-container .message-container.question .message-icon {
  background: linear-gradient(#f5f7fa, #f5f7fa) padding-box, linear-gradient(90deg, #5e70b5 0%, #4891c6 100%) border-box;
}
[class^="route-axiom"] .conversation-container .message-container.question .message-icon svg {
  width: 28px;
  margin: 0 auto;
  display: block;
  margin-top: 9px;
}
[class^="route-axiom"] .conversation-container .message-container.question .message-content p {
  color: #13386a;
  font-weight: 500;
  font-size: 14px;
  font-size: 1.4rem;
}
[class^="route-axiom"] .conversation-container .message-container.response .word-bubble-wrapper {
  width: calc(100% - 70px);
}
[class^="route-axiom"] .conversation-container .message-container.response .word-bubble .header {
  background: linear-gradient(90deg, #2863a8 0%, #2b9ea8 100%);
}
[class^="route-axiom"] .conversation-container .message-container.response .word-bubble .header .timestamp {
  margin-left: auto;
  font-weight: bold;
  font-size: 12px;
  font-size: 1.2rem;
}
[class^="route-axiom"] .conversation-container .message-container.response .word-bubble .header svg {
  width: 20px;
}
[class^="route-axiom"] .conversation-container .message-container.response .message-content {
  min-height: 50px;
  min-width: 350px;
}
[class^="route-axiom"] .conversation-container .message-container.response .message-content .axiom-loader {
  display: table;
  margin: 0 auto;
}
[class^="route-axiom"] .conversation-container .message-container.response .message-content .axiom-loader p {
  margin: 0 auto;
  font-size: 14px;
  font-size: 1.4rem;
  color: #555;
  margin-top: 10px;
  text-align: center;
}
[class^="route-axiom"] .conversation-container .message-container.response .message-content .axiom-loader .loading-disclaimer {
  max-width: 500px;
  font-size: 12px;
  font-size: 1.2rem;
  color: #8c8c8c;
}
[class^="route-axiom"] .conversation-container .message-container.response .message-content .axiom-loader svg {
  width: 60px;
  display: table;
  margin: 0 auto;
}
[class^="route-axiom"] .conversation-container .message-container.response .btn-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 0 0 0;
}
[class^="route-axiom"] .conversation-container .message-container.response .btn-wrapper .btn {
  display: flex;
  align-items: Center;
  gap: 5px;
  padding: 5px;
  border-radius: 8px;
  border: solid 1px #235998;
  background: rgba(255, 255, 255, 0.5);
  color: #13386a;
  font-size: 14px;
  font-size: 1.4rem;
  transition: all 0.5s;
}
[class^="route-axiom"] .conversation-container .message-container.response .btn-wrapper .btn:hover {
  cursor: pointer;
  transform: scale(1.05);
}
[class^="route-axiom"] .conversation-container .message-container.response .btn-wrapper .btn.save {
  background: linear-gradient(90deg, #5e70b5 0%, #4891c6 100%);
  color: #fff;
}
[class^="route-axiom"] .conversation-container .message-container.response .btn-wrapper .btn.save svg {
  width: 20px;
}
[class^="route-axiom"] .conversation-container .message-container.response .btn-wrapper .btn.export svg {
  width: 15px;
}
[class^="route-axiom"] .conversation-container .message-container.response .btn-wrapper .btn.ask-again svg {
  width: 18px;
  fill: #133768;
}
[class^="route-axiom"] .conversation-container .message-container.response .btn-wrapper .btn.delete {
  background: #fff;
  color: #ed4651;
  border-color: #ed4651;
}
[class^="route-axiom"] .conversation-container .message-container.response .btn-wrapper .btn.delete svg {
  transition: all 0.5s;
  width: 20px;
}
[class^="route-axiom"] .conversation-container .message-container.response .btn-wrapper .btn.delete svg path {
  fill: #ed4651;
}
[class^="route-axiom"] .conversation-container .message-container.response .btn-wrapper .btn.delete:hover {
  background: #ed4651;
  color: #fff;
}
[class^="route-axiom"] .conversation-container .message-container.response .btn-wrapper .btn.delete:hover svg {
  width: 20px;
}
[class^="route-axiom"] .conversation-container .message-container.response .btn-wrapper .btn.delete:hover svg path {
  fill: #fff;
}
[class^="route-axiom"] .conversation-container .message-container.response .btn-wrapper .btn:disabled {
  cursor: not-allowed;
  opacity: 0.5;
  pointer-events: none;
}
[class^="route-axiom"] .conversation-container .message-container.response .message-icon {
  background: linear-gradient(#f5f7fa, #f5f7fa) padding-box, linear-gradient(90deg, #2863a8 0%, #2b9ea8 100%) border-box;
}
[class^="route-axiom"] .conversation-container .message-container.response .message-icon svg {
  width: 35px;
  margin: 0 auto;
  display: block;
  margin-top: -3px;
}
[class^="route-axiom"] .conversation-container .message-container.response .message-content .axiom-summary {
  color: #555555;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 16px;
  padding: 0;
  margin: 0 0 20px 0;
}
[class^="route-axiom"] .conversation-container .message-container.response .message-content .axiom-summary a[href^="mailto:"] {
  font-weight: bold;
  text-decoration: underline;
}
[class^="route-axiom"] .conversation-container .message-container.response .message-content .chart-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
[class^="route-axiom"] .conversation-container .message-container.response .message-content .chart-container .axiom-widget {
  min-width: 0;
}
@media (max-width: 1350px) {
  [class^="route-axiom"] .conversation-container .message-container.response .message-content .chart-container {
    grid-template-columns: 1fr;
  }
}
[class^="route-axiom"] .conversation-container .message-container.response .message-content .axiom-widget {
  margin-bottom: 20px;
  border: solid 1px #d6d6d6;
  border-radius: 8px;
  padding: 15px;
}
[class^="route-axiom"] .conversation-container .message-container.response .message-content .axiom-widget-title {
  font-size: 18px;
  font-size: 1.8rem;
  color: #555555;
  margin: 0 0 10px 0;
}
[class^="route-axiom"] .conversation-container .message-container.response .message-content .axiom-table {
  width: 100%;
  border: solid 1px #d6d6d6;
  border-collapse: collapse;
  margin-bottom: 10px;
}
[class^="route-axiom"] .conversation-container .message-container.response .message-content .axiom-table thead {
  background: linear-gradient(to right, #2863a9, #4892c7);
  font-size: 11px;
  font-size: 1.1rem;
  line-height: 12px;
  color: #fff;
}
[class^="route-axiom"] .conversation-container .message-container.response .message-content .axiom-table thead th {
  border-right: solid 1px #fff;
  border-bottom: solid 1px #d6d6d6;
  font-size: 11px;
  padding: 5px;
}
[class^="route-axiom"] .conversation-container .message-container.response .message-content .axiom-table thead th:last-of-type {
  border-right: none;
}
[class^="route-axiom"] .conversation-container .message-container.response .message-content .axiom-table tbody tr {
  border-bottom: solid 1px #d6d6d6;
  text-align: center;
  font-size: 12px;
  line-height: 12px;
  color: #555555;
}
[class^="route-axiom"] .conversation-container .message-container.response .message-content .axiom-table tbody tr:nth-child(even) {
  background: #f7f7f7;
}
[class^="route-axiom"] .conversation-container .message-container.response .message-content .axiom-table tbody tr td {
  border-right: solid 1px #d6d6d6;
  padding: 5px;
}
[class^="route-axiom"] .conversation-container .message-container.response .message-content .axiom-table tbody tr td:last-of-type {
  border-right: none;
}
[class^="route-axiom"] .input-footer {
  font-size: 12px;
  color: #8c8c8c;
  margin: 15px 15px 0 15px;
  text-align: center;
}
[class^="route-axiom"] .data-provenance-container {
  margin-top: 15px;
  border-top: 1px solid #e5e7eb;
}
[class^="route-axiom"] .data-provenance-container .data-provenance-toggle {
  width: 100%;
  background: #fefeff;
  border: none;
  padding: 5px 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #13386a;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 500;
}
[class^="route-axiom"] .data-provenance-container .data-provenance-toggle .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
}
[class^="route-axiom"] .data-provenance-container .data-provenance-toggle .icon svg {
  transition: all 0.2s ease;
  width: 100%;
  height: 100%;
}
[class^="route-axiom"] .data-provenance-container .data-provenance-toggle .icon svg path {
  fill: #498ec4;
}
[class^="route-axiom"] .data-provenance-container .data-provenance-toggle .label {
  flex: 1;
  text-align: left;
}
[class^="route-axiom"] .data-provenance-container .data-provenance-toggle .chevron {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}
[class^="route-axiom"] .data-provenance-container .data-provenance-toggle.expanded {
  background: linear-gradient(90deg, #5e70b5 0%, #4891c6 100%);
  color: #fff;
}
[class^="route-axiom"] .data-provenance-container .data-provenance-toggle.expanded .chevron {
  transform: rotate(180deg);
}
[class^="route-axiom"] .data-provenance-container .data-provenance-toggle.expanded svg path {
  fill: #fff;
}
[class^="route-axiom"] .data-provenance-container .data-provenance-toggle.expanded:hover {
  background: linear-gradient(90deg, #5e70b5 0%, #4891c6 100%);
}
[class^="route-axiom"] .data-provenance-container .data-provenance-toggle:hover {
  background: #5e70b5;
  color: #fff;
}
[class^="route-axiom"] .data-provenance-container .data-provenance-toggle:hover svg path {
  fill: #fff;
}
[class^="route-axiom"] .data-provenance-container .data-provenance-content {
  background: #fff;
  padding: 15px;
}
[class^="route-axiom"] .data-provenance-container .data-provenance-content p {
  color: #555555;
}
[class^="route-axiom"] .data-provenance-container .data-provenance-content .provenance-call + .provenance-call {
  margin-top: 20px;
}
[class^="route-axiom"] .data-provenance-container .data-provenance-content .provenance-columns {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  margin-bottom: 20px;
}
[class^="route-axiom"] .data-provenance-container .data-provenance-content .provenance-columns:last-child {
  margin-bottom: 0;
}
[class^="route-axiom"] .data-provenance-container .data-provenance-content .provenance-column .column-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 600;
  border-bottom: solid 1px #d6d6d6;
  padding: 0 0 10px 0;
}
[class^="route-axiom"] .data-provenance-container .data-provenance-content .provenance-column .column-header .column-title {
  font-size: 16px;
  font-size: 1.6rem;
  color: #13386a;
  font-weight: 400;
}
[class^="route-axiom"] .data-provenance-container .data-provenance-content .provenance-column .column-header .column-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
}
[class^="route-axiom"] .data-provenance-container .data-provenance-content .provenance-column .column-header .column-icon svg {
  width: 100%;
  height: 100%;
}
[class^="route-axiom"] .data-provenance-container .data-provenance-content .provenance-column .column-content p {
  font-size: 14px;
  font-size: 1.4rem;
  margin: 0;
  font-weight: 500;
  color: #555555;
}
[class^="route-axiom"] .data-provenance-container .data-provenance-content .provenance-column.metrics-column .column-content,
[class^="route-axiom"] .data-provenance-container .data-provenance-content .provenance-column.verification-column .column-content {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
[class^="route-axiom"] .data-provenance-container .data-provenance-content .metrics-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
[class^="route-axiom"] .data-provenance-container .data-provenance-content .metrics-tags .metric-tag {
  background: rgba(72, 144, 197, 0.2);
  border: 1px solid #235998;
  border-radius: 8px;
  padding: 4px 8px;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 500;
  white-space: nowrap;
  color: #13386a;
}
[class^="route-axiom"] .data-provenance-container .data-provenance-content .verification-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
[class^="route-axiom"] .data-provenance-container .data-provenance-content .verification-tags .verification-tag {
  border-radius: 8px;
  padding: 4px 8px;
  font-size: 12px;
  font-size: 1.2rem;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 4px;
  color: #fff;
}
[class^="route-axiom"] .data-provenance-container .data-provenance-content .verification-tags .verification-tag.pass {
  background: rgba(32, 133, 126, 0.6);
  border: solid 1px #1b696f;
}
[class^="route-axiom"] .data-provenance-container .data-provenance-content .verification-tags .verification-tag.not_applicable {
  background: rgba(203, 103, 50, 0.7);
  border: solid 1px #a2572f;
}
[class^="route-axiom"] .data-provenance-container .data-provenance-content .verification-tags .verification-tag.not_applicable svg {
  margin-bottom: -2px;
}
[class^="route-axiom"] .data-provenance-container .data-provenance-content .verification-tags .verification-tag.fail {
  background: rgba(197, 29, 29, 0.7);
  border: solid 1px #8b3030;
}
[class^="route-axiom"] .data-provenance-container .data-provenance-content .verification-tags .verification-tag.fail svg {
  margin-bottom: -3px;
}
[class^="route-axiom"] .data-provenance-container .data-provenance-content .verification-tags .verification-tag.pending {
  display: none;
}
[class^="route-axiom"] .about-axiom-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
}
[class^="route-axiom"] .delete-confirm-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
}
[class^="route-axiom"] .delete-confirm-content {
  width: 90%;
  max-width: 360px;
  padding: 28px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
  text-align: center;
}
[class^="route-axiom"] .delete-confirm-content p {
  font-size: 16px;
  font-size: 1.6rem;
  color: #555555;
  margin: 0 0 20px 0;
}
[class^="route-axiom"] .delete-confirm-content .delete-confirm-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
}
[class^="route-axiom"] .delete-confirm-content .delete-confirm-actions .btn {
  display: flex;
  align-items: Center;
  gap: 5px;
  padding: 5px;
  border-radius: 8px;
  font-size: 14px;
  font-size: 1.4rem;
  transition: all 0.5s;
  background: #fff;
}
[class^="route-axiom"] .delete-confirm-content .delete-confirm-actions .btn:hover {
  cursor: pointer;
}
[class^="route-axiom"] .delete-confirm-content .delete-confirm-actions .btn svg {
  transition: all 0.5s;
}
[class^="route-axiom"] .delete-confirm-content .delete-confirm-actions .btn.delete {
  border: solid 1px #ed4651;
  color: #ed4651;
}
[class^="route-axiom"] .delete-confirm-content .delete-confirm-actions .btn.delete svg {
  width: 20px;
}
[class^="route-axiom"] .delete-confirm-content .delete-confirm-actions .btn.delete svg path {
  fill: #ed4651;
}
[class^="route-axiom"] .delete-confirm-content .delete-confirm-actions .btn.delete:hover {
  background: #ed4651;
  color: #fff;
}
[class^="route-axiom"] .delete-confirm-content .delete-confirm-actions .btn.delete:hover svg path {
  fill: #fff;
}
[class^="route-axiom"] .delete-confirm-content .delete-confirm-actions .btn.cancel {
  border: solid 1px #878787;
}
[class^="route-axiom"] .delete-confirm-content .delete-confirm-actions .btn.cancel svg {
  transition: all 0.5s;
  width: 20px;
  height: 17px;
}
[class^="route-axiom"] .delete-confirm-content .delete-confirm-actions .btn.cancel svg path {
  fill: #878787;
}
[class^="route-axiom"] .delete-confirm-content .delete-confirm-actions .btn.cancel:hover {
  background: #878787;
  border: solid 1px #555;
  color: #fff;
}
[class^="route-axiom"] .delete-confirm-content .delete-confirm-actions .btn.cancel:hover svg {
  width: 20px;
}
[class^="route-axiom"] .delete-confirm-content .delete-confirm-actions .btn.cancel:hover svg path {
  fill: #fff;
}
[class^="route-axiom"] .about-axiom-content {
  display: flex;
  flex-direction: column;
  width: 90%;
  max-width: 900px;
  max-height: 90vh;
  background: #f5f7fa;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}
[class^="route-axiom"] .about-axiom-content .about-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 7px 20px;
  background: linear-gradient(90deg, #2863a8 0%, #2b9ea8 100%);
  color: #fff;
}
[class^="route-axiom"] .about-axiom-content .about-header .about-icon {
  display: flex;
}
[class^="route-axiom"] .about-axiom-content .about-header .about-icon svg {
  width: 24px;
  height: 24px;
}
[class^="route-axiom"] .about-axiom-content .about-header h2 {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 500;
  color: #fff;
  margin: 0;
}
[class^="route-axiom"] .about-axiom-content .about-header .close-btn {
  margin-left: auto;
  appearance: none;
  cursor: pointer;
  width: 25px;
  height: 25px;
  border: none;
  background: none;
  transition: all 0.2s;
}
[class^="route-axiom"] .about-axiom-content .about-header .close-btn:hover {
  opacity: 0.7;
}
[class^="route-axiom"] .about-axiom-content .about-body {
  flex: 1;
  overflow-y: auto;
  margin: 15px;
  padding: 28px;
  border: 1px solid #d6d6d6;
  background: #fff;
  border-radius: 10px;
  color: #555555;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 22px;
}
[class^="route-axiom"] .about-axiom-content .about-body h3 {
  font-size: 16px;
  font-size: 1.6rem;
  color: #13386a;
  margin: 24px 0 15px 0;
  padding: 0 0 10px 0;
  border-bottom: solid 1px #d6d6d6;
}
[class^="route-axiom"] .about-axiom-content .about-body h3:first-child {
  margin-top: 0;
}
[class^="route-axiom"] .about-axiom-content .about-body h4 {
  font-size: 14px;
  font-size: 1.4rem;
  color: #555;
  margin: 16px 0 6px 0;
}
[class^="route-axiom"] .about-axiom-content .about-body p {
  margin: 0 0 12px 0;
}
[class^="route-axiom"] .about-axiom-content .about-body ul {
  margin: 0;
  padding-left: 20px;
}
[class^="route-axiom"] .about-axiom-content .about-body ul li {
  margin-bottom: 5px;
}
[class^="route-axiom"] .about-axiom-content .about-body ul li strong {
  color: #555555;
}
[class^="route-axiom"] .about-axiom-content .about-body ul li:last-of-type {
  margin-bottom: 15px;
}
.admin-navigation {
  margin: 20px;
}
.admin-navigation > div {
  background: white;
  padding: 20px;
  border: 1px solid #e6e6e6;
  border-top: none;
}
.admin-navigation .tab-bar {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  overflow: hidden;
  transition: 0.2s;
}
.admin-navigation .tab-bar.locked {
  top: 40px;
  position: absolute;
  z-index: 110;
  width: calc(100% - 95px);
  padding: 0;
  box-shadow: -5px 2px 7px 3px #ddd;
}
.admin-navigation .tab-bar.locked + section {
  padding-top: 65px;
}
.admin-navigation .tab-bar .admin-nav-link {
  background: #f3f3f3;
  border: none;
  border-right: 1px solid #e6e6e6;
  border-top: 1px solid #e6e6e6;
  color: #888888;
  cursor: pointer;
  display: block;
  font-size: 25px;
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 45px;
  line-height: 4.5rem;
  height: 47px;
  width: 100%;
  text-align: center;
}
.admin-navigation .tab-bar .admin-nav-link:hover {
  background: #e6e6e6;
}
.admin-navigation .tab-bar .admin-nav-link.disabled {
  pointer-events: none;
  opacity: 0.5;
}
.admin-navigation .tab-bar .admin-nav-link.active {
  background: white;
  box-shadow: 5px 0px 5px 0px #ddd, -5px 0px 5px 0px #ddd;
  color: #555555;
  position: relative;
}
.admin-navigation .tab-bar .admin-nav-link:first-child {
  border-left: 1px solid #e6e6e6;
}
.admin-navigation .tab-bar .admin-nav-link:first-child.active {
  box-shadow: 5px 0px 5px 0px #ddd;
}
.admin-navigation .tab-bar .admin-nav-link:last-child.active {
  box-shadow: -5px 0px 5px 0px #ddd;
}
.admin-navigation .tab-bar .admin-nav-link span.fa {
  font-size: 22px;
  font-size: 2.2rem;
}
.access-approval-expiration-card {
  background: #f8f8f8;
  border: solid 1px #e6e6e6;
  padding: 10px;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
}
.access-approval-expiration-card header {
  display: flex;
  align-items: center;
}
.access-approval-expiration-card header h3 {
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: 200;
  color: #243b5f;
  margin: 0;
  display: inline-block;
  border-bottom: none;
  padding-bottom: 0;
}
.access-approval-expiration-card header .icon {
  display: inline-block;
  width: 28px;
  height: 27px;
  border-radius: 100%;
  background: white;
  border: 1px solid #f1f1f1;
  margin-right: 5px;
}
.access-approval-expiration-card header .icon span {
  display: block;
  height: 17px;
  width: 15px;
  margin: 0 auto;
  margin-top: 5px;
  background: url("/assets/img/permission-group-icon.svg");
}
.access-approval-expiration-card header .bubble-container {
  max-width: 80px;
  margin-left: auto;
}
.access-approval-expiration-card header .bubble-container .bubble-icon {
  display: inline-block;
  width: 28px;
  height: 27px;
  border-radius: 100%;
  background: white;
  border: 1px solid #f1f1f1;
  margin-right: 5px;
  font-size: 11px;
  font-size: 1.1rem;
  position: relative;
  text-align: center;
}
.access-approval-expiration-card header .bubble-container .bubble-icon .count-bubble {
  border-radius: 100%;
  width: 15px;
  height: 15px;
  position: absolute;
  top: -3px;
  right: -7px;
  color: #fff;
  text-align: center;
  font-weight: bold;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.3);
}
.access-approval-expiration-card header .bubble-container .bubble-icon.addition .count-bubble {
  background: #18b28b;
}
.access-approval-expiration-card header .bubble-container .bubble-icon.addition::before {
  content: "+";
  color: #18b28b;
  font-size: 35px;
  font-size: 3.5rem;
  position: relative;
  top: 3px;
}
.access-approval-expiration-card header .bubble-container .bubble-icon.removal .count-bubble {
  background: #ed4651;
}
.access-approval-expiration-card header .bubble-container .bubble-icon.removal::before {
  content: "-";
  color: #ed4651;
  font-size: 35px;
  font-size: 3.5rem;
  position: relative;
  top: 3px;
}
.access-approval-expiration-card .content {
  background: white;
  border: 1px solid #e6e6e6;
  margin-top: 10px;
  min-height: 200px;
}
.access-approval-expiration-card .content .change-list-title {
  border: none;
  margin: 0;
  font-size: 17px;
  font-size: 1.7rem;
  padding: 10px;
}
.access-approval-expiration-card .content .change-list-title.addition span {
  display: inline-block;
  width: 20px;
  height: 17px;
  margin-right: 5px;
  background: url(/assets/img/additions-icon.svg);
}
.access-approval-expiration-card .content .change-list-title.removal span {
  display: inline-block;
  width: 20px;
  height: 17px;
  margin-right: 5px;
  background: url(/assets/img/removals-icon.svg) no-repeat;
  position: relative;
  top: 5px;
}
.access-approval-expiration-card .content .ui-block:first-child .change-list {
  border-right: 1px solid #e6e6e6;
}
.access-approval-expiration-card .content .change-list {
  border-top: solid 1px #e6e6e6;
  max-height: 200px;
  min-height: 200px;
  overflow: scroll;
}
.access-approval-expiration-card .content .change-list ul {
  margin: 0;
  padding: 10px;
}
.access-approval-expiration-card .content .change-list ul li {
  list-style: none;
  margin: 0px 0px 10px 0px;
  font-size: 15px;
  font-size: 1.5rem;
}
.access-approval-expiration-card .duration-container {
  padding-top: 10px;
  display: flex;
  align-items: center;
}
.access-approval-expiration-card .duration-container h3 {
  font-size: 17px;
  font-size: 1.7rem;
  font-weight: 200;
  color: #243b5f;
  margin: 0;
  display: inline-block;
  border-bottom: none;
  padding-bottom: 0;
  margin-right: 10px;
}
.access-approval-expiration-card .duration-container .icon {
  display: inline-block;
  width: 28px;
  height: 27px;
  border-radius: 100%;
  background: white;
  border: 1px solid #f1f1f1;
  margin-right: 5px;
}
.access-approval-expiration-card .duration-container .icon span {
  display: block;
  height: 17px;
  width: 13px;
  margin: 0 auto;
  margin-top: 5px;
  background: url("/assets/img/duration-icon.svg") no-repeat;
}
.access-approval-expiration-card .duration-container .form-select {
  max-width: 150px;
}
.access-approval-expiration-card .duration-container .form-select.disabled {
  pointer-events: none;
  opacity: 0.5;
}
@media only screen and (max-width: 1440px) {
  .change-summary-container .ui-grid.cols-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.ui-header {
  z-index: 195;
  padding: 10px 20px 10px 20px;
  border-bottom: solid 1px #e6e6e6;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
  background: #f8f8f8;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ui-header h1 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  padding-bottom: 5px;
  max-height: 66px;
  margin: 0 23px 0 0;
  line-height: 33px;
  font-size: 33px;
  font-size: 3.3rem;
  font-weight: 300;
}
.ui-header .content {
  padding-top: 5px;
  flex: 2;
}
.ui-header .content.align-content {
  display: flex;
}
.ui-header .content .align-right {
  margin-left: auto;
  display: flex;
  align-items: center;
}
.ui-header .content button,
.ui-header .content input,
.ui-header .content select,
.ui-header .content a {
  margin-left: 5px;
}
.ui-button {
  cursor: pointer;
  display: inline-block;
  height: 24px;
  margin: 0;
  padding: 0 8px;
  border-radius: 3px;
  background: #243b5f;
  text-align: center;
  box-sizing: border-box;
  -webkit-appearance: none;
  font-size: 11px;
  font-size: 1.1rem;
  line-height: 24px;
  line-height: 2.4rem;
  font-weight: 700;
  text-transform: uppercase;
  color: white;
  border: none;
  outline: none;
  transition: 0.2s;
  font-family: "neue-helvetica", "Helvetica Neue", Helvetica, sans-serif !important;
  position: relative;
}
.ui-button:hover {
  cursor: pointer;
  background-color: rgba(36, 59, 95, 0.8);
}
.ui-button:before {
  float: left;
  margin: 0 5px 0 0;
  font-size: 15px;
  font-size: 1.5rem;
  vertical-align: middle;
  font-weight: 400;
  font-family: "fontawesome" !important;
}
.ui-button.icon-right:after {
  float: right;
  margin: 0 0 0 5px;
  font-size: 15px;
  font-size: 1.5rem;
  vertical-align: middle;
  font-weight: 400;
  font-family: "fontawesome" !important;
}
.ui-button.large {
  height: auto;
  padding: 8px 40px;
  font-size: 16px;
  font-size: 1.6rem;
}
.ui-button.small {
  height: 16px;
  padding: 0 4px;
  font-size: 11px;
  font-size: 1.1rem;
  line-height: 12px;
  line-height: 1.2rem;
}
.ui-button.new:before,
.ui-button.add:before {
  content: "\f067";
  margin-top: 1px;
}
.ui-button.new.icon-right:after,
.ui-button.add.icon-right:after {
  content: "\f067";
  margin-top: 1px;
}
.ui-button.new.icon-right:before,
.ui-button.add.icon-right:before {
  content: "";
}
.ui-button.minus:before {
  content: "\f068";
  margin-top: 1px;
}
.ui-button.minus.icon-right:after {
  content: "\f068";
  margin-top: 1px;
}
.ui-button.minus.icon-right:before {
  content: "";
}
.ui-button.cancel:before {
  content: "\f05e";
}
.ui-button.cancel.icon-right:after {
  content: "\f05e";
}
.ui-button.cancel.icon-right:before {
  content: "";
}
.ui-button.upload:before {
  content: "\f093";
}
.ui-button.upload.icon-right:after {
  content: "\f093";
}
.ui-button.upload.icon-right:before {
  content: "";
}
.ui-button.back:before {
  content: "\f060";
}
.ui-button.back.icon-right:after {
  content: "\f060";
}
.ui-button.back.icon-right:before {
  content: "";
}
.ui-button.next:before {
  content: "\f061";
}
.ui-button.next.icon-right:after {
  content: "\f061";
}
.ui-button.next.icon-right:before {
  content: "";
}
.ui-button.up:before {
  content: "\f062";
}
.ui-button.up.icon-right:after {
  content: "\f062";
}
.ui-button.up.icon-right:before {
  content: "";
}
.ui-button.down:before {
  content: "\f063";
}
.ui-button.down.icon-right:after {
  content: "\f063";
}
.ui-button.down.icon-right:before {
  content: "";
}
.ui-button.delete:before {
  content: "\f1f8";
}
.ui-button.delete.icon-right:after {
  content: "\f1f8";
}
.ui-button.delete.icon-right:before {
  content: "";
}
.ui-button.save:before {
  content: "\f0c7";
}
.ui-button.save.icon-right:after {
  content: "\f0c7";
}
.ui-button.save.icon-right:before {
  content: "";
}
.ui-button.info:before {
  content: "\f05a";
  font-size: 14px;
  font-size: 1.4rem;
}
.ui-button.info.icon-right:after {
  content: "\f05a";
  font-size: 14px;
  font-size: 1.4rem;
}
.ui-button.info.icon-right:before {
  content: "";
}
.ui-button.submit:before {
  content: "\f1d9";
  font-size: 13px;
  font-size: 1.3rem;
}
.ui-button.submit.icon-right:after {
  content: "\f1d9";
  font-size: 13px;
  font-size: 1.3rem;
}
.ui-button.submit.icon-right:before {
  content: "";
}
.ui-button.download:before {
  margin-top: 1px;
  content: "\f019";
}
.ui-button.download.icon-right:after {
  margin-top: 1px;
  content: "\f019";
}
.ui-button.download.icon-right:before {
  content: "";
}
.ui-button.filter:before {
  content: "\f1de";
}
.ui-button.filter.icon-right:after {
  content: "\f1de";
}
.ui-button.filter.icon-right:before {
  content: "";
}
.ui-button.edit:before {
  margin-top: 1px;
  content: "\f044";
}
.ui-button.edit.icon-right:after {
  margin-top: 1px;
  content: "\f044";
}
.ui-button.edit.icon-right:before {
  content: "";
}
.ui-button.text:before {
  content: "\f246";
  font-size: 12px;
  font-size: 1.2rem;
}
.ui-button.text.icon-right:after {
  content: "\f246";
  font-size: 12px;
  font-size: 1.2rem;
}
.ui-button.text.icon-right:before {
  content: "";
}
.ui-button.clone:before,
.ui-button.copy:before {
  content: "\f24d";
  font-size: 14px;
  font-size: 1.4rem;
}
.ui-button.clone.icon-right:after,
.ui-button.copy.icon-right:after {
  content: "\f24d";
  font-size: 14px;
  font-size: 1.4rem;
}
.ui-button.clone.icon-right:before,
.ui-button.copy.icon-right:before {
  content: "";
}
.ui-button.error:before {
  content: "\f06a";
}
.ui-button.error.icon-right:after {
  content: "\f06a";
}
.ui-button.error.icon-right:before {
  content: "";
}
.ui-button.warning:before {
  content: "\f071";
}
.ui-button.warning.icon-right:after {
  content: "\f071";
}
.ui-button.warning.icon-right:before {
  content: "";
}
.ui-button.csv {
  padding-left: 20px;
}
.ui-button.csv .icon {
  display: block;
  width: 10px;
  position: absolute;
  height: 13px;
  left: 6px;
  top: 5px;
  background: url(/assets/img/file-csv-icon-white.svg);
}
.ui-button.csv.icon-right {
  padding-left: 5px;
  padding-right: 20px;
}
.ui-button.csv.icon-right .icon {
  left: auto;
  right: 6px;
  top: 5px;
}
.ui-button.word:before {
  content: "\f1c2";
}
.ui-button.word.icon-right:after {
  content: "\f1c2";
}
.ui-button.word.icon-right:before {
  content: "";
}
.ui-button.remove:before {
  content: "\f057";
  margin-top: 1px;
}
.ui-button.remove.icon-right:after {
  content: "\f057";
  margin-top: 1px;
}
.ui-button.remove.icon-right:before {
  content: "";
}
.ui-button.tool:before {
  content: "\f0ad";
}
.ui-button.tool.icon-right:after {
  content: "\f0ad";
}
.ui-button.tool.icon-right:before {
  content: "";
}
.ui-button.bell:before {
  content: "\f0f3";
}
.ui-button.bell.icon-right:after {
  content: "\f0f3";
}
.ui-button.bell.icon-right:before {
  content: "";
}
.ui-button.calendar:before {
  content: "\f073";
}
.ui-button.calendar.icon-right:after {
  content: "\f073";
}
.ui-button.calendar.icon-right:before {
  content: "";
}
.ui-button.chart:before {
  content: "\f080";
}
.ui-button.chart.icon-right:after {
  content: "\f080";
}
.ui-button.chart.icon-right:before {
  content: "";
}
.ui-button.sort-none {
  opacity: 0.4;
  position: relative;
  bottom: 1px;
}
.ui-button.sort-none:before {
  content: "\f0dc";
}
.ui-button.sort-none.icon-right:after {
  content: "\f0dc";
}
.ui-button.sort-none.icon-right:before {
  content: "";
}
.ui-button.sort-up:before {
  content: "\f0de";
  position: relative;
  top: 2px;
}
.ui-button.sort-up.icon-right:after {
  content: "\f0de";
}
.ui-button.sort-up.icon-right:before {
  content: "";
}
.ui-button.sort-down:before {
  content: "\f0dd";
  position: relative;
  bottom: 3px;
}
.ui-button.sort-down.icon-right:after {
  content: "\f0dd";
}
.ui-button.sort-down.icon-right:before {
  content: "";
}
.ui-button.red {
  background-color: #ed4651;
}
.ui-button.red:hover {
  background-color: #e81825;
}
.ui-button.green {
  background-color: #18b28b;
}
.ui-button.green:hover {
  background-color: #128568;
}
.ui-button.blue {
  background-color: #4892c7;
}
.ui-button.blue:hover {
  background-color: #3478a8;
}
.ui-button.grey,
.ui-button.gray {
  background-color: #767676;
}
.ui-button.grey:hover,
.ui-button.gray:hover {
  background-color: #5d5d5d;
}
.ui-button.light-grey,
.ui-button.light-gray {
  background-color: #cccccc;
}
.ui-button.light-grey:hover,
.ui-button.light-gray:hover {
  background-color: #b3b3b3;
}
.ui-button.teal {
  background-color: #2e8b9d;
}
.ui-button.teal:hover {
  background-color: #226876;
}
.ui-button.innovu {
  background-color: #263652;
}
.ui-button.innovu:hover {
  background-color: #161f2f;
}
.ui-button.transparent {
  background-color: transparent;
}
.ui-button.transparent:hover {
  background-color: transparent;
}
.ui-button.square {
  width: 20px;
  height: 20px;
  padding: 0;
}
.ui-button.square:before {
  display: block;
  margin: 0 auto;
  float: none;
  line-height: 20px;
  max-width: 16px;
  width: 16px;
  font-size: 14px;
  font-size: 1.4rem;
}
.ui-button.circle {
  width: 25px;
  height: 25px;
  padding: 0;
  border-radius: 100%;
}
.ui-button.circle:before {
  display: block;
  margin: 0 auto;
  float: none;
  line-height: 15px;
}
.ui-button[disabled],
.ui-button.disabled {
  opacity: 0.5;
  cursor: default;
}
.ui-button[disabled]:hover,
.ui-button.disabled:hover {
  cursor: no-drop;
}
h1.ui-typography {
  font-size: 28px;
  font-size: 2.8rem;
  line-height: 28px;
  font-weight: 300;
  color: #263652;
}
h2.ui-typography {
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 24px;
  font-weight: 300;
  color: #263652;
}
h3.ui-typography {
  font-size: 20px;
  font-size: 2rem;
  line-height: 20px;
  font-weight: 300;
  color: #263652;
}
h4.ui-typography {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 16px;
  font-weight: 300;
  color: #263652;
}
h5.ui-typography {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 14px;
  font-weight: 300;
  color: #263652;
}
h6.ui-typography {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 12px;
  font-weight: 300;
  color: #263652;
}
.ui-typography {
  margin: 0px 0px 15px 0px;
  font-family: "neue-helvetica", "Helvetica Neue", Helvetica, sans-serif !important;
}
.ui-typography p {
  font-size: 14px;
  font-size: 1.4rem;
  margin: 0px 0px 10px 0px;
  padding: 0;
}
.ui-typography.custom.margin {
  margin: var(--margin);
}
.ui-typography.custom.size {
  font-size: var(--font-size);
}
.ui-typography.custom.size p {
  font-size: var(--font-size);
}
.ui-typography ul {
  padding: 0;
  margin: 0px 0px 15px 0px;
  list-style: none;
}
.ui-typography ul li {
  margin: 0px 0px 5px 0px;
}
.ui-typography ul li::before {
  content: "•";
  color: #2e8b9d;
  padding: 0px 10px 0px 0px;
}
.ui-typography ol {
  padding: 0px 0px 0px 13px;
  margin: 0px 0px 15px 0px;
  list-style: none;
  counter-reset: li;
}
.ui-typography ol li {
  margin: 0px 0px 5px 0px;
  counter-increment: li;
}
.ui-typography ol li::before {
  content: counter(li);
  color: #243b5f;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  padding-right: 2px;
  margin-left: -1em;
}
.ui-input {
  position: relative;
}
.ui-input datalist {
  display: block;
  position: absolute;
  width: 100%;
}
.ui-input datalist option {
  width: 100%;
}
.ui-input .ui-label-container.disabled {
  opacity: 0.4;
}
.ui-input .ui-label-container.disabled .info-tooltip {
  pointer-events: none;
}
.ui-input .ui-label-container.left {
  display: inline-grid;
  grid-template-columns: auto 1fr;
  grid-gap: 10px;
}
.ui-input .ui-label-container.left .ui-label {
  padding: 5px 0px 0px 0px;
}
.ui-input .ui-label {
  display: block;
  padding: 0px 0px 5px 0px;
  color: #202c47;
  white-space: nowrap;
  width: 100%;
  font-size: 13px;
  font-size: 1.3rem;
}
.ui-input .ui-label .label-icon {
  display: inline-block;
  background-size: cover;
}
.ui-input .ui-label .label-icon::before {
  font-family: "fontawesome" !important;
  color: #2e8b9d;
  font-size: 14px;
  font-size: 1.4rem;
}
.ui-input .ui-label .label-icon.medical {
  background: url(/assets/img/medical-icon-teal.svg) no-repeat;
  width: 12px;
  height: 12px;
}
.ui-input .ui-label .label-icon.rx {
  background: url(/assets/img/pills-icon-teal.svg);
  width: 15px;
  height: 15px;
}
.ui-input .ui-label .label-icon.graph::before {
  content: "\f080";
}
.ui-input .ui-label .label-icon.data::before {
  content: "\f1c0";
}
.ui-input .ui-label .label-icon.file::before {
  content: "\f15b";
}
.ui-input .ui-label .label-icon.user::before {
  content: "\f007";
}
.ui-input .ui-label.bold {
  font-weight: 700;
}
.ui-input .ui-label.textarea-label .label-text {
  padding: 0px 0px 5px 0px;
  display: block;
}
.ui-input .ui-label.checkbox {
  display: inline-grid;
  grid-template-columns: 10px auto;
  grid-gap: 15px;
}
.ui-input .ui-label.left {
  display: inline-block;
  padding: 0px 5px 0px 0px;
}
.ui-input .ui-label.left + .ui-field-container {
  display: inline-block;
}
.ui-input .ui-label .info-tooltip {
  position: relative;
  z-index: 20;
}
.ui-input .ui-label .info-tooltip .fa-info-circle {
  color: #2e8b9d;
}
.ui-input .ui-label .info-tooltip .fa-info-circle:hover + .content {
  display: block;
}
.ui-input .ui-label .info-tooltip .content {
  bottom: 100%;
  margin-bottom: 7px;
  left: 100%;
  margin-left: -178px;
  width: 250px;
  display: none;
  color: white;
  background: #2e8b9d;
  position: absolute;
  padding: 10px;
  white-space: normal;
}
.ui-input .ui-label .info-tooltip .content p:first-child {
  margin-top: 0;
}
.ui-input .ui-label .info-tooltip .content p:last-child {
  margin-bottom: 0;
}
.ui-input .ui-label .info-tooltip .content:after {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(136, 183, 213, 0);
  border-top-color: #2e8b9d;
  border-width: 7px;
  margin-left: 29px;
}
.ui-input .ui-label .required {
  color: #2e8b9d;
}
.ui-input .ui-field-container {
  position: relative;
}
.ui-input .ui-field-container.label-margin {
  margin-top: 20px;
}
.ui-input .ui-field-container .formatted-value {
  position: absolute;
  pointer-events: none;
  top: 5px;
  z-index: 5;
  font-size: 12px;
  font-size: 1.2rem;
  background: #fff;
  left: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}
.ui-input .ui-field-container .ui-input-field {
  width: 100%;
}
.ui-input .ui-field-container .ui-input-field:disabled {
  background: none;
  position: static;
}
.ui-input .ui-field-container .ui-input-field:focus + .formatted-value {
  display: none;
}
.ui-input .ui-field-container .grid-container {
  display: inline-grid;
  grid-template-columns: auto;
  outline: none;
  position: relative;
  height: 24px;
  padding: 0 7px;
  width: calc(100% - 14px);
  border: 1px solid #cbc8ca;
  border-radius: 3px;
  overflow: hidden;
  background: #fff;
}
.ui-input .ui-field-container .grid-container:focus-within {
  border: solid 1px #808080;
}
.ui-input .ui-field-container .grid-container.disabled {
  background: #dedede;
  opacity: 0.4;
}
.ui-input .ui-field-container .grid-container.disabled.preserve-readability {
  background: #ffffff;
  opacity: 1;
}
.ui-input .ui-field-container .grid-container.icon {
  grid-template-columns: auto 3fr;
}
.ui-input .ui-field-container .grid-container.prefix {
  grid-template-columns: auto 3fr;
}
.ui-input .ui-field-container .grid-container.suffix {
  grid-template-columns: 3fr auto;
}
.ui-input .ui-field-container .grid-container.inner-label {
  grid-template-columns: auto 3fr;
}
.ui-input .ui-field-container .grid-container.prefix.inner-label {
  grid-template-columns: auto auto 3fr;
}
.ui-input .ui-field-container .grid-container.inner-label.suffix {
  grid-template-columns: auto 3fr auto;
}
.ui-input .ui-field-container .grid-container.prefix.inner-label.suffix {
  grid-template-columns: auto auto 3fr auto;
}
.ui-input .ui-field-container .grid-container.prefix.suffix {
  grid-template-columns: auto 3fr auto;
}
.ui-input .ui-field-container .grid-container.date-range {
  grid-template-columns: 50% 50%;
  padding: 0;
  width: 100%;
}
.ui-input .ui-field-container .grid-container .grid-item {
  position: relative;
}
.ui-input .ui-field-container .grid-container .ui-inner-label {
  opacity: 0.6;
  align-self: center;
  padding-right: 5px;
  pointer-events: none;
  line-height: 12px;
  border-right: 1px solid #555555;
  font-size: 12px;
  font-size: 1.2rem;
}
.ui-input .ui-field-container .grid-container .ui-input-field {
  border: none;
  padding: 0px 0px 0px 5px;
  height: 100%;
}
.ui-input .ui-field-container .grid-container .ui-input-field:focus {
  border: none !important;
}
.ui-input .ui-field-container .grid-container .ui-clear-date {
  cursor: pointer;
  pointer-events: none;
  opacity: 0;
  position: absolute;
  right: 18px;
  top: 3px;
  font-weight: 700;
  font-size: 22px;
  font-size: 2.2rem;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.ui-input .ui-field-container .grid-container .ui-clear-date.visible {
  pointer-events: all;
  opacity: 1;
}
.ui-input .ui-field-container .input-icon {
  display: block;
  width: 12px;
  height: 12px;
  margin-top: 6px;
}
.ui-input .ui-field-container .input-icon.search {
  background: url("/assets/img/icon-search-teal.svg") no-repeat;
  background-size: cover;
}
.ui-input .ui-field-container .suffix-symbol {
  font-size: 11px;
  font-size: 1.1rem;
  margin: 0;
  padding: 0;
  opacity: 0.6;
  align-self: center;
  padding-left: 3px;
  z-index: 10;
}
.ui-input .ui-field-container .prefix-symbol {
  font-size: 11px;
  font-size: 1.1rem;
  margin: 0;
  padding: 0;
  opacity: 0.6;
  align-self: center;
  padding-right: 3px;
  z-index: 10;
}
.ui-input .ui-range {
  width: 100%;
  height: 24px;
}
.ui-input .range-value {
  display: block;
  text-align: center;
  color: #555555;
  font-size: 14px;
  font-size: 1.4rem;
}
.ui-input textarea {
  min-width: 100%;
  max-width: 100%;
  min-height: 75px;
  display: block;
  border: 1px solid #cbc8ca;
}
.ui-input textarea:focus {
  border: 1px solid #808080;
}
.ui-toggle-switch {
  --height: 30px;
  max-width: 65px;
  height: var(--height);
  position: relative;
  overflow: hidden;
}
.ui-toggle-switch.short-switch {
  --height: 22px;
}
.ui-toggle-switch.short-switch .inset-text {
  top: 4px;
}
.ui-toggle-switch > input[type="checkbox"] {
  position: absolute;
  top: 0;
  height: 0;
  width: 0;
  visibility: hidden;
}
.ui-toggle-switch .inset-text {
  font-size: 11px;
  color: #767676;
  position: absolute;
  top: 7px;
  right: 8px;
  left: auto;
  pointer-events: none;
}
.ui-toggle-switch .inset-text.active {
  left: 8px;
  right: auto;
  color: white;
}
.ui-toggle-switch label {
  cursor: pointer;
  text-indent: -9999px;
  width: 65px;
  height: var(--height);
  background: #cccccc;
  display: block;
  border-radius: var(--height);
  position: relative;
}
.ui-toggle-switch label.always-active {
  background: #18b28b;
}
.ui-toggle-switch label.always-active + .inset-text {
  color: white;
}
.ui-toggle-switch label.always-active.teal {
  background: #2e8b9d;
}
.ui-toggle-switch label.always-active.red {
  background: #ed4651;
}
.ui-toggle-switch label:after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: calc(var(--height) - 6px);
  height: calc(var(--height) - 6px);
  background: #fff;
  border-radius: 24px;
  transition: 0.3s;
  z-index: 2;
}
.ui-toggle-switch input.is-checked + label {
  background: #18b28b;
}
.ui-toggle-switch input.is-checked + label.teal {
  background: #2e8b9d;
}
.ui-toggle-switch input.is-checked + label.red {
  background: #ed4651;
}
.ui-toggle-switch input.is-checked + label:after {
  left: calc(100% - 3px);
  transform: translateX(-100%);
}
.ui-toggle-switch label:active:after {
  width: calc(var(--height) + var(--height) / 3);
}
.date-range .start-date {
  border-right: solid 1px #e6e6e6 !important;
  text-align: center;
  border-radius: 0;
}
.date-range .end-date {
  text-align: center;
}
.ui-date-picker {
  position: absolute;
  background: white;
  z-index: 50;
  min-width: 100%;
  padding: 5px;
  box-shadow: 0px 0.5px 4px 0.5px rgba(0, 0, 0, 0.2);
}
.ui-date-picker header {
  position: relative;
  display: grid;
  grid-template-columns: 20px auto 20px;
  padding: 5px 0px 5px 0px;
}
.ui-date-picker header .close-datepicker {
  position: absolute;
  background: #ed4651;
  border-radius: 100%;
  width: 20px;
  height: 20px;
  border: none;
  appearance: none;
  right: -15px;
  top: -15px;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.3);
}
.ui-date-picker header .close-datepicker:hover {
  cursor: pointer;
}
.ui-date-picker header .close-datepicker::before {
  font-family: "fontawesome" !important;
  content: "\f00d";
  color: white;
  text-align: center;
  position: relative;
  left: -1px;
  font-size: 14px;
  font-size: 1.4rem;
}
.ui-date-picker header .month-year {
  text-align: center;
  font-size: 20px;
  font-size: 2rem;
  color: #555555;
}
.ui-date-picker header .month-year strong {
  display: block;
  margin-bottom: 5px;
}
.ui-date-picker header .month-year span {
  display: block;
  color: #878787;
}
.ui-date-picker header .month-year p {
  margin: 10px 0 0 0;
  font-size: 14px;
  font-size: 1.4rem;
  color: #555555;
}
.ui-date-picker header .month-year p strong {
  display: inline-block;
}
.ui-date-picker header .arrow:hover {
  cursor: pointer;
}
.ui-date-picker header .arrow:hover::before {
  color: #2e8b9d;
}
.ui-date-picker header .arrow::before {
  font-size: 15px;
  font-size: 1.5rem;
  font-family: "fontawesome" !important;
  transition: 0.3s;
}
.ui-date-picker header .arrow.month {
  margin-bottom: 5px;
}
.ui-date-picker header .arrow.month::before {
  color: #555555;
}
.ui-date-picker header .arrow.year::before {
  color: #878787;
}
.ui-date-picker header .arrow.next::before {
  content: "\f138";
}
.ui-date-picker header .arrow.prev::before {
  content: "\f137";
}
.ui-date-picker .day-container {
  display: grid;
  grid-gap: 0px;
  grid-template-columns: repeat(7, 1fr);
  border: 1px solid #e6e6e6;
  border-bottom: none;
  border-right: none;
}
.ui-date-picker .day-container .day {
  border-right: solid 1px #e6e6e6;
  border-bottom: solid 1px #e6e6e6;
  text-align: center;
  height: 20px;
  padding-top: 5px;
  transition: 0.3s;
  color: #555555;
  min-width: 30px;
}
.ui-date-picker .day-container .day.today.current {
  background: #f6f6f6;
}
.ui-date-picker .day-container .day.today.current:hover {
  background: #e6e6e6;
  color: #000;
}
.ui-date-picker .day-container .day.today.current.active:hover {
  background: #243b5f;
  color: #fff;
}
.ui-date-picker .day-container .day:hover {
  background: #2e8b9d;
  color: white;
  cursor: pointer;
}
.ui-date-picker .day-container .day.header {
  background: #f6f6f6;
  pointer-events: none;
}
.ui-date-picker .day-container .day.filler {
  background: #e6e6e6;
  pointer-events: none;
}
.ui-date-picker .day-container .day.current.active {
  background: #243b5f;
  color: white;
}
.ui-date-picker .day-container .day.active {
  background: #243b5f;
  color: white;
}
.ui-date-picker .day-container .day.active.end {
  opacity: 0.8;
}
.ui-date-picker.right {
  right: 8px;
}
.ui-grid {
  display: grid;
  grid-gap: 20px;
}
.ui-grid.marginTop {
  margin-top: 20px;
}
.ui-grid.custom.gap {
  grid-gap: var(--gap);
}
.ui-grid.cols-1 {
  grid-template-columns: 1fr;
}
.ui-grid.cols-2 {
  grid-template-columns: repeat(2, 1fr);
}
.ui-grid.cols-2 .span.span-2 {
  grid-column-start: 1;
  grid-column-end: 3;
}
.ui-grid.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}
.ui-grid.cols-3 .span {
  grid-row-start: 1;
  grid-row-end: span 1;
}
.ui-grid.cols-3 .span.span-2.align-right {
  grid-column-start: 2;
  grid-column-end: 4;
}
.ui-grid.cols-3 .span.span-2.align-left {
  grid-column-start: 1;
  grid-column-end: 3;
}
.ui-grid.cols-4 {
  grid-template-columns: repeat(4, 1fr);
}
.ui-grid.cols-4 .span.span-2.align-right {
  grid-column-start: 3;
  grid-column-end: 5;
}
.ui-grid.cols-4 .span.span-2.align-left {
  grid-column-start: 1;
  grid-column-end: 3;
}
.ui-grid.cols-4 .span.span-2.align-center {
  grid-column-start: 2;
  grid-column-end: 4;
}
.ui-grid.cols-4 .span.span-3.align-right {
  grid-column-start: 2;
  grid-column-end: 5;
}
.ui-grid.cols-4 .span.span-3.align-left {
  grid-column-start: 1;
  grid-column-end: 4;
}
.ui-grid.cols-4 .span.span-4 {
  grid-column-start: 1;
  grid-column-end: 5;
}
.ui-grid.cols-5 {
  grid-template-columns: repeat(5, 1fr);
}
.ui-grid.cols-5 .span.span-2.align-right {
  grid-column-start: 6;
  grid-column-end: 4;
}
.ui-grid.cols-5 .span.span-2.align-mid-right {
  grid-column-start: 3;
  grid-column-end: 5;
}
.ui-grid.cols-5 .span.span-2.align-left {
  grid-column-start: 1;
  grid-column-end: 3;
}
.ui-grid.cols-5 .span.span-2.align-mid-left {
  grid-column-start: 2;
  grid-column-end: 4;
}
.ui-grid.cols-5 .span.span-3.align-center {
  grid-column-start: 2;
  grid-column-end: 5;
}
.ui-grid.cols-5 .span.span-3.align-right {
  grid-column-start: 3;
  grid-column-end: 6;
}
.ui-grid.cols-5 .span.span-3.align-left {
  grid-column-start: 1;
  grid-column-end: 4;
}
.ui-grid.cols-5 .span.span-4.align-right {
  grid-column-start: 2;
  grid-column-end: 6;
}
.ui-grid.cols-5 .span.span-4.align-left {
  grid-column-start: 1;
  grid-column-end: 5;
}
.ui-grid.cols-5 .span.span-5.align-right {
  grid-column-start: 1;
  grid-column-end: 6;
}
.ui-grid.cols-6 {
  grid-template-columns: repeat(6, 1fr);
}
.ui-grid.cols-6 .span.span-2.align-right {
  grid-column-start: 5;
  grid-column-end: 7;
}
.ui-grid.cols-6 .span.span-2.align-left {
  grid-column-start: 1;
  grid-column-end: 3;
}
.ui-grid.cols-6 .span.span-3.align-right {
  grid-column-start: 4;
  grid-column-end: 7;
}
.ui-grid.cols-6 .span.span-3.align-left {
  grid-column-start: 1;
  grid-column-end: 4;
}
.ui-grid.cols-6 .span.span-4.align-right {
  grid-column-start: 3;
  grid-column-end: 7;
}
.ui-grid.cols-6 .span.span-4.align-left {
  grid-column-start: 1;
  grid-column-end: 5;
}
.ui-grid.cols-6 .span.span-4.align-center {
  grid-column-start: 2;
  grid-column-end: 6;
}
.ui-grid.cols-6 .span.span-5.align-right {
  grid-column-start: 2;
  grid-column-end: 7;
}
.ui-grid.cols-6 .span.span-5.align-left {
  grid-column-start: 1;
  grid-column-end: 6;
}
.ui-grid.cols-6 .span.span-6.align-right {
  grid-column-start: 1;
  grid-column-end: 7;
}
.ui-grid.cols-7 {
  grid-template-columns: repeat(7, 1fr);
}
.ui-grid.cols-7 .span.span-2.align-right {
  grid-column-start: 6;
  grid-column-end: 8;
}
.ui-grid.cols-7 .span.span-2.align-left {
  grid-column-start: 1;
  grid-column-end: 3;
}
.ui-grid.cols-7 .span.span-3.align-right {
  grid-column-start: 5;
  grid-column-end: 8;
}
.ui-grid.cols-7 .span.span-3.align-left {
  grid-column-start: 1;
  grid-column-end: 4;
}
.ui-grid.cols-7 .span.span-4.align-right {
  grid-column-start: 4;
  grid-column-end: 8;
}
.ui-grid.cols-7 .span.span-4.align-left {
  grid-column-start: 1;
  grid-column-end: 5;
}
.ui-grid.cols-7 .span.span-4.align-center {
  grid-column-start: 2;
  grid-column-end: 7;
}
.ui-grid.cols-7 .span.span-5.align-right {
  grid-column-start: 3;
  grid-column-end: 8;
}
.ui-grid.cols-7 .span.span-5.align-left {
  grid-column-start: 1;
  grid-column-end: 6;
}
.ui-grid.cols-7 .span.span-6.align-right {
  grid-column-start: 2;
  grid-column-end: 8;
}
.ui-grid.cols-7 .span.span-6.align-left {
  grid-column-start: 1;
  grid-column-end: 7;
}
.ui-grid.cols-9 {
  grid-template-columns: repeat(9, 1fr);
}
.ui-grid.cols-10 {
  grid-template-columns: repeat(10, 1fr);
}
.ui-grid .ui-block.iconlink {
  background: white;
  border: solid 1px #e6e6e6;
  padding: 30px 0px 30px 0px;
}
.ui-grid .ui-block.iconlink:hover {
  cursor: pointer;
}
.ui-grid .ui-block.iconlink:hover h3 {
  color: #2e8b9d;
}
.ui-grid .ui-block.iconlink:hover .icon {
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.3);
}
.ui-grid .ui-block.iconlink .icon {
  display: block;
  width: 135px;
  height: 135px;
  background: #2e8b9d;
  border-radius: 100%;
  margin: 0 auto;
  margin-bottom: 20px;
  color: white;
  font-size: 25px;
  font-size: 2.5rem;
  transition: all 0.5s;
}
.ui-grid .ui-block.iconlink .icon.insight::before {
  font-family: "fontawesome" !important;
  content: "\f0eb";
  color: #fff;
  font-size: 80px;
  top: 20px;
  position: relative;
}
.ui-grid .ui-block.iconlink .icon.report::before {
  font-family: "fontawesome" !important;
  content: "\f15c";
  color: #fff;
  font-size: 70px;
  top: 30px;
  position: relative;
}
.ui-grid .ui-block.iconlink h3 {
  color: #243b5f;
  font-size: 20px;
  font-size: 2rem;
  margin: 0px 0px 20px 0px;
  line-height: 20px;
  transition: all 0.5s;
  padding: 0px 15px 0px 15px;
}
.ui-grid .ui-block.iconlink p {
  font-size: 12px;
  font-size: 1.2rem;
  text-align: center;
  color: #555555;
  max-width: 80%;
  margin: 0 auto;
}
.ui-grid .ui-block select {
  width: 100%;
}
.ui-grid .ui-block select:disabled {
  background-color: #dedede;
  opacity: 0.4;
  pointer-events: none;
  position: static;
}
.ui-grid .ui-block input.standard {
  width: 100%;
}
.ui-grid .ui-block label {
  color: #202c47;
  display: block;
  white-space: nowrap;
  width: 100%;
}
.ui-accordion {
  width: 100%;
  margin-bottom: 10px;
}
.ui-accordion.open .ui-accordion-content {
  display: block;
}
.ui-accordion.open header .status-indicator {
  transform: rotate(-45deg);
}
.ui-accordion.open header .status-indicator .vert-line {
  height: 16px;
}
.ui-accordion.open header .status-indicator .horz-line {
  width: 16px;
}
.ui-accordion header {
  background: white;
  width: calc(100% - 32px);
  padding: 10px 15px 10px 15px;
  border: solid 1px #e6e6e6;
  position: relative;
}
.ui-accordion header:hover {
  cursor: pointer;
}
.ui-accordion header .status-indicator {
  position: absolute;
  right: 15px;
  top: 20px;
  width: 25px;
  height: 25px;
  border-radius: 100%;
  border: solid 2px #b5b5b5;
  transition: 0.3s;
}
.ui-accordion header .status-indicator .symbol-container {
  position: relative;
}
.ui-accordion header .status-indicator .vert-line {
  transition: all 0.3s;
  width: 2px;
  height: 15px;
  background: #b5b5b5;
  position: absolute;
  left: 12px;
  top: 5px;
}
.ui-accordion header .status-indicator .horz-line {
  width: 15px;
  height: 2px;
  background: #b5b5b5;
  position: absolute;
  left: 5px;
  top: 12px;
  transition: 0.3s;
}
.ui-accordion header h2 {
  font-size: 20px;
  font-size: 2rem;
  color: #243b5f;
  text-align: left;
  font-weight: 300;
}
.ui-accordion header h2::before {
  margin-right: 5px;
  color: #2e8b9d;
  font-family: "fontawesome" !important;
}
.ui-accordion header h2.info::before {
  font-size: 20px;
  font-size: 2rem;
  content: "\f059";
}
.ui-accordion header h2.filter::before {
  content: "\f1de";
}
.ui-accordion .ui-accordion-content {
  display: none;
  border-left: 1px solid #e6e6e6;
  border-right: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
  padding: 20px;
  background: #fff;
  color: #555555;
}
.ui-sidebar-layout {
  display: grid;
  grid-gap: 20px;
}
.ui-sidebar-layout .block:nth-of-type(1) {
  grid-area: content;
}
.ui-sidebar-layout .block:nth-of-type(2n) {
  grid-area: sidebar;
}
.ui-sidebar-layout.left {
  grid-template-areas: "sidebar content";
  grid-template-columns: 250px auto;
}
.ui-sidebar-layout.right {
  grid-template-areas: "content sidebar";
  grid-template-columns: auto 250px;
}
.ui-toggle-menu {
  position: relative;
}
.ui-toggle-menu.gear {
  background: white;
  border-radius: 100%;
  height: 40px;
  padding: 0;
  text-align: center;
  width: 40px;
  transition: 0.5s;
  border: #404d5e 1px solid;
}
.ui-toggle-menu.gear:hover {
  background: #404d5e;
  cursor: pointer;
}
.ui-toggle-menu.gear:hover:before {
  color: white;
}
.ui-toggle-menu.gear:before {
  color: #404d5e;
  font-family: "fontawesome" !important;
  content: "\f013";
  font-size: 18px;
  font-size: 1.8rem;
  position: relative;
  top: 13px;
}
.ui-toggle-menu.dots:hover {
  cursor: pointer;
}
.ui-toggle-menu.dots:hover .dot {
  opacity: 0.6;
}
.ui-toggle-menu.dots .dot {
  transition: all 0.3s;
  display: block;
  border-radius: 100%;
  width: 5px;
  height: 5px;
  margin: 0 auto;
  margin-bottom: 3px;
  background: #2c3a4b;
}
.ui-toggle-menu.dots nav {
  right: -11px;
}
.ui-toggle-menu nav {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: calc(100% + 10px);
  right: 0px;
  background: #f7f7f7;
  width: 150px;
  border: 1px solid #e6e6e6;
  z-index: 10;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
  transition: 0.2s;
}
.ui-toggle-menu nav.open {
  opacity: 1;
  pointer-events: all;
}
.ui-toggle-menu nav:after,
.ui-toggle-menu nav:before {
  bottom: 100%;
  left: 87%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}
.ui-toggle-menu nav:after {
  border-color: rgba(136, 183, 213, 0);
  border-bottom-color: #f7f7f7;
  border-width: 6px;
  margin-left: -6px;
}
.ui-toggle-menu nav:before {
  border-color: rgba(194, 225, 245, 0);
  border-bottom-color: #e6e6e6;
  border-width: 7px;
  margin-left: -7px;
}
.ui-toggle-menu nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ui-toggle-menu nav ul li {
  text-align: left;
  margin: 0;
  padding: 6px 10px 6px 10px;
  transition: 0.3s;
}
.ui-toggle-menu nav ul li:hover {
  background: #e6e6e6;
}
.ui-toggle-menu nav ul li .item-icon {
  margin-right: 5px;
}
.ui-toggle-menu nav ul li .item-icon:before {
  font-family: "fontawesome" !important;
  font-size: 18px;
  font-size: 1.8rem;
}
.ui-toggle-menu nav ul li.edit .item-icon:before {
  content: "\f044";
}
.ui-toggle-menu nav ul li.delete .item-icon:before {
  content: "\f1f8";
}
.ui-toggle-menu nav ul li.save .item-icon:before {
  content: "\f0c7";
}
.ui-toggle-menu nav ul li.clone .item-icon:before {
  content: "\f24d";
}
.ui-toggle-menu nav ul li.open .item-icon:before {
  content: "\f135";
}
.ui-toggle-menu nav ul li.download .item-icon:before {
  content: "\f019";
}
.ui-toggle-menu nav ul li.add .item-icon:before {
  content: "\f067";
}
.ui-toggle-menu nav ul li.filter .item-icon:before {
  content: "\f1de";
}
.ui-modal.error-modal .content {
  width: 700px;
}
.ui-modal.error-modal .content .close-modal {
  position: absolute;
  right: -12px;
  top: -12px;
  border-radius: 100%;
  height: 30px;
  width: 30px;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 400;
}
.ui-modal.error-modal .content h2::before {
  font-family: "fontawesome" !important;
  content: "\f06a";
  color: #ed4651;
  font-size: 22px;
  font-size: 2.2rem;
  margin-right: 10px;
}
.ui-modal.error-modal .content .error-content {
  background: #f7f7f7;
  border-radius: 3px;
  padding: 10px;
  border: solid 1px #e6e6e6;
  max-height: 400px;
  overflow-y: auto;
}
.ui-modal.error-modal .content .error-list {
  text-align: left;
  padding: 0 0 0 20px;
}
.ui-modal.error-modal .content .error-list li {
  margin: 0 0 10px 0;
  list-style: none;
}
.ui-modal.error-modal .content .error-list li::before {
  content: "•";
  color: #ed4651;
  margin-right: 10px;
}
.dashboard-clone-form .filter-options {
  display: flex;
  padding: 15px;
  justify-content: space-evenly;
}
.dashboard-clone-form .loading-indicator {
  position: absolute;
  background: rgba(255, 255, 255, 0.7);
  height: 100%;
  border-radius: 5px;
}
.dashboard-clone-form .spinner {
  position: relative;
  margin: 0 auto;
  top: calc(50% - 35px);
}
[class^="route-my-file"] main.main-content .ui-header {
  z-index: inherit;
}
main.main-content header.content-header,
main.main-content .ui-header {
  z-index: 195;
  padding: 14px 35px 8px 18px;
  border-bottom: solid 1px #e6e6e6;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
  background: #f8f8f8;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
}
main.main-content header.content-header h1,
main.main-content .ui-header h1 {
  margin: 0 23px 0 0;
  font-size: 33px;
  font-size: 3.3rem;
  line-height: 33px;
  line-height: 3.3rem;
  font-weight: 300;
}
main.main-content header.content-header .content-header-title,
main.main-content .ui-header .content-header-title {
  overflow: hidden;
}
main.main-content header.content-header span,
main.main-content .ui-header span,
main.main-content header.content-header label,
main.main-content .ui-header label {
  font-size: 11px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #8a91a1;
}
main.main-content header.content-header span.fa,
main.main-content .ui-header span.fa,
main.main-content header.content-header label.fa,
main.main-content .ui-header label.fa {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 400;
}
main.main-content header.content-header button.icon-button .fa,
main.main-content .ui-header button.icon-button .fa {
  color: #404d5e;
  font-size: 24px;
  font-size: 2.4rem;
  margin-top: 3px;
}
main.main-content header.content-header label,
main.main-content .ui-header label {
  font-weight: 500;
  margin: 12px 3px 0 0;
}
main.main-content header.content-header .filters,
main.main-content .ui-header .filters {
  display: inline-block;
}
main.main-content header.content-header ul,
main.main-content .ui-header ul {
  list-style: outside none none;
  margin: 0;
  padding: 0;
  clear: both;
}
main.main-content header.content-header ul li,
main.main-content .ui-header ul li {
  float: left;
  margin: 0 5px 0 0;
}
main.main-content header.content-header ul li a,
main.main-content .ui-header ul li a {
  padding: 2px 15px;
  border-radius: 15px;
  background: #e6e6e6;
  color: #202c47;
}
main.main-content header.content-header ul li a.active,
main.main-content .ui-header ul li a.active {
  background: #404d5e;
}
.notification-wrapper .fa {
  color: #404d5e;
  cursor: pointer;
  font-size: 20px;
  font-size: 2rem;
  margin-top: 22px;
}
.notification-wrapper .notification-count {
  position: absolute;
  display: inline-block;
  box-sizing: border-box;
  top: 17px;
  left: 13px;
  min-width: 21px;
  height: 21px;
  margin: 1px 0 0 0;
  padding: 1px 5px 0;
  border: 2px solid white;
  border-radius: 10px;
  text-align: center;
  font-family: "neue-helvetica", "Helvetica Neue", Helvetica, sans-serif !important;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 15px;
  line-height: 1.5rem;
  font-weight: 700;
  color: white;
  background: red;
}
.notification-tooltip {
  position: relative;
  background: #ffffff;
  border: 1px solid #e6e6e6;
  margin-left: 50px;
  width: 270px;
  top: 20px;
  right: 3px;
  box-shadow: 3px 3px 5px rgba(173, 173, 173, 0.4);
  opacity: 0;
  transition: 0.5s;
}
.notification-tooltip.true {
  margin-left: -228px;
  transition: 0.5s;
  opacity: 1;
}
.notification-tooltip > div.scroll-pane {
  overflow: auto;
  width: 270px;
  max-height: 290px;
}
.notification-tooltip h2 {
  display: inline-block;
  height: 34px;
  vertical-align: middle;
  box-sizing: border-box;
  margin: 0;
  padding: 10px 10px;
  font-weight: 400;
  color: #202c47;
}
.notification-tooltip .read-all {
  float: right;
  padding-right: 10px;
  height: 34px;
  line-height: 34px;
}
.notification-tooltip article.notification {
  background: #eff3ff;
  border-top: solid 1px #e6e6e6;
  cursor: pointer;
  overflow: hidden;
  padding: 15px 10px;
}
.notification-tooltip article.notification.empty {
  background: #f5f5f5;
  padding: 20px;
  cursor: default;
}
.notification-tooltip article.notification.empty p.no-items {
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 13px;
  line-height: 1.3rem;
  font-style: italic;
  color: #b5c1e1;
}
.notification-tooltip article.notification p {
  margin: 0;
  float: left;
}
.notification-tooltip article.notification p strong {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.3rem;
  font-weight: 500;
}
.notification-tooltip article.notification p .date {
  font-size: 10px;
  font-size: 1rem;
  line-height: 1.2rem;
  font-weight: 400;
  font-style: italic;
  color: #888888;
}
.notification-tooltip article.notification p span:last-child {
  font-size: 11px;
  font-size: 1.1rem;
  line-height: 1.3rem;
  font-weight: 700;
}
.notification-tooltip article.notification p > * {
  display: block;
}
.notification-tooltip article.notification aside {
  width: 40px;
  height: 40px;
  line-height: 40px;
  display: inline-block;
  background: #404d5e;
  border-radius: 50%;
  color: white;
  text-align: center;
  font-size: 2rem;
  float: left;
  margin-right: 15px;
}
.notification-tooltip:after,
.notification-tooltip:before {
  bottom: 100%;
  left: 89%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}
.notification-tooltip:after {
  border-color: rgba(255, 255, 255, 0);
  border-bottom-color: #ffffff;
  border-width: 10px;
  margin-left: -10px;
}
.notification-tooltip:before {
  border-color: rgba(25, 32, 32, 0);
  border-bottom-color: #e6e6e6;
  border-width: 11px;
  margin-left: -11px;
}
.notification-cover {
  cursor: default;
  display: block;
  position: fixed;
  z-index: 50;
  top: calc(65px - 1px);
  left: 0;
  width: 100%;
  height: 100%;
}
.widget-content .chart-actions {
  background: transparent;
  margin-right: -28px !important;
}
.chart-actions {
  max-width: 18px;
  min-width: 18px;
  position: relative;
  text-align: right;
  padding-bottom: 10px;
  cursor: default;
}
.chart-actions .chart-options.export {
  left: -249px;
  opacity: 1;
  transition: 0.5s;
  top: -18px;
}
.chart-actions .chart-options.feature {
  left: -185px;
  opacity: 1;
  transition: 0.5s;
}
.chart-actions.comparison-chart {
  z-index: 1000;
}
.chart-actions .chart-options {
  background: white;
  border: 1px solid #e6e6e6;
  border-radius: 5px;
  left: 58px;
  list-style: none;
  opacity: 0;
  padding: 0;
  position: absolute;
  text-align: left;
  top: 21px;
  transition: 0.5s;
  width: 240px;
  z-index: 100;
}
.chart-actions .chart-options li {
  border-bottom: 1px solid #e6e6e6;
  cursor: pointer;
  padding: 4px 10px;
}
.chart-actions .chart-options li:hover {
  background: #f5f5f5;
}
.chart-actions .chart-options li span {
  margin-right: 5px;
  vertical-align: sub;
  font-size: 16px;
  font-size: 1.6rem;
}
.chart-actions .chart-options li:first-child {
  padding-top: 6px;
  border-radius: 5px 5px 0 0;
}
.chart-actions .chart-options li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 6px;
  border-radius: 0 0 5px 5px;
}
.chart-actions .chart-options:after,
.chart-actions .chart-options:before {
  left: 100%;
  top: 8%;
  border: solid transparent;
  content: " ";
  height: 0;
  position: absolute;
  pointer-events: none;
  width: 0;
}
.chart-actions .chart-options:after {
  border-color: rgba(255, 255, 255, 0);
  border-left-color: #ffffff;
  border-width: 10px;
  margin-top: -5px;
}
.chart-actions .chart-options:before {
  border-color: rgba(25, 32, 32, 0);
  border-left-color: #e6e6e6;
  border-width: 11px;
  margin-top: -6px;
}
.chart-actions .chart-button {
  -webkit-appearance: none;
  background-color: transparent;
  border: none;
  font-size: 20px;
  font-size: 2rem;
  color: #243b5f;
}
.chart-actions .chart-button.menu {
  padding-bottom: 10px;
  cursor: default;
}
.min-warning {
  color: #ed4651;
}
.min-warning .fa-exclamation-circle {
  margin-right: 5px;
}
.comparison-chart {
  z-index: 999;
}
main.main-content header.content-header .icon-button label {
  cursor: pointer;
  color: #404d5e;
  display: inline-block;
  font-family: "neue-helvetica", "Helvetica Neue", Helvetica, sans-serif !important;
  font-size: 20px;
  font-size: 2rem;
  font-weight: normal;
  margin: 0 3px 0 0;
}
main.main-content header.content-header .icon-button span {
  display: inline-block;
}
#wormholeDestination .filters fieldset {
  margin-bottom: 10px;
}
#wormholeDestination .filters fieldset:last-of-type {
  margin-bottom: 0;
}
#wormholeDestination .filters fieldset > * {
  display: inline-block;
}
#wormholeDestination .filters fieldset span,
#wormholeDestination .filters fieldset label {
  margin: 12px 10px 0 0;
  font-size: 11px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #8a91a1;
}
#wormholeDestination .filters fieldset span.fa,
#wormholeDestination .filters fieldset label.fa {
  margin: 11px 2px 0 0;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 400;
}
div.modal.wormhole-wrap + .content .name-edit {
  width: calc(100% - 40px);
  padding: 5px;
  margin-top: 5px;
  margin-bottom: 10px;
}
div.modal.wormhole-wrap + .content .description-edit {
  width: 100%;
  box-shadow: none;
  background: transparent;
  border: 1px solid #e6e6e6;
  padding-bottom: 35px;
  margin-bottom: 10px;
}
div.modal.wormhole-wrap + .content .cache-widget-data-container {
  width: 130px;
  margin-bottom: 5px;
}
div.modal.wormhole-wrap + .content .cache-widget-data-container .ui-input .ui-label.checkbox {
  grid-gap: 5px;
}
div.modal.wormhole-wrap + .content .icon-circle-cross.close {
  z-index: 999;
}
div.modal.wormhole-wrap + .content .modal-buttons .standard-button {
  margin: 0px 5px;
}
div.modal.wormhole-wrap + .content .dashboard-export-agreement {
  max-width: 350px;
  margin-top: 30px;
}
div.modal.wormhole-wrap + .content .export-options h3 {
  cursor: pointer;
  margin: 0;
  line-height: 30px;
  line-height: 3rem;
}
div.modal.wormhole-wrap + .content .export-options.format {
  justify-content: center;
  margin-bottom: 20px;
}
div.modal.wormhole-wrap + .content .export-options.format .ui-toggle-switch {
  margin: 0 18px;
}
div.modal.wormhole-wrap + .content .export-options.format .ui-button:nth-child(1) {
  border-radius: 3px 0 0 3px;
}
div.modal.wormhole-wrap + .content .export-options.format .ui-button:nth-child(2) {
  border-radius: 0;
}
div.modal.wormhole-wrap + .content .export-options.format .ui-button:nth-child(3) {
  border-radius: 0 3px 3px 0;
}
div.modal.wormhole-wrap + .content .export-options .download,
div.modal.wormhole-wrap + .content .export-options .my-files {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
div.modal.wormhole-wrap + .content .export-options .download h3,
div.modal.wormhole-wrap + .content .export-options .my-files h3 {
  margin-right: 18px;
}
div.modal.wormhole-wrap + .content .export-options .my-files h3 {
  margin-right: 28px;
}
div.modal.wormhole-wrap + .content .file-type-pdf {
  text-align: right;
  max-width: 35px;
}
div.modal.wormhole-wrap + .content .file-type-pptx {
  text-align: left;
  max-width: 90px;
  margin-right: -8px;
}
div.modal.wormhole-wrap + .content .file-type-pdf.pdf,
div.modal.wormhole-wrap + .content .file-type-pptx.pptx,
div.modal.wormhole-wrap + .content h3.active {
  color: #13cd7c;
}
div.modal.wormhole-wrap + .content .widget-header .widget-header-base h1 {
  font-weight: 400;
}
div.modal.wormhole-wrap + .content .exporting-report {
  display: none;
}
div.modal.wormhole-wrap + .content .national-zip-map {
  height: 100%;
}
div.modal.wormhole-wrap + .content .national-zip-map .map-wrapper {
  height: 100%;
  width: 100%;
}
div.modal.wormhole-wrap + .content .national-zip-map svg {
  overflow: visible;
}
div.modal.wormhole-wrap + .content aside.export-sidebar {
  box-sizing: border-box;
  height: 100%;
  padding: 15px;
  width: 100%;
}
div.modal.wormhole-wrap + .content aside.export-sidebar .submit {
  margin: 10px 0 0 0;
  padding: 8px;
}
div.modal.wormhole-wrap + .content aside.export-sidebar .submit::before {
  content: none;
}
div.modal.wormhole-wrap + .content aside.export-sidebar hr {
  border: 0;
  border-bottom: 1px solid #e6e6e6;
}
div.modal.wormhole-wrap + .content aside.export-sidebar h3 {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 300;
}
div.modal.wormhole-wrap + .content aside.export-sidebar > h3:first-of-type {
  margin-top: -15px;
}
div.modal.wormhole-wrap + .content aside.export-sidebar .flex-row {
  margin-right: 0;
}
div.modal.wormhole-wrap + .content .chart-loading-indicator .spinner {
  top: 10px;
}
div.modal.wormhole-wrap + .content .ui-resizable-handle.ui-icon {
  bottom: 10px;
  right: 13px;
}
div.modal.wormhole-wrap + .content .widget-content {
  overflow: hidden;
}
div.modal.wormhole-wrap + .content .widget-content .flex-row.between.init {
  height: 10px;
}
div.modal.wormhole-wrap + .content .widget-content h1 {
  margin-left: 0;
  text-align: center;
}
div.modal.wormhole-wrap + .content .inner-label {
  position: relative;
  padding: 0;
}
div.modal.wormhole-wrap + .content .inner-label label {
  font-size: 12px;
  font-size: 1.2rem;
  color: #7a8593;
}
div.modal.wormhole-wrap + .content .inner-label input.standard {
  width: 100%;
  background: transparent;
  height: 45px;
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: 300;
}
div.modal.wormhole-wrap + .content .download-pdf-icon {
  height: 50px;
  width: 100%;
}
div.modal.wormhole-wrap.exporting + .content .close {
  display: none;
}
.insight-indicator {
  font-weight: bold;
  margin-top: 6px;
  margin-right: 11px;
  color: #ed4651;
}
.insight-indicator .shared {
  color: #243b5f;
  padding-right: 2px;
}
.insight-indicator .unsaved,
.insight-indicator .fa {
  text-transform: uppercase;
  color: #ed4651 !important;
  padding-left: 2px;
  margin: 6px 0 0 !important;
}
.insight-indicator .unsaved .fa {
  display: inline-block;
}
.insight-dashboard-actions-wrapper {
  max-width: 18px;
  min-width: 18px;
  position: absolute;
  text-align: right;
  right: 45px;
}
.insight-dashboard-actions-wrapper.cell-options {
  right: initial;
}
.insight-dashboard-actions-wrapper.cell-options ul.insight-actions {
  left: 0px;
}
.insight-dashboard-actions-wrapper.cell-options ul.insight-actions li {
  padding: 3px 10px;
  margin: 3px 0px;
}
.insight-dashboard-actions-wrapper.cell-options ul.insight-actions li .insight-action-filter {
  display: inline-block;
  width: 80%;
}
.insight-dashboard-actions-wrapper.cell-options ul.insight-actions::before,
.insight-dashboard-actions-wrapper.cell-options ul.insight-actions::after {
  left: 10%;
}
.insight-dashboard-actions-wrapper .insight-actions {
  display: none;
  background: white;
  border: 1px solid #e6e6e6;
  left: -105px;
  list-style: none;
  padding: 0px;
  position: relative;
  text-align: left;
  top: -3px;
  width: 155px;
  z-index: 100;
}
.insight-dashboard-actions-wrapper .insight-actions.true {
  display: block;
}
.insight-dashboard-actions-wrapper .insight-actions.insight-template {
  width: 180px;
}
.insight-dashboard-actions-wrapper .insight-actions:after,
.insight-dashboard-actions-wrapper .insight-actions:before {
  bottom: 100%;
  left: 87%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}
.insight-dashboard-actions-wrapper .insight-actions:after {
  border-color: rgba(136, 183, 213, 0);
  border-bottom-color: white;
  border-width: 6px;
  margin-left: -6px;
}
.insight-dashboard-actions-wrapper .insight-actions:before {
  border-color: rgba(194, 225, 245, 0);
  border-bottom-color: #e6e6e6;
  border-width: 7px;
  margin-left: -7px;
}
.insight-dashboard-actions-wrapper .insight-actions li {
  cursor: pointer;
  padding: 6px 10px;
}
.insight-dashboard-actions-wrapper .insight-actions li:hover {
  background: #f5f5f5;
}
.insight-dashboard-actions-wrapper .insight-actions li span {
  margin-right: 5px;
  vertical-align: sub;
}
.insight-dashboard-actions-wrapper .insight-actions li:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.insight-dashboard-actions-wrapper .action-icon {
  -webkit-appearance: none;
  background-color: transparent;
  width: 20px;
  border: none;
  font-size: 18px;
  font-size: 1.8rem;
  color: #404d5e;
}
.open-button {
  background-color: white;
  color: black;
  border: 1px solid #b3b3b3;
  line-height: 3.3rem;
  padding-top: 3px;
}
.open-button:hover {
  background-color: #18b28b;
  border: 1px solid #18b28b;
  color: white;
}
.insights .content .calculated-fields {
  padding: 0;
}
.calculated-field-row .x-autocomplete-wrap {
  display: flex;
  position: relative;
  min-height: 220px;
  margin-right: 0;
}
.calculated-field-row .calc-value-autocomplete {
  position: absolute;
  background: white;
  max-width: 390px;
  max-height: 120px;
  overflow: scroll;
  border: 1px solid #e6e6e6;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}
.calculated-field-row .calc-value-autocomplete .tt-suggestion {
  padding: 4px 20px 4px 10px;
  word-wrap: break-word;
  cursor: pointer;
}
.calculated-field-row .calc-value-autocomplete .tt-suggestion.selected {
  background: #dedede;
}
.calculated-field-row .signature,
.calculated-field-row .no-help-text {
  font-weight: 500;
}
.calculated-field-row .documentation {
  background: #f8f8f8;
  border: 1px solid #e4e4e4;
  margin-right: 0;
  text-align: left;
  overflow-x: scroll;
}
.calculated-field-row .documentation pre {
  display: inline;
  background: #d4d4d4;
  padding: 1px;
}
.calculated-field-row .x-autocomplete-wrap .tt-dropdown-menu {
  top: 45px;
  left: 25px;
}
.calculated-field-row .x-autocomplete-wrap .tt-dropdown-menu:not(.empty-list) {
  min-height: 80px;
}
.calculated-field-row .x-autocomplete-wrap .tt-dropdown-menu .tt-suggestions {
  text-align: left;
}
div.modal.hotfix-calculated-fields + .content {
  min-width: 740px;
  align-items: flex-start;
}
div.modal.hotfix-calculated-fields + .content .modal-scroll-container {
  overflow-x: hidden;
}
div.modal.hotfix-calculated-fields + .content .flex-row.button-wrap {
  margin-right: 0;
}
div.modal.hotfix-calculated-fields + .content .flex-row.button-wrap .cancel {
  margin-right: 20px;
}
div.modal.hotfix-calculated-fields + .content .calc-field-wrapper {
  max-height: 450px;
  overflow: auto;
}
div.modal.hotfix-calculated-fields + .content .calc-field-wrapper select.standard {
  margin-right: 7px;
}
div.modal.hotfix-calculated-fields + .content .calc-field-wrapper + .button-wrap .standard-button.cancel {
  background: #7a8593;
}
div.modal.hotfix-calculated-fields + .content .add-calc-field {
  transition: 0s;
}
div.modal.hotfix-calculated-fields + .content .add-calc-field.new {
  position: relative;
  right: -280px;
}
div.modal.hotfix-calculated-fields + .content .add-calc-field.large {
  margin: 40px auto;
}
div.modal.hotfix-calculated-fields + .content p {
  margin: 15px 5px 2px;
  padding: 0 5px;
}
div.modal.hotfix-calculated-fields + .content textarea {
  margin: 0;
  border-radius: 0;
  border: solid 1px #e4e4e4;
  border-right: solid 1px black;
}
div.modal.hotfix-calculated-fields + .content .calculated-field-row {
  border-top: solid 1px #e0e0e0;
  padding: 10px 5px 5px 5px;
  margin-bottom: 10px;
  margin-top: 10px;
}
div.modal.hotfix-calculated-fields + .content .calculated-field-row .flex-row {
  margin-right: 0;
}
div.modal.hotfix-calculated-fields + .content .calculated-field-row .flex-row:first-of-type {
  margin-bottom: 20px;
}
div.modal.hotfix-calculated-fields + .content .calculated-field-row .flex-row:first-of-type input {
  height: 24px;
  margin: 0 10px 0 0;
  padding: 0 7px;
  border-radius: 3px;
  background: #fff;
  font-size: 11px;
  font-size: 1.1rem;
}
div.modal.hotfix-calculated-fields + .content .button-wrap {
  margin-top: 20px;
}
.click-catcher {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9990;
}
div.modal {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  background: rgba(7, 20, 50, 0.4);
  z-index: 9990;
}
div.modal#feedback .content form {
  max-width: 570px;
  display: block;
}
div.modal#feedback .content form p.flex {
  padding: 0 15px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
}
div.modal#feedback .content form p.flex span {
  min-width: 170px;
}
div.modal#feedback .content form p.flex span.left {
  text-align: left;
}
div.modal#feedback .content form p.flex span.right {
  text-align: right;
}
div.modal .content,
div.modal + .content {
  display: inline-block;
  padding: 15px;
  align-self: center;
  margin: -5% 20px 0;
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transition: opacity 0.5s, top 0.5s;
  transition: opacity 0.5s, top 0.5s;
  border-radius: 5px;
  background-color: #fff;
  box-shadow: 0px 0px 5px 1px rgba(7, 20, 50, 0.1);
  text-align: center;
  min-height: 70px;
  min-width: 90px;
  max-width: 920px;
}
div.modal .content[data-test="agree"],
div.modal + .content[data-test="agree"] {
  min-width: 40%;
}
div.modal .content span.close,
div.modal + .content span.close {
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 26px;
  color: #555555;
}
div.modal .content h1,
div.modal + .content h1 {
  margin: 10px 0 0;
  padding: 0 40px 1px;
  margin-bottom: 10px;
  font-weight: 100;
  font-size: 34px;
  font-size: 3.4rem;
  line-height: 34px;
  line-height: 3.4rem;
  text-align: center;
  color: #071432;
}
div.modal .content p,
div.modal + .content p {
  margin: 8px 0 10px;
  padding: 0 20px;
  line-height: 16px;
  line-height: 1.6rem;
  word-wrap: normal;
}
div.modal .content p a,
div.modal + .content p a {
  font-weight: 700;
  text-decoration: underline;
}
div.modal .content textarea,
div.modal + .content textarea {
  resize: none;
  box-sizing: border-box;
  width: calc(100% - 30px);
  margin: 2px auto 0;
  padding: 15px;
  border: none;
  border-radius: 3px;
  background: #f9f9fa;
  box-shadow: inset 0px 2px 3px 0px rgba(0, 0, 0, 0.1);
}
div.modal .content .modal-scroll-container,
div.modal + .content .modal-scroll-container {
  max-height: 75vh;
  overflow: auto;
}
div.modal + .content {
  left: 50%;
  margin: 0;
  position: fixed;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
}
div.modal .vault-error input {
  display: block;
  margin: 0 auto 15px;
  width: 80%;
}
div.modal.loading .content .modal-scroll-container,
div.modal.loading + .content .modal-scroll-container {
  min-height: 30vh;
}
div.modal.query-text-modal + .content {
  width: 85%;
}
.modal.lens-prompt > .content {
  text-align: left;
}
.modal.lens-prompt .modal-scroll-container {
  margin: 1.5em 0 0;
}
ul.pager {
  float: right;
  margin: 20px 0 0 0;
  padding: 7px 8px;
  border: 1px solid #e6e6e6;
  border-radius: 18px;
  list-style: outside none none;
  background: white;
}
ul.pager > * {
  float: left;
}
ul.pager > li > a {
  display: block;
  width: 0;
  height: 0;
  padding: 20px 0 0 20px;
  overflow: hidden;
  margin: 0 5px 0 0;
  background: url("/assets/img/pagination-first.svg") no-repeat;
}
ul.pager > li.previous a {
  margin: 0;
  background: url("/assets/img/pagination-back.svg") no-repeat;
}
ul.pager > li.next a {
  margin: 0;
  background: url("/assets/img/pagination-next.svg") no-repeat;
}
ul.pager > li.last a {
  margin: 0 0 0 5px;
  background: url("/assets/img/pagination-last.svg") no-repeat;
}
ul.pager > li.pager-inner {
  margin: 3px 9px 0;
  color: #898f9f;
}
ul.pager > li.pager-inner input {
  width: 50px;
}
ul.pager > li.disabled a {
  cursor: default;
  opacity: 0.5;
}
.share-card-body {
  min-width: 500px;
  overflow-x: hidden;
  border-top: 1px solid #e6e6e6;
  margin: 30px 0 20px;
  padding-bottom: 10px;
  text-align: left;
}
.share-card-body .share,
.share-card-body .share-with {
  margin-top: 2rem;
}
.share-card-body .tab-container {
  text-align: center;
}
.share-card-body .tab-container span.tab {
  display: inline-block;
  cursor: pointer;
  padding: 5px;
}
.share-card-body .tab-container span.tab.active {
  background-color: #dee8f1;
}
.share-card-body button {
  background: white;
  border-radius: 50%;
  width: 25px;
  max-width: 25px;
  height: 25px;
  max-height: 25px;
  padding: 0;
  text-align: center;
  line-height: 10px;
  line-height: 1rem;
  transition: 0.5s;
}
.share-card-body button span {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 24px;
  line-height: 2.4rem;
}
.share-card-body button:hover {
  color: white !important;
  transition: 0.5s;
}
.share-card-body button.delete {
  color: #ed4651;
  border: 1px solid #ed4651;
}
.share-card-body button.delete:hover {
  background: #ed4651;
}
.share-card-body button.edit {
  color: #404d5e;
  border: 1px solid #404d5e;
}
.share-card-body button.edit:hover {
  background: #404d5e;
}
.share-card-body button.share-with-user,
.share-card-body button.open {
  color: #18b28b;
  border: 1px solid #18b28b;
}
.share-card-body button.share-with-user:hover,
.share-card-body button.open:hover {
  background: #18b28b;
}
.share-card-body button.share-with-user span,
.share-card-body button.open span {
  line-height: 26px;
  line-height: 2.6rem;
}
.share-card-body input.user-share-search {
  width: 100%;
  margin-bottom: 20px;
  background-position: calc(100% - 10px) center;
}
.share-card-body .flex-row {
  margin-right: 0;
}
.share-card-body .shared-item-title {
  margin: 15px 25px;
}
.share-card-body .vault-share-user {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  padding: 10px 20px;
}
.share-card-body .vault-share-user:hover {
  background: #f3f3f3;
  cursor: pointer;
}
.share-card-body .vault-share-user .share-checkbox {
  width: 14px;
  height: 14px;
  -webkit-appearance: none;
  border-radius: 3px;
  border: solid 1px #b2b2b2;
  color: #fff;
  position: relative;
  margin-right: 10px;
}
.share-card-body .vault-share-user .share-checkbox:checked {
  background: #18b28b;
  border: none;
  font-family: "fontawesome" !important;
}
.share-card-body .vault-share-user .share-checkbox:checked::after {
  content: "\f00c";
  position: absolute;
  top: 2px;
  left: 2px;
  font-size: 10px;
  font-size: 1rem;
}
.share-card-body .bulk-button {
  width: 145px;
  height: 24px;
  display: inline-block;
  max-width: none;
  border-radius: 3px;
  padding: 2px 0 0 0;
  margin: 0 10px 15px 0;
}
.share-card-body .bulk-button:before {
  display: inline-block;
  position: relative;
  top: -1px;
}
.share-card-body .align-right {
  display: grid;
  place-items: end;
}
.share-card-body .bulk-toggle-button {
  width: 105px;
  margin: 0 0 15px 10px;
}
.share-card-body .remove-share-checkbox {
  margin: 0 5px 0 0;
  position: relative;
  top: 2px;
  cursor: pointer;
}
.user-share-list .info {
  font-size: 16px;
  font-size: 1.6rem;
  text-align: center;
}
#wormholeDestination .content.share-modal h1 {
  margin: 25px 15px 10px;
}
#wormholeDestination .content.share-modal h2 {
  font-weight: 300;
  margin: 15px;
}
#wormholeDestination .content.share-modal h3 {
  text-align: center;
  margin: 20px 0;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 100;
  letter-spacing: 1px;
}
#wormholeDestination .content.share-modal .standard-button {
  margin: 0;
}
#wormholeDestination .content.share-modal .share-with p.flex-row,
#wormholeDestination .content.share-modal .share p.flex-row {
  padding: 5px 20px;
  margin: 0;
}
#wormholeDestination .content.share-modal .share-with p.flex-row:hover,
#wormholeDestination .content.share-modal .share p.flex-row:hover {
  background: #f5f5f5;
}
.share-card-current-header .user-info {
  width: calc(100% - 110px);
}
.share-card-current-header .vault-icon {
  width: 40px;
  height: 40px;
  margin-right: 2rem;
}
.share-card-current-header .action-items {
  flex: 1;
  text-align: right;
  min-width: 158px;
}
.share-card-current-header .circle-button {
  background: white;
  border-radius: 50%;
  height: 40px;
  padding: 0;
  text-align: center;
  width: 40px;
  margin-left: 10px;
}
.share-card-current-header .circle-button span {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 38px;
  line-height: 3.8rem;
}
.share-card-current-header .circle-button span.fa-user-plus {
  margin-right: -3px;
}
.share-card-current-header .circle-button:hover {
  color: white !important;
  transition: 0.5s;
}
.share-card-current-header .circle-button.download {
  color: #18b28b;
  border: 1px solid #18b28b;
}
.share-card-current-header .circle-button.download:hover {
  background: #18b28b;
}
.share-card-current-header .circle-button.open {
  color: #18b28b;
  border: 1px solid #18b28b;
}
.share-card-current-header .circle-button.clone {
  color: #404d5e;
  border: 1px solid #404d5e;
}
.share-card-current-header .circle-button.clone:hover {
  background: #404d5e;
}
.share-card-footer .status {
  display: inline-block;
}
.route-my-file-files .share-card-header .action-items {
  min-width: 218px;
}
.share-card-header .action-items {
  flex: 1;
  text-align: right;
  min-width: 158px;
}
.share-card-header .action-items .circle-button {
  background: white;
  border-radius: 50%;
  height: 40px;
  padding: 0;
  text-align: center;
  width: 40px;
  margin-left: 10px;
  transition: 0.5s;
}
.share-card-header .action-items .circle-button span {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 38px;
  line-height: 3.8rem;
}
.share-card-header .action-items .circle-button span.fa-user-plus {
  margin-right: -3px;
}
.share-card-header .action-items .circle-button:hover {
  color: white !important;
  transition: 0.5s;
  cursor: pointer;
}
.share-card-header .action-items .circle-button:active {
  box-shadow: inset 0px 0px 0px 2px white;
  transition: 0s;
}
.share-card-header .action-items .circle-button.delete {
  color: #ed4651;
  border: 1px solid #ed4651;
}
.share-card-header .action-items .circle-button.delete:hover {
  background: #ed4651;
}
.share-card-header .action-items .circle-button.download {
  color: #18b28b;
  border: 1px solid #18b28b;
}
.share-card-header .action-items .circle-button.download:hover {
  background: #18b28b;
}
.share-card-header .action-items .circle-button.edit {
  color: #404d5e;
  border: 1px solid #404d5e;
}
.share-card-header .action-items .circle-button.edit:hover {
  background: #404d5e;
}
.share-card-header .action-items .circle-button.open {
  color: #18b28b;
  border: 1px solid #18b28b;
}
.share-card-header .action-items .circle-button.open:hover {
  background: #18b28b;
}
.share-card-header .action-items .circle-button.share {
  color: #243b5f;
  border: 1px solid #243b5f;
}
.share-card-header .action-items .circle-button.share:hover {
  background: #243b5f;
}
.share-card-header .action-items .circle-button.save {
  color: #18b28b;
  border: 1px solid #18b28b;
}
.share-card-header .action-items .circle-button.save:hover {
  background: #18b28b;
}
.share-card-header .action-items .circle-button.cancel {
  color: #ed4651;
  border: 1px solid #ed4651;
}
.share-card-header .action-items .circle-button.cancel:hover {
  background: #ed4651;
}
.share-card-header .card-info {
  width: 100%;
  max-width: calc(100% - 270px);
}
.share-card-header .card-info h3 {
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  max-width: 100%;
  line-height: 22px;
  line-height: 2.2rem;
  margin: 0;
}
.share-card-header .card-info p {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  margin: 0;
}
.share-card-header .card-info input {
  width: 100%;
}
.my-files .share-card-header .card-info {
  max-width: calc(100% - 265px);
}
.tag-input {
  width: 100%;
  padding: 0px 0px 0px 5px;
  background: white;
}
.tag-input li {
  list-style-type: none;
  display: inline-block;
}
.tag-input .inserted-tag,
.tag-input .new-tag input {
  font-size: 12px;
  font-size: 1.2rem;
  padding: 2px 0px 2px 10px;
  margin-top: 3px;
}
.tag-input .inserted-tag {
  background: #7a8593;
  border-radius: 3px;
  color: white;
}
.tag-input .inserted-tag.should-remove {
  background: #4b525c;
}
.tag-input .new-tag input {
  border: none;
  padding: 0;
}
.tag-input .new-tag input:focus {
  border: none !important;
}
.tag-input .remove-tag {
  font-size: 10px;
  font-size: 1rem;
  font-weight: 700;
  color: #ced2d8;
  position: relative;
  cursor: pointer;
  bottom: 1px;
  left: 3px;
  margin-left: 3px !important;
  margin-right: 8px !important;
}
.tag-input .remove-tag:before {
  content: "x";
}
.insight-visualization-wrapper {
  position: relative;
}
.insight-visualization-wrapper > section {
  position: relative;
}
.insight-visualization-wrapper .display-hidden-fields-checkbox {
  position: absolute;
  top: 2px;
  right: 305px;
  color: white;
  font-weight: bold;
  font-size: 1.3rem;
}
.insight-visualization-wrapper .display-hidden-fields-checkbox .custom-checkbox {
  position: relative;
  top: 7px;
  right: 3px;
}
[class^="route-insight-table"] .insight-content-wrapper .insight-section-header,
[class^="route-insight-table"] .insight-visualization-wrapper .insight-section-header {
  background-color: #404d5e;
  border: 1px solid #e6e6e6;
  transition: 0.2s;
}
.insight-content-wrapper,
.insight-visualization-wrapper {
  padding-top: 20px;
  padding-bottom: 0;
}
.insight-content-wrapper:nth-of-type(1) .insight-section-header .type-icon,
.insight-visualization-wrapper:nth-of-type(1) .insight-section-header .type-icon {
  background: #338ca4;
}
.insight-content-wrapper:nth-of-type(2) .insight-section-header .type-icon,
.insight-visualization-wrapper:nth-of-type(2) .insight-section-header .type-icon {
  background: #2863a8;
}
.insight-content-wrapper.data-table .insight-section-header .type-icon,
.insight-visualization-wrapper.data-table .insight-section-header .type-icon {
  background: #5e70b5;
}
.insight-content-wrapper .insight-section-header,
.insight-visualization-wrapper .insight-section-header {
  box-shadow: none;
  color: #fff;
  font-size: 1.1em;
  font-weight: 500;
  height: 40px;
  box-sizing: border-box;
  position: relative;
}
.insight-content-wrapper .insight-section-header .type-icon,
.insight-visualization-wrapper .insight-section-header .type-icon {
  font-size: 2rem;
  height: 30px;
  text-align: center;
  width: 50px;
  padding-top: 8px;
  color: #fff;
  background: #404d5e;
}
.insight-content-wrapper .insight-section-header .chart-icon-wrapper,
.insight-visualization-wrapper .insight-section-header .chart-icon-wrapper,
.insight-content-wrapper .insight-section-header .title-wrapper,
.insight-visualization-wrapper .insight-section-header .title-wrapper {
  display: inline;
}
.insight-content-wrapper .insight-section-header .title-wrapper,
.insight-visualization-wrapper .insight-section-header .title-wrapper {
  cursor: pointer;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 16px;
  line-height: 1.6rem;
  font-weight: 300;
  padding-left: 12px;
}
.insight-content-wrapper .insight-section-header .chart-icon-wrapper .horizontal-bar,
.insight-visualization-wrapper .insight-section-header .chart-icon-wrapper .horizontal-bar {
  -webkit-transform: rotate(-90deg) scale(0.75, -1);
  transform: rotate(-90deg) scale(0.75, -1);
  padding: 0px 1px;
}
.insight-content-wrapper .insight-section-header span,
.insight-visualization-wrapper .insight-section-header span {
  cursor: pointer;
}
.insight-content-wrapper .insight-section-header span.fa-caret-right,
.insight-visualization-wrapper .insight-section-header span.fa-caret-right {
  transition: 0.2s;
  font-size: 20px;
  font-size: 2rem;
  line-height: 13px;
  line-height: 1.3rem;
  position: absolute;
  top: 14px;
  right: 20px;
  font-size: 2.5rem;
}
.insight-content-wrapper .insight-section-header span.active,
.insight-visualization-wrapper .insight-section-header span.active {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  transition: 0.2s;
}
.insight-content-wrapper .insight-section-header span.chart-icon,
.insight-visualization-wrapper .insight-section-header span.chart-icon {
  padding: 0px 3px;
  opacity: 0.5;
  transition: 0.2s;
}
.insight-content-wrapper .insight-section-header span.chart-icon.selected,
.insight-visualization-wrapper .insight-section-header span.chart-icon.selected {
  opacity: 1;
  transition: 0.2s;
}
.insight-content-wrapper .insight-section-header span.chart-icon:hover,
.insight-visualization-wrapper .insight-section-header span.chart-icon:hover {
  opacity: 1;
  transition: 0.2s;
}
.insight-content-wrapper .insight-section-header span.chart-icon.chart-icon-stacked,
.insight-visualization-wrapper .insight-section-header span.chart-icon.chart-icon-stacked {
  display: inline-block;
  width: 16px;
  height: 15px;
}
.insight-content-wrapper .insight-section-header span.chart-icon.chart-icon-stacked img,
.insight-visualization-wrapper .insight-section-header span.chart-icon.chart-icon-stacked img {
  width: 100%;
  display: inline-block;
  margin-bottom: -1px;
}
.insight-content-wrapper .insight-section-header span.chart-icon.chart-icon-stacked img.bar-stacked,
.insight-visualization-wrapper .insight-section-header span.chart-icon.chart-icon-stacked img.bar-stacked {
  -webkit-transform: rotate(-90deg) scale(0.75, -1);
  transform: rotate(-90deg) scale(0.75, -1);
}
.insight-content-wrapper span.zoom-message,
.insight-visualization-wrapper span.zoom-message {
  color: white;
  font-size: 10px;
  cursor: default;
  position: absolute;
  top: 20px;
  right: 75px;
}
.insight-content-wrapper .map-wrapper,
.insight-visualization-wrapper .map-wrapper {
  cursor: pointer;
}
.widget-content .insight-visualization-wrapper .insight-section-header {
  height: 30px;
  padding: 6px 0px 0px 0px;
}
@media screen and (max-width: 1400px) {
  .insight-content-wrapper span.zoom-message,
  .insight-visualization-wrapper span.zoom-message {
    font-size: 9px;
    font-size: 0.9rem;
  }
  .insight-content-wrapper span.zoom-message.display-hidden,
  .insight-visualization-wrapper span.zoom-message.display-hidden {
    color: #404d5e;
    top: 43px;
    z-index: 1;
  }
  .insight-content-wrapper .display-hidden-fields-checkbox,
  .insight-visualization-wrapper .display-hidden-fields-checkbox {
    right: 285px;
    font-size: 10px;
    font-size: 1rem;
  }
  .insight-content-wrapper .display-hidden-fields-checkbox .custom-checkbox,
  .insight-visualization-wrapper .display-hidden-fields-checkbox .custom-checkbox {
    top: 8px;
  }
}
.data-label-mask {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 90;
  width: 100%;
  height: 100%;
}
.data-label-mask .close-options {
  background: transparent;
  border: none;
  position: absolute;
  top: 0;
  right: 0;
  height: 24px;
  width: 24px;
}
.data-label-mask.active {
  display: block;
}
.data-label-mask.active .data-label-options {
  position: absolute;
  background: #404d5e;
  color: white;
  border: #e6e6e6;
  z-index: 5000;
  margin-left: 50%;
  left: -100px;
  height: 33px;
  width: 190px;
  padding: 10px 0px 10px 10px;
  top: 20%;
}
.data-label-mask.active .data-label-options .label-options {
  margin: 0;
  padding: 0;
  list-style: none;
}
.data-label-mask.active .data-label-options .label-options li {
  cursor: pointer;
}
.data-label-mask.active .data-label-options .label-options li:first-child,
.data-label-mask.active .data-label-options .label-options li:nth-child(2) {
  margin: 0px 0px 3px 0px;
}
.data-label-mask.active .data-label-options .label-options li span {
  padding: 0px 5px 0px 0px;
}
.data-label-mask.active .data-label-options .label-options li span.fa-sliders {
  padding: 0px 8.71px 0px 0px;
}
.data-label-mask.active .data-label-options.filter-quadrant-options {
  height: 50px;
}
.national-zip-map svg {
  display: block;
  margin: 0 auto;
}
.national-zip-map .states {
  fill: none;
  stroke: #fff;
  stroke-linejoin: round;
}
.national-zip-map .legendCells {
  transform: translate(16px, 2px);
}
.national-zip-map .zipCodeAreas rect {
  fill: #f5f6f7;
  fill-opacity: 0.4;
  stroke: #000;
}
.national-zip-map .zipCodeAreas text {
  fill: #000;
}
.national-zip-map circle {
  fill-opacity: 0.4;
  stroke: #625666;
}
.national-zip-map circle:hover {
  cursor: pointer;
  fill: #f4a338;
}
.national-zip-map circle.locked {
  fill: #f4a338;
}
.map .overlay {
  fill: none;
  pointer-events: all;
}
.collapsible-content-wrapper.hidden {
  display: none;
}
.collapsible-content {
  overflow: hidden;
  background: #f3f3f3;
}
.collapsible-content:nth-last-of-type(2n) {
  background: #f8f8f8;
}
.collapsible-header {
  cursor: pointer;
  height: 78px;
  overflow: hidden;
  padding: 0 30px;
  position: relative;
}
.collapsible-header .title {
  margin: 0;
  line-height: 78px;
  font-weight: 300 !important;
  font-size: 25px;
  font-size: 2.5rem;
  color: #555555;
}
.collapsible-header .collapse-icon img {
  position: absolute;
  right: 30px;
  height: 38px;
  top: 20px;
}
main.main-content .page-content .success-overlay {
  background: rgba(255, 255, 255, 0.95);
  color: #18b28b;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 30px 10px;
  text-align: center;
  z-index: 9999;
}
main.main-content .page-content .success-overlay h1 {
  font-family: "neue-helvetica", "Helvetica Neue", Helvetica, sans-serif !important;
  font-weight: 300;
  color: #18b28b;
  font-size: 28px;
  font-size: 2.8rem;
  line-height: 28px;
  margin: 0;
}
main.main-content .page-content .success-overlay span.success-icon {
  display: block;
  height: 70px;
  width: 70px;
  margin: 10px auto 0;
}
main.main-content .page-content .success-overlay span.success-icon img {
  width: 100%;
  height: 100%;
}
main.main-content .page-content .success-overlay .standard-button {
  background: #18b28b !important;
  margin: 0;
  width: 200px;
}
.infinite-scroll-info {
  height: 40px;
  margin-bottom: 20px;
}
.infinite-scroll-info .all-data {
  color: #243b5f;
  font-size: 30px;
  font-size: 3rem;
  font-family: "neue-helvetica", "Helvetica Neue", Helvetica, sans-serif !important;
  margin-top: 5px;
  text-align: center;
  font-weight: 100;
}
.infinite-scroll-info .chart-loading-indicator {
  margin-top: -10px;
}
.infinite-scroll-info .chart-loading-indicator .spinner {
  width: 25px;
  height: 25px;
}
[class^="route-insight-table"] .states,
.route-insight-dashboard-view-index .states,
.route-insight-dashboard-view-export .states,
[class^="route-plan-design-benchmark"] .states {
  fill: none;
  stroke: #fff;
  /*stroke-width: 0.75px;*/
  stroke-linejoin: round;
}
[class^="route-insight-table"] .state,
.route-insight-dashboard-view-index .state,
.route-insight-dashboard-view-export .state,
[class^="route-plan-design-benchmark"] .state {
  stroke: #000;
  stroke-width: 0.5;
  fill: #adb8d5;
}
[class^="route-insight-table"] .state:hover,
.route-insight-dashboard-view-index .state:hover,
.route-insight-dashboard-view-export .state:hover,
[class^="route-plan-design-benchmark"] .state:hover {
  cursor: pointer;
  stroke-width: 2;
}
[class^="route-insight-table"] .map .state-label,
.route-insight-dashboard-view-index .map .state-label,
.route-insight-dashboard-view-export .map .state-label,
[class^="route-plan-design-benchmark"] .map .state-label {
  font-size: 12px;
  font-weight: bold;
  text-anchor: middle;
}
[class^="route-insight-table"] .map .state-label.small-state,
.route-insight-dashboard-view-index .map .state-label.small-state,
.route-insight-dashboard-view-export .map .state-label.small-state,
[class^="route-plan-design-benchmark"] .map .state-label.small-state {
  text-anchor: start;
}
[class^="route-insight-table"] .no-data,
.route-insight-dashboard-view-index .no-data,
.route-insight-dashboard-view-export .no-data,
[class^="route-plan-design-benchmark"] .no-data {
  text-align: center;
  padding: 5px;
}
[class^="route-insight-table"] .map h1,
.route-insight-dashboard-view-index .map h1,
.route-insight-dashboard-view-export .map h1,
[class^="route-plan-design-benchmark"] .map h1 {
  position: relative;
  z-index: 5;
}
[class^="route-insight-table"] .has-tooltip .label-wrap,
.route-insight-dashboard-view-index .has-tooltip .label-wrap,
.route-insight-dashboard-view-export .has-tooltip .label-wrap,
[class^="route-plan-design-benchmark"] .has-tooltip .label-wrap,
[class^="route-insight-table"] .has-tooltip .east-lines-wrap,
.route-insight-dashboard-view-index .has-tooltip .east-lines-wrap,
.route-insight-dashboard-view-export .has-tooltip .east-lines-wrap,
[class^="route-plan-design-benchmark"] .has-tooltip .east-lines-wrap {
  opacity: 1;
}
[class^="route-insight-table"] .line-label,
.route-insight-dashboard-view-index .line-label,
.route-insight-dashboard-view-export .line-label,
[class^="route-plan-design-benchmark"] .line-label {
  stroke: #000;
  stroke-width: 1px;
}
[class^="route-insight-table"] .legendTitle,
.route-insight-dashboard-view-index .legendTitle,
.route-insight-dashboard-view-export .legendTitle,
[class^="route-plan-design-benchmark"] .legendTitle {
  font-weight: bold;
}
[class^="route-insight-table"] .state-map-tooltip,
.route-insight-dashboard-view-index .state-map-tooltip,
.route-insight-dashboard-view-export .state-map-tooltip,
[class^="route-plan-design-benchmark"] .state-map-tooltip {
  background-color: #f5f6f7;
  padding: 5px;
  border: solid 1px #000;
  position: fixed;
  z-index: 1000;
  visibility: hidden;
  height: auto;
}
[class^="route-insight-table"] svg,
.route-insight-dashboard-view-index svg,
.route-insight-dashboard-view-export svg,
[class^="route-plan-design-benchmark"] svg {
  display: block;
  margin: 0 auto;
}
div.modal.share-file + .content h1 {
  margin: 25px 15px 10px;
}
div.modal.share-file + .content h2 {
  font-weight: 300;
  margin: 15px;
}
div.modal.share-file + .content h3 {
  text-align: center;
  margin: 20px 0;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 100;
  letter-spacing: 1px;
}
div.modal.share-file + .content .standard-button {
  margin: 0;
}
div.modal.share-file + .content .share {
  margin-top: 0;
  margin-bottom: 15px;
}
div.modal.share-file + .content .share p.flex-row {
  padding: 5px 20px;
  margin: 0;
}
div.modal.share-file + .content .share p.flex-row:hover {
  background: #f5f5f5;
}
div.modal.share-file + .content .share .duration {
  display: inline-block;
  margin-left: calc(50% - 73px);
  text-align: center;
}
div.modal.share-file + .content .share .duration select {
  width: 100%;
}
.ui-resizable-handle.editing {
  position: absolute;
}
.ui-resizable-handle.editing::after {
  content: "\f07e";
  display: inline-block;
  font: normal normal normal 14px/1 fontawesome;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.ui-resizable-handle.hide {
  display: none !important;
}
.ui-resizable-handle {
  opacity: 0.9;
}
.ui-resizable-handle:not(.ui-resizable-se) {
  opacity: 0;
}
.ui-resizable-nw {
  top: -1px;
  left: -1px;
}
.ui-resizable-nw[draggable="true"] {
  cursor: nwse-resize;
}
.ui-resizable-ne {
  top: -1px;
  right: -1px;
}
.ui-resizable-ne[draggable="true"] {
  cursor: nesw-resize;
}
.ui-resizable-sw {
  bottom: -1px;
  left: -1px;
}
.ui-resizable-sw[draggable="true"] {
  cursor: nesw-resize;
}
.ui-resizable-se {
  bottom: 1px;
  right: 1px;
}
.ui-resizable-se[draggable="true"] {
  cursor: nwse-resize;
}
.ui-resizable-n {
  top: -1px;
  left: 15px;
  width: calc(100% - 30px);
}
.ui-resizable-n[draggable="true"] {
  cursor: ns-resize;
}
.ui-resizable-s {
  bottom: -1px;
  left: 15px;
  width: calc(100% - 30px);
}
.ui-resizable-s[draggable="true"] {
  cursor: ns-resize;
}
.ui-resizable-w {
  left: -1px;
  top: 15px;
  height: calc(100% - 30px);
}
.ui-resizable-w[draggable="true"] {
  cursor: ew-resize;
}
.ui-resizable-e {
  right: -1px;
  top: 15px;
  height: calc(100% - 30px);
}
.ui-resizable-e[draggable="true"] {
  cursor: ew-resize;
}
.widget {
  background-color: white;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
  outline: 1px solid #d9d9d9;
  outline-offset: -1px;
  height: 50px;
  width: 50px;
  min-height: 50px;
  min-width: 50px;
  position: absolute;
}
.widget .widget-content section {
  background: transparent !important;
}
.widget .widget-custom .widget-header-base h1 {
  margin: 0;
}
.widget .widget-custom .widget-header-base .flex-row .col-12 {
  max-width: 97%;
}
.widget .widget-custom .widget-header-base .flex-row > div {
  margin-right: 0;
}
.widget .widget-custom .viz-save-indicator {
  background: #18b28b;
  color: #fff;
  border: none;
  border-radius: 3px;
  padding: 2px 8px;
  font-size: 11px;
  cursor: pointer;
  white-space: nowrap;
  margin-left: 4px;
}
.widget .widget-custom .viz-save-indicator:hover {
  background: #128568;
}
.editing .widget {
  cursor: move;
}
.editing .widget .widget-button * {
  cursor: move;
}
.editing .widget .icon-wrapper {
  display: none;
}
.widget-container {
  width: 1050px;
  height: 650px;
  position: relative;
}
.widget-container > * {
  position: absolute !important;
}
.sidebar {
  position: relative;
}
.sidebar.closed {
  width: 0px;
  transition: width 1s ease-in-out;
}
.sidebar.open {
  background: #f8f8f8;
  height: 100%;
  width: 250px;
  min-width: 250px;
  transition: width 1s ease-in-out;
  overflow-y: scroll;
  overflow-x: hidden;
}
.sidebar.drop-active {
  box-sizing: border-box;
  border: 4px dashed #18b28b;
  padding: 20px;
}
.sidebar > * {
  position: relative !important;
}
.main-container {
  width: 100%;
  position: relative;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}
.main-container.editing .sidebar-toggle {
  border-radius: 0;
  position: fixed;
  margin-top: 156px;
  margin-left: 95px;
  top: 6px;
  left: 229px;
  display: block;
  width: 0;
  height: 0;
  padding: 19px 0 0 19px;
  overflow: hidden;
  border: 1px solid #e6e6e6;
  background-color: #f7f6f8;
  background-repeat: no-repeat;
  background-size: 7px 9px;
  background-position: 6px 5px;
  background-image: url("/assets/img/carat-left-4892c7.svg");
  z-index: 177;
}
.main-container.editing .sidebar-toggle.sidebar-closed {
  background-image: url("/assets/img/carat-right-4892c7.svg");
  left: 0px;
}
.main-container.editing .sidebar-toggle.push {
  top: 39px;
}
.main-container.editing .sidebar-toggle.push.admin {
  top: 64px;
}
.main-container.editing .sidebar-toggle:hover {
  cursor: pointer;
}
.main-container.editing .sidebar-container {
  box-sizing: border-box;
  box-shadow: 0 0 7px 1px rgba(0, 0, 0, 0.3);
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: column;
  height: calc(100% - 35px);
  position: fixed;
  margin-top: 156px;
  top: 6px;
  width: 250px;
  z-index: 176;
}
.main-container.editing .sidebar-container.sidebar-closed {
  display: none;
}
.main-container.editing .sidebar-container.push {
  top: 39px;
}
.main-container.editing .sidebar-container.push.admin {
  top: 64px;
}
.main-container.editing .sidebar-container .widget.ui-resizable {
  z-index: 5 !important;
}
.main-container.editing .sidebar-container .widget.ui-resizable .insight-section-header {
  opacity: 0;
}
.main-container.editing .sidebar-container h2 {
  background: #f8f8f8;
  box-sizing: border-box;
  font-weight: 300;
  margin: 0;
  padding: 10px;
}
.main-container.editing .sidebar-container .no-content {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 22px;
  line-height: 2.2rem;
  padding: 10px;
  position: absolute;
  text-align: center;
  top: 20px;
  z-index: 4;
}
.main-container.editing .pages-container {
  margin-left: 280px;
  margin-right: 10px;
  margin-top: 0;
  overflow-x: visible;
  width: calc(100% - 290px);
}
.main-container.editing .pages-container.sidebar-closed {
  margin-left: 100px;
}
.main-container.editing .pages-container > div[data-type="page"].to-delete {
  background-color: rgba(255, 50, 50, 0.5);
  position: relative;
}
.main-container.editing .pages-container > div[data-type="page"].to-delete::before {
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
  box-sizing: border-box;
  border-radius: 5px;
  content: "Widgets remaining on this page will be deleted whenever the dashboard is saved";
  font-size: 22px;
  font-weight: 400;
  line-height: 120%;
  padding: 5px 10px;
  pointer-events: none;
  position: absolute;
  left: 27%;
  text-align: center;
  top: 40%;
  width: 46%;
  z-index: 999;
  text-shadow: 0px 0px 10px 3px #ffffff;
}
.main-container.editing .pages-container > div[data-type="page"].to-delete .widget .widget-custom {
  opacity: 0.5;
}
.main-container.editing .fa.fa-cog {
  opacity: 0.5;
  pointer-events: none;
}
.main-container.web-view .page-number,
.main-container.web-view .add-widget,
.main-container.web-view .delete-page,
.main-container.web-view .restore-page,
.main-container.web-view .insert-page,
.main-container.web-view .duplicate-page,
.main-container.web-view .page-up,
.main-container.web-view .page-down {
  display: none;
}
.main-container.web-view .widget-wrapper {
  margin-top: 10px;
}
.main-container.web-view div[data-type="page"] {
  background: transparent;
  outline: none;
  box-shadow: none;
  width: calc(100% - 30px);
  margin: 0 10px;
  padding: 5px 0;
}
.main-container.web-view div[data-type="page"].ai-visible {
  width: calc(100% - 60px);
}
.main-container.web-view .widget-container {
  width: 100%;
}
.sidebar-container {
  display: none;
}
.pages-container {
  width: 100%;
  transition: all 1s;
}
.pages-container.side-flyout-open {
  width: calc(100% - 362px);
}
.pages-container > div[data-type="page"] {
  width: 1050px;
  height: 650px;
  background: #f8f8f8;
  padding: 10px;
  margin: 20px auto 35px;
  box-shadow: 0 0 7px 1px rgba(0, 0, 0, 0.3);
}
.pages-container button.add-widget,
.pages-container button.delete-page,
.pages-container button.insert-page,
.pages-container button.duplicate-page,
.pages-container button.restore-page,
.pages-container button.page-up,
.pages-container button.page-down {
  top: 7px;
  right: -45px;
  width: 24px;
  overflow: hidden;
  text-indent: -83px;
  white-space: nowrap;
  transition: 0.2s;
  z-index: 175;
}
.pages-container button.add-widget span.fa,
.pages-container button.delete-page span.fa,
.pages-container button.insert-page span.fa,
.pages-container button.duplicate-page span.fa,
.pages-container button.restore-page span.fa,
.pages-container button.page-up span.fa,
.pages-container button.page-down span.fa {
  text-indent: 8px;
  font-size: 14px;
  font-size: 1.4rem;
}
.pages-container button.add-widget:hover,
.pages-container button.delete-page:hover,
.pages-container button.insert-page:hover,
.pages-container button.duplicate-page:hover,
.pages-container button.restore-page:hover,
.pages-container button.page-up:hover,
.pages-container button.page-down:hover {
  width: 107px;
  text-indent: 0;
  background: #18b28b;
}
.pages-container button.add-widget > a > span,
.pages-container button.delete-page > a > span,
.pages-container button.insert-page > a > span,
.pages-container button.duplicate-page > a > span,
.pages-container button.restore-page > a > span,
.pages-container button.page-up > a > span,
.pages-container button.page-down > a > span {
  color: white;
}
.pages-container button.add-widget span.fa {
  line-height: 24px;
  line-height: 2.4rem;
}
.pages-container button.delete-page,
.pages-container button.restore-page {
  position: absolute;
  top: 40px;
}
.pages-container button.delete-page.delete-page,
.pages-container button.restore-page.delete-page {
  text-indent: -88px;
}
.pages-container button.delete-page.restore-page,
.pages-container button.restore-page.restore-page {
  text-indent: -99px;
}
.pages-container button.delete-page:hover {
  text-indent: 0;
  width: 112px;
  background: #ed4651;
}
.pages-container button.restore-page:hover {
  text-indent: 0;
  width: 123px;
  background: #18b28b;
}
.pages-container button.insert-page {
  top: 73px;
}
.pages-container button.insert-page:hover {
  background: #243b5f;
}
.pages-container button.insert-page svg {
  display: block;
  width: 16px;
  position: absolute;
  top: 5px;
  right: 3px;
}
.pages-container button.insert-page svg path {
  fill: white;
}
.pages-container button.duplicate-page {
  top: 106px;
  text-indent: -125px;
}
.pages-container button.duplicate-page:hover {
  background: #243b5f;
  width: 130px;
  text-indent: -17px;
}
.pages-container button.duplicate-page svg {
  display: block;
  width: 15px;
  position: absolute;
  top: 5px;
  right: 4px;
}
.pages-container button.duplicate-page svg path {
  fill: white;
}
.pages-container button.page-down.disabled,
.pages-container button.page-up.disabled {
  opacity: 0.4;
  pointer-events: none;
}
.pages-container button.page-down span.fa,
.pages-container button.page-up span.fa {
  text-indent: 13px;
  font-size: 12px;
  font-size: 1.2rem;
}
.pages-container button.page-down:hover,
.pages-container button.page-up:hover {
  background: #243b5f;
}
.pages-container button.page-up {
  top: 139px;
}
.pages-container button.page-down {
  top: 172px;
}
.pages-container .page-number {
  position: absolute;
  top: -30px;
  text-transform: uppercase;
  color: #5e5e5e;
}
@media screen and (max-width: 1330px) {
  .pages-container button.add-widget,
  .pages-container button.delete-page,
  .pages-container button.insert-page,
  .pages-container button.duplicate-page,
  .pages-container button.page-up,
  .pages-container button.page-down,
  .pages-container button.restore-page {
    top: -38px;
  }
  .pages-container button.add-widget {
    right: calc(100% - 95px);
  }
  .pages-container button.delete-page,
  .pages-container button.restore-page {
    right: calc(100% - 130px);
  }
  .pages-container button.insert-page {
    right: calc(100% - 165px);
  }
  .pages-container button.duplicate-page {
    right: calc(100% - 200px);
  }
  .pages-container button.page-up {
    right: calc(100% - 235px);
  }
  .pages-container button.page-down {
    right: calc(100% - 270px);
  }
}
.input-note {
  position: relative;
}
.input-note .note-tooltip {
  position: absolute;
  width: 210px;
  text-align: center;
  padding: 10px 0;
  z-index: 99;
  background: white;
  border: 1px solid #e6e6e6;
  border-radius: 3px;
  box-shadow: 3px 3px 5px rgba(173, 173, 173, 0.4);
  top: 27px;
  left: -99px;
}
.input-note .note-tooltip:after,
.input-note .note-tooltip:before {
  bottom: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}
.input-note .note-tooltip:after {
  border-color: rgba(136, 183, 213, 0);
  border-bottom-color: white;
  border-width: 6px;
  margin-left: -6px;
}
.input-note .note-tooltip:before {
  border-color: rgba(194, 225, 245, 0);
  border-bottom-color: #e6e6e6;
  border-width: 7px;
  margin-left: -7px;
}
.input-note span.fa {
  font-size: 16px;
  font-size: 1.6rem;
  color: #555555;
}
.input-note textarea {
  resize: none;
  height: 100px;
  width: 190px;
  box-sizing: border-box;
  padding: 10px;
}
.input-note .button-wrapper {
  margin-top: 5px;
}
.insight-export-form {
  border-top: solid 1px #e6e6e6;
  color: #555555;
  padding-bottom: 10px;
  margin-top: 20px;
}
.insight-export-form input[type="text"] {
  width: 250px;
}
.insight-export-form .filename-container {
  position: relative;
  display: table;
  margin: 0 auto;
  padding: 5px 0;
}
.insight-export-form .filename-container .standard {
  padding-right: 33px;
}
.insight-export-form .filename-container .export-filename {
  margin: 0 10px 0 0;
  font-size: 16px;
  font-size: 1.6rem;
}
.insight-export-form .filename-container .export-extension {
  position: absolute;
  right: 7px;
  top: 20px;
}
.insight-export-form .filename-container:nth-of-type(1) {
  padding-top: 15px;
}
.insight-export-form .filename-container:nth-of-type(2) {
  width: 401px;
  text-align: left;
  padding-bottom: 15px;
}
.insight-export-form .insight-export-form-options {
  max-width: 650px;
}
.insight-export-form .insight-export-form-options span {
  font-weight: bold;
}
.insight-export-form .insight-export-form-options input[type="radio"] {
  margin-right: 5px;
}
.insight-export-form .insight-export-form-options .download-agreement {
  color: #202c47;
}
.insight-export-form .insight-export-form-options .disable-export-block {
  opacity: 0.5;
}
.insight-export-form .insight-export-form-options .disable-export-block > * {
  pointer-events: none;
}
.insight-export-form .insight-export-form-options .disable-export-block:hover {
  cursor: not-allowed;
}
.insight-export-form .modal-buttons {
  padding: 20px 0 0 0;
}
div.modal.projection-modal + div.content {
  width: 400px;
  overflow: hidden;
}
div.modal.projection-modal + div.content .missing-field-message {
  font-size: 16px;
  font-size: 1.6rem;
  margin-top: 30px;
}
div.modal.projection-modal + div.content .missing-field-message + .standard-button.large.add {
  margin: 30px 50px;
}
div.modal.projection-modal + div.content .standard-button.add.large {
  margin: 50px;
}
div.modal.projection-modal + div.content .standard-button.add,
div.modal.projection-modal + div.content .standard-button.save.green {
  margin: 15px;
}
div.modal.projection-modal + div.content .standard-button[disabled] {
  pointer-events: none;
}
div.modal.projection-modal + div.content .projection-inputs {
  padding-top: 30px;
}
div.modal.projection-modal + div.content .projection-inputs .input-wrap {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  margin-bottom: 20px;
  position: relative;
}
div.modal.projection-modal + div.content .projection-inputs .input-wrap:hover .tooltip {
  display: block;
}
div.modal.projection-modal + div.content .projection-inputs .input-wrap label {
  min-width: 120px;
  max-width: 120px;
  text-align: right;
  margin-right: 20px;
  line-height: 24px;
  line-height: 2.4rem;
}
div.modal.projection-modal + div.content .projection-inputs .input-wrap .fa-info-circle {
  color: #404d5e;
}
div.modal.projection-modal + div.content .projection-inputs .input-wrap .fa-info-circle:hover .info-tooltip {
  display: block;
}
div.modal.projection-modal + div.content .projection-inputs .input-wrap .fa-info-circle .info-tooltip {
  box-sizing: border-box;
  background: #404d5e;
  border-radius: 3px;
  color: white;
  display: none;
  font-size: 13px;
  font-size: 1.3rem;
  font-family: "neue-helvetica", "Helvetica Neue", Helvetica, sans-serif !important;
  line-height: 16px;
  line-height: 1.6rem;
  left: 67px;
  margin-top: -73px;
  padding: 7px 10px 10px;
  position: absolute;
  text-align: left;
  width: 190px;
  z-index: 100;
}
div.modal.projection-modal + div.content .projection-inputs .input-wrap .fa-info-circle .info-tooltip.dimension {
  margin-top: -89px;
}
div.modal.projection-modal + div.content .projection-inputs .input-wrap .fa-info-circle .info-tooltip:after {
  top: 100%;
  left: 48px;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(136, 183, 213, 0);
  border-top-color: #404d5e;
  border-width: 6px;
  margin-left: -6px;
}
div.modal.projection-modal + div.content .projection-inputs .input-wrap .fa-info-circle .info-tooltip p {
  padding: 0;
}
div.modal.projection-modal + div.content .projection-inputs .input-wrap .fa-info-circle .info-tooltip p:first-child {
  margin-top: 0;
}
div.modal.projection-modal + div.content .projection-inputs .input-wrap .fa-info-circle .info-tooltip p:last-child {
  margin-bottom: 0;
}
div.modal.projection-modal + div.content .projection-inputs .input-wrap .post-input-percent {
  position: absolute;
  top: 5px;
  right: 28px;
  z-index: 1;
}
div.modal.projection-modal + div.content .projection-inputs .input-wrap input,
div.modal.projection-modal + div.content .projection-inputs .input-wrap select {
  width: 100%;
  margin-right: 20px;
}
div.modal.projection-modal + div.content .projection-inputs .input-wrap input:disabled,
div.modal.projection-modal + div.content .projection-inputs .input-wrap select:disabled {
  opacity: 0.5;
}
div.modal.projection-modal + div.content .projection-inputs .tooltip {
  color: white;
  background: #404d5e;
  border-radius: 3px;
  display: none;
  left: 140px;
  pointer-events: none;
  position: absolute;
  padding: 5px;
  right: 20px;
  top: -50px;
  z-index: 5;
}
div.modal.projection-modal + div.content .projection-inputs .tooltip:after {
  top: 100%;
  left: calc(50% - 3px);
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(136, 183, 213, 0);
  border-top-color: #404d5e;
  border-width: 6px;
  margin-left: -6px;
}
div.modal.projection-modal + div.content .projection-inputs .tooltip.error {
  color: black;
  background: #ed4651;
  top: -35px;
}
div.modal.projection-modal + div.content .projection-inputs .tooltip.error:after {
  border-top-color: #ed4651;
}
div.modal.projection-modal + div.content .projection-inputs .tooltip.error + input,
div.modal.projection-modal + div.content .projection-inputs .tooltip.error + select {
  background-color: #f8babe;
}
div.modal.projection-modal + div.content .projection-data {
  transition: 0.2s;
}
div.modal.projection-modal + div.content .projection-data.closed:hover {
  background: #f5f5f5;
}
div.modal.projection-modal + div.content .projection-data header.flex-row:hover h4 {
  text-decoration: underline;
}
div.modal.projection-modal + div.content .flex-row.buttons {
  margin: 20px;
}
div.modal.projection-modal + div.content .flex-row.buttons .cancel {
  margin-right: 10px;
}
div.modal.projection-modal + div.content .projection-list {
  padding: 0;
  margin-bottom: 0;
}
div.modal.projection-modal + div.content .projection-list + .standard-button.large.add {
  margin: 20px auto;
}
div.modal.projection-modal + div.content .projection-list li {
  border: 1px solid #404d5e;
  border-radius: 3px;
  margin: 20px 10px;
  list-style: none;
  max-width: 100%;
  padding: 5px 10px;
}
div.modal.projection-modal + div.content .projection-list li:last-child {
  margin-bottom: 0;
}
div.modal.projection-modal + div.content .projection-list li header.active {
  padding-bottom: 5px;
  border-bottom: 1px solid #404d5e;
  margin-bottom: 15px;
}
div.modal.projection-modal + div.content .projection-list li .title {
  color: #404d5e;
  cursor: pointer;
  font-weight: 400;
  font-size: 16px;
  font-size: 1.6rem;
  margin: 0;
  text-align: left;
  line-height: 22px;
  line-height: 2.2rem;
}
div.modal.projection-modal + div.content .projection-list li p {
  text-align: left;
  margin: 5px 0;
}
div.modal.projection-modal + div.content .projection-list li .standard-button {
  background: white;
  color: #404d5e;
  padding: 0;
  width: 22px;
  min-width: 22px;
  max-width: 22px;
  height: 22px;
  border-radius: 50%;
  margin-left: 10px;
  border: 1px solid #404d5e;
  text-align: center;
}
div.modal.projection-modal + div.content .projection-list li .standard-button.red {
  color: #ed4651;
  border-color: #ed4651;
}
div.modal.projection-modal + div.content .projection-list li .standard-button span {
  display: block;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 18px;
  line-height: 1.8rem;
  margin: 0 0 0 1px;
}
.announcement-wrapper .announcement-component {
  position: fixed;
  top: 72px;
  width: 450px;
  background: #2f2f2f;
  z-index: 300;
  border-radius: 10px;
  overflow: hidden;
  color: white;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.3);
  transition: 0.9s all;
  right: -100%;
}
.announcement-wrapper .announcement-component.active {
  right: 20px;
  transition-delay: 1s;
}
.announcement-wrapper .announcement-component.closed {
  right: -100%;
}
.announcement-wrapper .announcement-component:nth-child(2) {
  top: 155px;
}
.announcement-wrapper .announcement-component:nth-child(3) {
  top: 238px;
}
.announcement-wrapper .announcement-component:nth-child(4) {
  top: 322px;
}
.announcement-wrapper .announcement-component:nth-child(5) {
  top: 406px;
}
.announcement-wrapper .announcement-component .announcement-header {
  background: #414141;
  padding: 7px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}
.announcement-wrapper .announcement-component .announcement-header.maintenance .icon {
  background-image: url("/assets/img/maintenance-icon.svg");
  width: 17px;
  height: 17px;
  display: block;
  margin-right: 5px;
}
.announcement-wrapper .announcement-component .announcement-header.release .icon {
  width: 17px;
  height: 17px;
  display: block;
  margin-right: 5px;
  background-image: url("/assets/img/lens-icon-white.svg");
}
.announcement-wrapper .announcement-component .announcement-header h2 {
  font-weight: 300;
  margin: 0;
  padding: 0;
}
.announcement-wrapper .announcement-component .announcement-header .close-announcement {
  background-image: url("/assets/img/close-announcement-icon.svg");
  width: 12px;
  height: 12px;
  display: block;
  margin-left: auto;
  margin-top: 3px;
}
.announcement-wrapper .announcement-component .announcement-header .close-announcement:hover {
  cursor: pointer;
  opacity: 0.7;
}
.announcement-wrapper .announcement-component .announcement-content {
  padding: 15px 7px 15px 7px;
}
.announcement-wrapper .announcement-component .announcement-content p {
  margin: 0;
  font-weight: 400;
  font-size: 13px;
  font-size: 1.3rem;
}
.announcement-wrapper .announcement-component .announcement-content p a {
  font-weight: 700;
  text-decoration: underline;
  color: white;
}
.announcement-wrapper .announcement-component .announcement-content p a:hover {
  opacity: 0.7;
}
.org-list {
  overflow: scroll;
  height: 400px;
  margin: 20px 0;
  border-top: 1px solid #cacaca;
  border-bottom: 1px solid #cacaca;
}
.org-list table.access-management-table {
  border-top: none;
  border-bottom: none;
}
.org-list table.access-management-table tr:hover {
  background: #d9d9d9;
}
.group-access-container {
  width: 100%;
  overflow-x: auto;
  position: relative;
  margin-bottom: 20px;
  height: calc(100vh - 350px);
}
.group-access-container .group-access-x-scroll {
  position: absolute;
  min-width: 100%;
}
.group-access-container .group-access-x-scroll .group-access-header-container {
  width: calc(100% + 15px);
  padding-right: 15px;
}
.group-access-container .group-access-x-scroll .group-access-body-container {
  width: calc(100% + 15px);
  height: 250px;
  padding-right: 15px;
}
table.access-management-table {
  border-collapse: inherit;
}
table.access-management-table.group-access {
  margin-bottom: 20px;
}
table.access-management-table.group-access td,
table.access-management-table.group-access th {
  padding: 8px 0px 8px 0px;
  text-align: center;
  width: 50px;
  max-width: 50px;
  min-width: 50px;
}
table.access-management-table.group-access td:first-child,
table.access-management-table.group-access th:first-child {
  text-align: left;
  padding: 0px 0px 0px 10px;
}
table.access-management-table.group-access td.all-data {
  text-align: center !important;
  padding-top: 20px;
}
table.access-management-table.group-access.table-header-content {
  margin-bottom: -1px;
  border-bottom: none;
}
table.access-management-table.group-access.table-header-content.locked {
  position: fixed;
  left: 136px;
  max-width: calc(100% - 177px);
  top: 125px;
  z-index: 10;
}
table.access-management-table.group-access.table-header-content.locked + .group-access.table-body-content {
  margin-top: 65px;
}
table.access-management-table.group-access.table-header-content.locked.adminUserEdit {
  left: 157px;
  max-width: calc(100% - 219px);
}
table.access-management-table.group-access.table-header-content.locked.adminUserEdit + .group-access.table-body-content {
  margin-top: 100px;
}
table.access-management-table.group-access.table-header-content.locked.requestMultipleUsers + .group-access.table-body-content {
  margin-top: 72px;
}
table.access-management-table.group-access col {
  width: 5%;
}
table.access-management-table.group-access col:first-child {
  width: 20%;
}
table.access-management-table.group-access.no-download col:nth-child(2) {
  width: 7%;
}
table.access-management-table.group-access thead tr:first-child th {
  text-transform: uppercase;
}
table.access-management-table.group-access thead th {
  position: relative;
  overflow: visible;
}
table.access-management-table.group-access thead th strong {
  font-size: 11px;
}
table.access-management-table.group-access thead th.permission-group:hover .tooltip {
  display: block;
}
table.access-management-table.group-access thead th.permission-group .tooltip {
  background: #ebebeb;
  border: 1px solid #cacaca;
  border-right: 1px solid #cacaca;
  display: none;
  top: -25px;
  right: 0;
  padding: 5px;
  position: absolute;
  white-space: nowrap;
  z-index: 20;
}
table.access-management-table.group-access thead th.permission-group .tooltip:after,
table.access-management-table.group-access thead th.permission-group .tooltip:before {
  top: 100%;
  right: 15px;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}
table.access-management-table.group-access thead th.permission-group .tooltip:after {
  border-color: rgba(136, 183, 213, 0);
  border-top-color: #ebebeb;
  border-width: 5px;
  margin-left: -5px;
}
table.access-management-table.group-access thead th.permission-group .tooltip:before {
  border-color: rgba(194, 225, 245, 0);
  border-top-color: #cacaca;
  border-width: 6px;
  margin-left: -6px;
}
table.access-management-table.group-access tr {
  transition: 0.2s;
}
table.access-management-table.group-access tr:hover {
  background: #d9d9d9;
}
table.access-management-table.group-access tr:hover th,
table.access-management-table.group-access tr:hover td {
  background: #d9d9d9 !important;
}
table.access-management-table.group-access tr:hover th.permission-group,
table.access-management-table.group-access tr:hover td.permission-group {
  background: #d9d9d9;
}
table.access-management-table.group-access tr th:first-of-type {
  background: #ededed;
}
table.access-management-table.group-access tr td {
  background: #f8f8f8;
}
table.access-management-table.group-access tr.dark-stripe .permission-group {
  background: #e6e6e6;
}
table.access-management-table.group-access tr.dark-stripe td:first-of-type {
  background: #f3f3f3;
}
table.access-management-table.group-access tr th,
table.access-management-table.group-access tr td {
  transition: 0.2s;
  border-bottom: 1px solid #cacaca;
  text-align: center;
}
table.access-management-table.group-access tr th:first-of-type,
table.access-management-table.group-access tr td:first-of-type {
  text-align: left;
  width: 250px;
  max-width: 250px;
  min-width: 250px;
  position: sticky;
  left: 0;
  z-index: 2;
}
table.access-management-table.group-access tr th.permission-group,
table.access-management-table.group-access tr td.permission-group {
  background: #ebebeb;
}
table.access-management-table.group-access tr.remove {
  background: #f6a3a8;
}
table.access-management-table.group-access tr.remove:nth-child(even) {
  background: #f6a3a8;
}
table.access-management-table.group-access tr.remove td.permission-group {
  background: #f6a3a8;
}
table.access-management-table.group-access tr.add {
  background: #49e7bf;
}
table.access-management-table.group-access tr.add:nth-child(even) {
  background: #49e7bf;
}
table.access-management-table.group-access tr.add td.permission-group {
  background: #49e7bf;
}
.access-checkbox {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
}
.access-checkbox.add .custom-checkbox label {
  background: #d0f9ee;
  border-color: #60eac7;
}
.access-checkbox.add .custom-checkbox label span {
  color: #18b28b;
}
.access-checkbox.remove .custom-checkbox label {
  background: #f6a3a8;
  border-color: #ed4651;
}
.access-checkbox .custom-checkbox label {
  background: white;
  border-radius: 2px;
  border: 1px solid #bdbdbd;
  display: block;
  height: 11px;
  margin-top: 2px;
  width: 11px;
}
.access-checkbox .custom-checkbox label:hover {
  cursor: pointer;
}
.access-checkbox .custom-checkbox label span {
  display: none;
  color: #555555;
  font-size: 14px;
  line-height: 9px;
  line-height: 0.9rem;
  margin-left: 1px;
}
.access-checkbox .custom-checkbox input[type="checkbox"] {
  display: none;
}
.access-checkbox .custom-checkbox input[type="checkbox"]:checked + label span {
  display: block;
}
.access-checkbox .custom-checkbox input[disabled] + label:hover {
  cursor: default;
}
tr.remove .access-checkbox input[disabled] + label {
  background: #d7d7d7;
}
tr.remove .access-checkbox input[disabled] + span {
  background: #ed4651;
}
tr.add .access-checkbox input[disabled] + label {
  background: #d7d7d7;
}
tr.add .access-checkbox input[disabled] + span {
  background: #18b28b;
}
.generic-tab-navigator {
  margin: 20px;
}
.generic-tab-navigator > div {
  background: white;
  padding: 20px;
  border: 1px solid #e6e6e6;
  border-top: none;
}
.generic-tab-navigator .tab-bar.locked {
  top: 40px;
  position: absolute;
  z-index: 110;
  width: calc(100% - 95px);
}
.generic-tab-navigator .tab-bar.locked + section {
  padding-top: 65px;
}
.generic-tab-navigator .tab-bar.locked > ul {
  padding: 0;
  box-shadow: -5px 2px 7px 3px #ddd;
}
.generic-tab-navigator .tab-bar > ul {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  overflow: hidden;
  transition: 0.2s;
}
.generic-tab-navigator .tab-bar > ul li {
  background: #f3f3f3;
  border-top: 1px solid #e6e6e6;
  color: #888888;
  cursor: pointer;
  display: block;
  font-size: 25px;
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 45px;
  line-height: 4.5rem;
  height: 47px;
  width: 100%;
  text-align: center;
}
.generic-tab-navigator .tab-bar > ul li:hover {
  background: #e6e6e6;
}
.generic-tab-navigator .tab-bar > ul li.disabled {
  pointer-events: none;
  opacity: 0.5;
}
.generic-tab-navigator .tab-bar > ul li.active {
  background: white;
  box-shadow: 5px 0px 5px 0px #ddd, -5px 0px 5px 0px #ddd;
  color: #555555;
  position: relative;
}
.generic-tab-navigator .tab-bar > ul li:first-child {
  border-left: 1px solid #e6e6e6;
}
.generic-tab-navigator .tab-bar > ul li:first-child.active {
  box-shadow: 5px 0px 5px 0px #ddd;
}
.generic-tab-navigator .tab-bar > ul li:last-child {
  border-right: 1px solid #e6e6e6;
}
.generic-tab-navigator .tab-bar > ul li:last-child.active {
  box-shadow: -5px 0px 5px 0px #ddd;
}
.generic-tab-navigator .tab-bar > ul li span.fa {
  font-size: 22px;
  font-size: 2.2rem;
}
.access-approval-modal .standard-button.disabled {
  opacity: 0.5;
  pointer-events: none;
}
.as-table {
  height: 100%;
  overflow: auto;
}
.as-table .ember-table {
  border: 1px solid #cacaca;
}
.as-table .ember-table table {
  color: #555555;
  border-collapse: separate;
}
.as-table .ember-table table .occluded-content {
  text-indent: -9999px;
}
.as-table .ember-table table td,
.as-table .ember-table table th {
  padding: 3px 8px;
  text-align: left;
  border-right: 1px solid #cacaca;
}
.as-table .ember-table table td .et-cell-container,
.as-table .ember-table table th .et-cell-container {
  display: flex;
}
.as-table .ember-table table td .et-cell-container span.et-toggle-select,
.as-table .ember-table table th .et-cell-container span.et-toggle-select {
  padding-right: 8px;
  margin-right: 8px;
  border-right: 1px solid #cacaca;
}
.as-table .ember-table table td.is-fixed-right,
.as-table .ember-table table th.is-fixed-right {
  border-left: 1px solid #cacaca;
}
.as-table .ember-table table td:last-child,
.as-table .ember-table table th:last-child {
  border-right: none;
}
.as-table .ember-table table thead {
  color: #555555;
}
.as-table .ember-table table thead th {
  border-bottom: 1px solid #cacaca;
  background: #ededed;
  padding: 8px;
}
.as-table .ember-table table tbody tr {
  background: #f8f8f8;
}
.as-table .ember-table table tbody tr.dark-stripe {
  background: #f3f3f3;
}
.as-table .ember-table table tbody tr.dark-stripe td.is-fixed-left,
.as-table .ember-table table tbody tr.dark-stripe td.is-fixed-right {
  background: #f3f3f3;
}
.as-table .ember-table table tbody tr.is-selectable:hover {
  background: #d9d9d9;
  cursor: pointer;
}
.as-table .ember-table table tbody tr.is-selectable:hover > td.is-fixed-left,
.as-table .ember-table table tbody tr.is-selectable:hover td.is-fixed-right {
  background: #d9d9d9;
}
.as-table .ember-table table tbody tr td {
  overflow: hidden;
}
.as-table .ember-table table tbody tr td a {
  color: #243b5f;
}
.as-table .ember-table table tbody tr td .insight-options {
  text-align: center;
}
.as-table .ember-table table tbody tr td .insight-options .edit.standard-button {
  background: transparent;
  padding: 3px 0 0;
}
.as-table .ember-table table tbody tr td .insight-options .edit.standard-button .fa-cog {
  color: #243b5f;
  font-size: 18px;
}
.as-table .ember-table table tbody tr td.is-fixed-left,
.as-table .ember-table table tbody tr td.is-fixed-right {
  background: #f8f8f8;
}
.as-table .ember-table table tbody .et-tr:hover {
  background: #e0e0e0;
}
.as-table .ember-table table tbody .et-tr:hover td.is-fixed-left,
.as-table .ember-table table tbody .et-tr:hover td.is-fixed-right {
  background: #e0e0e0;
}
html:not([dir="rtl"]) .overview-date-picker .overview-date-picker-modal .noUi-horizontal .noUi-handle {
  right: -6px;
}
.overview-date-picker {
  position: absolute;
  top: 10px;
  right: -10px;
  width: calc(100% + 20px);
}
.overview-date-picker .modal-background {
  background: rgba(7, 20, 50, 0.4);
  z-index: 305;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.overview-date-picker .tab-background {
  padding: 5px 10px 0;
}
.overview-date-picker .tab-background.active {
  background: white;
  border-radius: 8px;
  position: relative;
  z-index: 305;
}
.overview-date-picker .ranges-wrapper {
  display: flex;
  justify-content: space-between;
  background: transparent;
}
.overview-date-picker .ranges-wrapper .error-message {
  color: red;
  align-self: center;
  font-size: 20px;
  font-size: 2rem;
}
.overview-date-picker .ranges-wrapper .tabs-wrapper {
  display: flex;
}
.overview-date-picker .ranges-wrapper .tabs-wrapper .date-picker-btn-wrapper {
  border-top: 1px solid transparent;
  border-left: 1px solid transparent;
  border-right: 1px solid transparent;
  padding: 6px 10px 10px;
  position: relative;
  top: 1px;
}
.overview-date-picker .ranges-wrapper .tabs-wrapper .date-picker-btn-wrapper.current {
  padding-right: 0;
}
.overview-date-picker .ranges-wrapper .tabs-wrapper .date-picker-btn-wrapper label {
  color: #a6a6a6;
  font-weight: 600;
}
.overview-date-picker .ranges-wrapper .tabs-wrapper .date-picker-btn-wrapper button {
  padding: 5px 10px 6px;
  -webkit-appearance: none;
  background: white;
  border: 1px solid white;
  border-radius: 6px;
  box-shadow: 0px 1px 3px 2px #e5e5e5;
  margin-left: 10px;
  color: #767474;
  cursor: pointer;
  width: 145px;
  display: inline-flex;
  justify-content: space-between;
}
.overview-date-picker .ranges-wrapper .tabs-wrapper .date-picker-btn-wrapper button span {
  margin-left: 10px;
}
.overview-date-picker .ranges-wrapper .tabs-wrapper .date-picker-btn-wrapper.active {
  border-top: 1px solid #e6e6e6;
  border-left: 1px solid #e6e6e6;
  border-right: 1px solid #e6e6e6;
  background: white;
}
.overview-date-picker .ranges-wrapper .tabs-wrapper .date-picker-btn-wrapper.active.current {
  border-right: 1px solid transparent;
}
.overview-date-picker .ranges-wrapper .tabs-wrapper .date-picker-btn-wrapper.active label {
  color: #4992c6;
}
.overview-date-picker .ranges-wrapper .tabs-wrapper .date-picker-btn-wrapper.active button {
  border: 1px solid #4992c6;
}
.overview-date-picker .ranges-wrapper .tabs-wrapper .date-picker-btn-wrapper span.notice {
  border: none;
}
.overview-date-picker .fa.fa-exclamation-circle {
  font-size: 20px;
  font-size: 2rem;
  top: 2px;
  position: relative;
}
.overview-date-picker .fa.fa-exclamation-circle.error {
  color: red;
}
.overview-date-picker .fa.fa-exclamation-circle.notice {
  color: gray;
}
.overview-date-picker .overview-date-picker-modal {
  background: white;
  padding: 10px 11px 10px 5px;
  border-top: 1px solid #e6e6e6;
}
.overview-date-picker .overview-date-picker-modal .radio-btn-wrapper {
  margin-left: 4px;
}
.overview-date-picker .overview-date-picker-modal .radio-btn-wrapper .radio-btn {
  border: none;
  background: transparent;
  cursor: pointer;
  margin: 0 5px;
  color: #767474;
  font-size: 15px;
  font-weight: 500;
  padding: 0;
}
.overview-date-picker .overview-date-picker-modal .radio-btn-wrapper .radio-btn span.fa-icon-wrapper {
  color: #4992c6;
  margin-right: 1px;
  font-size: 17px;
}
.overview-date-picker .overview-date-picker-modal .radio-btn-wrapper .radio-btn:disabled {
  cursor: default;
  color: #cecdcd;
  display: none;
}
.overview-date-picker .overview-date-picker-modal .radio-btn-wrapper .radio-btn:disabled span.fa-icon-wrapper {
  color: #cecdcd;
}
.overview-date-picker .overview-date-picker-modal .slider-wrapper {
  margin-top: 18px;
  padding-top: 10px;
  position: relative;
}
.overview-date-picker .overview-date-picker-modal .slider-wrapper .slider-label {
  margin-left: 9px;
  color: #555555;
  font-weight: 500;
  font-size: 15px;
}
.overview-date-picker .overview-date-picker-modal .btn-wrapper {
  z-index: 5;
  display: flex;
  justify-content: flex-end;
  margin: -13px 5px 6px;
  position: relative;
}
.overview-date-picker .overview-date-picker-modal .btn-wrapper button {
  padding: 8px 19px;
  margin-left: 12px;
  border: 1px solid #4992c6;
  border-radius: 2px;
  font-size: 12px;
  cursor: pointer;
}
.overview-date-picker .overview-date-picker-modal .btn-wrapper button.btn-cancel {
  background: transparent;
  color: #4992c6;
  font-weight: 600;
  box-shadow: inset 0 0 2px #4992c6;
}
.overview-date-picker .overview-date-picker-modal .btn-wrapper button.btn-apply {
  background-color: #4992c6;
  color: white;
  font-weight: 400;
}
.overview-date-picker .overview-date-picker-modal .noUi-target {
  border-radius: 0;
  background: none;
  border: none;
  box-shadow: none;
}
.overview-date-picker .overview-date-picker-modal .noUi-target.noUi-ltr.noUi-horizontal {
  height: 0px;
  padding-bottom: 6px;
  border-bottom: 1px solid #555555;
  margin: 6px 0px 53px 15px;
}
.overview-date-picker .overview-date-picker-modal .noUi-handle {
  border-radius: 10px;
  border: 3px solid;
  cursor: pointer;
  right: -8px;
  box-shadow: none;
}
.overview-date-picker .overview-date-picker-modal .incurred {
  z-index: 1;
}
.overview-date-picker .overview-date-picker-modal .incurred .noUi-handle {
  border-color: #4992c6;
}
.overview-date-picker .overview-date-picker-modal .incurred .noUi-connect {
  background: #4992c6;
}
.overview-date-picker .overview-date-picker-modal .paid {
  z-index: 1;
}
.overview-date-picker .overview-date-picker-modal .paid .noUi-handle {
  border-color: #3fb8af;
}
.overview-date-picker .overview-date-picker-modal .paid .noUi-connect {
  background: #3fb8af;
}
.overview-date-picker .overview-date-picker-modal .noUi-horizontal .noUi-handle {
  width: 12px;
  height: 12px;
  top: 0px;
}
.overview-date-picker .overview-date-picker-modal .noUi-connects {
  height: 3px;
  position: absolute;
  top: 5px;
}
.overview-date-picker .overview-date-picker-modal .noUi-handle:after,
.overview-date-picker .overview-date-picker-modal .noUi-handle:before {
  display: none;
}
.overview-date-picker .overview-date-picker-modal .noUi-marker {
  background: #555555;
  top: 0;
}
.overview-date-picker .overview-date-picker-modal .noUi-marker.noUi-marker-horizontal {
  height: 8px;
  width: 1px;
}
.overview-date-picker .overview-date-picker-modal .noUi-marker.noUi-marker-horizontal:nth-last-of-type(-n + 6) > div {
  position: absolute;
  height: 7px;
  top: 1px;
  left: 1px;
  background: #ff9933;
}
.overview-date-picker .overview-date-picker-modal .noUi-marker.noUi-marker-horizontal:nth-last-of-type(-n + 3) > div {
  background: #ed4651;
  z-index: -1;
}
.overview-date-picker .overview-date-picker-modal .noUi-marker.noUi-marker-horizontal > div.tooltip {
  background: none;
}
.overview-date-picker .overview-date-picker-modal .noUi-marker.noUi-marker-horizontal > div.tooltip:hover::after {
  position: absolute;
  top: -75px;
  left: -135px;
  width: calc(100% + 130px);
  color: white;
  font-size: 12px;
  font-size: 1.2rem;
  padding: 5px 8px 17px 8px;
  text-align: justify;
  background: linear-gradient(#243b5f 0, #243b5f 60px, transparent 60px, transparent 100%), url(/assets/img/tooltip-pointer.svg) no-repeat 140px 0px;
  content: "The orange and red bars in the overview date range months are to caution the user that not all of the data may be loaded yet.";
}
.overview-date-picker .overview-date-picker-modal .noUi-value {
  color: #575757;
  font-size: 11px;
  top: -1px;
}
.overview-date-picker .overview-date-picker-modal .noUi-value-large {
  font-weight: bold;
}
.overview-date-picker .overview-date-picker-modal .noUi-pips-horizontal {
  padding-top: 0;
}
.overview-date-picker [data-tooltip]:after {
  transform: translateX(calc(-50% - 8px));
}
.overview-date-picker .noUi-tooltip {
  color: white;
  border: none;
  top: -35px;
  border-radius: 0px;
  height: 31px;
  padding: 3px 9px;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: normal;
  background: linear-gradient(#243b5f 0, #243b5f 24px, transparent 24px, transparent 100%), url(/assets/img/tooltip-pointer.svg) no-repeat 50% 100%;
}
.overview-date-picker span.notice {
  z-index: 1;
}
.overview-date-picker span.notice[data-tooltip]:after {
  transform: translateX(calc(-50% - 11px));
  white-space: pre;
}
.overview-date-picker span.notice.multiline-1.top:hover[data-tooltip]:after {
  height: 25px;
  top: -34px;
  background: linear-gradient(#243b5f 0, #243b5f 24px, transparent 24px, transparent 100%), url(/assets/img/tooltip-pointer.svg) no-repeat 50% 100%;
}
.overview-date-picker span.notice.multiline-2.top:hover[data-tooltip]:after {
  height: 40px;
  top: -49px;
  background: linear-gradient(#243b5f 0, #243b5f 39px, transparent 39px, transparent 100%), url(/assets/img/tooltip-pointer.svg) no-repeat 50% 100%;
}
.overview-date-picker span.notice.multiline-3.top:hover[data-tooltip]:after {
  height: 55px;
  top: -64px;
  background: linear-gradient(#243b5f 0, #243b5f 54px, transparent 54px, transparent 100%), url(/assets/img/tooltip-pointer.svg) no-repeat 50% 100%;
}
.overview-date-picker span.notice.multiline-4.top:hover[data-tooltip]:after {
  height: 70px;
  top: -79px;
  background: linear-gradient(#243b5f 0, #243b5f 69px, transparent 69px, transparent 100%), url(/assets/img/tooltip-pointer.svg) no-repeat 50% 100%;
}
.overview-date-picker span.notice.multiline-5.top:hover[data-tooltip]:after {
  height: 85px;
  top: -94px;
  background: linear-gradient(#243b5f 0, #243b5f 84px, transparent 84px, transparent 100%), url(/assets/img/tooltip-pointer.svg) no-repeat 50% 100%;
}
.overview-date-picker span.notice.multiline-6.top:hover[data-tooltip]:after {
  height: 100px;
  top: -109px;
  background: linear-gradient(#243b5f 0, #243b5f 99px, transparent 99px, transparent 100%), url(/assets/img/tooltip-pointer.svg) no-repeat 50% 100%;
}
.overview-date-picker span.notice.multiline-7.top:hover[data-tooltip]:after {
  height: 115px;
  top: -124px;
  background: linear-gradient(#243b5f 0, #243b5f 114px, transparent 114px, transparent 100%), url(/assets/img/tooltip-pointer.svg) no-repeat 50% 100%;
}
.overview-date-picker span.notice.multiline-8.top:hover[data-tooltip]:after {
  height: 130px;
  top: -139px;
  background: linear-gradient(#243b5f 0, #243b5f 129px, transparent 129px, transparent 100%), url(/assets/img/tooltip-pointer.svg) no-repeat 50% 100%;
}
.overview-date-picker span.notice.multiline-9.top:hover[data-tooltip]:after {
  height: 145px;
  top: -154px;
  background: linear-gradient(#243b5f 0, #243b5f 144px, transparent 144px, transparent 100%), url(/assets/img/tooltip-pointer.svg) no-repeat 50% 100%;
}
.overview-date-picker span.notice.multiline-10.top:hover[data-tooltip]:after {
  height: 160px;
  top: -169px;
  background: linear-gradient(#243b5f 0, #243b5f 159px, transparent 159px, transparent 100%), url(/assets/img/tooltip-pointer.svg) no-repeat 50% 100%;
}
.overview-date-picker span.notice.multiline-11.top:hover[data-tooltip]:after {
  height: 175px;
  top: -184px;
  background: linear-gradient(#243b5f 0, #243b5f 174px, transparent 174px, transparent 100%), url(/assets/img/tooltip-pointer.svg) no-repeat 50% 100%;
}
.overview-date-picker span.notice.multiline-12.top:hover[data-tooltip]:after {
  height: 190px;
  top: -199px;
  background: linear-gradient(#243b5f 0, #243b5f 189px, transparent 189px, transparent 100%), url(/assets/img/tooltip-pointer.svg) no-repeat 50% 100%;
}
.overview-date-picker span.notice.multiline-13.top:hover[data-tooltip]:after {
  height: 205px;
  top: -214px;
  background: linear-gradient(#243b5f 0, #243b5f 204px, transparent 204px, transparent 100%), url(/assets/img/tooltip-pointer.svg) no-repeat 50% 100%;
}
.overview-date-picker span.notice.multiline-14.top:hover[data-tooltip]:after {
  height: 220px;
  top: -229px;
  background: linear-gradient(#243b5f 0, #243b5f 219px, transparent 219px, transparent 100%), url(/assets/img/tooltip-pointer.svg) no-repeat 50% 100%;
}
.overview-date-picker span.notice.multiline-15.top:hover[data-tooltip]:after {
  height: 235px;
  top: -244px;
  background: linear-gradient(#243b5f 0, #243b5f 234px, transparent 234px, transparent 100%), url(/assets/img/tooltip-pointer.svg) no-repeat 50% 100%;
}
.overview-date-picker span.notice.multiline-16.top:hover[data-tooltip]:after {
  height: 250px;
  top: -259px;
  background: linear-gradient(#243b5f 0, #243b5f 249px, transparent 249px, transparent 100%), url(/assets/img/tooltip-pointer.svg) no-repeat 50% 100%;
}
.overview-date-picker span.notice.multiline-17.top:hover[data-tooltip]:after {
  height: 265px;
  top: -274px;
  background: linear-gradient(#243b5f 0, #243b5f 264px, transparent 264px, transparent 100%), url(/assets/img/tooltip-pointer.svg) no-repeat 50% 100%;
}
.overview-date-picker span.notice.multiline-18.top:hover[data-tooltip]:after {
  height: 280px;
  top: -289px;
  background: linear-gradient(#243b5f 0, #243b5f 279px, transparent 279px, transparent 100%), url(/assets/img/tooltip-pointer.svg) no-repeat 50% 100%;
}
.overview-date-picker span.notice.multiline-19.top:hover[data-tooltip]:after {
  height: 295px;
  top: -304px;
  background: linear-gradient(#243b5f 0, #243b5f 294px, transparent 294px, transparent 100%), url(/assets/img/tooltip-pointer.svg) no-repeat 50% 100%;
}
.overview-date-picker span.notice.multiline-20.top:hover[data-tooltip]:after {
  height: 310px;
  top: -319px;
  background: linear-gradient(#243b5f 0, #243b5f 309px, transparent 309px, transparent 100%), url(/assets/img/tooltip-pointer.svg) no-repeat 50% 100%;
}
@media screen and (max-width: 1125px) {
  .overview-date-picker .ranges-wrapper .error-message {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
.breadcrumbs {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.breadcrumbs li::before {
  font-family: "fontawesome" !important;
  content: "\f054";
  font-size: 10px;
}
.breadcrumbs li::before span {
  content: "-";
}
.breadcrumbs li:first-child::before {
  content: none;
}
.breadcrumbs li {
  color: #9b9a9b;
  margin-right: 5px;
  padding: 10px 0 9px;
}
.breadcrumbs li:first-child {
  padding-left: 18px;
}
.breadcrumbs li:last-child {
  padding-right: 35px;
}
.breadcrumbs li a {
  font-weight: normal;
  text-decoration: underline;
  transition: 0.3s;
  color: #9b9a9b;
  display: inline-block;
}
.breadcrumbs li a:hover {
  color: #444f63;
}
.breadcrumbs li span {
  display: inline-block;
}
.breadcrumbs-wrapper {
  border-bottom: 1px solid #e6e6e6;
  z-index: 196;
  background: #f8f8f8;
  min-height: 35px;
}
.option-loading {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: calc(100% - 35px);
  background: rgba(7, 20, 50, 0.1);
}
.option-loading > .spinner {
  height: calc(100% - 10px);
  max-height: 50px;
  min-height: 18px;
}
form.bulk-upload > div.button-wrap {
  margin-top: 10px;
}
form.bulk-upload > div.button-wrap .fa-check {
  color: #18b28b;
}
form.bulk-upload > div.button-wrap .fa-close {
  color: #ed4651;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeInCenter {
  0% {
    opacity: 0;
    transform: rotate(70deg);
  }
  100% {
    opacity: 1;
    transform: rotate(0deg);
  }
}
@keyframes dash {
  to {
    stroke-dashoffset: 0;
  }
}
.moz-fallback {
  display: none;
  opacity: 0;
}
@-moz-document url-prefix() {
  .innovu-logo-container {
    display: none;
  }
  .moz-fallback {
    display: block;
    opacity: 1;
  }
}
.innovu-logo-container {
  width: 350px;
  position: absolute;
  top: calc(50% - 55px);
  left: 0;
}
.innovu-logo-container .fadeOut {
  animation: fadeOut 1s forwards;
  animation-delay: 2.3s;
}
.innovu-logo-container .white-circle {
  opacity: 0;
  animation: fadeIn 1s forwards;
  fill: #fff;
}
.innovu-logo-container .center {
  opacity: 0;
  animation: fadeInCenter 1s forwards;
  animation-delay: 0.4s;
  transform-origin: center;
  transform-box: fill-box;
  fill: #071432;
}
.innovu-logo-container .line {
  stroke: #071432;
  stroke-miterlimit: 10;
  stroke-width: 3px;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: dash 5s ease-in-out forwards;
}
.innovu-logo-container .line.l1 {
  animation-delay: 1.2s;
}
.innovu-logo-container .line.l2 {
  animation-delay: 1.4s;
}
.innovu-logo-container .line.l3 {
  animation-delay: 1.6s;
}
.innovu-logo-container .line.l4 {
  animation-delay: 1.8s;
}
.innovu-logo-container .line.l5 {
  animation-delay: 2s;
}
.innovu-logo-container .line.l6 {
  animation-delay: 2.2s;
}
.innovu-logo-container .lens {
  opacity: 0;
  animation: fadeIn 1s forwards;
}
.innovu-logo-container .lens.g1 {
  animation-delay: 2.5s;
  fill: #3eb39f;
}
.innovu-logo-container .lens.g2 {
  animation-delay: 2.3s;
  fill: #3eb39f;
}
.innovu-logo-container .lens.p1 {
  animation-delay: 2.7s;
  fill: #97798d;
}
.innovu-logo-container .lens.p2 {
  animation-delay: 2.9s;
  fill: #97798d;
}
.innovu-logo-container .lens.b1 {
  animation-delay: 3.3s;
  fill: #4892c7;
}
.innovu-logo-container .lens.b2 {
  animation-delay: 3.1s;
  fill: #4892c7;
}
.innovu-logo-container .tagline {
  opacity: 0;
  animation: fadeIn 2s forwards;
  animation-delay: 3.2s;
  fill: #fff;
}
.innovu-logo-container .letter {
  fill: #fff;
  opacity: 0;
  animation: fadeIn 2s forwards;
}
.innovu-logo-container .letter.I {
  animation-delay: 2.2s;
}
.innovu-logo-container .letter.n {
  animation-delay: 2.4s;
}
.innovu-logo-container .letter.n2 {
  animation-delay: 2.6s;
}
.innovu-logo-container .letter.o {
  animation-delay: 2.8s;
}
.innovu-logo-container .letter.v {
  animation-delay: 3s;
}
.innovu-logo-container .letter.u {
  animation-delay: 3.2s;
}
.innovu-logo-container .letter.r,
.innovu-logo-container .letter.registered-circle {
  animation-delay: 3.3s;
}
.innovu-logo-container .registered-circle {
  stroke: #fff;
  fill: none;
}
.mrp-header {
  padding: 30px 0px 15px 0px;
  border-bottom: solid 1px #e6e6e6;
}
.mrp-header .ui-label {
  border-bottom: solid 1px #d8d8d8;
  margin-bottom: 10px;
  padding-bottom: 5px;
  display: block;
}
.mrp-header .ui-label .label-text {
  color: #555555;
  font-weight: 500;
  font-size: 15px;
  font-size: 1.5rem;
}
.mrp-header .title-wrapper h1 {
  color: #9b9b9b;
  font-size: 24px;
  font-size: 2.4rem;
  margin: 25px 0px 0px 0px;
}
.mrp-header .mrp-button-container {
  position: relative;
  margin-left: 10px;
  width: 132px;
}
.mrp-header .mrp-button-container .mrp-button {
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  background: none;
  border: none;
}
.mrp-header .mrp-button-container .mrp-button:hover {
  cursor: pointer;
}
.mrp-header .mrp-button-container .mrp-button div {
  border-radius: 100%;
  background: white;
  border: solid 1px #243b5f;
  width: 45px;
  height: 45px;
  margin: 0 auto;
  box-shadow: 0px 0.5px 4px 0.5px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
}
.mrp-header .mrp-button-container .mrp-button div svg {
  display: block;
  margin: 0 auto;
}
.mrp-header .mrp-button-container .mrp-button div svg .fill {
  transition: 0.3s;
}
.mrp-header .mrp-button-container .mrp-button span {
  color: #555555;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 300;
  text-align: center;
  display: block;
  margin-top: 5px;
  transition: 0.3s;
}
.mrp-header .mrp-button-container .mrp-button .fe-excel-icon,
.mrp-header .mrp-button-container .mrp-button .fe-word-icon {
  margin-top: 10px;
  width: 19px;
  height: 25px;
  display: block;
}
.mrp-header .mrp-button-container .mrp-button .fe-excel-icon .fill,
.mrp-header .mrp-button-container .mrp-button .fe-word-icon .fill {
  fill: #243b5f;
}
.mrp-header .mrp-button-container .mrp-button:hover div,
.mrp-header .mrp-button-container .mrp-button.active div {
  border: solid 1px white;
  background: #243b5f;
}
.mrp-header .mrp-button-container .mrp-button:hover div .fill,
.mrp-header .mrp-button-container .mrp-button.active div .fill {
  fill: white;
}
.mrp-header .mrp-button-container .mrp-button:hover span,
.mrp-header .mrp-button-container .mrp-button.active span {
  color: #243b5f;
}
.mrp-header .mrp-button-container .mrp-button[disabled] div {
  box-shadow: none;
  background: #e2e2e2;
  border: solid 1px #e2e2e2;
}
.mrp-header .mrp-button-container .mrp-button[disabled] div .fill {
  fill: white;
}
.mrp-header .mrp-button-container .mrp-button[disabled] span {
  color: #e2e2e2;
}
.mrp-header .mrp-button-container .mrp-button[disabled]:hover {
  cursor: not-allowed;
}
.mrp-loader {
  background: rgba(255, 255, 255, 0.5);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 48px;
}
.mrp-loader .loading-indicator {
  top: 150px;
}
.mrp-loader .loading-indicator h1 {
  margin: 20px 0;
}
.mrp-loader + .instructions-wrapper .info-icon {
  opacity: 0;
}
@media (max-height: 45rem) {
  .route-monthly-experience ::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 7px;
  }
  .route-monthly-experience ::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
  }
  .file-dropdown-content {
    height: 50vh;
    overflow-y: scroll;
  }
}
.license-agreement ul {
  list-style: none;
  padding-left: 0;
}
.license-agreement li {
  font-size: 12px;
  line-height: 16px;
  font-weight: 300;
  text-align: left;
  margin-bottom: 15px;
}
.license-agreement li.block-indent {
  display: flex;
}
.license-agreement li span {
  padding-left: 15px;
}
.license-agreement li ul {
  padding-left: 15px;
}
.cfr-page-wrapper {
  max-width: 1330px;
  min-width: 850px;
  margin: 0 auto;
  padding-bottom: 50px;
  width: calc(100% - 80px);
}
.cfr-page-wrapper .ui-block.month,
.cfr-page-wrapper .ui-block.year,
.cfr-page-wrapper .ui-block.benchmark {
  position: relative;
}
.cfr-page-wrapper .ui-block.exportOnly,
.cfr-page-wrapper .ui-block.exportPlus {
  margin: 0 auto;
}
.cfr-page-wrapper .ui-block.exportOnly .cfr-button-container,
.cfr-page-wrapper .ui-block.exportPlus .cfr-button-container {
  margin: 0;
}
.cfr-page-wrapper .cfr-loading-container {
  position: absolute;
  top: -10px;
  right: 20px;
}
.cfr-page-wrapper .cfr-loading-container .spinner {
  width: 20px;
  height: 20px;
}
.cfr-page-wrapper .cfr-dropdown::after,
.cfr-page-wrapper .cfr-dropdown::before {
  left: var(--cfrAddDataDropdownPseudoLeftPosition, 89.2%);
}
.custom-financial-report-header-wrapper .title-wrapper {
  border-bottom: solid 1px #e6e6e6;
  padding: 0px 0px 25px 0px;
}
.custom-financial-report-header-wrapper .title-wrapper h1 {
  color: #9b9b9b;
  font-size: 24px;
  font-size: 2.4rem;
  margin: 25px 0px 0px 0px;
}
.custom-financial-report-header-wrapper .title-wrapper h2 {
  color: #6b6b6b;
  font-size: 15px;
  font-size: 1.5rem;
  margin: 12px 0px 0px 0px;
}
.custom-financial-report-header-wrapper .cfr-header {
  padding: 30px 0px 15px 0px;
  border-bottom: solid 1px #e6e6e6;
}
.custom-financial-report-header-wrapper .cfr-header .ui-label {
  border-bottom: solid 1px #d8d8d8;
  margin-bottom: 10px;
  padding-bottom: 5px;
  display: block;
}
.custom-financial-report-header-wrapper .cfr-header .ui-label .label-text {
  color: #555555;
  font-weight: 500;
  font-size: 15px;
  font-size: 1.5rem;
}
.custom-financial-report-header-wrapper .cfr-header .pepm-pmpm .ui-toggle-switch {
  max-width: 75px;
  font-weight: bold;
}
.custom-financial-report-header-wrapper .cfr-header .pepm-pmpm .ui-toggle-switch label {
  background: #18b28b;
}
.custom-financial-report-header-wrapper .cfr-header .pepm-pmpm .ui-toggle-switch .inset-text {
  color: white;
}
.custom-financial-report-header-wrapper .cfr-header .cfr-button-container {
  position: relative;
  margin: 0 auto;
}
.custom-financial-report-header-wrapper .cfr-header .cfr-button-container .cfr-button {
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  background: none;
  border: none;
}
.custom-financial-report-header-wrapper .cfr-header .cfr-button-container .cfr-button:hover {
  cursor: pointer;
}
.custom-financial-report-header-wrapper .cfr-header .cfr-button-container .cfr-button div {
  border-radius: 100%;
  background: white;
  border: solid 1px #243b5f;
  width: 45px;
  height: 45px;
  margin: 0 auto;
  box-shadow: 0px 0.5px 4px 0.5px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
}
.custom-financial-report-header-wrapper .cfr-header .cfr-button-container .cfr-button div svg {
  display: block;
  margin: 0 auto;
}
.custom-financial-report-header-wrapper .cfr-header .cfr-button-container .cfr-button div svg .fill {
  transition: 0.3s;
}
.custom-financial-report-header-wrapper .cfr-header .cfr-button-container .cfr-button span {
  color: #555555;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 300;
  text-align: center;
  display: block;
  margin-top: 5px;
  transition: 0.3s;
}
.custom-financial-report-header-wrapper .cfr-header .cfr-button-container .cfr-button .fe-excel-icon,
.custom-financial-report-header-wrapper .cfr-header .cfr-button-container .cfr-button .fe-word-icon,
.custom-financial-report-header-wrapper .cfr-header .cfr-button-container .cfr-button .powerpoint-icon {
  margin-top: 10px;
  width: 19px;
  height: 25px;
}
.custom-financial-report-header-wrapper .cfr-header .cfr-button-container .cfr-button .fe-excel-icon .fill,
.custom-financial-report-header-wrapper .cfr-header .cfr-button-container .cfr-button .fe-word-icon .fill,
.custom-financial-report-header-wrapper .cfr-header .cfr-button-container .cfr-button .powerpoint-icon .fill {
  fill: #243b5f;
}
.custom-financial-report-header-wrapper .cfr-header .cfr-button-container .cfr-button .fe-run-icon {
  margin-top: 10px;
  width: 26px;
  height: 26px;
}
.custom-financial-report-header-wrapper .cfr-header .cfr-button-container .cfr-button:hover div,
.custom-financial-report-header-wrapper .cfr-header .cfr-button-container .cfr-button.active div {
  border: solid 1px white;
  background: #243b5f;
}
.custom-financial-report-header-wrapper .cfr-header .cfr-button-container .cfr-button:hover div .fill,
.custom-financial-report-header-wrapper .cfr-header .cfr-button-container .cfr-button.active div .fill {
  fill: white;
}
.custom-financial-report-header-wrapper .cfr-header .cfr-button-container .cfr-button:hover span,
.custom-financial-report-header-wrapper .cfr-header .cfr-button-container .cfr-button.active span {
  color: #243b5f;
}
.custom-financial-report-header-wrapper .cfr-header .cfr-button-container .cfr-button[disabled] div {
  box-shadow: none;
  background: #e2e2e2;
  border: solid 1px #e2e2e2;
}
.custom-financial-report-header-wrapper .cfr-header .cfr-button-container .cfr-button[disabled] div .fill {
  fill: white;
}
.custom-financial-report-header-wrapper .cfr-header .cfr-button-container .cfr-button[disabled] span {
  color: #e2e2e2;
}
.custom-financial-report-header-wrapper .cfr-header .cfr-button-container .cfr-button[disabled]:hover {
  cursor: not-allowed;
}
.custom-financial-report .instructions-wrapper {
  width: 800px;
  margin: 0 auto;
  margin-top: 50px;
}
.custom-financial-report .instructions-wrapper .info-icon {
  background: url("/assets/financial-experience/info-icon.svg");
  width: 75px;
  height: 75px;
  background-size: cover;
  margin: 0 auto;
  margin-bottom: 20px;
}
.custom-financial-report .instructions-wrapper .content {
  border-top: solid 1px #e6e6e6;
  border-bottom: solid 1px #e6e6e6;
  padding: 30px;
  font-size: 18px;
  font-size: 1.8rem;
  color: #555555;
}
.custom-financial-report .instructions-wrapper .content ul {
  margin: 0;
  padding: 0 0 0 20px;
}
.custom-financial-report .instructions-wrapper .content ul li {
  color: #4892c7;
  margin: 0px 0px 20px 0px;
  line-height: 20px;
}
.custom-financial-report .instructions-wrapper .content ul li span {
  color: #555555;
}
.cfr-loader {
  position: relative;
}
.cfr-loader .loading-indicator {
  top: 20px;
}
.cfr-loader .loading-indicator h1 {
  margin: 20px 0;
}
.cfr-dropdown {
  background: white;
  border-radius: 5px;
  border: solid 1px #e6e6e6;
  box-shadow: 0px 3px 3px 0.5px rgba(0, 0, 0, 0.3);
  padding: 20px;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  color: #555555;
  width: 1000px;
  z-index: 1;
}
.cfr-dropdown.cfr-export-dropdown {
  width: 600px;
}
.cfr-dropdown.cfr-export-dropdown ul {
  margin-top: 5px;
}
.cfr-dropdown.cfr-export-dropdown .ui-block {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.cfr-dropdown.cfr-export-dropdown .cfr-button {
  margin-top: auto;
}
.cfr-dropdown.cfr-export-dropdown::before,
.cfr-dropdown.cfr-export-dropdown::after {
  left: var(--cfrExportDropdownPseudoLeftPosition, 92%);
}
.cfr-dropdown::before {
  content: "";
  bottom: 100%;
  left: 81%;
  margin-left: 5px;
  width: 0;
  position: absolute;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid #e6e6e6;
  border-width: 10px;
}
.cfr-dropdown::after {
  content: "";
  bottom: 100%;
  left: 81%;
  margin-left: 6px;
  width: 0;
  position: absolute;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid white;
  border-width: 9px;
}
.cfr-dropdown h3 {
  font-size: 16px;
  font-size: 1.6rem;
  padding-bottom: 5px;
  border-bottom: solid 1px #01a3e0;
  margin-bottom: 10px;
  display: table;
}
.cfr-dropdown ol {
  margin: 0 30px 0 0;
  padding: 0 0 0 20px;
  padding: 10px 0px 10px 20px;
  border-top: solid 1px #e6e6e6;
}
.cfr-dropdown ol li {
  margin: 0 0 5px 0;
}
.cfr-dropdown .content .disclaimer {
  padding-left: 15px;
  font-size: 11px;
  font-size: 1.1rem;
}
.cfr-dropdown .content .disclaimer strong {
  color: #003b5c;
}
.cfr-dropdown .upload-inputs {
  display: flex;
  align-items: center;
}
.cfr-dropdown .field-container {
  min-width: 125px;
  max-width: 125px;
  margin-right: 15px;
}
.cfr-dropdown .field-container strong {
  color: #555555;
  font-size: 14px;
  font-size: 1.4rem;
  text-align: center;
  display: block;
  margin-top: 10px;
}
.cfr-dropdown .upload-btn-container,
.cfr-dropdown .download-btn-container {
  position: relative;
  margin: 0 auto;
  width: 80px;
}
.cfr-dropdown .upload-btn-container:hover .upload-btn,
.cfr-dropdown .download-btn-container:hover .upload-btn {
  box-shadow: 0px 0.5px 4px 0.5px rgba(0, 0, 0, 0.4);
}
.cfr-dropdown .upload-btn-container .success-checkmark,
.cfr-dropdown .download-btn-container .success-checkmark {
  position: absolute;
  width: 20px;
  height: 20px;
  top: 0;
  right: -2px;
  background: url("/assets/img/checkmark-circle.svg") #fff;
  background-size: cover;
  box-shadow: 0px 0.5px 1px 0.5px rgba(0, 0, 0, 0.2);
  border-radius: 100%;
}
.cfr-dropdown .upload-btn-container .upload-input,
.cfr-dropdown .download-btn-container .upload-input {
  width: 100%;
  height: 100%;
  position: absolute;
  display: block;
  opacity: 0;
  top: 0;
}
.cfr-dropdown .upload-btn-container .upload-input:hover,
.cfr-dropdown .download-btn-container .upload-input:hover {
  cursor: pointer;
}
.cfr-dropdown .upload-btn-container .loading-indicator,
.cfr-dropdown .download-btn-container .loading-indicator {
  width: 70px !important;
  top: -12px;
}
.cfr-dropdown .upload-btn-container .loading-indicator .spinner,
.cfr-dropdown .download-btn-container .loading-indicator .spinner {
  background-color: rgba(255, 255, 255, 0.4);
  background-repeat: no-repeat;
  border: 5px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
}
.cfr-dropdown .upload-btn-container .upload-btn,
.cfr-dropdown .download-btn-container .upload-btn,
.cfr-dropdown .upload-btn-container .download-btn,
.cfr-dropdown .download-btn-container .download-btn {
  height: 80px;
  width: 80px;
  display: block;
  background: #01a3e0;
  border-radius: 100%;
  transition: 0.3s;
}
.cfr-dropdown .upload-btn-container .upload-btn::before,
.cfr-dropdown .download-btn-container .upload-btn::before,
.cfr-dropdown .upload-btn-container .download-btn::before,
.cfr-dropdown .download-btn-container .download-btn::before {
  font-family: "fontawesome" !important;
  color: white;
  font-size: 50px;
  font-size: 5rem;
  display: block;
  text-align: center;
}
.cfr-dropdown .upload-btn-container .upload-btn:hover,
.cfr-dropdown .download-btn-container .upload-btn:hover,
.cfr-dropdown .upload-btn-container .download-btn:hover,
.cfr-dropdown .download-btn-container .download-btn:hover {
  box-shadow: 0px 0.5px 4px 0.5px rgba(0, 0, 0, 0.4);
}
.cfr-dropdown .upload-btn-container .upload-btn::before,
.cfr-dropdown .download-btn-container .upload-btn::before {
  content: "\f093";
  padding-top: 30px;
}
.cfr-dropdown .upload-btn-container .download-btn::before,
.cfr-dropdown .download-btn-container .download-btn::before {
  content: "\f019";
  padding-top: 35px;
}
div.report-widget-table {
  border-radius: 5px;
  background: white;
}
div.report-widget-table .table-wrapper {
  overflow: scroll;
  max-height: 352px;
}
div.report-widget-table .table-wrapper table {
  white-space: nowrap;
  font-size: 11px;
  font-size: 1.1rem;
  font-weight: 500;
  border-collapse: collapse;
  text-align: center;
  border-top: solid 1px #e6e6e6;
  border-bottom: solid 1px #e6e6e6;
  width: 100%;
}
div.report-widget-table .table-wrapper table thead {
  background: #003b5c;
  color: white;
  position: sticky;
  top: 0;
  z-index: 1;
}
div.report-widget-table .table-wrapper table thead tr > th {
  padding: 5px;
  border-left: solid 1px #e6e6e6;
  border-right: solid 1px #e6e6e6;
}
div.report-widget-table .table-wrapper table tbody {
  color: #555555;
  font-weight: 500;
}
div.report-widget-table .table-wrapper table tbody tr:nth-child(odd) {
  background: #f7f7f7;
}
div.report-widget-table .table-wrapper table tbody tr > td {
  padding: 5px;
  border-left: solid 1px #e6e6e6;
  border-right: solid 1px #e6e6e6;
}
div.report-widget-table .table-wrapper table tbody tr > td.align-left {
  text-align: left;
}
div.report-widget-table .table-wrapper table tbody tr > td.align-center {
  text-align: center;
}
div.report-widget-table .table-wrapper table tbody tr > td.align-right {
  text-align: right;
}
div.report-widget-table .table-wrapper table tfoot {
  background: #003b5c;
  color: white;
  position: sticky;
  bottom: 0;
}
div.report-widget-table .table-wrapper table tfoot tr > th {
  padding: 5px;
  border-left: solid 1px #e6e6e6;
  border-right: solid 1px #e6e6e6;
}
.report-status > .modal > .content > .ui-grid > .close-modal {
  position: absolute;
  right: -12px;
  top: -12px;
  border-radius: 100%;
  height: 30px;
  width: 30px;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 400;
}
.report-status-table {
  width: 890px;
}
.report-status-table td {
  min-width: 100px;
}
.report-status-table td.status {
  font-weight: bold;
}
.report-status-table td.status.complete {
  color: #18b28b;
}
.report-status-table td.status.failed {
  color: #ed4651;
}
.report-status-table td .ui-grid {
  grid-gap: 10px;
}
.report-status-table td .ui-button {
  min-width: 150px;
}
.report-status-table th {
  min-width: 100px;
}
.report-status-table .report-widget-title {
  margin: 20px;
  display: block;
  font-size: 20px;
  font-size: 2rem;
}
.file-status .search-panel .search-controls {
  display: flex;
  align-items: center;
  margin: 0 auto;
  width: 500px;
}
.file-status .search-panel .search-controls .ui-input {
  margin-right: 10px;
}
.file-status .search-panel .search-controls .search-btn {
  height: 26px;
  border-radius: 20px;
  appearance: none;
  color: #fff;
  background: #1e3f56;
  border: solid 1px #81a1b8;
  border-radius: 15px;
  font-size: 14px;
  padding: 5px 10px 5px 10px;
  display: flex;
  align-items: center;
  transition: all 0.5s;
  margin-top: 20px;
}
.file-status .search-panel .search-controls .search-btn:hover {
  cursor: pointer;
  box-shadow: 0px 0.5px 4px 0.5px rgba(0, 0, 0, 0.2);
  background: #235980;
}
.profile-results .ember-table .ember-table-overflow {
  max-height: 400px;
}
.profile-results .ember-table .ember-table-overflow .ember-table .ember-table-overflow {
  max-height: 200px;
}
.profile-results .ember-table .dot {
  top: -2px;
}
.profile-results .ember-table table th {
  color: #fff;
}
.profile-results .ember-table table tbody tr.grey {
  background: #f3f3f3;
}
.profile-results .ember-table table tbody tr.required {
  background-color: #ffb2b2c4;
  color: #202c47;
}
.profile-results .ember-table table tbody tr.required.grey {
  background-color: #ffb2b2;
}
.profile-results table {
  font-size: 12px;
  width: 100%;
}
.profile-results .header {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.profile-results .header .file-selection {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 80%;
  margin: 25px 0;
}
.profile-results .header .file-selection .no-text:before {
  margin: 0 5px;
}
.profile-results .file-read-summary {
  width: calc(100% - 40px);
  margin: 20px 0;
}
.profile-results .file-read-summary .styled-list li {
  text-align: left;
  margin: 0 auto;
}
.profile-results .section {
  margin: 20px;
  padding-top: 40px;
  border-top: solid 1px #d8d8d8;
}
.profile-results .section .title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.profile-results .section .title > span {
  font-size: 20px;
  margin-right: 20px;
}
.profile-results .section .section-content {
  margin: 20px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.profile-results .section .arrow svg {
  transition: all 0.5s;
  display: block;
  transform: rotate(90deg);
  height: 16.5px;
  width: 12px;
}
.profile-results .section .arrow svg path {
  fill: #4892c7;
}
.profile-results .section .arrow:hover {
  cursor: pointer;
}
.profile-results .section .arrow:hover svg path {
  fill: #2c6188;
}
.profile-results .section .arrow.open svg {
  transform: rotate(-90deg);
}
.profile-results .data-info .section-content,
.profile-results .time-range-analysis .section-content,
.profile-results .monthly-total-analysis .section-content,
.profile-results .unmapped-fields-analysis .section-content,
.profile-results .mapped-and-missing-fields-analysis .section-content,
.profile-results .date-fields-analysis .section-content,
.profile-results .all-fields-analysis .section-content,
.profile-results .reports .section-content {
  margin: 20px;
  align-items: center;
  justify-content: center;
  display: flex;
}
.profile-results .data-info .section-content.show-required-indicator,
.profile-results .time-range-analysis .section-content.show-required-indicator,
.profile-results .monthly-total-analysis .section-content.show-required-indicator,
.profile-results .unmapped-fields-analysis .section-content.show-required-indicator,
.profile-results .mapped-and-missing-fields-analysis .section-content.show-required-indicator,
.profile-results .date-fields-analysis .section-content.show-required-indicator,
.profile-results .all-fields-analysis .section-content.show-required-indicator,
.profile-results .reports .section-content.show-required-indicator {
  position: relative;
}
.profile-results .data-info .section-content.show-required-indicator > .dot-container,
.profile-results .time-range-analysis .section-content.show-required-indicator > .dot-container,
.profile-results .monthly-total-analysis .section-content.show-required-indicator > .dot-container,
.profile-results .unmapped-fields-analysis .section-content.show-required-indicator > .dot-container,
.profile-results .mapped-and-missing-fields-analysis .section-content.show-required-indicator > .dot-container,
.profile-results .date-fields-analysis .section-content.show-required-indicator > .dot-container,
.profile-results .all-fields-analysis .section-content.show-required-indicator > .dot-container,
.profile-results .reports .section-content.show-required-indicator > .dot-container {
  position: absolute;
  top: -33px;
  right: 0;
  display: flex;
  align-items: center;
}
.profile-results .data-info .section-content.show-required-indicator > .dot-container > .dot-label,
.profile-results .time-range-analysis .section-content.show-required-indicator > .dot-container > .dot-label,
.profile-results .monthly-total-analysis .section-content.show-required-indicator > .dot-container > .dot-label,
.profile-results .unmapped-fields-analysis .section-content.show-required-indicator > .dot-container > .dot-label,
.profile-results .mapped-and-missing-fields-analysis .section-content.show-required-indicator > .dot-container > .dot-label,
.profile-results .date-fields-analysis .section-content.show-required-indicator > .dot-container > .dot-label,
.profile-results .all-fields-analysis .section-content.show-required-indicator > .dot-container > .dot-label,
.profile-results .reports .section-content.show-required-indicator > .dot-container > .dot-label {
  font-size: 15px;
  margin-left: 4px;
}
.profile-results .note {
  position: relative;
}
.profile-results .note .list-item {
  font-size: 14px;
}
.profile-results .note .explore-section {
  margin: 10px 0px;
}
.profile-results .paragraph {
  font-size: 12px;
  margin: 10px 0 10px 0;
}
.profile-results .field-rules-group {
  margin: 10px 0 10px -40px;
}
.profile-results .dot {
  height: 5px;
  width: 5px;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  top: 2px;
}
.profile-results .all-fields,
.profile-results .date-fields {
  width: 100%;
}
.profile-results .all-fields table tr,
.profile-results .date-fields table tr {
  cursor: pointer;
}
.profile-results .all-fields .outer-header,
.profile-results .date-fields .outer-header {
  z-index: 6;
}
.profile-results .all-fields-detail {
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  margin-top: 15px;
}
.profile-results .unique-checks,
.profile-results .subscriber-checks,
.profile-results .identity-checks {
  position: relative;
}
.profile-results .identity-checks .top-right {
  top: 0;
}
.profile-results .group-codes {
  position: relative;
}
.profile-results .top-right {
  position: absolute;
  right: 0px;
  top: -40px;
}
@keyframes rotateCloseBtn {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(120deg);
  }
  50% {
    transform: rotate(60deg);
  }
  75% {
    transform: rotate(100deg);
  }
  100% {
    transform: rotate(90deg);
  }
}
.streamed-char {
  animation: fadeIn 1s ease-in-out;
}
.side-flyout-window {
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 100%;
  background: #f5f7fa;
  z-index: 9998;
  box-shadow: -2px 0px 5px 0px rgba(0, 0, 0, 0.2);
}
.side-flyout-window .loading-container {
  position: relative;
  top: 50%;
  margin-top: -80px;
}
.side-flyout-window .loading-container .loading-indicator {
  margin-top: 20px;
}
.side-flyout-window .loading-container .loading-indicator h1 {
  margin: 0 0 20px 0;
  line-height: normal;
}
.side-flyout-window .loading-container .loading-indicator .spinner {
  margin: 0 auto;
}
.side-flyout-window .header {
  background: linear-gradient(to right, #2c72a6, #38a0a1);
  padding: 13px;
  width: calc(100% - 26px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.side-flyout-window .header .lens-bg {
  background: url(/assets/side-flyout-window/lens-logo-outline.svg) no-repeat;
  background-size: cover;
  height: 111px;
  width: 120px;
  position: absolute;
  left: -32px;
  top: -32px;
  opacity: 0.2;
}
.side-flyout-window .header .title {
  color: #ffffff;
  font-weight: 700;
  font-size: 20px;
  font-size: 2rem;
  line-height: 20px;
  margin: 0;
  display: flex;
  align-items: center;
}
.side-flyout-window .header .title.ai .icon {
  width: 30px;
  height: 31px;
  display: inline-block;
  background: url(/assets/side-flyout-window/ai-analysis-icon.svg) no-repeat;
  background-size: cover;
  margin-right: 10px;
}
.side-flyout-window .header .btn-container {
  margin-left: auto;
  display: flex;
  align-items: center;
}
.side-flyout-window .header .btn-container .copy-btn {
  border-radius: 20px;
  border: solid 1px #ffffff;
  font-size: 14px;
  font-size: 1.4rem;
  color: #ffffff;
  padding: 5px 10px 5px 10px;
  display: flex;
  align-items: center;
  margin-right: 10px;
  transition: all 0.5s;
}
.side-flyout-window .header .btn-container .copy-btn:hover {
  cursor: pointer;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.4);
}
.side-flyout-window .header .btn-container .copy-btn .icon {
  width: 11px;
  height: 15px;
  background: url(/assets/side-flyout-window/copy-icon.svg) no-repeat;
  background-size: cover;
  margin-right: 5px;
}
.side-flyout-window .header .btn-container .close-btn {
  width: 25px;
  height: 25px;
  background: url(/assets/side-flyout-window/close-icon.svg) no-repeat;
  background-size: cover;
  border-radius: 100%;
  transition: 1.2s ease-in-out;
}
.side-flyout-window .header .btn-container .close-btn:hover {
  cursor: pointer;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.4);
  animation: rotateCloseBtn 1.2s linear;
}
.side-flyout-window .content {
  background: #ffffff;
  border-radius: 8px;
  border: solid 1px #d6d6d6;
  padding: 12px;
  margin: 10px;
  width: calc(100% - 44px);
  height: calc(100% - 99px);
  overflow-y: scroll;
}
.side-flyout-window .content .ai-prompt-cursor {
  animation: blink 1s step-start infinite;
}
.side-flyout-window .content h3 {
  font-size: 20px;
  font-size: 2rem;
  font-weight: 300;
  color: #08264a;
  border-bottom: solid 1px #2a5777;
  margin: 20px 0 15px 0;
  padding-bottom: 10px;
}
.side-flyout-window .content .ai-response h3:first-of-type {
  margin: 0px 0 15px 0;
}
.side-flyout-window .content p {
  font-size: 12px;
  font-size: 1.2rem;
  color: #6d6b6b;
  margin: 0 0 10px 0;
  line-height: 1.7rem;
}
.side-flyout-window .content ul,
.side-flyout-window .content ol {
  margin: 0;
  padding: 0;
}
.side-flyout-window .content ul li,
.side-flyout-window .content ol li {
  margin: 0 0 10px 15px;
  padding: 0 0 0 10px;
  text-align: left;
  list-style-position: outside;
  list-style-type: "\2B24";
  color: #6d6b6b;
}
.side-flyout-window .content ul li::marker,
.side-flyout-window .content ol li::marker {
  color: #2c72a6;
  font-size: 10px;
  font-size: 1rem;
}
.side-flyout-window .content ul li ul,
.side-flyout-window .content ol li ul,
.side-flyout-window .content ul li ol,
.side-flyout-window .content ol li ol {
  padding: 5px;
}
.side-flyout-window .content ul li li,
.side-flyout-window .content ol li li {
  list-style-type: "\25CE";
}
.side-flyout-window .content ul li li::marker,
.side-flyout-window .content ol li li::marker {
  font-size: 12px;
  font-size: 1.2rem;
}
.side-flyout-window .content table {
  border: solid 1px #d6d6d6;
  border-collapse: collapse;
  margin-bottom: 10px;
}
.side-flyout-window .content table thead {
  background: linear-gradient(to right, #2863a9, #4892c7);
  font-size: 11px;
  font-size: 1.1rem;
  line-height: 12px;
  color: #fff;
}
.side-flyout-window .content table thead th {
  border-right: solid 1px #fff;
  border-bottom: solid 1px #d6d6d6;
  font-size: 11px;
  padding: 5px;
}
.side-flyout-window .content table thead th:last-of-type {
  border-right: none;
}
.side-flyout-window .content table tbody tr {
  border-bottom: solid 1px #d6d6d6;
  text-align: center;
  font-size: 12px;
  line-height: 12px;
  color: #555555;
}
.side-flyout-window .content table tbody tr:nth-child(even) {
  background: #f7f7f7;
}
.side-flyout-window .content table tbody tr td {
  border-right: solid 1px #d6d6d6;
  padding: 5px;
}
.side-flyout-window .content table tbody tr td:last-of-type {
  border-right: none;
}
.side-flyout-window .content .feedback-info {
  text-align: center;
  font-size: 14px;
  font-size: 1.4rem;
  margin: 0;
}
.side-flyout-window .content .feedback-info.desc {
  font-size: 11px;
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 5px;
}
.side-flyout-window .content .rating-scale-container {
  width: 245px;
  margin: 0 auto;
}
.side-flyout-window .content .rating-scale-container > div {
  display: flex;
  align-items: center;
}
.side-flyout-window .content .rating-scale-container .scale-button-wrapper {
  margin-right: 5px;
  width: 20px;
}
.side-flyout-window .content .rating-scale-container .scale-button-wrapper:last-of-type {
  margin-right: 0;
}
.side-flyout-window .content .rating-scale-container .scale-button-wrapper .scale-label {
  display: block;
  margin: 0 auto;
  text-align: center;
  font-size: 12px;
  font-size: 1.2rem;
  color: #555555;
  font-weight: bold;
  margin-bottom: 5px;
}
.side-flyout-window .content .rating-scale-container .scale-button-wrapper input {
  width: 20px;
  margin: 0 auto;
}
.side-flyout-window .content .feedback-message {
  text-align: center;
  font-size: 12px;
  font-size: 1.2rem;
  margin-top: 5px;
  font-weight: bold;
}
.side-flyout-window .content .refresh-btn {
  color: #fff;
  background: #1e3f56;
  border: solid 1px #81a1b8;
  appearance: none;
  border-radius: 15px;
  font-size: 14px;
  font-size: 1.4rem;
  padding: 5px 10px 5px 10px;
  display: flex;
  align-items: center;
  transition: all 0.5s;
  margin: 0 auto;
  margin-top: 5px;
  width: 123px;
}
.side-flyout-window .content .refresh-btn:hover {
  cursor: pointer;
  box-shadow: 0px 0.5px 4px 0.5px rgba(0, 0, 0, 0.2);
  background: #235980;
}
.side-flyout-window .content .refresh-btn .icon {
  margin-right: 5px;
  width: 13px;
  height: 13px;
  background: url("/assets/side-flyout-window/refresh-icon.svg") no-repeat;
  background-size: cover;
}
.route-insight-dashboard-view-index .side-flyout-tab {
  top: 200px;
}
.side-flyout-tab {
  background: linear-gradient(to bottom, #2863a9, #4892c7);
  border-top: solid 1px #ffffff;
  border-left: solid 1px #ffffff;
  border-bottom: solid 1px #ffffff;
  border-radius: 30px 0 0 30px;
  height: 182px;
  width: 40px;
  position: absolute;
  transition: all 0.5s;
  top: 140px;
  z-index: 1;
  right: 0;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
}
.side-flyout-tab:hover {
  cursor: pointer;
  border-top: solid 1px #2a5777;
  border-left: solid 1px #2a5777;
  border-bottom: solid 1px #2a5777;
}
.side-flyout-tab .tab-content {
  position: relative;
  transform: rotate(90deg);
}
.side-flyout-tab .tab-content > div {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  position: absolute;
  width: 158px;
  top: -17px;
  left: 35px;
}
.side-flyout-tab .icon {
  width: 30px;
  height: 31px;
  display: block;
  background: url(/assets/side-flyout-window/ai-analysis-icon.svg) no-repeat;
  background-size: cover;
  transform: rotate(-90deg);
  margin-left: -5px;
}
.side-flyout-tab .tab-text {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 400;
  color: #ffffff;
}
@keyframes fadeIn {
  from {
    opacity: 0.35;
  }
  to {
    opacity: 1;
  }
}
@keyframes blink {
  50% {
    opacity: 0;
  }
}
.as-renewal-bulk-wrapper h3 {
  border-bottom: solid 1px #d6d6d6;
  font-size: 18px;
  color: #555555;
  margin: 10px 0 0 0;
  font-weight: 500;
  display: table;
  padding-bottom: 7px;
}
.as-renewal-bulk-wrapper p {
  margin: 10px 0 20px 0;
  color: #555555;
}
.as-renewal-bulk-wrapper .btn-wrapper {
  display: flex;
  align-items: center;
}
.as-renewal-bulk-wrapper .btn {
  color: #fff;
  background: #1e3f56;
  border: solid 1px #81a1b8;
  border-radius: 15px;
  font-size: 14px;
  font-size: 1.4rem;
  padding: 5px 10px 5px 10px;
  display: flex;
  align-items: center;
  transition: all 0.5s;
  margin: 0 10px 0 0;
}
.as-renewal-bulk-wrapper .btn:hover {
  cursor: pointer;
  box-shadow: 0px 0.5px 4px 0.5px rgba(0, 0, 0, 0.2);
  background: #235980;
}
.as-renewal-bulk-wrapper .btn .loading-indicator .spinner {
  width: 15px;
  height: 15px;
  background: url(/assets/img/lens-loading.gif);
  background-size: cover;
  margin: 6px 0 0 10px;
}
.as-renewal-bulk-wrapper .btn .loading-indicator .spinner {
  width: 15px;
  height: 15px;
  background: url(/assets/img/lens-loading.gif);
  background-size: cover;
  margin: 6px 0 0 10px;
}
.as-renewal-bulk-wrapper .btn .checkmark {
  position: absolute;
  top: -2px;
  right: 6px;
  width: 12px;
  height: 12px;
  background: #18b28b;
  box-shadow: 0px 0.5px 1px 0.5px rgba(0, 0, 0, 0.2);
  border-radius: 100%;
}
.as-renewal-bulk-wrapper .btn .checkmark .check-icon {
  background: url("/assets/img/checkmark-circle.svg") #fff no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  border-radius: 100%;
}
.as-renewal-bulk-wrapper .btn .icon {
  margin-right: 5px;
  width: 14px;
  height: 15px;
}
.as-renewal-bulk-wrapper .btn.disabled {
  pointer-events: none;
  opacity: 0.5;
}
.as-renewal-bulk-wrapper .btn.submit .icon {
  background: url("/assets/button-icons/submit-icon.svg") no-repeat;
  background-size: cover;
}
.as-renewal-bulk-wrapper .btn.upload .icon {
  background: url("/assets/button-icons/upload-icon.svg") no-repeat;
  background-size: cover;
}
.as-renewal-bulk-wrapper .btn.upload.loading .icon {
  background: none;
}
.as-renewal-bulk-wrapper .upload-btn-container {
  position: relative;
}
.as-renewal-bulk-wrapper .upload-btn-container .upload-input {
  position: absolute;
  top: 0;
  opacity: 0;
  width: 0;
  height: 0;
}
.as-renewal-bulk-wrapper .error-wrapper {
  padding: 10px 0 0 0;
}
.as-renewal-bulk-wrapper .error-wrapper p {
  color: #555555;
  font-size: 14px;
  border-bottom: solid 1px #ed4651;
  padding: 0 0 5px 0;
  display: table;
  margin: 10px 0 0 0;
}
.as-renewal-bulk-wrapper .error-wrapper ul {
  margin: 10px 0 0 20px;
  padding: 0;
}
.as-renewal-bulk-wrapper .error-wrapper ul li::marker {
  color: #ed4651;
  font-size: 12px;
  font-size: 1.2rem;
}
.as-renewal-bulk-wrapper .error-wrapper .btn {
  width: 62px;
  margin: 20px 0 0 0;
}
.as-renewal-bulk-wrapper.clone-as-wrapper .org-wrapper {
  display: flex;
  align-items: center;
}
.as-renewal-bulk-wrapper.clone-as-wrapper .source-org {
  margin-right: 20px;
}
.as-renewal-bulk-wrapper.clone-as-wrapper .source-org span {
  color: #555555;
  font-size: 14px;
}
.as-renewal-bulk-wrapper.clone-as-wrapper .source-org p {
  border: solid 1px #d6d6d6;
  padding: 4px 7px 4px 7px;
  border-radius: 5px;
  width: 290px;
}
.as-renewal-bulk-wrapper.clone-as-wrapper .target-org {
  width: 300px;
  margin-bottom: 20px;
}
.as-renewal-bulk-wrapper.clone-as-wrapper .target-org label {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  color: #555555;
}
.as-renewal-bulk-wrapper.clone-as-wrapper .target-org .ember-power-select-selected-item {
  font-weight: bold;
  color: #555555;
}
.file-status table {
  border: solid 1px #d6d6d6;
  border-collapse: collapse;
  margin-bottom: 10px;
  margin-left: 20px;
}
.file-status table thead {
  background: linear-gradient(to right, #2863a9, #4892c7);
  font-size: 11px;
  font-size: 1.1rem;
  line-height: 12px;
  color: #fff;
}
.file-status table thead th {
  border-right: solid 1px #fff;
  border-bottom: solid 1px #d6d6d6;
  font-size: 11px;
  padding: 5px;
}
.file-status table thead th:last-of-type {
  border-right: none;
}
.file-status table tbody tr {
  border-bottom: solid 1px #d6d6d6;
  text-align: center;
  font-size: 12px;
  line-height: 12px;
  color: #555555;
}
.file-status table tbody tr:nth-child(even) {
  background: #f7f7f7;
}
.file-status table tbody tr td {
  border-right: solid 1px #d6d6d6;
  padding: 5px;
}
.file-status table tbody tr td:last-of-type {
  border-right: none;
}
.help-center {
  position: relative;
  display: flex;
  align-items: center;
  height: 65px;
  padding: 0 20px 0 10px;
}
.help-center .help-center-trigger {
  display: flex;
  align-items: center;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}
.help-center .help-center-trigger .icon {
  display: flex;
  align-items: center;
  width: 25px;
  height: 25px;
  border-radius: 100%;
  border: solid 1px #243b5f;
  background: linear-gradient(180deg, #244b66 0%, #1e3f56 100%);
  transition: all 0.5s;
}
.help-center .help-center-trigger .icon svg {
  margin: 0 auto;
  width: 9px;
}
.help-center .help-center-trigger:hover .icon {
  transform: scale(1.05);
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.help-center .help-center-trigger:hover .caret svg path {
  fill: #1e3f56;
}
.help-center .help-center-trigger .label {
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 13px;
  line-height: 1.3rem;
  font-weight: bold;
  color: #404c5d;
  margin: 0 8px 0 10px;
  white-space: nowrap;
}
.help-center .help-center-trigger .caret {
  display: flex;
  width: 11px;
  height: 15px;
  transform: rotate(90deg);
  margin-left: 5px;
  transition: all 0.3s;
}
.help-center .help-center-trigger .caret.open {
  transform: rotate(-90deg);
  margin-top: -3px;
}
.help-center .help-center-trigger .caret svg path {
  fill: #2c72a6;
}
.help-center-dropdown-clip {
  position: absolute;
  top: 65px;
  right: -30px;
  width: 248px;
  padding: 0 10px 10px 10px;
  clip-path: inset(0 0 0 0);
  pointer-events: none;
  visibility: hidden;
  transition: visibility 0s 0.3s;
  z-index: 9999;
}
.help-center-dropdown-clip.open {
  pointer-events: auto;
  visibility: visible;
  transition-delay: 0s;
}
.help-center-dropdown-clip.open .help-center-dropdown {
  transform: translateY(0);
  opacity: 1;
}
.help-center-dropdown {
  width: 228px;
  background: white;
  border-radius: 0 0 0 8px;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  overflow: hidden;
}
.help-center-dropdown .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 35px;
  padding: 0 9px 0 16px;
  background: linear-gradient(to right, #2c72a6, #38a0a1);
}
.help-center-dropdown .header h2 {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 16px;
  line-height: 1.6rem;
  font-weight: 500;
  color: white;
  margin: 0;
}
.help-center-dropdown .header .close {
  display: flex;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  transition: all 0.5s;
}
.help-center-dropdown .header .close:hover {
  transform: scale(1.05);
}
.help-center-dropdown .menu {
  list-style: outside none none;
  margin: 0;
  padding: 0;
}
.help-center-dropdown .menu li {
  border-bottom: 1px solid #d6d6d6;
}
.help-center-dropdown .menu li:last-child {
  border-bottom: none;
}
.help-center-dropdown .menu button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 15px 16px;
  border: none;
  background: none;
  text-align: left;
  cursor: pointer;
}
.help-center-dropdown .menu button:hover {
  background: #f5f7fa;
}
.help-center-dropdown .menu .copy {
  display: block;
}
.help-center-dropdown .menu .title {
  display: block;
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 13px;
  line-height: 1.3rem;
  font-weight: bold;
  color: #08264a;
  margin-bottom: 6px;
}
.help-center-dropdown .menu .description {
  display: block;
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 16px;
  line-height: 1.6rem;
  color: #585858;
}
.help-center-dropdown .menu .chevron {
  display: flex;
  flex-shrink: 0;
  width: 6px;
  height: 11px;
  margin-left: 12px;
}
.help-center-dropdown .menu .chevron svg path {
  fill: #2c72a6;
}
.help-center-flyout-container {
  height: 0;
  pointer-events: none;
}
.help-center-flyout-container > * {
  pointer-events: auto;
}
.help-center-flyout {
  position: fixed;
  top: 65px;
  right: 0;
  bottom: 0;
  width: 338px;
  background: white;
  box-shadow: -2px 0 5px 0 rgba(0, 0, 0, 0.2);
  z-index: 9999;
}
.help-center-flyout .header {
  display: flex;
  align-items: center;
  height: 50px;
  padding: 0 14px 0 21px;
  background: linear-gradient(to right, #2c72a6, #38a0a1);
}
.help-center-flyout .header .icon {
  display: flex;
  width: 25px;
  height: 18px;
  margin-right: 8px;
}
.help-center-flyout .header h2 {
  font-size: 19px;
  font-size: 1.9rem;
  line-height: 19px;
  line-height: 1.9rem;
  font-weight: bold;
  color: white;
  margin: 0;
}
.help-center-flyout .header .close {
  display: flex;
  margin-left: auto;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  transition: all 0.5s;
}
.help-center-flyout .header .close svg {
  width: 24px;
  height: 24px;
}
.help-center-flyout .header .close:hover {
  transform: scale(1.05);
}
.help-center-flyout .content {
  height: calc(100% - 50px);
  padding: 20px;
  overflow-y: auto;
}
.help-center-flyout .content h3 {
  font-size: 19px;
  font-size: 1.9rem;
  line-height: 22px;
  line-height: 2.2rem;
  font-weight: 400;
  color: #08264a;
  border-bottom: 1px solid #d6d6d6;
  margin: 0 0 16px 0;
  padding-bottom: 12px;
}
.help-center-flyout .content p {
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 18px;
  line-height: 1.8rem;
  color: #626161;
  margin: 0 0 18px 0;
}
.help-center-flyout .content .training-graphic {
  display: block;
  width: 100%;
  border-radius: 6px;
  margin-bottom: 20px;
}
.help-center-flyout .content .action-btn {
  display: table;
  font-size: 14px;
  font-size: 1.4rem;
  color: white;
  background: linear-gradient(90deg, #244b66 0%, #1e3f56 100%);
  border: solid 1px #81a1b8;
  border-radius: 14px;
  text-align: center;
  margin: 0 auto;
  transition: all 0.5s;
  padding: 7px 15px 7px 15px;
}
.help-center-flyout .content .action-btn:hover {
  transform: scale(1.05);
  opacity: 0.9;
}
.help-center-flyout .content .whats-new {
  list-style: outside none none;
  margin: 0;
  padding: 0;
}
.help-center-flyout .content .whats-new .whats-new-item {
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: solid 1px #d6d6d6;
}
.help-center-flyout .content .whats-new .whats-new-item:last-child {
  border-bottom: none;
}
.ui-modal.help-center-modal .content {
  padding: 0;
  min-width: 920px;
  text-align: left;
  overflow: hidden;
}
.ui-modal.help-center-modal .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 15px 5px 15px;
  background: linear-gradient(to right, #2c72a6, #38a0a1);
}
.ui-modal.help-center-modal .header .title-container {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ui-modal.help-center-modal .header .title-container h2 {
  font-size: 20px;
  font-size: 2rem;
  font-weight: 400;
  color: white;
  margin: 0;
}
.ui-modal.help-center-modal .header .close {
  display: flex;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  transition: all 0.5s;
}
.ui-modal.help-center-modal .header .close svg {
  width: 24px;
  height: 24px;
}
.ui-modal.help-center-modal .header .close:hover {
  transform: scale(1.05);
}
.ui-modal.help-center-modal .body {
  max-height: calc(100vh - 200px);
  background: #fcfcfc;
  overflow-y: auto;
  padding: 20px;
}
div.modal .content .contact-form {
  background: #fff;
  border: solid 1px #d6d6d6;
  border-radius: 14px;
  padding: 20px;
}
div.modal .content .contact-form .field-group {
  padding: 0 40px;
  padding: 0 20px;
  box-sizing: border-box;
  background: #f5f7fa;
  border-radius: 14px;
  border: solid 1px #2c72a6;
  margin-bottom: 20px;
}
div.modal .content .contact-form .two-column {
  display: flex;
  flex-wrap: nowrap;
  gap: 32px;
}
div.modal .content .contact-form .two-column .field {
  flex: 1 1;
  max-width: 50%;
  overflow-x: hidden;
}
div.modal .content .contact-form .field {
  padding: 16px 40px;
  box-sizing: border-box;
}
div.modal .content .contact-form .field.file-upload {
  padding-top: 0;
}
div.modal .content .contact-form .field .field-label {
  display: block;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  color: #555555;
  padding-bottom: 10px;
}
div.modal .content .contact-form .field .required {
  font-size: 17px;
  font-size: 1.7rem;
  font-weight: bold;
  color: #ff0000;
  margin-left: 2px;
}
div.modal .content .contact-form .field-group .field,
div.modal .content .contact-form .two-column .field {
  padding-left: 0;
  padding-right: 0;
}
div.modal .content .contact-form input[type="text"],
div.modal .content .contact-form textarea,
div.modal .content .contact-form select {
  width: 100%;
  font-size: 14px;
  font-size: 1.4rem;
  color: #555555;
  background: white;
  border: 1px solid #81a1b8;
  border-radius: 14px;
  box-sizing: border-box;
  transition: 0.3s;
}
div.modal .content .contact-form input[type="text"]::placeholder,
div.modal .content .contact-form textarea::placeholder,
div.modal .content .contact-form select::placeholder {
  color: #252c3e;
  opacity: 0.5;
}
div.modal .content .contact-form input[type="text"]:focus,
div.modal .content .contact-form textarea:focus,
div.modal .content .contact-form select:focus {
  border: 1px solid #2c72a6;
  box-shadow: 0 0 2px 0 #2c72a6;
  outline: none;
}
div.modal .content .contact-form input[type="text"] {
  height: 30px;
  padding: 11px 10px 10px 10px;
}
div.modal .content .contact-form textarea {
  height: 100px;
  min-height: 100px;
  padding: 10px;
}
div.modal .content .contact-form select {
  height: 30px;
  padding: 5px 10px 5px 10px;
  font-size: 14px;
  font-size: 1.4rem;
  vertical-align: middle;
  color: #555555;
}
div.modal .content .contact-form input[type="file"] {
  width: 100%;
  font-size: 15px;
  font-size: 1.5rem;
  color: #252c3e;
  border: 1px dashed #81a1b8;
  border-radius: 14px;
  padding: 12px;
  box-sizing: border-box;
  outline: none;
  background: #fff;
}
div.modal .content .contact-form .instruction {
  clear: both;
  font-size: 12px;
  font-size: 1.2rem;
  color: #555555;
  padding: 10px 0 0 0 !important;
  margin: 0;
}
div.modal .content .contact-form .error {
  font-size: 15px;
  font-size: 1.5rem;
  color: #f41033;
  padding-top: 10px;
}
div.modal .content .contact-form .confirmation {
  padding-top: 20px;
}
div.modal .content .contact-form .confirmation p {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 22px;
  line-height: 2.2rem;
  color: #555555;
  text-align: center;
  padding: 20px 100px;
}
div.modal .content .contact-form .confirmation svg {
  margin: 0 auto;
  display: block;
}
div.modal .content .contact-form .confirmation h2 {
  font-size: 26px;
  font-size: 2.6rem;
  margin: 0 auto;
  display: table;
  font-weight: 400;
  color: #555555;
  margin-top: 20px;
  border-bottom: solid 1px #2c72a7;
  padding: 0 15px 20px 15px;
}
div.modal .content .contact-form form.submitted {
  display: none;
}
div.modal .content .contact-form .footer {
  padding: 0px 25px 0px 25px;
  text-align: center;
}
div.modal .content .contact-form .submit {
  font-size: 16px;
  font-size: 1.6rem;
  align-items: center;
  gap: 7px;
  display: flex;
  color: white;
  background: linear-gradient(180deg, #244b66 0%, #1e3f56 100%);
  border: 1px solid transparent;
  border-radius: 14px;
  padding: 5px 20px 5px 20px;
  margin: 0 auto;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.33, 0.04, 0.63, 0.93);
}
div.modal .content .contact-form .submit:hover {
  transform: scale(1.03);
  opacity: 0.9;
}
div.modal .content .contact-form .submit:disabled {
  cursor: default;
  opacity: 0.6;
  transform: none;
}
div.modal .content .contact-form .response-frame {
  display: none;
}
@media print {
  .main-nav,
  .notification-wrapper,
  .highcharts-button,
  main.main-content > header {
    display: none;
  }
  main.main-content {
    left: 0;
  }
  main.main-content > div {
    top: 0;
    width: 100%;
  }
  main.main-content .page-content {
    overflow: visible;
    margin-top: 35px;
  }
  main.main-content .highcharts-container {
    height: auto !important;
  }
  main.main-content .highcharts-container svg {
    padding-top: 0;
    height: auto !important;
  }
  .highcharts-container {
    height: 500px !important;
  }
  .highcharts-container svg {
    padding-top: 50px;
    height: 500px !important;
  }
  .highcharts-title {
    transform: translateY(-30px) !important;
  }
  .insight-visualization-wrapper .insight-section-header {
    display: none !important;
  }
  .route-insight-dashboard-view main.main-content {
    zoom: 0.6;
    -moz-transform: scale(0.6);
    -moz-transform-origin: 0 0;
  }
  .route-insight-dashboard-view main.main-content header.content-header {
    background: transparent;
  }
  .route-insight-dashboard-view .chart-actions {
    display: none;
  }
  .route-insight-dashboard-view .insight-dashboard-controls > div,
  .route-insight-dashboard-view .insight-dashboard-controls button {
    display: none;
  }
  .route-insight-dashboard-view .insight-dashboard-controls select {
    background: transparent;
    border: none;
    position: absolute !important;
    top: 30px;
    left: 0;
    padding-left: 300px;
    font-size: 25px !important;
  }
  .route-insight-dashboard-view .widget-custom .widget-header-base {
    -webkit-print-color-adjust: exact;
  }
  .route-insight-dashboard-view .widget-custom .widget-header-base h1 {
    line-height: 10px;
    line-height: 1rem;
  }
  .route-insight-dashboard-view .widget-custom .widget-header-base .icon-wrapper {
    display: none;
  }
  .route-insight-dashboard-view .widget-custom .widget-content {
    -webkit-print-color-adjust: exact;
  }
  .route-insight-dashboard-view .widget-custom .widget-content td,
  .route-insight-dashboard-view .widget-custom .widget-content th {
    padding: 3px 5px !important;
    font-size: 10px !important;
  }
  .route-insight-dashboard-view .widget-custom .highcharts-container {
    width: 100% !important;
  }
}
