
/* BUTTONS */

.btn {
    -webkit-border-radius: 1;
    -moz-border-radius: 1;
    border-radius: 1px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 14px;
    text-decoration: none;
    padding: 10px 35px 9px 35px;
    outline: none;
}

.btn.btn-small {
    -webkit-border-radius: 1;
    -moz-border-radius: 1;
    border-radius: 1px;
    padding: 6px 30px 6px 30px;
}

/* PLAIN/SECONDARY BUTTONS */

.btn-plain, .btn-secondary {
    border-style: none;
    position: relative; /* support for inner border */
}

.btn.btn-plain, .btn.btn-plain label,
.btn.btn-secondary, .btn.btn-secondary label {
    color: var(--c-text);
    border-color: var(--c-border);
}

.btn.btn-plain.on-dark-bg, .btn.btn-plain.on-dark-bg label,
.btn.btn-secondary.on-dark-bg, .btn.btn-secondary.on-dark-bg label {
    color: var(--c-border);
}

.btn-plain:hover, .btn-secondary:hover {
    color: var(--c-text-dark);
    background: var(--c-hover-background);
}

.btn-plain.on-dark-bg:hover, .btn-secondary.on-dark-bg:hover {
    color: var(--c-text-dark);
    background: var(--c-hover-background);
}

.btn.btn-plain.disabled, .btn-plain.disabled:hover,
.btn.btn-secondary.disabled, .btn-secondary.disabled:hover {
    color: var(--c-text-disabled);
    border-color: var(--c-text-disabled);
    background: initial;
}

.btn.btn-plain.on-dark-bg.disabled, .btn-plain.on-dark-bg.disabled:hover,
.btn.btn-secondary.on-dark-bg.disabled, .btn-secondary.on-dark-bg.disabled:hover {
    color: var(--c-text);
    border-color: var(--c-text);
    background: initial;
}

/* inner border, adapted from http://stackoverflow.com/questions/5394116/outline-radius#11426967 */
.btn-plain:after, .btn-secondary:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 1px;
    border: 1px solid #b6babd;
}

.btn-plain.disabled:after,
.btn-secondary.disabled:after {
    border: 1px solid var(--c-border);
}

/* DEFAULT BUTTONS - Also known as "Links" */

.btn.btn-default, btn.btn-tertiary {
    background-color: inherit;
    color: var(--c-secondary);
    border-style: none;
}

.btn.btn-default:hover, .btn.btn-tertiary:hover {
	text-decoration: none;
}

.btn.btn-default.disabled, .btn.btn-tertiary.disabled {
    color: var(--c-text-disabled);
}

.btn.btn-tertiary.on-dark-bg {
  color: var(--c-header-link);
}

.btn.btn-tertiary.on-dark-bg:hover {
  color: var(--c-header-link-hover);
}

.btn.btn-tertiary.on-dark-bg:active {
  color: var(--c-header-link-active);
}

.btn.btn-tertiary.on-dark-bg.disabled {
  color: var(--c-text-disabled-on-dark);
}

/* PRIMARY BUTTONS */

.btn.btn-primary {
    color: var(--c-white);
    background: var(--c-secondary);
}

.btn.btn-primary:hover, .btn-primary:active,
.btn-primary > :active, .btn-primary:active:hover,
.btn-primary > :active:hover {
    color: var(--c-white);
    background: var(--c-secondary-dark);
}

.btn.btn-primary.disabled {
    background: var(--c-secondary-disabled);
}

.btn.btn-primary.on-dark-bg.disabled {
    background: var(--c-secondary-disabled-on-dark);
    color: var(--c-text-disabled-on-dark);
}

.btn.btn-primary.on-dark-bg.sandbox {
    color: var(--c-secondary);
    background: var(--c-white);
}

.btn.btn-primary.on-dark-bg.sandbox:hover {
    color: var(--c-secondary-dark);
    background: var(--c-grey-5);
}

.btn.btn-primary.on-dark-bg.sandbox.disabled {
    background: var(--c-grey-3);
    color: var(--c-text-disabled-on-dark);
}

/* DANGER BUTTONS */

.btn.btn-danger {
    color: var(--c-white);
    background: var(--c-error);
    border-style: none;
}

.btn-danger:active, .btn-danger > :active,
.btn-danger:active:hover, .btn-danger > :active:hover,
.btn-danger:hover, .btn-danger > label:hover {
	color: var(--c-white) !important;
    background: var(--c-error-dark);
}

.btn.btn-danger.disabled {
    background: var(--c-error-disabled);
}

/* we're doing weird things with the radio button group, let's clean it up */

.radio.btn {
    /* background-color: teal; */
    padding-top: 12px;
    background: none;
    border: none;
    padding: 10px 0px 10px 0px;
    margin: 2px 2px 2px 2px;
}

.radio.btn:hover {
    background: none;
    box-shadow: none;
}

.radio.btn span:active {
    background: none;
}

.radio.btn > label, .radio.btn:hover > label, .radio.btn:hover > label:hover {
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    border-style: solid;
    border-width: 1px;
    padding: 6px 18px 6px 18px;
    margin-left: -1px; /* so the left-right borders don't double-up in thickness */
}

.radio.btn > label:first-child {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.radio.btn > label:last-child {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.radio.btn > label > input {
    display: none;
}

/* special feature: .default and .active will show/hide according to selected state */
.radio.btn .selectable .default {
    display: inherit;
}

.radio.btn .selectable .active {
    display: none;
}

.radio.btn .selectable.selected .default {
    display: none;
}

.radio.btn .selectable.selected .active {
    display: inherit;
}

input[type="checkbox"] {
    cursor: pointer;
}

/* Material Design Style Checkbox, adapted from https://codepen.io/anon/pen/pEKrxP */

/* Hide normal checkbox */
input[type="checkbox"].material {
    opacity: 0;
    position: absolute;
}

/* Normal Track */
input[type="checkbox"].material + div {
    vertical-align: bottom;
    width: 40px; height: 20px;
    border: 0px solid rgba(0,0,0,.4);
    border-radius: 999px;
    background-color: #d4d5d6;
    -webkit-transition-duration: .4s;
    -webkit-transition-property: background-color, box-shadow;
    box-shadow: inset 0 0 0 0px rgba(0,0,0,0.4);
    margin: 2px;
    cursor: pointer;
}
.material-inverted input[type="checkbox"].material + div {
    background-color: #B3B3B3;
}

.disabled input[type="checkbox"].material + div {
    background-color: #d4d5d6;
}

/* Checked Track (Blue) */
input[type="checkbox"].material:checked + div {
    width: 23px; height: 8px;
    background-position: 0 0;
    background-color: #a4c3e4;
    border: 0px solid var(--c-text);
}
.material-plain input[type="checkbox"].material:checked + div {
    background-color: #B3B3B3;
}
.material-plain.material-inverted input[type="checkbox"].material:checked + div {
    background-color: #B3B3B3;
}
.material-inverted input[type="checkbox"].material:checked + div {
    background-color: var(--c-secondary);
}

.disabled input[type="checkbox"].material:checked + div {
    background-color: #d4d5d6;
}

/* Extra Tiny Track */
input[type="checkbox"].material + div {
    width: 23px; height: 8px;
}

/* Normal Knob */
input[type="checkbox"].material + div > div {
    float: left;
    width: 18px; height: 18px;
    border-radius: inherit;
    background: #747678;
    -webkit-transition-timing-function: cubic-bezier(.54,1.85,.5,1);
    -webkit-transition-duration: 0.2s;
    -webkit-transition-property: transform, background-color, box-shadow;
    -moz-transition-timing-function: cubic-bezier(.54,1.85,.5,1);
    -moz-transition-duration: 0.4s;
    -moz-transition-property: transform, background-color;
    pointer-events: none;
    margin-top: 1px;
    margin-left: 1px;
    cursor: pointer;
}
.material-inverted input[type="checkbox"].material + div > div {
    background-color: #d4d5d6;
}

.disabled input[type="checkbox"].material + div > div {
    background: #b7bec6;
}

/* Checked Knob (Blue Style) */
input[type="checkbox"].material:checked + div > div {
    -webkit-transform: translate3d(12px, 0, 0);
    -moz-transform: translate3d(12px, 0, 0);
    background-color: var(--c-secondary);
    width: 14px; height: 14px;
    margin-top: -3px;
    margin-left: -1px;
}

.material-plain input[type="checkbox"].material:checked + div > div {
    background-color: #747678;
}

.material-inverted input[type="checkbox"].material:checked + div > div {
    background-color: #a4c3e4;
}

.material-plain.material-inverted input[type="checkbox"].material:checked + div > div {
    background-color: #d4d5d6;
}

.disabled input[type="checkbox"].material:checked + div > div {
    background: #a4c3e4;
}

/* Extra Tiny Knob */
input[type="checkbox"].material + div > div {
    width: 14px; height: 14px;
    margin-top: -3px;
    margin-left: -1px;
}

/* other misc components */

.simple-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.vertical-container {
    /*
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-around;
    */
}

.vertical-container > * {
    align-self: center;
}

.panel-container {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    box-sizing: border-box;
    max-height: 100%;
    visibility: hidden;
}

.panel-inner-container {
    /* when there are inner containing divs between .panel-container and .panel */
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    box-sizing: border-box;
    max-height: 100%;
}

.panel {
    box-shadow: 0px 1px 2px 0px rgba(34, 31, 32, 0.1);
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    box-sizing: border-box;
    max-height: 100%;
    visibility: initial;
}

.panel.noshadow {
    box-shadow: none;
}

.panel.more-shadow {
    box-shadow: 0px 1px 4px 0px rgba(34, 31, 32, 0.3);
}

.panel-content {
    width: 100%;
    overflow-y: overlay;
    overflow-x: hidden;
}

.activation-dialog .panel-content,
.orchestration-modal .panel-content {
  overflow-y: scroll;
  overflow-x: none;
  padding-bottom: 10px;
}

.panel-header {
    width: 100%;
}

.panel-footer {
    width: 100%;
}

input:focus {
    outline:none;
}

.hidden-links.container {
    position: relative;
}

.hidden-links.underlay {
    position: relative;
}

.hidden-links.overlay {
    visibility: hidden;
    position: absolute;
    top: 0;
    right: 0;
    padding-left: 30px;
    background: #FFFFFF; /* Old browsers */
    background: -moz-linear-gradient(left, rgba(255,255,255,0) 0%,rgba(255,255,255,0.5) 10%,rgba(255,255,255,1) 40%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%,rgba(255,255,255,0.5) 10%,rgba(255,255,255,1) 40%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, rgba(255,255,255,0) 0%,rgba(255,255,255,0.5) 10%,rgba(255,255,255,1) 40%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    transition: all 0.05s;
}

.hidden-links.overlay.shaded {
    background: #f6f6f6; /* Old browsers */
    background: -moz-linear-gradient(left, rgba(246, 246, 246,0) 0%,rgba(246, 246, 246,0.5) 10%,rgba(246, 246, 246,1) 40%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left, rgba(246, 246, 246,0) 0%,rgba(246, 246, 246,0.5) 10%,rgba(246, 246, 246,1) 40%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, rgba(246, 246, 246,0) 0%,rgba(246, 246, 246,0.5) 10%,rgba(246, 246, 246,1) 40%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

.hidden-links.overlay.active, .hidden-links.overlay:hover {
    visibility: visible;
    transition: all 0.05s;
}

/* page setup */

header {
  padding-left: 19px;
  padding-right: 19px;
}

header#header {
    background-color: rgb(52, 56, 59) !important;
}

.header-svg {
    /* punch thru the logo into the background of modal dialogs */
    position: relative;
    z-index: 110;
    opacity: 0.3;
    /* snappy fade-in/out */
    -webkit-transition: opacity 0.1s cubic-bezier(0.22, 0.61, 0.36, 1);
    -moz-transition: opacity 0.1s cubic-bezier(0.22, 0.61, 0.36, 1);
    -o-transition: opacity 0.1s cubic-bezier(0.22, 0.61, 0.36, 1);
    -ms-transition: opacity 0.1s cubic-bezier(0.22, 0.61, 0.36, 1);
    transition: opacity 0.1s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.page {
  display: flex;
}

.left-col {
    /* background-color: lightgreen;*/
    flex-grow: 2;
    margin-right: 10px;
}

.left-heading {
    /*background-color: teal;*/
    display: flex;
    height: 45px;
}

.left-heading-left {
    /*background-color: orange;*/
    flex-grow: 2;
}

.left-heading-right {
    /* background-color: pink; */
    flex-grow: 0;
}

.left-content {
    /* background-color: yellow; */
}

.right-col {
    /*background-color: green;*/
    white-space: nowrap;
    width: 330px;
    min-width: 330px;
}

.right-heading {
    /*background-color: purple;*/
    display: flex;
    justify-content: flex-end;
    height: 60px;
}

.right-content {
    background-color: white
}

.action-button-container {
    margin-top: 10px;
}

/* editor mode */

.editor-header {
    width: 100%;
    height: 100%;
    display: flex;
    text-align: left;
    align-items: center;
    justify-content: flex-start;
}

.editor-header .back-icon {
    background-color: rgba(255,255,255,0.20);
    height: 100%;
}

.editor-header .back-icon:hover {
    color: #fff !important;
    background-color: rgba(255,255,255,0.50);
}

.editor-header-title {
    padding: 0px 10px;
}

.editor-header-title.editor-header-title h1 {
    font-family: 'Roboto', sans-serif;
    color:  var(--c-white);
    font-size: 24px;
    font-weight: 300;
    margin-top: -2px;
}

.editor-header-title.editor-header-title h2 {
    font-family: 'Roboto', sans-serif;
    color: #898d90;
    font-size: 12px;
    font-weight: 400;
}

.editor-header-title.editor-header-title h3 {
    font-family: 'Roboto', sans-serif;
    color: var(--c-text-light-on-dark);
    font-size: 12px;
    font-weight: 400;
    margin-top: 2px;
}

.editor-header a.blueonhover:hover {
    text-decoration: none;
    cursor: pointer;
    color: #fff;
    background-color: rgba(255,255,255,0.12);
}

.editor-header a.blueonhover, a.blueonactive {
    color: #ccc;
    z-index: 1;
}

.editor-header .editable-text {
    /* background-color: yellow; */
    border: solid 1px rgba(0,0,0,0);
}

.editor-header .editable-text-readonly {
    /* background-color: yellow; */
    border: solid 1px rgba(0,0,0,0);
    white-space: nowrap;
}

.editor-header .editable-text:hover {
    border-color: #777;
}

.editor-header .editable-text.active {
    border-color: #bbb;
}

/* allow buttons and dropdown menus to coexist */
.editor-header .buttons {
    display: flex;
    align-items: center;
}

/* space out buttons */
.editor-header .buttons .btn {
    margin-left: 20px;
}

/* but tertiary buttons look too close when to the left primary/secondary buttons, fudge a bit.
   NOTE: placing a primary/secondary button to the left of tertiary buttons will look a bit off
         but until we can select via :first-of-class or :last-of-class there's not much we can
         cleanly do here. */
.editor-header .buttons .btn-tertiary {
    padding-left: 10px;
    padding-right: 10px;
    margin-right: 10px;
    margin-left: 5px;
}


/* data explorer widget */

.data-explorer-widget .header {
    display:flex;
    overflow-y: auto;
    padding: 0;
    margin: 20px 0 6px 0;
}

.data-explorer-widget .header > div:not(.ignore-widget-styles) {
    _background-color: pink;
    font-weight: 600;
}

.data-explorer-widget .header > div:nth-child(1) {
    _background-color: lightblue;
    padding-left: 20px;
}

.data-explorer-widget .header > div:nth-child(2):not(.ignore-widget-styles) {
    _background-color: yellow;
    margin-left: auto;
    padding-right: 30px;

}

.data-explorer-widget .row.name-row {
    _background-color: yellow;
    display: flex;
    padding: 8px 0px 8px 18px;
    border-top: solid rgba(226, 226, 226, 0.3) 1px;
    width: 331ppx; /* required to force ellipsis on large table names */
}

.data-explorer-widget .row.name-row .tree-view_arrow {
    _background-color: yellow;
    height: 15px;
    width: 15px;
    margin-left: 1px;
}

.data-explorer-widget .row.name-row .tree-view_arrow.tree-view_arrow-collapsed {
    margin-top: 0px;
    margin-left: 0px;
}

.data-explorer-widget .row.name-row a {
    margin-left: -2px;
}

.data-explorer-widget .row.name-row .tree-view_arrow-container {
    margin-top: -1px;
    margin-left: -1px;
    height: 16px;
    width: 17px;
}

.data-explorer-widget .row.name-row .row-count {
    margin-right: 30px;
    cursor: default;
}

.data-explorer-widget .row.field-row {
    _background-color: yellow;
    display: flex;
    padding: 2px 30px 2px 37px;
}

.data-explorer-widget .field-row.even {
    background-color: #F9F9F9;
}

.data-explorer-widget .field-row.last {
    margin-bottom: 12px;
}

.data-explorer-widget .field-row > :nth-child(1) {
    _background-color: yellow;
    color: var(--c-text);
}

.data-explorer-widget .field-row > :nth-child(2) {
    _background-color: pink;
    margin-left: auto;
    color: rgb(148, 155, 162);
}


/* header menu */

.menu {
  position: absolute;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
}

.menu-left {
  left: 52px;
  top: 21px;
}

.menu-right {
  right: 14px;
  top: 0px;
}

.menu li {
  display: inline-block;
  margin: 0 12px;
}

.menu a {
  color: var(--c-header-link);
}

.menu a.selected, .menu a.selected:hover {
    color: var(--c-header-link-active);
    align-items: initial;
    padding-bottom: 20px;
    border-bottom: solid var(--c-header-link-active) 3px;
}

.menu a:hover {
    padding-top: 20px;
    align-items: initial;
    border-top: 0px;
    color: var(--c-header-link-hover);
}

.menu .mobile-nagivation a:hover {
    padding-top: initial;
    border-top: initial !important;
}

.menu a:active {
    color: var(--c-header-link-hover);
}

.menu-item {
    text-transform: capitalize;
    font-family: FFMarkWebProRegular;
    font-size: 14px;
}

.menu-item-user {
  padding-left: 48px;
  margin-left: 42px !important;
}

.menu-item-user > div {
    position: absolute;
    top: -16px;
    right: 5px;
    margin-right: 20px;
}

.menu-item-user-mobile {
    padding-left: 12px;
}

.menu-item-user-mobile .user-profile-pic-blank {
    position: absolute;
    top: -7px;
    right: 16px;
}

.menu-item-user-mobile .user-profile-pic-blank .fa {
    font-size: 28px;
}


/* nav */

.main-nav .user-profile-pic {
  border-radius: 50%;
}

.main-nav .logout-overlay {
    color: white;
    background-color: black;
    position: absolute;
    border: 0.5;
    border-radius: 50%;
    text-align: center;
    padding: 25px;
    opacity: 0;
}

.main-nav .logout-overlay:hover {
    opacity: 0.5;
}

.main-nav .logout-overlay-icon {
    color: white;
    margin-top: -13px;
    margin-left: -15px;
    position: absolute;
    font-size: 30px !important;
    border: 0.5;
}

.main-nav .logout-overlay-icon:hover {
    opacity: 1;
}

.main-nav .user-profile-pic-blank .fa {
    color: var(--c-header-link);
}

.main-nav .user-profile-pic-blank .fa:hover {
    color: #EAA221 !important;
}

.main-nav .sub-menu {
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    font-weight: normal;
    color: var(--c-text);
    padding: 6px 0px;
    position: absolute;
    top: 62px;
    left: 0px;
    background-color: white;
    display: flex;
    flex-direction: row;
    width: 100%;

    /* maybe? */
    box-shadow: 0px 1px 2px 0px rgba(34, 31, 32, 0.05);
}

.main-nav .sub-menu-item {
    padding: 5px;
}

.main-nav .sub-menu-item:first-child {
    padding-left: 20px;
}

.main-nav .sub-menu-item.info {
    color: #B2B2B2;
}

.main-nav .sub-menu-item a.blueonhover {
    color: #33383b;
}

.main-nav .sub-menu-item a.blueonhover:hover {
    color: var(--c-secondary);
}

.main-nav .sub-menu-item a.blueonhover.disabled, .sub-menu-item a.blueonhover.disabled:hover {
    color: #808487;
}

.main-nav .sub-menu-item a.active {
    font-weight: bold;
}

.main-nav {
    height: 38px;
    padding-left: 19px;
    padding-top: 12px;
    padding-bottom: 12px;
    font-size: 14px;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 50;
}

.main-nav .wordmark {
    display: inline-block;
}

.main-nav .wordmark img {
    max-height: 32px;
}

.main-nav .wordmark .amperity {
    height: 25px;
    padding-bottom: 4px;
}

.main-nav .wordmark .alaska,
.main-nav .wordmark .cyberdyne {
  height: 30px;
}

/* notifications */

.notifications-popup {
    visibility: hidden;
    position: fixed;
    right: 6px;
    top: 58px;
    padding-bottom: 73px;
    width: 250px;
    z-index: 999;
}

notifications-popup .panel {
    visibility: inherit;
}

.notifications-popup .panel-header {
    background-color: white;
    padding: 12px 0;
    border-bottom-color: rgb(226, 226, 226);
    border-bottom-style: solid;
    border-bottom-width: 2px;
}

.notifications-popup .panel-header div:first-child {
    padding-left: 12px;
}

.notifications-popup .panel-header div:last-child {
    padding-right: 12px;
}

.notifications-popup-pointythingy {
    visibility: hidden;
    position: fixed;
    background-color: white;
    width: 30px;
    height: 30px;
    top: 32px;
    right: 103px;
    -ms-transform: rotate(45deg) translate(11px, 10px); /* IE 9 */
    -webkit-transform: rotate(45deg) translate(11px, 10px); /* Chrome, Safari, Opera */
    transform: rotate(45deg) translate(11px, 10px); /*  scale(1,2) skewX(45deg); */
}

/* dialog */

.dialog {
    opacity: 0;
    visibility: visible;
    position: fixed;
    z-index: 90;
    top: 0;
    left: 0;
    height: 100%;
    /* height: 5234px; */
    width: 100%;
    /* snappy fade-in/out */
    -webkit-transition: opacity 0.15s cubic-bezier(0.22, 0.61, 0.36, 1);
    -moz-transition: opacity 0.15s cubic-bezier(0.22, 0.61, 0.36, 1);
    -o-transition: opacity 0.15s cubic-bezier(0.22, 0.61, 0.36, 1);
    -ms-transition: opacity 0.15s cubic-bezier(0.22, 0.61, 0.36, 1);
    transition: opacity 0.15s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.dialog.confirm {
  z-index: 91 !important;
}

.dialog-bg {
    background-color: rgb(52, 56, 59);
    opacity: 0.8;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 80;
    color: white;
    margin-top: auto;
}

.dialog-content-container {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    opacity: 1;
    z-index: 89;
    padding-bottom: 52px;
}

.dialog-content-box {
    background-color: white;
    margin: 20px;
    margin-bottom: 80px;
    color: var(--c-text);
    box-shadow: 0px 6px 10px 0px rgba(35, 31, 32, 0.3);

    /* special treatment to position the content fixed and centered inside the container,
       making sure height is constrained. otherwise, as of chrome v76 overflow doesn't
       kick in when the content grows bigger than the container */
    position: fixed;
    top: 52px;
    left: calc(50% - 20px);
    transform: translateX(-50%);
    max-height: calc(100% - 134px);
}

/* special treatment not required for full-screen dialog dialog-content-box'es  */
.full-screen .dialog-content-box {
    position: initial;
    top: initial;
    left: initial;
    transform: initial;
    max-height: initial;
}

.dialog-content-box .blueonhover {
    color: var(--c-text);
}

.dialog-content-box .blueonhover:hover {
    color: var(--c-secondary);
}

.dialog-content-box-padding {
    padding: 20px;
}


.dialog-close:hover {
    opacity: 1 !important;
    transition: all 0.2s;
}

.dialog-close {
    opacity: 0.5;
    color: #898d90;
    font-size: 16px;
}

.dialog-bottom-pane {
    height: 70px;
    margin-left: -20px;
    margin-right: -20px;
    margin-bottom: -20px;
    margin-top: -0px;
    background-color: #f7f7f7;
}


/* large (full-screen) dialog */

.dialogs.full-screen .dialog-content-container {
    top: 0px;
    padding-bottom: initial;
    height: 100%
}

.dialogs.full-screen .dialog-content-box {
    margin-bottom: 20px;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
}

.dialogs.full-screen .dialog-close-container {
    display: none;
}

.dialogs.full-screen .dialog-content {
    height: 100%
}

.dialogs.full-screen .panel-header {
    _background-color: pink;
    width: 100%;
    z-index: 100;
    _height: 100%;
    border-bottom: 1px solid rgb(221, 221, 221);
    position: relative;
}

.dialogs.full-screen .panel-header > div {
    _background-color: yellow;
    padding: 15px 20px;
    _position: relative;
}

.dialogs.full-screen .panel-header .right-header {
    _background-color: pink;
    z-index: 1;
}

.dialogs.full-screen .dialog-close-container {
    _background-color: red !important;
    position: absolute;
    top: 0px;
    right: 0px;
    padding: 0px !important;
}


/* charts */

.c3 {
    background-color: white;
}

/* sub-chart axis looks like ass! */
.c3-axis-x {
    visibility: hidden;
}

.c3-xgrid-line line {
    stroke-dasharray: 0 !important;
    /* stroke: #eef2f5 !important; CAN'T GET THE ZINDEX WORKING, LINES ARE DRAWN OVER THE GRAPH LINES!!! */
    /* z-index: 0 !important; this doesnt seem to work... */
    opacity: 0.1 !important;
    stroke: #727578 !important;
}

.c3-xgrid-line text {
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    font-weight: 400;
    text-align: left;
    fill: var(--c-text) !important;
}

.c3-ygrid-line line {
    stroke: #CBCED1 !important;
}

.c3-ygrid-line text {
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    font-weight: 400;
    text-align: left;
    fill: var(--c-text) !important;
}

.c3-axis-x .domain {
    visibility: hidden;
    stroke: #ADAEB0 !important;
    margin-top: -10px;
    _transform: scalex(0.98) translatex(10px); /* need to fudge this specifically */
}

.c3-axis-y .domain {
    visibility: hidden;
    _stroke: #ADAEB0 !important;
    _margin-top: -10px;
    _transform: scalex(0.98) translatex(10px); /* need to fudge this specifically */
}

.c3-axis-x .tick line {
    visibility: hidden;
    stroke: #ADAEB0 !important;
}

.c3-axis-y .tick line {
    _visibility: hidden;
    stroke: none !important;
}

.c3-axis-x .tick text {
    font-family: 'Roboto', sans-serif;
    font-size: 12px;/* Approximation due to font substitution */
    font-weight: 400;
    _text-align: right;
    fill: var(--c-text) !important;
}

.c3-axis-y .tick text {
    font-family: 'Roboto', sans-serif;
    font-size: 12px;/* Approximation due to font substitution */
    font-weight: 400;
    _text-align: right;
    fill: var(--c-text) !important;
    transform: translateX(6px);
}

.c3-axis-y-label {
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    font-weight: 400;
    fill: var(--c-text) !important;
    text-anchor: bottom !important;
    transform: translateX(-54px) translateY(62px) rotate(-90deg);
}

.c3-shape.c3-line {
    stroke-width: 2px;
}

/* adjust first tick label NOT BAR CHART */
.bar-chart .c3-axis-x .tick:first-of-type text {
    _fill: red !important;
    transform: translatex(0px);
}
.c3-axis-x .tick:first-of-type text{
    _fill: purple !important;
    transform: translatex(13px);
}
.c3-axis-x .tick:first-of-type line {
    _visibility: hidden;
}

/* adjust last tick label NOT BAR CHART */
.bar-chart .c3-axis-x .tick:last-of-type text {
    _fill: red !important;
    _visibility: hidden;
    transform: translatex(0px);
}
.c3-axis-x .tick:last-of-type text {
    _fill: blue !important;
    _visibility: hidden;
    transform: translatex(-14px);
}
.c3-axis-x .tick:nth-last-of-type(2) text {
    _fill: blue !important;
    _visibility: hidden;
}
.c3-axis-x .tick:last-of-type line {
    _visibility: hidden;
}

/* don't show 0 tick text */
.c3-axis-y .tick:first-of-type text {
    _fill: red !important;
    _visibility: hidden;
}
/* y u no work?!
.c3-chart-line {
    opacity: 1 !important;
    z-index: 99 !important;
}
*/

.c3-xgrid, .c3-ygrid {
    stroke: #CBCED1 !important;
    stroke-dasharray: 0, 0 !important;
}

.c3-legend-item.c3-legend-item {
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    font-weight: 400;
    cursor: inherit !important;
    fill: var(--c-text);
    padding-top: 123px;
}

.pie-chart .c3-chart-arc path {
    stroke: none;
}


/* grids */

.grid {
    /* background-color: red; */
    background-color: white;
    border-width: 1px; /* CONSIDER 1px? */
}

.grid-cell {
    /* background-color: red; */
    border-bottom-color: #e2e2e2;
    border-bottom-style: solid;
    border-bottom-width: 1px;
}

.grid-row:last-child .grid-cell, .grid-row.last-visible .grid-cell {
    border-bottom-style: none;
}

.grid-footing {
    /* background-color: red; */
    border-top-color: #e2e2e2;
    border-top-style: solid;
    border-top-width: 1px;
}

.grid-row.active {
    background-color: #f8f8f8;
    transition: all 0.05s;
}

.grid-header.active {
    background-color: #f8f8f8;
    transition: all 0.05s;
}

.grid.active {
    /* background-color: red; */
    /*
    border-color: #e2e2e2;
    border-style: solid;
    border-width: 1px;
    */
}

.highlight-pii .pii {
  background-color: red !important;
}

/*
.grid-row.active.selected {
    background-color: red;
}
*/

/*
.grid.expandable .grid-row.selected {
    background-color: initial;
    transition: all 0.1s;
}

.grid-row.selected {
    background-color: initial;
    transition: all 0.1s;
}
*/
.grid-row.selected > .grid-cell {
}

.grid-row.selected:last-child  > .grid-cell {
    border-bottom-style: none;
}

.grid-cell:first-child {
    /* background-color: blue; */
    padding-left: 8px;
}

.grid-cell:last-child {
    /* background-color: blue; */
    padding-right: 8px;
}

.grid-heading {
    /* background-color: red; */
    border-bottom-color: #e2e2e2;
    border-bottom-style: solid;
    border-bottom-width: 2px;
    padding-top: 10px;
    padding-bottom: 10px;
}

/*
.grid-heading.sorted {
    border-bottom-color: #cccccc;
}
*/

.grid-heading:first-child {
    /* background-color: red; */
    padding-left: 8px;
}

.grid-heading:last-child {
    /* background-color: red; */
    padding-right: 8px;
}

.grid-heading-action-icon {
    text-align: left;
    justify-content: flex-start;
    padding-left: 2px;
}

.grid-heading-action-icon.active {
    opacity: 1 !important;
    transition: all 0.2s;
}

/* disable unless doing big-grid */
.grid-cell.left-bar, .grid-heading.left-bar  {
    /* background-color: orange !important; */
    padding: 1px !important;
    width: 1px !important;
    max-width: 1px !important;
    min-width: 1px !important;
}


/* grid table style (wider, more padding) */

.grid.grid-table {
    /* background-color: yellow; */
}

.grid-table .grid-cell, .grid-table .grid-heading, .grid-table .grid-footing {
    padding: 10px;
}

.grid-table .grid-cell:nth-child(2), .grid-table .grid-heading:nth-child(2), .grid-table .grid-footing:nth-child(2) {
    padding-left: 10px; /* left-bar is 2px wide */
}

.grid-table .grid-cell:last-child, .grid-table .grid-heading:last-child, .grid-table .grid-footing:last-child {
    padding-right: 12px;
}

.grid-table .grid-heading.left-bar {
    padding: 1px !important;
}

.grid-table .grid-cell.left-bar {
    padding: 1px !important;
}

.grid-table .grid-row.active .grid-cell.left-bar {
    background-color: #e2e2e2;
}

.grid-table .grid-row.selected .grid-cell.left-bar,
.grid-table .grid-row.expanded .grid-cell.left-bar,
.grid-table .grid-row.expanded.active .grid-cell.left-bar {
    background-color: #8EC741;
    border-bottom-color: #8EC741 !important;
}

.grid-table .grid-row.next-selected .grid-cell.left-bar {
    border-bottom-color: #8EC741 !important;
}

/* don't highlight expanded rows */
.grid-table .grid-row.expanded.active.selected {
    background-color: initial !important;
}

.grid-table .grid-cell.expander.expander.expander {
    padding-left: 8px !important;
    padding-right: 0px !important;
    width: 1% !important;
    min-width: 14px !important;
    max-width: 14px !important;
    font-size: 10px;
    text-align: center;
    _background-color: pink;
}
/* bigger hot spot for the expand/collapse actuator */
.grid-table .grid-cell.expander.expander.expander i {
    padding: 2px 2px;
    color: var(--c-text);
}

.grid-table .grid-cell.expander.expander.expander i.blueonhover:hover {
    color: var(--c-secondary);
}

.grid-table .grid-cell.expander.expander.expander i.disabled,
.grid-table .grid-row.active .grid-cell.expander.expander.expander i.disabled {
    /* color: #e2e2e2; */
    display: none;
}

.grid .grid-row.active .blueonactive .action-popup-menu .actuator {
    color: var(--c-secondary) !important;
}

.grid-row.active .blueonactive, .grid-row.active .blueonactive a,
.blueonhover:hover, :hover > .blueonparenthover {
  text-decoration: none;
  cursor: pointer;
  color:  var(--c-secondary);
  transition: all 0.1s !important;
}

.grid-row.active .blueonactive.stopfuckingaroundcssitotallymeanit
.blueonparenthover.stopfuckingaroundcssitotallymeanit {
  text-decoration: none !important;
  cursor: pointer !important;
  color:  var(--c-secondary) !important;
}

.grid-row.active .blueonactive.disabled:hover {
  cursor: not-allowed;
  color:  #33383b;
}


/* new grids */

.grid2 {
    /* background-color: red; */
    background-color: white;
    border-width: 1px; /* CONSIDER 1px? */
}

.grid2 .grid-cell {
    /* background-color: red; */
    border-bottom-color: #e2e2e2;
    border-bottom-style: solid;
    border-bottom-width: 1px;
    padding: 10px;
}

.grid2 .grid-row:last-child .grid2 .grid-cell, .grid2 .grid-row.last-visible .grid2 .grid-cell {
    border-bottom-style: none;
}

.grid2 .grid-footing {
    /* background-color: red; */
    border-top-color: #e2e2e2;
    border-top-style: solid;
    border-top-width: 1px;
    padding: 10px;
}

.grid2 .grid-row.active {
    background-color: #f8f8f8;
    transition: all 0.05s;
}

.grid2 .grid-header.active {
    background-color: #f8f8f8;
    transition: all 0.05s;
}

.grid2 .grid-row.selected:last-child  > .grid2 .grid-cell {
    border-bottom-style: none;
}

.grid2 .grid-heading {
    /* background-color: red; */
    border-bottom-color: #e2e2e2;
    border-bottom-style: solid;
    border-bottom-width: 2px;
    padding: 10px;
}

.grid2 .grid-heading-action-icon {
    text-align: left;
    justify-content: flex-start;
    padding-left: 2px;
}

.grid2 .grid-heading-action-icon.active {
    opacity: 1 !important;
    transition: all 0.2s;
}

/* hover left-bar effect via padding */

.grid2 .grid-cell:first-child, .grid2 .grid-heading:first-child, .grid2 .grid-footing:first-child {
    padding-left: 12px;
    /* background: yellow; */
}

.grid2.left-bar-row-hover .grid-row.selected .grid-cell:first-child,
.grid2.left-bar-row-hover .grid-row.parent-selected .grid-cell:first-child,
.grid2.left-bar-row-hover .grid-row.active .grid-cell:first-child,
.grid2.left-bar-row-hover .grid-row.selected.expanded + .grid-row .grid-cell:first-child {
    padding-left: 9px;
    border-left: 3px solid #e2e2e2;
    /* background: pink; */
}

.grid2.left-bar-row-hover .grid-row.selected .grid-cell:first-child,
.grid2.left-bar-row-hover .grid-row.selected.expanded + .grid-row .grid-cell:first-child,
.grid2.left-bar-row-hover .grid-row.parent-selected.parent-expanded .grid-cell:first-child {
    border-left-color: rgb(164, 195, 228);
}

.grid2 .grid-cell:last-child, .grid2 .grid-heading:last-child, .grid2 .grid-footing:last-child {
    padding-right: 12px;
}

.grid2 .grid-heading.left-bar {
    padding: 1px !important;
}

.grid2 .grid-cell.left-bar {
    padding: 1px !important;
}

.grid2 .grid-row.parent-selected {
    background: #f8f8f8;
}

.grid2 .grid-row.selected {
    background: #e2e2e2;
}


/* styles for hierachical rows */

.grid2 .grid-cell.expander {
    padding-left: 8px !important;
    padding-right: 0px !important;
    width: 1% !important;
    min-width: 14px !important;
    max-width: 14px !important;
    font-size: 10px;
    text-align: center;
    _background-color: pink;
}

.grid2 .grid-cell .expander i.fa,
.grid2 .grid-heading .expander i.fa {
    /* keep same width between -right and -down icons */
    width: 12px;
    min-width: 12px;
    margin-right: 6px;
    color: var(--c-text);
}

.grid2 .grid-cell .expander i.fa.blueonhover:hover,
.grid2 .grid-heading .expander i.fa.blueonhover:hover {
    color: var(--c-secondary);
}

.grid2 .grid-cell .expander i.fa.blueonhover:active,
.grid2 .grid-heading .expander i.fa.blueonhover:active {
    color: var(--c-secondary-light);
}

.grid2 .grid-cell .expander i.fa.disabled,
.grid2 .grid-heading .expander i.fa.disabled,
.grid2 .grid-row.active .grid-cell .expander i.fa.disabled {
    /* color: #e2e2e2; */
    display: none;
}

.grey-even-rows tr:nth-child(even) td {
    background-color: #f9f9f9;
}


/* styles for grid2 "gridlines" theme */

.grid2.gridlines .grid-heading {
    background-color: var(--c-white-2);
    border-bottom: 1px solid var(--c-grey-5);
    border-right: 1px solid var(--c-grey-6);
    border-top: 1px solid var(--c-grey-6);
}

.grid2.gridlines .grid-header > .grid-heading:last-child,
.grid2.gridlines .grid-row .grid-cell:last-child {
     border-right: none;
}

.grid2.gridlines .grid-row .grid-cell {
    padding: 6px;
    border-bottom: 1px solid var(--c-grey-5);
    border-right: 1px solid var(--c-grey-5);
}

.grid2.gridlines .grid-row:last-child .grid-cell {
    border-bottom: 1px solid var(--c-grey-5);
}


/* grid editable-text cell component */

.grid .editable-text-cell .editable-text input {
  background-color: white !important;
  font-family: inherit;
  width: calc(100% - 2px) !important;
  padding: 3px;
}

.grid .editable-text-cell .editable-text {
  border: 1px solid rgba(0,0,0,0);
  cursor: text;
  font-family: inherit;
  padding: 2px;
}

.grid .grid-row.active .editable-text-cell .editable-text,
.grid .grid-row.active .icon-wrapper,
.grid .editable-text-cell .editable-text:hover,
.grid .editable-text-cell .editable-text.active {
  border: 1px solid var(--c-grey-6) !important;
  background: #fcfcfc;
}

.grid .editable-text-cell .editable-text:hover.disabled > * {
  border: none !important;
}

.grid .grid-row.active .editable-text-cell .editable-text.disabled,
.grid .editable-text-cell .editable-text.disabled {
  border: 1px solid rgba(0,0,0,0) !important;
  cursor: default;
  opacity: 1.0;
}


/* Shamelessly from:
http://www.w3schools.com/css/css_dropdowns.asp
 */

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown > * {
    padding-bottom: 4px; /* padding for better ux */
}

.dropdown-content {
    visibility: hidden;
    opacity: 0.5;
    position: absolute;
    background-color: white;
    min-width: 80px;
    box-shadow: 0px 1px 4px 0px rgba(34, 31, 32, 0.1);
    border: solid 1px #cbced1;;
    right: -6px;
    top: 18px;
    transition: all 0.1s;
    font-family: Roboto;
}

.dropdown-content .disabled {
  cursor: not-allowed;
  color: #898d90;
}

.dropdown-content a {
    text-decoration: none;
    display: block;
}

.dropdown-content > li,
.dropdown-content > li.disabled:hover {
    list-style: none;
    padding: 6px 4px 6px 13px;
    background-color: white;
}

.dropdown-content > li:hover {
    background-color: var(--c-secondary);
}

.dropdown-content > li.disabled:hover > a {
    color: #898d90;
}

.dropdown-content > li:hover > a {
    color: white;
}

.dropdown:hover .dropdown-content,
.dropdown.active .dropdown-content,
.clicked.dropdown:hover.active .dropdown-content {
    opacity: 1;
    visibility: visible;
    _transition: all 0.2s;
}

/* don't for action-popup-menu, we needing to click on it */
.clicked.dropdown:hover .dropdown-content {
    opacity: initial;
    visibility: hidden;
}

/* force-hide the hovering menu when clicking on actions that don't navigate the page */
.dropdown:hover.force-hidden .dropdown-content {
    opacity: 0.5;
    visibility: hidden;
    transition: all 0.1s;
}

.mobile-nagivation {
    display: initial;
    margin-right: -12px;
}


.dropdown-menu .dropdown-item,
.mobile-nagivation .dropdown-item {
    padding-left: 16px;
    padding-right: 16px;
}

.dropdown-menu .dropdown-item {
    width: 120px;
}

.dropdown-menu .dropdown-item.shade,
.mobile-nagivation .dropdown-item.shade {
    background-color: white;
    margin-top: -62px;
    height: 52px;
    opacity: 0.1;
}

.dropdown-menu .label {
    background: rgba(255, 255, 255, 0.0);
    transition: all 0.2s;
}

.dropdown-menu .active .label {
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.1s;
}

.dropdown-menu .dropdown-content,
.mobile-nagivation .dropdown-content {
    background-color: white;
    top: 62px;
    margin-left: -18px;
    margin-right: -8px;
    border-top: none;
    box-shadow: 0px 1px 4px 0px rgba(34, 31, 32, 0.1);
}

.dropdown-content .dropdown-item.active {
    background-color: var(--c-secondary);
    color: white !important;
    transition: all 0.2s;
}


.dropdown-content .dropdown-item.active.disabled {
    background-color: initial;
    color: #898d90 !important;
}

.dropdown-content .dropdown-item.danger {
    background-color: var(--c-error);
    color: #f2d2d2;
    transition: all 0.2s;
}

.dropdown-item {
    cursor: pointer;
    padding: 5px;
}

a.dropdown-item {
    color: var(--c-text-dark);
}

a.dropdown-item.sandbox {
    color: var(--c-text-light);
}

a.dropdown-item:focus {
    background-color: var(--c-grey-5);
    padding-top: 5px;
}

a.dropdown-item:hover {
    color: var(--c-white);
    background-color: var(--c-secondary);
    padding-top: 5px;
}

.pipe-separator {
    border-left: 1px solid;
    padding-top: 5px;
    padding-bottom: 5px;
}

.dropdown-menu .pipe-separator,
.mobile-nagivation .pipe-separator {
    margin-right: 20px;
    margin-left: 30px;
}

.dropdown-menu .fa-angle-down,
.mobile-nagivation .fa-angle-down {
    margin-left: 5px;
    margin-right: 2px;
}

.tree-view {
  overflow-y: hidden;
}

.tree-view_arrow {
  cursor: pointer;
  display: inline-block;
}

/* arrow-down ▾ */
.tree-view_arrow:after {
  content: "\25BE";
}

/* arrow-right ▸ */
.tree-view_arrow-collapsed:after {
  content: "\25B8";
}

.loading-spinner-fullscreen {
    opacity: 0.8;
    z-index: 100;
    transition: all 0s !important;
}

.loading-spinner-fullscreen.transition-out {
    opacity: 0;
    z-index: 0;
    transition: opacity 0.15s cubic-bezier(0.22, 0.61, 0.36, 1) !important;
}

@-webkit-keyframes anim-ellipsis {
  to {
    width: 1.25em;
  }
}

@keyframes anim-ellipsis {
  to {
    width: 1.25em;
  }
}

.animating-ellipsis:after {
  -webkit-animation: anim-ellipsis steps(4,end) 800ms infinite;
  animation: anim-ellipsis steps(4,end) 800ms infinite;
  content: "\2026"; /* the ellipsis ascii code*/
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  width: 0px;
}

span.value {
    font-family: 'Courier'
}

span.value-freq {
    color: #AAAAAA;
    float: left;
    width: 43px;
}

span.value-null {
    color: #AAAAAA;
}

.info-text {
    padding-left: 20px;
    font-size: 12pt;
    color: var(--c-secondary);
    max-width: 700px;
}

.info-text .fa {
    margin-right: 0.3em;
}

.warning-text {
    padding-left: 20px;
    font-size: 12pt;
    color: #EAA221;
    max-width: 700px;
}

.error-text {
    padding-left: 20px;
    font-size: 12pt;
    color: #AA4944;
    max-width: 700px;
}

.pending-text {
    padding-left: 20px;
    font-size: 12pt;
    color: #AAAAAA;
    max-width: 700px;
}

.pending-text .fa {
    margin-right: 0.3em;
}

/* notifications */

.notification-details-state-icon {
    font-size: 0.5rem;
    vertical-align: bottom;
    margin-bottom: 3px;
}

.notifications-container {
    white-space: nowrap;
}

.notifications-container .load-more  {
    background-color: white;
    transition: all 0.05s;
}

.notifications-container .load-more:hover  {
    background-color: #f8f8f8;
    transition: all 0.05s;
}

/**************************
 ** domain-data-explorer **
 **************************/


.domain-data-explorer .middle-part .option {
    border-bottom: 2px solid rgba(0, 0, 0, 0);
}

.domain-data-explorer .middle-part .option:hover {
    border-bottom: 2px solid var(--c-secondary);
}

.domain-data-explorer .middle-part .option.selected:hover {
    border-bottom: 2px solid rgba(0, 0, 0, 0);
}


/***************************************************
 ** overview (stitch and database overview cards) **
 ***************************************************/

.overview-label {
    font-family: "Roboto";
    letter-spacing: 0.9px;
    font-weight: normal;
    font-stretch: normal;
    line-height: normal;
    text-transform: uppercase;
    color: var(--c-text-medium);
    font-size: 12px;
    padding: 2px 0px 6px 0px;
}

.overview-value {
    font-family: "Roboto";
    font-weight: 500px;
    color: var(--c-text);
    font-size: 22px;
    height: 22px;
}

.evenly-spaced-row-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    height: 86px;
}

.overview-card {
    width: 100%;
    height: 100%;
    display: flex;
    background: white;
}

.overview-icon-wrapper {
    position: relative;
    color: var(--c-icon-grey);
    margin: 0px 20px 0px 21px;
    height: 100%;
}

.overview-icon {
    width: 23px;
    height: 23px;
    font-size: 23px;
}

.overview-divider {
    background: var(--c-hover-border);
    position: relative;
    top: 18px;
    height: calc(100% - 36px);
    width: 2px;
}

.overview-value-wrapper {
    flex-direction: column;
    margin-left: 21px;
    height: 100%;
    text-align: left;
}

/* Media definitions to progressively scale the
   overview card size at smaller browser sizes. */

@media (max-width: 1540px) {
    .overview-value-wrapper {
        margin-left: 0px;
    }

    .overview-divider {
        display: none;
    }
}

@media (max-width: 1300px) {
    .overview-value {
        font-size: 18px;
    }

    .overview-icon {
        width: 20px;
        height: 20px;
        font-size: 20px;
    }
}
