html .media-mobile, body .media-mobile {
  overflow-x: hidden;
}

body {
  margin: 0;
}

.media-desktop {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  max-height: 100vh;
  height: 100vh;
}

.media-mobile {
  display: flex;
  flex-direction: column;
  height: 100vh;
}

* {
  box-sizing: border-box;
}

/* Named Colors */
/* Semantic Colors */
/* Legacy Colors */
@keyframes spin {
  from {
    transform: rotateY(0deg);
  }
  10% {
    transform: rotateY(0deg);
  }
  40% {
    transform: rotateY(180deg);
  }
  60% {
    transform: rotateY(180deg);
  }
  90% {
    transform: rotateY(360deg);
  }
  to {
    transform: rotateY(360deg);
  }
}
@-webkit-keyframes turn {
  0% {
    stroke-dashoffset: 180;
  }
  50% {
    stroke-dashoffset: 45;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  100% {
    stroke-dashoffset: 180;
    -webkit-transform: rotate(450deg);
    transform: rotate(450deg);
  }
}
@keyframes turn {
  0% {
    stroke-dashoffset: 180;
  }
  50% {
    stroke-dashoffset: 45;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  100% {
    stroke-dashoffset: 180;
    -webkit-transform: rotate(450deg);
    transform: rotate(450deg);
  }
}
@-webkit-keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
  }
}
@keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
  }
}
@keyframes shake {
  from {
    transform: translateX(0);
  }
  20% {
    transform: translateX(-20px);
  }
  40% {
    transform: translateX(20px);
  }
  60% {
    transform: translateX(-20px);
  }
  80% {
    transform: translateX(20px);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes disappearing {
  from {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes flash {
  from {
    opacity: 1;
  }
  75% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes slide-right {
  from {
    right: 0px;
  }
  to {
    right: -400px;
  }
}
@keyframes slide-left {
  from {
    right: -400px;
    visibility: visible;
  }
  to {
    right: 0px;
  }
}
.flip {
  animation: spin 10s infinite;
}

.shake {
  animation: shake 0.3s ease;
  position: relative;
}

.disappearing {
  animation: disappearing 5s ease forwards;
}

.highlight::before {
  animation: disappearing 8s ease-in-out forwards;
  pointer-events: none;
}

.slide-right {
  animation: slide-right 195ms cubic-bezier(0.4, 0, 0.2, 1);
  animation-fill-mode: forwards;
}

.slide-left {
  animation: slide-left 195ms cubic-bezier(0.4, 0, 0.2, 1);
  animation-fill-mode: forwards;
}

.flash {
  animation: flash 1s ease forwards;
}

@keyframes wiggle-width {
  from {
    width: 100%;
  }
  50% {
    width: 100.01%;
  }
  to {
    width: 100%;
  }
}
.anim-tunnel-truck {
  display: inline-block;
  width: 100%;
  background-image: url("animations/tunnel-truck.svg");
  background-repeat: no-repeat;
  background-size: 15.9491193738%;
  animation: backgroundScroll 2.73s linear infinite;
}
.anim-tunnel-truck svg {
  width: 100%;
  height: auto;
  animation: wiggle-width 1s forwards;
}
@keyframes backgroundScroll {
  from {
    background-position: -22% 72%;
  }
  to {
    background-position: 122% 72%;
  }
}

@keyframes glow1 {
  from {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  95% {
    opacity: 0;
  }
  to {
    opacity: 0;
  }
}
@keyframes glow2 {
  from {
    opacity: 0;
  }
  17% {
    opacity: 0;
  }
  35% {
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  to {
    opacity: 0;
  }
}
@keyframes glow3 {
  from {
    opacity: 0;
  }
  32% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  65% {
    opacity: 0;
  }
  to {
    opacity: 0;
  }
}
@keyframes quickspin {
  from {
    transform: rotateY(0deg);
  }
  50% {
    transform: rotateY(360deg);
  }
  to {
    transform: rotateY(360deg);
  }
}
@keyframes halfspin {
  from {
    transform: rotateY(0deg);
  }
  49% {
    transform: rotateY(0deg);
  }
  50% {
    transform: rotateY(180deg);
  }
  99% {
    transform: rotateY(180deg);
  }
  to {
    transform: rotateY(0deg);
  }
}
.loading-ellipsis {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -10rem;
}
.loading-ellipsis span.dot {
  font-size: 15rem;
  letter-spacing: 0.1rem;
}
.loading-ellipsis .dot:nth-of-type(1) {
  animation: glow1 2.34s infinite;
}
.loading-ellipsis .dot:nth-of-type(2) {
  animation: glow2 2.34s infinite;
}
.loading-ellipsis .dot:nth-of-type(3) {
  animation: glow3 2.34s infinite;
}

.loading-text {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
}
.loading-text .text {
  margin-left: 0.5rem;
  margin-right: 0.2rem;
}
.loading-text span.dot {
  letter-spacing: 0.1rem;
}
.loading-text .quick-flip {
  animation: quickspin 1.17s infinite;
  width: 1.4rem;
  animation-timing-function: linear;
}
.loading-text .dot:nth-of-type(2) {
  animation: glow1 1.17s infinite;
}
.loading-text .dot:nth-of-type(3) {
  animation: glow2 1.17s infinite;
}
.loading-text .dot:nth-of-type(4) {
  animation: glow3 1.17s infinite;
}

.animation-scene {
  position: relative;
}

.fullscreen-truck {
  /* box-shadow on left side */
  /* "stage" geometry */
  box-sizing: content-box;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  /* "stage" background (gradient that fades away, revealing content) */
  overflow: hidden;
  background-size: 100% 300%;
  background-position: 0 100%;
  transition: background-position 2s;
  /* truck */
  /* background and road */
  /* background */
  /* road */
  /* truck drive in/out */
}
.fullscreen-truck:before {
  content: "";
  display: block;
  position: absolute;
  top: -200px;
  bottom: -200px;
  width: 150%;
  pointer-events: none;
  box-shadow: inset 2px 1px 15px 0 black;
  transition: opacity 5s;
}
.fullscreen-truck.is-done-loading:before {
  opacity: 0;
}
.fullscreen-truck .theater {
  position: absolute;
  left: 0;
  right: 0;
  height: calc(95vh - 192px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.fullscreen-truck .theater .theater-stage {
  position: relative;
  min-height: 40vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  max-width: calc(100vw - 320px);
}
.fullscreen-truck .theater .above-stage-spacer {
  flex-grow: 0;
}
.fullscreen-truck .theater .below-stage-spacer {
  flex-grow: 1;
}
.fullscreen-truck.is-done-loading {
  background-position: 0 0;
}
.fullscreen-truck .truck-slice {
  position: absolute;
  bottom: 5px;
  display: flex;
  justify-content: center;
  left: 0;
  right: 0;
}
.fullscreen-truck .truck-box {
  position: relative;
}
.fullscreen-truck .truck-box img.truck {
  max-width: 40vw;
  min-width: 10vw;
  animation: bumpy 1s linear infinite;
  transform-origin: left;
}
@keyframes bumpy {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(-0.1deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.fullscreen-truck .truck-box img.wheel {
  position: absolute;
  width: 5.7%;
  bottom: 1.5%;
}
.fullscreen-truck .truck-box img.wheel.wheel1 {
  left: 1.1%;
  animation: spinningWheel0deg 1.3s linear infinite;
  transform: rotate(5deg);
}
@keyframes spinningWheel0deg {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.fullscreen-truck .truck-box img.wheel.wheel2 {
  left: 7.7%;
  animation: spinningWheel45deg 1.3s linear infinite;
  transform: rotate(50deg);
}
@keyframes spinningWheel45deg {
  0% {
    transform: rotate(45deg);
  }
  100% {
    transform: rotate(405deg);
  }
}
.fullscreen-truck .truck-box img.wheel.wheel3 {
  left: 56.5%;
  animation: spinningWheel192deg 1.3s linear infinite;
  transform: rotate(197deg);
}
@keyframes spinningWheel192deg {
  0% {
    transform: rotate(192deg);
  }
  100% {
    transform: rotate(552deg);
  }
}
.fullscreen-truck .truck-box img.wheel.wheel4 {
  left: 63%;
  animation: spinningWheel308deg 1.3s linear infinite;
  transform: rotate(313deg);
}
@keyframes spinningWheel308deg {
  0% {
    transform: rotate(308deg);
  }
  100% {
    transform: rotate(668deg);
  }
}
.fullscreen-truck .truck-box img.wheel.wheel5 {
  left: 90.4%;
  animation: spinningWheel17deg 1.3s linear infinite;
  transform: rotate(22deg);
}
@keyframes spinningWheel17deg {
  0% {
    transform: rotate(17deg);
  }
  100% {
    transform: rotate(377deg);
  }
}
.fullscreen-truck .theater-stage:after,
.fullscreen-truck .theater-stage:before {
  content: " ";
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
}
.fullscreen-truck .theater-stage:before {
  height: 90%;
  min-height: 300px;
  bottom: 20px;
  background-image: url("animations/background.svg");
  background-repeat: repeat-x;
  background-size: cover;
  animation-name: bgScroll;
  animation-timing-function: linear;
  animation-duration: 300s;
  animation-iteration-count: infinite;
  animation-delay: 0;
  transition: opacity 1s;
  opacity: 0;
}
@keyframes bgScroll {
  0% {
    background-position: 0 bottom;
  }
  100% {
    background-position: -90000px bottom;
  }
}
.fullscreen-truck.is-loading .theater-stage:before {
  opacity: 1;
}
.fullscreen-truck .theater-stage:after {
  bottom: 0;
  height: 50px;
  background-image: url("animations/road.svg");
  background-repeat: repeat-x;
  background-size: contain;
  background-position: 0 bottom;
  animation-name: roadScroll;
  animation-timing-function: linear;
  animation-duration: 300s;
  animation-iteration-count: infinite;
  animation-delay: 0;
  transition: opacity 1s;
  opacity: 0;
}
@keyframes roadScroll {
  0% {
    background-position: 0 bottom;
  }
  100% {
    background-position: -150000px bottom;
  }
}
.fullscreen-truck.is-loading .theater-stage:after {
  opacity: 1;
}
.fullscreen-truck .truck-box {
  transform: translateX(-200%);
}
.fullscreen-truck.is-loading .truck-box {
  animation: driveIn 1.5s ease-out;
  transform: translateX(0%);
}
@keyframes driveIn {
  0% {
    transform: translateX(-200%);
  }
  100% {
    transform: translateX(0%);
  }
}
.fullscreen-truck.is-done-loading .truck-box {
  animation: driveAway 1s ease-in;
}
@keyframes driveAway {
  0% {
    transform: translateX(0%);
    opacity: 1;
  }
  100% {
    transform: translateX(200%);
    opacity: 0;
  }
}

.stacked .loading-or-content .animation-scene {
  height: 100%;
}

.loading-or-content .loading {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  pointer-events: none;
}

.theme-dark .loading-or-content {
  background-color: #1d2529;
}

@font-face {
  font-family: "OpenSans-Regular";
  src: url("fonts/OpenSans-Regular.ttf");
}
@font-face {
  font-family: "OpenSans-SemiBold";
  src: url("fonts/OpenSans-SemiBold.ttf");
}
@font-face {
  font-family: "OpenSans-Light";
  src: url("fonts/OpenSans-Light.ttf");
}
@font-face {
  font-family: "Inconsolata";
  font-weight: 400;
  src: local("Inconsolata Regular"), local("Inconsolata-Regular"), url("Inconsolata-Regular.woff");
}
.dropdown-item__item {
  font-family: "OpenSans-Regular", Verdana, Geneva, Tahoma, sans-serif;
  font-size: 1rem;
  line-height: 1.5em;
}

a {
  font-weight: normal;
  text-decoration: none;
}

.link-fancy:hover {
  text-decoration: underline;
}

body * {
  font-family: "OpenSans-Regular", Helvetica, Roboto, sans-serif;
  font-size: 0.875rem;
  line-height: 1.43em;
  font-weight: 400;
}

.text--vehicle-id {
  font-family: "OpenSans-Regular";
  line-height: 1.235em;
  font-size: 2.125rem;
}

.text--error-message {
  font-family: "OpenSans-Regular";
  line-height: 1.235em;
  font-size: 2.125rem;
}

h2 {
  font-size: 26px;
  font-weight: lighter;
}

h3 {
  font-size: 20px;
  font-weight: normal;
}

.text--master-search__fleet-name {
  font-family: "OpenSans-Regular", Helvetica, Roboto, sans-serif;
  font-size: 0.875rem;
  line-height: 1.43em;
}

.text--master-search__unit-label {
  font-size: 14px;
  font-weight: lighter;
}

.text--vehicle-id-table {
  font-size: 20px;
  font-weight: normal;
  text-transform: uppercase;
}

.text--fcap-heading {
  font-family: "OpenSans-SemiBold";
  line-height: 1.75em;
  font-size: 1rem;
}

.text--header {
  font-family: "OpenSans-SemiBold", Helvetica, Roboto, sans-serif;
  font-size: 0.875rem;
  line-height: 1.57rem;
}

.text--manage-reports-heading,
.text--master-search {
  font-size: 16px;
  font-weight: normal;
}

.text--primary-body {
  font-family: "OpenSans-Regular", Verdana, Geneva, Tahoma, sans-serif;
  font-size: 1rem;
  line-height: 1.5em;
}

.text--secondary-body {
  font-family: "OpenSans-Regular", Helvetica, Roboto, sans-serif;
  font-size: 0.875rem;
  line-height: 1.43em;
}

.text--small-body-primary {
  font-size: 12px;
  font-weight: normal;
}

.text--small-body-secondary {
  font-size: 12px;
  font-weight: normal;
}

.text--search-input {
  font-size: 16px;
  font-weight: normal;
}

.text--search-group-name, .text--search-group-totalcount {
  font-family: "OpenSans-SemiBold", Helvetica, Roboto, sans-serif;
  font-size: 0.875rem;
  line-height: 1.57rem;
}

.text--search-placeholder {
  font-family: "OpenSans-Regular", Verdana, Geneva, Tahoma, sans-serif;
  font-size: 1rem;
  line-height: 1.5em;
}

.text--headline4 {
  font-family: "OpenSans-Regular";
  line-height: 1.235em;
  font-size: 2.125rem;
}

.text--headline5 {
  font-family: "OpenSans-Regular";
  line-height: 1.334em;
  font-size: 1.5rem;
}

.text--headline6 {
  font-family: "OpenSans-SemiBold";
  line-height: 1.6em;
  font-size: 1.25rem;
}

.text--subtitle1 {
  font-family: "OpenSans-SemiBold";
  line-height: 1.75em;
  font-size: 1rem;
}

.text--subtitle2 {
  font-family: "OpenSans-SemiBold", Helvetica, Roboto, sans-serif;
  font-size: 0.875rem;
  line-height: 1.57rem;
}

.text--body1 {
  font-family: "OpenSans-Regular", Verdana, Geneva, Tahoma, sans-serif;
  font-size: 1rem;
  line-height: 1.5em;
}

.text--label {
  font-family: "OpenSans-Regular", Helvetica, Roboto, sans-serif;
  font-size: 0.875rem;
  line-height: 1.43em;
}

.text--caption {
  font-family: "OpenSans-Regular";
  line-height: 1.67em;
  font-size: 0.75rem;
}

.session-group {
  font-family: "OpenSans-SemiBold", Helvetica, Roboto, sans-serif;
  font-size: 0.875rem;
  line-height: 1.57rem;
}

.table--search-group th {
  font-family: "OpenSans-SemiBold", Helvetica, Roboto, sans-serif;
  font-size: 0.875rem;
  line-height: 1.57rem;
}
.table--search-group td {
  font-family: "OpenSans-Regular", Helvetica, Roboto, sans-serif;
  font-size: 0.875rem;
  line-height: 1.43em;
}
.table--search-group td:nth-child(1) {
  font-family: "OpenSans-SemiBold", Helvetica, Roboto, sans-serif;
  font-size: 0.875rem;
  line-height: 1.57rem;
}

.text--table-label, .sar-row__column--header {
  font-size: 10px;
  font-weight: normal;
}
.text--table-label[data-text], .sar-row__column--header[data-text] {
  text-transform: none;
  font-size: 14px;
}

.column-headings * {
  font-family: "OpenSans-SemiBold", Helvetica, Roboto, sans-serif;
  font-size: 0.875rem;
  line-height: 1.57rem;
}

.loading-text span {
  font-family: "OpenSans-Regular", Helvetica, Roboto, sans-serif;
  font-size: 0.875rem;
  line-height: 1.43em;
}

footer {
  font-size: 11px;
  font-weight: lighter;
}

.text--caption-large {
  font-family: "OpenSans-SemiBold";
  line-height: 1.6em;
  font-size: 1.25rem;
  text-transform: uppercase;
}

.color--sar-label-time {
  font-weight: normal;
}

.text-bold {
  font-weight: bold;
}

.text-light {
  font-weight: light;
}

.text-underline {
  text-decoration: underline;
}

.text-italic {
  font-style: italic;
}

.text-plain {
  text-transform: none;
  font-weight: normal;
}

.text-uppercase {
  text-transform: uppercase;
}

.text--extra-spacing {
  letter-spacing: 0.25px;
}

.text--body-line-spacing {
  line-height: 20px;
}

.text--body-line-spacing--medium {
  line-height: 18px;
}

.text--body-line-spacing--small {
  line-height: 14px;
}

.text-highlight {
  font-family: "OpenSans-SemiBold", Helvetica, Roboto, sans-serif;
  font-size: 0.875rem;
  line-height: 1.57rem;
  font-weight: bolder;
}

.text--heading-collapsible {
  font-family: "OpenSans-Regular";
  line-height: 1.334em;
  font-size: 1.5rem;
}

.input--magnify {
  font-size: 20px;
}

.media-desktop input, .media-desktop textarea {
  font-size: 14px;
  font-weight: 200;
}

.media-mobile input, .media-mobile textarea {
  font-size: 16px;
  font-weight: 200;
}

.readout li {
  font-size: 2.125rem;
  line-height: 1.235em;
}

.vin {
  font-family: "OpenSans-Regular", Verdana, Geneva, Tahoma, sans-serif;
  font-size: 1rem;
  line-height: 1.5em;
  letter-spacing: 0.69px;
}

.optional {
  font-style: italic;
  font-size: 80%;
}
.optional a {
  text-decoration: underline;
}

.foreign-html li, .foreign-html p, .foreign-html ul {
  line-height: 22px;
}

.fleet-picker label {
  font-size: 14px;
}

.download-service-routines {
  font-family: Inconsolata;
  letter-spacing: 1.5px;
  font-size: 12px;
  text-transform: uppercase;
}

.geotab-registration--help-page .geotab-help-page--database-name-example,
.geotab-registration--help-page .geotab-help-page--username-example {
  font-size: 16px;
}

.input-with-inner-label--label {
  font-weight: bold;
}

.container-user-filter a {
  text-decoration: none;
}

.fault-group-label {
  font-size: 11px;
}

.sidebar--label__selected .text--label {
  font-family: "OpenSans-SemiBold", Helvetica, Roboto, sans-serif;
  font-size: 14px;
  line-height: 24.5px;
}

a,
label,
button,
.button,
.actionable,
[data-ember-action],
[du-smooth-scroll] {
  cursor: pointer;
}

.overlay {
  cursor: default;
}

.is-disabled,
.button--inert,
[disabled] {
  pointer-events: none;
}

label {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

nav > div::before {
  overflow: hidden;
}

.calendar__header {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.scrollable {
  overflow-y: auto;
  overflow-x: auto;
}

.scrollable-horizontal {
  overflow-x: auto;
}

.scrollable-vertical {
  overflow-y: auto;
}

.hidden-overflow,
.sar-detail .body {
  overflow: hidden;
}

.dropdown--has-calendar .dropdown__drop-content {
  overflow: visible;
}

body {
  /**
   * Prevents scroll-bar from appearing when sliding side-bar from right
   * side (such as fleet filter). Does not seem to break anything (so far).
   */
  overflow-x: hidden;
}

footer {
  position: relative;
  border-top: 1px solid;
  padding: 7px 15px 8px 15px;
  height: 48px;
  text-align: center;
  justify-content: center;
}
footer > * {
  margin: 0 10px;
}

.footer--master-search {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

hr {
  border-style: solid;
  border-width: 1px 0 0;
}

.silty {
  border-width: 0 0 2px 0;
  border-image-slice: 1;
}

.page-nav {
  height: 4.3rem;
  padding: 1.1rem 2rem;
  border-top: 1px solid;
  width: 100%;
}
.page-nav > :last-child {
  font-family: "OpenSans-SemiBold", Helvetica, Roboto, sans-serif;
  font-size: 0.875rem;
  line-height: 1.57rem;
  margin-left: auto;
  margin-right: 0;
}
.page-nav > div {
  margin-left: 1rem;
}

.addable-list,
.location {
  display: block;
}

.overlay, .overlay-filter {
  z-index: 2;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
}

.below-header {
  position: fixed;
  top: 64px;
}

.inline > * {
  display: inline-block;
}

.spaced > :last-child {
  margin-right: 0;
}

.spaced--tiny > * {
  margin-right: 0.2rem;
}

.spaced--small > * {
  margin-right: 0.5rem;
}

.spaced--medium > * {
  margin-right: 1rem;
}

.spaced--wide > * {
  margin-right: 3rem;
}

.vspaced > :last-child {
  margin-bottom: 0;
}

.vspaced--small > * {
  margin-bottom: 0.3rem;
}

.vspaced--medium > * {
  margin-bottom: 0.6rem;
}

.sar-detail {
  padding-top: 2.8rem;
}
.sar-detail .body {
  padding-top: 2rem;
  transition: max-height 0.3s;
}
.sar-detail .subsection {
  position: relative;
}
.sar-detail .fcap-row {
  margin: 1rem 0 1.5rem 0;
}
.sar-detail .fcap-row.links {
  margin-bottom: 0;
  flex-direction: row;
  flex-wrap: wrap;
  white-space: nowrap;
}
.sar-detail .fcap-row.links div {
  margin-right: 1rem;
  margin-bottom: 1.5rem;
}
.sar-detail #icon-caret-down, .sar-detail #icon-caret-up {
  width: 20px;
  height: 20px;
}

.right {
  float: right !important;
}

.left {
  float: left !important;
}

.align-middles {
  display: flex;
  align-items: center;
}

.align-baseline {
  display: flex;
  align-items: baseline;
}

.align-bottoms {
  display: flex;
  align-items: flex-end;
}
.align-bottoms > .has-dropdown {
  position: relative;
  top: -0.5rem;
}

.align-self-center {
  align-self: center;
}

.align-center {
  margin: auto;
}

.column-headings {
  padding: 0.5rem 1.3rem 0.5rem 1.6rem;
  border-bottom: 1px solid;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.side-panel {
  left: -46rem;
  width: 46rem;
  position: absolute;
  top: 0;
  bottom: 0;
  height: 100%;
  transition: left 0.25s ease;
}
.side-panel .tab-name:first-child {
  border-top-left-radius: 0;
}

.limit-width {
  max-width: 50rem;
}

.limit-width-small {
  max-width: 30rem;
}

.limit-width-tiny {
  max-width: 5rem;
}

.side-panel--is-open {
  left: 0;
}

.flex {
  display: flex;
}

.hidden-text {
  visibility: hidden;
  height: 0;
}

.flex--static {
  flex: 0 0 auto;
}

.flex-grow {
  flex: 1;
}

.flex-chrome-height {
  min-height: min-content;
}

.stacked {
  display: flex;
  flex-direction: column;
}
.stacked > * {
  flex: none;
}
.stacked > .flex-grow {
  flex: 1 0 auto;
}

.with-long-head {
  display: flex;
}
.with-long-head > :first-child {
  flex-grow: 1;
}

.with-long-tail {
  display: flex;
}
.with-long-tail > * {
  flex-grow: 0;
  flex-shrink: 0;
}
.with-long-tail > :last-child {
  flex-grow: 1;
  flex-shrink: 1;
}

.columns {
  display: flex;
}
.columns > div {
  flex-grow: 1;
  flex-basis: 0;
  padding: 0.5rem;
}
.columns > :first-child {
  padding-left: 0;
}
.columns > :last-child {
  padding-right: 0;
}

.clearfix {
  display: block;
  clear: both;
}

.error {
  margin-top: 0.6rem;
}

.login-error {
  word-wrap: break-word;
}

.width-full {
  width: 100%;
}

.fleet-sar--table_width-full {
  min-width: 100%;
}

.height-full {
  height: 100%;
}

.controllable {
  position: relative;
}
.controllable input {
  padding-right: 2.6rem;
}

.controllable__controls {
  position: absolute;
  right: 1rem;
  top: 0.95rem;
}

.controllable__controls--in-input {
  height: 100%;
  margin-top: -1rem;
  right: 0;
  display: flex;
  align-items: center;
}
.controllable__controls--in-input svg {
  margin-top: 0.4rem;
}
.controllable__controls--in-input > div {
  height: 100%;
  display: flex;
  align-items: center;
}
.controllable__controls--in-input > :last-child {
  padding-right: 1rem;
}

.margin-basic {
  margin: 1rem;
}

.margin-vertical {
  margin: 1rem 0;
}

.margin-top {
  margin-top: 1rem;
}

.margin-top--small {
  margin-top: 0.3rem;
}

.margin-top--medium {
  margin-top: 0.7rem;
}

.margin-top--big {
  margin-top: 1.7rem;
}

.margin-bottom {
  margin-bottom: 1rem;
}

.margin-bottom--half {
  margin-bottom: 0.5rem;
}

.margin-bottom--small {
  margin-bottom: 0.2rem;
}

.margin-bottom--medium {
  margin-bottom: 0.7rem;
}

.margin-bottom--big {
  margin-bottom: 1.7rem;
}

.margin-left {
  margin-left: 1rem;
}

.margin-left--extra-small {
  margin-left: 0.1rem;
}

.margin-left--small {
  margin-left: 0.3rem;
}

.margin-left--medium {
  margin-left: 0.7rem;
}

.margin-left--big {
  margin-left: 1.6rem;
}

.margin-right {
  margin-right: 1rem;
}

.margin-right--small {
  margin-right: 0.3rem;
}

.margin-right--medium {
  margin-right: 0.7rem;
}

.margin-right--big {
  margin-right: 1.6rem;
}

.margin--vpa {
  margin-top: 2.25rem;
}

.padding-basic {
  padding: 1rem 1.4rem;
}

.padding-left {
  padding: 0 1.4rem;
}

.padding-bottom {
  padding-bottom: 1rem;
}

.padding-right {
  padding-right: 1rem;
}

.padding-top {
  padding-top: 1rem;
}

.padding-sidebar {
  padding: 1rem;
}

.padding-table-preamble {
  padding-bottom: 1rem;
}

.padding--big-table-no-results {
  padding-left: 2.8rem;
  padding-top: 0.8rem;
}

.refresh-bar-height {
  height: 4.15rem;
}

.with-right-nav {
  padding-right: 1.5rem;
}

.sar-bar {
  height: 48px;
  margin-bottom: 0.3rem;
}
.sar-bar div {
  display: flex;
  align-items: center;
  margin-left: 1.3rem;
}
.sar-bar .download-link {
  margin-right: 50px;
}

.triptych-padding {
  padding: 2.8rem 0;
}

.triptych-panel {
  width: 20rem;
  min-width: 20rem;
}

.pulldown .pulldown__heading {
  font-family: "OpenSans-SemiBold";
  line-height: 1.6em;
  font-size: 1.25rem;
  margin: 0;
  padding: 1rem 1.6rem;
  display: block;
  position: relative;
  border-bottom: 1px solid;
}
.pulldown label {
  margin-top: 1.6rem;
}
.pulldown label.ember-radio-button {
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
}

.pulldown.pulldown--compact label {
  margin-top: 0.5rem;
}

.pulldown__error {
  margin-bottom: 1rem;
}

.pulldown__body {
  margin-top: -1px;
  padding: 0.5rem 1.6rem 1.2rem;
}

.pulldown__bottom {
  margin-top: 1.2rem;
}

.hide {
  display: none !important;
}

.hidden {
  visibility: hidden;
}

.transmission-background {
  background-size: 125rem 62.5rem;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
}

.content-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.content-center--is-at-top {
  align-items: flex-start;
}

.content-center--is-at-left {
  justify-content: flex-start;
}

.content-right {
  justify-content: flex-end;
}

.spread {
  display: flex;
  justify-content: space-between;
}

.stretch {
  display: flex;
  align-items: stretch;
}

.focus-page {
  position: absolute;
  left: 0;
  right: 0;
  top: 3.4rem;
  bottom: 3.4rem;
  border: 1px solid;
  background-position: center;
}

.focus-page__form {
  width: 25rem;
}

.focus-page__logo {
  position: absolute;
  top: -2.4rem;
  right: 1rem;
}

.with-subtitle {
  position: relative;
}
.with-subtitle .with-subtitle__text {
  position: absolute;
  bottom: -1.3rem;
}

.bordered > * {
  border-bottom: 1px solid;
}
.bordered > :last-child {
  border-bottom: 0;
}

.border-right {
  border-right: 1px solid;
}

.border-right--thick {
  border-right: 2px solid;
}

.icon--focus-page {
  transform: scale(0.8);
}

.icon--header {
  background-size: 12rem 5rem;
  background-position: left center;
  width: 12rem !important;
  min-width: 12rem !important;
}

.sediment {
  border-style: solid;
  border-width: 0 0 2px;
  border-image-slice: 1;
  border-image-repeat: stretch;
}

.spacer {
  flex-grow: 1;
  min-width: 0.5rem;
}

.column-heading-spacer {
  flex-grow: 0.5;
  min-width: none;
  justify-content: center;
  align-items: center;
}

.basis-middle {
  position: relative;
  left: 50%;
}

.basis-middle__item {
  position: relative;
  left: -70%;
}

.with-footer {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.diptych--left {
  position: fixed;
  width: 50%;
}

.diptych--right {
  position: fixed;
  left: 50%;
  width: 50%;
}

@media screen and (max-width: 1300px) {
  .sar-detail .fcap-row {
    flex-direction: column;
  }
}
@media screen and (min-width: 940px) and (max-width: 1100px) {
  .hidden\@large {
    display: none;
  }
}
.size-large .hidden\@large {
  display: none;
}

@media screen and (min-width: 400px) and (max-width: 940px) {
  .hidden\@medium {
    display: none;
  }
}
.size-medium .hidden\@medium {
  display: none;
}

@media screen and (max-width: 400px) {
  .hidden\@small {
    display: none;
  }
}
.size-small .hidden\@small {
  display: none;
}

.full-screen {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.buffer-small {
  min-width: 1rem;
}

.data-grouping__bottom-border {
  border-style: solid;
  border-width: 0 0 2px;
}

.data-grouping {
  max-width: 60rem;
  margin: 0 auto;
}

.partner-logo {
  margin: auto 0;
}

.feedback-message {
  height: 10rem;
  vertical-align: text-top;
}

.flex--double-input-line input {
  max-width: 47.5%;
}
.flex--double-input-line div {
  min-width: 5%;
}

.flex--triple-input-line input {
  max-width: 30%;
}
.flex--triple-input-line div {
  min-width: 5%;
}

.footer-auto-margin {
  margin-top: auto;
}

.sr-data-triptych {
  padding-left: 3rem;
  padding-right: 4rem;
  border-right: 1px solid;
  border-image-slice: 1;
  min-height: 6.5rem;
  min-width: 3.8rem;
  max-width: 40%;
}
.sr-data-triptych:last-child {
  border-right: none;
  flex: 1;
}
.sr-data-triptych * table th {
  vertical-align: top;
  white-space: nowrap;
}

.user-crud-modal {
  width: 50rem;
}

.modal--scroll-content {
  height: 34rem;
}

.alert-sidebar {
  width: 34rem;
}

.modal-result {
  margin: 0 1.3rem;
}

.input-with-icon {
  height: auto !important;
}

.input-with-inner-label--container {
  position: relative;
}
.input-with-inner-label--input {
  padding: 5px;
}
.input-with-inner-label--input.style-guide {
  padding-bottom: 5px;
  padding-left: 145px;
}
.input-with-inner-label--input.geotab-username {
  padding-left: 163px;
}
.input-with-inner-label--label {
  position: absolute;
  left: 15px;
  bottom: 16px;
}

.save-filter-button {
  display: inline-block;
  margin-left: 2rem;
}

.confirm-valid {
  position: relative;
  right: 5px;
  bottom: 5px;
}

.confirm-valid--icon-spacing {
  top: 5px;
  left: 5px;
}

.fleet-picker {
  height: 3rem;
}
.fleet-picker__item {
  display: inline-flex;
  margin-right: 15px;
}
.fleet-picker.all-fleets {
  padding-right: 3rem;
}
.fleet-picker.custom-fleets {
  padding-right: 1.5rem;
}

.download-service-routines p {
  margin-top: 0;
}

td.programming-files {
  overflow-x: hidden;
  text-overflow: ellipsis;
  max-width: 150px;
}

.component .software-version {
  overflow-x: hidden;
  text-overflow: ellipsis;
  max-width: 300px;
}

.registration {
  position: relative;
}

.geotab-registration--help-page .geotab-help-page--database-name-info,
.geotab-registration--help-page .geotab-help-page--more-assistance-info,
.geotab-registration--help-page .geotab-help-page--username-info {
  margin-top: 0;
}
.geotab-registration--help-page .geotab-help-page--database-name-info,
.geotab-registration--help-page .geotab-help-page--username-info {
  margin-bottom: 0;
}

.vertical-align--middle {
  vertical-align: middle;
}

.session-group {
  padding-top: 12px;
  margin-bottom: 0.6rem;
}

#connect-geotab-account-message {
  margin-top: 0;
  margin-bottom: 20px;
}

.page-title {
  font-size: 150%;
  margin-top: 0;
  padding: 1.5rem 2rem;
}

.ms-IE11-flexbox-compatibility {
  -ms-overflow-x: auto;
}

.header-offset {
  height: calc(100% - 64px);
}

.header__logo {
  width: 76px;
  height: 21px;
}

#sar-detail .margin-sar {
  margin-top: 2rem;
  margin-left: 1.4rem;
}

.odometer .inline {
  align-items: center;
}

.theme-dark .page-nav > :last-child {
  color: #e8eaea;
}

.full-screen--modal {
  z-index: 10;
}
.full-screen--loading {
  z-index: 9;
}

.header__popup,
.foreground-layer,
.dropdown__drop {
  z-index: 2;
}

.pop {
  z-index: 10;
}

.sar-bar,
.slider::before,
.push-button,
.controllable__controls,
.layer-one {
  z-index: 1;
}

.leaflet-top,
.leaflet-bottom,
.leaflet-pane,
.template-background.fade-out,
.fleet-filter--button,
.reset-layer {
  z-index: 0;
}

nav > div::before,
.background-layer {
  z-index: -1;
}

@media screen and (min-width: 767px) and (max-width: 768px) {
  .transmission-background {
    height: 90vh;
  }
}
.theme-dark {
  background-color: #2b353a;
  color: #e8eaea;
  /* Slider Button */
  /* Check Box */
  /* SAR Buttons */
  /* SS/VPA button */
}
.theme-dark #sar-detail {
  background-color: #08090a;
}
.theme-dark #sar-detail #icon-caret-down path {
  fill: #a1a7aa;
}
.theme-dark .transmission-background {
  background-image: url("icons/transmission.svg");
  background-color: #08090a;
}
.theme-dark .template-background {
  background: linear-gradient(to right, #1d2529 10%, #2b353a 25%, #1d2529 40%);
}
.theme-dark .background-masker {
  background: #08090a;
}
.theme-dark .geotab-help-page--database-name-example .example-database-name {
  color: #80c4f9;
}
.theme-dark .icon-watchlist-toggle--small svg path {
  fill: #727e84;
}
.theme-dark .icon-watchlist-toggle--large svg path {
  fill: #727e84;
}
.theme-dark .icon--lit.icon-watchlist-toggle--large svg path {
  fill: #ffffff;
}
.theme-dark .icon--lit.icon-watchlist-toggle--small svg path {
  fill: #a1a7aa;
}
.theme-dark .text--vehicle-id, .theme-dark h3, .theme-dark .h3-style, .theme-dark .text--vehicle-id-table, .theme-dark .text--header,
.theme-dark .text--primary-body, .theme-dark .text--small-body-primary,
.theme-dark .text--error-message {
  color: #e8eaea;
}
.theme-dark .text--fcap-heading {
  color: #80bde0;
}
.theme-dark .text--table-label {
  color: #80bde0;
}
.theme-dark .text--search-placeholder,
.theme-dark .text--search-text,
.theme-dark .text--search-group-totalcount {
  color: #a1a7aa;
}
.theme-dark .information {
  background: #0067cd;
  box-shadow: 0 0 14px 0 rgba(0, 0, 0, 0.5);
  color: #ffffff;
}
.theme-dark a {
  color: #a1a7aa;
}
.theme-dark a:active, .theme-dark a:hover {
  color: #80bde0;
}
.theme-dark a .text--vehicle-id:hover {
  color: #80bde0;
}
.theme-dark .link-fancy {
  color: #80bde0;
}
.theme-dark .link-fancy:active, .theme-dark .link-fancy:hover, .theme-dark .link-fancy:focus {
  color: #80bde0;
}
.theme-dark .help-line-footer {
  color: #80bde0;
  font-family: "OpenSans-Regular";
  line-height: 1.67em;
  font-size: 0.75rem;
  display: flex;
}
.theme-dark .help-line-footer:active, .theme-dark .help-line-footer:hover, .theme-dark .help-line-footer:focus {
  color: #e8eaea;
  text-decoration: underline;
  color: #80bde0;
}
.theme-dark footer {
  border-color: #525252;
  background: #2b353a;
}
.theme-dark footer .text--footer-primary {
  color: #ffffff;
}
.theme-dark footer .text--footer-secondary {
  color: #e8eaea;
  margin: 0px;
  font-family: "OpenSans-Regular";
  line-height: 1.67em;
  font-size: 0.75rem;
}
.theme-dark .policies-partners-background {
  background-color: #08090a;
}
.theme-dark .policies-partners-caption {
  color: #a1a7aa;
}
.theme-dark .programming-item__row {
  background-color: #1d2529;
}
.theme-dark body {
  background: #182022;
  color: rgba(161, 167, 170, 0.3607843137);
}
.theme-dark .alert-sidebar {
  background-color: #1d2529;
}
.theme-dark .manage-reports-dashboard {
  background-color: #08090a;
}
.theme-dark .alert-title-text {
  color: #ffffff;
}
.theme-dark .alert-severity-row__frequency {
  color: #a1a7aa;
}
.theme-dark .input--has-error, .theme-dark .dropdown-input--has-error div {
  color: #ffffff;
  background-color: #525252;
  border-color: #d12421;
}
.theme-dark .input--background {
  background-color: #2b353a;
}
.theme-dark .text--header-heading {
  border-bottom-color: rgba(161, 167, 170, 0.3607843137);
}
.theme-dark .input--border-highlights:active, .theme-dark .input--border-highlights:focus {
  border-width: 2px;
}
.theme-dark .full-screen, .theme-dark .overlay {
  background: rgba(0, 0, 0, 0.5);
}
.theme-dark .sidebar {
  background: #13181b;
}
.theme-dark header {
  background: #343434;
}
.theme-dark .header__main {
  background-color: #007bc1;
}
.theme-dark .header__link {
  color: #ffffff;
}
.theme-dark .user-avatar {
  background: #e0eff8;
  color: #007bc1;
}
.theme-dark .empty-alert-dashboard {
  background-color: #08090a;
}
.theme-dark .cells > * + * {
  border-color: rgba(161, 167, 170, 0.3607843137);
}
.theme-dark nav::before {
  background: #343434;
  border-color: #525252;
}
.theme-dark nav > div::before {
  background: #e7e7e7;
  color: #525252;
  border-color: #939393;
}
.theme-dark ul.readout li {
  color: #e8eaea;
  background: #2b353a;
  border-color: #e8eaea;
}
.theme-dark .text-headline4,
.theme-dark h2, .theme-dark h3, .theme-dark h4 {
  color: #e8eaea;
}
.theme-dark .text--manage-reports-heading {
  color: #e8eaea;
}
.theme-dark .text--master-search {
  color: #a1a7aa;
}
.theme-dark .master-search__total-results {
  color: #e8eaea;
}
.theme-dark .severity-circle--stop-now {
  background-color: #ca3c3d;
}
.theme-dark .severity-circle--service-now {
  background-color: #f0cb2f;
}
.theme-dark .severity-circle--service-soon {
  background-color: #007bc1;
}
.theme-dark .severity-circle--informational {
  background-color: #80c4f9;
}
.theme-dark .organization-status-indicator--red {
  background-color: #ca3c3d;
}
.theme-dark .organization-status-indicator--gray {
  background-color: #a1a7aa;
}
.theme-dark .organization-status-indicator--green {
  background-color: #39b620;
}
.theme-dark .organization-status-indicator--yellow {
  background-color: #f0cb2f;
}
.theme-dark .heading-collapsible {
  border-color: rgba(161, 167, 170, 0.3607843137);
}
.theme-dark .text--heading-collapsible {
  color: #e8eaea;
}
.theme-dark .pulldown h2 {
  border-color: #e7e7e7;
  background: linear-gradient(#525252, #343434);
}
.theme-dark .pulldown .pulldown__heading {
  background-color: #1d2529;
  color: #e8eaea;
  border-bottom-color: rgba(161, 167, 170, 0.3607843137);
}
.theme-dark .pulldown__body {
  background: #1d2529;
}
.theme-dark .modal-main-content label {
  color: #e8eaea;
}
.theme-dark .modal-main-content .table {
  border: 1px solid;
  border-color: rgba(161, 167, 170, 0.3607843137);
  color: #e8eaea;
}
.theme-dark .modal-main-content .table td, .theme-dark .modal-main-content .table th {
  border-bottom: 1px solid rgba(161, 167, 170, 0.3607843137);
}
.theme-dark .modal-main-content .section label {
  color: #e8eaea;
  border-color: rgba(161, 167, 170, 0.3607843137);
}
.theme-dark .modal-main-content .section label .icon-container {
  color: rgba(161, 167, 170, 0.3607843137);
}
.theme-dark .modal-main-content .section label .text-container {
  color: #a1a7aa;
}
.theme-dark .modal-main-content .section label:focus, .theme-dark .modal-main-content .section label:active {
  border-color: #007bc1;
}
.theme-dark .custom-file-upload--narrow,
.theme-dark .custom-file-upload {
  background-color: #2b353a;
}
.theme-dark strong {
  color: #ffffff;
}
.theme-dark input,
.theme-dark textarea,
.theme-dark .ember-power-select-trigger {
  color: #a1a7aa;
  background-color: #2b353a;
  border-color: rgba(161, 167, 170, 0.3607843137);
}
.theme-dark input.light,
.theme-dark textarea.light,
.theme-dark .ember-power-select-trigger.light {
  border-color: #ffffff;
}
.theme-dark input:focus,
.theme-dark textarea:focus,
.theme-dark .ember-power-select-trigger:focus {
  border-color: #007bc1;
}
.theme-dark .master-search::before {
  border-bottom-color: #939393;
}
.theme-dark .master-search::after {
  border-bottom-color: #343434;
}
.theme-dark .master-search a,
.theme-dark .master-search a:visited {
  color: #939393;
}
.theme-dark .master-search__results, .theme-dark .master-search__results-inner, .theme-dark .master-search__input-wrapper {
  background: #2b353a;
  color: rgba(161, 167, 170, 0.3607843137);
}
.theme-dark .master-search__input {
  color: #e8eaea;
}
.theme-dark .master-search__sar-result,
.theme-dark .master-search__result {
  border-color: rgba(161, 167, 170, 0.3607843137);
}
.theme-dark .master-search__sar-result::before,
.theme-dark .master-search__result::before {
  border-color: transparent;
}
.theme-dark .master-search__group-header {
  background: #333d43;
  border-color: rgba(161, 167, 170, 0.3607843137);
}
.theme-dark .master-search__total-panel {
  background-color: #182022;
}
.theme-dark .master-search__result:hover td, .theme-dark .master-search__result:focus td {
  background-color: rgba(232, 234, 234, 0.1019607843);
}
.theme-dark .master-search__result:hover a, .theme-dark .master-search__result:focus a {
  background-color: rgba(232, 234, 234, 0.1019607843);
}
.theme-dark .master-search__result:hover button, .theme-dark .master-search__result:focus button {
  background: #ffffff;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.3);
  color: #343434;
}
.theme-dark .master-search__sar-result--hover:hover::before, .theme-dark .master-search__sar-result--hover:focus::before {
  border-left-color: #939393;
}
.theme-dark .list-header .bright {
  color: #e8eaea;
}
.theme-dark .link--disguised, .theme-dark .link--disguised:visited {
  color: #a1a7aa;
}
.theme-dark .link--disguised:hover, .theme-dark .link--disguised:focus {
  color: #80bde0;
}
.theme-dark .link--disguised.bright, .theme-dark .link--disguised.bright:visited {
  color: #ffffff;
}
.theme-dark .link--box {
  background-color: none;
  color: #939393;
}
.theme-dark .link--box, .theme-dark .link--box:visited {
  color: #939393;
}
.theme-dark .link--box.bright, .theme-dark .link--box.bright:visited {
  color: #ffffff;
}
.theme-dark .link--box.active, .theme-dark .link--box:hover, .theme-dark .link--box:focus {
  background-color: #0067cd;
  color: #ffffff;
}
.theme-dark .link--box.active .bright,
.theme-dark .link--box.active .text-highlight, .theme-dark .link--box:hover .bright,
.theme-dark .link--box:hover .text-highlight, .theme-dark .link--box:focus .bright,
.theme-dark .link--box:focus .text-highlight {
  background-color: #0067cd;
  color: #ffffff;
}
.theme-dark a.external-link-button {
  border-color: #0067cd;
  color: #e7e7e7;
}
.theme-dark a.external-link-button:hover, .theme-dark a.external-link-button:visited, .theme-dark a.external-link-button:active {
  color: #e7e7e7;
}
.theme-dark hr {
  border-color: #939393;
}
.theme-dark hr.darker {
  border-color: #525252;
}
.theme-dark hr.header {
  border-color: rgba(161, 167, 170, 0.3607843137);
}
.theme-dark legend {
  color: #ffffff;
}
.theme-dark .silty {
  background: #13181b;
}
.theme-dark .sediment {
  border-color: rgba(161, 167, 170, 0.3607843137);
}
.theme-dark .crt.crt--severity-informational {
  background: rgba(128, 196, 249, 0.15);
  border-color: #80c4f9;
  color: #80c4f9;
}
.theme-dark .crt.crt--severity-service-soon {
  background: rgba(0, 123, 193, 0.15);
  border-color: #007bc1;
  color: #007bc1;
}
.theme-dark .crt.crt--severity-service-now {
  background: rgba(240, 203, 47, 0.15);
  border-color: #f0cb2f;
  color: #f0cb2f;
}
.theme-dark .crt.crt--severity-stop-now {
  background: rgba(202, 60, 61, 0.15);
  border-color: #ca3c3d;
  color: #ca3c3d;
}
.theme-dark .crt.crt--severity-none {
  background: rgba(161, 167, 170, 0.15);
  border-color: #a1a7aa;
  color: #a1a7aa;
}
.theme-dark .crt.crt--no-border {
  border-color: #939393;
}
.theme-dark .callout {
  border-color: rgba(161, 167, 170, 0.3607843137);
}
.theme-dark .color-service-ranger {
  color: #f7f8f8;
}
.theme-dark .color-severity-none {
  color: #a1a7aa;
}
.theme-dark .color-severity-informational {
  color: #80c4f9;
}
.theme-dark .color-severity-service-soon {
  color: #007bc1;
}
.theme-dark .color-severity-service-now {
  color: #f0cb2f;
}
.theme-dark .color-severity-stop-now {
  color: #ca3c3d;
}
.theme-dark .column-headings {
  border-color: rgba(161, 167, 170, 0.3607843137);
  background: #1d2529;
}
.theme-dark .drawer {
  background: #292929;
  border-bottom-color: rgba(161, 167, 170, 0.3607843137);
}
.theme-dark .drawer.drawer--no-background {
  background: none;
}
.theme-dark .corners {
  background-image: linear-gradient(#e8eaea, #e8eaea), linear-gradient(#e8eaea, #e8eaea), linear-gradient(#e8eaea, #e8eaea), linear-gradient(#e8eaea, #e8eaea), linear-gradient(#e8eaea, #e8eaea), linear-gradient(#e8eaea, #e8eaea), linear-gradient(#e8eaea, #e8eaea), linear-gradient(#e8eaea, #e8eaea);
}
.theme-dark .blurbox {
  color: #e8eaea;
  background-color: #2b353a;
  border-color: #2b353a;
}
.theme-dark .bright {
  color: #e8eaea;
}
.theme-dark .bright.hover:hover, .theme-dark .bright.hover:focus {
  color: #939393;
}
.theme-dark .queried .bright,
.theme-dark .queried strong {
  color: #939393;
}
.theme-dark .bright--undimmable {
  color: #e8eaea !important;
}
.theme-dark .text-highlight {
  color: #80bde0;
}
.theme-dark .muted {
  color: #525252;
}
.theme-dark .pip::after {
  border-color: #939393 transparent transparent transparent;
}
.theme-dark .label--is-disabled .pip::after {
  border-color: #525252 transparent transparent transparent;
}
.theme-dark .pip.bright::after {
  border-color: #ffffff transparent transparent transparent;
}
.theme-dark .dropdown .dropdown__current {
  color: #e8eaea;
  border-color: rgba(161, 167, 170, 0.3607843137);
}
.theme-dark .dropdown .dropdown__drop {
  background-color: #1d2529;
  box-shadow: 0px 1px 18px 0px rgba(0, 0, 0, 0.12), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 3px 5px -1px rgba(0, 0, 0, 0.2);
}
.theme-dark .dropdown .dropdown__drop .pip::after {
  border-color: transparent transparent #ffffff transparent;
}
.theme-dark .dropdown .dropdown__drop .dropdown__current {
  color: #e8eaea;
  border-color: rgba(161, 167, 170, 0.3607843137);
}
.theme-dark .date-range-drop-down__picker-option {
  color: #ffffff;
}
.theme-dark .date-range-drop-down__picker-option:hover, .theme-dark .date-range-drop-down__picker-option:focus {
  color: #80bde0;
}
.theme-dark .has-popover .text {
  color: #0067cd;
}
.theme-dark .pop > div {
  background-color: #292929;
  border-color: #939393;
}
.theme-dark .pop::before {
  border-bottom-color: #292929;
}
.theme-dark .pop::after {
  border-bottom: 10px solid #525252;
}
.theme-dark .header__popup {
  background-color: #1d2529;
}
.theme-dark .pop--with-header::before {
  border-bottom-color: #525252;
}
.theme-dark .pop--with-header::after {
  border-bottom-color: #e7e7e7;
}
.theme-dark .map [type=checkbox]:checked + span,
.theme-dark .map [type=radio]:checked + span {
  color: #000000;
}
.theme-dark .map span {
  color: #a1a7aa;
}
.theme-dark .section-header {
  border-color: rgba(161, 167, 170, 0.3607843137);
  color: #e8eaea;
}
.theme-dark section.sar-detail .body .subsection {
  color: #e8eaea;
}
.theme-dark .box {
  background: #1d2529;
  border-color: rgba(161, 167, 170, 0.3607843137);
}
.theme-dark .box--muted {
  background: rgba(0, 103, 205, 0.1);
  border-color: rgba(231, 231, 231, 0.3);
}
.theme-dark .edit-text {
  color: #939393;
}
.theme-dark .row,
.theme-dark .row + .drawer {
  border-color: rgba(161, 167, 170, 0.3607843137);
}
.theme-dark .row--disabled {
  color: rgba(123, 131, 135, 0.3607843137);
}
.theme-dark .side-panel {
  background: #292929;
}
.theme-dark .calendar__control {
  color: #80bde0;
}
.theme-dark .calendar__day--is-selected,
.theme-dark .calendar__day:hover, .theme-dark .calendar__day:focus {
  color: #e8eaea;
  background-color: rgba(0, 123, 194, 0.2);
}
.theme-dark .calendar__day-disabled {
  color: #e8eaea;
}
.theme-dark .dropdown .calendar {
  background: #1d2529;
}
.theme-dark .tabs__tab-name.selected {
  background-color: #525252;
}
.theme-dark .tabs__inner {
  background-color: #525252;
}
.theme-dark .sar-bar {
  background: #0067cd;
}
.theme-dark .sar-bar--cummins {
  background: #da291c;
}
.theme-dark .error {
  color: #d12421;
}
.theme-dark .trench {
  background: #2b353a;
}
.theme-dark .trench__pip::before {
  background-color: #2b353a;
}
.theme-dark ul.gridiron li {
  border-color: #939393;
  color: #ffffff;
}
.theme-dark ul.gridiron li:hover, .theme-dark ul.gridiron li:focus {
  background-color: #525252;
}
.theme-dark .focus-page {
  background-color: #292929;
  border-color: #525252 transparent;
}
.theme-dark .highlight--change {
  background-color: rgba(0, 123, 194, 0.2);
}
.theme-dark .highlight--severity-stop-now::before {
  background-image: linear-gradient(transparent 0%, rgba(202, 60, 61, 0.2) 100%);
}
.theme-dark .highlight--severity-service-now::before {
  background-image: linear-gradient(transparent 0%, rgba(240, 203, 47, 0.2) 100%);
}
.theme-dark .highlight--severity-service-soon::before {
  background-image: linear-gradient(transparent 0%, rgba(0, 123, 193, 0.2) 100%);
}
.theme-dark .highlight--severity-informational::before {
  background-image: linear-gradient(transparent 0%, rgba(128, 196, 249, 0.2) 100%);
}
.theme-dark .highlight--severity-none::before {
  background-image: linear-gradient(transparent 0%, rgba(161, 167, 170, 0.2) 100%);
}
.theme-dark .header__highlight {
  background-color: #ffffff;
  color: #343434;
}
.theme-dark .header__highlight.pip::after {
  border-top-color: #343434;
}
.theme-dark .header_SelectFleet {
  background-color: #007bc1;
  color: #e8eaea;
  opacity: 36;
  border-radius: 20px;
  font-family: "OpenSans-Regular", Verdana, Geneva, Tahoma, sans-serif;
  font-size: 1rem;
  line-height: 1.5em;
}
.theme-dark .header_SelectFleet.pip::after {
  border-top-color: #343434;
}
.theme-dark .separator {
  background-color: #ffffff;
}
.theme-dark .controllable__controls {
  color: #e7e7e7;
}
.theme-dark .list--grill li {
  border-color: rgba(161, 167, 170, 0.3607843137);
}
.theme-dark .plus::after, .theme-dark .plus::before {
  background: #939393;
}
.theme-dark .plus--bright::after, .theme-dark .plus--bright::before {
  background: #ffffff;
}
.theme-dark .range__separator {
  color: #a1a7aa;
}
.theme-dark .page-nav {
  border-color: rgba(161, 167, 170, 0.3607843137);
  background-color: #1d2529;
}
.theme-dark .errors {
  color: #ca3c3d;
}
.theme-dark .errors a {
  color: #ca3c3d;
}
.theme-dark .label--is-disabled {
  color: #525252;
}
.theme-dark .border-right,
.theme-dark .bordered > * {
  border-color: #525252;
}
.theme-dark .half-opacity {
  opacity: 0.5;
}
.theme-dark .fleet-nav__bottom-bar {
  border-bottom-color: #0067cd;
}
.theme-dark .fleet-nav__content {
  border-right-color: #343434;
}
.theme-dark .registration-modal {
  border-color: rgba(161, 167, 170, 0.3607843137);
  background: #1d2529;
}
.theme-dark .terms-conditions__title {
  color: #e8eaea;
}
.theme-dark .terms-conditions__table-border {
  color: rgba(161, 167, 170, 0.3607843137);
}
.theme-dark .data-grouping__top-divider,
.theme-dark .data-grouping__bottom-divider {
  color: rgba(161, 167, 170, 0.3607843137);
}
.theme-dark .data-grouping__heading-top-border {
  border-color: #939393;
}
.theme-dark .licensing-pdf-link-divider {
  color: rgba(161, 167, 170, 0.3607843137);
}
.theme-dark .data-grouping__heading-bottom-border {
  border-color: #939393;
}
.theme-dark .training-border {
  border-color: #939393;
}
.theme-dark .navigation-dot.current {
  background-color: #939393;
}
.theme-dark .data-grouping__gray-border {
  border-color: rgba(161, 167, 170, 0.3607843137);
}
.theme-dark .selected-alert {
  /* Rectangle 504: */
  background-image: linear-gradient(-270deg, #000000 8%, #343434 100%);
}
.theme-dark .text--secondary {
  color: #a1a7aa;
}
.theme-dark .text--severity-service-now {
  color: #f0cb2f;
}
.theme-dark .text--severity-stop-now {
  color: #ca3c3d;
}
.theme-dark .text--severity-service-soon {
  color: #007bc1;
}
.theme-dark .text--severity-informational {
  color: #80c4f9;
}
.theme-dark .user-dropdown > * a {
  color: #e8eaea;
}
.theme-dark .user-dropdown > :last-child {
  border-color: #525252;
}
.theme-dark .save-filterset-input {
  border-bottom-color: rgba(161, 167, 170, 0.3607843137);
  color: #a1a7aa;
}
.theme-dark .sr-data-triptych {
  border-color: rgba(161, 167, 170, 0.3607843137);
}
.theme-dark .sr-data-triptych:last-child {
  border-right: none;
  flex: 1;
}
.theme-dark .user-table {
  background: #1d2529;
}
.theme-dark .minimal-tab .selected-tab {
  color: #ffffff;
  background-color: transparent;
  border-bottom: 3px solid #ffffff;
}
.theme-dark .minimal-tab .not-selected-tab {
  background-color: transparent;
  border-bottom: 1px solid #939393;
}
.theme-dark .minimal-tab div {
  border-bottom: 1px solid #939393;
}
.theme-dark .password-criteria li {
  color: #a1a7aa;
}
.theme-dark .password-criteria li #icon-bullet-check {
  fill: #424e54;
}
.theme-dark .password-criteria li.satisfied {
  color: rgba(123, 131, 135, 0.3607843137);
}
.theme-dark .password-criteria li.satisfied #icon-bullet-check {
  fill: #007bc1;
}
.theme-dark .multiselect {
  border-color: #ffffff;
}
.theme-dark .multiselect .dropdown__drop {
  border-color: #939393;
}
.theme-dark .multi-select-disabled {
  color: #939393;
}
.theme-dark .dropdown-item__container {
  border-color: #525252;
}
.theme-dark .anim-tunnel-truck .tunnel-wall {
  fill: #292929;
}
.theme-dark .loading-text {
  color: #a1a7aa;
}
.theme-dark .download-service-routines {
  color: white;
}
.theme-dark .fault-group-label {
  color: #ffffff !important;
}
.theme-dark .fault-group-main-container fieldset {
  border-color: rgba(161, 167, 170, 0.3607843137);
  background-color: #1d2529;
}
.theme-dark .fault-group-remove {
  background-color: #1d2529;
  color: #80bde0;
}
.theme-dark .fault-group-power-select-trigger {
  border-color: rgba(161, 167, 170, 0.3607843137) !important;
}
.theme-dark .fault-group-legend {
  color: #e8eaea;
  background-color: #1d2529;
}
.theme-dark .fault-group-input-error {
  border-color: #d12421;
}
.theme-dark .fullscreen-truck {
  background-image: linear-gradient(transparent 0%, transparent 33%, #343434 66%, #343434 100%);
}
.theme-dark .fullscreen-truck:before {
  box-shadow: inset 2px 1px 15px 0 #000000;
}
.theme-dark .page-title {
  background: #0067cd;
  color: #ffffff;
}
.theme-dark .vehicle-nav__update-available-dot {
  background-color: #e8b012;
}
.theme-dark .profile-row {
  border-color: #525252;
}
.theme-dark .profile-row--data-row {
  color: #ffffff;
  border-color: #4e4e4e;
}
.theme-dark .modal-contents {
  color: #a1a7aa;
}
.theme-dark .modal-contents .modal-message a {
  color: #80bde0;
}
.theme-dark .modal-contents .list-of-errors {
  color: #e8eaea;
}
.theme-dark .row__link-column {
  color: #939393;
}
.theme-dark .row__link-column:hover, .theme-dark .row__link-column:hover .bright {
  color: #0067cd;
}
.theme-dark .row__link-column:focus, .theme-dark .row__link-column:focus .bright {
  color: #0067cd;
}
.theme-dark .sidebar--label__selected {
  background-color: rgba(0, 123, 194, 0.2);
}
.theme-dark .sidebar--label__selected .text--label {
  color: #80bde0;
}
.theme-dark .text--label {
  color: #e8eaea;
}
.theme-dark .sidebar--label {
  border-bottom: 1px solid rgba(161, 167, 170, 0.3607843137);
  border-color: rgba(161, 167, 170, 0.3607843137);
  color: #e8eaea;
}
.theme-dark .tabbed-table--sidebar {
  border-right: 1px solid rgba(161, 167, 170, 0.3607843137);
}
.theme-dark .diagnostics__header {
  border-bottom: 1px solid rgba(161, 167, 170, 0.3607843137);
}
.theme-dark .filter-bar {
  background: #333d43;
}
.theme-dark .bg-disabled {
  background-color: rgba(123, 131, 135, 0.3607843137);
}
.theme-dark .slider::before {
  background-image: url("icons/check-tiny.svg");
  background-color: rgba(128, 189, 224, 0.5019607843);
}
.theme-dark .slider::after {
  background-image: url("icons/x-tiny.svg");
  background-color: rgba(123, 131, 135, 0.3607843137);
}
.theme-dark .slider__toggle {
  background-image: linear-gradient(#ffffff 0%, #ffffff 100%);
  border-color: #343434;
}
.theme-dark .slider--is-on .slider__toggle {
  background: #80bde0;
}
.theme-dark .checkbox-button {
  color: #939393;
  margin-top: 3px;
}
.theme-dark .checkbox-button [type=checkbox] {
  border: 1px solid;
  border-color: #939393;
  display: block;
}
.theme-dark .checkbox-button:hover, .theme-dark .checkbox-button:focus {
  border-color: #ffffff;
}
.theme-dark .checkbox-button:hover [type=checkbox], .theme-dark .checkbox-button:focus [type=checkbox] {
  border-color: #ffffff;
}
.theme-dark .checkbox-button:checked {
  color: #ffffff;
  border-color: #ffffff;
  background-image: url("icons/check-tiny.svg"), linear-gradient(-180deg, #0D7CEA 0%, #00478D 100%);
  background-repeat: no-repeat;
  background-position: 60% 60%;
}
.theme-dark .sar-button {
  /* SAR compact button */
}
.theme-dark .sar-button__severity-id {
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.12), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 2px 1px -1px rgba(0, 0, 0, 0.2);
}
.theme-dark .sar-button__severity-id--severity-service-soon {
  background-color: #007bc1 !important;
  color: #ffffff;
}
.theme-dark .sar-button__severity-id--severity-informational {
  background-color: #80c4f9 !important;
  color: #424e54;
}
.theme-dark .sar-button__severity-id--severity-service-now {
  background-color: #f0cb2f !important;
  color: #424e54;
}
.theme-dark .sar-button__severity-id--severity-stop-now {
  background-color: #ab1a1a !important;
  color: #ffffff;
}
.theme-dark .sar-button__severity-id--severity-none {
  background-color: #a1a7aa !important;
  color: #ffffff;
}
.theme-dark .sar-button__severity-id--service-ranger {
  background-color: #f7f8f8 !important;
  color: #424e54;
}
.theme-dark .sar-button__sar-id {
  background-color: transparent;
}
.theme-dark .sar-button__sar-id--severity-service-soon {
  border: 1px solid #007bc1 !important;
  color: #e8eaea;
}
.theme-dark .sar-button__sar-id--severity-service-soon:hover {
  background-color: #007bc1;
  color: #ffffff;
}
.theme-dark .sar-button__sar-id--severity-informational {
  border: 1px solid #80c4f9 !important;
  color: #e8eaea;
}
.theme-dark .sar-button__sar-id--severity-informational:hover {
  background-color: #80c4f9;
  color: #424e54;
}
.theme-dark .sar-button__sar-id--severity-service-now {
  border: 1px solid #f0cb2f !important;
  color: #e8eaea;
}
.theme-dark .sar-button__sar-id--severity-service-now:hover {
  background-color: #f0cb2f;
  color: #424e54;
}
.theme-dark .sar-button__sar-id--severity-stop-now {
  border: 1px solid #ab1a1a !important;
  background-color: #ca3c3d;
  color: #ffffff;
}
.theme-dark .sar-button__sar-id--severity-stop-now:hover {
  background-color: #ab1a1a;
}
.theme-dark .sar-button__sar-id--severity-none {
  border: 1px solid #a1a7aa !important;
  color: #e8eaea;
}
.theme-dark .sar-button__sar-id--severity-none:hover {
  background-color: #a1a7aa;
  color: #ffffff;
}
.theme-dark .sar-button__sar-id--service-ranger {
  border: 1px solid #f7f8f8 !important;
  color: #e8eaea;
}
.theme-dark .sar-button__sar-id--service-ranger:hover {
  background-color: #f7f8f8;
  color: #424e54;
}
.theme-dark .sar-button-compact__severity-id {
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.12), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 2px 1px -1px rgba(0, 0, 0, 0.2);
}
.theme-dark .sar-button-compact__severity-id--severity-service-soon {
  background-color: #007bc1;
  color: #ffffff;
}
.theme-dark .sar-button-compact__severity-id--severity-informational {
  background-color: #80c4f9;
  color: #424e54;
}
.theme-dark .sar-button-compact__severity-id--severity-service-now {
  background-color: #f0cb2f;
  color: #424e54;
}
.theme-dark .sar-button-compact__severity-id--severity-stop-now {
  background-color: #ab1a1a;
  color: #ffffff;
}
.theme-dark .sar-button-compact__severity-id--severity-none {
  background-color: #a1a7aa;
  color: #ffffff;
}
.theme-dark .sar-button-compact__severity-id--service-ranger {
  background-color: #f7f8f8;
  color: #424e54;
}
.theme-dark .sar-button-compact__sar-id {
  background-color: transparent;
  color: #e8eaea;
}
.theme-dark .sar-button-compact__sar-id--severity-service-soon {
  border-color: #007bc1;
}
.theme-dark .sar-button-compact__sar-id--severity-informational {
  border-color: #80c4f9;
}
.theme-dark .sar-button-compact__sar-id--severity-service-now {
  border-color: #f0cb2f;
}
.theme-dark .sar-button-compact__sar-id--severity-stop-now {
  border-color: #ab1a1a;
}
.theme-dark .sar-button-compact__sar-id--severity-none {
  border-color: #a1a7aa;
}
.theme-dark .sar-button-compact__sar-id--service-ranger {
  border-color: #f7f8f8;
}
.theme-dark .refresh-button {
  color: rgba(123, 131, 135, 0.3607843137);
  border-color: rgba(123, 131, 135, 0.3607843137);
}
.theme-dark .refresh-button.stop-now {
  border: none;
  background-color: #ca3c3d;
  color: #ffffff;
}
.theme-dark .refresh-button.stop-now:hover, .theme-dark .refresh-button.stop-now:focus {
  background: #ca3c3d;
  color: #ffffff;
}
.theme-dark .refresh-button.stop-now:hover, .theme-dark .refresh-button.stop-now:focus {
  color: #ffffff;
  background-image: linear-gradient(0deg, #881715 0%, #D12421 100%);
}
.theme-dark .button-search--show-more {
  color: #80bde0;
  background-color: transparent;
  border: 1px solid;
  border-color: #80bde0;
}
.theme-dark .button-search--show-more:hover, .theme-dark .button-search--show-more:focus {
  background-color: rgba(0, 123, 194, 0.2);
}
.theme-dark .button-search--show-more:active {
  background-color: rgba(0, 123, 194, 0.3607843137);
}
.theme-dark .download-link:hover circle {
  fill: #343434;
}
.theme-dark .ss-vpa-button {
  border-color: rgba(123, 131, 135, 0.3607843137);
}
.theme-dark .ss-vpa-button--clickable {
  border-color: #f7f8f8;
}
.theme-dark .ss-vpa-button--clickable:hover, .theme-dark .ss-vpa-button--clickable:focus {
  background-color: #f7f8f8;
  color: #1d2529;
  border-color: #1d2529 !important;
}
.theme-dark .ss-vpa-button__segment {
  border-color: rgba(123, 131, 135, 0.3607843137);
  color: rgba(123, 131, 135, 0.3607843137);
}
.theme-dark .ss-vpa-button__segment--present {
  border-color: inherit;
  color: inherit;
}
.theme-dark .radio-button {
  background-image: url("icons/radio-button.svg");
  background-repeat: no-repeat;
  min-width: 8px;
  min-height: 8px;
  margin: -2px 0 0 -1px;
}
.theme-dark .icon-up {
  background-image: url("icons/caret-up-gray.svg");
  background-repeat: no-repeat;
  min-width: 9px;
  min-height: 6px;
  margin-bottom: 2px;
}
.theme-dark .icon-up-small {
  background-image: url("icons/caret-up-gray.svg");
  background-repeat: no-repeat;
  min-width: 8px;
  min-height: 5.33px;
  background-size: 8px 5.33px;
  background-position: center;
  margin-bottom: 2px;
}
.theme-dark .icon-up-big {
  background-image: url("icons/caret-up-gray.svg");
  background-repeat: no-repeat;
  min-width: 15px;
  min-height: 10px;
  background-size: 15px 10px;
  background-position: center;
  margin-bottom: 5px;
}
.theme-dark .sort-asc::before {
  content: "A-Z";
}
.theme-dark .sort-desc::before {
  content: "Z-A";
}
.theme-dark .icon-intelliconnect {
  background-image: url("icons/intelliconnect-logo-colored.svg");
  background-repeat: no-repeat;
  min-width: 398px;
  min-height: 64px;
}
.theme-dark .icon-intelliconnect-white {
  background-image: url("icons/intelliconnect-logo.svg");
  background-repeat: no-repeat;
  min-width: 398px;
  min-height: 64px;
}
.theme-dark .icon--hover:hover.icon-intelliconnect, .theme-dark .icon--hover:focus.icon-intelliconnect {
  background-image: url("icons/intelliconnect-logo.svg");
  background-repeat: no-repeat;
  min-width: 398px;
  min-height: 64px;
}
.theme-dark .radio-button {
  background-image: url("icons/radio-button.svg");
  background-repeat: no-repeat;
  min-width: 8px;
  min-height: 8px;
  margin: -2px 0 0 -1px;
}
.theme-dark .icon-refresh-resting {
  background-image: url("icons/refresh-stop.svg");
  background-repeat: no-repeat;
  min-width: 12px;
  min-height: 12px;
  margin: -3px 2px 0 0;
}
.theme-dark .icon-refresh-disabled {
  background-image: url("icons/refresh-disabled.svg");
  background-repeat: no-repeat;
  min-width: 12px;
  min-height: 12px;
  margin: -3px 2px 0 0;
}
.theme-dark .icon-refresh-stop {
  background-image: url("icons/refresh-stop.svg");
  background-repeat: no-repeat;
  min-width: 12px;
  min-height: 12px;
  margin: -3px 2px 0 0;
}
.theme-dark .bright > .icon-refresh {
  background-image: url("icons/refresh-stop.svg");
  background-repeat: no-repeat;
  min-width: 12px;
  min-height: 12px;
  margin: -3px 2px 0 0;
}
.theme-dark .hover-icon:hover .icon-refresh-resting, .theme-dark .hover-icon:focus .icon-refresh-resting, .theme-dark a.active .icon-refresh-resting {
  background-image: url("icons/refresh-hover.svg");
  background-repeat: no-repeat;
  min-width: 12px;
  min-height: 12px;
  margin: -3px 2px 0 0;
}
.theme-dark .icon-warning {
  background-image: url("icons/warning.svg");
  background-repeat: no-repeat;
  min-width: 12px;
  min-height: 12px;
}
.theme-dark .icon-confirm {
  background-image: url("icons/confirm.svg");
  background-repeat: no-repeat;
  min-width: 12px;
  min-height: 12px;
}
.theme-dark .icon-confirm-inactive {
  background-image: url("icons/confirm-inactive.svg");
  background-repeat: no-repeat;
  min-width: 12px;
  min-height: 12px;
}
.theme-dark .icon-confirm-primary {
  background-image: url("icons/confirm-primary.svg");
  background-repeat: no-repeat;
  min-width: 20px;
  min-height: 20px;
}
.theme-dark .icon-deny-primary {
  background-image: url("icons/deny-primary.svg");
  background-repeat: no-repeat;
  min-width: 20px;
  min-height: 20px;
}
.theme-dark .icon-delete-inactive svg path {
  fill: #727e84;
}
.theme-dark .icon-delete-inactive:hover svg path,
.theme-dark .icon-delete-inactive:focus svg path {
  fill: #ffffff;
}
.theme-dark .icon-delete svg path {
  fill: #ffffff;
}
.theme-dark .icon-organization {
  background-image: url("icons/business.svg");
  background-repeat: no-repeat;
  min-width: 12px;
  min-height: 13px;
}
.theme-dark .icon-download {
  background-image: url("icons/download.svg");
  background-repeat: no-repeat;
  min-width: 12px;
  min-height: 12px;
}
.theme-dark .icon-download-gray {
  background-image: url("icons/download-inactive.svg");
  background-repeat: no-repeat;
  min-width: 12px;
  min-height: 12px;
}
.theme-dark .icon-address {
  background-image: url("icons/address.svg");
  background-repeat: no-repeat;
  min-width: 12px;
  min-height: 12px;
}
.theme-dark .icon-address-inactive {
  background-image: url("icons/address-inactive.svg");
  background-repeat: no-repeat;
  min-width: 12px;
  min-height: 12px;
}
.theme-dark .icon-cummins-compact {
  background-image: url("icons/cummins-logo-white.svg");
  background-repeat: no-repeat;
  min-width: 22px;
  min-height: 22px;
  background-size: 22px 22px;
  background-position: center;
}
.theme-dark .icon-cummins-small {
  background-image: url("icons/cummins-logo-white.svg");
  background-repeat: no-repeat;
  min-width: 32px;
  min-height: 32px;
  background-size: 32px 32px;
  background-position: center;
}
.theme-dark .icon-cummins-sar-header {
  background-image: url("icons/cummins-logo-white.svg");
  background-repeat: no-repeat;
  min-width: 30px;
  min-height: 30px;
  background-size: 30px 30px;
  background-position: center;
}
.theme-dark .icon-user-generated {
  background-image: url("icons/user-generated-sar-icon.svg");
  background-repeat: no-repeat;
  min-width: 32px;
  min-height: 34px;
  background-size: 32px 34px;
  background-position: center;
}
.theme-dark .icon-user-generated-compact {
  background-image: url("icons/user-generated-sar-icon.svg");
  background-repeat: no-repeat;
  min-width: 20px;
  min-height: 20px;
  background-size: 20px 20px;
  background-position: center;
}
.theme-dark .icon-cancel {
  background-image: url("icons/cancel.svg");
  background-repeat: no-repeat;
  min-width: 26px;
  min-height: 26px;
}
.theme-dark .x-chip {
  background-image: url("icons/x-chip.svg");
  background-repeat: no-repeat;
  min-width: 18px;
  min-height: 18px;
  background-size: 18px 18px;
  background-position: center;
}
.theme-dark .x-chip:hover, .theme-dark .x-chip:focus {
  background-image: url("icons/x-chip-hover.svg");
  background-repeat: no-repeat;
  min-width: 18px;
  min-height: 18px;
  background-size: 18px 18px;
  background-position: center;
}
.theme-dark .icon-more-info {
  background-image: url("icons/question-mark.svg");
  background-repeat: no-repeat;
  min-width: 14px;
  min-height: 14px;
  background-size: 14px 14px;
  background-position: center;
}
.theme-dark .icon-unsubscribed-user {
  background-image: url("icons/exclamation-point.svg");
  background-repeat: no-repeat;
  min-width: 14px;
  min-height: 14px;
  background-size: 14px 14px;
  background-position: center;
}
.theme-dark .icon-information-gray {
  background-image: url("icons/information-gray.svg");
  background-repeat: no-repeat;
  min-width: 24px;
  min-height: 25px;
  background-size: 24px 25px;
  background-position: center;
}
.theme-dark .icon-expand-text {
  background-image: url("icons/expand-text.svg");
  background-repeat: no-repeat;
  min-width: 24px;
  min-height: 12px;
}
.theme-dark .icon-user-available {
  background-image: url("icons/user-available.svg");
  background-repeat: no-repeat;
  min-width: 16px;
  min-height: 16px;
}
.theme-dark .icon-edit-dropdown {
  background-image: url("icons/pencil-inactive.svg");
  background-repeat: no-repeat;
  min-width: 12px;
  min-height: 11px;
}
.theme-dark .icon-edit--lit.icon-edit-dropdown {
  background-image: url("icons/pencil-active.svg");
  background-repeat: no-repeat;
  min-width: 12px;
  min-height: 11px;
}
.theme-dark .icon-help-info {
  background-image: url("icons/info-icon.svg");
  background-repeat: no-repeat;
  min-width: 12px;
  min-height: 12px;
}
.theme-dark .icon-copied {
  background-image: url("icons/copied.svg");
  background-repeat: no-repeat;
  min-width: 117px;
  min-height: 50px;
}
.theme-dark .icon-copy-all {
  background-image: url("icons/copy-all.svg");
  background-repeat: no-repeat;
  min-width: 90px;
  min-height: 22px;
}
.theme-dark .icon--hover:hover.icon-copy-all, .theme-dark .icon--hover:focus.icon-copy-all {
  background-image: url("icons/copy-all-lit.svg");
  background-repeat: no-repeat;
  min-width: 90px;
  min-height: 22px;
}
.theme-dark .icon-lock {
  background-image: url("icons/lock.svg");
  background-repeat: no-repeat;
  min-width: 16px;
  min-height: 16px;
}
.theme-dark .icon-arrow-valid-change path {
  fill: #80bde0;
}
.theme-dark nav::before {
  box-shadow: 3px 0 12px 0 rgba(0, 0, 0, 0.5);
}
.theme-dark nav > div::before {
  box-shadow: 5px 5px 4px 0 rgba(0, 0, 0, 0.5);
}
.theme-dark .blurbox {
  box-shadow: 0 0 3px 2px black, 0 -1px 5px 1px rgba(29, 37, 41, 0.4), 0 1px 5px 1px rgba(232, 234, 234, 0.6);
}
.theme-dark [type=radio]:checked + span::before, .theme-dark [type=checkbox]:checked + span::before {
  box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, 0.3);
}
.theme-dark [type=radio] + span[data-content]::before, .theme-dark [type=checkbox] + span[data-content]::before {
  box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, 0.3), 0 1px 3px 0 rgba(0, 0, 0, 0.3);
}
.theme-dark .dropdown .calendar {
  box-shadow: 0 2px 4px 0 #000000;
}
.theme-dark .dropdown .calendar.-position-up {
  box-shadow: 0 -2px 4px 0 #000000;
}
.theme-dark .inner-shadow {
  box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.5);
}
.theme-dark .recessed {
  box-shadow: inset 4px 4px 9px 0 rgba(0, 0, 0, 0.5), inset 0 0 20px 0 rgba(231, 231, 231, 0.2);
}
.theme-dark .recessed--muted {
  box-shadow: inset 0 0 9px 0 rgba(0, 0, 0, 0.5);
}
.theme-dark .slider {
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
}
.theme-dark .slider__toggle {
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5), inset 0 1px 2px 0 rgba(255, 255, 255, 0.31);
}
.theme-dark .trench {
  box-shadow: drop-shadow(0px 1px 3px rgba(0, 0, 0, 0.12)) drop-shadow(0px 1px 1px rgba(0, 0, 0, 0.14)) drop-shadow(0px 2px 1px rgba(0, 0, 0, 0.2));
}
.theme-dark .trench--under-overlay {
  box-shadow: inset 18px 17px 15px -16px #000000, inset -18px -17px 15px -16px #000000;
}
.theme-dark .trench--overlay {
  box-shadow: inset 16px 17px 15px -16px #000000, inset 16px -17px 15px -16px #000000;
}
.theme-dark .cloud {
  box-shadow: 3px 0 12px 0 rgba(0, 0, 0, 0.5);
}

.style-guide {
  height: calc(100vh - 64px);
  display: flex;
  flex-direction: column;
}

.style-guide-icons i, .style-guide-icons svg {
  margin-right: 10px;
}

.style-guide__section {
  flex: 1;
}

.text-card > * {
  margin-left: 1rem;
}
.text-card > *:first-child {
  margin-left: 0;
  margin-bottom: 0.3rem;
}

.style-guide-text-fields {
  display: inline-flex;
  align-items: center;
  width: 50%;
}
.style-guide-text-fields > * {
  margin-left: 1rem;
}

.swatches {
  display: flex;
  flex-wrap: wrap;
}

.swatch {
  border-radius: 4px;
  width: 10rem;
  height: 6rem;
  margin-right: 0.5rem;
  margin-top: 1rem;
  padding: 0.5rem;
  display: inline-block;
}

.button--style-guide {
  border-radius: 0;
  border: 1px solid black;
  background: lightgray !important;
  color: black !important;
  margin-bottom: 1rem;
}

table.image-demo {
  border-collapse: collapse;
}
table.image-demo td {
  padding: 5px;
  border-bottom: 1px solid black;
}
table.image-demo img {
  max-height: 100px;
  max-width: 300px;
}

.style-guide-fullscreen-truck-holder {
  border: 1px solid white;
  background-color: hsl(2, 57%, 40%);
  background-image: repeating-linear-gradient(transparent, transparent 50px, rgba(0, 0, 0, 0.4) 50px, rgba(0, 0, 0, 0.4) 53px, transparent 53px, transparent 63px, rgba(0, 0, 0, 0.4) 63px, rgba(0, 0, 0, 0.4) 66px, transparent 66px, transparent 116px, rgba(0, 0, 0, 0.5) 116px, rgba(0, 0, 0, 0.5) 166px, rgba(255, 255, 255, 0.2) 166px, rgba(255, 255, 255, 0.2) 169px, rgba(0, 0, 0, 0.5) 169px, rgba(0, 0, 0, 0.5) 179px, rgba(255, 255, 255, 0.2) 179px, rgba(255, 255, 255, 0.2) 182px, rgba(0, 0, 0, 0.5) 182px, rgba(0, 0, 0, 0.5) 232px, transparent 232px), repeating-linear-gradient(270deg, transparent, transparent 50px, rgba(0, 0, 0, 0.4) 50px, rgba(0, 0, 0, 0.4) 53px, transparent 53px, transparent 63px, rgba(0, 0, 0, 0.4) 63px, rgba(0, 0, 0, 0.4) 66px, transparent 66px, transparent 116px, rgba(0, 0, 0, 0.5) 116px, rgba(0, 0, 0, 0.5) 166px, rgba(255, 255, 255, 0.2) 166px, rgba(255, 255, 255, 0.2) 169px, rgba(0, 0, 0, 0.5) 169px, rgba(0, 0, 0, 0.5) 179px, rgba(255, 255, 255, 0.2) 179px, rgba(255, 255, 255, 0.2) 182px, rgba(0, 0, 0, 0.5) 182px, rgba(0, 0, 0, 0.5) 232px, transparent 232px), repeating-linear-gradient(125deg, transparent, transparent 2px, rgba(0, 0, 0, 0.2) 2px, rgba(0, 0, 0, 0.2) 3px, transparent 3px, transparent 5px, rgba(0, 0, 0, 0.2) 5px);
}

.style-guide-fleet-filter .fleet-filter-sidebar {
  position: relative;
  height: auto;
}

.style-guide-expandable-filter .expandable {
  position: relative;
  height: auto;
  width: 30%;
}

.style-guide-vehicle-severity-indicator .style-card__body {
  display: flex;
  flex-direction: row;
  gap: 50px;
}

.style-guide-controls {
  display: flex;
  flex-direction: row;
}
.style-guide-controls > * {
  margin-right: 1em;
}

.style-guide-table th {
  color: white;
  text-align: center;
}
.style-guide-table td {
  text-align: center;
}
.style-guide-table--with-header-column td:first-child {
  font-weight: bold;
  text-align: left;
}

.style-guide-disabled-power-select .ember-power-select-status-icon {
  background-color: #525252;
  background-image: url("icons/lock.svg");
  background-position: 50%;
}
.style-guide-disabled-power-select .ember-power-select-trigger[aria-disabled=true] {
  background-color: #525252;
}

.style-guide-disabled-input input {
  background-color: #525252;
}

.style-guide__input input {
  max-height: 50px;
}

.style-guide__universal-header {
  justify-content: center;
  display: flex;
}

.theme-dark .style-guide__section {
  background-color: #08090a;
}
.theme-dark .style-guide__universal-header .user-dropdown-submenu .user-dropdown {
  background-color: #08090a;
}

/*
 * Note: don't try to alphabetize this list.  Some things depend on
 * other things being imported first :-(
 */
.spacing--sar-header {
  margin: 0 6px -1px 0;
}

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

.icon__power-select {
  vertical-align: middle;
  padding-bottom: 15px;
}

.icon-copy-all .flag {
  left: -112px;
  top: -13px;
}

.icon--inline {
  display: inline-block;
}

.report-subscriptions-title {
  margin-top: 0.5rem;
}

.report-subscriptions-checkbox {
  margin-top: 1.5rem;
}

.report-subscriptions-fleets {
  margin-top: 1rem;
}
.report-subscriptions-fleets .fleet-picker {
  height: 1.5rem;
}

.manage-reports-section-heading {
  display: inline-block;
  vertical-align: middle;
  margin-top: 0.1em;
}

.manage-reports-section-heading span {
  font-family: "OpenSans-Regular", Verdana, Geneva, Tahoma, sans-serif;
  font-size: 1rem;
  line-height: 1.5em;
}

.manage-reports-body {
  padding-top: 5px;
  padding-left: 35px;
  height: 500px;
  transition: height 2s ease;
}

.manage-reports-subscriber {
  display: inline-flex;
  width: 250px;
}

.manage-reports-label {
  display: flex;
  align-items: center;
  width: auto;
  margin-bottom: 20px;
  margin-right: 10px;
}

.manage-reports-label span {
  display: inline-block;
  padding-top: 2px;
  max-width: 175px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  vertical-align: middle;
}

.manage-reports-label svg {
  flex: 0 0 auto;
}

.manage-reports-unsubscribed-user {
  padding-left: 15px;
  margin-bottom: 18px;
}

.report-subscriptions-report-info {
  margin-left: 9px;
  vertical-align: -2px;
}

.alert-sidebar__title {
  font-family: "OpenSans-SemiBold";
  line-height: 1.6em;
  font-size: 1.25rem;
}

.text--alert,
.fleet-picker__radio,
.fleet-picker__dropdown {
  font-family: "OpenSans-Regular", Verdana, Geneva, Tahoma, sans-serif;
  font-size: 1rem;
  line-height: 1.5em;
}

.alert-severity-row__frequency {
  font-family: "OpenSans-Regular", Helvetica, Roboto, sans-serif;
  font-size: 0.875rem;
  line-height: 1.43em;
}

.alert-sidebar__subtitle,
.alert-sidebar__title,
.text--alert {
  display: block;
}

.theme-dark .text--alert {
  color: #a1a7aa;
}
.theme-dark .alert-severity-row__frequency,
.theme-dark .text--subtitle1,
.theme-dark .alert-sidebar__title {
  color: #e8eaea;
}
.theme-dark .alert-sidebar__severities__column,
.theme-dark .fleet-picker__radio,
.theme-dark .fleet-picker__dropdown,
.theme-dark .dropdown-item__item {
  color: #e8eaea;
}

.box {
  padding: 1rem;
  border: 1px solid;
  border-radius: 2px;
  flex-grow: 1;
  flex-basis: 0;
}
.box div {
  margin: 0.1rem 0;
}
.box p {
  max-width: 50rem;
}
.box p:last-child {
  margin-bottom: 0;
}
.box.bright div {
  float: left;
  min-width: 7.5rem;
  text-align: center;
}
.box.bright p {
  margin: 0 0 0 9.25rem;
  max-width: 40.75rem;
}

.box + .box {
  margin-left: 0.5rem;
}

.blurbox {
  border: 1px solid;
  border-radius: 2px;
}

@media screen and (max-width: 1300px) {
  .box {
    flex-basis: auto;
  }
  .box + .box {
    margin-left: 0;
    margin-top: 0.75rem;
  }
}
::-ms-clear, ::-ms-reveal {
  display: none;
}

button {
  font-family: "OpenSans-SemiBold", Helvetica, Roboto, sans-serif;
  font-size: 14px;
  line-height: 24.5px;
  display: inline-block;
  padding: 0.3rem 0.5rem;
  border-width: 0;
}
button .icon {
  display: inline-block;
  vertical-align: middle;
  background-position: center;
  background-repeat: no-repeat;
  padding: 0 0.2rem;
}

.sar-button small {
  line-height: 1rem;
}

/* Plus Minus Buttons */
.plusminus-button {
  box-sizing: content-box;
  width: 1.5rem;
  min-width: 1.5rem;
  height: 1.5rem;
  min-height: 1.5rem;
  margin-right: 0.3rem;
  margin-top: 0.1rem;
}
.plusminus-button svg {
  width: 24px;
  height: 24px;
}

.button--login-form * {
  width: 8rem;
}

.search-result__button {
  font-family: "OpenSans-SemiBold", Helvetica, Roboto, sans-serif;
  font-size: 14px;
  line-height: 24.5px;
  border-radius: 32px;
  border: 1px solid;
  text-transform: uppercase;
}

.theme-dark .search-result__button {
  background-color: transparent;
  color: #e8eaea;
  border-color: #e8eaea;
}
.theme-dark .plusminus-button svg {
  fill: #a1a7aa;
}

.progress-label {
  height: 32px;
  line-height: 42px;
}

.progress-label__current,
.progress-label__completed,
.progress-label__incomplete {
  font-family: "OpenSans-SemiBold", Helvetica, Roboto, sans-serif;
  font-size: 0.875rem;
  line-height: 1.57rem;
}

.progress-bubble {
  display: block;
}

.progres-bubble__clickable {
  cursor: pointer;
}

.progress-text {
  font-family: "OpenSans-Regular";
  line-height: 1.67em;
  font-size: 0.75rem;
}

.indicator-with-label {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  margin-top: 0;
  cursor: default;
  width: 150px;
}

.indicator-with-label__clickable {
  cursor: pointer;
}

.progress-line {
  position: absolute;
}

.progress-line--completed-segment {
  display: block;
}

.theme-dark .progress-line--completed-segment {
  stroke: rgba(161, 167, 170, 0.3607843137);
}
.theme-dark .progress-label__current {
  color: #80bde0;
}
.theme-dark .progress-label__incomplete,
.theme-dark .progress-label__completed {
  color: #a1a7aa;
}
.theme-dark .progress-bubble__completed,
.theme-dark .progress-bubble__current {
  fill: #007bc1;
}
.theme-dark .progress-bubble__incomplete {
  fill: #7b8387;
}
.theme-dark .progress-bubble__incomplete .progress-text {
  fill: #c6cacc;
}
.theme-dark .progress-text {
  fill: #ffffff;
}

.push-button {
  cursor: pointer;
  display: inline-block;
  position: relative;
  white-space: nowrap;
}
.push-button--contained, .push-button--text {
  border: none;
}
.push-button--outlined {
  background-color: transparent;
  border: 1px solid;
}
.push-button__content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.push-button > .loader {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.push-button.-size-small {
  padding: 0 10px;
  height: 30.75px;
}
.push-button.-size-small span:first-of-type {
  font-family: "OpenSans-SemiBold", Helvetica, Roboto, sans-serif;
  font-size: 13px;
  line-height: 24.5px;
}
.push-button.-size-small #icon-loader.loader {
  width: 12px;
  height: 12px;
}
.push-button.-size-medium {
  padding: 0 16px;
  height: 36.5px;
}
.push-button.-size-medium span:first-of-type {
  font-family: "OpenSans-SemiBold", Helvetica, Roboto, sans-serif;
  font-size: 14px;
  line-height: 24.5px;
}
.push-button.-size-medium svg {
  width: 10px;
  height: 10px;
}
.push-button.-size-medium #icon-refresh {
  width: 14px;
  height: 14px;
  margin-right: 5px;
}
.push-button.-size-medium #icon-loader.loader {
  width: 18px;
  height: 18px;
}
.push-button.-size-large {
  padding: 0 22px;
  height: 42.25px;
}
.push-button.-size-large span:first-of-type {
  font-family: "OpenSans-SemiBold", Helvetica, Roboto, sans-serif;
  font-size: 0.875rem;
  line-height: 1.75rem;
}
.push-button.-size-large #icon-loader.loader {
  width: 24px;
  height: 24px;
}
.push-button.-shape-square {
  border-radius: 4px;
}
.push-button.-shape-round {
  border-radius: 32px;
}

.theme-dark .push-button--contained.-color-primary {
  color: #ffffff;
  background: #007bc1;
}
.theme-dark .push-button--contained.-color-primary svg path {
  fill: #ffffff;
}
.theme-dark .push-button--contained.-color-primary:hover, .theme-dark .push-button--contained.-color-primary:focus {
  background-color: #4da3d4;
}
.theme-dark .push-button--contained.-color-primary:active {
  background-color: #80bde0;
}
.theme-dark .push-button--contained.-color-primary:disabled {
  background-color: rgba(161, 167, 170, 0.2392156863);
  color: #5e696e;
}
.theme-dark .push-button--contained.-color-primary:disabled svg path {
  fill: #5e696e;
}
.theme-dark .push-button--contained.-color-cummins {
  color: #ffffff;
  background: #da291c;
  border: none;
}
.theme-dark .push-button--contained.-color-cummins svg path {
  fill: #ffffff;
}
.theme-dark .push-button--contained.-color-cummins:hover, .theme-dark .push-button--contained.-color-cummins:focus {
  background-color: #da7777;
}
.theme-dark .push-button--contained.-color-cummins:active {
  background-color: #e59e9e;
}
.theme-dark .push-button--contained.-color-cummins:disabled {
  background-color: rgba(161, 167, 170, 0.2392156863);
  color: #5e696e;
}
.theme-dark .push-button--contained.-color-cummins:disabled svg path {
  fill: #5e696e;
}
.theme-dark .push-button--contained.-color-severity-stop-now {
  background-color: #ca3c3d;
  border-color: #ca3c3d;
  color: #ffffff;
}
.theme-dark .push-button--contained.-color-severity-stop-now svg path {
  fill: #ffffff;
}
.theme-dark .push-button--contained.-color-severity-stop-now:hover {
  background-color: #ab1a1a;
  border-color: #ab1a1a;
}
.theme-dark .push-button--contained.-color-severity-stop-now:disabled {
  outline: rgba(123, 131, 135, 0.3607843137);
  border-color: rgba(123, 131, 135, 0.3607843137);
  color: rgba(123, 131, 135, 0.3607843137);
}
.theme-dark .push-button--contained.-color-severity-stop-now:disabled svg path {
  fill: rgba(123, 131, 135, 0.3607843137);
}
.theme-dark .push-button--outlined.-color-primary {
  color: #80bde0;
  border-color: #80bde0;
}
.theme-dark .push-button--outlined.-color-primary svg path {
  fill: #80bde0;
}
.theme-dark .push-button--outlined.-color-primary #icon-loader.loader {
  stroke: #80bde0;
}
.theme-dark .push-button--outlined.-color-primary:hover, .theme-dark .push-button--outlined.-color-primary:focus {
  background-color: rgba(0, 123, 194, 0.2);
}
.theme-dark .push-button--outlined.-color-primary:active {
  background-color: rgba(0, 123, 194, 0.3607843137);
}
.theme-dark .push-button--outlined.-color-primary:disabled {
  color: rgba(123, 131, 135, 0.3607843137);
  border-color: rgba(123, 131, 135, 0.3607843137);
}
.theme-dark .push-button--outlined.-color-primary:disabled svg path {
  fill: rgba(123, 131, 135, 0.3607843137);
}
.theme-dark .push-button--outlined.-color-delete {
  border-color: #ca3c3d;
  color: #ca3c3d;
}
.theme-dark .push-button--outlined.-color-delete svg path {
  fill: #ca3c3d;
}
.theme-dark .push-button--outlined.-color-delete #icon-loader.loader {
  stroke: #ca3c3d;
}
.theme-dark .push-button--outlined.-color-delete:hover, .theme-dark .push-button--outlined.-color-delete:focus {
  background: rgba(202, 60, 61, 0.2);
}
.theme-dark .push-button--outlined.-color-delete:active {
  background: rgba(202, 60, 61, 0.3607843137);
}
.theme-dark .push-button--outlined.-color-delete:disabled {
  color: rgba(123, 131, 135, 0.3607843137);
  border-color: rgba(123, 131, 135, 0.3607843137);
}
.theme-dark .push-button--outlined.-color-delete:disabled svg path {
  fill: rgba(123, 131, 135, 0.3607843137);
}
.theme-dark .push-button--outlined.-color-severity-sr {
  border-color: #f7f8f8;
  background-color: transparent;
  color: #ffffff;
}
.theme-dark .push-button--outlined.-color-severity-sr svg path {
  fill: #ffffff;
}
.theme-dark .push-button--outlined.-color-severity-sr:hover {
  background-color: #f7f8f8;
  color: #1d2529;
}
.theme-dark .push-button--outlined.-color-severity-sr:hover svg path {
  fill: #1d2529;
}
.theme-dark .push-button--outlined.-color-severity-sr:disabled {
  color: rgba(123, 131, 135, 0.3607843137);
  border-color: rgba(123, 131, 135, 0.3607843137);
}
.theme-dark .push-button--outlined.-color-severity-sr:disabled svg path {
  fill: rgba(123, 131, 135, 0.3607843137);
}
.theme-dark .push-button--outlined.-color-logical-operator {
  color: #ffffff;
  border-color: #f7f8f8;
}
.theme-dark .push-button--outlined.-color-logical-operator:hover, .theme-dark .push-button--outlined.-color-logical-operator:focus {
  background-color: #f7f8f8;
  color: #13181b;
}
.theme-dark .push-button--outlined.-color-logical-operator:active {
  background-color: #e9ecec;
  color: #a1a7aa;
}
.theme-dark .push-button--outlined.-color-logical-operator:disabled {
  color: rgba(123, 131, 135, 0.3607843137);
  border-color: rgba(123, 131, 135, 0.3607843137);
}
.theme-dark .push-button--outlined.-color-logical-operator:disabled svg path {
  fill: rgba(123, 131, 135, 0.3607843137);
}
.theme-dark .push-button--text.-color-primary {
  color: #80bde0;
  background-color: transparent;
}
.theme-dark .push-button--text.-color-primary svg path {
  fill: #80bde0;
}
.theme-dark .push-button--text.-color-primary #icon-loader.loader {
  stroke: #80bde0;
}
.theme-dark .push-button--text.-color-primary:hover, .theme-dark .push-button--text.-color-primary:focus {
  background-color: rgba(0, 123, 194, 0.2);
}
.theme-dark .push-button--text.-color-primary:active {
  background-color: rgba(0, 123, 194, 0.3607843137);
}
.theme-dark .push-button--text.-color-primary:disabled {
  color: rgba(123, 131, 135, 0.3607843137);
}

.calendar {
  position: relative;
  width: 13rem;
  text-align: center;
  padding-top: 1rem;
}
.calendar [data-start="0"] .calendar__day:first-child {
  margin-left: 0rem;
}
.calendar [data-start="1"] .calendar__day:first-child {
  margin-left: 1.8571428571rem;
}
.calendar [data-start="2"] .calendar__day:first-child {
  margin-left: 3.7142857143rem;
}
.calendar [data-start="3"] .calendar__day:first-child {
  margin-left: 5.5714285714rem;
}
.calendar [data-start="4"] .calendar__day:first-child {
  margin-left: 7.4285714286rem;
}
.calendar [data-start="5"] .calendar__day:first-child {
  margin-left: 9.2857142857rem;
}
.calendar [data-start="6"] .calendar__day:first-child {
  margin-left: 11.1428571429rem;
}

.calendar .control {
  font-size: 20px;
}

.calendar__header {
  display: flex;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.calendar__month-name {
  font-family: "OpenSans-SemiBold", Helvetica, Roboto, sans-serif;
  font-size: 0.875rem;
  line-height: 1.57rem;
  margin-top: 0;
  margin-left: 5px;
  margin-right: 5px;
  width: auto;
}

.calendar__main {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  height: auto;
}

.calendar__day {
  font-family: "OpenSans-Regular";
  line-height: 1.67em;
  font-size: 0.75rem;
  padding: 3px;
  display: inline-block;
  width: 1.8571428571rem;
}

.calendar__daydisabled:disabled {
  background-color: grey;
}

.callout {
  border: 1px solid;
  border-radius: 3px;
  display: flex;
  align-items: center;
  height: 10.9rem;
}
.callout > * {
  margin-right: 4rem;
}
.callout > :last-child {
  margin-right: 0;
}
.callout th {
  color: #80bde0;
}

.callout__left-side {
  box-sizing: content-box;
  margin-top: -1px;
  margin-left: -1px;
  margin-bottom: -1px;
  width: 10.9rem;
  height: 100%;
  border-radius: 3px 0 0 3px;
}

.callout__right-side {
  height: 10.9rem;
  width: 100%;
  border-radius: 0 3px 3px 0;
}

.callout__location {
  margin-top: 1.5rem;
}

@media screen and (max-width: 1300px) {
  .callout .callout__map-container {
    display: none;
  }
}
@media screen and (max-width: 1100px) {
  .callout__map-container {
    display: none;
  }
  .callout > * {
    margin-right: 2rem;
  }
}
label {
  display: block;
}

label + label {
  margin-top: 0.5rem;
}

.fault-group-active-inactive-container label + label {
  margin-top: 0;
}

.checkbox-row label {
  display: inline-block;
  margin-right: 0;
}
.checkbox-row label span::before {
  margin-right: 0;
}

[type=checkbox] + span::before, [type=radio] + span::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  vertical-align: middle;
  margin-right: 0.5rem;
  border: 1px solid;
}

[type=radio] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
  clip: rect(1px, 1px, 1px, 1px);
}
[type=radio] + span::before {
  border-radius: 16px;
}
[type=radio] + span {
  font-family: "OpenSans-Regular", Verdana, Geneva, Tahoma, sans-serif;
  font-size: 1rem;
  line-height: 1.5em;
}

[type=checkbox]:checked + span::before {
  background-repeat: no-repeat;
  background-size: auto, cover;
  background-position: 90% 65%, center;
}
[type=checkbox] + span::before {
  margin-left: 2px;
}

[type=checkbox] + span[data-content]::before {
  font-size: 14px;
  line-height: 30px;
}

[type=checkbox] {
  position: fixed;
  height: 0;
  width: 0;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  margin-top: -15px;
  opacity: 0;
}
[type=checkbox]:focus + span::before {
  outline: solid 1px;
}

[type=checkbox] + span[data-content]::before {
  content: attr(data-content);
  width: 30px;
  height: 30px;
  text-align: center;
  border-width: 2px;
}

[type=checkbox] + label {
  position: relative;
  display: block;
}

.theme-dark [type=checkbox] + span::before,
.theme-dark [type=radio] + span::before {
  border-color: rgba(161, 167, 170, 0.3607843137);
}
.theme-dark [type=checkbox]:disabled + span::before,
.theme-dark [type=radio]:disabled + span::before {
  border-color: rgba(123, 131, 135, 0.3607843137);
}
.theme-dark [type=checkbox]:checked + span::before,
.theme-dark [type=radio]:checked + span::before {
  border-color: #a1a7aa;
  background-image: none;
  background-color: rgba(161, 167, 170, 0.3607843137);
}
.theme-dark [type=checkbox] + span[data-content]::before,
.theme-dark [type=radio] + span[data-content]::before {
  color: #e8eaea;
}
.theme-dark [type=checkbox]:checked + span[data-content]::before,
.theme-dark [type=radio]:checked + span[data-content]::before {
  border-color: rgba(161, 167, 170, 0.3607843137);
  background-image: linear-gradient(#80bde0, #80bde0);
}
.theme-dark [type=radio]:checked + span::before {
  background: #1d2529;
}
.theme-dark [type=radio].check--bright:checked + span::before {
  background-image: url("icons/radio-button-circle.svg");
  background-position-x: -2px;
  background-position-y: -2px;
}

.drawer {
  max-height: 0;
  transition: max-height 0.3s, padding 0.3s;
}

.drawer--is-open {
  max-height: 200rem;
}

.trench__pip::before {
  content: "";
  position: absolute;
  display: block;
  width: 25px;
  height: 25px;
  transition: all 0.15s ease-out;
  transform: translate(1.9rem, -12.5px) rotate(45deg) scale(0);
}

.trench__pip.trench__pip--open::before {
  transform: translate(1.535rem, -12.5px) rotate(45deg) scale(1);
}

.trench__pip.trench__pip--open-tiny::before {
  transform: translate(1.575rem, -12.5px) rotate(45deg) scale(0.5);
}

.trench__pip.trench__pip--open-micro::before {
  transform: translate(1.59rem, -12.5px) rotate(45deg) scale(0.45);
}

.trench__diamond {
  position: relative;
}

.trench__diamond::before {
  content: "";
  position: absolute;
  display: block;
  width: 25px;
  height: 25px;
  transform: translate(0.65rem, -32.5px) rotate(45deg) scale(0);
}

.trench__diamond.trench__diamond--open::before {
  transform: translate(0.35rem, -32.5px) rotate(45deg) scale(1);
}

.dropdown {
  position: relative;
}
.dropdown .dropdown__drop {
  position: absolute;
  padding: 0.3rem 0.6rem;
  margin-top: -0.3rem;
  margin-left: -0.6rem;
  box-sizing: content-box;
}
.dropdown .dropdown__drop li {
  margin: 0.5rem auto;
  font-family: "OpenSans-Regular", Verdana, Geneva, Tahoma, sans-serif;
  font-size: 1rem;
  line-height: 1.5em;
}
.dropdown .dropdown__drop-content {
  max-height: 14.3rem;
  position: relative;
}
.dropdown .dropdown__current {
  font-family: "OpenSans-Regular", Verdana, Geneva, Tahoma, sans-serif;
  font-size: 1rem;
  line-height: 1.5em;
  border-style: solid;
  border-width: 0;
  padding-bottom: 0.3rem;
  white-space: nowrap;
}
.dropdown .dropdown__drop-up--even {
  bottom: -0.3rem;
}
.dropdown .dropdown__drop-up--above {
  bottom: 2.5rem;
}
.dropdown .dropdown__drop-up .dropdown__current {
  padding-top: 0.3rem;
  margin-bottom: 0;
  margin-top: 0.3rem;
  border-top-width: 1px;
}
.dropdown .dropdown__drop-down .dropdown__current {
  margin-top: 0;
  margin-bottom: 0.3rem;
  border-bottom-width: 1px;
}

.dropdown--has-calendar .dropdown__drop-up::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 1rem;
  margin-left: -0.6rem;
  margin-top: -2.3rem;
}
.dropdown--has-calendar .dropdown__drop-content {
  max-height: none;
}
.dropdown--has-calendar .dropdown__drop {
  margin-left: -0.6rem;
}
.dropdown--has-calendar .dropdown__drop-down {
  padding-bottom: 0;
}
.dropdown--has-calendar .dropdown__drop-up {
  padding-top: 0;
}
.dropdown--has-calendar .calendar {
  margin-left: -0.6rem;
}

.user-dropdown {
  white-space: nowrap;
  overflow: visible;
}
.user-dropdown > a {
  padding: 0.9rem 0.9rem 0.9rem;
  display: block;
}
.user-dropdown > a:hover, .user-dropdown > a:focus {
  background-color: rgba(232, 234, 234, 0.1019607843);
}

.divider {
  margin-bottom: 0rem;
  border-top: 1px solid;
  color: rgba(161, 167, 170, 0.3607843137);
}

.security-q-divider {
  border-top: 1px solid;
  color: rgba(161, 167, 170, 0.3607843137);
  margin-top: 1rem;
  margin-left: -1.6rem;
  margin-right: -1.6rem;
}

.pip {
  position: relative;
  padding-right: 1rem;
}
.pip::after {
  content: "";
  border-style: solid;
  border-width: 6px 5px;
  position: absolute;
  right: 0;
  top: 3px;
}

.user-dropdown-submenu {
  position: relative;
}
.user-dropdown-submenu svg {
  width: 24px;
  height: 24px;
}
.user-dropdown-submenu .text--primary-body {
  padding: 0.9rem 0.9rem 0.9rem;
}

.user-dropdown-submenu .user-dropdown {
  top: 0;
  right: 101%;
  position: absolute;
  visibility: hidden;
}

.user-dropdown-submenu:hover .user-dropdown {
  visibility: visible;
}

.arrow-right__icon {
  float: right;
}

.theme-dark .user-dropdown-submenu svg {
  fill: #a1a7aa;
}
.theme-dark .user-dropdown-submenu .user-dropdown {
  background-color: #1d2529;
}
.theme-dark .user-dropdown-submenu .text--primary-body:hover, .theme-dark .user-dropdown-submenu .text--primary-body:focus {
  background-color: rgba(232, 234, 234, 0.1019607843);
}
.theme-dark .dropdown__current svg {
  transform: translateY(-0.1rem);
  width: 8px;
  height: 5.33px;
}
.theme-dark .dropdown__current svg path {
  fill: #ffffff;
}
.theme-dark .user-dropdown > a {
  color: #e8eaea;
}

.error-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #ffffff;
}
.error-page__code {
  margin-top: 100px;
  font-size: 200px;
  font-weight: 900;
}
.error-page__title {
  margin-top: 50px;
  font-size: 40px;
  text-transform: capitalize;
}
.error-page__message {
  margin-top: 10px;
  font-size: 16px;
}
.error-page__button {
  margin-top: 30px;
}

.expandable {
  transition: background-color 5s;
}

.expandable__heading {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.expandable__heading:hover {
  cursor: pointer;
}
.expandable__heading.-has-separator {
  border-bottom: 1px solid;
}

.expandable__title-and-preview {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 10px;
}

.expandable__content {
  height: 0;
  width: 100%;
  overflow: hidden;
}
.expandable__content.-is-expanded {
  margin-top: 10px;
  height: auto;
  overflow: visible;
}

.expandable__icon {
  display: flex;
  align-items: center;
}
.expandable__icon.-is-expanded {
  transform: rotate(-0.5turn);
}

.expandable__preview--hidden {
  visibility: hidden;
}

.theme-dark .expandable__heading.-has-separator {
  border-color: rgba(161, 167, 170, 0.3607843137);
}
.theme-dark .expandable__preview {
  color: #a1a7aa;
}

.fleet-upload-modal-contents .fleet-import-step {
  margin: 0.8rem 0;
  margin-top: 1.5rem;
  font-family: "OpenSans-Regular", Verdana, Geneva, Tahoma, sans-serif;
  font-size: 1rem;
  line-height: 1.5em;
}
.fleet-upload-modal-contents .import-vehicle-list-heading {
  font-size: 16px;
  margin: 1rem 0;
}

.theme-dark .vehicle-row__header svg {
  width: 8px;
  height: 9px;
}
.theme-dark .vehicle-row__header svg path {
  fill: #ffffff;
}

.fleets .fleet-import-button-container {
  border-bottom: 1px solid;
  align-items: center;
  text-align: left;
  justify-content: space-between;
}
.fleets .fleet-import-button {
  margin-right: 0.5rem;
}
.fleets .loading_page {
  float: left;
  margin: 0.8rem;
  margin-left: 1.5rem;
  margin-top: 1rem;
}
.fleets .buttons-group {
  display: inline-flex;
  float: right;
  margin-top: 1rem;
  margin-bottom: 1rem;
  margin-right: 0.5rem;
}
.fleets .buttons--compact {
  display: flex;
  float: right;
  align-items: center;
  text-align: left;
  justify-content: space-between;
}
.fleets .fleet-confirm-delete-button {
  text-align: right;
  margin: 1rem;
}
.fleets .fleet-confirm-delete-button {
  color: brown;
}
.fleets .vehicle-count {
  font-family: "OpenSans-SemiBold";
  line-height: 1.6em;
  font-size: 1.25rem;
  margin-left: 1.5rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
  max-width: 12rem;
  display: inline-flex;
}
.fleets__buttons-group-collapse {
  display: flex;
  justify-content: center;
  align-items: center;
}

.transmission-profile-help {
  padding-left: 15px;
  vertical-align: middle;
}

.import-error-modal svg,
.import-completed-modal svg {
  width: 100%;
  margin-top: 1.5rem;
}

.vehicle-list__scrollable {
  overflow-y: auto;
  flex: 1 1 0;
  scrollbar-gutter: stable;
}

.theme-dark .vehicle-count {
  color: #e8eaea;
}
.theme-dark .fleet-import-button-container {
  background-color: #08090a;
  color: rgba(161, 167, 170, 0.3607843137);
}

.geotab-credentials-edit {
  overflow-x: hidden;
}

.geotab-credentials-scroll-column {
  overflow-x: hidden;
  padding: 0 1.5rem 1.5rem 1.5rem;
}

.geotab-credentials-edit__column {
  width: 30em;
  padding-right: 2rem;
  overflow: auto;
}

.fleet-nav {
  height: 41px;
}

.fleet-nav__inner {
  height: 39px;
}

.fleet-nav__content {
  padding: 0 12px;
  display: inline-block;
  border-right: 2px solid;
  height: 39px;
}
.fleet-nav__content span {
  margin-top: 1px;
}

.fleet-nav__bottom-bar {
  border-bottom: 2px solid;
}

.side-panel .pulldown__heading {
  margin-left: 1.3rem;
}

h2 {
  padding-bottom: 6px;
  margin: 0;
}

.text--manage-reports-heading {
  padding-bottom: 6px;
  margin: 0;
}

.text--header-heading {
  border-bottom: 1px solid;
  width: 100%;
}

.with-train span::after {
  top: 1.3rem;
}

.heading-collapsible {
  border-bottom: 1px solid;
  margin-bottom: 1rem;
}

.heading-collapsible::after {
  display: inline-block;
  float: right;
  background-position: center;
  position: relative;
  bottom: -0.5rem;
  content: "";
  transform: rotate(0deg);
  transition: transform 0.25s ease;
}

.heading-collapsible.split-title::after {
  bottom: 0.7rem;
}

.heading-collapsible--is-collapsed::after {
  transform: rotate(90deg);
}

.heading-collapsible--is-collapsed--split-title::after {
  transform: rotate(90deg);
}

.text-field {
  position: relative;
  display: inline-flex;
  width: 100%;
  align-items: center;
  box-shadow: none;
}
.text-field input {
  display: flex;
  width: 100%;
  height: 100%;
  border: none;
  flex-grow: 1;
  padding: 0.8rem 0.8rem;
}
.text-field:has(.text-field__start-adornment) input {
  padding-left: 35px;
}
.text-field:has(.text-field__start-adornment) .text-field__placeholder {
  padding-left: 35px;
}
.text-field.-is-disabled {
  pointer-events: none;
}
.text-field.-size-small {
  height: 2.81rem;
}
.text-field.-size-medium {
  height: 3.3rem;
}
.text-field.-size-large {
  height: 4.15rem;
}

.text-field__placeholder {
  position: absolute;
  padding: 0.8rem 0.8rem;
  pointer-events: none;
  display: flex;
  align-items: center;
  height: 100%;
}
.text-field__placeholder > * {
  font-family: "OpenSans-Regular", Verdana, Geneva, Tahoma, sans-serif;
  font-size: 1rem;
  line-height: 1.5em;
}
.text-field__placeholder svg {
  margin-right: 5px;
}

.text-field__start-adornment {
  position: absolute;
  padding-left: 5px;
  pointer-events: none;
  display: flex;
  align-items: center;
  height: 100%;
}
.text-field__start-adornment > * {
  font-family: "OpenSans-Regular", Verdana, Geneva, Tahoma, sans-serif;
  font-size: 1rem;
  line-height: 1.5em;
}
.text-field__start-adornment svg {
  margin-right: 5px;
}

.text-field__end-adornment {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding-right: 0.8rem;
  height: 100%;
}

.text-field--bordered {
  border: 2px solid;
}

.text-field--borderless:not(:focus), .text-field--borderless.-is-disabled {
  border: none;
}
.text-field--borderless:focus-within, .text-field--borderless.-has-error {
  border: 2px solid;
}

.theme-dark .text-field {
  background-color: #2b353a;
  color: #a1a7aa;
  border-color: rgba(161, 167, 170, 0.3607843137);
}
.theme-dark .text-field input:not(:focus), .theme-dark .text-field input:focus {
  background-color: transparent;
}
.theme-dark .text-field:focus-within {
  background-color: #2b353a;
  border-color: #007bc1;
  color: #e8eaea;
}
.theme-dark .text-field .text-field__end-adornment svg path,
.theme-dark .text-field .text-field__placeholder svg path {
  fill: #a1a7aa;
}
.theme-dark .text-field .text-field__start-adornment svg {
  fill: #a1a7aa;
}
.theme-dark .text-field.-has-error {
  border-color: #ca3c3d;
}
.theme-dark .text-field.-is-disabled {
  border-color: rgba(123, 131, 135, 0.3607843137);
}
.theme-dark .text-field.-is-disabled > * {
  color: rgba(123, 131, 135, 0.3607843137);
}
.theme-dark .text-field.-is-disabled svg path {
  fill: rgba(123, 131, 135, 0.3607843137);
}
.theme-dark .text-field__placeholder {
  color: #888;
}

input, textarea {
  border: 2px solid;
  padding: 0.8rem 0.8rem;
}

.feedback-description {
  height: 10rem;
  resize: none;
}

div input {
  height: 45px;
  display: block;
}

.input--invisible:not(:focus) {
  border-color: transparent;
  border-style: none;
  box-shadow: none;
}

.input--align-left:not(:focus):not(.input--has-error) {
  padding-left: 0;
  border-left-width: 0;
}

.input--center-background {
  background-position-x: 7px;
  background-position-y: center;
  text-indent: 16px;
}

.input--magnify {
  padding-top: 9.2px;
  padding-bottom: 9.2px;
}

.input--no-background {
  background-color: transparent !important;
}

.password-criteria {
  font-family: "OpenSans-Regular";
  line-height: 1.67em;
  font-size: 0.75rem;
  margin-bottom: 0.5rem;
  margin-right: 1.8rem;
}
.password-criteria ul {
  padding: 0;
}
.password-criteria ul li {
  font-family: "OpenSans-Regular";
  line-height: 1.67em;
  font-size: 0.75rem;
  list-style-type: none;
  vertical-align: middle;
  background-position: left center;
  white-space: nowrap;
}
.password-criteria ul li #icon-bullet-check {
  margin-right: 0.3rem;
}
.password-criteria ul li.satisfied {
  background-position: left center;
}
.password-criteria div:last-child {
  margin-left: 2rem;
}

.theme-dark input:not(:focus) {
  background-color: #2b353a;
  border-color: rgba(161, 167, 170, 0.3607843137);
  color: #a1a7aa;
}
.theme-dark .input--has-error:not(:focus) {
  border-color: #ca3c3d;
}
.theme-dark input:focus, .theme-dark select:focus, .theme-dark textarea:focus {
  outline: none;
  background-color: #2b353a;
  border-color: #007bc1;
  color: #e8eaea;
}

.list--simple {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.list--simple li {
  padding: 0 1rem 0 1rem;
}

.list--inline {
  padding: 0;
}
.list--inline > li {
  display: inline-block;
}

.list--unstyled, .list--gridiron, .list--grill {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.list--unstyled > li, .list--gridiron > li, .list--grill > li {
  margin: 0;
  padding: 0;
}

.list--gridiron li {
  padding: 0.8rem;
  border: 1px solid;
  margin-top: -1px;
}

.list--grill li {
  border-top: 1px solid;
  padding: 1rem 0;
}
.list--grill li:last-child {
  padding-bottom: 0;
}

.list--narrow {
  width: 50%;
}

.list--spread > li {
  margin: 0.4rem 0;
}

.search-controls {
  height: 165px;
}

.search-controls__dropdown {
  margin: 10px 10px 0 10px;
}

.search-controls__input-box {
  margin: 10px 10px 0 10px;
}

.search input.search-controls__input-box__input {
  border: none;
  box-shadow: none;
  margin-top: 0;
  padding-right: 4.5rem;
}

.search-controls__text-and-button {
  display: flex;
  justify-content: space-between;
}

.search-controls__results-text {
  display: inline-block;
  margin: 10px 10px 0 10px;
  padding-top: 15px;
  font-style: italic;
}

.search-controls__search-button {
  display: inline-block;
  margin: 10px 10px 0 10px;
}

.search-results__loading {
  margin: 10px 10px 0 10px;
  padding-top: 6px;
}

.search-results__separator {
  border-top: 1px solid;
}

.modal-dialog {
  outline: none;
}

.no-border {
  border: none;
}

.modal-contents {
  min-width: 300px;
  max-width: 600px;
}
.modal-contents .modal-message.left-align {
  padding-left: 0;
  text-align: left;
}
.modal-contents i.centered {
  width: 100%;
}
.modal-contents .modal-margin-spacing {
  margin: 0.2em;
}
.modal-contents .modal-button-highlighted-style {
  border: 1px solid #ffffff;
  background-color: transparent;
  background: #ffffff;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.3);
  color: #343434;
}
.modal-contents .modal-button-default-style {
  border: 1px solid #ffffff;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.3), inset 0 2px 4px 0 rgba(0, 0, 0, 0.3);
  color: #ffffff;
  background-color: transparent;
}
.modal-contents .modal-button-default-style:hover, .modal-contents .modal-button-default-style:focus {
  background: #ffffff;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.3);
  color: #343434;
}
.modal-contents .modal-message {
  font-family: "OpenSans-Regular", Verdana, Geneva, Tahoma, sans-serif;
  font-size: 1rem;
  line-height: 1.5em;
  text-align: center;
}
.modal-contents .modal-message:hover a, .modal-contents .modal-message:focus a {
  text-decoration: underline;
}
.modal-contents .expandErrors {
  font-family: "OpenSans-Regular", Verdana, Geneva, Tahoma, sans-serif;
  font-size: 1rem;
  line-height: 1.5em;
}
.modal-contents .modal-button-container {
  display: flex;
  justify-content: space-between;
}
.modal-contents .modal-button-container--single-button {
  display: flex;
  justify-content: flex-end;
}
.modal-contents .modal-button-container-select {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.modal-contents .modal-label {
  justify-content: center;
  margin-right: 20px;
}
.modal-contents .modal-close {
  display: flex;
  justify-content: center;
}
.modal-contents .list-of-errors {
  padding: 1.5rem;
  min-width: 100%;
  min-height: 3.5rem;
  max-height: 10.5rem;
  margin: 1rem -1.6rem;
  overflow: auto;
}
.modal-contents .error-item-in-list {
  margin-bottom: 1rem;
}
.modal-contents label.custom-file-upload {
  position: relative;
  height: 45px;
  padding: 10px 16px;
  border: 2px solid;
}
.modal-contents label.custom-file-upload .text-container {
  display: inline-block;
  width: 490px;
  font-family: "OpenSans-Regular", Helvetica, Roboto, sans-serif;
  font-size: 0.875rem;
  line-height: 1.43em;
}
.modal-contents label.custom-file-upload .icon-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 40px;
  height: 100%;
  background-repeat: no-repeat;
  background-position: 8px 15px;
  top: 0px;
  right: 0px;
  border-width: 0px 0px 0px 1px;
  border-left: 1px solid;
}
.modal-contents label.custom-file-upload--narrow {
  position: relative;
  height: 45px;
  width: 375px;
  padding: 13px 16px;
  border: 2px solid;
  margin: 0;
}
.modal-contents label.custom-file-upload--narrow .text-container {
  display: inline-flex;
  width: 330px;
  position: absolute;
  height: 100%;
  top: 11px;
}
.modal-contents label.custom-file-upload--narrow .icon-container {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 40px;
  height: 100%;
  top: 0px;
  right: 0px;
  border-width: 0px 0px 0px 1px;
  border-left: 1px solid;
}
.modal-contents input[type=file] {
  display: none;
}
.modal-contents .modal-main-content::after {
  content: "";
  position: absolute;
  width: 100%; /* Set width to 100% */
  margin: -1.2rem 0 0; /* Adjust top margin only */
  padding: 1rem 1.6rem;
  bottom: 0.7rem;
  left: -1.6rem; /* Adjust left position to account for padding */
  border-bottom: 1px solid;
  border-bottom-color: rgba(161, 167, 170, 0.3607843137);
  transform: translateY(28px);
}
.modal-contents .modal-main-content {
  position: relative;
  margin: 1rem 0rem 2rem 0rem;
  max-width: 600px;
  min-height: 60px;
  min-width: 400px;
}
.modal-contents .modal-main-content .nav-watchlist-import-complete-success,
.modal-contents .modal-main-content .nav-watchlist-import-partial-success,
.modal-contents .modal-main-content .nav-watchlist-import-failure,
.modal-contents .modal-main-content .cell-range-indicator-inner {
  font-family: "OpenSans-Regular", Verdana, Geneva, Tahoma, sans-serif;
  font-size: 1rem;
  line-height: 1.5em;
}
.modal-contents .modal-main-content .section {
  margin-bottom: 20px;
}
.modal-contents .modal-main-content .section .header {
  display: flex;
  align-items: center;
  margin: 0.8rem 0;
  font-family: "OpenSans-Regular", Verdana, Geneva, Tahoma, sans-serif;
  font-size: 1rem;
  line-height: 1.5em;
}
.modal-contents .modal-main-content .section .header-icon {
  margin-left: 5px;
  vertical-align: middle;
}
.modal-contents .modal-main-content .section ul {
  margin: 0;
}
.modal-contents .cell-input {
  height: 36px;
  margin: 0;
}
.modal-contents .cell-range-indicator {
  display: table;
  width: 2em;
  height: 36px;
  text-align: center;
}
.modal-contents .cell-range-indicator .cell-range-indicator-inner {
  display: table-cell;
  vertical-align: middle;
}
.modal-contents .security-questions-modal__questions {
  font-family: "OpenSans-Regular", Verdana, Geneva, Tahoma, sans-serif;
  font-size: 1rem;
  line-height: 1.5em;
}

.delete-vehicle-modal-contents__message,
.delete-filterset-modal-contents__message {
  font-family: "OpenSans-Regular", Verdana, Geneva, Tahoma, sans-serif;
  font-size: 1rem;
  line-height: 1.5em;
  color: #a1a7aa;
}

.theme-dark label.custom-file-upload {
  border-color: rgba(161, 167, 170, 0.3607843137);
}
.theme-dark label.custom-file-upload .text-container {
  color: #a1a7aa;
}
.theme-dark label.custom-file-upload .icon-container {
  border-left-color: rgba(161, 167, 170, 0.3607843137);
}
.theme-dark .security-questions-modal__questions {
  color: #a1a7aa;
}

.modal-nav--submit-button {
  width: 75px;
}

nav {
  position: fixed;
  right: 1.4rem;
  top: 16rem;
}
nav::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border-radius: 5rem;
  border: 1px solid;
}
nav > div {
  margin: 0.5rem;
  position: relative;
  border-radius: 5rem;
}
nav > div::before {
  content: "";
  white-space: nowrap;
  position: absolute;
  top: 0;
  right: 50%;
  border: 1px solid;
  border-radius: 5rem 0 0 5rem;
  padding: 1rem 0 0.9rem 0;
  max-width: 0;
  transition: padding 0.3s, max-width 0.3s;
}
nav > div:hover::before, nav > div:focus::before {
  padding-left: 1rem;
  padding-right: 2.5rem;
  max-width: 100rem;
}
nav .icon {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-position: center;
  margin: auto;
}
nav [data-text]::before {
  content: attr(data-text);
}

.nav-page__text {
  font-family: "OpenSans-Regular", Helvetica, Roboto, sans-serif;
  font-size: 0.875rem;
  line-height: 1.43em;
}

.navbar {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 1rem;
  height: 3.2rem;
  padding: 0;
}
.navbar ul {
  display: flex;
  list-style-type: none;
  text-align: center;
  padding: 0;
}
.navbar a {
  padding: 0.9rem 0.7rem;
}

.navbar__tab {
  align-items: center;
  cursor: pointer;
  padding: 0.9rem 1rem;
  height: 3.2rem;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.navbar__tab--active {
  font-family: "OpenSans-SemiBold";
  border-bottom: 3px solid #80bde0;
}

.theme-dark .nav-page__list-item:hover, .theme-dark .nav-page__list-item:focus {
  color: #80bde0;
}
.theme-dark .navbar__tab {
  color: #e8eaea;
}
.theme-dark .navbar__tab--active {
  color: #80bde0;
}

.has-popover {
  position: relative;
}
.has-popover .pop {
  position: absolute;
  width: 330px;
  left: -670px;
  top: -250px;
  padding: 0;
  border-width: 0;
}

.pop {
  max-height: 95vh;
  overflow-x: hidden;
  overflow-y: auto;
}

.pop--no-border {
  border: none;
}

.pop__spillover {
  position: absolute;
  width: auto;
  margin: -2px -2px 0 -2px;
}

.pop__inner {
  padding: 1rem;
}

.save-filterset-input {
  border-bottom: 2px solid;
  display: block;
}

.button-container {
  display: flex;
  justify-content: space-between;
  padding-top: 1rem;
}

.save-filterset-width {
  width: 450px;
}

.progress-bar {
  border-radius: 6px;
  height: 11px;
  width: 435px;
  margin: 0.7rem 0 0rem 0;
  background-image: linear-gradient(90deg, #00478D 0%, #3467CB 50%, #0D7CEA 100%);
}
.progress-bar > div {
  width: 20%;
  border: 1px white solid;
}
.progress-bar div:first-of-type {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.progress-bar div:last-of-type {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
.progress-bar .empty {
  background-image: none;
  background-color: #494949;
}

.data-grouping__heading-top-border {
  border-top: 1px solid;
  padding-top: 1rem;
}

.data-grouping__heading-bottom-border {
  border-bottom: 1px solid;
  padding-bottom: 2rem;
  margin-bottom: 1rem;
  margin-top: 1rem;
}

.data-grouping__bottom-divider {
  margin-left: -24px;
  margin-right: -24px;
  margin-bottom: 1.5rem;
  border-top: 1px solid;
}

.data-grouping__top-divider {
  margin-left: -32px;
  margin-right: -32px;
  margin-bottom: 1.5rem;
  margin-top: 0.5rem;
  border-top: 1px solid;
}

.terms-conditions__title {
  font-family: "OpenSans-SemiBold";
  line-height: 1.6em;
  font-size: 1.25rem;
}

.registration-modal form {
  padding: 1rem 2rem 1rem 2rem;
  width: 500px;
}
.registration-modal form * label {
  margin-top: 1rem;
}
.registration-modal form * label input {
  margin: 0.3rem 0 0.3rem;
}
.registration-modal img {
  max-width: 100%;
}

.registration--required-margin {
  margin-top: 2rem;
}

.registration--dismiss-help-page {
  display: flex;
  justify-content: left;
}

.registration-model__eula {
  min-height: 270px;
  margin: 0.5rem 0 0.5rem 0;
  padding: 1rem;
  border: 1px solid;
  border-radius: 2px;
  flex-grow: 1;
  flex-basis: 0;
  color: rgba(161, 167, 170, 0.3607843137);
}
.registration-model__eula div {
  margin-bottom: 1rem;
}

.geotab-info--title .tooltip {
  display: inline;
  margin-left: 5rem;
}

.geotab-instructions-page li {
  margin-bottom: 10px;
  padding-left: 15px;
}
.geotab-instructions-page ul {
  padding-left: 25px;
}

.tvfid-input {
  margin-left: 1.5rem;
}

.required span::before {
  color: #ca3c3d;
  content: "* ";
}

.drawer__fault-list {
  margin: 1rem;
}

.location-box {
  flex-grow: 1;
  padding: 0.5rem;
}

.vehicle-detail {
  margin: 1rem;
}

.vehicle-box {
  flex-grow: 3;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vehicle-box__inner {
  padding: 0.7rem 1rem;
  flex-grow: 3;
}

.indent-text-for-button {
  text-indent: calc(4rem + 16px);
}

.if-monitor-table-compressed {
  display: none;
}

.if-monitor-table-expanded {
  display: block;
}

@media screen and (max-width: 1300px) {
  .if-monitor-table-compressed {
    display: block;
  }
  .if-monitor-table-expanded {
    display: none;
  }
}
.compressed-vin {
  overflow: hidden;
  direction: rtl;
  text-align: left;
  text-overflow: ellipsis;
}

.expanded-vin {
  min-width: 10.5rem;
}

.vehicle-nav__update-available-dot {
  display: inline-block;
  width: 10.5px;
  height: 10.5px;
  border-radius: 40px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
}

.text-align {
  padding-left: 1em;
}

.update-package-banner {
  justify-content: space-between;
  margin: 0px;
  padding-right: 20px;
}
.update-package-banner .icon-text-group {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.calibration-error {
  display: flex;
  background-color: rgba(240, 203, 47, 0.2);
  margin-left: -10px;
  margin-right: -10px;
  padding-left: 7px;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.transmission-error-text {
  color: white;
  padding-left: 0.5rem;
}

.vehicle-nav__vehicle-search {
  flex-grow: 3;
  min-width: 240px;
}

.vehicle-search {
  width: 330px;
  float: right;
  margin: 25px;
}

.icon-calibration-warning {
  margin-top: -1rem;
  margin-left: 2px;
  padding-right: 1rem;
}

.routable-section {
  display: block;
  flex: 1;
}

.theme-dark .routable-section {
  background-color: #08090a;
}

.vehicle-nameplate {
  margin: 1rem 3rem;
  display: flex;
  flex-direction: row;
  overflow-x: hidden;
  gap: 20px;
}
.vehicle-nameplate__details {
  flex: 0 0 auto;
  padding: 0;
}
.vehicle-nameplate__details__buttons {
  margin-top: 20px;
}
.vehicle-nameplate__components {
  flex: 1;
}
.vehicle-nameplate .style-card {
  margin: 0;
}
.vehicle-nameplate .style-card__body {
  padding: 0;
}
.vehicle-nameplate .push-button {
  margin-left: 0;
}
.vehicle-nameplate .table-container--scrollable {
  max-height: 654.7px;
}

.diagnostics__header {
  display: flex;
}

.diagnostics__header__refresh {
  flex-grow: 7;
}

.diagnostics-row {
  padding: 1rem 1.3rem 1rem 1.6rem;
  height: 68px;
}

.diagnostics-row--compact {
  padding: 0.2rem 1.3rem 0.2rem 1.6rem;
  height: 43px;
}

.diagnostics__search {
  display: table;
  width: 100%;
}
.diagnostics__search__row {
  display: table-row;
}

.diagnostics__body {
  height: 100%;
  flex-direction: column;
}

.diagnostics__filters-clear {
  display: flex;
  float: right;
  padding: 3px 0 0 0;
}
.diagnostics__filters-clear i {
  align-self: center;
  line-height: 0;
}

.diagnostics__filters--severities {
  min-width: 300px;
}

.theme-dark .diagnostics__header__refresh {
  background-color: #2b353a;
}
.theme-dark .diagnostics__search {
  background-color: #1d2529;
}
.theme-dark .diagnostics__body {
  background-color: #1d2529;
}

.vehicle-profile {
  height: 100%;
}

.comparison-modal-contents, .modify-error-modal-contents {
  min-width: 300px;
  max-width: 600px;
}
.comparison-modal-contents .modal-main-content, .modify-error-modal-contents .modal-main-content {
  display: flex;
  flex-direction: column;
}
.comparison-modal-contents .modal-button-container, .modify-error-modal-contents .modal-button-container {
  display: flex;
  margin: 0.8rem 0 0;
  justify-content: space-between;
}
.comparison-modal-contents .modal-button-container--single-button, .modify-error-modal-contents .modal-button-container--single-button {
  justify-content: flex-end;
}
.comparison-modal-contents .date-picker, .modify-error-modal-contents .date-picker {
  margin-top: 0.8rem;
  display: flex;
  width: 100%;
}
.comparison-modal-contents .date-picker .ember-power-select-trigger, .modify-error-modal-contents .date-picker .ember-power-select-trigger {
  width: 100%;
}

.modal-dialog .modal-title-center {
  text-align: center;
}

.dropdown__short .ember-power-select-options[role=listbox] {
  max-height: 132px;
}

.transmission-profile-acns {
  display: block;
  position: relative;
  height: calc(100% - 100px);
}

.transmission-profile-table-data {
  display: flex;
}

.transmission-profile-table-data__information {
  display: flex;
  align-items: center;
  margin-left: 5px;
}
.transmission-profile-table-data__information .icon-help {
  width: 18px;
  height: 18px;
}

.acn-table-heading {
  padding-top: 15px;
}
.acn-table-heading:first-child {
  width: 33%;
}

.acn-table-heading--three-columns {
  width: 33%;
}

.acn-table-row {
  height: 50px;
}

.not-available-message, .no-config-message {
  font-style: italic;
}

.not-available-message::before {
  content: "Unavailable for this software version";
}

.no-config-message::before {
  content: "Currently unavailable";
}

.profile-row__column {
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0.8rem 1rem;
}
.profile-row__column #icon-close-reset:hover {
  cursor: pointer;
}
.profile-row .hidden {
  display: none;
}

.comparison-header {
  align-self: flex-end;
}
.comparison-header__reset {
  margin-left: 5px;
}

.comparison-row {
  padding: 26px 28px 26px calc(15px + 150px);
  display: flex;
  flex-direction: row;
  border-bottom: 1px solid;
  height: 100px;
  justify-content: space-between;
}
.comparison-row .profile-row__column {
  padding: 0;
  flex: 0.33;
}
.comparison-row .profile-row__column--current-value {
  padding-top: 0.4em;
}

.transmission-profile__sidebar {
  width: 150px;
}

.transmission-profile__table {
  table-layout: fixed;
  width: 100%;
  border-collapse: collapse;
}
.transmission-profile__table tr {
  border-bottom: 1px solid;
}
.transmission-profile__table tr td:first-of-type .transmission-profile-table-data {
  font-family: "OpenSans-Regular", Helvetica, Roboto, sans-serif;
  font-size: 0.875rem;
  line-height: 1.43em;
}
.transmission-profile__table tr td .transmission-profile-table-data {
  font-family: "OpenSans-Light", Helvetica, Roboto, sans-serif;
  font-size: 0.875rem;
  line-height: 1.43em;
}
.transmission-profile__table th {
  padding-bottom: 15px;
}
.transmission-profile__table th:first-child, .transmission-profile__table td:first-child {
  padding-left: 10px;
}
.transmission-profile__table td {
  padding: 5px 10px 5px 0;
  height: 50px;
  word-wrap: break-word;
}
.transmission-profile__table td input {
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
}

.acn-table-row--error {
  column-span: all;
  font-style: italic;
}

.theme-dark .user-profile {
  background-color: #08090a;
  color: #e8eaea;
}
.theme-dark .comparison-row {
  border-bottom-color: rgba(161, 167, 170, 0.3607843137);
}
.theme-dark .nav-header-row {
  border-color: rgba(161, 167, 170, 0.3607843137);
}
.theme-dark .acn-table-row {
  border-color: rgba(161, 167, 170, 0.3607843137);
}
.theme-dark .acn-table-row td {
  color: #a1a7aa;
}
.theme-dark .acn-table-row td .icon-help path {
  fill: #a1a7aa;
}
.theme-dark .acn-table-row td:first-of-type {
  color: #e8eaea;
}
.theme-dark .acn-table-row td:first-of-type .icon-help path {
  fill: #a1a7aa;
}
.theme-dark .transmission-profile-acns {
  background-color: #1d2529;
}
.theme-dark .acn-table-row--comparison {
  background-color: rgba(0, 123, 194, 0.2);
}
.theme-dark .profile-row__column #icon-close-reset {
  width: 18px;
  height: 18px;
  fill: #a1a7aa;
}

.vehicle-history {
  height: 100%;
}

.vehicle-history__header {
  font-family: "OpenSans-SemiBold";
  line-height: 1.6em;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  flex-grow: 7;
  height: 4.15rem;
  padding: 1.5rem;
}

.vehicle-history__table {
  height: 100%;
}
.vehicle-history__table .plusminus-button--small {
  display: flex;
}
.vehicle-history__table .column-headings .row__no-flex-column:first-of-type {
  flex: 0 0 40px;
}
.vehicle-history__table .big-table .row *:first-of-type {
  flex: 0 0 40px;
}

.theme-dark .vehicle-history {
  background-color: #08090a;
}
.theme-dark .vehicle-history__table {
  background-color: #1d2529;
}

.row {
  font-size: 14px;
  border-bottom: 1px solid;
  display: flex;
  align-items: center;
  text-align: left;
  position: relative;
}
.row > * {
  flex-basis: 0;
  flex-grow: 1;
}
.row__no-flex-column {
  flex: none;
}
.row__no-flex-column--narrow {
  width: 1.7rem;
}
.row__no-flex-column--small {
  width: 2.5rem;
}
.row__no-flex-column--medium {
  width: 3.5rem;
}
.row__no-flex-column--large {
  width: 6rem;
}
.row__no-flex-column--ultra-large {
  width: 18rem;
}

.row--top-border {
  border-top: 1px solid;
}

.row--tall {
  height: 5.5rem;
}

.row__space {
  margin-left: 1.5rem;
  flex-grow: 0.08;
}

.row__center-plus-minus {
  position: relative;
  top: -5px;
}

.row__tiny-column {
  flex-grow: 0;
}

.row__double-extra-small-column {
  flex-grow: 0.25;
}

.row__extra-small-column {
  flex-grow: 0.5;
}

.row__small-column {
  flex-grow: 0.75;
}

.row__normal-column {
  flex-grow: 1;
}

.row__wide-column {
  flex-grow: 1.5;
}

.row__extra-wide-column {
  flex-grow: 2;
}

.row__spaced {
  margin-right: 0.5rem;
}

.row--stretch {
  align-items: stretch;
}
.row--stretch > * {
  padding: 0 1.3rem;
  border-right: 1px solid;
  border-bottom: 0;
}
.row--stretch > :first-child {
  padding-left: 0;
}
.row--stretch > :last-child {
  border-right: 0;
  padding-right: 0;
}

.row--without-border {
  border-bottom-width: 0;
}

.row--drawer {
  border-bottom: 1px;
  border-width: 1px;
}

.row--inline {
  flex: 1;
  display: flex;
  align-items: center;
}

.list__row {
  padding: 1.6rem 1.3rem 1.6rem 1.6rem;
}

.list__row--medium {
  padding: 0.8rem 1.3rem 0.8rem 1.6rem;
}

.list__row--thin {
  padding: 0rem 1.3rem 0rem 1.6rem;
}

.list__row--sidebar {
  padding-left: 0;
  padding-right: 0;
}

.row__drawer-list-item {
  padding-left: 0;
  padding-right: 0;
  margin-left: 3.3rem;
  margin-right: 1.3rem;
}

.row__drawer-list-item:last-of-type {
  border-bottom-width: 0;
}

.highlight {
  position: relative;
}
.highlight::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.sar-header__content {
  padding-right: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.sar-header--vin {
  font-family: "OpenSans-Regular", Verdana, Geneva, Tahoma, sans-serif;
  font-size: 1rem;
  line-height: 1.5em;
  letter-spacing: 0.69px;
}
.sar-header #icon-cummins-logo {
  min-width: 30px;
  min-height: 30px;
  background-size: 30px 30px;
  background-position: center;
}
.sar-header #icon-user-generated-sar {
  min-width: 32px;
  min-height: 34px;
  background-size: 32px 34px;
  background-position: center;
}

.software-version-header {
  max-width: 215px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.button-group {
  border-radius: 6px;
  height: 40px;
  position: relative;
  vertical-align: middle;
  display: inline-block;
  margin: auto 0.3rem;
}
.button-group button {
  border-radius: 0;
}
.button-group button:first-child {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.button-group button:last-child {
  background: none;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
.button-group button {
  margin: 0;
  height: 100%;
  position: relative;
  float: left;
}
.button-group button + button {
  border-style: solid;
  border-width: 0 0 0 2px;
  border-image-slice: 1;
  border-image-repeat: stretch;
}

.button-group-inner {
  height: 100%;
  border: 1px solid transparent;
}

.button-group--no-borders button + button {
  border-width: 0;
}

.button-group .sar-button__right {
  margin: 1px;
}

.sar-button__severity-id {
  font-family: "OpenSans-SemiBold", Helvetica, Roboto, sans-serif;
  font-size: 0.875rem;
  line-height: 1.57rem;
  width: 40px;
}

.sar-button__sar-id {
  font-family: "OpenSans-SemiBold", Helvetica, Roboto, sans-serif;
  font-size: 0.875rem;
  line-height: 1.57rem;
  min-width: 110px;
  margin: 1px 0 1px 1px;
}

.sar-button__sar-id--service-ranger {
  min-width: 110px;
}

.sar-button__spacer {
  margin-right: 1rem;
  margin-left: 0;
}

.sar-button__info {
  min-width: 25%;
}
.sar-button__info--size-compact {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 5px;
}
.sar-button__info--size-compact span:first-of-type {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  max-width: 150px;
}
.sar-button__info--size-compact span:nth-of-type(2) {
  white-space: nowrap;
  line-height: 1.3em;
}
.sar-button__info--size-compact.-no-repair-order span:first-of-type {
  max-width: none;
}
.sar-button__info--size-normal {
  display: flex;
  flex-direction: column;
}
.sar-button__info--size-normal span:first-of-type {
  margin-bottom: 3px;
}

.sar-button__info--ro {
  font-family: "OpenSans-SemiBold", Helvetica, Roboto, sans-serif;
  font-size: 0.875rem;
  line-height: 1.57rem;
}

.sar-button-compact {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-right: 1rem;
}

.sar-button-compact__sar-id {
  font-family: "OpenSans-SemiBold", Helvetica, Roboto, sans-serif;
  font-size: 0.875rem;
  line-height: 1.57rem;
  min-width: 110px;
}

.sar-button-compact:hover .sar-button-compact__sar-id > span {
  border-bottom-width: 2px;
  border-bottom-style: solid;
}

.sar-button-compact__severity-id {
  font-family: "OpenSans-SemiBold", Helvetica, Roboto, sans-serif;
  font-size: 0.875rem;
  line-height: 1.57rem;
  min-width: 2em;
  height: 2em;
  padding: 2px;
  border-radius: 3px;
}

.severity-circle {
  margin-right: 1px;
  display: inline-block;
  height: 10px;
  width: 10px;
  border-radius: 50%;
}

.header-banner {
  background-color: #182022;
  height: 132px;
  max-height: 132px;
  white-space: nowrap;
}
.header-banner__section {
  height: calc(132px - 2rem);
  display: flex;
  align-items: center;
}

@keyframes placeHolderShimmer {
  0% {
    background-position: -50vw 0;
  }
  100% {
    background-position: 70vw 0;
  }
}
.template-background {
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-name: placeHolderShimmer;
  animation-timing-function: cubic-bezier(0, 0.56, 0.58, 1);
  position: absolute;
  pointer-events: none;
  top: 0;
  bottom: 0;
  left: 4%;
  right: 0;
  opacity: 1;
  transition: opacity 1.25s;
  height: 100vh;
  overflow: hidden;
}
.template-background.fade-out {
  opacity: 0;
}

#sar-detail {
  opacity: 0;
  transition: opacity 1.25s;
}
#sar-detail.fade-in {
  opacity: 1;
}

section::-webkit-scrollbar {
  display: none;
}

html {
  scrollbar-width: none;
}

.background-masker {
  position: absolute;
}
.background-masker.right-edge {
  right: 0;
  top: 28px;
  width: 7%;
  max-width: 175px;
  height: 97%;
}
.background-masker.left-edge {
  left: 0;
  top: 28px;
  width: 1%;
  max-width: 25px;
  height: 97%;
}
.background-masker.sar-callout--top, .background-masker.sar-callout--bottom {
  left: 0;
  right: 0;
}
.background-masker.sar-callout--bottom {
  height: 50px;
}
.background-masker.sar-callout--top {
  top: 0;
  height: 174px;
}
.background-masker.sar-callout--bottom {
  top: 350px;
}
.background-masker.sar-callout--mapbox_left, .background-masker.sar-callout--info_right, .background-masker.sar-callout--severity-box_right {
  top: 177px;
  width: 65px;
  height: 170px;
}
.background-masker.sar-callout--severity-box_right {
  left: 200px;
}
.background-masker.sar-callout--info_bottom, .background-masker.sar-callout--info_top {
  left: 265px;
  width: 650px;
  height: 32px;
  top: 177px;
}
.background-masker.sar-callout--info_bottom {
  top: 315px;
}
.background-masker.sar-callout--info_left {
  top: 205px;
  height: 94px;
  left: 265px;
  width: 55px;
}
.background-masker.sar-callout--info_right {
  left: 540px;
  width: 85px;
}
.background-masker.sar-callout--info_divider-1, .background-masker.sar-callout--info_divider-2, .background-masker.sar-callout--info_divider-3, .background-masker.sar-callout--info_divider-4 {
  left: 320px;
  height: 10px;
  width: 220px;
}
.background-masker.sar-callout--info_divider-1 {
  top: 222px;
}
.background-masker.sar-callout--info_divider-2 {
  top: 244px;
}
.background-masker.sar-callout--info_divider-3 {
  top: 266px;
}
.background-masker.sar-callout--info_divider-4 {
  top: 289px;
}
.background-masker.sar-callout--mapbox_left {
  left: 915px;
}
.background-masker.sar-callout--odometer_divider, .background-masker.sar-callout--odometer_bottom {
  left: 605px;
  height: 26.25px;
  width: 310px;
}
.background-masker.sar-callout--odometer_bottom {
  top: 283px;
}
.background-masker.sar-callout--odometer_divider {
  top: 260px;
}
.background-masker.sar-callout--odometer_location-right {
  left: 820px;
  top: 285px;
  height: 30px;
  width: 100px;
}
.background-masker.fcap--title {
  top: 400px;
  height: 30px;
  right: 0;
  left: 310px;
}
.background-masker.fcap--bottom, .background-masker.fcap--title-divider {
  top: 430px;
  height: 65px;
  right: 0;
  left: 0;
}
.background-masker.fcap--bottom {
  top: 775px;
}
.background-masker.text-section--top {
  top: 0;
  height: 75px;
  width: 100%;
}
.background-masker.text-section--bottom {
  top: 195px;
  height: 77px;
  width: 100%;
}
.background-masker.text-section--right, .background-masker.text-section--left {
  height: 100%;
  left: 0;
  width: 5%;
  top: 0;
}
.background-masker.text-section--right {
  left: 90%;
  width: 10%;
}
.background-masker.text-section_info-divider--top, .background-masker.text-section_info-divider--bottom-1, .background-masker.text-section_info-divider--bottom-2, .background-masker.text-section_info-divider--main {
  top: 40%;
  height: 30px;
  width: 100%;
  left: 0;
}
.background-masker.text-section_info-divider--top {
  top: 32%;
  height: 10px;
}
.background-masker.text-section_info-divider--bottom-1 {
  top: 56%;
  height: 10px;
}
.background-masker.text-section_info-divider--bottom-2 {
  top: 64%;
  height: 10px;
}
.background-masker.text-section_info-text--cover {
  width: 35%;
  left: 55%;
  height: 20px;
  top: 66%;
}

.fcap--diagnose-1,
.fcap--diagnose-2,
.fcap--diagnose-3,
.fcap--actions,
.fcap--dealer-actions,
.fcap--notes {
  top: 499px;
  position: absolute;
  width: 30%;
  height: 272px;
}

.fcap--actions {
  left: 1.5%;
}

.fcap--dealer-actions {
  left: 32%;
}

.fcap--notes {
  left: 62.5%;
}

.fcap--diagnose-1 {
  left: 1.5%;
  top: 847px;
}

.fcap--diagnose-2 {
  left: 32%;
  top: 847px;
}

.fcap--diagnose-3 {
  left: 62.5%;
  top: 847px;
}

.sar-fcap__troubleshooting .push-button {
  margin: 1rem 1rem 1rem 0;
}

.search {
  height: 3.3rem;
  position: relative;
  display: block;
}
.search input {
  padding: 0.8rem 0.8rem;
  padding-right: 2.6rem;
  position: absolute;
  width: 100%;
  height: 100%;
}

.search__placeholder {
  padding: 0.8rem 0.8rem;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
}
.search__placeholder--icon-offset {
  margin-left: 5px;
}

.search--tall {
  height: 4.15rem;
}
.search--tall .search__placeholder {
  line-height: 4.15rem;
}
.search--tall input {
  margin-top: 0px;
}

.search__right {
  position: relative;
  top: 1.3rem;
  right: 1.4rem;
}

.master-search {
  position: relative;
  width: 50rem;
  max-width: 50rem;
}

.master-search__input {
  display: flex;
  align-items: center;
  margin: 0;
}

.master-search__results {
  border: 2px solid;
  margin-top: -6px;
  width: 100%;
}

.master-search__message {
  font-family: "OpenSans-Regular", Helvetica, Roboto, sans-serif;
  font-size: 0.875rem;
  line-height: 1.43em;
  padding: 1.3rem 2rem;
}

.master-search__total-results {
  font-family: "OpenSans-SemiBold", Helvetica, Roboto, sans-serif;
  font-size: 0.875rem;
  line-height: 1.57rem;
}

.master-search__loading {
  padding: 1.3rem 1rem;
  display: flex;
  align-items: center;
}

.master-search__total-panel {
  height: 3.3rem;
  padding: 0.8rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.master-search__group-header {
  border-top: 1px solid;
  padding-left: 0.5rem;
  line-height: 3.3rem;
  flex: 1;
  display: flex;
  align-items: center;
  text-align: left;
  height: 3.3rem;
}

.master-search__group-items {
  display: inline-block;
}

.master-search__input-category {
  border-right: 0px;
  height: 3.3rem;
  display: inline-block;
  width: 15rem;
}
.master-search__input-category .ember-power-select-trigger {
  height: 3.3rem !important;
  overflow-x: visible;
}

.master-search__input-text {
  display: inline-block;
  float: right;
  width: 35rem;
}

a.unstyled-link {
  color: #939393;
}
a.unstyled-link:hover, a.unstyled-link:focus {
  color: #939393;
}

.mobile-row {
  border-bottom: 1px solid;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  padding: 5px 0;
}

.mobile-row__results {
  display: inline-block;
  width: 90%;
}

.row-data {
  display: flex;
  justify-content: space-evenly;
  flex-direction: row;
  width: 100%;
  margin: 10px 0;
}

.row-data__label {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 33%;
  padding-right: 5px;
  text-align: right;
  text-transform: lowercase;
  font-variant: small-caps;
  font-size: 14px;
}

.row-data__value {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 66%;
  padding-left: 5px;
  text-align: left;
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mobile-row__navigation {
  display: inline-block;
  width: 10%;
}

.navigation-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.mobile-row__download-indicator {
  position: absolute;
}
.mobile-row__download-indicator .loading-ellipsis {
  margin-top: -0.25rem;
  width: 12px;
}
.mobile-row__download-indicator .loading-ellipsis span.dot {
  font-size: 2rem;
}

.theme-dark .icon.icon--hover svg path {
  fill: #ffffff;
}

.sidebar {
  flex: 0 0 20.1rem;
  max-width: 20.1rem;
}

.text--vehicle-id {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cells {
  padding-right: 0px;
}

.slider {
  display: inline-block;
  position: relative;
  width: 3.4rem;
  height: 1.3rem;
  border-radius: 0.65rem;
}
.slider::before, .slider::after {
  content: "";
  border-radius: 0.65rem;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  transition: left 0.25s ease, right 0.25s ease, background-position 0.25s ease;
}
.slider::before {
  right: 1.5rem;
  background-position: 0.5rem 0.38rem, 0 0;
}
.slider::after {
  background-position: 2.15rem 0.15rem, 0 0;
}

.slider__toggle {
  width: 1.9rem;
  height: 1.3rem;
  border-radius: 0.65rem;
  position: absolute;
  left: 0;
  transition: left 0.25s ease;
}

.slider__toggle:focus {
  outline: none;
}

.slider--is-on::before {
  right: 0;
}
.slider--is-on .slider__toggle {
  left: 1.5rem;
}

.tabbed-table--content {
  top: 0px;
  display: flex;
  flex-direction: row;
  height: 100%;
  width: 100%;
}

.tabbed-table--content__modal {
  position: absolute;
}

.tabbed-table--sidebar {
  flex-shrink: 0;
}

.tabbed-table--sidebar__default {
  width: max-content;
  min-width: 90px;
}

.sidebar--label {
  height: 55px;
  padding-left: 15px;
  padding-right: 10px;
  font-size: 14px;
  display: flex;
  flex-direction: row;
  cursor: pointer;
}

.tabbed-table--table-section {
  padding: 15px 15px 0 15px;
  height: 100%;
}

.tabbed-table--table-section__with-message {
  height: calc(100% - 80px);
  padding-top: 0;
}

.tabbed-table--warning-message {
  color: #e7e7e7;
  height: 80px;
  padding: 15px 15px 10px 25px;
  display: flex;
  align-items: center;
}

.warning-message--text {
  padding-left: 5px;
}

.text--label {
  width: 90%;
  white-space: normal;
  margin: auto;
}

.label--icon {
  width: 35px;
  display: flex;
  flex-direction: row;
  padding-left: 5px;
  justify-content: center;
  position: relative;
}

.theme-dark #icon-arrow-compare__stroke {
  stroke: #007bc1;
}
.theme-dark .tabbed-table--content .icon-update--forced {
  fill: #f0cb2f;
}
.theme-dark .tabbed-table--content .icon-update--invalid {
  fill: #ca3c3d;
}
.theme-dark .tabbed-table--content .icon-update--valid {
  fill: #007bc1;
}
.theme-dark .tabbed-table--content .icon-message--warning {
  fill: #f0cb2f;
}
.theme-dark .tabbed-table--content .icon-message--error {
  fill: #ca3c3d;
}

table + table {
  margin-top: 1rem;
}

th {
  font-family: "OpenSans-SemiBold", Helvetica, Roboto, sans-serif;
  font-size: 0.875rem;
  line-height: 1.57rem;
  text-align: left;
}

.fault-list > tbody > tr:first-of-type > th {
  border-bottom: 1px solid;
}
.fault-list .priority {
  border-top: 1px solid;
}
.fault-list tr.row__new-protocol + tr.row__old-protocol td, .fault-list tr.row__new-protocol + tr.row__old-protocol th {
  border-top: 2px solid;
}

.table {
  border: 1px solid;
  border-collapse: collapse;
  border-spacing: 0;
  text-align: left;
}
.table th {
  font-family: "OpenSans-SemiBold", Helvetica, Roboto, sans-serif;
  font-size: 0.875rem;
  line-height: 1.57rem;
}
.table td {
  border-bottom: 1px solid;
}
.table tbody > tr:last-of-type td {
  border: none;
}
.table td,
.table th {
  padding: 0.5rem;
  vertical-align: top;
}
.table > tbody > tr > :first-child {
  padding-left: 1rem;
}

.table-container--scrollable {
  overflow-y: auto;
  overflow-x: hidden;
  border: 1px solid;
}
.table-container--scrollable .table {
  border: none;
  border-collapse: separate;
}
.table-container--scrollable .table > thead > tr > th {
  border-bottom: 1px solid;
  position: sticky;
  top: 0;
  z-index: 1;
}

.table--tab-content {
  font-family: "OpenSans-Regular", Helvetica, Roboto, sans-serif;
  font-size: 0.875rem;
  line-height: 1.43em;
  border-spacing: 0;
  border-radius: 2px;
  text-align: left;
}
.table--tab-content tr:first-of-type > th {
  border: 0;
}
.table--tab-content tr:first-of-type > th:last-of-type {
  vertical-align: middle;
  font-family: "OpenSans-Regular";
  line-height: 1.67em;
  font-size: 0.75rem;
}
.table--tab-content td,
.table--tab-content th {
  padding: 0.5rem;
  vertical-align: top;
  border-top: 1px solid;
}
.table--tab-content .empty-column {
  width: 3rem;
}

.table--tab-header {
  border-spacing: 0;
}
.table--tab-header tr:first-of-type > th span {
  font-family: "OpenSans-SemiBold", Helvetica, Roboto, sans-serif;
  font-size: 0.875rem;
  line-height: 1.57rem;
}
.table--tab-header th {
  text-align: center;
  vertical-align: middle;
  width: 113px;
}

.table--labeled-list {
  margin: 0;
}
.table--labeled-list th {
  padding: 0 0.4rem 0 0;
  text-align: right;
  border-width: 0;
}
.table--labeled-list td {
  padding: 0;
  border-width: 0;
}

.table--search-group {
  border: 0;
  border-spacing: 0;
}
.table--search-group th {
  padding: 0.5rem 1rem;
  vertical-align: top;
  border-bottom: 1px solid;
}
.table--search-group td {
  padding: 0.5rem 1rem;
  vertical-align: top;
}

.word-wrap--table {
  table-layout: fixed;
}

.word-wrap--td {
  word-wrap: break-word;
}

.td--small {
  width: 5%;
}

.td--medium {
  width: 15%;
}

.td--large {
  width: 30%;
}

.table--search-group th {
  font-family: "OpenSans-SemiBold", Helvetica, Roboto, sans-serif;
  font-size: 0.875rem;
  line-height: 1.57rem;
}
.table--search-group td {
  font-family: "OpenSans-Regular", Helvetica, Roboto, sans-serif;
  font-size: 0.875rem;
  line-height: 1.43em;
}
.table--search-group td:nth-child(1) {
  font-family: "OpenSans-SemiBold", Helvetica, Roboto, sans-serif;
  font-size: 0.875rem;
  line-height: 1.57rem;
}

.table--labeled-list th {
  font-family: "OpenSans-Regular";
  line-height: 1.67em;
  font-size: 0.75rem;
}

.table--labeled-list td {
  font-family: "OpenSans-Regular";
  line-height: 1.67em;
  font-size: 0.75rem;
}

.callout .table--labeled-list tr {
  font-family: "OpenSans-Regular";
  line-height: 1.67em;
  font-size: 0.75rem;
  line-height: 1.3rem;
}

.table--sub-heading-header {
  font-family: "OpenSans-SemiBold", Helvetica, Roboto, sans-serif;
  font-size: 0.875rem;
  line-height: 1.57rem;
  height: 26px;
  vertical-align: middle;
}

.table--borderless th {
  font-family: "OpenSans-SemiBold", Helvetica, Roboto, sans-serif;
  font-size: 0.875rem;
  line-height: 1.57rem;
}

.big-table td {
  font-size: 14px;
}

.user-table {
  display: block;
  flex: 1;
}

.big-table .drawer svg,
.big-table .trench svg {
  margin-right: 5px;
  width: 24px;
  height: 24px;
}

.theme-dark .table-container--scrollable {
  border-color: rgba(161, 167, 170, 0.3607843137);
  background-color: #1d2529;
}
.theme-dark .table-container--scrollable .table > thead > tr > th {
  border-color: rgba(161, 167, 170, 0.3607843137);
  background-color: #1d2529;
}
.theme-dark .table-container--scrollable .table > tbody > tr > td {
  border-color: rgba(161, 167, 170, 0.3607843137);
}
.theme-dark .table {
  background: #1d2529;
  border-color: rgba(161, 167, 170, 0.3607843137);
}
.theme-dark .table .table__bright {
  color: #1d2529;
  background: rgba(161, 167, 170, 0.3607843137);
}
.theme-dark .table .table__group {
  background-color: rgba(123, 131, 135, 0.3607843137);
  color: #e8eaea;
}
.theme-dark .table .table__dark {
  color: rgba(161, 167, 170, 0.3607843137);
}
.theme-dark .table > tbody > tr:first-of-type > th {
  border-color: rgba(161, 167, 170, 0.3607843137);
}
.theme-dark .table .plus--bright {
  border-color: rgba(161, 167, 170, 0.3607843137);
}
.theme-dark .table .plus--bright::after, .theme-dark .table .plus--bright::before {
  background: rgba(161, 167, 170, 0.3607843137);
}
.theme-dark .table > tbody > tr > th, .theme-dark .table > tbody > tr > td {
  color: #e8eaea;
}
.theme-dark .table .table--labeled-list th {
  color: #e8eaea;
}
.theme-dark .table .table--labeled-list td {
  color: #e8eaea;
}
.theme-dark .table td, .theme-dark .table th {
  border-color: rgba(161, 167, 170, 0.3607843137);
}
.theme-dark .table--severity-informational {
  background: #1d2529;
  border-color: #80c4f9;
}
.theme-dark .table--severity-informational .table__bright {
  color: #1d2529;
  background: #80c4f9;
}
.theme-dark .table--severity-informational .table__group {
  background-color: rgba(123, 131, 135, 0.3607843137);
  color: #e8eaea;
}
.theme-dark .table--severity-informational .table__dark {
  color: #80c4f9;
}
.theme-dark .table--severity-informational > tbody > tr:first-of-type > th {
  border-color: #80c4f9;
}
.theme-dark .table--severity-informational .plus--bright {
  border-color: #80c4f9;
}
.theme-dark .table--severity-informational .plus--bright::after, .theme-dark .table--severity-informational .plus--bright::before {
  background: #80c4f9;
}
.theme-dark .table--severity-informational > tbody > tr > th, .theme-dark .table--severity-informational > tbody > tr > td {
  color: #e8eaea;
}
.theme-dark .table--severity-informational .table--labeled-list th {
  color: #e8eaea;
}
.theme-dark .table--severity-informational .table--labeled-list td {
  color: #e8eaea;
}
.theme-dark .table--severity-informational > tbody > tr:first-of-type > th {
  border-bottom-color: #2a3a44;
}
.theme-dark .table--severity-informational .priority {
  color: #80c4f9;
  border-top-color: #2a3a44;
}
.theme-dark .table--severity-informational > tbody > tr > th {
  color: #80c4f9;
  border-color: #2a3a44;
}
.theme-dark .table--severity-informational > tbody > tr > td {
  color: #e8eaea;
  border-color: #2a3a44;
}
.theme-dark .table--severity-informational tr.row__new-protocol + tr.row__old-protocol td, .theme-dark .table--severity-informational tr.row__new-protocol + tr.row__old-protocol th {
  border-top: rgba(128, 196, 249, 0.4);
}
.theme-dark .table--severity-service-now {
  background: #1d2529;
  border-color: #f0cb2f;
}
.theme-dark .table--severity-service-now .table__bright {
  color: #1d2529;
  background: #f0cb2f;
}
.theme-dark .table--severity-service-now .table__group {
  background-color: rgba(123, 131, 135, 0.3607843137);
  color: #e8eaea;
}
.theme-dark .table--severity-service-now .table__dark {
  color: #f0cb2f;
}
.theme-dark .table--severity-service-now > tbody > tr:first-of-type > th {
  border-color: #f0cb2f;
}
.theme-dark .table--severity-service-now .plus--bright {
  border-color: #f0cb2f;
}
.theme-dark .table--severity-service-now .plus--bright::after, .theme-dark .table--severity-service-now .plus--bright::before {
  background: #f0cb2f;
}
.theme-dark .table--severity-service-now > tbody > tr > th, .theme-dark .table--severity-service-now > tbody > tr > td {
  color: #e8eaea;
}
.theme-dark .table--severity-service-now .table--labeled-list th {
  color: #e8eaea;
}
.theme-dark .table--severity-service-now .table--labeled-list td {
  color: #e8eaea;
}
.theme-dark .table--severity-service-now > tbody > tr:first-of-type > th {
  border-bottom-color: #383b2a;
}
.theme-dark .table--severity-service-now .priority {
  color: #f0cb2f;
  border-top-color: #383b2a;
}
.theme-dark .table--severity-service-now > tbody > tr > th {
  color: #f0cb2f;
  border-color: #383b2a;
}
.theme-dark .table--severity-service-now > tbody > tr > td {
  color: #e8eaea;
  border-color: #383b2a;
}
.theme-dark .table--severity-service-now tr.row__new-protocol + tr.row__old-protocol td, .theme-dark .table--severity-service-now tr.row__new-protocol + tr.row__old-protocol th {
  border-top: rgba(240, 203, 47, 0.4);
}
.theme-dark .table--severity-service-soon {
  background: #1d2529;
  border-color: #007bc1;
}
.theme-dark .table--severity-service-soon .table__bright {
  color: #1d2529;
  background: #007bc1;
}
.theme-dark .table--severity-service-soon .table__group {
  background-color: rgba(123, 131, 135, 0.3607843137);
  color: #e8eaea;
}
.theme-dark .table--severity-service-soon .table__dark {
  color: #007bc1;
}
.theme-dark .table--severity-service-soon > tbody > tr:first-of-type > th {
  border-color: #007bc1;
}
.theme-dark .table--severity-service-soon .plus--bright {
  border-color: #007bc1;
}
.theme-dark .table--severity-service-soon .plus--bright::after, .theme-dark .table--severity-service-soon .plus--bright::before {
  background: #007bc1;
}
.theme-dark .table--severity-service-soon > tbody > tr > th, .theme-dark .table--severity-service-soon > tbody > tr > td {
  color: #e8eaea;
}
.theme-dark .table--severity-service-soon .table--labeled-list th {
  color: #e8eaea;
}
.theme-dark .table--severity-service-soon .table--labeled-list td {
  color: #e8eaea;
}
.theme-dark .table--severity-service-soon > tbody > tr:first-of-type > th {
  border-bottom-color: #19303d;
}
.theme-dark .table--severity-service-soon .priority {
  color: #007bc1;
  border-top-color: #19303d;
}
.theme-dark .table--severity-service-soon > tbody > tr > th {
  color: #007bc1;
  border-color: #19303d;
}
.theme-dark .table--severity-service-soon > tbody > tr > td {
  color: #e8eaea;
  border-color: #19303d;
}
.theme-dark .table--severity-service-soon tr.row__new-protocol + tr.row__old-protocol td, .theme-dark .table--severity-service-soon tr.row__new-protocol + tr.row__old-protocol th {
  border-top: rgba(0, 123, 193, 0.4);
}
.theme-dark .table--severity-stop-now {
  background: #1d2529;
  border-color: #ca3c3d;
}
.theme-dark .table--severity-stop-now .table__bright {
  color: #1d2529;
  background: #ca3c3d;
}
.theme-dark .table--severity-stop-now .table__group {
  background-color: rgba(123, 131, 135, 0.3607843137);
  color: #e8eaea;
}
.theme-dark .table--severity-stop-now .table__dark {
  color: #ca3c3d;
}
.theme-dark .table--severity-stop-now > tbody > tr:first-of-type > th {
  border-color: #ca3c3d;
}
.theme-dark .table--severity-stop-now .plus--bright {
  border-color: #ca3c3d;
}
.theme-dark .table--severity-stop-now .plus--bright::after, .theme-dark .table--severity-stop-now .plus--bright::before {
  background: #ca3c3d;
}
.theme-dark .table--severity-stop-now > tbody > tr > th, .theme-dark .table--severity-stop-now > tbody > tr > td {
  color: #e8eaea;
}
.theme-dark .table--severity-stop-now .table--labeled-list th {
  color: #e8eaea;
}
.theme-dark .table--severity-stop-now .table--labeled-list td {
  color: #e8eaea;
}
.theme-dark .table--severity-stop-now > tbody > tr:first-of-type > th {
  border-bottom-color: #33282c;
}
.theme-dark .table--severity-stop-now .priority {
  color: #ca3c3d;
  border-top-color: #33282c;
}
.theme-dark .table--severity-stop-now > tbody > tr > th {
  color: #ca3c3d;
  border-color: #33282c;
}
.theme-dark .table--severity-stop-now > tbody > tr > td {
  color: #e8eaea;
  border-color: #33282c;
}
.theme-dark .table--severity-stop-now tr.row__new-protocol + tr.row__old-protocol td, .theme-dark .table--severity-stop-now tr.row__new-protocol + tr.row__old-protocol th {
  border-top: rgba(202, 60, 61, 0.4);
}
.theme-dark .table--severity-none {
  background: #1d2529;
  border-color: #f7f8f8;
}
.theme-dark .table--severity-none .table__bright {
  color: #1d2529;
  background: #f7f8f8;
}
.theme-dark .table--severity-none .table__group {
  background-color: rgba(123, 131, 135, 0.3607843137);
  color: #e8eaea;
}
.theme-dark .table--severity-none .table__dark {
  color: #f7f8f8;
}
.theme-dark .table--severity-none > tbody > tr:first-of-type > th {
  border-color: #f7f8f8;
}
.theme-dark .table--severity-none .plus--bright {
  border-color: #f7f8f8;
}
.theme-dark .table--severity-none .plus--bright::after, .theme-dark .table--severity-none .plus--bright::before {
  background: #f7f8f8;
}
.theme-dark .table--severity-none > tbody > tr > th, .theme-dark .table--severity-none > tbody > tr > td {
  color: #e8eaea;
}
.theme-dark .table--severity-none .table--labeled-list th {
  color: #e8eaea;
}
.theme-dark .table--severity-none .table--labeled-list td {
  color: #e8eaea;
}
.theme-dark .table--severity-none > tbody > tr:first-of-type > th {
  border-bottom-color: #394044;
}
.theme-dark .table--severity-none .priority {
  color: #f7f8f8;
  border-top-color: #394044;
}
.theme-dark .table--severity-none > tbody > tr > th {
  color: #f7f8f8;
  border-color: #394044;
}
.theme-dark .table--severity-none > tbody > tr > td {
  color: #e8eaea;
  border-color: #394044;
}
.theme-dark .table--severity-none tr.row__new-protocol + tr.row__old-protocol td, .theme-dark .table--severity-none tr.row__new-protocol + tr.row__old-protocol th {
  border-top: rgba(247, 248, 248, 0.4);
}
.theme-dark .table--configuration td {
  color: #e8eaea;
  border-color: rgba(161, 167, 170, 0.3607843137);
}
.theme-dark .table--sub-heading-header {
  background-color: #e8eaea;
  color: #424e54;
}
.theme-dark .table--outside-border {
  background-color: #1d2529;
  border: 1px solid;
  border-color: rgba(161, 167, 170, 0.3607843137);
  border-spacing: 0;
}
.theme-dark .table--outside-border th {
  color: #80bde0;
}
.theme-dark .table--outside-border .flex-grow {
  background-color: #08090a;
}
.theme-dark .table--tab-content {
  background-color: #1d2529;
}
.theme-dark .table--tab-content tr:first-of-type > th {
  color: #e8eaea;
}
.theme-dark .table--tab-content td {
  border-color: rgba(161, 167, 170, 0.3607843137);
  color: #e8eaea;
}
.theme-dark .table--tab-header tr:first-of-type > th {
  border-right: 1px solid rgba(161, 167, 170, 0.3607843137);
}
.theme-dark .selected-tab {
  background-color: #1d2529;
}
.theme-dark .not-selected-tab {
  background-color: #08090a;
}
.theme-dark .not-selected-tab span {
  color: #a1a7aa;
}
.theme-dark .table--labeled-list td {
  color: #e8eaea;
}
.theme-dark .table--search-group {
  border-color: rgba(161, 167, 170, 0.3607843137);
  background-color: #2b353a;
  color: #e8eaea;
}
.theme-dark .table--search-group th {
  border-bottom-color: rgba(161, 167, 170, 0.3607843137);
}
.theme-dark .big-table {
  background: #1d2529;
}
.theme-dark .big-table .text-highlight {
  color: #80c4f9;
}
.theme-dark .big-table .drawer svg,
.theme-dark .big-table .trench svg {
  fill: #a1a7aa;
}

.watchlist__item__heading {
  font-family: "OpenSans-SemiBold";
  line-height: 1.6em;
  font-size: 1.25rem;
}

.watchlist__item__id {
  font-family: "OpenSans-SemiBold";
  line-height: 1.75em;
  font-size: 1rem;
}

.watchlist__item__vin {
  font-family: "OpenSans-Regular", Verdana, Geneva, Tahoma, sans-serif;
  font-size: 1rem;
  line-height: 1.5em;
}

.watchlist__item__fleet-name {
  font-family: "OpenSans-Regular";
  line-height: 1.67em;
  font-size: 0.75rem;
}

.theme-dark .watchlist__item__id,
.theme-dark .watchlist__item__heading,
.theme-dark .watchlist__item__fleet-name {
  color: #e8eaea;
}
.theme-dark .watchlist__item__vin {
  color: #a1a7aa;
}

.watchlist__item__clear-all {
  font-family: "OpenSans-Regular", Verdana, Geneva, Tahoma, sans-serif;
  font-size: 1rem;
  line-height: 1.5em;
}

.watchlist__item__heading svg {
  margin-right: 0.4rem;
  margin-top: 0.4rem;
}

.icon-watchlist-toggle--small svg {
  width: 18px;
  height: 18px;
}

.icon-watchlist-toggle--large svg {
  width: 24px;
  height: 24px;
}

.tabs {
  position: relative;
  display: block;
}

.tabs__tab-name {
  display: inline-block;
  padding: 1rem 1.5rem;
  border-radius: 8px 8px 0 0;
  position: relative;
}

.tabs__tab {
  display: none;
}

.tabs__inner {
  margin-top: -1rem;
}
.tabs__inner[data-selected="0"] .tabs__tab:nth-child(1) {
  display: block;
}
.tabs__inner[data-selected="1"] .tabs__tab:nth-child(2) {
  display: block;
}
.tabs__inner[data-selected="2"] .tabs__tab:nth-child(3) {
  display: block;
}
.tabs__inner[data-selected="3"] .tabs__tab:nth-child(4) {
  display: block;
}

.tabs__tab {
  padding: 1.5rem 2.6rem 1.5rem 1.5rem;
}

.tabs + .buttons {
  padding: 1.8rem 1.6rem;
}

.configurations--column-1 {
  width: 40%;
}

.configurations--column-2 {
  width: 25%;
}

.configuration-row__current-value {
  display: flex;
  align-items: center;
}
.configuration-row__current-value .icon {
  margin-left: 5px;
}

.calibration-tooltip {
  padding: 5px;
  display: flex;
  align-items: center;
}

.current-calibration--row {
  border-bottom: 2px solid;
}

.configurations--column-3 {
  width: 35%;
}

.configuration__invalid-value {
  color: #ca3c3d;
}

.config-editor--input .ember-power-select-trigger {
  padding-right: 45px;
  padding-left: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.theme-dark .current-calibration--row {
  border-color: rgba(161, 167, 170, 0.3607843137);
}
.theme-dark .configuration-row--valid-change {
  background-color: rgba(0, 123, 194, 0.2);
}
.theme-dark .configuration-row--invalid-change {
  background-color: rgba(202, 60, 61, 0.2);
}
.theme-dark .configuration-row--invalid-value {
  color: #ca3c3d;
}
.theme-dark .configuration-row--forced-change {
  background-color: rgba(240, 203, 47, 0.2);
}
.theme-dark .configuration-row--disabled input {
  border-color: rgba(123, 131, 135, 0.3607843137);
}
.theme-dark .configuration-row--disabled input::placeholder {
  color: rgba(123, 131, 135, 0.3607843137);
}
.theme-dark .configuration-row--disabled .ember-power-select-status-icon {
  background-image: url("icons/lock.svg");
  background-position: 50%;
}
.theme-dark .configuration-row--disabled .ember-power-select-trigger[aria-disabled=true] {
  border-color: rgba(123, 131, 135, 0.3607843137);
}
.theme-dark .configuration-row--disabled .ember-power-select-trigger[aria-disabled=true] .ember-power-select-placeholder {
  color: rgba(123, 131, 135, 0.3607843137);
}
.theme-dark .configuration__invalid-value {
  color: #e59e9e;
}
.theme-dark .delivery-vector-option--disabled * {
  color: rgba(123, 131, 135, 0.3607843137);
}

header.universal-header {
  height: 105px;
  min-height: 105px;
}

.header__back-button {
  margin-right: 20px;
  padding: 2px 0px;
  display: flex;
}
.header__back-button:hover {
  cursor: pointer;
}
.header__back-button svg {
  width: 24px;
  height: 24px;
}

.header__mobile-search-button {
  display: flex;
  align-items: center;
}

.theme-dark .header__back-button svg path {
  fill: #ffffff;
}

.header__main {
  padding: 0 1rem;
  display: flex;
  height: 64px;
}
.header__main a {
  height: 64px;
}

.header__page-header {
  color: #ffffff;
  display: inline-flex;
}
.header__page-header span {
  font-family: "OpenSans-SemiBold";
  line-height: 1.6em;
  font-size: 1.25rem;
}

.header__link {
  display: inline-block;
  margin-right: 16px;
}
.header__link__user-avatar {
  margin-right: 0;
}
.header__link__diagnostics-filter {
  margin-right: 0px;
}

.header__link--pip::after {
  right: 0.9rem;
  top: 13px;
}

.header__popup {
  outline: none;
  position: fixed;
  top: 64px;
  right: 16px;
  max-height: 95vh;
  overflow-x: hidden;
  overflow-y: auto;
}

.header__popup--overflow {
  overflow: visible;
}

.update-notification__title {
  text-align: center;
}
.update-notification__body {
  text-align: center;
  padding: 1rem;
}
.update-notification__help {
  font-family: "OpenSans-SemiBold", Helvetica, Roboto, sans-serif;
  font-size: 0.875rem;
  line-height: 1.57rem;
}
.update-notification__actions {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-between;
}
.update-notification__button {
  flex-direction: column;
  flex-basis: 100%;
  flex: none;
  margin-top: 2rem;
  padding-left: 0px;
  margin-right: 5px;
}

.nav-dismiss-update-notification {
  display: flex;
  justify-content: center;
}

a.external-link-button {
  margin: 1rem 1rem 1rem 0;
  vertical-align: middle;
}

.fcap-row.links ul {
  display: inline-block;
}

[type=radio] + span::before {
  border: 2px solid;
  margin-top: -3px;
}

[type=checkbox] + span::before {
  border: 1px solid;
  margin-top: -3px;
}

.map {
  /* placeholders. will eventually replace with a map service. */
  background-size: 50rem;
  background-position: center;
}

.with-train {
  position: relative;
}
.with-train span::after {
  content: "";
  position: absolute;
  border-bottom: 1px solid;
  padding-left: 92%;
}

.readout {
  list-style-type: none;
  margin: 0;
  padding: 0;
  margin: auto;
}
.readout li {
  width: 2.2rem;
  height: 2.8rem;
  margin: 1.5px;
  padding: 0;
  display: inline-block;
  text-align: center;
  position: relative;
}
.readout li::before {
  width: 2.2rem;
  height: 2.8rem;
  top: -2px;
}
.readout li::before {
  content: "";
  display: block;
  border: 1px solid;
  border-radius: 2px;
  bottom: 1px;
  left: -1px;
  position: absolute;
}
.readout li:nth-child(1), .readout li:nth-child(4) {
  margin-right: 0.3rem;
}
.readout li:nth-child(1)::after, .readout li:nth-child(4)::after {
  content: ",";
  display: block;
  position: absolute;
  right: -0.51rem;
  bottom: -0.7rem;
}

.readout--medium li {
  width: 2.1rem;
  height: 2.6rem;
}
.readout--medium li::before {
  width: 2.1rem;
  height: 2.6rem;
  top: -1px;
}

.readout--small li {
  width: 1.9rem;
  height: 2.4rem;
}
.readout--small li::before {
  width: 1.9rem;
  height: 2.4rem;
  top: 0px;
}

.odometer .readout {
  margin: 0.7rem 0 0.5rem;
}

.location .location__content {
  margin: 0.7rem 0 0.5rem;
}

.corners {
  position: relative;
  background-size: 0.35rem 0.1rem, 0.1rem 0.35rem, 0.35rem 0.1rem, 0.1rem 0.35rem, 0.35rem 0.1rem, 0.1rem 0.35rem, 0.35rem 0.1rem, 0.1rem 0.35rem;
  background-position: top left, top left, top right, top right, bottom left, bottom left, bottom right, bottom right;
  background-repeat: no-repeat;
}

.range__separator {
  font-family: "OpenSans-Regular", Verdana, Geneva, Tahoma, sans-serif;
  font-size: 1rem;
  line-height: 1.5em;
  display: inline-block;
  margin: 0 0.6rem;
}

.crt {
  border: 1px solid;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
}

.separator {
  display: inline-block;
  width: 2px;
  border-radius: 1px;
  height: 18px;
  margin: 0 1rem;
}

.list-header {
  padding-bottom: 1rem;
}

.marker {
  height: 0;
  padding: 0 !important;
  visibility: hidden;
}

.scrollable--full-height {
  max-height: 80vh;
}

.watch-list {
  width: 33rem;
}

.cells {
  display: flex;
}
.cells > * {
  padding-right: 1rem;
}
.cells > * + * {
  border-style: solid;
  border-width: 0 0 0 1px;
  border-image-slice: 1;
  padding-left: 1rem;
}

.flag {
  position: absolute;
}

.transparent {
  opacity: 0;
}

.foreign-html ul {
  padding-left: 1rem;
}

.map {
  top: 0;
  bottom: 0;
  width: 100%;
  position: relative;
}

.map-unavailable {
  background-image: url("images/map-unavailable-c9b2d56c3a1ed654ce1e6dfa766cecd3.png");
  background-position: top left;
  background-size: cover;
  opacity: 0.15;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.map-unavailable--message {
  margin: auto;
  text-align: center;
}

.leaflet-container .leaflet-control-attribution,
.leaflet-container .leaflet-control-attribution a {
  font-size: 11px;
}

.modify-vehicle-profile__body {
  display: flex;
  flex-direction: row;
}

.modify-vehicle-profile__title {
  font-family: "OpenSans-Regular";
  line-height: 1.334em;
  font-size: 1.5rem;
  margin-top: 0;
  min-height: 100px;
  padding-top: 25px;
  padding-bottom: 30px;
}

.modify-vehicle-profile__overview__section {
  padding-top: 20px;
  padding-bottom: 20px;
}
.modify-vehicle-profile__overview__section > span:first-of-type {
  font-family: "OpenSans-SemiBold";
  line-height: 1.6em;
  font-size: 1.25rem;
}
.modify-vehicle-profile__overview__section > span:nth-of-type(2) {
  font-family: "OpenSans-SemiBold", Helvetica, Roboto, sans-serif;
  font-size: 0.875rem;
  line-height: 1.57rem;
  display: block;
}

.modify-vehicle-profile__setup {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.modify-vehicle-profile__setup__progress-bar {
  position: relative;
  min-height: 100px;
  margin-top: 15px;
  min-width: 900px;
}

.modify-vehicle-profile__setup__step {
  position: relative;
  border: 1px solid;
  min-height: 460px;
  min-width: 900px;
  max-width: 900px;
  margin: 15px 25px 30px 25px;
}
.modify-vehicle-profile__setup__step *.-with-padding {
  padding: 15px;
}

.modify-vehicle-profile__setup__step__header.-with-divider {
  border-bottom: 2px solid;
  padding: 0 0 10px;
}

.modify-vehicle-profile__setup__step__body {
  margin-top: 10px;
}

.modify-vehicle-profile__footer {
  display: flex;
  justify-content: space-between;
}

.modify-vehicle-profile__footer--single-button {
  justify-content: flex-end;
}

.back-welcome-button {
  margin-right: -0.5rem;
}

.confirm-table {
  height: 100%;
  padding: 15px;
}

.confirm-header {
  padding: 15px 0;
}

.confirm-header--column-1 {
  width: 35%;
}

.confirm-header--column-2 {
  width: 30%;
}

.confirm-header--column-3 {
  width: 5%;
}

.confirm-header--column-4 {
  width: 30%;
}

.confirm--table-row {
  height: 50px;
}

.confirm--table-row__valid-change {
  color: #263429;
}

.modify-vehicle-profile__comparison-table {
  table-layout: fixed;
  width: 100%;
  border-collapse: collapse;
}
.modify-vehicle-profile__comparison-table__title {
  padding: 0 0 10px;
}
.modify-vehicle-profile__comparison-table th, .modify-vehicle-profile__comparison-table td {
  padding: 0.5rem;
  border-bottom: 1px solid;
}
.modify-vehicle-profile__comparison-table td {
  vertical-align: middle;
  word-wrap: break-word;
}
.modify-vehicle-profile__comparison-table td input {
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
}

.delivery-vector-list {
  padding: 0 0.8rem 0;
  margin-top: -8px;
}
.delivery-vector-list * {
  font-family: "OpenSans-Regular", Verdana, Geneva, Tahoma, sans-serif;
  font-size: 1rem;
  line-height: 1.5em;
}

.campaign-number {
  padding: 0 1.5rem 0;
}

.disclaimer {
  padding-top: 1rem;
  position: absolute;
  bottom: 0;
}

.campaignid-input {
  margin-left: 1.5rem;
}

.package-sent__title {
  font-family: "OpenSans-SemiBold";
  line-height: 1.6em;
  font-size: 1.25rem;
}

.package-sent__icons {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 1rem;
}
.package-sent__icons * {
  margin-right: 1rem;
}

.import-error-modal #icon-error-outline {
  width: 65px;
  height: 65px;
  display: block;
  margin: 10px auto;
}

.theme-dark .modify-vehicle-profile__comparison-table th, .theme-dark .modify-vehicle-profile__comparison-table td {
  border-color: rgba(161, 167, 170, 0.3607843137);
}
.theme-dark .disabled {
  color: #a1a7aa;
}
.theme-dark .modify-vehicle-profile__setup__step {
  border-color: rgba(161, 167, 170, 0.3607843137);
}
.theme-dark .modify-vehicle-profile__setup__step__header {
  border-color: rgba(161, 167, 170, 0.3607843137);
}
.theme-dark .confirm-table--delivery-vector {
  border-color: rgba(161, 167, 170, 0.3607843137);
}
.theme-dark .package-sent__icons #icon-remote-updates path {
  fill: #ffffff;
}
.theme-dark .package-sent__icons #icon-arrow-forward path {
  fill: #80bde0;
}

:root {
  --iti-hover-color: rgba(0, 0, 0, 0.05);
  --iti-text-gray: #999;
  --iti-border-gray: #ccc;
  --iti-spacer-horizontal: 8px;
  --iti-flag-height: 15px;
  --iti-flag-width: 20px;
  --iti-border-width: 1px;
  --iti-arrow-height: 4px;
  --iti-arrow-width: 6px;
  --iti-triangle-border: calc(var(--iti-arrow-width) / 2);
  --iti-arrow-padding: 6px;
  --iti-arrow-color: #555;
  --iti-input-padding: 6px;
  --iti-right-hand-selected-country-padding: calc(var(--iti-spacer-horizontal) + var(--iti-spacer-horizontal) + var(--iti-flag-width));
  --iti-selected-country-arrow-padding: calc(var(--iti-arrow-padding) + var(--iti-arrow-padding) + var(--iti-flag-width) + var(--iti-spacer-horizontal) + var(--iti-arrow-width) + var(--iti-input-padding));
  --iti-path-flags-1x: url("../img/flags.png?1");
  --iti-path-flags-2x: url("../img/flags@2x.png?1");
  --iti-path-globe-1x: url("../img/globe.png");
  --iti-path-globe-2x: url("../img/globe@2x.png");
  --iti-flag-sprite-width: 5762px;
  --iti-flag-sprite-height: 15px;
  --iti-mobile-popup-margin: 30px;
}

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

.iti * {
  box-sizing: border-box;
}

.iti__hide {
  display: none;
}

.iti__v-hide {
  visibility: hidden;
}

.iti__a11y-text {
  width: 1px;
  height: 1px;
  clip: rect(1px, 1px, 1px, 1px);
  overflow: hidden;
  position: absolute;
}

.iti input.iti__tel-input,
.iti input.iti__tel-input[type=text],
.iti input.iti__tel-input[type=tel] {
  position: relative;
  z-index: 0;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-right: var(--iti-right-hand-selected-country-padding);
  margin-right: 0;
}

.iti__country-container {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  padding: var(--iti-border-width);
}

.iti__selected-country {
  z-index: 1;
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  background: none;
  border: 0;
  margin: 0;
  padding: 0;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  border-radius: 0;
  font-weight: inherit;
  line-height: inherit;
  text-decoration: none;
}

.iti__selected-country-primary {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 var(--iti-arrow-padding) 0 var(--iti-spacer-horizontal);
}

.iti__arrow {
  margin-left: var(--iti-arrow-padding);
  width: 0;
  height: 0;
  border-left: var(--iti-triangle-border) solid transparent;
  border-right: var(--iti-triangle-border) solid transparent;
  border-top: var(--iti-arrow-height) solid var(--iti-arrow-color);
}

[dir=rtl] .iti__arrow {
  margin-right: var(--iti-arrow-padding);
  margin-left: 0;
}

.iti__arrow--up {
  border-top: none;
  border-bottom: var(--iti-arrow-height) solid var(--iti-arrow-color);
}

.iti__dropdown-content {
  border-radius: 3px;
  background-color: white;
}

.iti--inline-dropdown .iti__dropdown-content {
  position: absolute;
  z-index: 2;
  margin-top: 3px;
  margin-left: calc(var(--iti-border-width) * -1);
  border: var(--iti-border-width) solid var(--iti-border-gray);
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}

.iti__search-input {
  width: 100%;
  border-width: 0;
  border-radius: 3px;
  padding: 9px 12px;
}

.iti__search-input + .iti__country-list {
  border-top: 1px solid var(--iti-border-gray);
}

.iti__country-list {
  list-style: none;
  padding: 0;
  margin: 0;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}

.iti--inline-dropdown .iti__country-list {
  max-height: 185px;
}

.iti--flexible-dropdown-width .iti__country-list {
  white-space: nowrap;
}

@media (max-width: 500px) {
  .iti--flexible-dropdown-width .iti__country-list {
    white-space: normal;
  }
}
.iti__flag-box {
  display: inline-block;
  width: var(--iti-flag-width);
}

.iti__country {
  display: flex;
  align-items: center;
  padding: 8px var(--iti-spacer-horizontal);
  outline: none;
}

.iti__dial-code {
  color: var(--iti-text-gray);
}

.iti__country.iti__highlight {
  background-color: var(--iti-hover-color);
}

.iti__flag-box, .iti__country-name {
  margin-right: var(--iti-spacer-horizontal);
}

[dir=rtl] .iti__flag-box, [dir=rtl] .iti__country-name {
  margin-right: 0;
  margin-left: var(--iti-spacer-horizontal);
}

.iti--allow-dropdown input.iti__tel-input,
.iti--allow-dropdown input.iti__tel-input[type=text],
.iti--allow-dropdown input.iti__tel-input[type=tel] {
  padding-right: var(--iti-input-padding);
  padding-left: var(--iti-selected-country-arrow-padding);
  margin-left: 0;
}

[dir=rtl] .iti--allow-dropdown input.iti__tel-input,
[dir=rtl] .iti--allow-dropdown input.iti__tel-input[type=text],
[dir=rtl] .iti--allow-dropdown input.iti__tel-input[type=tel] {
  padding-right: var(--iti-selected-country-arrow-padding);
  padding-left: var(--iti-input-padding);
  margin-right: 0;
}

.iti--allow-dropdown .iti__country-container {
  right: auto;
  left: 0;
}

[dir=rtl] .iti--allow-dropdown .iti__country-container {
  right: 0;
  left: auto;
}

.iti--allow-dropdown .iti__country-container:not(:has(+ input[disabled])):not(:has(+ input[readonly])):hover, .iti--allow-dropdown .iti__country-container:not(:has(+ input[disabled])):not(:has(+ input[readonly])):hover button {
  cursor: pointer;
}

.iti--allow-dropdown .iti__country-container:not(:has(+ input[disabled])):not(:has(+ input[readonly])) .iti__selected-country-primary:hover,
.iti--allow-dropdown .iti__country-container:not(:has(+ input[disabled])):not(:has(+ input[readonly])) .iti__selected-country:has(+ .iti__dropdown-content:hover) .iti__selected-country-primary {
  background-color: var(--iti-hover-color);
}

.iti .iti__selected-dial-code {
  margin-left: 4px;
}

[dir=rtl] .iti .iti__selected-dial-code {
  margin-left: 0;
  margin-right: 4px;
}

.iti--container {
  position: fixed;
  top: -1000px;
  left: -1000px;
  z-index: 1060;
  padding: var(--iti-border-width);
}

.iti--container:hover {
  cursor: pointer;
}

.iti--fullscreen-popup.iti--container {
  background-color: rgba(0, 0, 0, 0.5);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  position: fixed;
  padding: var(--iti-mobile-popup-margin);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.iti--fullscreen-popup .iti__dropdown-content {
  display: flex;
  flex-direction: column;
  max-height: 100%;
  position: relative;
}

.iti--fullscreen-popup .iti__country {
  padding: 10px 10px;
  line-height: 1.5em;
}

.iti__flag {
  --iti-flag-offset: 0px;
  --iti-flag-width: 20px;
  --iti-flag-height: 14px;
  height: var(--iti-flag-height);
  width: var(--iti-flag-width);
  box-shadow: 0px 0px 1px 0px #888;
  background-image: var(--iti-path-flags-1x);
  background-repeat: no-repeat;
  background-position: var(--iti-flag-offset) 0;
  background-size: var(--iti-flag-sprite-width) var(--iti-flag-sprite-height);
}

.iti__np {
  --iti-flag-width: 13px;
}

.iti__va, .iti__ch {
  --iti-flag-width: 15px;
}

.iti__ne, .iti__be {
  --iti-flag-width: 18px;
}

.iti__mc {
  --iti-flag-width: 19px;
}

.iti__zw, .iti__ws, .iti__vg, .iti__uz, .iti__uk, .iti__tv, .iti__to, .iti__tl, .iti__tk, .iti__tj, .iti__tc, .iti__ta, .iti__su, .iti__st, .iti__ss, .iti__si, .iti__sh, .iti__sd, .iti__sc, .iti__sb, .iti__ps, .iti__pn, .iti__ph, .iti__om, .iti__nz, .iti__nu, .iti__nr, .iti__ng, .iti__nf, .iti__nc, .iti__my, .iti__ms, .iti__mp, .iti__mn, .iti__mk, .iti__me, .iti__md, .iti__ly, .iti__lv, .iti__lk, .iti__lc, .iti__kz, .iti__ky, .iti__kw, .iti__kp, .iti__ki, .iti__jo, .iti__jm, .iti__io, .iti__im, .iti__ie, .iti__hu, .iti__hr, .iti__hn, .iti__hm, .iti__gw, .iti__gs, .iti__gi, .iti__gb, .iti__fk, .iti__fj, .iti__et, .iti__er, .iti__eh, .iti__dm, .iti__dg, .iti__cx, .iti__cu, .iti__ck, .iti__cc, .iti__ca, .iti__by, .iti__bs, .iti__bn, .iti__bm, .iti__ba, .iti__az, .iti__au, .iti__as, .iti__am, .iti__ai, .iti__ae, .iti__ac {
  --iti-flag-height: 10px;
}

.iti__us, .iti__um, .iti__py, .iti__mh, .iti__lr, .iti__gu, .iti__fm {
  --iti-flag-height: 11px;
}

.iti__vu, .iti__tt, .iti__sv, .iti__ni, .iti__mx, .iti__lu, .iti__lt, .iti__li, .iti__km, .iti__kg, .iti__je, .iti__ir, .iti__ht, .iti__gy, .iti__gd, .iti__fi, .iti__de, .iti__cv, .iti__cr, .iti__cq, .iti__bz, .iti__bi, .iti__bh, .iti__bg, .iti__bd {
  --iti-flag-height: 12px;
}

.iti__tg, .iti__se, .iti__pw, .iti__pl, .iti__kh, .iti__gt, .iti__ee, .iti__ax, .iti__ar {
  --iti-flag-height: 13px;
}

.iti__xk, .iti__va, .iti__sm, .iti__sj, .iti__pg, .iti__np, .iti__no, .iti__ne, .iti__mc, .iti__is, .iti__il, .iti__ga, .iti__fo, .iti__dk, .iti__ch, .iti__cd, .iti__bv, .iti__be, .iti__al {
  --iti-flag-height: 15px;
}

.iti__qa {
  --iti-flag-height: 8px;
}

.iti__ac {
  --iti-flag-offset: 0px;
}

.iti__ad {
  --iti-flag-offset: -22px;
}

.iti__ae {
  --iti-flag-offset: -44px;
}

.iti__af {
  --iti-flag-offset: -66px;
}

.iti__ag {
  --iti-flag-offset: -88px;
}

.iti__ai {
  --iti-flag-offset: -110px;
}

.iti__al {
  --iti-flag-offset: -132px;
}

.iti__am {
  --iti-flag-offset: -154px;
}

.iti__ao {
  --iti-flag-offset: -176px;
}

.iti__aq {
  --iti-flag-offset: -198px;
}

.iti__ar {
  --iti-flag-offset: -220px;
}

.iti__as {
  --iti-flag-offset: -242px;
}

.iti__at {
  --iti-flag-offset: -264px;
}

.iti__au {
  --iti-flag-offset: -286px;
}

.iti__aw {
  --iti-flag-offset: -308px;
}

.iti__ax {
  --iti-flag-offset: -330px;
}

.iti__az {
  --iti-flag-offset: -352px;
}

.iti__ba {
  --iti-flag-offset: -374px;
}

.iti__bb {
  --iti-flag-offset: -396px;
}

.iti__bd {
  --iti-flag-offset: -418px;
}

.iti__be {
  --iti-flag-offset: -440px;
}

.iti__bf {
  --iti-flag-offset: -460px;
}

.iti__bg {
  --iti-flag-offset: -482px;
}

.iti__bh {
  --iti-flag-offset: -504px;
}

.iti__bi {
  --iti-flag-offset: -526px;
}

.iti__bj {
  --iti-flag-offset: -548px;
}

.iti__bl {
  --iti-flag-offset: -570px;
}

.iti__bm {
  --iti-flag-offset: -592px;
}

.iti__bn {
  --iti-flag-offset: -614px;
}

.iti__bo {
  --iti-flag-offset: -636px;
}

.iti__bq {
  --iti-flag-offset: -658px;
}

.iti__br {
  --iti-flag-offset: -680px;
}

.iti__bs {
  --iti-flag-offset: -702px;
}

.iti__bt {
  --iti-flag-offset: -724px;
}

.iti__bv {
  --iti-flag-offset: -746px;
}

.iti__bw {
  --iti-flag-offset: -768px;
}

.iti__by {
  --iti-flag-offset: -790px;
}

.iti__bz {
  --iti-flag-offset: -812px;
}

.iti__ca {
  --iti-flag-offset: -834px;
}

.iti__cc {
  --iti-flag-offset: -856px;
}

.iti__cd {
  --iti-flag-offset: -878px;
}

.iti__cf {
  --iti-flag-offset: -900px;
}

.iti__cg {
  --iti-flag-offset: -922px;
}

.iti__ch {
  --iti-flag-offset: -944px;
}

.iti__ci {
  --iti-flag-offset: -961px;
}

.iti__ck {
  --iti-flag-offset: -983px;
}

.iti__cl {
  --iti-flag-offset: -1005px;
}

.iti__cm {
  --iti-flag-offset: -1027px;
}

.iti__cn {
  --iti-flag-offset: -1049px;
}

.iti__co {
  --iti-flag-offset: -1071px;
}

.iti__cp {
  --iti-flag-offset: -1093px;
}

.iti__cq {
  --iti-flag-offset: -1115px;
}

.iti__cr {
  --iti-flag-offset: -1137px;
}

.iti__cu {
  --iti-flag-offset: -1159px;
}

.iti__cv {
  --iti-flag-offset: -1181px;
}

.iti__cw {
  --iti-flag-offset: -1203px;
}

.iti__cx {
  --iti-flag-offset: -1225px;
}

.iti__cy {
  --iti-flag-offset: -1247px;
}

.iti__cz {
  --iti-flag-offset: -1269px;
}

.iti__de {
  --iti-flag-offset: -1291px;
}

.iti__dg {
  --iti-flag-offset: -1313px;
}

.iti__dj {
  --iti-flag-offset: -1335px;
}

.iti__dk {
  --iti-flag-offset: -1357px;
}

.iti__dm {
  --iti-flag-offset: -1379px;
}

.iti__do {
  --iti-flag-offset: -1401px;
}

.iti__dz {
  --iti-flag-offset: -1423px;
}

.iti__ea {
  --iti-flag-offset: -1445px;
}

.iti__ec {
  --iti-flag-offset: -1467px;
}

.iti__ee {
  --iti-flag-offset: -1489px;
}

.iti__eg {
  --iti-flag-offset: -1511px;
}

.iti__eh {
  --iti-flag-offset: -1533px;
}

.iti__er {
  --iti-flag-offset: -1555px;
}

.iti__es {
  --iti-flag-offset: -1577px;
}

.iti__et {
  --iti-flag-offset: -1599px;
}

.iti__eu {
  --iti-flag-offset: -1621px;
}

.iti__ez {
  --iti-flag-offset: -1643px;
}

.iti__fi {
  --iti-flag-offset: -1665px;
}

.iti__fj {
  --iti-flag-offset: -1687px;
}

.iti__fk {
  --iti-flag-offset: -1709px;
}

.iti__fm {
  --iti-flag-offset: -1731px;
}

.iti__fo {
  --iti-flag-offset: -1753px;
}

.iti__fr {
  --iti-flag-offset: -1775px;
}

.iti__fx {
  --iti-flag-offset: -1797px;
}

.iti__ga {
  --iti-flag-offset: -1819px;
}

.iti__gb {
  --iti-flag-offset: -1841px;
}

.iti__gd {
  --iti-flag-offset: -1863px;
}

.iti__ge {
  --iti-flag-offset: -1885px;
}

.iti__gf {
  --iti-flag-offset: -1907px;
}

.iti__gg {
  --iti-flag-offset: -1929px;
}

.iti__gh {
  --iti-flag-offset: -1951px;
}

.iti__gi {
  --iti-flag-offset: -1973px;
}

.iti__gl {
  --iti-flag-offset: -1995px;
}

.iti__gm {
  --iti-flag-offset: -2017px;
}

.iti__gn {
  --iti-flag-offset: -2039px;
}

.iti__gp {
  --iti-flag-offset: -2061px;
}

.iti__gq {
  --iti-flag-offset: -2083px;
}

.iti__gr {
  --iti-flag-offset: -2105px;
}

.iti__gs {
  --iti-flag-offset: -2127px;
}

.iti__gt {
  --iti-flag-offset: -2149px;
}

.iti__gu {
  --iti-flag-offset: -2171px;
}

.iti__gw {
  --iti-flag-offset: -2193px;
}

.iti__gy {
  --iti-flag-offset: -2215px;
}

.iti__hk {
  --iti-flag-offset: -2237px;
}

.iti__hm {
  --iti-flag-offset: -2259px;
}

.iti__hn {
  --iti-flag-offset: -2281px;
}

.iti__hr {
  --iti-flag-offset: -2303px;
}

.iti__ht {
  --iti-flag-offset: -2325px;
}

.iti__hu {
  --iti-flag-offset: -2347px;
}

.iti__ic {
  --iti-flag-offset: -2369px;
}

.iti__id {
  --iti-flag-offset: -2391px;
}

.iti__ie {
  --iti-flag-offset: -2413px;
}

.iti__il {
  --iti-flag-offset: -2435px;
}

.iti__im {
  --iti-flag-offset: -2457px;
}

.iti__in {
  --iti-flag-offset: -2479px;
}

.iti__io {
  --iti-flag-offset: -2501px;
}

.iti__iq {
  --iti-flag-offset: -2523px;
}

.iti__ir {
  --iti-flag-offset: -2545px;
}

.iti__is {
  --iti-flag-offset: -2567px;
}

.iti__it {
  --iti-flag-offset: -2589px;
}

.iti__je {
  --iti-flag-offset: -2611px;
}

.iti__jm {
  --iti-flag-offset: -2633px;
}

.iti__jo {
  --iti-flag-offset: -2655px;
}

.iti__jp {
  --iti-flag-offset: -2677px;
}

.iti__ke {
  --iti-flag-offset: -2699px;
}

.iti__kg {
  --iti-flag-offset: -2721px;
}

.iti__kh {
  --iti-flag-offset: -2743px;
}

.iti__ki {
  --iti-flag-offset: -2765px;
}

.iti__km {
  --iti-flag-offset: -2787px;
}

.iti__kn {
  --iti-flag-offset: -2809px;
}

.iti__kp {
  --iti-flag-offset: -2831px;
}

.iti__kr {
  --iti-flag-offset: -2853px;
}

.iti__kw {
  --iti-flag-offset: -2875px;
}

.iti__ky {
  --iti-flag-offset: -2897px;
}

.iti__kz {
  --iti-flag-offset: -2919px;
}

.iti__la {
  --iti-flag-offset: -2941px;
}

.iti__lb {
  --iti-flag-offset: -2963px;
}

.iti__lc {
  --iti-flag-offset: -2985px;
}

.iti__li {
  --iti-flag-offset: -3007px;
}

.iti__lk {
  --iti-flag-offset: -3029px;
}

.iti__lr {
  --iti-flag-offset: -3051px;
}

.iti__ls {
  --iti-flag-offset: -3073px;
}

.iti__lt {
  --iti-flag-offset: -3095px;
}

.iti__lu {
  --iti-flag-offset: -3117px;
}

.iti__lv {
  --iti-flag-offset: -3139px;
}

.iti__ly {
  --iti-flag-offset: -3161px;
}

.iti__ma {
  --iti-flag-offset: -3183px;
}

.iti__mc {
  --iti-flag-offset: -3205px;
}

.iti__md {
  --iti-flag-offset: -3226px;
}

.iti__me {
  --iti-flag-offset: -3248px;
}

.iti__mf {
  --iti-flag-offset: -3270px;
}

.iti__mg {
  --iti-flag-offset: -3292px;
}

.iti__mh {
  --iti-flag-offset: -3314px;
}

.iti__mk {
  --iti-flag-offset: -3336px;
}

.iti__ml {
  --iti-flag-offset: -3358px;
}

.iti__mm {
  --iti-flag-offset: -3380px;
}

.iti__mn {
  --iti-flag-offset: -3402px;
}

.iti__mo {
  --iti-flag-offset: -3424px;
}

.iti__mp {
  --iti-flag-offset: -3446px;
}

.iti__mq {
  --iti-flag-offset: -3468px;
}

.iti__mr {
  --iti-flag-offset: -3490px;
}

.iti__ms {
  --iti-flag-offset: -3512px;
}

.iti__mt {
  --iti-flag-offset: -3534px;
}

.iti__mu {
  --iti-flag-offset: -3556px;
}

.iti__mv {
  --iti-flag-offset: -3578px;
}

.iti__mw {
  --iti-flag-offset: -3600px;
}

.iti__mx {
  --iti-flag-offset: -3622px;
}

.iti__my {
  --iti-flag-offset: -3644px;
}

.iti__mz {
  --iti-flag-offset: -3666px;
}

.iti__na {
  --iti-flag-offset: -3688px;
}

.iti__nc {
  --iti-flag-offset: -3710px;
}

.iti__ne {
  --iti-flag-offset: -3732px;
}

.iti__nf {
  --iti-flag-offset: -3752px;
}

.iti__ng {
  --iti-flag-offset: -3774px;
}

.iti__ni {
  --iti-flag-offset: -3796px;
}

.iti__nl {
  --iti-flag-offset: -3818px;
}

.iti__no {
  --iti-flag-offset: -3840px;
}

.iti__np {
  --iti-flag-offset: -3862px;
}

.iti__nr {
  --iti-flag-offset: -3877px;
}

.iti__nu {
  --iti-flag-offset: -3899px;
}

.iti__nz {
  --iti-flag-offset: -3921px;
}

.iti__om {
  --iti-flag-offset: -3943px;
}

.iti__pa {
  --iti-flag-offset: -3965px;
}

.iti__pe {
  --iti-flag-offset: -3987px;
}

.iti__pf {
  --iti-flag-offset: -4009px;
}

.iti__pg {
  --iti-flag-offset: -4031px;
}

.iti__ph {
  --iti-flag-offset: -4053px;
}

.iti__pk {
  --iti-flag-offset: -4075px;
}

.iti__pl {
  --iti-flag-offset: -4097px;
}

.iti__pm {
  --iti-flag-offset: -4119px;
}

.iti__pn {
  --iti-flag-offset: -4141px;
}

.iti__pr {
  --iti-flag-offset: -4163px;
}

.iti__ps {
  --iti-flag-offset: -4185px;
}

.iti__pt {
  --iti-flag-offset: -4207px;
}

.iti__pw {
  --iti-flag-offset: -4229px;
}

.iti__py {
  --iti-flag-offset: -4251px;
}

.iti__qa {
  --iti-flag-offset: -4273px;
}

.iti__re {
  --iti-flag-offset: -4295px;
}

.iti__ro {
  --iti-flag-offset: -4317px;
}

.iti__rs {
  --iti-flag-offset: -4339px;
}

.iti__ru {
  --iti-flag-offset: -4361px;
}

.iti__rw {
  --iti-flag-offset: -4383px;
}

.iti__sa {
  --iti-flag-offset: -4405px;
}

.iti__sb {
  --iti-flag-offset: -4427px;
}

.iti__sc {
  --iti-flag-offset: -4449px;
}

.iti__sd {
  --iti-flag-offset: -4471px;
}

.iti__se {
  --iti-flag-offset: -4493px;
}

.iti__sg {
  --iti-flag-offset: -4515px;
}

.iti__sh {
  --iti-flag-offset: -4537px;
}

.iti__si {
  --iti-flag-offset: -4559px;
}

.iti__sj {
  --iti-flag-offset: -4581px;
}

.iti__sk {
  --iti-flag-offset: -4603px;
}

.iti__sl {
  --iti-flag-offset: -4625px;
}

.iti__sm {
  --iti-flag-offset: -4647px;
}

.iti__sn {
  --iti-flag-offset: -4669px;
}

.iti__so {
  --iti-flag-offset: -4691px;
}

.iti__sr {
  --iti-flag-offset: -4713px;
}

.iti__ss {
  --iti-flag-offset: -4735px;
}

.iti__st {
  --iti-flag-offset: -4757px;
}

.iti__su {
  --iti-flag-offset: -4779px;
}

.iti__sv {
  --iti-flag-offset: -4801px;
}

.iti__sx {
  --iti-flag-offset: -4823px;
}

.iti__sy {
  --iti-flag-offset: -4845px;
}

.iti__sz {
  --iti-flag-offset: -4867px;
}

.iti__ta {
  --iti-flag-offset: -4889px;
}

.iti__tc {
  --iti-flag-offset: -4911px;
}

.iti__td {
  --iti-flag-offset: -4933px;
}

.iti__tf {
  --iti-flag-offset: -4955px;
}

.iti__tg {
  --iti-flag-offset: -4977px;
}

.iti__th {
  --iti-flag-offset: -4999px;
}

.iti__tj {
  --iti-flag-offset: -5021px;
}

.iti__tk {
  --iti-flag-offset: -5043px;
}

.iti__tl {
  --iti-flag-offset: -5065px;
}

.iti__tm {
  --iti-flag-offset: -5087px;
}

.iti__tn {
  --iti-flag-offset: -5109px;
}

.iti__to {
  --iti-flag-offset: -5131px;
}

.iti__tr {
  --iti-flag-offset: -5153px;
}

.iti__tt {
  --iti-flag-offset: -5175px;
}

.iti__tv {
  --iti-flag-offset: -5197px;
}

.iti__tw {
  --iti-flag-offset: -5219px;
}

.iti__tz {
  --iti-flag-offset: -5241px;
}

.iti__ua {
  --iti-flag-offset: -5263px;
}

.iti__ug {
  --iti-flag-offset: -5285px;
}

.iti__uk {
  --iti-flag-offset: -5307px;
}

.iti__um {
  --iti-flag-offset: -5329px;
}

.iti__un {
  --iti-flag-offset: -5351px;
}

.iti__us {
  --iti-flag-offset: -5373px;
}

.iti__uy {
  --iti-flag-offset: -5395px;
}

.iti__uz {
  --iti-flag-offset: -5417px;
}

.iti__va {
  --iti-flag-offset: -5439px;
}

.iti__vc {
  --iti-flag-offset: -5456px;
}

.iti__ve {
  --iti-flag-offset: -5478px;
}

.iti__vg {
  --iti-flag-offset: -5500px;
}

.iti__vi {
  --iti-flag-offset: -5522px;
}

.iti__vn {
  --iti-flag-offset: -5544px;
}

.iti__vu {
  --iti-flag-offset: -5566px;
}

.iti__wf {
  --iti-flag-offset: -5588px;
}

.iti__ws {
  --iti-flag-offset: -5610px;
}

.iti__xk {
  --iti-flag-offset: -5632px;
}

.iti__ye {
  --iti-flag-offset: -5654px;
}

.iti__yt {
  --iti-flag-offset: -5676px;
}

.iti__za {
  --iti-flag-offset: -5698px;
}

.iti__zm {
  --iti-flag-offset: -5720px;
}

.iti__zw {
  --iti-flag-offset: -5742px;
}

.iti__globe {
  background-image: var(--iti-path-globe-1x);
  background-size: contain;
  background-position: right;
  box-shadow: none;
  height: 19px;
}

@media (min-resolution: 2x) {
  .iti__flag {
    background-image: var(--iti-path-flags-2x);
  }
  .iti__globe {
    background-image: var(--iti-path-globe-2x);
  }
}
.iti__flag {
  background-image: url("images/flags-0b1ca148890222235a0f9903636ca21a.png");
}

.iti__dropdown-content {
  border: 1px solid;
  border-radius: 0;
  background-color: transparent;
}
.iti__dropdown-content .iti__search-input {
  display: none;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .iti__flag {
    background-image: url("images/flags@2x-e1c092e127943ec4289c847c5768b644.png");
  }
}
.text-field span.country-name {
  margin-left: 28px;
}
.text-field .iti {
  width: 100%;
}
.text-field .selected-flag {
  width: 46px;
}
.text-field .selected-flag .arrow {
  border-width: 0px;
  background-image: url("caret-down-gray.svg");
  background-repeat: no-repeat;
  width: 9px;
  height: 6px;
}
.text-field .country-list {
  width: 436px;
}
.text-field .country-list li.preferred:first-of-type {
  margin-top: 5px;
}
.text-field .country-list li .country {
  align-items: center;
  display: flex;
  height: 32px;
}

.iti__country-list {
  z-index: 2;
}

.theme-dark .text-field .iti__country-list {
  background-color: #1d2529;
  border-color: rgba(161, 167, 170, 0.3607843137);
}
.theme-dark .text-field .iti__country-list .iti__divider {
  border-color: rgba(161, 167, 170, 0.3607843137);
}
.theme-dark .text-field .iti__country-list li:hover {
  background-color: rgba(232, 234, 234, 0.1019607843);
}
.theme-dark .text-field .iti__country-list li span {
  color: #e8eaea;
}
.theme-dark .text-field .iti__country-list li.iti__highlight {
  background-color: rgba(232, 234, 234, 0.1019607843);
}
.theme-dark .iti__dropdown-content {
  border-color: rgba(161, 167, 170, 0.3607843137);
}

.theme-dark .header-banner__section .vin {
  color: #a1a7aa;
}
.theme-dark .header-banner__section th {
  color: #80bde0;
}

.organization-info {
  padding: 1em;
}

.organization-edit {
  overflow-x: hidden;
}

.organization-edit__content {
  padding: 0 1.5rem 1.5rem 1.5rem;
}

.organization-scroll-column {
  overflow-x: hidden;
}

.organization-edit__column {
  width: 20.5em;
  padding-right: 2rem;
  overflow: auto;
}

.organization-edit__column__title {
  font-family: "OpenSans-Regular";
  line-height: 1.334em;
  font-size: 1.5rem;
  margin-top: 30px;
}

.organization-edit__column-telematics {
  width: 21em;
  padding-right: 2rem;
  overflow: auto;
}

.organization-edit__column-token-table {
  padding-left: 2rem;
  padding-right: 1rem;
  overflow: auto;
}

.organization-edit-fleetId__column {
  width: 20em;
  padding-left: 2rem;
  overflow: auto;
}

.organization-edit__contacts-container {
  width: 100%;
  overflow-y: auto;
  overflow-x: hidden;
}

.organization-edit__contact {
  margin: 1rem 0 2rem 0;
}

.organization-edit__contact-phone {
  flex-grow: 1;
  margin-right: 2rem;
}
.organization-edit__contact-phone input {
  width: 100%;
}

.organization-edit__contact-name,
.organization-edit__contact-email,
.organization-edit__contact-title {
  flex-grow: 2;
  margin-right: 2rem;
}
.organization-edit__contact-name input,
.organization-edit__contact-email input,
.organization-edit__contact-title input {
  width: 100%;
}

.organization-status-indicator {
  border-radius: 50%;
  width: 12px;
  height: 12px;
}

.org-edit-table-header div {
  font-family: "OpenSans-SemiBold", Helvetica, Roboto, sans-serif;
  font-size: 0.875rem;
  line-height: 1.57rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  height: 100%;
}

.org-edit-th-icon {
  align-self: flex-start;
}

.token-table {
  border-collapse: collapse;
}
.token-table th svg {
  width: 14px;
  height: 14px;
}
.token-table th, .token-table td {
  border: 1px solid;
  padding: 10px;
}
.token-table th span {
  padding-right: 3px;
}
.token-table td textarea {
  padding: 0;
  border: none;
  box-shadow: none;
}
.token-table td input {
  border: none;
  box-shadow: none;
  width: 4rem;
  text-align: center;
  margin: auto;
  color: #ffffff;
}
.token-table td.dates input {
  width: 7rem;
}
.token-table td.token-table__delete-icon-cell {
  border: none;
}
.token-table__total-button {
  flex-direction: column;
  margin-top: 19px;
}

.theme-dark .organization-edit {
  background-color: #08090a;
}

.theme-dark .token-table {
  background-color: #08090a;
}
.theme-dark .token-table td, .theme-dark .token-table th {
  background-color: #1d2529;
  border-color: rgba(161, 167, 170, 0.3607843137);
}
.theme-dark .token-table td:last-of-type {
  background-color: #08090a;
}
.theme-dark .token-table th .icon-help g g path {
  fill: #a1a7aa;
}

.ss-vpa-button {
  font-family: "OpenSans-SemiBold", Helvetica, Roboto, sans-serif;
  font-size: 13px;
  line-height: 24.5px;
  height: 30.75px;
  display: inline-flex;
  border: 1px solid;
  width: 7em;
  border-radius: 4px;
}

.ss-vpa-button--compact {
  font-size: 8px;
  width: 9em;
}

.ss-vpa-button__segment {
  flex-grow: 1;
  text-align: center;
  padding: 0.3em 0;
}

.ss-vpa-button__segment--vpa {
  border: none;
}

.ss-vpa-button__segment--ss {
  border: none;
  border-left: 1px solid;
}

.fault-group-main-container {
  margin-right: 15px;
  margin-top: 10px;
  margin-bottom: 25px;
}
.fault-group-main-container fieldset {
  padding-left: 12px;
}

.fault-group-input {
  width: 65px;
  padding: 0.3rem;
  height: auto;
  margin-right: 10px;
  margin-top: 0px;
  border: 1px solid;
}

.fault-group-label {
  font-family: "OpenSans-SemiBold";
  font-size: 0.75rem;
  line-height: 1.67em;
  width: 65px;
  margin: auto;
  margin-left: 0px;
  margin-bottom: 1px;
  height: auto;
  cursor: default;
}

.fault-group-label-left {
  margin: inherit;
}

.fault-group-label-condition-none {
  margin-bottom: 5px;
  margin-left: 0px;
}

.fault-group-label-condition {
  margin-left: 0px;
}

.flex-container {
  display: flex;
}

.condition-container-section {
  margin: auto;
}

.fault-group-remove {
  width: 70px;
  margin: auto;
  height: auto;
  text-align: center;
}

.fault-group-remove-container {
  display: flex;
  position: relative;
  top: 1.2rem;
}

.fault-group-remove:hover {
  border-bottom-width: 1px;
  border-bottom-style: solid;
}

.fault-group-legend {
  font-family: "OpenSans-SemiBold", Helvetica, Roboto, sans-serif;
  font-size: 0.875rem;
  line-height: 1.57rem;
  text-align: center;
  margin: auto;
  padding-left: 10px;
  padding-right: 10px;
  text-transform: lowercase;
}
.fault-group-legend:first-letter {
  text-transform: uppercase;
}

.fault-group-power-select-trigger {
  border: 1px solid rgba(161, 167, 170, 0.3607843137) !important;
  height: 38px !important;
}

.fault-group-active-inactive-container {
  margin-top: 10px;
}

.fault-group-active-inactive {
  margin-right: 35px;
}

.fault-group-error-notification {
  margin-top: 5px;
}

.refresh-bar {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 4.15rem;
}
.refresh-bar > * {
  margin-left: 1rem;
  flex: 0 0 auto;
}
.refresh-bar > *:first-child {
  margin-left: 0;
}

.refresh-bar__content {
  flex: 1 0 auto;
  text-align: right;
  display: flex;
  justify-content: right;
  width: min-content;
}

.refresh-bar div::-webkit-scrollbar {
  display: none;
}

.vehicle-diagnostics-row {
  flex: 1;
  padding: 1rem 1.3rem 1rem 1.6rem;
  height: 68px;
  min-width: 900px;
}

.vehicle-diagnostics-row--compact {
  flex: 1;
  padding: 0.2rem 1.3rem 0.2rem 1.6rem;
  height: 43px;
  min-width: 900px;
}

.eaton-faults {
  padding-left: 1rem;
}

.sar-row__status {
  flex: 0 0 6px;
}
.sar-row__status.-status-potbreak {
  background-color: #f47721;
}

.sar-row-container {
  flex-direction: row;
  display: flex;
  gap: 0;
}

.date-range-drop-down {
  display: flex;
  flex-direction: row;
}
.date-range-drop-down__picker {
  width: 9em;
}
.date-range-drop-down__picker-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.date-range-drop-down__picker-list > li {
  margin: 0;
  padding: 0;
}
.date-range-drop-down__date-range {
  margin-left: 1em;
}

.sar-row-container {
  flex-direction: row;
  display: flex;
  gap: 0;
  border-bottom: 1px solid;
}

.sar-row {
  flex: 1;
  display: flex;
  align-items: center;
  text-align: left;
  padding: 1rem 1.3rem 1rem 1.6rem;
  height: 68px;
  scrollbar-gutter: stable;
}
.sar-row .icon-watchlist-toggle--small svg,
.sar-row .icon-watchlist-toggle--large svg {
  margin-right: 0.1rem;
  margin-top: 0.4rem;
}
.sar-row--compact {
  padding: 0.2rem 1.3rem 0.2rem 1.6rem;
  height: 43px;
}
.sar-row--header {
  height: unset;
  line-height: 15px;
  overflow-y: auto;
}
.sar-row .color--sar-label-time {
  margin-top: 0.2em;
}
.sar-row__column {
  font-family: "OpenSans-Regular", Helvetica, Roboto, sans-serif;
  font-size: 0.875rem;
  line-height: 1.43em;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-right: 0.2em;
}
.sar-row__column .diagnostics-row__unit-number,
.sar-row__column .vin,
.sar-row__column .text--sar-label, .sar-row__column--unit-number, .sar-row__column--header {
  font-family: "OpenSans-SemiBold", Helvetica, Roboto, sans-serif;
  font-size: 0.875rem;
  line-height: 1.57rem;
}
.sar-row__column .diagnostics-row__unit-number,
.sar-row__column .vin {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sar-row__column .diagnostics-row__unit-number:hover, .sar-row__column .diagnostics-row__unit-number:focus,
.sar-row__column .vin:hover,
.sar-row__column .vin:focus {
  text-decoration: underline;
  color: #80bde0;
}
.sar-row__column .color--sar-label-time,
.sar-row__column .text--small-body-primary {
  font-family: "OpenSans-Regular", Helvetica, Roboto, sans-serif;
  font-size: 0.875rem;
  line-height: 1.43em;
}
.sar-row__column--watchlist {
  flex: 0 0 auto;
  margin-right: 0em;
}
.sar-row__column--unit-number {
  flex: 4 4 0px;
  direction: ltr;
}
.sar-row__column--vin {
  flex: 6 1 0px;
  direction: ltr;
}
.sar-row__column--trans-model {
  flex: 4 4 0px;
}
.sar-row__column--trans-serial {
  flex: 3 3 0px;
}
.sar-row__column--vpa-ss {
  flex: 0 0 6rem;
  text-align: center;
  margin: auto;
}
.sar-row__column--service-tool-manual-indicator {
  flex: 0 0 3.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}
.sar-row__column--service-tool-manual-indicator svg {
  width: 32px;
  height: 34px;
}
.sar-row__column--service-tool-manual-indicator .icon__compact svg {
  width: 22px;
  height: 22px;
}
.sar-row__column--potential-breakdown-indicator {
  flex: 0 0 3.3rem;
  margin: auto;
}
.sar-row__column--potential-breakdown-indicator div {
  display: flex;
  align-items: center;
  justify-content: center;
}
.sar-row__column__unit-number {
  font-family: "OpenSans-SemiBold", Helvetica, Roboto, sans-serif;
  font-size: 0.875rem;
  line-height: 1.57rem;
  color: #e8eaea;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sar-row__column--sar-button {
  flex: 2 2 23rem;
  margin-right: 0;
  display: flex;
}
.sar-row__column--sar-button > * {
  margin-right: 0.8em;
}
.sar-row__column--sar-button > *:last-child {
  margin-right: -4em;
}
.sar-row__column--width-placeholder {
  visibility: hidden;
  height: 0px;
}

.sar-row__status {
  flex: 0 0 6px;
}
.sar-row__status.-status-potbreak {
  background-color: #f47721;
}

.sar-search-container {
  display: flex;
  justify-content: flex-end;
  min-width: 240px;
}

.theme-dark .sar-container,
.theme-dark .sar-search-container {
  background-color: #1d2529;
}
.theme-dark .sar-row-container {
  border-color: rgba(161, 167, 170, 0.3607843137);
}
.theme-dark .sar-row {
  background-color: #1d2529;
  color: #e8eaea;
}
.theme-dark .sar-row .text--small-body-primary,
.theme-dark .sar-row .color--sar-label-time {
  color: #e8eaea;
}
.theme-dark .sar-row__header {
  background-color: #1d2529;
}
.theme-dark .sar-row--header {
  background-color: #1d2529;
}
.theme-dark .sar-row--service-tool-manual-indicator svg path {
  fill: #e8eaea;
}

.sar-fcap-cummins__subheading {
  font-family: "OpenSans-SemiBold";
  line-height: 1.75em;
  font-size: 1rem;
  color: #da291c;
}
.sar-fcap-cummins__subheading--plain {
  color: #ffffff;
}
.sar-fcap-cummins__tiny-heading {
  font-family: "OpenSans-SemiBold";
  line-height: 1.75em;
  font-size: 1rem;
  border-bottom: 1px solid;
  width: 100%;
  padding-bottom: 1rem;
  margin-top: 2em;
}
.sar-fcap-cummins__small-heading {
  font-size: 16px;
  width: 100%;
  padding-bottom: 1rem;
  margin-top: 2em;
}
.sar-fcap-cummins__box-group {
  display: flex;
  flex-direction: row;
  margin: 1rem 0 0 0;
}
.sar-fcap-cummins__fineprint {
  font-family: "OpenSans-Regular", Verdana, Geneva, Tahoma, sans-serif;
  font-size: 1rem;
  line-height: 1.5em;
}
.sar-fcap-cummins__location {
  margin-top: 16px;
}

@media screen and (max-width: 1300px) {
  .sar-fcap-cummins__box-group {
    flex-direction: column;
  }
}
.theme-dark .sar-fcap-cummins__tiny-heading {
  border-color: rgba(161, 167, 170, 0.3607843137);
  color: #e8eaea;
}
.theme-dark .sar-fcap-cummins__small-heading {
  border-color: rgba(161, 167, 170, 0.3607843137);
}
.theme-dark .sar-fcap-cummins__subheading {
  color: #da291c;
}
.theme-dark .sar-fcap-cummins__subheading--plain {
  color: #ffffff;
}

.fault-list-cummins {
  width: 100%;
  table-layout: fixed;
}
.fault-list-cummins__col {
  width: 10em;
}
.fault-list-cummins__col--description {
  width: unset;
}
.fault-list-cummins__col--small {
  width: 5em;
}
.fault-list-cummins__col--medium {
  width: 7em;
}
.fault-list-cummins__col--subcontent {
  width: 25em;
}

.root-cause-container {
  position: relative;
}

.root-cause {
  color: #939393;
  margin-left: 0.7em;
}

.root-cause-caption {
  color: #939393;
  position: absolute;
  white-space: nowrap;
  margin-left: 3em;
}

.vehicle-row-container {
  flex-direction: row;
  display: flex;
  gap: 0;
}

.vehicle-row {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 1rem 0.5rem;
  border-bottom: 1px solid;
}
.vehicle-row--compact {
  padding: 0.6rem 0.5rem;
  height: 43px;
}
.vehicle-row--compact__severity {
  margin-top: 0rem;
}
.vehicle-row__column {
  margin: 0 0.5rem;
  flex-basis: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}
.vehicle-row__column--delete {
  flex: 0 0 2rem;
  display: flex;
  cursor: pointer;
  margin-right: auto;
}
.vehicle-row__column--severity {
  flex: 0.2 0 6rem;
  overflow: unset;
  display: flex;
  flex-direction: column;
}
.vehicle-row__column--severity--compact {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.vehicle-row__column--watchlist {
  overflow: unset;
  display: flex;
  flex-direction: column;
}
.vehicle-row__column--unit-number {
  flex: 1 0 1rem;
}
.vehicle-row__column--unit-and-vin {
  flex: 2 1 9rem;
}
.vehicle-row__column--vin {
  flex: 2 0 5rem;
}
.vehicle-row__column--year {
  flex: 1 0 2.5rem;
}
.vehicle-row__column--vehicle-oem {
  flex: 2 0 3rem;
}
.vehicle-row__column--vehicle-model {
  flex: 1 0 4rem;
}
.vehicle-row__column--year-oem-model {
  flex: 1 0 8rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.vehicle-row__column--engine-make {
  flex: 1 0 4rem;
}
.vehicle-row__column--transmission-make {
  flex: 1 0 4rem;
}
.vehicle-row__column--transmission-model {
  flex: 2 0 4rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.vehicle-row__severity {
  display: flex;
  justify-content: center;
  align-items: center;
}
.vehicle-row__severity-icon {
  vertical-align: middle;
}
.vehicle-row__severity-date {
  vertical-align: middle;
  margin-left: 0.5em;
  font-family: "OpenSans-Regular";
  line-height: 1.67em;
  font-size: 0.75rem;
}
.vehicle-row__unit-number {
  font-family: "OpenSans-SemiBold", Helvetica, Roboto, sans-serif;
  font-size: 0.875rem;
  line-height: 1.57rem;
  color: #e8eaea;
  overflow: hidden;
  text-overflow: ellipsis;
}
.vehicle-row__unit-number:hover, .vehicle-row__unit-number:focus {
  text-decoration: underline;
  color: #80bde0;
}
.vehicle-row__vin {
  font-family: "OpenSans-SemiBold", Helvetica, Roboto, sans-serif;
  font-size: 0.875rem;
  line-height: 1.57rem;
  color: #e8eaea;
  direction: rtl;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
}
.vehicle-row__vin:hover, .vehicle-row__vin:focus {
  text-decoration: underline;
  color: #80bde0;
}

.vehicle-row--header {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.vehicle-row__column--header {
  display: block;
  direction: ltr;
  line-height: 15px;
  font-family: "OpenSans-SemiBold", Helvetica, Roboto, sans-serif;
  font-size: 0.875rem;
  line-height: 1.57rem;
}

.compact-with-severity {
  display: inline-block;
}

.vehicle-row__column--show-when-compressed {
  display: none;
}

.vehicle-row__column--show-when-expanded {
  display: block;
}

@media screen and (max-width: 1300px) {
  .vehicle-row__column--show-when-compressed {
    display: block;
  }
  .vehicle-row__column--show-when-expanded {
    display: none;
  }
}
.vehicle-row__header {
  overflow-y: auto;
  scrollbar-gutter: stable;
}

.vehicle-row__status {
  flex: 0 0 6px;
  background-color: #1d2529;
}
.vehicle-row__status.-status-potbreak {
  background-color: #f47721;
}

.theme-dark .vehicle-row {
  border-color: rgba(161, 167, 170, 0.3607843137);
  color: #e8eaea;
}
.theme-dark .sar-row-container {
  border-color: rgba(161, 167, 170, 0.3607843137);
}
.theme-dark .vehicle-row__header {
  background-color: #1d2529;
}

.user-scroll-column {
  margin: 0 0 2rem 1.5rem;
}

.user-edit__column {
  width: 31rem;
  padding-right: 5rem;
  padding-top: 1rem;
}

.user-edit {
  min-height: 100%;
}

.theme-dark .user-edit {
  background: #08090a;
}

.filter-bar {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 3.15rem;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.12), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 2px 1px -1px rgba(0, 0, 0, 0.2);
}
.filter-bar > * {
  margin-left: 1rem;
  flex: 0 0 auto;
}
.filter-bar > *:first-child {
  margin-left: 0;
}

.filter-bar__content {
  flex: 1 0 auto;
  text-align: right;
}

.filter-clear {
  padding: 6px 0 6px 3px;
}

.filter-clear-text {
  font-size: 1rem;
  line-height: 1.5rem;
}

.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: 1000;
  background-color: #2b353a;
}

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

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

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

.ember-basic-dropdown-content-wormhole-origin {
  display: inline;
}

.ember-power-select-dropdown * {
  box-sizing: border-box;
}

.ember-power-select-trigger {
  position: relative;
  border-top: 2px solid rgba(161, 167, 170, 0.3607843137);
  border-bottom: 2px solid rgba(161, 167, 170, 0.3607843137);
  border-right: 2px solid rgba(161, 167, 170, 0.3607843137);
  border-left: 2px solid rgba(161, 167, 170, 0.3607843137);
  border-radius: 0px;
  background-color: #2b353a;
  line-height: 32px;
  overflow-x: hidden;
  text-overflow: ellipsis;
  min-height: 32px;
  user-select: none;
  -webkit-user-select: none;
  color: #a1a7aa;
  /* Minimum clearfix for modern browsers */
}
.ember-power-select-trigger:after {
  content: "";
  display: table;
  clear: both;
}

.ember-power-select-trigger:focus,
.ember-power-select-trigger--active {
  border-top: 2px #ffffff solid;
  border-bottom: 2px #ffffff solid;
  border-right: 2px #ffffff solid;
  border-left: 2px #ffffff solid;
  box-shadow: 0 0 14px 0 rgba(0, 0, 0, 0.5);
  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: 0;
  border-bottom-right-radius: 0;
}

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

.ember-power-select-placeholder {
  color: #939393;
  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: #939393 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;
  /* There's a browser bug where this selectos cannot be chained with commas */
}
.ember-power-select-trigger-multiple-input:disabled {
  background-color: #2b353a;
}
.ember-power-select-trigger-multiple-input::placeholder {
  opacity: 1;
  color: #939393;
}
.ember-power-select-trigger-multiple-input::-webkit-input-placeholder {
  opacity: 1;
  color: #939393;
}
.ember-power-select-trigger-multiple-input::-moz-placeholder {
  opacity: 1;
  color: #939393;
}
.ember-power-select-trigger-multiple-input::-ms-input-placeholder {
  opacity: 1;
  color: #939393;
}

.ember-power-select-multiple-option {
  border: none;
  border-radius: 0px;
  color: #ffffff;
  background-color: #0067cd;
  padding: 0 8px;
  line-height: 28px;
  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: 2px solid rgba(161, 167, 170, 0.3607843137);
  border-radius: 0;
  width: 100%;
  font-size: inherit;
  line-height: inherit;
  padding: 0 5px;
}
.ember-power-select-search-input:focus {
  border: 2px solid rgba(161, 167, 170, 0.3607843137);
  box-shadow: 0 0 14px 0 rgba(0, 0, 0, 0.5);
  outline: none;
}

.ember-power-select-dropdown {
  border-left: 2px solid rgba(161, 167, 170, 0.3607843137);
  border-right: 2px solid rgba(161, 167, 170, 0.3607843137);
  line-height: 32px;
  border-radius: 0px;
  box-shadow: none;
  overflow: hidden;
  color: #a1a7aa;
}

.ember-power-select-dropdown.ember-basic-dropdown-content--above {
  border-top: 2px solid rgba(161, 167, 170, 0.3607843137);
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.ember-power-select-dropdown.ember-basic-dropdown-content--below, .ember-power-select-dropdown.ember-basic-dropdown-content--in-place {
  border-top: none;
  border-bottom: 1px solid rgba(161, 167, 170, 0.3607843137);
  border-top-left-radius: 0;
  border-top-right-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: 224px;
}

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

.ember-power-select-group[aria-disabled=true] {
  color: #939393;
  cursor: not-allowed;
}

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

.ember-power-select-option[aria-selected=true] {
  background-color: #2b353a;
}

.ember-power-select-option[aria-current=true] {
  background-color: rgba(232, 234, 234, 0.1019607843);
  color: #a1a7aa;
}

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

.ember-power-select-trigger[aria-disabled=true] {
  background-color: #2b353a;
}

.ember-power-select-trigger {
  padding: 4px 16px 0 8px;
}

.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: 32px;
}

.ember-power-select-group .ember-power-select-group .ember-power-select-group-name {
  padding-left: 24px;
}
.ember-power-select-group .ember-power-select-group .ember-power-select-option {
  padding-left: 40px;
}
.ember-power-select-group .ember-power-select-option {
  padding-left: 24px;
}
.ember-power-select-group .ember-power-select-group-name {
  padding-left: 8px;
}

.ember-power-select-trigger[dir=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: 32px;
  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: 24px;
}
.ember-power-select-dropdown[dir=rtl] .ember-power-select-group .ember-power-select-group .ember-power-select-option {
  padding-right: 40px;
}
.ember-power-select-dropdown[dir=rtl] .ember-power-select-group .ember-power-select-option {
  padding-right: 24px;
}
.ember-power-select-dropdown[dir=rtl] .ember-power-select-group .ember-power-select-group-name {
  padding-right: 8px;
}

.ember-power-select-option {
  border-bottom: 1px solid rgba(161, 167, 170, 0.3607843137);
  line-height: 32px;
}

.ember-power-select-option--search-message {
  pointer-events: none;
}

.ember-power-select-trigger {
  height: 45px;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.ember-power-select-selected-item, .ember-power-select-placeholder {
  margin: 0;
  padding: 0.8rem 0.8rem;
  max-width: calc(100% - 40px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ember-power-select-option {
  padding-left: 0.8rem;
  padding-right: 0.8rem;
}

.power-select--has-error div {
  border-color: #d12421;
  background-color: #525252;
}

.ember-power-select-status-icon {
  width: 40px !important;
  height: 100% !important;
  border-width: 0px 0px 0px 1px !important;
  border-left: 1px solid rgba(161, 167, 170, 0.3607843137) !important;
  right: 0px !important;
  background-image: url("icons/caret-down-gray.svg");
  background-repeat: no-repeat;
  background-position: 15px 50%;
}

.ember-basic-dropdown-trigger[aria-expanded=true] .ember-power-select-status-icon {
  background-image: url("icons/caret-up-gray.svg");
  transform: none;
}

.ember-power-select-multiple-option {
  margin-right: 4px;
}
.ember-power-select-multiple-option span {
  opacity: 1;
}

.ember-power-select-multiple-options input {
  box-shadow: none;
}

.ember-power-select-multiple-remove-btn {
  background: url("icons/delete-active.svg") no-repeat !important;
  background-position-y: center !important;
  padding-right: 14px;
  margin: 0 7px 0 0px;
  color: transparent;
  border-right: 1px solid #343434;
  display: inline-block;
}

input.power-select--input {
  padding-left: 0px;
  padding-right: 0px;
  width: 100%;
  border-width: 0px;
  box-shadow: none;
  height: 32px;
  margin: 0 5px 0 0;
}

.power-select--input-padding {
  margin: 0.3rem 0 0.7rem 0;
}

.power-select--option {
  width: 12rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  width: 100%;
  margin-right: 5px;
}

.power-select--option-small {
  width: 6rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
}

.dropdown--edit-mode {
  border: 2px #ffffff solid;
}

.ember-power-select-search-input {
  background-color: #2b353a;
  color: #e8eaea;
}
.ember-power-select-search-input:hover, .ember-power-select-search-input:focus {
  border-color: #007bc1;
}

.ember-power-select-search-input:focus {
  box-shadow: none;
}

.ember-power-select-placeholder {
  color: #a1a7aa;
}

.select-template {
  position: relative;
  display: inline-block;
}

.select-template__content {
  position: absolute;
  z-index: 10;
  overflow-x: hidden;
  overflow-y: auto;
  white-space: nowrap;
  display: table;
}
.select-template__content.-horizontal-direction-center {
  left: 50%;
  right: auto;
  transform: translate(-50%, 0);
}
.select-template__content.-horizontal-direction-left {
  right: 0;
}
.select-template__content.-horizontal-direction-right {
  left: 0;
}

.expand-collapse-caret {
  display: flex;
  align-items: center;
  min-width: 12px;
}
.expand-collapse-caret svg {
  width: 12px;
  height: 12px;
}

.theme-dark .expand-collapse-caret svg path {
  fill: #ffffff;
}

.check-box {
  cursor: pointer;
}
.check-box:has(:focus-visible) {
  outline: none;
  border: 1px solid;
}
.check-box__input {
  position: absolute;
  opacity: 0;
  height: 0;
  width: 0;
}
.check-box--disabled {
  cursor: default;
}

.check-box__text {
  font-family: "OpenSans-Regular", Verdana, Geneva, Tahoma, sans-serif;
  font-size: 1rem;
  line-height: 1.5em;
}

#icon-check-box, #icon-check-box-outline, #icon-check-box-indeterminate {
  min-width: 32px;
  min-height: 32px;
  padding-right: 8px;
  vertical-align: middle;
}

.theme-dark .check-box #icon-check-box path, .theme-dark .check-box #icon-check-box-indeterminate path {
  fill: #80bde0;
}
.theme-dark .check-box #icon-check-box-outline path {
  fill: #a1a7aa;
}
.theme-dark .check-box:has(:focus-visible) {
  border-color: #ffffff;
}
.theme-dark .check-box--disabled #icon-check-box path, .theme-dark .check-box--disabled #icon-check-box-outline path, .theme-dark .check-box--disabled #icon-check-box-indeterminate path {
  fill: #a1a7aa;
  fill-opacity: 0.24;
}
.theme-dark .check-box__text {
  color: #e8eaea;
  vertical-align: middle;
}

.check-box-group + .check-box-group {
  margin-top: 0.5rem;
}

.check-box-group--indented {
  margin-left: 40px;
}

.check-box-group__header {
  display: flex;
  align-items: center;
  gap: 5px;
}

.check-box-group__content {
  display: block;
}

.icon-button {
  border-radius: 0;
  text-align: center;
  align-items: center;
  justify-content: center;
  display: inline-flex;
  padding: 0;
}
.icon-button svg {
  display: inline-block;
  vertical-align: middle;
  background-position: center;
  background-repeat: no-repeat;
}
.icon-button.-size-tiny {
  min-width: 20px;
  min-height: 20px;
}
.icon-button.-size-tiny svg {
  width: 12px;
  height: 12px;
}
.icon-button.-size-small {
  min-width: 30px;
  min-height: 30px;
}
.icon-button.-size-small svg {
  width: 18px;
  height: 18px;
}
.icon-button.-size-medium {
  min-width: 40px;
  min-height: 40px;
}
.icon-button.-size-medium svg {
  width: 24px;
  height: 24px;
}
.icon-button.-size-large {
  min-width: 53.3px;
  min-height: 53.3px;
}
.icon-button.-size-large svg {
  width: 32px;
  height: 32px;
}
.icon-button--icon-only.-size-small {
  width: 18px;
  height: 18px;
}
.icon-button--icon-only.-size-small svg {
  width: 18px;
  height: 18px;
}
.icon-button--icon-only.-size-medium {
  width: 24px;
  height: 24px;
}
.icon-button--icon-only.-size-medium svg {
  width: 24px;
  height: 24px;
}
.icon-button--icon-only.-size-large {
  width: 32px;
  height: 32px;
}
.icon-button--icon-only.-size-large svg {
  width: 32px;
  height: 32px;
}
.icon-button--round {
  border-radius: 50%;
}

.theme-dark {
  /**
    * Colors are theme invariant -- this is used for the app bar icon buttons which are always on blue background
    */
}
.theme-dark .icon-button:focus-visible {
  outline: none;
  border: 1px #ffffff solid;
}
.theme-dark .icon-button--round {
  background-color: transparent;
}
.theme-dark .icon-button--round:hover {
  background-color: rgba(0, 123, 194, 0.2);
}
.theme-dark .icon-button--round.-is-active {
  background-color: rgba(0, 123, 194, 0.3607843137);
}
.theme-dark .icon-button--round svg path {
  fill: #80bde0;
}
.theme-dark .icon-button--regular, .theme-dark .icon-button--icon-only {
  background-color: transparent;
}
.theme-dark .icon-button--regular:hover, .theme-dark .icon-button--icon-only:hover {
  background-color: transparent;
}
.theme-dark .icon-button--regular:hover svg path, .theme-dark .icon-button--icon-only:hover svg path {
  fill: #e8eaea;
}
.theme-dark .icon-button--regular svg path, .theme-dark .icon-button--icon-only svg path {
  fill: #a1a7aa;
}
.theme-dark .icon-button--regular.-is-active, .theme-dark .icon-button--icon-only.-is-active {
  background-color: transparent;
}
.theme-dark .icon-button--regular.-is-active svg path, .theme-dark .icon-button--icon-only.-is-active svg path {
  fill: #e8eaea;
}
.theme-dark .icon-button--header {
  border-radius: 50%;
  background-color: transparent;
}
.theme-dark .icon-button--header svg path {
  fill: #ffffff;
}
.theme-dark .icon-button--header:hover {
  background-color: rgba(255, 255, 255, 0.05);
}
.theme-dark .icon-button--header.-is-active {
  background-color: rgba(255, 255, 255, 0.2);
}

.persistent-drawer {
  height: 100%; /* 100% Full-height */
  position: fixed; /* Stay in place */
  z-index: 10; /* Stay on top */
  top: 0; /* Stay at the top */
  left: 0;
  overflow-x: hidden; /* Disable horizontal scroll */
  transition: width 195ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
  width: 72px;
  box-shadow: 0px 1px 18px 0px rgba(0, 0, 0, 0.12), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 3px 5px -1px rgba(0, 0, 0, 0.2);
}
.persistent-drawer .active .persistent-drawer__body__item .persistent-drawer__body__item__content {
  font-family: "OpenSans-Regular";
  line-height: 1.67em;
  font-size: 0.75rem;
  line-height: 1.5em;
  font-family: "OpenSans-SemiBold";
}
.persistent-drawer--open {
  width: 300px;
}
.persistent-drawer--open .persistent-drawer__body {
  text-align: left;
}
.persistent-drawer--open .persistent-drawer__body svg {
  margin: 0px 24px;
}
.persistent-drawer--open .persistent-drawer__body__item {
  height: 52px;
  width: 100%;
  display: flex;
  border-bottom: none;
}
.persistent-drawer--open .persistent-drawer__body__item__content {
  font-family: "OpenSans-Regular", Verdana, Geneva, Tahoma, sans-serif;
  font-size: 1rem;
  line-height: 1.5em;
}
.persistent-drawer--open .active .persistent-drawer__body__item .persistent-drawer__body__item__content {
  font-family: "OpenSans-SemiBold";
  line-height: 1.75em;
  font-size: 1rem;
}
.persistent-drawer__header {
  cursor: pointer;
  display: flex;
  height: 64px;
  align-items: center;
}
.persistent-drawer__header svg {
  margin: 0 16px;
}
.persistent-drawer__header__content__title {
  font-family: "OpenSans-SemiBold";
  line-height: 1.6em;
  font-size: 1.25rem;
  line-height: 1em;
  display: flex;
}
.persistent-drawer__header__content__subtitle {
  font-family: "OpenSans-Regular", Verdana, Geneva, Tahoma, sans-serif;
  font-size: 1rem;
  line-height: 1.5em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 212px;
  display: block;
}
.persistent-drawer__body {
  line-height: 1.67;
  font-weight: 400;
  font-size: 0.75rem;
  text-align: center;
}
.persistent-drawer__body svg {
  margin-top: 17px;
}
.persistent-drawer__body a {
  display: block;
}
.persistent-drawer__body__item {
  border-bottom: 2px solid;
  height: 72px;
  display: table-caption;
  align-items: center;
}
.persistent-drawer__body__item__content {
  font-family: "OpenSans-Regular";
  line-height: 1.67em;
  font-size: 0.75rem;
  width: 72px;
  display: block;
}
.persistent-drawer__footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: inherit;
  display: flex;
  border-top: 2px solid;
  height: 72px;
  align-items: center;
}
.persistent-drawer__footer__copyright {
  font-family: "OpenSans-Regular";
  line-height: 1.67em;
  font-size: 0.75rem;
  text-align: right;
  display: flex;
  flex-direction: column;
  margin-left: 55px;
  white-space: nowrap;
}
.persistent-drawer .logo--offset--big {
  margin-left: 19px;
  width: 103px;
  height: 28px;
}
.persistent-drawer .logo--offset--big svg {
  width: 103px;
  height: 28px;
}
.persistent-drawer .logo--offset--small {
  margin-left: 12px;
}
.persistent-drawer .logo--offset--small svg, .persistent-drawer .logo--offset--small a {
  width: 48px;
  height: 13px;
}

.persistent-drawer-content-template {
  margin-left: 72px;
  height: 100vh;
}
.persistent-drawer-content-template--offset {
  margin-left: 300px;
  height: 100vh;
}

.theme-dark .persistent-drawer {
  background-color: #13181b;
  color: #ffffff;
}
.theme-dark .persistent-drawer__header {
  background-color: #007bc1;
}
.theme-dark .persistent-drawer__body svg path {
  fill: #a1a7aa;
}
.theme-dark .persistent-drawer__body__item {
  border-bottom-color: rgba(161, 167, 170, 0.3607843137);
  color: #e8eaea;
}
.theme-dark .persistent-drawer__footer {
  border-top-color: rgba(161, 167, 170, 0.3607843137);
  color: #e8eaea;
}
.theme-dark .persistent-drawer :not(.active) > .persistent-drawer__body__item:hover {
  background-color: rgba(232, 234, 234, 0.1019607843);
}
.theme-dark .persistent-drawer .active .persistent-drawer__body__item {
  color: #80bde0;
  background-color: rgba(0, 123, 194, 0.2);
}
.theme-dark .persistent-drawer .active .persistent-drawer__body__item svg path {
  fill: #80bde0;
}

.user-avatar {
  font-family: "OpenSans-Regular", Verdana, Geneva, Tahoma, sans-serif;
  font-size: 1rem;
  line-height: 1.5em;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  align-items: center;
  display: flex;
  justify-content: center;
}

.notification {
  display: inline-block;
  position: relative;
}
.notification__badge {
  font-family: "OpenSans-Regular";
  line-height: 1.67em;
  font-size: 0.75rem;
  font-size: 9px;
  position: absolute;
  display: inline-flex;
  align-items: center;
  top: 10px;
  right: 5px;
  padding: 2px 4px;
  border-radius: 20px;
  background: #ca3c3d;
  color: #ffffff;
  text-align: center;
  transform: scale(1) translate(50%, -50%);
  transform-origin: 100% 0%;
}

.chip-array {
  display: flex;
  float: right;
  overflow-x: auto;
  scrollbar-width: none;
}

.chip {
  font-size: 0.8125rem;
  display: inline-flex;
  align-items: center;
  height: 32px;
  min-width: fit-content;
  border-radius: 16px;
  margin: 4px;
  vertical-align: -webkit-baseline-middle;
}
.chip--outlined {
  border: 1px solid;
}
.chip__icon {
  margin-left: 8px;
  margin-right: -5px;
  height: 16px;
  width: 16px;
}
.chip__icon.icon-watchlist-toggle--small {
  margin-top: -2px;
  margin-left: 6px;
  margin-right: -2px;
}
.chip__icon.icon-potential-breakdown {
  display: flex;
  align-items: center;
}
.chip__label {
  overflow: hidden;
  text-overflow: ellipsis;
  padding-left: 12px;
  padding-right: 12px;
}
.chip__delete {
  cursor: pointer;
  margin: 0px 7px 0px -6px;
}
.chip #icon-filter-none {
  position: relative;
  left: 5px;
}
.chip #icon-arrow-drop-down,
.chip #icon-arrow-drop-up {
  position: relative;
  right: 5px;
}

.theme-dark .chip--filled {
  background-color: #424e54;
}
.theme-dark .chip--outlined {
  background-color: #1d2529;
  border-color: rgba(161, 167, 170, 0.3607843137);
}
.theme-dark .chip__label {
  color: #e8eaea;
}
.theme-dark .chip #icon-arrow-drop-down,
.theme-dark .chip #icon-arrow-drop-up,
.theme-dark .chip #icon-clear {
  fill: #a1a7aa;
}

.fleet-filter-sidebar {
  width: 390px;
  height: 100vh;
  display: flex;
  flex-direction: column;
  flex: 1;
  position: absolute;
  z-index: 10;
  top: 0;
  margin: 0;
  box-sizing: border-box;
}
.fleet-filter-sidebar__header {
  font-family: "OpenSans-SemiBold";
  line-height: 1.6em;
  font-size: 1.25rem;
  margin: 0;
  padding: 1rem 1.6rem;
  display: block;
  position: relative;
  order: 1;
}
.fleet-filter-sidebar__header__text {
  font-family: "OpenSans-SemiBold";
  line-height: 1.6em;
  font-size: 1.25rem;
}
.fleet-filter-sidebar__search {
  order: 2;
}
.fleet-filter-sidebar__list {
  display: flex;
  flex-direction: column;
  flex: 1;
  order: 3;
}
.fleet-filter-sidebar__list__header {
  order: 1;
  padding-right: 1.6rem;
  padding-left: 1.6rem;
  padding-top: 0.7rem;
  padding-bottom: 0.3rem;
}
.fleet-filter-sidebar__list__header .bright {
  font-family: "OpenSans-Regular", Verdana, Geneva, Tahoma, sans-serif;
  font-size: 1rem;
  line-height: 1.5em;
}
.fleet-filter-sidebar__list__body {
  order: 2;
  overflow: auto;
  flex: 1 1 0;
}
.fleet-filter-sidebar__list__item {
  padding: 0.5rem 1.6rem;
}

.fleet-filter-sidebar__buttons {
  order: 4;
  border-top: 2px solid rgba(161, 167, 170, 0.3607843137);
  width: 100%;
}

.theme-dark .fleet-filter-sidebar {
  background-color: #13181b;
}
.theme-dark .fleet-filter-sidebar__header {
  background-color: #13181b;
  color: #80bde0;
}
.theme-dark .fleet-filter-sidebar__header svg path {
  fill: #a1a7aa !important;
}

#snackbar {
  height: 48px;
  padding: 14px 24px;
  position: fixed;
  border-radius: 4px;
  z-index: 10;
  bottom: 20px;
}
#snackbar.-small {
  width: 344px;
}
#snackbar.-large {
  width: 518px;
}

.persistent-drawer-content-template #snackbar.-small, .persistent-drawer-content-template #snackbar.-large {
  left: calc(72px + 24px);
}

.persistent-drawer-content-template--offset #snackbar.-small, .persistent-drawer-content-template--offset #snackbar.-large {
  left: calc(300px + 24px);
}

.theme-dark #snackbar {
  background-color: #e8eaea;
  color: #424e54;
}
.theme-dark #snackbar .push-button--text {
  color: #007bc1;
}
.theme-dark #snackbar .push-button--text:hover, .theme-dark #snackbar .push-button--text:focus {
  background-color: rgba(0, 123, 193, 0.0509803922);
}
.theme-dark #snackbar .push-button--text:active {
  background-color: #b3d7ec;
}
.theme-dark #snackbar .push-button--text:disabled {
  color: rgba(66, 78, 84, 0.3019607843);
}

.vehicle-severity-indicator svg {
  width: 24px;
  height: 24px;
}
.vehicle-severity-indicator__icons {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  margin-bottom: 5px;
}
.vehicle-severity-indicator__description {
  font-family: "OpenSans-Regular";
  line-height: 1.67em;
  font-size: 0.75rem;
}
.vehicle-severity-indicator__description * {
  font-family: "OpenSans-Regular";
  line-height: 1.67em;
  font-size: 0.75rem;
}

.theme-dark .vehicle-severity-indicator__description--informational {
  color: #80c4f9;
}
.theme-dark .vehicle-severity-indicator__description--service-soon {
  color: #007bc1;
}
.theme-dark .vehicle-severity-indicator__description--service-now {
  color: #f0cb2f;
}
.theme-dark .vehicle-severity-indicator__description--stop-now {
  color: #ca3c3d;
}
.theme-dark .vehicle-severity-indicator__description--unknown {
  color: #a1a7aa;
}

.style-card {
  margin: 1rem 0;
}
.style-card__header {
  font-family: "OpenSans-SemiBold";
  line-height: 1.6em;
  font-size: 1.25rem;
  padding: 10px 0;
}
.style-card__body {
  padding: 1rem 2rem;
}

.theme-dark .style-card__header {
  color: #e8eaea;
}
.theme-dark .style-card__body {
  background-color: #333d43;
}

#icon-loader.loader {
  stroke: #ffffff;
  -webkit-animation: rotation 1.35s linear infinite;
  animation: rotation 1.35s linear infinite;
  min-width: 12px;
  min-height: 12px;
}
#icon-loader.loader circle {
  stroke-dasharray: 180;
  stroke-dashoffset: 0;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  -webkit-animation: turn 1.35s ease-in-out infinite;
  animation: turn 1.35s ease-in-out infinite;
}

.theme-dark #icon-loader.loader {
  stroke: #ffffff;
}

.vehicle-details {
  background-color: #1d2529;
  border: 1px solid;
}
.vehicle-details__header {
  border-bottom: 1px solid;
  padding: 1rem;
}
.vehicle-details__header span:first-of-type {
  font-family: "OpenSans-SemiBold";
  line-height: 1.75em;
  font-size: 1rem;
}
.vehicle-details__body {
  padding-left: 1rem;
  width: 320px;
  max-width: 320px;
}
.vehicle-details__body__row {
  padding: 1rem 1rem 1rem 0;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  border-bottom: 1px solid rgba(161, 167, 170, 0.3607843137);
}
.vehicle-details__body__row span:first-of-type {
  font-family: "OpenSans-Regular", Verdana, Geneva, Tahoma, sans-serif;
  font-size: 1rem;
  line-height: 1.5em;
}
.vehicle-details__body__row:last-of-type {
  border: 0;
}

.theme-dark .vehicle-details {
  border-color: rgba(161, 167, 170, 0.3607843137);
}
.theme-dark .vehicle-details__header {
  border-color: rgba(161, 167, 170, 0.3607843137);
}
.theme-dark .vehicle-details__header span:last-of-type {
  color: #a1a7aa;
}
.theme-dark .vehicle-details__body__row span:last-of-type {
  color: #a1a7aa;
}

.last-location__body__icon {
  padding: 2px 5px 2px 0px;
}

.theme-dark .last-location #icon-place {
  width: 15px;
  height: 21px;
}
.theme-dark .last-location #icon-place path {
  fill: #a1a7aa;
}

.sort-control #icon-caret-down {
  width: 8px;
  height: 9px;
}
.sort-control #icon-caret-down.-has-margin {
  margin-left: 5px;
}

.theme-dark #icon-caret-down path {
  fill: #a1a7aa;
}

.toggle-button {
  font-family: "OpenSans-SemiBold", Helvetica, Roboto, sans-serif;
  font-size: 14px;
  line-height: 24.5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  position: relative;
  margin: 0;
  height: 30.75px;
}
.toggle-button.-shape-round {
  border-radius: 20px;
  line-height: 24.5px;
  padding-left: 16px;
  height: 36.5px;
}

.theme-dark .toggle-button--text.-color-primary {
  color: #a1a7aa;
  background-color: transparent;
}
.theme-dark .toggle-button--text.-color-primary:hover, .theme-dark .toggle-button--text.-color-primary:focus {
  background-color: rgba(0, 123, 194, 0.2);
}
.theme-dark .toggle-button--text.-color-primary:disabled {
  color: rgba(123, 131, 135, 0.3607843137);
  border-color: rgba(123, 131, 135, 0.3607843137);
}
.theme-dark .toggle-button--text.-color-primary.-is-selected {
  background-color: rgba(0, 123, 194, 0.3607843137);
  color: #80bde0;
}
.theme-dark .toggle-button--contained.-color-primary {
  background-color: transparent;
  color: #e8eaea;
}
.theme-dark .toggle-button--contained.-color-primary svg {
  width: 10px;
  height: 10px;
  margin: 7px;
}
.theme-dark .toggle-button--contained.-color-primary svg path {
  fill: #a1a7aa;
}
.theme-dark .toggle-button--contained.-color-primary.-is-selected {
  background: #007bc1;
  color: #e8eaea;
}
.theme-dark .toggle-button--contained.-color-primary.-is-selected svg path {
  fill: #e8eaea;
}

.toggle-button-group {
  border: 1px solid;
  border-radius: 4px;
  width: fit-content;
  display: flex;
  flex-direction: row;
}
.toggle-button-group .toggle-button {
  border-left: none;
  border-top: none;
  border-bottom: none;
  border-right: 1px solid;
}

.theme-dark .toggle-button-group {
  border-color: rgba(161, 167, 170, 0.3607843137);
}
.theme-dark .toggle-button-group .toggle-button {
  border-color: rgba(161, 167, 170, 0.3607843137);
}
.theme-dark .toggle-button-group .toggle-button:last-of-type {
  border-right: none;
}

.offsite-link-halves {
  margin: 1rem 1rem 1rem 0;
  border-radius: 4px;
  height: 36.5px;
}
.offsite-link-halves[data-primary]::before {
  font-family: "OpenSans-SemiBold", Helvetica, Roboto, sans-serif;
  font-size: 14px;
  line-height: 24.5px;
  content: attr(data-primary);
  padding: 6px 16px;
  border: 1px solid;
  border-right: 0;
  border-radius: 4px 0 0 4px;
}
.offsite-link-halves[data-secondary]::after {
  font-family: "OpenSans-SemiBold", Helvetica, Roboto, sans-serif;
  font-size: 14px;
  line-height: 24.5px;
  text-transform: uppercase;
  content: attr(data-secondary);
  padding: 6px 16px;
  border: 1px solid;
  border-left: 0;
  border-radius: 0 4px 4px 0;
}

.theme-dark .offsite-link-halves {
  color: #ffffff;
}
.theme-dark .offsite-link-halves[data-primary][data-secondary] {
  background: transparent;
}
.theme-dark .offsite-link-halves[data-primary]::before {
  border-color: #007bc1;
  background-color: #007bc1;
  color: #ffffff;
}
.theme-dark .offsite-link-halves[data-secondary]::after {
  border-color: #007bc1;
}
.theme-dark .offsite-link-halves:hover::after, .theme-dark .offsite-link-halves:focus::after {
  background-color: #4da3d4;
  color: #ffffff;
}

.filter-select__content {
  box-shadow: 3px 0 12px 0 rgba(0, 0, 0, 0.5);
  white-space: nowrap;
  text-align: center;
  right: 0;
  display: table;
}

.theme-dark .filter-select__content {
  background-color: #1d2529;
}

.fleet-picker__dropdown {
  display: inline-block;
}

.fleet-picker__dropdown__content {
  max-height: 15rem;
  overflow-y: auto;
  scrollbar-gutter: stable;
}

.master-search__input-wrapper {
  width: 800px;
}

.master-search__results {
  width: 800px;
}

.chip-drop-down {
  position: relative;
  display: inline-block;
}

.chip-drop-down__label {
  white-space: nowrap;
}

.chip-drop-down__toggle {
  margin-bottom: 0;
  margin-right: 0;
  padding: 0;
}

.chip-drop-down__content {
  position: absolute;
  z-index: 10;
  overflow-x: hidden;
  overflow-y: auto;
  z-index: 2;
  white-space: nowrap;
  right: 0;
  text-align: center;
  min-width: 100px;
}

.chip-drop-down__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0.5rem;
  min-width: 250px;
  justify-content: space-between;
  cursor: pointer;
}

.chip-drop-down__item__select {
  display: block;
  width: 175px;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
}

.theme-dark .chip-drop-down__content {
  background-color: #1d2529;
  border-color: rgba(161, 167, 170, 0.3607843137);
}
.theme-dark .chip-drop-down__item:hover, .theme-dark .chip-drop-down__item:focus {
  background-color: rgba(232, 234, 234, 0.1019607843);
}

.filter-menu {
  padding: 1rem;
}
.filter-menu .vehicle-filters__section {
  padding: 0;
}

.vehicle-filters {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 20rem;
}

.vehicle-filters__scrollable {
  overflow-y: auto;
  flex: 1 1 0;
  border-bottom: 1px solid rgba(161, 167, 170, 0.3607843137);
}

.vehicle-filters__section {
  padding: 0.7rem 0 0 0.05rem;
}
.vehicle-filters__section--scrollable {
  overflow-y: auto;
}

.vehicle-filters__section__heading {
  font-family: "OpenSans-SemiBold";
  line-height: 1.75em;
  font-size: 1rem;
}

.vehicle-filters__section__label {
  font-family: "OpenSans-SemiBold";
  line-height: 1.6em;
  font-size: 1.25rem;
}

.vehicle-filters__section__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.vehicle-filters__section__row__icon {
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.theme-dark .vehicle-filters__section__label {
  color: #80bde0;
}
.theme-dark .vehicle-filters__section__heading {
  color: #80bde0;
}

.sar-filters__section__cummins-header {
  margin-top: 10px;
}
.sar-filters__section__cummins-header span {
  font-family: "OpenSans-SemiBold", Helvetica, Roboto, sans-serif;
  font-size: 0.875rem;
  line-height: 1.57rem;
}
.sar-filters__section__cummins-header svg {
  width: 22px;
  height: 22px;
}

.sar-filters__section__date-range {
  margin-top: 10px;
}

.theme-dark .sar-filters__section__cummins-header {
  color: #80bde0;
}
.theme-dark .sar-filters__section__cummins-header svg path {
  fill: #80bde0;
}

.fleet-sar__section-heading {
  font-family: "OpenSans-Regular";
  line-height: 1.334em;
  font-size: 1.5rem;
}

.fleet-sar__section-heading--split {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.fleet-sar__section-heading--split > * {
  font-family: "OpenSans-Regular";
  line-height: 1.334em;
  font-size: 1.5rem;
  flex: 1;
}

.filter-section__heading {
  font-family: "OpenSans-SemiBold";
  line-height: 1.75em;
  font-size: 1rem;
}

.filter-section__content {
  max-height: 0rem;
  overflow-y: hidden;
}
.filter-section__content.-is-expanded {
  max-height: 60rem;
  transition: max-height 500ms ease-in;
}
.filter-section__content.-is-expanded.-is-transitioned {
  overflow-y: visible;
}
.filter-section__content.-is-expanded.-is-transitioned.-is-scrollable {
  overflow-y: auto;
}

.filter-section__preview {
  font-family: "OpenSans-Regular";
  line-height: 1.67em;
  font-size: 0.75rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 125px;
}

.theme-dark .filter-section__heading {
  color: #80bde0;
}

.vehicle-severity-filters__separator {
  font-family: "OpenSans-SemiBold", Helvetica, Roboto, sans-serif;
  font-size: 0.875rem;
  line-height: 1.57rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  margin-bottom: 10px;
}
.vehicle-severity-filters__separator svg {
  width: 24px;
  height: 24px;
}

.vehicle-severity-filters-section__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.vehicle-severity-filters-section__row__icon {
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.theme-dark .vehicle-severity-filters__separator {
  color: #80bde0;
}
.theme-dark .vehicle-severity-filters__separator svg path {
  fill: #80bde0;
}

.tooltip {
  position: relative;
  display: inline-block;
  max-width: 100%;
}

.tooltip--reset-position {
  display: revert;
}

.tooltip .tooltip__content {
  text-align: center;
  padding: 10px;
  border-radius: 6px;
  position: absolute;
  z-index: 10;
  white-space: normal;
  overflow-wrap: break-word;
  max-width: 700px;
}
.tooltip .tooltip__content.-position-left {
  bottom: 50%;
  right: 105%;
  margin-right: 5px;
}
.tooltip .tooltip__content.-position-left::after {
  content: " ";
  position: absolute;
  top: 50%;
  left: 100%;
  margin-top: -5px;
  border-width: 5px;
  border-style: solid;
  rotate: -90deg;
}
.tooltip .tooltip__content.-position-top {
  bottom: 100%;
  left: 50%;
  margin-bottom: 5px;
}
.tooltip .tooltip__content.-position-top::after {
  content: " ";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
}
.tooltip .tooltip__content.-position-right {
  bottom: 50%;
  left: 105%;
  margin-left: 5px;
}
.tooltip .tooltip__content.-position-right::after {
  content: " ";
  position: absolute;
  top: 50%;
  right: 100%;
  margin-top: -5px;
  border-width: 5px;
  border-style: solid;
  rotate: 90deg;
}
.tooltip .tooltip__content.-position-bottom {
  top: 100%;
  left: 50%;
  margin-top: 5px;
}
.tooltip .tooltip__content.-position-bottom::after {
  content: " ";
  position: absolute;
  bottom: 100%; /* At the top of the tooltip */
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  rotate: 180deg;
}

.theme-dark .tooltip {
  border-color: #182022;
}
.theme-dark .tooltip__content {
  background-color: #182022;
  color: #e8eaea;
}
.theme-dark .tooltip__content.-position-left::after, .theme-dark .tooltip__content.-position-top::after, .theme-dark .tooltip__content.-position-right::after, .theme-dark .tooltip__content.-position-bottom::after {
  border-color: #182022 transparent transparent transparent;
}

.indicator__trigger {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.indicator__content {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.indicator__content i {
  margin-right: 5px;
}

.banner {
  display: flex;
  justify-content: flex-start;
  margin: 0px;
  gap: 10px;
  padding-right: 10px;
  padding-left: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.banner__icon {
  flex: none;
  display: flex;
  align-items: center;
  height: 36.5px;
}

.banner__body {
  flex: 1;
  min-height: 36.5px;
}

.theme-dark .banner.-color-information {
  background-color: #e8eaea;
  color: #424e54;
}
.theme-dark .banner.-color-potential-breakdown {
  background-color: #f47721;
  color: #1d2529;
}
.theme-dark .banner.-color-potential-breakdown .icon-priority-high {
  fill: #1d2529;
}

.information-banner__text {
  height: 36.5px;
  display: flex;
  align-items: center;
}

.tag {
  width: fit-content;
  padding-left: 4px;
  padding-right: 4px;
  border-radius: 2px;
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
}

.theme-dark .tag {
  background-color: #007bc1;
  color: #ffffff;
}

.potential-breakdown-banner__body {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  height: 36.5px;
}

.potential-breakdown-banner__link {
  display: inline;
  gap: 5px;
}

.theme-dark .potential-breakdown-banner__link {
  font-family: "OpenSans-SemiBold", Helvetica, Roboto, sans-serif;
  font-size: 0.875rem;
  line-height: 1.57rem;
  color: #004b9e;
  text-decoration: underline;
}
.theme-dark .potential-breakdown-banner__link .icon-open-in-new {
  fill: #1d2529;
  width: 12px;
  height: 12px;
}

.potential-breakdown-indicator svg {
  width: 24px;
  height: 24px;
}
.potential-breakdown-indicator__icons {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  margin-bottom: 5px;
}
.potential-breakdown-indicator__description {
  font-family: "OpenSans-Regular";
  line-height: 1.67em;
  font-size: 0.75rem;
}
.potential-breakdown-indicator__description * {
  font-family: "OpenSans-Regular";
  line-height: 1.67em;
  font-size: 0.75rem;
}

.theme-dark .potential-breakdown-indicator__description--text {
  color: #f47721;
}

.potential-breakdown-filter {
  display: flex;
  flex-direction: row;
  gap: 0;
}

.potential-breakdown-filter__strip {
  flex: 0 0 6px;
  background-color: #f47721;
}

.potential-breakdown-filter__padded-content {
  flex: 1;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 16px;
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-right: 16px;
  padding-left: 10px;
}

.potential-breakdown-filter__checkbox {
  white-space: nowrap;
}

.potential-breakdown-filter__indicators {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
}

.plus-minus-expand-button {
  display: flex;
}

.fleet-capabilities-indicator {
  display: flex;
  align-items: center;
  gap: 5px;
}
.fleet-capabilities-indicator svg {
  width: 16px;
  height: 16px;
}

.theme-dark .fleet-capabilities-indicator .icon-construction {
  fill: rgba(123, 131, 135, 0.3607843137);
}
.theme-dark .fleet-capabilities-indicator .icon-flash-on {
  fill: rgba(123, 131, 135, 0.3607843137);
}
.theme-dark .fleet-capabilities-indicator .icon-big-antenna g g {
  fill: rgba(123, 131, 135, 0.3607843137);
}
.theme-dark .fleet-capabilities-indicator.-can-configure .icon-construction {
  fill: #e8eaea;
}
.theme-dark .fleet-capabilities-indicator.-can-program .icon-flash-on {
  fill: #e8eaea;
}
.theme-dark .fleet-capabilities-indicator.-can-publish-to-navistar .icon-big-antenna g g {
  fill: #e8eaea;
}

.text-label {
  display: flex;
  align-items: center;
  flex-direction: row;
  max-width: 100%;
}
.text-label svg {
  min-width: 24px;
}

.text-label__text {
  overflow: hidden;
  text-overflow: ellipsis;
}