@charset "UTF-8";

/* src/styles.scss */
.cdk-overlay-container,
.cdk-global-overlay-wrapper {
  pointer-events: none;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.cdk-overlay-container {
  position: fixed;
  z-index: 1000;
}
.cdk-overlay-container:empty {
  display: none;
}
.cdk-global-overlay-wrapper {
  display: flex;
  position: absolute;
  z-index: 1000;
}
.cdk-overlay-pane {
  position: absolute;
  pointer-events: auto;
  box-sizing: border-box;
  display: flex;
  max-width: 100%;
  max-height: 100%;
  z-index: 1000;
}
.cdk-overlay-backdrop {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  pointer-events: auto;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  opacity: 0;
  z-index: 1000;
  transition: opacity 400ms cubic-bezier(0.25, 0.8, 0.25, 1);
}
.cdk-overlay-backdrop-showing {
  opacity: 1;
}
@media (forced-colors: active) {
  .cdk-overlay-backdrop-showing {
    opacity: 0.6;
  }
}
.cdk-overlay-dark-backdrop {
  background: rgba(0, 0, 0, 0.32);
}
.cdk-overlay-transparent-backdrop {
  transition: visibility 1ms linear, opacity 1ms linear;
  visibility: hidden;
  opacity: 1;
}
.cdk-overlay-transparent-backdrop.cdk-overlay-backdrop-showing,
.cdk-high-contrast-active .cdk-overlay-transparent-backdrop {
  opacity: 0;
  visibility: visible;
}
.cdk-overlay-backdrop-noop-animation {
  transition: none;
}
.cdk-overlay-connected-position-bounding-box {
  position: absolute;
  display: flex;
  flex-direction: column;
  min-width: 1px;
  min-height: 1px;
  z-index: 1000;
}
.cdk-global-scrollblock {
  position: fixed;
  width: 100%;
  overflow-y: scroll;
}
:root {
  --desoutter-red: #e40520;
  --dark-red: #c8102e;
  --primary-red-light-5: #f3ccd1;
  --primary-red-light-6: #f9e6e8;
  --hover-red: #dfa2aa;
  --primary-red-80: #c8102e;
  --atlas-copco-blue: #0099cc;
  --dark-blue: #0078a1;
  --primary-blue-light-5: #ccebf5;
  --primary-blue-light-6: #e6f5fa;
  --hover-blue: #59bdde;
  --primary-blue-80: #005470;
  --brand-color: var(--atlas-copco-blue);
  --brand-color-dark: var(--dark-blue);
  --brand-color-light: var(--primary-blue-light-5);
  --brand-color-lighter: var(--primary-blue-light-6);
  --brand-color-hover: var(--hover-blue);
  --brand-color-80: var(--primary-blue-80);
}
* {
  margin: 0;
  padding: 0;
}
html {
  font-family: "Source Sans Pro", sans-serif;
  background: #ffffff 0% 0% no-repeat padding-box;
  color: #0d0d0d;
}
body {
  min-width: 350px;
}
a {
  color: var(--brand-color-dark);
  text-decoration: none;
  cursor: pointer;
  outline: none;
}
span {
  outline: none;
}
h1 {
  font: normal normal 400 30px/38px "Source Sans Pro";
}
h2 {
  font: normal normal 600 24px/31px "Source Sans Pro";
}
h3 {
  font: normal normal 400 21px/27px "Source Sans Pro";
}
h4 {
  font: normal normal 600 18px/23px "Source Sans Pro";
}
h5 {
  font: normal normal 400 18px/23px "Source Sans Pro";
}
pre {
  font-family: "Source Sans Pro", sans-serif;
  white-space: pre-wrap;
  white-space: -moz-pre-wrap;
  white-space: -pre-wrap;
  white-space: -o-pre-wrap;
  word-wrap: break-word;
}
label:not(mat-form-field label) {
  display: block;
  width: 100%;
  text-align: left;
  font-family: "Source Sans Pro", sans-serif;
  color: #373d41;
  font-weight: 400;
  cursor: pointer;
}
.c-link {
  color: var(--brand-color);
}
.c-row--header {
  background: #ffffff 0% 0% no-repeat padding-box;
  padding-top: 11.5px;
  padding-bottom: 11.5px;
}
.c-row--main {
  background: #ffffff 0% 0% no-repeat padding-box;
  min-height: 242px;
}
@media (min-width: 768px) {
  .c-row {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 992px) {
  .c-row {
    padding-left: 49px;
    padding-right: 49px;
  }
}
.u-border-1 {
  border: 1px solid var(--brand-color-dark);
}
.u-border-2 {
  border: 1px solid lightcoral;
}
.u-border-3 {
  border: 1px solid yellowgreen;
}
.u-border-4 {
  border: 1px solid lightseagreen;
}
.u-mt-2 {
  margin-top: 50px;
}
.u-mb-2 {
  margin-bottom: 50px;
}
.u-mb-3 {
  margin-bottom: 100px;
}
@media (min-width: 992px) {
  .u-mt-2-lg {
    margin-top: 50px;
  }
}
.u-ml--alpha {
  margin-left: 16px !important;
}
.u-mt--small {
  margin-top: 4px !important;
}
.u-mb--small {
  margin-bottom: 4px !important;
}
.u-mr--small {
  margin-right: 4px !important;
}
.u-mr--medium {
  margin-right: 8px !important;
}
.u-mr--large {
  margin-right: 25px !important;
}
.u-ml--small {
  margin-left: 4px !important;
}
.u-p--small {
  padding: 4px !important;
}
.u-p--medium {
  padding: 8px !important;
}
.u-p--large {
  padding: 25px !important;
}
.u-pt--small {
  padding-top: 4px !important;
}
.u-pt--medium {
  padding-top: 8px !important;
}
.u-pt--large {
  padding-top: 25px !important;
}
.u-pb--small {
  padding-bottom: 4px !important;
}
.u-pb--medium {
  padding-bottom: 8px !important;
}
.u-pb--large {
  padding-bottom: 25px !important;
}
.u-pb--xlarge {
  padding-bottom: 50px !important;
}
.u-mt--medium {
  margin-top: 8px !important;
}
.u-ml--medium {
  margin-left: 8px !important;
}
.u-mb--medium {
  margin-bottom: 8px !important;
}
.u-mt--large {
  margin-top: 25px !important;
}
.u-mb--xlarge {
  margin-bottom: 50px !important;
}
@media (max-width: 576px) {
  .u-mt--large-mobile {
    margin-top: 25px !important;
  }
}
.u-mb--large {
  margin-bottom: 25px !important;
}
.u-scroll {
  overflow: auto;
}
.u-scroll--horizontal {
  overflow-x: auto;
}
.u-scroll-vertical {
  overflow-y: auto;
  overflow-x: hidden;
}
.u-content-between {
  justify-content: space-between;
}
.u-content-center {
  justify-content: center;
}
.u-align-center {
  align-items: center;
}
.u-align-content-center {
  align-content: center;
}
.c-col-6 {
  width: 50% !important;
}
.c-col-8 {
  width: 66.333% !important;
}
.c-col-12 {
  width: 100% !important;
  max-width: 640px !important;
}
@media (min-width: 576px) {
  .c-col-sm-12 {
    width: 100% !important;
  }
  .c-col-sm-8 {
    width: 66.333% !important;
  }
}
@media (min-width: 768px) {
  .c-col-md-6 {
    width: 50% !important;
  }
  .c-col-md-8 {
    width: 66.333% !important;
  }
}
@media (min-width: 992px) {
  .c-col-lg-6 {
    width: 50% !important;
  }
}
.u-mobile {
  display: flex;
}
.u-tablet {
  display: none !important;
}
@media (min-width: 768px) {
  .u-mobile {
    display: none !important;
  }
  .u-tablet {
    display: flex !important;
  }
}
.u-desktop {
  display: none !important;
}
@media (min-width: 992px) {
  .u-desktop {
    display: flex !important;
  }
  .u-tablet-and-mobile {
    display: none !important;
  }
}
.u-show-sm {
  display: none !important;
}
@media (min-width: 576px) {
  .u-show-sm {
    display: block !important;
  }
}
.action-bar {
  flex-wrap: nowrap !important;
  gap: 15px;
}
.user-settings__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.nav-header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.nav-header__search {
  display: flex;
  flex: 2 1 auto;
  padding-right: 15px;
}
.header-wrapper {
  gap: 10px;
}
.c-icon {
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
  display: inline-block;
  width: 22px;
  height: 22px;
  position: absolute;
  background-repeat: no-repeat;
  background-position: top;
}
.c-icon--sort {
  padding-left: 10px;
  top: 3px;
  background-image: url(/assets/img/sort.svg);
  background-size: 15px 15px;
}
.c-icon--toggle {
  left: 15px;
  top: 22px;
  background-image: url("./media/chevron.svg");
  background-size: 15px 15px;
  transition: all 0.2s;
}
.c-icon--toggle-blue {
  right: 3px;
  top: 27px;
  background-image: url("./media/chevron-blue.svg");
  background-size: 22px 22px;
  transition: all 0.3s;
}
.c-icon--toggle-disabled {
  left: 15px;
  top: 22px;
  background-image: url("./media/chevron-grey.svg");
  background-size: 15px 15px;
  transition: all 0.2s;
}
.c-icon--close-dark {
  right: 0;
  top: 5px;
  background-image: url("./media/close-dark.svg");
  background-size: 22px 22px;
}
.c-icon--close-dark-sm {
  right: 0;
  top: 5px;
  background-image: url("./media/close-dark.svg");
  background-size: 15px 15px;
}
.is-toggled .c-icon--toggle,
.is-toggled .c-icon--toggle-blue {
  transform: rotate(180deg);
  top: 13px;
}
.nav-header__list {
  display: flex;
  list-style: none;
}
.nav-header__item {
  padding: 13px 8px 9px 8px;
}
.nav-header__link {
  display: inline-block;
  color: var(--brand-color-dark);
  letter-spacing: 0px;
  text-align: right;
  text-decoration: none;
  padding: 0 8px;
  font-size: 16px;
  line-height: 27px;
  padding-right: 31px;
}
.nav-header__link::after {
  content: "";
  position: relative;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid var(--brand-color-dark);
  border-bottom: 5px solid transparent;
  top: 13px;
  right: -15px;
}
.nav-divider {
  border-right: 1px solid #ebebec;
}
.main {
  border: 2px solid lightcoral;
}
.footer {
  border: 2px solid lightgreen;
}
.nav-main {
  border-top: 1px solid #f3f3f3;
  background: #ffffff 0% 0% no-repeat padding-box;
  display: none;
  overflow: visible;
}
@media (min-width: 992px) {
  .nav-main {
    display: block;
  }
}
.nav-main__list {
  display: flex;
  list-style: none;
  border-bottom: 2px solid #f3f3f3;
}
.nav-main__link {
  text-decoration: none;
  text-align: left;
  font: normal normal normal 18px/23px Source Sans Pro;
  letter-spacing: 0px;
  color: var(--brand-color-dark);
  opacity: 1;
  padding: 9px 49px;
  display: block;
  white-space: nowrap;
  transition: background-color 0.2s ease;
}
.nav-main__link-sm {
  font: normal normal normal 14px Source Sans Pro;
  padding: 8px 0px 9px 49px;
}
.nav-main__item {
  border-right: 1px solid #f3f3f3;
  position: relative;
}
.nav-main__item:first-child .nav-main__link {
  padding-bottom: 0;
}
.mat-icon.nav-main__icon {
  height: 26px;
  width: 26px;
}
.nav-dropdown {
  display: none;
  position: absolute;
  z-index: 999;
  background-color: #f3f3f3;
}
.nav-main__item:hover .nav-dropdown {
  display: block;
  visibility: visible;
  opacity: 1;
}
.nav-main__item .nav-main__link:after {
  content: "";
  width: 100%;
  height: 3px;
  background-color: #ffffff;
  display: block;
  position: absolute;
  right: 0;
  bottom: 0px;
  transition: background-color 0.2s ease;
}
.nav-main__item:hover .nav-main__link:after {
  background-color: var(--brand-color-dark);
}
.nav-dropdow__list {
  display: flex;
  justify-content: space-around;
  align-items: left;
  flex-direction: column;
  width: 300px;
}
.nav-dropdow__link {
  text-decoration: none;
  text-align: left;
  font: normal normal 600 18px/23px Source Sans Pro;
  letter-spacing: 0px;
  color: var(--brand-color-dark);
  opacity: 1;
  padding: 18px 49px 13px;
  display: block;
}
.nav-dropdow__link:after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: lightgray;
  display: block;
  margin-top: 5px;
  transition: background-color 0.2s ease;
}
.nav-dropdow__item:hover .nav-dropdow__link:after {
  background-color: var(--brand-color-dark);
}
.nav-dropdow__icon {
  right: 30px;
  position: absolute;
  transition: transform 0.2s ease;
}
.nav-dropdow__item:hover .nav-dropdow__icon {
  transform: translateX(5px);
}
.c-badge::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #c8102e;
  color: #c8102e;
  border-radius: 50%;
  margin-right: 7px;
  margin-bottom: 2px;
}
.c-overedue {
  background-color: rgba(250, 77, 86, 0.2);
}
.c-label {
  font-size: 14px;
  line-height: 20px;
  color: #373d41;
}
.c-label--md {
  font-size: 16px !important;
}
.c-counter {
  color: #bbbdc0;
  padding-left: 8px;
}
.c-button {
  display: inline-block;
  margin: 0;
  text-align: center;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border-radius: 3px;
  border-style: solid;
  border-width: 1px;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition-property:
    background,
    color,
    border;
  transition-property:
    background,
    color,
    border;
  outline: 0;
  line-height: normal;
  font-weight: 400;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-shadow: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-left: 10px;
  padding-right: 25px;
  padding-top: 10px;
  padding-bottom: 15px;
}
.search-input__form {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}
.search-input__group {
  display: flex;
  justify-content: flex-end;
  flex-wrap: nowrap;
  width: 100%;
}
.search-input__button {
  display: flex;
  background-color: transparent;
  border: none;
  cursor: pointer;
  color: var(--brand-color-dark);
}
.search-input__button .mat-icon {
  pointer-events: none;
  height: 28px;
  width: 28px;
}
.search-input__button.search-input__expandable {
  display: none;
}
.search-input__button.search-input__clickable {
  display: flex;
}
@media (min-width: 768px) {
  .search-input__button.search-input__expandable {
    display: flex;
  }
  .search-input__button.search-input__clickable {
    display: none;
  }
}
.search-input {
  flex: 0 0 0%;
  flex-basis: 0%;
  border: none;
  border-bottom: 2px var(--brand-color-dark) solid;
  border-radius: 0;
  font-size: 16px;
  margin-right: 5px;
  width: 0%;
  transition: flex-basis 0.2s ease-in-out;
}
.search-input.is-expanded {
  flex-basis: 100%;
}
.search-input:focus {
  outline: none;
}
@media (max-width: 768px) {
  .search-input {
    display: none;
  }
}
.tool-search__modal {
  max-height: 70vh !important;
  min-width: 80vw !important;
  position: absolute !important;
}
@media (max-width: 768px) {
  .tool-search__modal {
    min-height: 100dvh !important;
    max-height: 100dvh !important;
    min-width: 100vw !important;
    bottom: 0;
  }
}
.modal-button__close {
  position: absolute;
  right: 20px;
  top: 20px;
}
.modal-button__close .mat-icon {
  color: #bbbdc0;
}
.modal-title__divider {
  margin: 15px 0 !important;
}
.c-button--search {
  position: absolute;
  display: block;
  text-indent: -999999px;
  width: 22px;
  height: 40px;
  top: 0;
  right: 0;
  border: 0;
  background-color: transparent;
  background-position: center 10px;
  background-repeat: no-repeat;
  background-image: url(/assets/img/search.svg);
  background-size: 22px 22px;
  -webkit-transition-property: none;
  transition-property: none;
}
.c-button--search--sm {
  background-size: 18px 18px;
  background-position: center 7px;
  height: 32px;
}
.c-button--calendar {
  position: absolute;
  display: block;
  text-indent: -999999px;
  width: 30px;
  height: 45px;
  top: 0;
  right: 0;
  border: 0;
  padding-left: 15px;
  padding-bottom: 10px;
  background-color: transparent;
  background-position: center 11px;
  background-repeat: no-repeat;
  background-image: url(/assets/img/calendar.svg);
  background-size: 19px 19px;
  -webkit-transition-property: none;
  transition-property: none;
}
.c-button--calendar-sm {
  width: 30px;
  height: 32px;
  background-size: 15px 15px;
  padding-left: 10px;
  top: -2px;
}
.c-close-search {
  background-image: url(/assets/img/close.svg);
}
.divider {
  display: flex;
  align-items: center;
}
.divider__line {
  height: 1px;
  flex: 1;
  background-color: #bbbdc0;
}
.divider__text {
  padding: 0 10px;
  text-align: left;
  letter-spacing: 0px;
  color: #bbbdc0;
  opacity: 1;
}
.main__title-container {
  display: flex;
  justify-content: center;
  margin-top: 32px;
  margin-bottom: 16px;
}
.main__title {
  text-align: left;
  font-weight: 600;
  font-size: 30px;
  line-height: 38px;
  letter-spacing: 0px;
  color: #373d41;
  opacity: 1;
}
.mat-badge-content {
  background: #ffcd00 !important;
  color: #0d0d0d !important;
}
.button {
  padding: 10px 25px;
  font: normal normal normal 16px/20px "Source Sans Pro";
  cursor: pointer;
  outline: none;
  overflow: hidden;
  text-overflow: ellipsis;
}
.button-block {
  display: block;
}
.button-action {
  background: #ffffff;
  border: none;
  border-radius: 50%;
  opacity: 1;
  text-decoration: none;
  white-space: nowrap;
  text-align: center;
  letter-spacing: 0px;
  font-weight: 600;
  color: var(--brand-color-dark);
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition-property:
    background,
    color,
    border;
  transition-property:
    background,
    color,
    border;
  padding: 0 3px;
  overflow: visible;
  text-overflow: ellipsis;
}
.button-action .mat-icon {
  height: 30px;
  width: 30px;
  pointer-events: none;
  transition: all 0.2s ease-in-out;
}
.button-action:hover .mat-icon {
  opacity: 0.8;
}
.button-primary {
  background: var(--brand-color) 0% 0% no-repeat padding-box;
  border-radius: 3px;
  border: none;
  opacity: 1;
  text-decoration: none;
  white-space: nowrap;
  text-align: center;
  letter-spacing: 0px;
  color: #ffffff;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition-property:
    background,
    color,
    border;
  transition-property:
    background,
    color,
    border;
}
.button-primary:hover,
.button-primary:active,
.button-primary--is-hovered {
  background-color: var(--brand-color-hover);
}
.button-primary:disabled,
.button-primary--inactive {
  background: #afb1b3 0% 0% no-repeat padding-box !important;
  color: #f3f3f3 !important;
  cursor: not-allowed;
  font-weight: 600 !important;
}
.button-primary.form-invalid {
  background-color: #bbbdc0;
}
.button-remove {
  background: #ffffff;
  border: 1px solid #c8102e;
  border-radius: 3px;
  opacity: 1;
  text-decoration: none;
  white-space: nowrap;
  text-align: center;
  letter-spacing: 0px;
  color: #c8102e;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition-property:
    background,
    color,
    border;
  transition-property:
    background,
    color,
    border;
  padding: 9px 25px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.button-remove:hover,
.button-remove:active,
.button-remove--is-hovered {
  background-color: #f9f9f9;
}
.button-remove:disabled,
.button-remove--inactive {
  background: #afb1b3 0% 0% no-repeat padding-box !important;
  color: #f3f3f3 !important;
  cursor: not-allowed;
  font-weight: 600 !important;
}
.button-filter {
  display: flex;
  width: 82px;
  cursor: pointer;
  column-gap: 10px;
  -webkit-user-select: none;
  user-select: none;
  border-radius: 30px;
  border: 2px solid var(--brand-color);
  color: var(--brand-color);
  font-weight: 600;
  font-size: 18px;
  padding: 10px 20px;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.button-filter:hover {
  background-color: var(--brand-color);
  color: #ffffff;
}
.button-filter .chip-filter__count {
  color: var(--brand-color);
  display: block;
  text-align: center;
}
.button-filter.active {
  background-color: var(--brand-color);
  color: #ffffff;
}
.button-filter.active:hover {
  background-color: #ffffff;
  color: var(--brand-color);
}
.button-secondary {
  background: #ffffff;
  border: 1px solid var(--brand-color);
  border-radius: 3px;
  opacity: 1;
  text-decoration: none;
  white-space: nowrap;
  text-align: center;
  letter-spacing: 0px;
  color: var(--brand-color);
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition-property:
    background,
    color,
    border;
  transition-property:
    background,
    color,
    border;
  padding: 9px 25px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.button-secondary.button--sm {
  font: normal normal normal 14px/18px Source Sans Pro;
  padding: 7px 12px;
  cursor: pointer;
  outline: none;
}
.button-secondary:hover,
.button-secondary:active,
.button-secondary--is-hovered {
  background: var(--brand-color-light) 0% 0% no-repeat padding-box;
}
.button-secondary:disabled,
.button-secondary--inactive {
  border: 1px solid #7d8183 !important;
  background: none !important;
  color: #7c8083 !important;
  cursor: not-allowed;
  font-weight: 600 !important;
}
.button--sm {
  font: normal normal normal 14px/18px Source Sans Pro;
  padding: 8px 12px;
  cursor: pointer;
  outline: none;
}
.button--xs {
  font: normal normal normal 14px/18px Source Sans Pro;
  padding: 7px 20px;
  cursor: pointer;
  outline: none;
}
.button--lg {
  font: normal normal normal 18px/20px Source Sans Pro;
  font-weight: bold;
  padding: 14px 22px;
  cursor: pointer;
  outline: none;
}
.button__stepper-start,
.button__stepper-continue,
.button__stepper-submit {
  display: flex;
  gap: 20px;
  flex-wrap: nowrap;
}
@media (max-width: 576px) {
  .button__stepper-start,
  .button__stepper-continue,
  .button__stepper-submit {
    gap: 0;
  }
}
.button__stepper-start .mat-icon,
.button__stepper-continue .mat-icon,
.button__stepper-submit .mat-icon {
  transition: transform 0.2s ease;
  flex: 0 0 25px;
}
.button__stepper-start:hover .mat-icon,
.button__stepper-continue:hover .mat-icon,
.button__stepper-submit:hover .mat-icon {
  transform: translateX(10px);
}
.u-table-fix-head {
  overflow-y: auto;
  height: 500px;
}
.u-table-fix-head thead {
  z-index: 1;
  position: inherit;
}
.u-table-fix-head thead th {
  position: sticky;
  top: 0px;
}
.mat-mdc-table thead .c-table__column-header {
  background-color: var(--brand-color-lighter);
  padding-top: 0;
  padding-bottom: 0;
}
#tool-table .c-table tr:first-child th:first-child {
  border-top-left-radius: 8px;
}
#tool-table .c-table tr:first-child th:last-child {
  border-top-right-radius: 8px;
}
@media (max-width: 768px) {
  #tool-table col:nth-child(1),
  #tool-table col:nth-child(2) {
    width: 48% !important;
  }
  #tool-table col:last-child {
    width: 4% !important;
  }
  #tool-table td.action {
    display: flex;
    justify-content: center;
    padding-left: 0;
    padding-right: 8px;
    min-width: 50px;
  }
}
@media (max-width: 992px) {
  #tool-table .button--sm {
    border-radius: 50%;
    height: 50px;
    width: 50px;
  }
  #tool-table .button--sm .button-label {
    display: none;
  }
}
.button__label {
  display: none !important;
  padding: 0 5px;
}
.button__label.button__mobile-label {
  display: inline !important;
}
@media (min-width: 992px) {
  .button__label {
    display: inline !important;
  }
}
button.button-block,
input.button-block {
  width: 100%;
}
.button-icon {
  font-size: 36px;
}
.c-search-form--full {
  width: 100%;
}
.main-button-group {
  display: flex;
  flex-direction: column;
}
.main-button-group__item {
  width: 100%;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .main-button-group {
    flex-direction: row;
  }
  .main-button-group__item {
    width: 47.5%;
  }
}
.c-overview__title {
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0px;
  color: #373d41;
  opacity: 1;
  padding-top: 40px;
  padding-bottom: 16px;
}
.c-overview {
  box-sizing: border-box;
  min-height: 15px;
  height: 100%;
  background-color: #ffffff;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1098039216);
  opacity: 1;
  padding: 20px 30px 30px 30px;
  cursor: pointer;
}
.c-overview:hover {
  box-shadow: 0px 4px 5px rgba(0, 0, 0, 0.1098039216);
}
.c-overview:hover .c-overview__counter {
  color: var(--brand-color);
}
.c-overview--technical {
  margin-bottom: 24px;
}
.c-overview__counter {
  text-align: center;
  text-decoration: none;
  display: block;
  font-size: 50px;
  font-weight: bold;
  letter-spacing: 0px;
  color: var(--brand-color-dark);
  opacity: 1;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition-property: all;
  transition-property: all;
}
.c-overview__description {
  text-align: center;
  font-size: 16px;
  letter-spacing: 0px;
  color: #373d41;
  opacity: 1;
  overflow: hidden;
}
.o-hide {
  display: none !important;
}
.o-show {
  display: block !important;
}
.o-show--flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.c-tools-counter {
  text-align: left;
  font-size: 18px;
  line-height: 23px;
  font-weight: 600;
  padding-left: 15px;
}
#tool-table .c-table td {
  padding: 18px 20px 18px 30px;
}
#tool-table .c-table__column-title {
  left: 10px;
}
.c-tools-table {
  margin-top: 40px;
}
.tools-filter {
  margin-top: 40px;
  margin-bottom: 40px;
}
.tools-nav {
  display: flex !important;
}
.tools-nav__item {
  padding-left: 8px;
}
.sidenav__container-full-page-height.mat-drawer-container {
  background-color: #ffffff;
  z-index: unset;
}
.sidenav__container-full-page-height.mat-drawer-container .mat-drawer-backdrop {
  position: fixed;
  z-index: 3;
}
.tools-sidenav__container.mat-drawer-container .range-filter__slider {
  padding: 0 30px 0 15px;
}
.tools-sidenav__container.mat-drawer-container .o-list {
  border-bottom: 1px solid #f3f3f3;
}
.tools-sidenav__container.mat-drawer-container .mat-mdc-slider {
  width: 100%;
}
.tools-sidenav__container.mat-drawer-container .mat-mdc-slider .mdc-slider__thumb-knob {
  transition: padding 0.2s ease-in-out;
}
.tools-sidenav__container.mat-drawer-container .mat-mdc-slider:hover .mdc-slider__thumb-knob {
  padding: 3px;
}
.icon-size-xxxl {
  transform: scale(3);
}
.icon-size-xs {
  transform: scale(0.8);
}
.icon-size-xxs {
  transform: scale(0.6);
}
.chip-filter__count {
  background-color: #ffffff;
  border-radius: 12px;
  height: 25px;
  width: 25px;
  display: inline-block;
}
.filter-state__list {
  font-weight: 600;
}
.filter-state__list .mat-mdc-standard-chip {
  background-color: white !important;
  color: var(--brand-color) !important;
  --mdc-chip-label-text-color: var(--brand-color) !important;
}
.filter-state__list .mat-mdc-standard-chip .mdc-evolution-chip__text-label {
  --mdc-chip-label-text-weight: 600;
}
.filter-state__list .mat-mdc-chip-focus-overlay {
  background-color: #ffffff;
}
.filter-state__list .button-filter__clear .mdc-evolution-chip__action {
  cursor: pointer;
}
.filter-state__list .mdc-evolution-chip {
  border: 1px solid var(--brand-color);
}
th .delete-col-button:active .mat-mdc-button-persistent-ripple.mdc-icon-button__ripple {
  opacity: 0 !important;
}
.mat-drawer-container {
  background-color: #ffffff;
}
.tools-sidenav__container .mat-sidenav {
  width: 550px;
}
@media (max-width: 992px) {
  .tools-sidenav__container .mat-sidenav {
    width: 100vw;
  }
}
.service-request-sidenav__drawer.mat-sidenav {
  width: 100vw;
}
#service-request-table {
  padding-bottom: 300px;
}
.mat-stepper-vertical,
.mat-stepper-horizontal {
  font-family: "Source Sans Pro", sans-serif !important;
}
.full-screen-stepper .service-request-stepper__header {
  box-shadow: 0px 1px 2px #e6e7e8;
}
.full-screen-stepper .mat-stepper-horizontal-line {
  display: none;
}
.full-screen-stepper .mat-step-header .mat-step-icon {
  background-color: white;
  border: 2px var(--brand-color) solid;
  padding: 8px;
}
.full-screen-stepper .mat-step-header .mat-step-icon.mat-step-icon-selected {
  background-color: var(--brand-color);
}
.full-screen-stepper .mat-step-header .mat-step-icon.mat-step-icon-selected .mat-step-icon-content {
  color: #ffffff;
}
.full-screen-stepper .mat-step-header .mat-step-icon.mat-step-icon-state-done {
  background-color: #43b02a;
  border-color: #43b02a;
}
.full-screen-stepper .mat-step-header .mat-step-icon.mat-step-icon-state-done .mat-icon {
  width: 26px;
  height: 26px;
}
.full-screen-stepper .mat-step-header .mat-step-icon.mat-step-icon-state-done .mat-step-icon-content {
  color: #ffffff !important;
}
.full-screen-stepper .mat-step-icon-content {
  color: #0d0d0d;
  font-weight: 600;
}
.full-screen-stepper .mat-step-text-label {
  font-weight: 600;
}
.full-screen-stepper .stepper-wrapper {
  left: -20px;
  position: relative;
}
.full-screen-stepper .stepper-card {
  border: none;
  max-width: 600px;
}
.full-screen-stepper .step-content-wrapper {
  width: 100%;
}
.full-screen-stepper .stepper-detail-card {
  display: flex;
  gap: 20px;
}
.full-screen-stepper .stepper-content {
  display: flex;
}
.full-screen-stepper .stepper-content-main {
  flex: 1 0 auto;
}
.full-screen-stepper .stepper-content-side {
  flex: 0 0 350px;
  padding: 0 0 0 30px;
}
@media (max-width: 992px) {
  .full-screen-stepper .stepper-wrapper {
    padding-right: 0;
    margin-right: -20px;
  }
  .full-screen-stepper .stepper-content {
    display: flex;
    flex-direction: column;
  }
  .full-screen-stepper .stepper-content-side {
    flex: 1 0 auto;
    padding: 0;
  }
}
.full-screen-stepper .mat-horizontal-content-container {
  padding: 0 0 15px 0;
}
.full-screen-stepper .mat-mdc-card-content {
  padding-top: 12px;
}
.services-summary ul {
  list-style: none;
}
.services-summary .services-summary-model {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 600;
}
.services-summary .services-summary-serial {
  font-size: 12px;
  font-weight: 400;
}
.services-summary .services-summary-service:not(:last-child) {
  border-bottom: #dddddd 1px solid;
}
.services-summary .services-summary-service-name {
  margin: 15px 0 5px 0;
  font-size: 14px;
  font-weight: 400;
}
.stepper-header-image {
  position: relative;
}
.desoutter-theme .stepper-header-image-message {
  padding: 0 150px;
}
.desoutter-theme .stepper-header-image {
  background-color: #bbbdc0;
}
.desoutter-theme .stepper-header-image img {
  max-height: 200px;
}
.stepper-header-image-message {
  position: absolute;
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  top: 0;
  left: 0;
  padding: 0 20px;
  display: flex;
  height: 100%;
  max-width: 350px;
  align-items: center;
}
.c-hero {
  min-height: 1px;
  padding-top: 9px;
  padding-bottom: 9px;
}
@media (min-width: 768px) {
  .c-hero {
    margin-bottom: 25px;
  }
}
.bg-white {
  background-color: #ffffff;
}
@media (min-width: 576px) {
  .bg-default-sm {
    background-color: #f9f9f9;
  }
}
.o-list {
  list-style: none;
  padding-left: 0;
}
.o-list__item {
  display: flex;
  flex-direction: column;
}
.u-beta-font-weight {
  font-weight: 600;
}
.o-list__title {
  background-color: lightgrey;
}
.filterbar__container {
  height: calc(100dvh - 64px);
  padding: 32px 32px;
  gap: 10px;
  display: flex;
  flex-direction: column;
}
.filterbar__content {
  flex: 1;
  overflow-y: auto;
}
.filterbar-close__icon .mat-icon {
  height: 18px;
  width: 18px;
}
.filterbar__actions {
  display: flex;
  gap: 46px;
}
.filterbar__item {
  padding: 0 24px 0 0;
}
.filterbar__item .mat-expansion-panel-header .mat-content {
  font-family: "Source Sans Pro";
  font-weight: 700;
  font-size: 16px;
}
.filterbar__item .c-search-filter-form {
  margin: 0 0 12px 0;
  width: calc(100% + 4px);
  left: -2px;
  position: relative;
}
.range-filter__title {
  font-size: 16px;
  color: #3b3b3b;
  margin-bottom: 8px;
  padding-left: 24px;
  padding-top: 8px;
  font-weight: 700;
}
.range-filter__description {
  font-size: 14px;
  color: #3b3b3b;
  margin-bottom: 16px;
  padding-left: 24px;
}
.u-w--auto {
  width: auto !important;
}
.u-w--full {
  width: 100% !important;
}
.u-w--50 {
  width: 50px !important;
}
.u-minw--400 {
  min-width: 400px !important;
}
.u-mw--150 {
  max-width: 150px !important;
}
.u-mw--300 {
  max-width: 300px !important;
}
.u-mw--350 {
  max-width: 350px !important;
}
.u-mw--400 {
  max-width: 400px !important;
}
.u-mw--500 {
  max-width: 500px !important;
}
.u-mw--600 {
  max-width: 600px !important;
}
.u-mw--700 {
  max-width: 700px !important;
}
.u-mw--800 {
  max-width: 800px !important;
}
.u-b-divider {
  border-bottom: 1px solid #f3f3f3;
}
.u-b-divider--dark {
  border-bottom: 1px solid #bbbdc0;
}
.u-t-divider {
  border-top: 1px solid #f3f3f3;
}
.u-shadow {
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1098039216);
}
.u-br-3 {
  border-radius: 3px;
}
.u-p-x-only {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.u-p-x-medium {
  padding-left: 16px !important;
  padding-right: 16px !important;
}
.u-p-bottom-only {
  padding-bottom: 0 !important;
}
.checkbox-filter__title {
  font-size: 16px;
  color: #3b3b3b;
  margin-bottom: 8px;
}
.checkbox-filter__title.active {
  color: var(--brand-color);
}
.c-details__title {
  caption-side: top;
  text-align: left;
  font-size: 25px;
  color: #3b3b3b;
  margin-bottom: 10px;
}
.c-details__action-button {
  display: block;
}
.c-details-box {
  box-sizing: border-box;
  background-color: white;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 16px;
  gap: 16px;
  margin-top: 30px;
  margin-bottom: 15px;
  height: 379px;
  left: 165px;
  top: 322px;
  border: 1px solid #dddddd;
  border-radius: 5px;
}
.c-details-box__title {
  font-family: "Source Sans Pro";
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
}
.c-details-box__item {
  font-family: "Source Sans Pro";
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  text-align: left;
  padding: 5px 5px 0 0;
  vertical-align: middle;
  color: #5a5d60;
}
.c-details-box__action-button {
  display: block;
}
@media (min-width: 992px) {
  .c-details-box {
    position: sticky;
    top: 80px;
  }
}
.fixedElement {
  background-color: #c0c0c0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
}
.tabs {
  margin-top: 30px;
  margin-bottom: 15px;
}
.c-alert {
  color: #c8102e;
  font-weight: 400;
}
.c-form-alert {
  font-size: 14px;
  color: #c8102e;
  font-weight: 400;
  text-align: left;
}
.u-color--primary {
  color: var(--brand-color);
}
.u-color--dark {
  color: var(--brand-color-dark);
}
.u-color--dark-gray {
  color: #a8a8a8;
}
.u-color--light {
  color: #bbbdc0;
}
.u-color--extra-light {
  color: #f3f3f3;
}
body .mat-mdc-card {
  --mdc-outlined-card-container-shape: 10px;
  border: 1px solid #dddddd;
  border-width: 1px;
  overflow: hidden;
}
body .mat-mdc-card .mat-mdc-card-title {
  font-size: 30px;
  font-weight: 700;
}
@media (max-width: 992px) {
  body .mat-mdc-card {
    border: none;
  }
}
.c-card {
  background-color: #eeeeee;
  box-sizing: border-box;
  min-height: 220px;
  height: 100%;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1098039216);
  opacity: 1;
  padding: 24px 24px 24px 24px;
}
.c-card__title {
  font-size: 18px;
  font-weight: 600;
}
.c-card__description {
  margin-top: 15px;
}
.c-submit__title {
  text-align: center;
  font-size: 24px;
  padding: 28px;
  height: 31px;
  font-weight: 600;
}
.c-submit__item {
  font-size: 16px;
  padding-bottom: 20px;
  text-align: center;
  letter-spacing: 0px;
  opacity: 1;
}
.c-submit__title,
.c-info__title {
  text-align: center;
  font-size: 24px;
  padding: 28px;
  min-height: 31px;
  font-weight: 600;
}
.c-submit__item,
.c-info__item {
  font-size: 16px;
  padding-bottom: 20px;
  text-align: center;
  letter-spacing: 0px;
  opacity: 1;
}
.c-section-title {
  font-size: 18px;
  font-weight: 600;
  color: #373d41;
}
.c-clickable {
  cursor: pointer;
}
.c-not-allowed {
  cursor: not-allowed;
}
.c-chip {
  margin: 5px;
  padding: 2px 5px;
  border-radius: 5px;
  border: 1px solid #939598;
  white-space: nowrap;
  display: inline-block;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1137254902);
  cursor: default;
}
.u-box-clickable:hover {
  cursor: pointer;
  background-color: #eeeeee;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2);
}
.fa-sort-icon {
  line-height: 34px;
  font-size: 14px;
  color: #bbbdc0;
  margin-left: 5px;
}
.u-text-left {
  text-align: left;
}
.u-text-right {
  text-align: right;
}
.u-line-height-40 {
  line-height: 40px;
}
.u-line-height-34 {
  line-height: 34px;
}
.u-line-height-32 {
  line-height: 32px;
}
.u-font-size-18 {
  font-size: 18px;
}
.u-font-size-16 {
  font-size: 16px;
}
.c-download-link {
  display: block;
}
.c-download-link:not(:first-child) {
  padding-top: 10px;
}
.c-item-title {
  line-height: 34px;
  text-align: left;
  font-size: 21px;
  font-weight: 600;
}
.c-dragdrop__item {
  box-sizing: border-box;
  height: 48px;
  border: 1px solid #bbbdc0;
  display: flex;
  margin: 4px 0;
  align-items: center;
  padding: 8px;
  background-color: #ffffff;
}
.c-dragdrop__label {
  text-align: left;
  letter-spacing: 0px;
  color: #0d0d0d;
  font-size: 18px;
}
.c-dragdrop__label--small {
  font-size: 14px;
}
.c-dragdrop__handle {
  cursor: move;
}
.c-dragdrop--pinned {
  background-color: #f3f3f3;
  position: relative;
  min-height: 48px;
  margin-left: -24px;
  margin-right: -24px;
  margin-bottom: 20px;
  padding: 18px 24px 16px 24px;
}
.c-sticky {
  position: sticky;
  left: 0;
  z-index: 1000;
  background-color: #ffffff;
}
.page-title {
  caption-side: top;
  font-size: 30px;
  color: #3b3b3b;
  margin-bottom: 25px;
  box-shadow: 0px 1px 2px #e6e7e8;
}
.page-title > span {
  flex-basis: 100%;
  text-align: center;
}
@media (max-width: 768px) {
  .page-title > span {
    text-align: left;
  }
}
.u-flex-column {
  display: flex;
  flex-direction: column;
}
.u-flex-wrap {
  flex-wrap: wrap;
}
.align-self-end {
  align-self: flex-end;
}
.u-flex-row {
  display: flex;
  flex-direction: row;
}
.u-font-bold {
  font-weight: bold !important;
}
.c-logo {
  height: 40px;
  transition: height 0.2s ease-in-out;
}
[hidden] {
  display: none !important;
}
.changelog-modal {
  overflow-y: auto !important;
}
.changelog-modal .mat-mdc-dialog-container .mdc-dialog__container {
  max-height: 100% !important;
}
.contact-list {
  list-style: none;
  padding-top: 5px;
}
.contact-list .contact-detail {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 25px;
  margin-bottom: 10px;
}
.contact-list .contact-detail span {
  margin-left: 10px;
  font-size: larger;
  text-overflow: ellipsis;
  overflow: hidden;
}
.contact-list .contact-detail .mat-icon {
  flex-shrink: 0;
}
.mat-mdc-form-field-error {
  color: #c8102e;
}
.u-pre-line {
  white-space: pre-line;
}
.u-relative {
  position: relative;
}
.u-align-self-center {
  align-self: center;
}
.c-info-box {
  font-size: 14px;
  border: 1px solid var(--brand-color-dark);
  border-radius: 5px;
  padding: 5px;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}
.c-info-box .mat-icon {
  color: var(--brand-color-dark);
}
.c-warning-box {
  font-size: 14px;
  border: 1px solid #c8102e;
  border-radius: 5px;
  padding: 5px;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}
.c-warning-box .mat-icon {
  color: #c8102e;
}
.u-mat-elevation-0 {
  box-shadow: none !important;
}
.u-p--0 {
  padding: 0 !important;
}
.u-text-center {
  text-align: center;
}
.u-w--100 {
  width: 100% !important;
}
.o-grid {
  display: flex;
  flex-wrap: wrap;
  margin-left: -7.5px;
  margin-right: -7.5px;
}
.o-grid--no-padding {
  margin-top: -7.5px;
  margin-bottom: -7.5px;
}
.o-grid--medium {
  display: flex;
  flex-wrap: wrap;
  margin-left: -7.5px;
  margin-right: -7.5px;
}
.o-grid--medium .o-grid__item {
  display: block;
  box-sizing: border-box;
  padding: 7.5px;
}
.o-grid--small {
  display: flex;
  flex-wrap: wrap;
  margin-left: -4px;
  margin-right: -4px;
}
.o-grid--small .o-grid__item {
  padding: 4px;
}
.o-grid .o-grid__item {
  display: block;
  box-sizing: border-box;
  padding: 7.5px;
}
@media (min-width: 768px) {
  .o-grid {
    margin-left: -15px;
    margin-right: -15px;
  }
  .o-grid--no-padding {
    margin-top: -15px;
    margin-bottom: -15px;
  }
  .o-grid .o-grid__item {
    padding: 15px;
  }
}
@media (max-width: 768px) {
  .o-grid.full-width-mobile {
    margin-left: -22.5px;
    margin-right: -22.5px;
  }
}
.row {
  box-sizing: border-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex: 0 1 auto;
  -webkit-box-flex: 0;
  flex: 0 1 auto;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 15px;
}
.row.reverse {
  -ms-flex-direction: row-reverse;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  flex-direction: row-reverse;
}
.col.reverse {
  -ms-flex-direction: column-reverse;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  flex-direction: column-reverse;
}
.col,
.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12 {
  box-sizing: border-box;
  -ms-flex: 0 0 auto;
  -webkit-box-flex: 0;
  flex: 0 0 auto;
}
.col {
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  -webkit-box-flex: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  max-width: 100%;
}
.col-1 {
  -ms-flex-preferred-size: 8.333%;
  flex-basis: 8.333%;
  max-width: 8.333%;
}
.col-2 {
  -ms-flex-preferred-size: 16.667%;
  flex-basis: 16.667%;
  max-width: 16.667%;
}
.col-3 {
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
  max-width: 25%;
}
.col-4 {
  -ms-flex-preferred-size: 33.333%;
  flex-basis: 33.333%;
  max-width: 33.333%;
}
.col-5 {
  -ms-flex-preferred-size: 41.667%;
  flex-basis: 41.667%;
  max-width: 41.667%;
}
.col-6 {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  max-width: 50%;
}
.col-7 {
  -ms-flex-preferred-size: 58.333%;
  flex-basis: 58.333%;
  max-width: 58.333%;
}
.col-8 {
  -ms-flex-preferred-size: 66.667%;
  flex-basis: 66.667%;
  max-width: 66.667%;
}
.col-9 {
  -ms-flex-preferred-size: 75%;
  flex-basis: 75%;
  max-width: 75%;
}
.col-10 {
  -ms-flex-preferred-size: 83.333%;
  flex-basis: 83.333%;
  max-width: 83.333%;
}
.col-11 {
  -ms-flex-preferred-size: 91.667%;
  flex-basis: 91.667%;
  max-width: 91.667%;
}
.col-12 {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
}
.col-offset-1 {
  margin-left: 8.333%;
}
.col-offset-2 {
  margin-left: 16.667%;
}
.col-offset-3 {
  margin-left: 25%;
}
.col-offset-4 {
  margin-left: 33.333%;
}
.col-offset-5 {
  margin-left: 41.667%;
}
.col-offset-6 {
  margin-left: 50%;
}
.col-offset-7 {
  margin-left: 58.333%;
}
.col-offset-8 {
  margin-left: 66.667%;
}
.col-offset-9 {
  margin-left: 75%;
}
.col-offset-10 {
  margin-left: 83.333%;
}
.col-offset-11 {
  margin-left: 91.667%;
}
.start {
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  justify-content: flex-start;
  text-align: start;
}
.center {
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
  text-align: center;
}
.end {
  -ms-flex-pack: end;
  -webkit-box-pack: end;
  justify-content: flex-end;
  text-align: end;
}
.top {
  -ms-flex-align: start;
  -webkit-box-align: start;
  align-items: flex-start;
}
.middle {
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
}
.bottom {
  -ms-flex-align: end;
  -webkit-box-align: end;
  align-items: flex-end;
}
.around {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}
.between {
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
  justify-content: space-between;
}
.first {
  -ms-flex-order: -1;
  -webkit-box-ordinal-group: 0;
  order: -1;
}
.last {
  -ms-flex-order: 1;
  -webkit-box-ordinal-group: 2;
  order: 1;
}
@media only screen and (min-width: 576px) {
  .container {
    max-width: 650px !important;
  }
  .row-sm {
    box-sizing: border-box;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex: 0 1 auto;
    -webkit-box-flex: 0;
    flex: 0 1 auto;
    -ms-flex-direction: row;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 15px;
  }
  .row-sm.reverse {
    -ms-flex-direction: row-reverse;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    flex-direction: row-reverse;
  }
  .col-sm,
  .col-sm-1,
  .col-sm-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-9,
  .col-sm-10,
  .col-sm-11,
  .col-sm-12 {
    box-sizing: border-box;
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
    flex: 0 0 auto;
  }
  .col-sm {
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }
  .col-sm-1 {
    -ms-flex-preferred-size: 8.333%;
    flex-basis: 8.333%;
    max-width: 8.333%;
  }
  .col-sm-2 {
    -ms-flex-preferred-size: 16.667%;
    flex-basis: 16.667%;
    max-width: 16.667%;
  }
  .col-sm-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    -ms-flex-preferred-size: 33.333%;
    flex-basis: 33.333%;
    max-width: 33.333%;
  }
  .col-sm-5 {
    -ms-flex-preferred-size: 41.667%;
    flex-basis: 41.667%;
    max-width: 41.667%;
  }
  .col-sm-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    -ms-flex-preferred-size: 58.333%;
    flex-basis: 58.333%;
    max-width: 58.333%;
  }
  .col-sm-8 {
    -ms-flex-preferred-size: 66.667%;
    flex-basis: 66.667%;
    max-width: 66.667%;
  }
  .col-sm-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    -ms-flex-preferred-size: 83.333%;
    flex-basis: 83.333%;
    max-width: 83.333%;
  }
  .col-sm-11 {
    -ms-flex-preferred-size: 91.667%;
    flex-basis: 91.667%;
    max-width: 91.667%;
  }
  .col-sm-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
  .col-sm-offset-1 {
    margin-left: 8.333%;
  }
  .col-sm-offset-2 {
    margin-left: 16.667%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-4 {
    margin-left: 33.333%;
  }
  .col-sm-offset-5 {
    margin-left: 41.667%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-7 {
    margin-left: 58.333%;
  }
  .col-sm-offset-8 {
    margin-left: 66.667%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-10 {
    margin-left: 83.333%;
  }
  .col-sm-offset-11 {
    margin-left: 91.667%;
  }
  .start-sm {
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    justify-content: flex-start;
    text-align: start;
  }
  .center-sm {
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
  }
  .end-sm {
    -ms-flex-pack: end;
    -webkit-box-pack: end;
    justify-content: flex-end;
    text-align: end;
  }
  .top-sm {
    -ms-flex-align: start;
    -webkit-box-align: start;
    align-items: flex-start;
  }
  .middle-sm {
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
  }
  .bottom-sm {
    -ms-flex-align: end;
    -webkit-box-align: end;
    align-items: flex-end;
  }
  .around-sm {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .between-sm {
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
  .first-sm {
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
    order: -1;
  }
  .last-sm {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    order: 1;
  }
}
@media only screen and (min-width: 768px) {
  .container {
    max-width: 650px !important;
  }
  .col-md,
  .col-md-1,
  .col-md-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9,
  .col-md-10,
  .col-md-11,
  .col-md-12 {
    box-sizing: border-box;
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
    flex: 0 0 auto;
  }
  .col-md {
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }
  .col-md-1 {
    -ms-flex-preferred-size: 8.333%;
    flex-basis: 8.333%;
    max-width: 8.333%;
  }
  .col-md-2 {
    -ms-flex-preferred-size: 16.667%;
    flex-basis: 16.667%;
    max-width: 16.667%;
  }
  .col-md-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
  .col-md-4 {
    -ms-flex-preferred-size: 33.333%;
    flex-basis: 33.333%;
    max-width: 33.333%;
  }
  .col-md-5 {
    -ms-flex-preferred-size: 41.667%;
    flex-basis: 41.667%;
    max-width: 41.667%;
  }
  .col-md-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
  .col-md-7 {
    -ms-flex-preferred-size: 58.333%;
    flex-basis: 58.333%;
    max-width: 58.333%;
  }
  .col-md-8 {
    -ms-flex-preferred-size: 66.667%;
    flex-basis: 66.667%;
    max-width: 66.667%;
  }
  .col-md-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }
  .col-md-10 {
    -ms-flex-preferred-size: 83.333%;
    flex-basis: 83.333%;
    max-width: 83.333%;
  }
  .col-md-11 {
    -ms-flex-preferred-size: 91.667%;
    flex-basis: 91.667%;
    max-width: 91.667%;
  }
  .col-md-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
  .col-md-offset-1 {
    margin-left: 8.333%;
  }
  .col-md-offset-2 {
    margin-left: 16.667%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-4 {
    margin-left: 33.333%;
  }
  .col-md-offset-5 {
    margin-left: 41.667%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-7 {
    margin-left: 58.333%;
  }
  .col-md-offset-8 {
    margin-left: 66.667%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-10 {
    margin-left: 83.333%;
  }
  .col-md-offset-11 {
    margin-left: 91.667%;
  }
  .start-md {
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    justify-content: flex-start;
    text-align: start;
  }
  .center-md {
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
  }
  .end-md {
    -ms-flex-pack: end;
    -webkit-box-pack: end;
    justify-content: flex-end;
    text-align: end;
  }
  .top-md {
    -ms-flex-align: start;
    -webkit-box-align: start;
    align-items: flex-start;
  }
  .middle-md {
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
  }
  .bottom-md {
    -ms-flex-align: end;
    -webkit-box-align: end;
    align-items: flex-end;
  }
  .around-md {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .between-md {
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
  .first-md {
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
    order: -1;
  }
  .last-md {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    order: 1;
  }
}
@media only screen and (min-width: 992px) {
  .container {
    max-width: 650px !important;
  }
  .row,
  .row-sm {
    padding-left: 49px;
    padding-right: 49px;
  }
  .col-lg,
  .col-lg-1,
  .col-lg-2,
  .col-lg-3,
  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7,
  .col-lg-8,
  .col-lg-9,
  .col-lg-10,
  .col-lg-11,
  .col-lg-12 {
    box-sizing: border-box;
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
    flex: 0 0 auto;
  }
  .col-lg {
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }
  .col-lg-1 {
    -ms-flex-preferred-size: 8.333%;
    flex-basis: 8.333%;
    max-width: 8.333%;
  }
  .col-lg-2 {
    -ms-flex-preferred-size: 16.667%;
    flex-basis: 16.667%;
    max-width: 16.667%;
  }
  .col-lg-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    -ms-flex-preferred-size: 33.333%;
    flex-basis: 33.333%;
    max-width: 33.333%;
  }
  .col-lg-5 {
    -ms-flex-preferred-size: 41.667%;
    flex-basis: 41.667%;
    max-width: 41.667%;
  }
  .col-lg-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    -ms-flex-preferred-size: 58.333%;
    flex-basis: 58.333%;
    max-width: 58.333%;
  }
  .col-lg-8 {
    -ms-flex-preferred-size: 66.667%;
    flex-basis: 66.667%;
    max-width: 66.667%;
  }
  .col-lg-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    -ms-flex-preferred-size: 83.333%;
    flex-basis: 83.333%;
    max-width: 83.333%;
  }
  .col-lg-11 {
    -ms-flex-preferred-size: 91.667%;
    flex-basis: 91.667%;
    max-width: 91.667%;
  }
  .col-lg-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
  .col-lg-offset-1 {
    margin-left: 8.333%;
  }
  .col-lg-offset-2 {
    margin-left: 16.667%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-4 {
    margin-left: 33.333%;
  }
  .col-lg-offset-5 {
    margin-left: 41.667%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-7 {
    margin-left: 58.333%;
  }
  .col-lg-offset-8 {
    margin-left: 66.667%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-10 {
    margin-left: 83.333%;
  }
  .col-lg-offset-11 {
    margin-left: 91.667%;
  }
  .start-lg {
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    justify-content: flex-start;
    text-align: start;
  }
  .center-lg {
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
  }
  .end-lg {
    -ms-flex-pack: end;
    -webkit-box-pack: end;
    justify-content: flex-end;
    text-align: end;
  }
  .top-lg {
    -ms-flex-align: start;
    -webkit-box-align: start;
    align-items: flex-start;
  }
  .middle-lg {
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
  }
  .bottom-lg {
    -ms-flex-align: end;
    -webkit-box-align: end;
    align-items: flex-end;
  }
  .around-lg {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .between-lg {
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
  .first-lg {
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
    order: -1;
  }
  .last-lg {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    order: 1;
  }
}
@media only screen and (min-width: 1200px) {
  .col-xl,
  .col-xl-1,
  .col-xl-2,
  .col-xl-3,
  .col-xl-4,
  .col-xl-5,
  .col-xl-6,
  .col-xl-7,
  .col-xl-8,
  .col-xl-9,
  .col-xl-10,
  .col-xl-11,
  .col-xl-12 {
    box-sizing: border-box;
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
    flex: 0 0 auto;
  }
  .col-xl {
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }
  .col-xl-1 {
    -ms-flex-preferred-size: 8.333%;
    flex-basis: 8.333%;
    max-width: 8.333%;
  }
  .col-xl-2 {
    -ms-flex-preferred-size: 16.667%;
    flex-basis: 16.667%;
    max-width: 16.667%;
  }
  .col-xl-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    -ms-flex-preferred-size: 33.333%;
    flex-basis: 33.333%;
    max-width: 33.333%;
  }
  .col-xl-5 {
    -ms-flex-preferred-size: 41.667%;
    flex-basis: 41.667%;
    max-width: 41.667%;
  }
  .col-xl-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    -ms-flex-preferred-size: 58.333%;
    flex-basis: 58.333%;
    max-width: 58.333%;
  }
  .col-xl-8 {
    -ms-flex-preferred-size: 66.667%;
    flex-basis: 66.667%;
    max-width: 66.667%;
  }
  .col-xl-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    -ms-flex-preferred-size: 83.333%;
    flex-basis: 83.333%;
    max-width: 83.333%;
  }
  .col-xl-11 {
    -ms-flex-preferred-size: 91.667%;
    flex-basis: 91.667%;
    max-width: 91.667%;
  }
  .col-xl-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
}
.flex {
  display: flex;
}
.gap-sm {
  gap: 4px;
}
.gap-md {
  gap: 7.5px;
}
.gap-lg {
  gap: 15px;
}
.gap-xl {
  gap: 20px;
}
.spacer {
  flex: 1 0 auto;
}
.nowrap {
  flex-wrap: nowrap;
}
.grid {
  display: grid;
}
.grid-cols-1 {
  grid-template-columns: repeat(1, 1fr);
}
.grid-cols-2 {
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) {
  .grid-cols-md-1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .grid-cols-md-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
input,
textarea {
  font-family: "Source Sans Pro", sans-serif;
}
.c-form-label {
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 600;
}
.input-search {
  background-image: url(/assets/img/search.svg);
  background-repeat: no-repeat;
  background-position: center right;
}
.c-input-group {
  position: relative;
  box-sizing: border-box;
}
.c-input {
  box-sizing: border-box;
  appearance: none;
  border-radius: 4px;
  color: #373d41;
  background-color: #ffffff;
  display: block;
  width: 100%;
  margin: 0;
  outline: none;
}
.c-input--alpha {
  border: 1px solid #bbbdc0;
  font-size: 18px;
  line-height: 23px;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 8px;
  padding-bottom: 7px;
  height: 40px;
}
.c-input--alpha:active,
.c-input--alpha:focus {
  outline: none;
  border: 1px solid var(--brand-color);
}
.c-input--alpha.is-invalid,
.c-input--alpha.ng-touched.ng-invalid {
  border: 1px solid #c8102e !important;
}
.c-input--main {
  padding-right: 35px;
}
.c-input--beta {
  border: none;
  font-size: 16px;
  line-height: 20px;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1098039216);
  padding-left: 8px;
  padding-right: 30px;
  padding-top: 6px;
  padding-bottom: 6px;
}
.c-input--gamma {
  border: 1px solid #bbbdc0;
  width: 100%;
  padding: 6px 20px 4px 6px;
  font-size: 16px;
  line-height: 20px;
  background-size: 25px 18px;
}
.c-input--gamma:active,
.c-input--gamma:focus {
  outline: none;
  border: 1px solid var(--brand-color);
}
.c-input--gamma.is-invalid {
  border: 1px solid #c8102e !important;
}
.c-input--gamma.ng-touched.ng-invalid {
  border: 1px solid #c8102e !important;
}
.c-input::placeholder {
  color: #939598;
  margin: 0;
}
.c-form-chip {
  box-sizing: border-box;
  appearance: none;
  border-radius: 4px;
  color: #373d41;
  background-color: #ffffff;
  display: flex;
  margin: 0;
  outline: none;
  border: 1px solid #bbbdc0;
  font-size: 18px;
  line-height: 23px;
  padding-left: 16px;
  padding-right: 10px;
  padding-top: 8px;
  padding-bottom: 7px;
  height: 40px;
  text-align: left;
  cursor: default;
  white-space: nowrap;
  overflow: hidden;
  flex-grow: 1;
}
.c-form-chip--xs {
  font-size: 14px;
  padding-top: 4px;
  padding-bottom: 3px;
  height: 32px;
}
.c-form-chip__text {
  flex-grow: 1;
}
.c-form-chip:active,
.c-form-chip:focus {
  outline: none;
}
.c-form-chip__close {
  flex-grow: 1;
  justify-self: end;
  font-size: 16px;
  line-height: 23px;
  cursor: pointer;
}
.c-form-chip__close:hover,
.c-form-chip__close:active,
.c-form-chip__close:focus {
  color: #c8102e;
}
.c-input-checkbox {
  display: block;
  position: relative;
  cursor: pointer;
  font-size: 14px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.c-input-checkbox > div {
  width: 100%;
}
.c-input-checkbox .mdc-checkbox {
  right: -11px;
  --mdc-checkbox-selected-checkmark-color: #ffffff;
  --mdc-checkbox-selected-icon-color: var(--brand-color);
  --mdc-checkbox-selected-hover-icon-color: var(--brand-color);
  --mdc-checkbox-selected-pressed-icon-color: var(--brand-color);
  --mdc-checkbox-unselected-hover-icon-color: var(--brand-color);
}
.c-input-checkbox-label-right > span {
  margin-left: 10px;
  vertical-align: middle;
}
.c-input-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkmark {
  position: absolute;
  top: 0;
  right: 0;
  height: 20px;
  width: 20px;
  border: 1px solid #939598;
  border-radius: 2px;
  box-sizing: border-box;
  background-color: #ffffff;
}
.c-input-checkbox:hover input ~ .checkmark {
  background-color: #f9f9f9;
}
.c-input-checkbox input:checked ~ .checkmark {
  border: none;
  background-image: url(/assets/img/checkbox-checked.svg);
  background-size: 20px 20px;
}
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.c-input-checkbox input:checked ~ .checkmark:after {
  display: block;
}
.c-textarea {
  max-width: 100%;
  min-width: 100%;
  min-height: 75px;
  font-size: 16px !important;
}
.c-notes-area {
  border: 1px solid var(--brand-color);
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  min-height: 420px;
  height: auto;
  resize: none;
  font-size: 16px !important;
  width: 100%;
  background-color: transparent;
}
.c-postfix {
  color: #939598;
  font-weight: 400;
}
.c-switch-slider--left {
  position: relative;
  width: 80px;
  height: 40px;
  background-color: #5a646a;
  border-radius: 3px;
  transition: all 0.3s;
  float: left;
}
.c-switch-slider--left::after {
  content: "";
  position: absolute;
  width: 36px;
  height: 36px;
  border-radius: 2px;
  background-color: white;
  top: 2px;
  left: 2px;
  transition: all 0.3s;
}
.c-checkbox-slider:checked + .c-switch-slider--left::after {
  left: 42px;
}
.c-checkbox-slider:checked + .c-switch-slider--left {
  background-color: #008bbb;
}
.c-switch-slider::after {
  content: "";
  position: absolute;
  width: 36px;
  height: 36px;
  border-radius: 2px;
  background-color: white;
  top: 2px;
  left: 2px;
  transition: all 0.3s;
}
.c-checkbox-slider:checked + .c-switch-slider::after {
  left: 42px;
}
.c-checkbox-slider:checked + .c-switch-slider {
  background-color: #008bbb;
}
.c-checkbox-slider {
  display: none;
}
.c-switch-slider--sm {
  position: relative;
  width: 60px;
  height: 34px;
  background-color: #5a646a;
  border-radius: 3px;
  transition: all 0.3s;
  float: right;
}
.c-switch-slider--sm::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 2px;
  background-color: white;
  top: 2px;
  left: 2px;
  transition: all 0.3s;
}
.c-checkbox-slider--sm:checked + .c-switch-slider--sm::after {
  left: 28px;
}
.c-checkbox-slider--sm:checked + .c-switch-slider--sm {
  background-color: #008bbb;
}
.c-checkbox-slider--sm {
  display: none;
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/assets/fonts/KFOlCnqEu92Fr1MmEU9fCRc4EsA.woff2) format("woff2");
  unicode-range:
    U+0460-052F,
    U+1C80-1C88,
    U+20B4,
    U+2DE0-2DFF,
    U+A640-A69F,
    U+FE2E-FE2F;
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/assets/fonts/KFOlCnqEu92Fr1MmEU9fABc4EsA.woff2) format("woff2");
  unicode-range:
    U+0301,
    U+0400-045F,
    U+0490-0491,
    U+04B0-04B1,
    U+2116;
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/assets/fonts/KFOlCnqEu92Fr1MmEU9fCBc4EsA.woff2) format("woff2");
  unicode-range: U+1F00-1FFF;
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/assets/fonts/KFOlCnqEu92Fr1MmEU9fBxc4EsA.woff2) format("woff2");
  unicode-range: U+0370-03FF;
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/assets/fonts/KFOlCnqEu92Fr1MmEU9fCxc4EsA.woff2) format("woff2");
  unicode-range:
    U+0102-0103,
    U+0110-0111,
    U+0128-0129,
    U+0168-0169,
    U+01A0-01A1,
    U+01AF-01B0,
    U+0300-0301,
    U+0303-0304,
    U+0308-0309,
    U+0323,
    U+0329,
    U+1EA0-1EF9,
    U+20AB;
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/assets/fonts/KFOlCnqEu92Fr1MmEU9fChc4EsA.woff2) format("woff2");
  unicode-range:
    U+0100-02AF,
    U+0304,
    U+0308,
    U+0329,
    U+1E00-1E9F,
    U+1EF2-1EFF,
    U+2020,
    U+20A0-20AB,
    U+20AD-20CF,
    U+2113,
    U+2C60-2C7F,
    U+A720-A7FF;
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/assets/fonts/KFOlCnqEu92Fr1MmEU9fBBc4.woff2) format("woff2");
  unicode-range:
    U+0000-00FF,
    U+0131,
    U+0152-0153,
    U+02BB-02BC,
    U+02C6,
    U+02DA,
    U+02DC,
    U+0304,
    U+0308,
    U+0329,
    U+2000-206F,
    U+2074,
    U+20AC,
    U+2122,
    U+2191,
    U+2193,
    U+2212,
    U+2215,
    U+FEFF,
    U+FFFD;
}
.c-pagination {
  color: #373d41;
  padding: 10px 32px;
  font-size: 14px;
  line-height: 20px;
  white-space: nowrap;
}
.c-pagination__link {
  color: #939598;
  padding: 0 15px;
  transition: color 0.3s;
}
.c-pagination__item {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  color: #939598;
  font-size: 14px;
  transition: background-color 0.3s;
}
.c-pagination__item:hover:not(.disabled),
.c-pagination__item a:hover {
  color: var(--brand-color-dark);
}
.c-pagination__item.current {
  color: var(--brand-color-dark);
  cursor: default;
  padding: 0 15px;
}
.c-pagination__item.previous.disabled,
.c-pagination__item.next.disabled {
  padding: 0 15px;
}
.c-pagination .show-for-sr {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.c-pagination--container {
  margin-top: 15px;
}
.c-pagination--desktop {
  background-color: #ffffff;
  display: flex;
  justify-content: space-between;
}
.c-pagination .previous a::before,
.c-pagination .previous.disabled::before {
  content: "\ab";
  display: inline-block;
}
.c-pagination .next a::after,
.c-pagination .next.disabled::after {
  content: "\bb";
  display: inline-block;
}
.c-page-size {
  display: flex;
}
.c-page-size__item {
  white-space: nowrap;
  padding-right: 15px;
}
.u-border-1 {
  border: 1px solid grey;
}
.c-clickable {
  cursor: pointer;
}
.step-timeline {
  list-style: none;
  display: flex;
  justify-content: space-between;
}
.step-timeline__item {
  flex-grow: 1;
  align-items: center;
  display: flex;
  flex-direction: column;
  position: relative;
  flex-basis: 16.66%;
}
.step-timeline__item::after {
  content: "";
  position: absolute;
  display: flex;
  background: #e6e7e8;
  width: 100%;
  height: 4px;
  top: 20px;
  left: 50%;
  z-index: 0;
}
.step-timeline__item:last-child:after,
.step-timeline__item.no-line::after {
  display: none;
}
.step-timeline__title {
  font-size: 14px;
  margin-top: 8px;
  padding-left: 5px;
  padding-right: 5px;
  text-align: center;
}
.step-timeline__title.current {
  font-weight: bold;
}
.step-timeline__button {
  background-color: #e6e7e8;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1607843137);
  border: 1px solid #e6e7e8;
  opacity: 1;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  overflow: hidden;
  font-size: 18px;
  color: #373d41;
  z-index: 1;
}
.step-timeline__button::before {
  content: attr(data-step);
}
.step-timeline__button:hover {
  color: var(--brand-color-dark);
}
.step-timeline__button.active {
  background-color: #43b02a;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1607843137);
  border: 1px solid #43b02a;
  color: #fafafa;
}
.step-timeline__button.active:not(.c-numeric)::before {
  content: url("./media/checkbox-checked.svg");
  position: relative;
  top: 5px;
}
.c-tab__group {
  display: flex;
  list-style: none;
  justify-content: stretch;
}
.c-tab__item {
  border: 1px solid var(--brand-color);
  background-color: #ffffff;
  box-shadow: 0px 4px 5px rgba(0, 0, 0, 0.0117647059);
  padding: 8.3px 22.75px;
  text-align: center;
  cursor: pointer;
  flex: 1 1 100%;
  color: var(--brand-color);
  text-align: center;
  font-weight: 600;
  font-size: 18px;
  line-height: 23px;
  white-space: nowrap;
  border-right: none;
  outline: none;
}
.c-tab__item.active {
  background-color: var(--brand-color);
  color: #ffffff;
}
.c-tab__item:hover:not(.active) {
  background-color: var(--brand-color-hover);
}
.c-tab__item:last-child {
  border-radius: 0px 5px 5px 0px;
  border-right: 1px solid var(--brand-color);
}
.c-tab__item:first-child {
  border-radius: 5px 0px 0px 5px;
}
@media (min-width: 992px) {
  .c-tab__item {
    padding: 12px 30px;
  }
}
.c-tab-details__group {
  display: flex;
  list-style: none;
  justify-content: flex-start;
}
.c-tab-details__item {
  border-bottom: 3px solid #bbbdc0;
  padding-bottom: 10px;
  padding: 8.3px 22.75px;
  cursor: pointer;
  flex: 1 1 100%;
  color: var(--brand-color);
  font-weight: 600;
  font-size: 18px;
  line-height: 23px;
  white-space: nowrap;
  border-right: none;
  outline: none;
  font-family: "Source Sans Pro";
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 32px;
  color: #bbbdc0;
}
.c-tab-details__item.active {
  border-bottom: 3px solid var(--brand-color-dark);
  color: var(--brand-color-dark);
}
@media (max-width: 576px) {
  .c-tab-details__item {
    font-size: 20px;
  }
}
.c-table {
  width: 100%;
  overflow: scroll;
  position: relative;
  overflow-x: scroll;
  background-color: #ffffff;
  border-collapse: collapse;
}
.c-table--compact {
  width: 640px;
}
.c-table__group-header {
  width: 20%;
  position: relative;
}
.c-table__column-title {
  cursor: pointer;
  position: relative;
  line-height: 34px;
}
.c-table .mdc-data-table__cell,
.c-table .mdc-data-table__header-cell {
  border-bottom-color: #f3f3f3;
}
.c-table th {
  text-align: left;
  color: #373d41;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0px;
  padding: 26px 20px 12px 20px;
  white-space: nowrap;
}
.c-table th:first-child {
  padding-left: 15px;
}
.c-table td:first-child {
  padding-left: 18px;
}
.c-table th:last-child,
.c-table td:last-child {
  padding-right: 15px;
}
@media (min-width: 768px) {
  .c-table th:first-child {
    padding-left: 32px;
  }
  .c-table td:first-child {
    padding-left: 32px;
  }
  .c-table th:last-child,
  .c-table td:last-child {
    padding-right: 32px;
  }
}
.c-table th {
  border-bottom: 1px solid #f3f3f3;
}
.c-table tr.c-table__row:hover {
  background-color: #f9f9f9;
}
.c-table td {
  text-align: left;
  font-size: 16px;
  line-height: 20px;
  padding: 18px 20px 18px 20px;
  min-width: 100px;
}
.c-table td .cell-mw-150 {
  min-width: 150px;
}
.c-table td button,
.c-table td input {
  margin-top: -7px;
  margin-bottom: -7px;
}
.c-table--expandable td:first-child,
.c-table--expandable th:first-child {
  padding-left: 50px;
}
.c-table--expandable td:last-child,
.c-table--expandable th:last-child {
  padding-right: 50px;
}
.c-table--expandable td {
  padding-top: 18px;
  padding-bottom: 18px;
}
.c-table td.action {
  text-align: right;
}
.c-table th.action {
  text-align: right;
}
.mat-mdc-table thead .c-table-selector-grid__header {
  background-color: var(--brand-color-light);
}
.o-list-table {
  border-collapse: collapse;
}
.o-list-table__title {
  font-size: 18px;
  line-height: 23px;
  text-align: left;
  padding: 5px 5px 0 0;
  vertical-align: middle;
}
.o-list-table__description {
  font-size: 18px;
  line-height: 23px;
  text-align: left;
  padding: 5px 5px 0 5px;
  vertical-align: middle;
}
.o-list-table__button {
  padding: 24px 5px 0 0;
}
.o-list-table--bold {
  overflow-wrap: anywhere;
}
.o-list-table--bold .o-list-table__title {
  font-weight: 600;
}
.o-list-table--thin {
  overflow-wrap: anywhere;
}
.o-list-table--thin .o-list-table__description {
  font-weight: 300;
}
.o-list-table--even .o-list-table__title {
  width: 200px;
}
.o-list-table--even .o-list-table__description {
  width: 200px;
}
.o-list-table--compact .o-list-table__title {
  font-size: 15px;
  line-height: 19px;
  padding-right: 25px;
  color: #0d0d0d;
  width: 20%;
}
.o-list-table--compact .o-list-table__description {
  font-size: 16px;
  line-height: 20px;
  color: #0d0d0d;
  overflow-wrap: anywhere;
}
.c-card .o-list-table {
  width: 100%;
}
.o-tech-table {
  width: 100%;
  border-collapse: collapse;
}
.o-tech-table__container {
  padding: 15px 15px;
  margin-bottom: 24px;
  overflow-x: auto;
}
.o-tech-table__item:not(:last-child) {
  border-bottom: 1px solid #f3f3f3;
}
.o-tech-table__header {
  padding: 15px 15px;
  font-size: 24px;
  line-height: 31px;
  font-weight: 600;
  color: #373d41;
  text-align: left;
  border-bottom: 2px solid #f3f3f3;
}
.o-tech-table__title {
  padding: 10px 15px 16px 0;
  font-size: 18px;
  line-height: 23px;
  font-weight: 600;
  text-align: left;
  width: 20%;
}
.o-tech-table__description {
  padding: 10px 0 15px;
  font-size: 16px;
  line-height: 20px;
  text-align: left;
}
.o-tech-table__full-width {
  padding: 10px 0 16px 0;
  font-size: 16px;
  line-height: 20px;
  text-align: left;
}
@media (min-width: 768px) {
  .o-tech-table__container {
    padding-left: 64px;
    padding-right: 64px;
  }
  .o-tech-table__header {
    padding: 24px 64px;
  }
}
@media (max-width: 768px) {
  .o-tech-table__status {
    display: none;
  }
}
@media (max-width: 576px) {
  .full-width--mobile {
    width: 100%;
  }
}
.mat-sort-header-content {
  -webkit-user-select: none;
  user-select: none;
}
.c-table--expandable .expandable-row {
  height: 0;
  overflow: hidden;
}
.c-table--expandable .expandable-row table tr {
  box-shadow: 0px -1px 0px #ececec;
}
.c-table--expandable .expandable-row > td {
  transition: height 0.3s ease, padding 0.3s ease;
}
.c-table--expandable .expandable-row:not(.expanded-row) > td {
  height: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.c-table--expandable .expandable-row .expandable-row-detail-cell {
  padding: 0;
}
.c-table--expandable .expandable-row .expandable-row-detail-cell table {
  background-color: #f9f9f9;
}
@media (max-width: 768px) {
  .mat-mdc-dialog-container {
    border-radius: 0 !important;
  }
}
.mat-mdc-dialog-container .mdc-dialog__surface {
  padding: 24px;
}
.mat-mdc-dialog-container {
  top: 0;
  min-height: 400px;
  max-height: 100vh !important;
}
.modal-window {
  display: flex;
  justify-content: space-between;
  top: 0;
  right: 0;
  width: 500px !important;
  z-index: 100;
}
.modal-window__container {
  padding: 20px 15px 32px 15px;
}
.modal-window__header {
  position: relative;
  margin-bottom: 32px;
}
.modal-window__title {
  text-align: left;
  color: #0d0d0d;
  font-size: 24px;
  line-height: 31px;
  font-weight: 600;
}
.modal-window__label {
  font-size: 18px;
  line-height: 24px;
  display: block;
  margin-bottom: 8px;
}
.close {
  position: relative;
  display: flex;
  justify-content: flex-end;
}
.user-menu {
  align-items: flex-start !important;
  max-width: 90vw !important;
  width: 375px !important;
}
@media (max-width: 768px) {
  .user-menu {
    max-width: 100vw !important;
    width: 100vw !important;
    margin-top: 0 !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
    border-radius: 0 !important;
  }
}
.c-select {
  font-family: "Source Sans Pro", sans-serif;
  color: #373d41;
  display: inline-block;
  position: relative;
  background-color: #ffffff;
  margin: 0;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  outline: none;
  min-width: 90px;
  border-radius: 2px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  background-image: url("./media/chevron--down.svg");
  background-repeat: no-repeat;
  background-position: center right;
  background-size: 30px 20px;
}
.c-select .mat-mdc-select-value {
  padding: 3px 8px;
}
.c-select:active,
.c-select:focus {
  border: 1px solid var(--brand-color);
}
.c-select--sm {
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1137254902);
}
.c-select--sm:active,
.c-select--sm:focus {
  border: none;
}
.c-select--md {
  border: 1px solid #bbbdc0;
  width: 100%;
  height: 32px;
  font-size: 16px;
  line-height: 20px;
  background-size: 25px 10px;
}
.c-select--md .mat-mdc-select-value {
  padding: 5px 25px 5px 6px;
}
.c-select--lg {
  border: 1px solid #bbbdc0;
  width: 100%;
  height: 40px;
  font-size: 18px;
  line-height: 23px;
  background-size: 45px 20px;
}
.c-select--lg .mat-mdc-select-value {
  padding: 8px 8px 8px 8px;
}
.c-select.is-invalid {
  border: 1px solid #c8102e !important;
}
.c-select.ng-touched.ng-invalid {
  border: 1px solid #c8102e !important;
}
.c-select .mat-mdc-select-arrow-wrapper {
  display: none;
}
.c-autocomplete {
  font-family: "Source Sans Pro", sans-serif;
  color: #373d41;
  display: inline-block;
  position: relative;
  background-color: #ffffff;
  margin: 0;
  border: 1px solid #bbbdc0;
  border-radius: 4px;
  cursor: pointer;
  outline: none;
  min-width: 90px;
  border-radius: 2px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
}
.c-autocomplete__spinner {
  position: absolute;
  top: 20px;
  right: 12px;
}
.c-autocomplete__input {
  padding-left: 10px;
  padding-right: 30px;
  text-overflow: ellipsis;
  width: calc(100% - 40px);
}
.mat-mdc-option:hover:not(.mdc-list-item--disabled),
.mat-mdc-option:focus:not(.mdc-list-item--disabled) {
  background: var(--brand-color-lighter);
}
.mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) {
  background: var(--brand-color-light);
  color: var(--brand-color);
  --mat-option-selected-state-label-text-color: var(--brand-color);
  --mat-minimal-pseudo-checkbox-selected-checkmark-color: var(--brand-color);
  --mat-option-selected-state-layer-color: var(--brand-color-light);
}
.mat-mdc-option.mat-mdc-option-active {
  background: var(--brand-color-light);
}
.mdc-menu-surface.mat-mdc-select-panel,
.mdc-menu-surface.mat-mdc-autocomplete-panel {
  box-shadow:
    0 5px 5px -3px rgba(0, 0, 0, 0.2),
    0 8px 10px 1px rgba(0, 0, 0, 0.1411764706),
    0 3px 14px 2px rgba(0, 0, 0, 0.1215686275);
  background-color: #ffffff;
  color: #0d0d0d;
  position: absolute !important;
  left: -2px;
  top: 3px;
}
.mdc-menu-surface.mat-mdc-autocomplete-panel {
  left: 0;
  top: 0;
  border: none;
}
.mat-mdc-select-min-line {
  padding-right: 24px;
}
.mat-mdc-select-disabled {
  opacity: 0.6;
}
.mat-mdc-paginator {
  color: rgba(0, 0, 0, 0.6);
  -webkit-user-select: none;
  user-select: none;
}
.mat-mdc-paginator button:disabled {
  color: rgba(0, 0, 0, 0.2);
}
.mat-mdc-snack-bar-container .mdc-snackbar__surface {
  --mdc-snackbar-container-color: white;
}
.ng-select.is-invalid .ng-select-container {
  border: 1px solid #c8102e !important;
}
.ng-select.ng-select-opened > .ng-select-container {
  background: #fff;
  border-color: #b3b3b3 #ccc #d9d9d9;
}
.ng-select.ng-select-opened > .ng-select-container:hover {
  box-shadow: none;
}
.ng-select.ng-select-opened > .ng-select-container .ng-arrow {
  top: -2px;
  border-color: transparent transparent #999;
  border-width: 0 5px 5px;
}
.ng-select.is-invalid.ng-select-opened > .ng-select-container .ng-arrow {
  top: -2px;
  border-color: transparent transparent #c8102e;
  border-width: 0 5px 5px;
}
.ng-select.header.ng-select-opened > .ng-select-container .ng-arrow,
.ng-select.dept.ng-select-opened > .ng-select-container .ng-arrow,
.ng-select.language.ng-select-opened > .ng-select-container .ng-arrow {
  top: -2px;
  border-color: transparent transparent var(--brand-color-dark);
  border-width: 0 5px 5px;
}
.ng-select.is-invalid.ng-select-opened > .ng-select-container .ng-arrow:hover {
  border-color: transparent transparent #333;
}
.ng-select.ng-select-opened > .ng-select-container .ng-arrow:hover {
  border-color: transparent transparent #c8102e;
}
.ng-select.ng-select-opened.ng-select-bottom > .ng-select-container {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.ng-select.ng-select-opened.ng-select-top > .ng-select-container {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.ng-select.ng-select-focused:not(.ng-select-opened) > .ng-select-container {
  outline: none;
  border: 1px solid var(--brand-color);
}
.ng-select.header.ng-select-focused:not(.ng-select-opened) > .ng-select-container,
.ng-select.dept.ng-select-focused:not(.ng-select-opened) > .ng-select-container,
.ng-select.language.ng-select-focused:not(.ng-select-opened) > .ng-select-container {
  outline: none;
  border: 1px solid transparent;
}
.ng-select.ng-select-disabled > .ng-select-container {
  background-color: #f9f9f9;
}
.ng-select .ng-has-value .ng-placeholder {
  display: none;
}
.ng-select .ng-select-container {
  color: #333;
  background-color: #fff;
  border-radius: 4px;
  border: 1px solid #ccc;
  min-height: 36px;
  align-items: center;
}
.ng-select.header .ng-select-container {
  color: #333;
  background-color: #fff;
  border-radius: 4px;
  border: 1px solid transparent;
  min-height: 36px;
  align-items: center;
  min-width: 150px;
  cursor: pointer;
  --company-vw: 30vw;
  max-width: clamp(200px, var(--company-vw), 800px);
}
@media (min-width: 1200px) {
  .ng-select.header .ng-select-container {
    --company-vw: 35vw;
  }
}
@media (min-width: 1500px) {
  .ng-select.header .ng-select-container {
    --company-vw: 40vw;
  }
}
.ng-select.dept .ng-select-container {
  color: #333;
  background-color: #fff;
  border-radius: 4px;
  border: 1px solid transparent;
  min-height: 36px;
  align-items: center;
  cursor: pointer;
  min-width: 150px;
  --dept-vw: 20vw;
  max-width: clamp(180px, var(--dept-vw), 400px);
}
@media (min-width: 1200px) {
  .ng-select.dept .ng-select-container {
    --dept-vw: 25vw;
  }
}
@media (min-width: 1500px) {
  .ng-select.dept .ng-select-container {
    --dept-vw: 30vw;
  }
}
.ng-select.language .ng-select-container {
  color: #333;
  background-color: #fff;
  border-radius: 4px;
  border: 1px solid transparent;
  min-height: 36px;
  align-items: center;
  cursor: pointer;
  min-width: 100px;
}
.ng-select .ng-select-container:hover {
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}
.ng-select.header .ng-select-container:hover,
.ng-select.dept .ng-select-container:hover,
.ng-select.language .ng-select-container:hover {
  box-shadow: none;
}
.ng-select.header .ng-select-container:hover,
.ng-select.dept .ng-select-container:hover,
.ng-select.language .ng-select-container:hover {
  color: #333;
  background-color: #fff;
  border-radius: 4px;
  border: 1px solid #ccc;
  min-height: 36px;
  align-items: center;
}
.ng-select .ng-select-container .ng-value-container {
  align-items: center;
  padding-left: 10px;
}
.ng-select.header .ng-select-container .ng-value-container,
.ng-select.dept .ng-select-container .ng-value-container,
.ng-select.language .ng-select-container .ng-value-container {
  align-items: center;
  padding-left: 10px;
  color: var(--brand-color-dark);
}
[dir=rtl] .ng-select .ng-select-container .ng-value-container {
  padding-right: 10px;
  padding-left: 0;
}
.ng-select .ng-select-container .ng-value-container .ng-placeholder {
  color: #999;
}
.ng-select.header .ng-select-container .ng-value-container .ng-placeholder,
.ng-select.dept .ng-select-container .ng-value-container .ng-placeholder,
.ng-select.language .ng-select-container .ng-value-container .ng-placeholder {
  font-size: 16px;
  color: var(--brand-color-dark);
  opacity: 0.42;
}
.ng-select.ng-select-single .ng-select-container {
  height: 40px;
}
.ng-select.header.ng-select-single .ng-select-container,
.ng-select.dept.ng-select-single .ng-select-container,
.ng-select.language.ng-select-single .ng-select-container {
  height: 36px;
}
.ng-select.ng-select-single .ng-select-container .ng-value-container .ng-input {
  top: 5px;
  left: 0;
  padding-left: 10px;
  padding-right: 50px;
}
[dir=rtl] .ng-select.ng-select-single .ng-select-container .ng-value-container .ng-input {
  padding-right: 10px;
  padding-left: 50px;
}
.ng-select.header .ng-input input,
.ng-select.dept .ng-input input,
.ng-select.language .ng-input input {
  font-size: 16px;
  color: var(--brand-color-dark);
  cursor: pointer !important;
}
.ng-input input {
  font-size: 16px;
}
.ng-select.department .ng-input input {
  font-size: 14px;
}
.ng-select.ng-select-multiple.ng-select-disabled > .ng-select-container .ng-value-container .ng-value {
  background-color: #f9f9f9;
  border: 1px solid #e6e6e6;
}
.ng-select.ng-select-multiple.ng-select-disabled > .ng-select-container .ng-value-container .ng-value .ng-value-label {
  padding: 0 5px;
}
.ng-select.ng-select-multiple .ng-select-container .ng-value-container {
  padding-top: 5px;
  padding-left: 7px;
}
[dir=rtl] .ng-select.ng-select-multiple .ng-select-container .ng-value-container {
  padding-right: 7px;
  padding-left: 0;
}
.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value {
  font-size: 0.9em;
  margin-bottom: 5px;
  background-color: var(--brand-color-hover);
  border-radius: 2px;
  margin-right: 5px;
}
[dir=rtl] .ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value {
  margin-right: 0;
  margin-left: 5px;
}
.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value.ng-value-disabled {
  background-color: #f9f9f9;
}
.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value.ng-value-disabled .ng-value-label {
  padding-left: 5px;
}
[dir=rtl] .ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value.ng-value-disabled .ng-value-label {
  padding-left: 0;
  padding-right: 5px;
}
.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value .ng-value-label {
  display: inline-block;
  padding: 1px 5px;
}
.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value .ng-value-icon {
  display: inline-block;
  padding: 1px 5px;
}
.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value .ng-value-icon:hover {
  background-color: #d1e8ff;
}
.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value .ng-value-icon.left {
  border-right: 1px solid #b8dbff;
}
[dir=rtl] .ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value .ng-value-icon.left {
  border-left: 1px solid #b8dbff;
  border-right: none;
}
.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value .ng-value-icon.right {
  border-left: 1px solid #b8dbff;
}
[dir=rtl] .ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value .ng-value-icon.right {
  border-left: 0;
  border-right: 1px solid #b8dbff;
}
.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-input {
  padding: 0 0 3px 3px;
}
[dir=rtl] .ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-input {
  padding: 0 3px 3px 0;
}
.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-placeholder {
  top: 5px;
  padding-bottom: 5px;
  padding-left: 3px;
}
[dir=rtl] .ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-placeholder {
  padding-right: 3px;
  padding-left: 0;
}
.ng-select .ng-clear-wrapper {
  color: #999;
}
.ng-select .ng-clear-wrapper:hover .ng-clear {
  color: #d0021b;
}
.ng-select .ng-spinner-zone {
  padding: 5px 5px 0 0;
}
[dir=rtl] .ng-select .ng-spinner-zone {
  padding: 5px 0 0 5px;
}
.ng-select .ng-arrow-wrapper {
  display: none;
}
.ng-select .ng-value-label {
  text-overflow: ellipsis;
  overflow: hidden;
}
.ng-select .mat-icon {
  flex-shrink: 0;
  transition: transform 0.2s ease-in-out;
}
.ng-select.ng-select-opened .mat-icon {
  transform: rotateX(180deg);
}
.ng-select.header .ng-dropdown-panel {
  min-width: 400px;
}
.ng-select.dept .ng-dropdown-panel {
  min-width: 250px;
}
.ng-select.language .ng-dropdown-panel {
  min-width: 100px;
}
.ng-dropdown-panel {
  background-color: #fff;
  border: 1px solid #ccc;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  left: 0;
  min-width: 300px;
}
.ng-dropdown-panel.ng-select-bottom {
  top: 100%;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  border-top-color: #e6e6e6;
  margin-top: -1px;
}
.ng-dropdown-panel.ng-select-bottom .ng-dropdown-panel-items .ng-option:last-child {
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.ng-dropdown-panel.ng-select-top {
  bottom: 100%;
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  border-bottom-color: #e6e6e6;
  margin-bottom: -1px;
}
.ng-dropdown-panel.ng-select-top .ng-dropdown-panel-items .ng-option:first-child {
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
}
.ng-dropdown-panel .ng-dropdown-header {
  border-bottom: 1px solid #ccc;
  padding: 5px 7px;
}
.ng-dropdown-panel .ng-dropdown-footer {
  border-top: 1px solid #ccc;
  padding: 5px 7px;
}
.ng-dropdown-panel .ng-dropdown-panel-items .ng-optgroup {
  -webkit-user-select: none;
  user-select: none;
  padding: 8px 10px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.54);
  cursor: pointer;
}
.ng-dropdown-panel .ng-dropdown-panel-items .ng-optgroup.ng-option-disabled {
  cursor: default;
}
.ng-dropdown-panel .ng-dropdown-panel-items .ng-optgroup.ng-option-marked {
  background-color: var(--brand-color-hover);
}
.ng-dropdown-panel .ng-dropdown-panel-items .ng-optgroup.ng-option-selected,
.ng-dropdown-panel .ng-dropdown-panel-items .ng-optgroup.ng-option-selected.ng-option-marked {
  background-color: var(--brand-color-hover);
  font-weight: 600;
}
.ng-dropdown-panel .ng-dropdown-panel-items .ng-option {
  background-color: #fff;
  color: rgba(0, 0, 0, 0.87);
  padding: 8px 10px;
}
.ng-dropdown-panel .ng-dropdown-panel-items .ng-option.ng-option-selected,
.ng-dropdown-panel .ng-dropdown-panel-items .ng-option.ng-option-selected.ng-option-marked {
  color: #333;
  background-color: var(--brand-color-hover);
}
.ng-dropdown-panel .ng-dropdown-panel-items .ng-option.ng-option-selected .ng-option-label,
.ng-dropdown-panel .ng-dropdown-panel-items .ng-option.ng-option-selected.ng-option-marked .ng-option-label {
  font-weight: 600;
}
.ng-dropdown-panel .ng-dropdown-panel-items .ng-option.ng-option-marked {
  background-color: var(--brand-color-hover);
  color: #333;
}
.ng-dropdown-panel .ng-dropdown-panel-items .ng-option.ng-option-disabled {
  color: #ccc;
}
.ng-dropdown-panel .ng-dropdown-panel-items .ng-option.ng-option-child {
  padding-left: 22px;
}
[dir=rtl] .ng-dropdown-panel .ng-dropdown-panel-items .ng-option.ng-option-child {
  padding-right: 22px;
  padding-left: 0;
}
.ng-dropdown-panel .ng-dropdown-panel-items .ng-option .ng-tag-label {
  font-size: 80%;
  font-weight: 400;
  padding-right: 5px;
}
[dir=rtl] .ng-dropdown-panel .ng-dropdown-panel-items .ng-option .ng-tag-label {
  padding-left: 5px;
  padding-right: 0;
}
[dir=rtl] .ng-dropdown-panel {
  direction: rtl;
  text-align: right;
}
@font-face {
  font-family: "Source Sans Pro";
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(/assets/fonts/6xKydSBYKcSV-LCoeQqfX1RYOo3i94_wmhduz8A.woff2) format("woff2");
  unicode-range:
    U+0460-052F,
    U+1C80-1C88,
    U+20B4,
    U+2DE0-2DFF,
    U+A640-A69F,
    U+FE2E-FE2F;
}
@font-face {
  font-family: "Source Sans Pro";
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(/assets/fonts/6xKydSBYKcSV-LCoeQqfX1RYOo3i94_wkxduz8A.woff2) format("woff2");
  unicode-range:
    U+0301,
    U+0400-045F,
    U+0490-0491,
    U+04B0-04B1,
    U+2116;
}
@font-face {
  font-family: "Source Sans Pro";
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(/assets/fonts/6xKydSBYKcSV-LCoeQqfX1RYOo3i94_wmxduz8A.woff2) format("woff2");
  unicode-range: U+1F00-1FFF;
}
@font-face {
  font-family: "Source Sans Pro";
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(/assets/fonts/6xKydSBYKcSV-LCoeQqfX1RYOo3i94_wlBduz8A.woff2) format("woff2");
  unicode-range: U+0370-03FF;
}
@font-face {
  font-family: "Source Sans Pro";
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(/assets/fonts/6xKydSBYKcSV-LCoeQqfX1RYOo3i94_wmBduz8A.woff2) format("woff2");
  unicode-range:
    U+0102-0103,
    U+0110-0111,
    U+0128-0129,
    U+0168-0169,
    U+01A0-01A1,
    U+01AF-01B0,
    U+0300-0301,
    U+0303-0304,
    U+0308-0309,
    U+0323,
    U+0329,
    U+1EA0-1EF9,
    U+20AB;
}
@font-face {
  font-family: "Source Sans Pro";
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(/assets/fonts/6xKydSBYKcSV-LCoeQqfX1RYOo3i94_wmRduz8A.woff2) format("woff2");
  unicode-range:
    U+0100-02AF,
    U+0304,
    U+0308,
    U+0329,
    U+1E00-1E9F,
    U+1EF2-1EFF,
    U+2020,
    U+20A0-20AB,
    U+20AD-20CF,
    U+2113,
    U+2C60-2C7F,
    U+A720-A7FF;
}
@font-face {
  font-family: "Source Sans Pro";
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(/assets/fonts/6xKydSBYKcSV-LCoeQqfX1RYOo3i94_wlxdu.woff2) format("woff2");
  unicode-range:
    U+0000-00FF,
    U+0131,
    U+0152-0153,
    U+02BB-02BC,
    U+02C6,
    U+02DA,
    U+02DC,
    U+0304,
    U+0308,
    U+0329,
    U+2000-206F,
    U+2074,
    U+20AC,
    U+2122,
    U+2191,
    U+2193,
    U+2212,
    U+2215,
    U+FEFF,
    U+FFFD;
}
@font-face {
  font-family: "Source Sans Pro";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(/assets/fonts/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwmhduz8A.woff2) format("woff2");
  unicode-range:
    U+0460-052F,
    U+1C80-1C88,
    U+20B4,
    U+2DE0-2DFF,
    U+A640-A69F,
    U+FE2E-FE2F;
}
@font-face {
  font-family: "Source Sans Pro";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(/assets/fonts/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwkxduz8A.woff2) format("woff2");
  unicode-range:
    U+0301,
    U+0400-045F,
    U+0490-0491,
    U+04B0-04B1,
    U+2116;
}
@font-face {
  font-family: "Source Sans Pro";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(/assets/fonts/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwmxduz8A.woff2) format("woff2");
  unicode-range: U+1F00-1FFF;
}
@font-face {
  font-family: "Source Sans Pro";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(/assets/fonts/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwlBduz8A.woff2) format("woff2");
  unicode-range: U+0370-03FF;
}
@font-face {
  font-family: "Source Sans Pro";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(/assets/fonts/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwmBduz8A.woff2) format("woff2");
  unicode-range:
    U+0102-0103,
    U+0110-0111,
    U+0128-0129,
    U+0168-0169,
    U+01A0-01A1,
    U+01AF-01B0,
    U+0300-0301,
    U+0303-0304,
    U+0308-0309,
    U+0323,
    U+0329,
    U+1EA0-1EF9,
    U+20AB;
}
@font-face {
  font-family: "Source Sans Pro";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(/assets/fonts/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwmRduz8A.woff2) format("woff2");
  unicode-range:
    U+0100-02AF,
    U+0304,
    U+0308,
    U+0329,
    U+1E00-1E9F,
    U+1EF2-1EFF,
    U+2020,
    U+20A0-20AB,
    U+20AD-20CF,
    U+2113,
    U+2C60-2C7F,
    U+A720-A7FF;
}
@font-face {
  font-family: "Source Sans Pro";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(/assets/fonts/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwlxdu.woff2) format("woff2");
  unicode-range:
    U+0000-00FF,
    U+0131,
    U+0152-0153,
    U+02BB-02BC,
    U+02C6,
    U+02DA,
    U+02DC,
    U+0304,
    U+0308,
    U+0329,
    U+2000-206F,
    U+2074,
    U+20AC,
    U+2122,
    U+2191,
    U+2193,
    U+2212,
    U+2215,
    U+FEFF,
    U+FFFD;
}
@font-face {
  font-family: "Source Sans Pro";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/assets/fonts/6xK3dSBYKcSV-LCoeQqfX1RYOo3qNa7lqDY.woff2) format("woff2");
  unicode-range:
    U+0460-052F,
    U+1C80-1C88,
    U+20B4,
    U+2DE0-2DFF,
    U+A640-A69F,
    U+FE2E-FE2F;
}
@font-face {
  font-family: "Source Sans Pro";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/assets/fonts/6xK3dSBYKcSV-LCoeQqfX1RYOo3qPK7lqDY.woff2) format("woff2");
  unicode-range:
    U+0301,
    U+0400-045F,
    U+0490-0491,
    U+04B0-04B1,
    U+2116;
}
@font-face {
  font-family: "Source Sans Pro";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/assets/fonts/6xK3dSBYKcSV-LCoeQqfX1RYOo3qNK7lqDY.woff2) format("woff2");
  unicode-range: U+1F00-1FFF;
}
@font-face {
  font-family: "Source Sans Pro";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/assets/fonts/6xK3dSBYKcSV-LCoeQqfX1RYOo3qO67lqDY.woff2) format("woff2");
  unicode-range: U+0370-03FF;
}
@font-face {
  font-family: "Source Sans Pro";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/assets/fonts/6xK3dSBYKcSV-LCoeQqfX1RYOo3qN67lqDY.woff2) format("woff2");
  unicode-range:
    U+0102-0103,
    U+0110-0111,
    U+0128-0129,
    U+0168-0169,
    U+01A0-01A1,
    U+01AF-01B0,
    U+0300-0301,
    U+0303-0304,
    U+0308-0309,
    U+0323,
    U+0329,
    U+1EA0-1EF9,
    U+20AB;
}
@font-face {
  font-family: "Source Sans Pro";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/assets/fonts/6xK3dSBYKcSV-LCoeQqfX1RYOo3qNq7lqDY.woff2) format("woff2");
  unicode-range:
    U+0100-02AF,
    U+0304,
    U+0308,
    U+0329,
    U+1E00-1E9F,
    U+1EF2-1EFF,
    U+2020,
    U+20A0-20AB,
    U+20AD-20CF,
    U+2113,
    U+2C60-2C7F,
    U+A720-A7FF;
}
@font-face {
  font-family: "Source Sans Pro";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/assets/fonts/6xK3dSBYKcSV-LCoeQqfX1RYOo3qOK7l.woff2) format("woff2");
  unicode-range:
    U+0000-00FF,
    U+0131,
    U+0152-0153,
    U+02BB-02BC,
    U+02C6,
    U+02DA,
    U+02DC,
    U+0304,
    U+0308,
    U+0329,
    U+2000-206F,
    U+2074,
    U+20AC,
    U+2122,
    U+2191,
    U+2193,
    U+2212,
    U+2215,
    U+FEFF,
    U+FFFD;
}
@font-face {
  font-family: "Source Sans Pro";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(/assets/fonts/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwmhduz8A.woff2) format("woff2");
  unicode-range:
    U+0460-052F,
    U+1C80-1C88,
    U+20B4,
    U+2DE0-2DFF,
    U+A640-A69F,
    U+FE2E-FE2F;
}
@font-face {
  font-family: "Source Sans Pro";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(/assets/fonts/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwkxduz8A.woff2) format("woff2");
  unicode-range:
    U+0301,
    U+0400-045F,
    U+0490-0491,
    U+04B0-04B1,
    U+2116;
}
@font-face {
  font-family: "Source Sans Pro";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(/assets/fonts/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwmxduz8A.woff2) format("woff2");
  unicode-range: U+1F00-1FFF;
}
@font-face {
  font-family: "Source Sans Pro";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(/assets/fonts/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwlBduz8A.woff2) format("woff2");
  unicode-range: U+0370-03FF;
}
@font-face {
  font-family: "Source Sans Pro";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(/assets/fonts/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwmBduz8A.woff2) format("woff2");
  unicode-range:
    U+0102-0103,
    U+0110-0111,
    U+0128-0129,
    U+0168-0169,
    U+01A0-01A1,
    U+01AF-01B0,
    U+0300-0301,
    U+0303-0304,
    U+0308-0309,
    U+0323,
    U+0329,
    U+1EA0-1EF9,
    U+20AB;
}
@font-face {
  font-family: "Source Sans Pro";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(/assets/fonts/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwmRduz8A.woff2) format("woff2");
  unicode-range:
    U+0100-02AF,
    U+0304,
    U+0308,
    U+0329,
    U+1E00-1E9F,
    U+1EF2-1EFF,
    U+2020,
    U+20A0-20AB,
    U+20AD-20CF,
    U+2113,
    U+2C60-2C7F,
    U+A720-A7FF;
}
@font-face {
  font-family: "Source Sans Pro";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(/assets/fonts/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwlxdu.woff2) format("woff2");
  unicode-range:
    U+0000-00FF,
    U+0131,
    U+0152-0153,
    U+02BB-02BC,
    U+02C6,
    U+02DA,
    U+02DC,
    U+0304,
    U+0308,
    U+0329,
    U+2000-206F,
    U+2074,
    U+20AC,
    U+2122,
    U+2191,
    U+2193,
    U+2212,
    U+2215,
    U+FEFF,
    U+FFFD;
}
@font-face {
  font-family: "Source Sans Pro";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(/assets/fonts/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwmhduz8A.woff2) format("woff2");
  unicode-range:
    U+0460-052F,
    U+1C80-1C88,
    U+20B4,
    U+2DE0-2DFF,
    U+A640-A69F,
    U+FE2E-FE2F;
}
@font-face {
  font-family: "Source Sans Pro";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(/assets/fonts/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwkxduz8A.woff2) format("woff2");
  unicode-range:
    U+0301,
    U+0400-045F,
    U+0490-0491,
    U+04B0-04B1,
    U+2116;
}
@font-face {
  font-family: "Source Sans Pro";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(/assets/fonts/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwmxduz8A.woff2) format("woff2");
  unicode-range: U+1F00-1FFF;
}
@font-face {
  font-family: "Source Sans Pro";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(/assets/fonts/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwlBduz8A.woff2) format("woff2");
  unicode-range: U+0370-03FF;
}
@font-face {
  font-family: "Source Sans Pro";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(/assets/fonts/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwmBduz8A.woff2) format("woff2");
  unicode-range:
    U+0102-0103,
    U+0110-0111,
    U+0128-0129,
    U+0168-0169,
    U+01A0-01A1,
    U+01AF-01B0,
    U+0300-0301,
    U+0303-0304,
    U+0308-0309,
    U+0323,
    U+0329,
    U+1EA0-1EF9,
    U+20AB;
}
@font-face {
  font-family: "Source Sans Pro";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(/assets/fonts/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwmRduz8A.woff2) format("woff2");
  unicode-range:
    U+0100-02AF,
    U+0304,
    U+0308,
    U+0329,
    U+1E00-1E9F,
    U+1EF2-1EFF,
    U+2020,
    U+20A0-20AB,
    U+20AD-20CF,
    U+2113,
    U+2C60-2C7F,
    U+A720-A7FF;
}
@font-face {
  font-family: "Source Sans Pro";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(/assets/fonts/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwlxdu.woff2) format("woff2");
  unicode-range:
    U+0000-00FF,
    U+0131,
    U+0152-0153,
    U+02BB-02BC,
    U+02C6,
    U+02DA,
    U+02DC,
    U+0304,
    U+0308,
    U+0329,
    U+2000-206F,
    U+2074,
    U+20AC,
    U+2122,
    U+2191,
    U+2193,
    U+2212,
    U+2215,
    U+FEFF,
    U+FFFD;
}
@font-face {
  font-family: "Source Sans Pro";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(/assets/fonts/6xKydSBYKcSV-LCoeQqfX1RYOo3iu4nwmhduz8A.woff2) format("woff2");
  unicode-range:
    U+0460-052F,
    U+1C80-1C88,
    U+20B4,
    U+2DE0-2DFF,
    U+A640-A69F,
    U+FE2E-FE2F;
}
@font-face {
  font-family: "Source Sans Pro";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(/assets/fonts/6xKydSBYKcSV-LCoeQqfX1RYOo3iu4nwkxduz8A.woff2) format("woff2");
  unicode-range:
    U+0301,
    U+0400-045F,
    U+0490-0491,
    U+04B0-04B1,
    U+2116;
}
@font-face {
  font-family: "Source Sans Pro";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(/assets/fonts/6xKydSBYKcSV-LCoeQqfX1RYOo3iu4nwmxduz8A.woff2) format("woff2");
  unicode-range: U+1F00-1FFF;
}
@font-face {
  font-family: "Source Sans Pro";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(/assets/fonts/6xKydSBYKcSV-LCoeQqfX1RYOo3iu4nwlBduz8A.woff2) format("woff2");
  unicode-range: U+0370-03FF;
}
@font-face {
  font-family: "Source Sans Pro";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(/assets/fonts/6xKydSBYKcSV-LCoeQqfX1RYOo3iu4nwmBduz8A.woff2) format("woff2");
  unicode-range:
    U+0102-0103,
    U+0110-0111,
    U+0128-0129,
    U+0168-0169,
    U+01A0-01A1,
    U+01AF-01B0,
    U+0300-0301,
    U+0303-0304,
    U+0308-0309,
    U+0323,
    U+0329,
    U+1EA0-1EF9,
    U+20AB;
}
@font-face {
  font-family: "Source Sans Pro";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(/assets/fonts/6xKydSBYKcSV-LCoeQqfX1RYOo3iu4nwmRduz8A.woff2) format("woff2");
  unicode-range:
    U+0100-02AF,
    U+0304,
    U+0308,
    U+0329,
    U+1E00-1E9F,
    U+1EF2-1EFF,
    U+2020,
    U+20A0-20AB,
    U+20AD-20CF,
    U+2113,
    U+2C60-2C7F,
    U+A720-A7FF;
}
@font-face {
  font-family: "Source Sans Pro";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(/assets/fonts/6xKydSBYKcSV-LCoeQqfX1RYOo3iu4nwlxdu.woff2) format("woff2");
  unicode-range:
    U+0000-00FF,
    U+0131,
    U+0152-0153,
    U+02BB-02BC,
    U+02C6,
    U+02DA,
    U+02DC,
    U+0304,
    U+0308,
    U+0329,
    U+2000-206F,
    U+2074,
    U+20AC,
    U+2122,
    U+2191,
    U+2193,
    U+2212,
    U+2215,
    U+FEFF,
    U+FFFD;
}
html {
  --mat-badge-text-font: "Source Sans Pro", sans-serif;
  --mat-badge-line-height: 22px;
  --mat-badge-text-size: 12px;
  --mat-badge-text-weight: 600;
  --mat-badge-small-size-text-size: 9px;
  --mat-badge-small-size-line-height: 16px;
  --mat-badge-large-size-text-size: 24px;
  --mat-badge-large-size-line-height: 28px;
}
.mat-h1,
.mat-headline-5,
.mat-typography .mat-h1,
.mat-typography .mat-headline-5,
.mat-typography h1 {
  font: 400 24px / 32px "Source Sans Pro", sans-serif;
  letter-spacing: normal;
  margin: 0 0 16px;
}
.mat-h2,
.mat-headline-6,
.mat-typography .mat-h2,
.mat-typography .mat-headline-6,
.mat-typography h2 {
  font: 500 20px / 32px "Source Sans Pro", sans-serif;
  letter-spacing: 0.0125em;
  margin: 0 0 16px;
}
.mat-h3,
.mat-subtitle-1,
.mat-typography .mat-h3,
.mat-typography .mat-subtitle-1,
.mat-typography h3 {
  font: 400 16px / 28px "Source Sans Pro", sans-serif;
  letter-spacing: 0.009375em;
  margin: 0 0 16px;
}
.mat-h4,
.mat-body-1,
.mat-typography .mat-h4,
.mat-typography .mat-body-1,
.mat-typography h4 {
  font: 400 16px / 24px "Source Sans Pro", sans-serif;
  letter-spacing: 0.03125em;
  margin: 0 0 16px;
}
.mat-h5,
.mat-typography .mat-h5,
.mat-typography h5 {
  font: 400 calc(14px * 0.83) / 20px "Source Sans Pro", sans-serif;
  margin: 0 0 12px;
}
.mat-h6,
.mat-typography .mat-h6,
.mat-typography h6 {
  font: 400 calc(14px * 0.67) / 20px "Source Sans Pro", sans-serif;
  margin: 0 0 12px;
}
.mat-body-strong,
.mat-subtitle-2,
.mat-typography .mat-body-strong,
.mat-typography .mat-subtitle-2 {
  font: 500 14px / 22px "Source Sans Pro", sans-serif;
  letter-spacing: 0.0071428571em;
}
.mat-body,
.mat-body-2,
.mat-typography .mat-body,
.mat-typography .mat-body-2,
.mat-typography {
  font: 400 14px / 20px "Source Sans Pro", sans-serif;
  letter-spacing: 0.0178571429em;
}
.mat-body p,
.mat-body-2 p,
.mat-typography .mat-body p,
.mat-typography .mat-body-2 p,
.mat-typography p {
  margin: 0 0 12px;
}
.mat-small,
.mat-caption,
.mat-typography .mat-small,
.mat-typography .mat-caption {
  font: 400 12px / 20px "Source Sans Pro", sans-serif;
  letter-spacing: 0.0333333333em;
}
.mat-headline-1,
.mat-typography .mat-headline-1 {
  font: 300 96px / 96px "Source Sans Pro", sans-serif;
  letter-spacing: -0.015625em;
  margin: 0 0 56px;
}
.mat-headline-2,
.mat-typography .mat-headline-2 {
  font: 300 60px / 60px "Source Sans Pro", sans-serif;
  letter-spacing: -0.0083333333em;
  margin: 0 0 64px;
}
.mat-headline-3,
.mat-typography .mat-headline-3 {
  font: 400 48px / 50px "Source Sans Pro", sans-serif;
  letter-spacing: normal;
  margin: 0 0 64px;
}
.mat-headline-4,
.mat-typography .mat-headline-4 {
  font: 400 34px / 40px "Source Sans Pro", sans-serif;
  letter-spacing: 0.0073529412em;
  margin: 0 0 64px;
}
html {
  --mat-bottom-sheet-container-text-font: "Source Sans Pro", sans-serif;
  --mat-bottom-sheet-container-text-line-height: 20px;
  --mat-bottom-sheet-container-text-size: 14px;
  --mat-bottom-sheet-container-text-tracking: 0.0178571429em;
  --mat-bottom-sheet-container-text-weight: 400;
}
html {
  --mat-legacy-button-toggle-label-text-font: "Source Sans Pro", sans-serif;
  --mat-legacy-button-toggle-label-text-line-height: 24px;
  --mat-legacy-button-toggle-label-text-size: 16px;
  --mat-legacy-button-toggle-label-text-tracking: 0.03125em;
  --mat-legacy-button-toggle-label-text-weight: 400;
}
html {
  --mat-standard-button-toggle-label-text-font: "Source Sans Pro", sans-serif;
  --mat-standard-button-toggle-label-text-line-height: 24px;
  --mat-standard-button-toggle-label-text-size: 16px;
  --mat-standard-button-toggle-label-text-tracking: 0.03125em;
  --mat-standard-button-toggle-label-text-weight: 400;
}
html {
  --mat-datepicker-calendar-text-font: "Source Sans Pro", sans-serif;
  --mat-datepicker-calendar-text-size: 13px;
  --mat-datepicker-calendar-body-label-text-size: 14px;
  --mat-datepicker-calendar-body-label-text-weight: 500;
  --mat-datepicker-calendar-period-button-text-size: 14px;
  --mat-datepicker-calendar-period-button-text-weight: 500;
  --mat-datepicker-calendar-header-text-size: 11px;
  --mat-datepicker-calendar-header-text-weight: 400;
}
html {
  --mat-expansion-header-text-font: "Source Sans Pro", sans-serif;
  --mat-expansion-header-text-size: 14px;
  --mat-expansion-header-text-weight: 500;
  --mat-expansion-header-text-line-height: inherit;
  --mat-expansion-header-text-tracking: inherit;
  --mat-expansion-container-text-font: "Source Sans Pro", sans-serif;
  --mat-expansion-container-text-line-height: 20px;
  --mat-expansion-container-text-size: 14px;
  --mat-expansion-container-text-tracking: 0.0178571429em;
  --mat-expansion-container-text-weight: 400;
}
html {
  --mat-grid-list-tile-header-primary-text-size: 14px;
  --mat-grid-list-tile-header-secondary-text-size: 12px;
  --mat-grid-list-tile-footer-primary-text-size: 14px;
  --mat-grid-list-tile-footer-secondary-text-size: 12px;
}
html {
  --mat-stepper-container-text-font: "Source Sans Pro", sans-serif;
  --mat-stepper-header-label-text-font: "Source Sans Pro", sans-serif;
  --mat-stepper-header-label-text-size: 14px;
  --mat-stepper-header-label-text-weight: 400;
  --mat-stepper-header-error-state-label-text-size: 16px;
  --mat-stepper-header-selected-state-label-text-size: 16px;
  --mat-stepper-header-selected-state-label-text-weight: 400;
}
html {
  --mat-toolbar-title-text-font: "Source Sans Pro", sans-serif;
  --mat-toolbar-title-text-line-height: 32px;
  --mat-toolbar-title-text-size: 20px;
  --mat-toolbar-title-text-tracking: 0.0125em;
  --mat-toolbar-title-text-weight: 500;
}
html {
  --mat-tree-node-text-font: "Source Sans Pro", sans-serif;
  --mat-tree-node-text-size: 14px;
  --mat-tree-node-text-weight: 400;
}
html {
  --mat-option-label-text-font: "Source Sans Pro", sans-serif;
  --mat-option-label-text-line-height: 24px;
  --mat-option-label-text-size: 16px;
  --mat-option-label-text-tracking: 0.03125em;
  --mat-option-label-text-weight: 400;
}
html {
  --mat-optgroup-label-text-font: "Source Sans Pro", sans-serif;
  --mat-optgroup-label-text-line-height: 24px;
  --mat-optgroup-label-text-size: 16px;
  --mat-optgroup-label-text-tracking: 0.03125em;
  --mat-optgroup-label-text-weight: 400;
}
html {
  --mat-card-title-text-font: "Source Sans Pro", sans-serif;
  --mat-card-title-text-line-height: 32px;
  --mat-card-title-text-size: 20px;
  --mat-card-title-text-tracking: 0.0125em;
  --mat-card-title-text-weight: 500;
  --mat-card-subtitle-text-font: "Source Sans Pro", sans-serif;
  --mat-card-subtitle-text-line-height: 22px;
  --mat-card-subtitle-text-size: 14px;
  --mat-card-subtitle-text-tracking: 0.0071428571em;
  --mat-card-subtitle-text-weight: 500;
}
html {
  --mdc-plain-tooltip-supporting-text-font: "Source Sans Pro", sans-serif;
  --mdc-plain-tooltip-supporting-text-size: 12px;
  --mdc-plain-tooltip-supporting-text-weight: 400;
  --mdc-plain-tooltip-supporting-text-tracking: 0.0333333333em;
}
html {
  --mdc-filled-text-field-label-text-font: "Source Sans Pro", sans-serif;
  --mdc-filled-text-field-label-text-size: 16px;
  --mdc-filled-text-field-label-text-tracking: 0.03125em;
  --mdc-filled-text-field-label-text-weight: 400;
}
html {
  --mdc-outlined-text-field-label-text-font: "Source Sans Pro", sans-serif;
  --mdc-outlined-text-field-label-text-size: 16px;
  --mdc-outlined-text-field-label-text-tracking: 0.03125em;
  --mdc-outlined-text-field-label-text-weight: 400;
}
html {
  --mat-form-field-container-text-font: "Source Sans Pro", sans-serif;
  --mat-form-field-container-text-line-height: 24px;
  --mat-form-field-container-text-size: 16px;
  --mat-form-field-container-text-tracking: 0.03125em;
  --mat-form-field-container-text-weight: 400;
  --mat-form-field-outlined-label-text-populated-size: 16px;
  --mat-form-field-subscript-text-font: "Source Sans Pro", sans-serif;
  --mat-form-field-subscript-text-line-height: 20px;
  --mat-form-field-subscript-text-size: 12px;
  --mat-form-field-subscript-text-tracking: 0.0333333333em;
  --mat-form-field-subscript-text-weight: 400;
}
html {
  --mat-select-trigger-text-font: "Source Sans Pro", sans-serif;
  --mat-select-trigger-text-line-height: 24px;
  --mat-select-trigger-text-size: 16px;
  --mat-select-trigger-text-tracking: 0.03125em;
  --mat-select-trigger-text-weight: 400;
}
html {
  --mdc-dialog-subhead-font: "Source Sans Pro", sans-serif;
  --mdc-dialog-subhead-line-height: 32px;
  --mdc-dialog-subhead-size: 20px;
  --mdc-dialog-subhead-weight: 500;
  --mdc-dialog-subhead-tracking: 0.0125em;
  --mdc-dialog-supporting-text-font: "Source Sans Pro", sans-serif;
  --mdc-dialog-supporting-text-line-height: 24px;
  --mdc-dialog-supporting-text-size: 16px;
  --mdc-dialog-supporting-text-weight: 400;
  --mdc-dialog-supporting-text-tracking: 0.03125em;
}
.mat-mdc-standard-chip {
  --mdc-chip-label-text-font: "Source Sans Pro", sans-serif;
  --mdc-chip-label-text-line-height: 20px;
  --mdc-chip-label-text-size: 14px;
  --mdc-chip-label-text-tracking: 0.0178571429em;
  --mdc-chip-label-text-weight: 400;
}
html .mat-mdc-slide-toggle {
  --mat-switch-label-text-font: "Source Sans Pro", sans-serif;
  --mat-switch-label-text-line-height: 20px;
  --mat-switch-label-text-size: 14px;
  --mat-switch-label-text-tracking: 0.0178571429em;
  --mat-switch-label-text-weight: 400;
}
html {
  --mat-radio-label-text-font: "Source Sans Pro", sans-serif;
  --mat-radio-label-text-line-height: 20px;
  --mat-radio-label-text-size: 14px;
  --mat-radio-label-text-tracking: 0.0178571429em;
  --mat-radio-label-text-weight: 400;
}
html {
  --mdc-slider-label-label-text-font: "Source Sans Pro", sans-serif;
  --mdc-slider-label-label-text-size: 14px;
  --mdc-slider-label-label-text-line-height: 22px;
  --mdc-slider-label-label-text-tracking: 0.0071428571em;
  --mdc-slider-label-label-text-weight: 500;
}
html {
  --mat-menu-item-label-text-font: "Source Sans Pro", sans-serif;
  --mat-menu-item-label-text-size: 16px;
  --mat-menu-item-label-text-tracking: 0.03125em;
  --mat-menu-item-label-text-line-height: 24px;
  --mat-menu-item-label-text-weight: 400;
}
html {
  --mdc-list-list-item-label-text-font: "Source Sans Pro", sans-serif;
  --mdc-list-list-item-label-text-line-height: 24px;
  --mdc-list-list-item-label-text-size: 16px;
  --mdc-list-list-item-label-text-tracking: 0.03125em;
  --mdc-list-list-item-label-text-weight: 400;
  --mdc-list-list-item-supporting-text-font: "Source Sans Pro", sans-serif;
  --mdc-list-list-item-supporting-text-line-height: 20px;
  --mdc-list-list-item-supporting-text-size: 14px;
  --mdc-list-list-item-supporting-text-tracking: 0.0178571429em;
  --mdc-list-list-item-supporting-text-weight: 400;
  --mdc-list-list-item-trailing-supporting-text-font: "Source Sans Pro", sans-serif;
  --mdc-list-list-item-trailing-supporting-text-line-height: 20px;
  --mdc-list-list-item-trailing-supporting-text-size: 12px;
  --mdc-list-list-item-trailing-supporting-text-tracking: 0.0333333333em;
  --mdc-list-list-item-trailing-supporting-text-weight: 400;
}
.mdc-list-group__subheader {
  font: 400 16px / 28px "Source Sans Pro", sans-serif;
  letter-spacing: 0.009375em;
}
html {
  --mat-paginator-container-text-font: "Source Sans Pro", sans-serif;
  --mat-paginator-container-text-line-height: 20px;
  --mat-paginator-container-text-size: 12px;
  --mat-paginator-container-text-tracking: 0.0333333333em;
  --mat-paginator-container-text-weight: 400;
  --mat-paginator-select-trigger-text-size: 12px;
}
.mat-mdc-tab-header {
  --mat-tab-header-label-text-font: "Source Sans Pro", sans-serif;
  --mat-tab-header-label-text-size: 14px;
  --mat-tab-header-label-text-tracking: 0.0892857143em;
  --mat-tab-header-label-text-line-height: 36px;
  --mat-tab-header-label-text-weight: 500;
}
html {
  --mat-checkbox-label-text-font: "Source Sans Pro", sans-serif;
  --mat-checkbox-label-text-line-height: 20px;
  --mat-checkbox-label-text-size: 14px;
  --mat-checkbox-label-text-tracking: 0.0178571429em;
  --mat-checkbox-label-text-weight: 400;
}
html {
  --mdc-text-button-label-text-font: "Source Sans Pro", sans-serif;
  --mdc-text-button-label-text-size: 14px;
  --mdc-text-button-label-text-tracking: 0.0892857143em;
  --mdc-text-button-label-text-weight: 500;
  --mdc-text-button-label-text-transform: none;
}
html {
  --mdc-filled-button-label-text-font: "Source Sans Pro", sans-serif;
  --mdc-filled-button-label-text-size: 14px;
  --mdc-filled-button-label-text-tracking: 0.0892857143em;
  --mdc-filled-button-label-text-weight: 500;
  --mdc-filled-button-label-text-transform: none;
}
html {
  --mdc-protected-button-label-text-font: "Source Sans Pro", sans-serif;
  --mdc-protected-button-label-text-size: 14px;
  --mdc-protected-button-label-text-tracking: 0.0892857143em;
  --mdc-protected-button-label-text-weight: 500;
  --mdc-protected-button-label-text-transform: none;
}
html {
  --mdc-outlined-button-label-text-font: "Source Sans Pro", sans-serif;
  --mdc-outlined-button-label-text-size: 14px;
  --mdc-outlined-button-label-text-tracking: 0.0892857143em;
  --mdc-outlined-button-label-text-weight: 500;
  --mdc-outlined-button-label-text-transform: none;
}
html {
  --mdc-extended-fab-label-text-font: "Source Sans Pro", sans-serif;
  --mdc-extended-fab-label-text-size: 14px;
  --mdc-extended-fab-label-text-tracking: 0.0892857143em;
  --mdc-extended-fab-label-text-weight: 500;
}
html {
  --mdc-snackbar-supporting-text-font: "Source Sans Pro", sans-serif;
  --mdc-snackbar-supporting-text-line-height: 20px;
  --mdc-snackbar-supporting-text-size: 14px;
  --mdc-snackbar-supporting-text-weight: 400;
}
html {
  --mat-table-header-headline-font: "Source Sans Pro", sans-serif;
  --mat-table-header-headline-line-height: 22px;
  --mat-table-header-headline-size: 14px;
  --mat-table-header-headline-weight: 500;
  --mat-table-header-headline-tracking: 0.0071428571em;
  --mat-table-row-item-label-text-font: "Source Sans Pro", sans-serif;
  --mat-table-row-item-label-text-line-height: 20px;
  --mat-table-row-item-label-text-size: 14px;
  --mat-table-row-item-label-text-weight: 400;
  --mat-table-row-item-label-text-tracking: 0.0178571429em;
  --mat-table-footer-supporting-text-font: "Source Sans Pro", sans-serif;
  --mat-table-footer-supporting-text-line-height: 20px;
  --mat-table-footer-supporting-text-size: 14px;
  --mat-table-footer-supporting-text-weight: 400;
  --mat-table-footer-supporting-text-tracking: 0.0178571429em;
}
.mat-elevation-z0,
.mat-mdc-elevation-specific.mat-elevation-z0 {
  box-shadow: var(--mat-app-elevation-shadow-level-0, none);
}
.mat-elevation-z1,
.mat-mdc-elevation-specific.mat-elevation-z1 {
  box-shadow: var(--mat-app-elevation-shadow-level-1, none);
}
.mat-elevation-z2,
.mat-mdc-elevation-specific.mat-elevation-z2 {
  box-shadow: var(--mat-app-elevation-shadow-level-2, none);
}
.mat-elevation-z3,
.mat-mdc-elevation-specific.mat-elevation-z3 {
  box-shadow: var(--mat-app-elevation-shadow-level-3, none);
}
.mat-elevation-z4,
.mat-mdc-elevation-specific.mat-elevation-z4 {
  box-shadow: var(--mat-app-elevation-shadow-level-4, none);
}
.mat-elevation-z5,
.mat-mdc-elevation-specific.mat-elevation-z5 {
  box-shadow: var(--mat-app-elevation-shadow-level-5, none);
}
.mat-elevation-z6,
.mat-mdc-elevation-specific.mat-elevation-z6 {
  box-shadow: var(--mat-app-elevation-shadow-level-6, none);
}
.mat-elevation-z7,
.mat-mdc-elevation-specific.mat-elevation-z7 {
  box-shadow: var(--mat-app-elevation-shadow-level-7, none);
}
.mat-elevation-z8,
.mat-mdc-elevation-specific.mat-elevation-z8 {
  box-shadow: var(--mat-app-elevation-shadow-level-8, none);
}
.mat-elevation-z9,
.mat-mdc-elevation-specific.mat-elevation-z9 {
  box-shadow: var(--mat-app-elevation-shadow-level-9, none);
}
.mat-elevation-z10,
.mat-mdc-elevation-specific.mat-elevation-z10 {
  box-shadow: var(--mat-app-elevation-shadow-level-10, none);
}
.mat-elevation-z11,
.mat-mdc-elevation-specific.mat-elevation-z11 {
  box-shadow: var(--mat-app-elevation-shadow-level-11, none);
}
.mat-elevation-z12,
.mat-mdc-elevation-specific.mat-elevation-z12 {
  box-shadow: var(--mat-app-elevation-shadow-level-12, none);
}
.mat-elevation-z13,
.mat-mdc-elevation-specific.mat-elevation-z13 {
  box-shadow: var(--mat-app-elevation-shadow-level-13, none);
}
.mat-elevation-z14,
.mat-mdc-elevation-specific.mat-elevation-z14 {
  box-shadow: var(--mat-app-elevation-shadow-level-14, none);
}
.mat-elevation-z15,
.mat-mdc-elevation-specific.mat-elevation-z15 {
  box-shadow: var(--mat-app-elevation-shadow-level-15, none);
}
.mat-elevation-z16,
.mat-mdc-elevation-specific.mat-elevation-z16 {
  box-shadow: var(--mat-app-elevation-shadow-level-16, none);
}
.mat-elevation-z17,
.mat-mdc-elevation-specific.mat-elevation-z17 {
  box-shadow: var(--mat-app-elevation-shadow-level-17, none);
}
.mat-elevation-z18,
.mat-mdc-elevation-specific.mat-elevation-z18 {
  box-shadow: var(--mat-app-elevation-shadow-level-18, none);
}
.mat-elevation-z19,
.mat-mdc-elevation-specific.mat-elevation-z19 {
  box-shadow: var(--mat-app-elevation-shadow-level-19, none);
}
.mat-elevation-z20,
.mat-mdc-elevation-specific.mat-elevation-z20 {
  box-shadow: var(--mat-app-elevation-shadow-level-20, none);
}
.mat-elevation-z21,
.mat-mdc-elevation-specific.mat-elevation-z21 {
  box-shadow: var(--mat-app-elevation-shadow-level-21, none);
}
.mat-elevation-z22,
.mat-mdc-elevation-specific.mat-elevation-z22 {
  box-shadow: var(--mat-app-elevation-shadow-level-22, none);
}
.mat-elevation-z23,
.mat-mdc-elevation-specific.mat-elevation-z23 {
  box-shadow: var(--mat-app-elevation-shadow-level-23, none);
}
.mat-elevation-z24,
.mat-mdc-elevation-specific.mat-elevation-z24 {
  box-shadow: var(--mat-app-elevation-shadow-level-24, none);
}
html {
  --mat-sys-on-surface: initial;
}
.mat-app-background {
  background-color: var(--mat-app-background-color, var(--mat-sys-background, transparent));
  color: var(--mat-app-text-color, var(--mat-sys-on-background, inherit));
}
.atlas-copco-theme {
  --mat-ripple-color: rgba(0, 0, 0, 0.1);
}
.atlas-copco-theme {
  --mat-option-selected-state-label-text-color: #0099cc;
  --mat-option-label-text-color: rgba(0, 0, 0, 0.87);
  --mat-option-hover-state-layer-color: rgba(0, 0, 0, 0.04);
  --mat-option-focus-state-layer-color: rgba(0, 0, 0, 0.04);
  --mat-option-selected-state-layer-color: rgba(0, 0, 0, 0.04);
}
.atlas-copco-theme .mat-accent {
  --mat-option-selected-state-label-text-color: #a4d7ff;
  --mat-option-label-text-color: rgba(0, 0, 0, 0.87);
  --mat-option-hover-state-layer-color: rgba(0, 0, 0, 0.04);
  --mat-option-focus-state-layer-color: rgba(0, 0, 0, 0.04);
  --mat-option-selected-state-layer-color: rgba(0, 0, 0, 0.04);
}
.atlas-copco-theme .mat-warn {
  --mat-option-selected-state-label-text-color: #c8102e;
  --mat-option-label-text-color: rgba(0, 0, 0, 0.87);
  --mat-option-hover-state-layer-color: rgba(0, 0, 0, 0.04);
  --mat-option-focus-state-layer-color: rgba(0, 0, 0, 0.04);
  --mat-option-selected-state-layer-color: rgba(0, 0, 0, 0.04);
}
.atlas-copco-theme {
  --mat-optgroup-label-text-color: rgba(0, 0, 0, 0.87);
}
.atlas-copco-theme {
  --mat-full-pseudo-checkbox-selected-icon-color: #a4d7ff;
  --mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;
  --mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;
  --mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;
  --mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;
}
.atlas-copco-theme {
  --mat-minimal-pseudo-checkbox-selected-checkmark-color: #a4d7ff;
  --mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0;
}
.atlas-copco-theme .mat-primary {
  --mat-full-pseudo-checkbox-selected-icon-color: #0099cc;
  --mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;
  --mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;
  --mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;
  --mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;
}
.atlas-copco-theme .mat-primary {
  --mat-minimal-pseudo-checkbox-selected-checkmark-color: #0099cc;
  --mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0;
}
.atlas-copco-theme .mat-accent {
  --mat-full-pseudo-checkbox-selected-icon-color: #a4d7ff;
  --mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;
  --mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;
  --mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;
  --mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;
}
.atlas-copco-theme .mat-accent {
  --mat-minimal-pseudo-checkbox-selected-checkmark-color: #a4d7ff;
  --mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0;
}
.atlas-copco-theme .mat-warn {
  --mat-full-pseudo-checkbox-selected-icon-color: #c8102e;
  --mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;
  --mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;
  --mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;
  --mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;
}
.atlas-copco-theme .mat-warn {
  --mat-minimal-pseudo-checkbox-selected-checkmark-color: #c8102e;
  --mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0;
}
.atlas-copco-theme {
  --mat-app-background-color: #fafafa;
  --mat-app-text-color: rgba(0, 0, 0, 0.87);
  --mat-app-elevation-shadow-level-0:
    0px 0px 0px 0px rgba(0, 0, 0, 0.2),
    0px 0px 0px 0px rgba(0, 0, 0, 0.14),
    0px 0px 0px 0px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-1:
    0px 2px 1px -1px rgba(0, 0, 0, 0.2),
    0px 1px 1px 0px rgba(0, 0, 0, 0.14),
    0px 1px 3px 0px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-2:
    0px 3px 1px -2px rgba(0, 0, 0, 0.2),
    0px 2px 2px 0px rgba(0, 0, 0, 0.14),
    0px 1px 5px 0px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-3:
    0px 3px 3px -2px rgba(0, 0, 0, 0.2),
    0px 3px 4px 0px rgba(0, 0, 0, 0.14),
    0px 1px 8px 0px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-4:
    0px 2px 4px -1px rgba(0, 0, 0, 0.2),
    0px 4px 5px 0px rgba(0, 0, 0, 0.14),
    0px 1px 10px 0px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-5:
    0px 3px 5px -1px rgba(0, 0, 0, 0.2),
    0px 5px 8px 0px rgba(0, 0, 0, 0.14),
    0px 1px 14px 0px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-6:
    0px 3px 5px -1px rgba(0, 0, 0, 0.2),
    0px 6px 10px 0px rgba(0, 0, 0, 0.14),
    0px 1px 18px 0px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-7:
    0px 4px 5px -2px rgba(0, 0, 0, 0.2),
    0px 7px 10px 1px rgba(0, 0, 0, 0.14),
    0px 2px 16px 1px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-8:
    0px 5px 5px -3px rgba(0, 0, 0, 0.2),
    0px 8px 10px 1px rgba(0, 0, 0, 0.14),
    0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-9:
    0px 5px 6px -3px rgba(0, 0, 0, 0.2),
    0px 9px 12px 1px rgba(0, 0, 0, 0.14),
    0px 3px 16px 2px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-10:
    0px 6px 6px -3px rgba(0, 0, 0, 0.2),
    0px 10px 14px 1px rgba(0, 0, 0, 0.14),
    0px 4px 18px 3px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-11:
    0px 6px 7px -4px rgba(0, 0, 0, 0.2),
    0px 11px 15px 1px rgba(0, 0, 0, 0.14),
    0px 4px 20px 3px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-12:
    0px 7px 8px -4px rgba(0, 0, 0, 0.2),
    0px 12px 17px 2px rgba(0, 0, 0, 0.14),
    0px 5px 22px 4px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-13:
    0px 7px 8px -4px rgba(0, 0, 0, 0.2),
    0px 13px 19px 2px rgba(0, 0, 0, 0.14),
    0px 5px 24px 4px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-14:
    0px 7px 9px -4px rgba(0, 0, 0, 0.2),
    0px 14px 21px 2px rgba(0, 0, 0, 0.14),
    0px 5px 26px 4px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-15:
    0px 8px 9px -5px rgba(0, 0, 0, 0.2),
    0px 15px 22px 2px rgba(0, 0, 0, 0.14),
    0px 6px 28px 5px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-16:
    0px 8px 10px -5px rgba(0, 0, 0, 0.2),
    0px 16px 24px 2px rgba(0, 0, 0, 0.14),
    0px 6px 30px 5px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-17:
    0px 8px 11px -5px rgba(0, 0, 0, 0.2),
    0px 17px 26px 2px rgba(0, 0, 0, 0.14),
    0px 6px 32px 5px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-18:
    0px 9px 11px -5px rgba(0, 0, 0, 0.2),
    0px 18px 28px 2px rgba(0, 0, 0, 0.14),
    0px 7px 34px 6px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-19:
    0px 9px 12px -6px rgba(0, 0, 0, 0.2),
    0px 19px 29px 2px rgba(0, 0, 0, 0.14),
    0px 7px 36px 6px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-20:
    0px 10px 13px -6px rgba(0, 0, 0, 0.2),
    0px 20px 31px 3px rgba(0, 0, 0, 0.14),
    0px 8px 38px 7px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-21:
    0px 10px 13px -6px rgba(0, 0, 0, 0.2),
    0px 21px 33px 3px rgba(0, 0, 0, 0.14),
    0px 8px 40px 7px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-22:
    0px 10px 14px -6px rgba(0, 0, 0, 0.2),
    0px 22px 35px 3px rgba(0, 0, 0, 0.14),
    0px 8px 42px 7px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-23:
    0px 11px 14px -7px rgba(0, 0, 0, 0.2),
    0px 23px 36px 3px rgba(0, 0, 0, 0.14),
    0px 9px 44px 8px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-24:
    0px 11px 15px -7px rgba(0, 0, 0, 0.2),
    0px 24px 38px 3px rgba(0, 0, 0, 0.14),
    0px 9px 46px 8px rgba(0, 0, 0, 0.12);
}
.atlas-copco-theme {
  --mdc-elevated-card-container-shape: 4px;
}
.atlas-copco-theme {
  --mdc-outlined-card-container-shape: 4px;
  --mdc-outlined-card-outline-width: 1px;
}
.atlas-copco-theme {
  --mdc-elevated-card-container-color: white;
  --mdc-elevated-card-container-elevation:
    0px 2px 1px -1px rgba(0, 0, 0, 0.2),
    0px 1px 1px 0px rgba(0, 0, 0, 0.14),
    0px 1px 3px 0px rgba(0, 0, 0, 0.12);
}
.atlas-copco-theme {
  --mdc-outlined-card-container-color: white;
  --mdc-outlined-card-outline-color: rgba(0, 0, 0, 0.12);
  --mdc-outlined-card-container-elevation:
    0px 0px 0px 0px rgba(0, 0, 0, 0.2),
    0px 0px 0px 0px rgba(0, 0, 0, 0.14),
    0px 0px 0px 0px rgba(0, 0, 0, 0.12);
}
.atlas-copco-theme {
  --mat-card-subtitle-text-color: rgba(0, 0, 0, 0.54);
}
.atlas-copco-theme {
  --mdc-linear-progress-active-indicator-height: 4px;
  --mdc-linear-progress-track-height: 4px;
  --mdc-linear-progress-track-shape: 0;
}
.atlas-copco-theme .mat-mdc-progress-bar {
  --mdc-linear-progress-active-indicator-color: #0099cc;
  --mdc-linear-progress-track-color: rgba(0, 153, 204, 0.25);
}
.atlas-copco-theme .mat-mdc-progress-bar.mat-accent {
  --mdc-linear-progress-active-indicator-color: #a4d7ff;
  --mdc-linear-progress-track-color: rgba(164, 215, 255, 0.25);
}
.atlas-copco-theme .mat-mdc-progress-bar.mat-warn {
  --mdc-linear-progress-active-indicator-color: #c8102e;
  --mdc-linear-progress-track-color: rgba(200, 16, 46, 0.25);
}
.atlas-copco-theme {
  --mdc-plain-tooltip-container-shape: 4px;
  --mdc-plain-tooltip-supporting-text-line-height: 16px;
}
.atlas-copco-theme {
  --mdc-plain-tooltip-container-color: #616161;
  --mdc-plain-tooltip-supporting-text-color: #fff;
}
.atlas-copco-theme {
  --mdc-filled-text-field-active-indicator-height: 1px;
  --mdc-filled-text-field-focus-active-indicator-height: 2px;
  --mdc-filled-text-field-container-shape: 4px;
}
.atlas-copco-theme {
  --mdc-outlined-text-field-outline-width: 1px;
  --mdc-outlined-text-field-focus-outline-width: 2px;
  --mdc-outlined-text-field-container-shape: 4px;
}
.atlas-copco-theme {
  --mdc-filled-text-field-caret-color: #0099cc;
  --mdc-filled-text-field-focus-active-indicator-color: #0099cc;
  --mdc-filled-text-field-focus-label-text-color: rgba(0, 153, 204, 0.87);
  --mdc-filled-text-field-container-color: rgb(244.8, 244.8, 244.8);
  --mdc-filled-text-field-disabled-container-color: rgb(249.9, 249.9, 249.9);
  --mdc-filled-text-field-label-text-color: rgba(0, 0, 0, 0.6);
  --mdc-filled-text-field-hover-label-text-color: rgba(0, 0, 0, 0.6);
  --mdc-filled-text-field-disabled-label-text-color: rgba(0, 0, 0, 0.38);
  --mdc-filled-text-field-input-text-color: rgba(0, 0, 0, 0.87);
  --mdc-filled-text-field-disabled-input-text-color: rgba(0, 0, 0, 0.38);
  --mdc-filled-text-field-input-text-placeholder-color: rgba(0, 0, 0, 0.6);
  --mdc-filled-text-field-error-hover-label-text-color: #c8102e;
  --mdc-filled-text-field-error-focus-label-text-color: #c8102e;
  --mdc-filled-text-field-error-label-text-color: #c8102e;
  --mdc-filled-text-field-error-caret-color: #c8102e;
  --mdc-filled-text-field-active-indicator-color: rgba(0, 0, 0, 0.42);
  --mdc-filled-text-field-disabled-active-indicator-color: rgba(0, 0, 0, 0.06);
  --mdc-filled-text-field-hover-active-indicator-color: rgba(0, 0, 0, 0.87);
  --mdc-filled-text-field-error-active-indicator-color: #c8102e;
  --mdc-filled-text-field-error-focus-active-indicator-color: #c8102e;
  --mdc-filled-text-field-error-hover-active-indicator-color: #c8102e;
}
.atlas-copco-theme {
  --mdc-outlined-text-field-caret-color: #0099cc;
  --mdc-outlined-text-field-focus-outline-color: #0099cc;
  --mdc-outlined-text-field-focus-label-text-color: rgba(0, 153, 204, 0.87);
  --mdc-outlined-text-field-label-text-color: rgba(0, 0, 0, 0.6);
  --mdc-outlined-text-field-hover-label-text-color: rgba(0, 0, 0, 0.6);
  --mdc-outlined-text-field-disabled-label-text-color: rgba(0, 0, 0, 0.38);
  --mdc-outlined-text-field-input-text-color: rgba(0, 0, 0, 0.87);
  --mdc-outlined-text-field-disabled-input-text-color: rgba(0, 0, 0, 0.38);
  --mdc-outlined-text-field-input-text-placeholder-color: rgba(0, 0, 0, 0.6);
  --mdc-outlined-text-field-error-caret-color: #c8102e;
  --mdc-outlined-text-field-error-focus-label-text-color: #c8102e;
  --mdc-outlined-text-field-error-label-text-color: #c8102e;
  --mdc-outlined-text-field-error-hover-label-text-color: #c8102e;
  --mdc-outlined-text-field-outline-color: rgba(0, 0, 0, 0.38);
  --mdc-outlined-text-field-disabled-outline-color: rgba(0, 0, 0, 0.06);
  --mdc-outlined-text-field-hover-outline-color: rgba(0, 0, 0, 0.87);
  --mdc-outlined-text-field-error-focus-outline-color: #c8102e;
  --mdc-outlined-text-field-error-hover-outline-color: #c8102e;
  --mdc-outlined-text-field-error-outline-color: #c8102e;
}
.atlas-copco-theme {
  --mat-form-field-focus-select-arrow-color: rgba(0, 153, 204, 0.87);
  --mat-form-field-disabled-input-text-placeholder-color: rgba(0, 0, 0, 0.38);
  --mat-form-field-state-layer-color: rgba(0, 0, 0, 0.87);
  --mat-form-field-error-text-color: #c8102e;
  --mat-form-field-select-option-text-color: inherit;
  --mat-form-field-select-disabled-option-text-color: GrayText;
  --mat-form-field-leading-icon-color: unset;
  --mat-form-field-disabled-leading-icon-color: unset;
  --mat-form-field-trailing-icon-color: unset;
  --mat-form-field-disabled-trailing-icon-color: unset;
  --mat-form-field-error-focus-trailing-icon-color: unset;
  --mat-form-field-error-hover-trailing-icon-color: unset;
  --mat-form-field-error-trailing-icon-color: unset;
  --mat-form-field-enabled-select-arrow-color: rgba(0, 0, 0, 0.54);
  --mat-form-field-disabled-select-arrow-color: rgba(0, 0, 0, 0.38);
  --mat-form-field-hover-state-layer-opacity: 0.04;
  --mat-form-field-focus-state-layer-opacity: 0.08;
}
.atlas-copco-theme .mat-mdc-form-field.mat-accent {
  --mdc-filled-text-field-caret-color: #a4d7ff;
  --mdc-filled-text-field-focus-active-indicator-color: #a4d7ff;
  --mdc-filled-text-field-focus-label-text-color: rgba(164, 215, 255, 0.87);
}
.atlas-copco-theme .mat-mdc-form-field.mat-accent {
  --mdc-outlined-text-field-caret-color: #a4d7ff;
  --mdc-outlined-text-field-focus-outline-color: #a4d7ff;
  --mdc-outlined-text-field-focus-label-text-color: rgba(164, 215, 255, 0.87);
}
.atlas-copco-theme .mat-mdc-form-field.mat-accent {
  --mat-form-field-focus-select-arrow-color: rgba(164, 215, 255, 0.87);
}
.atlas-copco-theme .mat-mdc-form-field.mat-warn {
  --mdc-filled-text-field-caret-color: #c8102e;
  --mdc-filled-text-field-focus-active-indicator-color: #c8102e;
  --mdc-filled-text-field-focus-label-text-color: rgba(200, 16, 46, 0.87);
}
.atlas-copco-theme .mat-mdc-form-field.mat-warn {
  --mdc-outlined-text-field-caret-color: #c8102e;
  --mdc-outlined-text-field-focus-outline-color: #c8102e;
  --mdc-outlined-text-field-focus-label-text-color: rgba(200, 16, 46, 0.87);
}
.atlas-copco-theme .mat-mdc-form-field.mat-warn {
  --mat-form-field-focus-select-arrow-color: rgba(200, 16, 46, 0.87);
}
.atlas-copco-theme {
  --mat-select-container-elevation-shadow:
    0px 5px 5px -3px rgba(0, 0, 0, 0.2),
    0px 8px 10px 1px rgba(0, 0, 0, 0.14),
    0px 3px 14px 2px rgba(0, 0, 0, 0.12);
}
.atlas-copco-theme {
  --mat-select-panel-background-color: white;
  --mat-select-enabled-trigger-text-color: rgba(0, 0, 0, 0.87);
  --mat-select-disabled-trigger-text-color: rgba(0, 0, 0, 0.38);
  --mat-select-placeholder-text-color: rgba(0, 0, 0, 0.6);
  --mat-select-enabled-arrow-color: rgba(0, 0, 0, 0.54);
  --mat-select-disabled-arrow-color: rgba(0, 0, 0, 0.38);
  --mat-select-focused-arrow-color: rgba(0, 153, 204, 0.87);
  --mat-select-invalid-arrow-color: rgba(200, 16, 46, 0.87);
}
.atlas-copco-theme .mat-mdc-form-field.mat-accent {
  --mat-select-panel-background-color: white;
  --mat-select-enabled-trigger-text-color: rgba(0, 0, 0, 0.87);
  --mat-select-disabled-trigger-text-color: rgba(0, 0, 0, 0.38);
  --mat-select-placeholder-text-color: rgba(0, 0, 0, 0.6);
  --mat-select-enabled-arrow-color: rgba(0, 0, 0, 0.54);
  --mat-select-disabled-arrow-color: rgba(0, 0, 0, 0.38);
  --mat-select-focused-arrow-color: rgba(164, 215, 255, 0.87);
  --mat-select-invalid-arrow-color: rgba(200, 16, 46, 0.87);
}
.atlas-copco-theme .mat-mdc-form-field.mat-warn {
  --mat-select-panel-background-color: white;
  --mat-select-enabled-trigger-text-color: rgba(0, 0, 0, 0.87);
  --mat-select-disabled-trigger-text-color: rgba(0, 0, 0, 0.38);
  --mat-select-placeholder-text-color: rgba(0, 0, 0, 0.6);
  --mat-select-enabled-arrow-color: rgba(0, 0, 0, 0.54);
  --mat-select-disabled-arrow-color: rgba(0, 0, 0, 0.38);
  --mat-select-focused-arrow-color: rgba(200, 16, 46, 0.87);
  --mat-select-invalid-arrow-color: rgba(200, 16, 46, 0.87);
}
.atlas-copco-theme {
  --mat-autocomplete-container-shape: 4px;
  --mat-autocomplete-container-elevation-shadow:
    0px 5px 5px -3px rgba(0, 0, 0, 0.2),
    0px 8px 10px 1px rgba(0, 0, 0, 0.14),
    0px 3px 14px 2px rgba(0, 0, 0, 0.12);
}
.atlas-copco-theme {
  --mat-autocomplete-background-color: white;
}
.atlas-copco-theme {
  --mdc-dialog-container-shape: 4px;
}
.atlas-copco-theme {
  --mat-dialog-container-elevation-shadow:
    0px 11px 15px -7px rgba(0, 0, 0, 0.2),
    0px 24px 38px 3px rgba(0, 0, 0, 0.14),
    0px 9px 46px 8px rgba(0, 0, 0, 0.12);
  --mat-dialog-container-max-width: 80vw;
  --mat-dialog-container-small-max-width: 80vw;
  --mat-dialog-container-min-width: 0;
  --mat-dialog-actions-alignment: start;
  --mat-dialog-actions-padding: 8px;
  --mat-dialog-content-padding: 20px 24px;
  --mat-dialog-with-actions-content-padding: 20px 24px;
  --mat-dialog-headline-padding: 0 24px 9px;
}
.atlas-copco-theme {
  --mdc-dialog-container-color: white;
  --mdc-dialog-subhead-color: rgba(0, 0, 0, 0.87);
  --mdc-dialog-supporting-text-color: rgba(0, 0, 0, 0.6);
}
.atlas-copco-theme .mat-mdc-standard-chip {
  --mdc-chip-container-shape-radius: 16px;
  --mdc-chip-with-avatar-avatar-shape-radius: 14px;
  --mdc-chip-with-avatar-avatar-size: 28px;
  --mdc-chip-with-icon-icon-size: 18px;
  --mdc-chip-outline-width: 0;
  --mdc-chip-outline-color: transparent;
  --mdc-chip-disabled-outline-color: transparent;
  --mdc-chip-focus-outline-color: transparent;
  --mdc-chip-hover-state-layer-opacity: 0.04;
  --mdc-chip-with-avatar-disabled-avatar-opacity: 1;
  --mdc-chip-flat-selected-outline-width: 0;
  --mdc-chip-selected-hover-state-layer-opacity: 0.04;
  --mdc-chip-with-trailing-icon-disabled-trailing-icon-opacity: 1;
  --mdc-chip-with-icon-disabled-icon-opacity: 1;
}
.atlas-copco-theme .mat-mdc-standard-chip {
  --mat-chip-disabled-container-opacity: 0.4;
  --mat-chip-trailing-action-opacity: 0.54;
  --mat-chip-trailing-action-focus-opacity: 1;
  --mat-chip-trailing-action-state-layer-color: transparent;
  --mat-chip-selected-trailing-action-state-layer-color: transparent;
  --mat-chip-trailing-action-hover-state-layer-opacity: 0;
  --mat-chip-trailing-action-focus-state-layer-opacity: 0;
}
.atlas-copco-theme .mat-mdc-standard-chip {
  --mdc-chip-disabled-label-text-color: #212121;
  --mdc-chip-elevated-container-color: rgb(224.4, 224.4, 224.4);
  --mdc-chip-elevated-selected-container-color: rgb(224.4, 224.4, 224.4);
  --mdc-chip-elevated-disabled-container-color: rgb(224.4, 224.4, 224.4);
  --mdc-chip-flat-disabled-selected-container-color: rgb(224.4, 224.4, 224.4);
  --mdc-chip-focus-state-layer-color: black;
  --mdc-chip-hover-state-layer-color: black;
  --mdc-chip-selected-hover-state-layer-color: black;
  --mdc-chip-focus-state-layer-opacity: 0.12;
  --mdc-chip-selected-focus-state-layer-color: black;
  --mdc-chip-selected-focus-state-layer-opacity: 0.12;
  --mdc-chip-label-text-color: #212121;
  --mdc-chip-selected-label-text-color: #212121;
  --mdc-chip-with-icon-icon-color: #212121;
  --mdc-chip-with-icon-disabled-icon-color: #212121;
  --mdc-chip-with-icon-selected-icon-color: #212121;
  --mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #212121;
  --mdc-chip-with-trailing-icon-trailing-icon-color: #212121;
}
.atlas-copco-theme .mat-mdc-standard-chip {
  --mat-chip-selected-disabled-trailing-icon-color: #212121;
  --mat-chip-selected-trailing-icon-color: #212121;
}
.atlas-copco-theme .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary,
.atlas-copco-theme .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary {
  --mdc-chip-disabled-label-text-color: white;
  --mdc-chip-elevated-container-color: #0099cc;
  --mdc-chip-elevated-selected-container-color: #0099cc;
  --mdc-chip-elevated-disabled-container-color: #0099cc;
  --mdc-chip-flat-disabled-selected-container-color: #0099cc;
  --mdc-chip-focus-state-layer-color: black;
  --mdc-chip-hover-state-layer-color: black;
  --mdc-chip-selected-hover-state-layer-color: black;
  --mdc-chip-focus-state-layer-opacity: 0.12;
  --mdc-chip-selected-focus-state-layer-color: black;
  --mdc-chip-selected-focus-state-layer-opacity: 0.12;
  --mdc-chip-label-text-color: white;
  --mdc-chip-selected-label-text-color: white;
  --mdc-chip-with-icon-icon-color: white;
  --mdc-chip-with-icon-disabled-icon-color: white;
  --mdc-chip-with-icon-selected-icon-color: white;
  --mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;
  --mdc-chip-with-trailing-icon-trailing-icon-color: white;
}
.atlas-copco-theme .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary,
.atlas-copco-theme .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary {
  --mat-chip-selected-disabled-trailing-icon-color: white;
  --mat-chip-selected-trailing-icon-color: white;
}
.atlas-copco-theme .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent,
.atlas-copco-theme .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent {
  --mdc-chip-disabled-label-text-color: black;
  --mdc-chip-elevated-container-color: #a4d7ff;
  --mdc-chip-elevated-selected-container-color: #a4d7ff;
  --mdc-chip-elevated-disabled-container-color: #a4d7ff;
  --mdc-chip-flat-disabled-selected-container-color: #a4d7ff;
  --mdc-chip-focus-state-layer-color: black;
  --mdc-chip-hover-state-layer-color: black;
  --mdc-chip-selected-hover-state-layer-color: black;
  --mdc-chip-focus-state-layer-opacity: 0.12;
  --mdc-chip-selected-focus-state-layer-color: black;
  --mdc-chip-selected-focus-state-layer-opacity: 0.12;
  --mdc-chip-label-text-color: black;
  --mdc-chip-selected-label-text-color: black;
  --mdc-chip-with-icon-icon-color: black;
  --mdc-chip-with-icon-disabled-icon-color: black;
  --mdc-chip-with-icon-selected-icon-color: black;
  --mdc-chip-with-trailing-icon-disabled-trailing-icon-color: black;
  --mdc-chip-with-trailing-icon-trailing-icon-color: black;
}
.atlas-copco-theme .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent,
.atlas-copco-theme .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent {
  --mat-chip-selected-disabled-trailing-icon-color: black;
  --mat-chip-selected-trailing-icon-color: black;
}
.atlas-copco-theme .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn,
.atlas-copco-theme .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn {
  --mdc-chip-disabled-label-text-color: white;
  --mdc-chip-elevated-container-color: #c8102e;
  --mdc-chip-elevated-selected-container-color: #c8102e;
  --mdc-chip-elevated-disabled-container-color: #c8102e;
  --mdc-chip-flat-disabled-selected-container-color: #c8102e;
  --mdc-chip-focus-state-layer-color: black;
  --mdc-chip-hover-state-layer-color: black;
  --mdc-chip-selected-hover-state-layer-color: black;
  --mdc-chip-focus-state-layer-opacity: 0.12;
  --mdc-chip-selected-focus-state-layer-color: black;
  --mdc-chip-selected-focus-state-layer-opacity: 0.12;
  --mdc-chip-label-text-color: white;
  --mdc-chip-selected-label-text-color: white;
  --mdc-chip-with-icon-icon-color: white;
  --mdc-chip-with-icon-disabled-icon-color: white;
  --mdc-chip-with-icon-selected-icon-color: white;
  --mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;
  --mdc-chip-with-trailing-icon-trailing-icon-color: white;
}
.atlas-copco-theme .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn,
.atlas-copco-theme .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn {
  --mat-chip-selected-disabled-trailing-icon-color: white;
  --mat-chip-selected-trailing-icon-color: white;
}
.atlas-copco-theme {
  --mdc-switch-disabled-selected-icon-opacity: 0.38;
  --mdc-switch-disabled-track-opacity: 0.12;
  --mdc-switch-disabled-unselected-icon-opacity: 0.38;
  --mdc-switch-handle-height: 20px;
  --mdc-switch-handle-shape: 10px;
  --mdc-switch-handle-width: 20px;
  --mdc-switch-selected-icon-size: 18px;
  --mdc-switch-track-height: 14px;
  --mdc-switch-track-shape: 7px;
  --mdc-switch-track-width: 36px;
  --mdc-switch-unselected-icon-size: 18px;
  --mdc-switch-selected-focus-state-layer-opacity: 0.12;
  --mdc-switch-selected-hover-state-layer-opacity: 0.04;
  --mdc-switch-selected-pressed-state-layer-opacity: 0.1;
  --mdc-switch-unselected-focus-state-layer-opacity: 0.12;
  --mdc-switch-unselected-hover-state-layer-opacity: 0.04;
  --mdc-switch-unselected-pressed-state-layer-opacity: 0.1;
}
.atlas-copco-theme .mat-mdc-slide-toggle {
  --mat-switch-disabled-selected-handle-opacity: 0.38;
  --mat-switch-disabled-unselected-handle-opacity: 0.38;
  --mat-switch-unselected-handle-size: 20px;
  --mat-switch-selected-handle-size: 20px;
  --mat-switch-pressed-handle-size: 20px;
  --mat-switch-with-icon-handle-size: 20px;
  --mat-switch-selected-handle-horizontal-margin: 0;
  --mat-switch-selected-with-icon-handle-horizontal-margin: 0;
  --mat-switch-selected-pressed-handle-horizontal-margin: 0;
  --mat-switch-unselected-handle-horizontal-margin: 0;
  --mat-switch-unselected-with-icon-handle-horizontal-margin: 0;
  --mat-switch-unselected-pressed-handle-horizontal-margin: 0;
  --mat-switch-visible-track-opacity: 1;
  --mat-switch-hidden-track-opacity: 1;
  --mat-switch-visible-track-transition: transform 75ms 0ms cubic-bezier(0, 0, 0.2, 1);
  --mat-switch-hidden-track-transition: transform 75ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
  --mat-switch-track-outline-width: 1px;
  --mat-switch-track-outline-color: transparent;
  --mat-switch-selected-track-outline-width: 1px;
  --mat-switch-selected-track-outline-color: transparent;
  --mat-switch-disabled-unselected-track-outline-width: 1px;
  --mat-switch-disabled-unselected-track-outline-color: transparent;
}
.atlas-copco-theme {
  --mdc-switch-selected-focus-state-layer-color: #0091c7;
  --mdc-switch-selected-handle-color: #0091c7;
  --mdc-switch-selected-hover-state-layer-color: #0091c7;
  --mdc-switch-selected-pressed-state-layer-color: #0091c7;
  --mdc-switch-selected-focus-handle-color: #006bad;
  --mdc-switch-selected-hover-handle-color: #006bad;
  --mdc-switch-selected-pressed-handle-color: #006bad;
  --mdc-switch-selected-focus-track-color: #4db8db;
  --mdc-switch-selected-hover-track-color: #4db8db;
  --mdc-switch-selected-pressed-track-color: #4db8db;
  --mdc-switch-selected-track-color: #4db8db;
  --mdc-switch-disabled-selected-handle-color: #424242;
  --mdc-switch-disabled-selected-icon-color: #fff;
  --mdc-switch-disabled-selected-track-color: #424242;
  --mdc-switch-disabled-unselected-handle-color: #424242;
  --mdc-switch-disabled-unselected-icon-color: #fff;
  --mdc-switch-disabled-unselected-track-color: #424242;
  --mdc-switch-handle-surface-color: #fff;
  --mdc-switch-selected-icon-color: #fff;
  --mdc-switch-unselected-focus-handle-color: #212121;
  --mdc-switch-unselected-focus-state-layer-color: #424242;
  --mdc-switch-unselected-focus-track-color: #e0e0e0;
  --mdc-switch-unselected-handle-color: #616161;
  --mdc-switch-unselected-hover-handle-color: #212121;
  --mdc-switch-unselected-hover-state-layer-color: #424242;
  --mdc-switch-unselected-hover-track-color: #e0e0e0;
  --mdc-switch-unselected-icon-color: #fff;
  --mdc-switch-unselected-pressed-handle-color: #212121;
  --mdc-switch-unselected-pressed-state-layer-color: #424242;
  --mdc-switch-unselected-pressed-track-color: #e0e0e0;
  --mdc-switch-unselected-track-color: #e0e0e0;
  --mdc-switch-handle-elevation-shadow:
    0px 2px 1px -1px rgba(0, 0, 0, 0.2),
    0px 1px 1px 0px rgba(0, 0, 0, 0.14),
    0px 1px 3px 0px rgba(0, 0, 0, 0.12);
  --mdc-switch-disabled-handle-elevation-shadow:
    0px 0px 0px 0px rgba(0, 0, 0, 0.2),
    0px 0px 0px 0px rgba(0, 0, 0, 0.14),
    0px 0px 0px 0px rgba(0, 0, 0, 0.12);
}
.atlas-copco-theme {
  --mdc-switch-disabled-label-text-color: rgba(0, 0, 0, 0.38);
}
.atlas-copco-theme .mat-mdc-slide-toggle {
  --mat-switch-label-text-color: rgba(0, 0, 0, 0.87);
}
.atlas-copco-theme .mat-mdc-slide-toggle.mat-accent {
  --mdc-switch-selected-focus-state-layer-color: #0091c7;
  --mdc-switch-selected-handle-color: #0091c7;
  --mdc-switch-selected-hover-state-layer-color: #0091c7;
  --mdc-switch-selected-pressed-state-layer-color: #0091c7;
  --mdc-switch-selected-focus-handle-color: #006bad;
  --mdc-switch-selected-hover-handle-color: #006bad;
  --mdc-switch-selected-pressed-handle-color: #006bad;
  --mdc-switch-selected-focus-track-color: #4db8db;
  --mdc-switch-selected-hover-track-color: #4db8db;
  --mdc-switch-selected-pressed-track-color: #4db8db;
  --mdc-switch-selected-track-color: #4db8db;
}
.atlas-copco-theme .mat-mdc-slide-toggle.mat-warn {
  --mdc-switch-selected-focus-state-layer-color: #b80e29;
  --mdc-switch-selected-handle-color: #b80e29;
  --mdc-switch-selected-hover-state-layer-color: #b80e29;
  --mdc-switch-selected-pressed-state-layer-color: #b80e29;
  --mdc-switch-selected-focus-handle-color: #74071a;
  --mdc-switch-selected-hover-handle-color: #74071a;
  --mdc-switch-selected-pressed-handle-color: #74071a;
  --mdc-switch-selected-focus-track-color: #f07184;
  --mdc-switch-selected-hover-track-color: #f07184;
  --mdc-switch-selected-pressed-track-color: #f07184;
  --mdc-switch-selected-track-color: #f07184;
}
.atlas-copco-theme {
  --mdc-radio-disabled-selected-icon-opacity: 0.38;
  --mdc-radio-disabled-unselected-icon-opacity: 0.38;
  --mdc-radio-state-layer-size: 40px;
}
.atlas-copco-theme .mat-mdc-radio-button.mat-primary {
  --mdc-radio-disabled-selected-icon-color: black;
  --mdc-radio-disabled-unselected-icon-color: black;
  --mdc-radio-unselected-hover-icon-color: #212121;
  --mdc-radio-unselected-focus-icon-color: #212121;
  --mdc-radio-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-radio-selected-focus-icon-color: #0099cc;
  --mdc-radio-selected-hover-icon-color: #0099cc;
  --mdc-radio-selected-icon-color: #0099cc;
  --mdc-radio-selected-pressed-icon-color: #0099cc;
}
.atlas-copco-theme .mat-mdc-radio-button.mat-primary {
  --mat-radio-ripple-color: black;
  --mat-radio-checked-ripple-color: #0099cc;
  --mat-radio-disabled-label-color: rgba(0, 0, 0, 0.38);
  --mat-radio-label-text-color: rgba(0, 0, 0, 0.87);
}
.atlas-copco-theme .mat-mdc-radio-button.mat-accent {
  --mdc-radio-disabled-selected-icon-color: black;
  --mdc-radio-disabled-unselected-icon-color: black;
  --mdc-radio-unselected-hover-icon-color: #212121;
  --mdc-radio-unselected-focus-icon-color: #212121;
  --mdc-radio-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-radio-selected-focus-icon-color: #a4d7ff;
  --mdc-radio-selected-hover-icon-color: #a4d7ff;
  --mdc-radio-selected-icon-color: #a4d7ff;
  --mdc-radio-selected-pressed-icon-color: #a4d7ff;
}
.atlas-copco-theme .mat-mdc-radio-button.mat-accent {
  --mat-radio-ripple-color: black;
  --mat-radio-checked-ripple-color: #a4d7ff;
  --mat-radio-disabled-label-color: rgba(0, 0, 0, 0.38);
  --mat-radio-label-text-color: rgba(0, 0, 0, 0.87);
}
.atlas-copco-theme .mat-mdc-radio-button.mat-warn {
  --mdc-radio-disabled-selected-icon-color: black;
  --mdc-radio-disabled-unselected-icon-color: black;
  --mdc-radio-unselected-hover-icon-color: #212121;
  --mdc-radio-unselected-focus-icon-color: #212121;
  --mdc-radio-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-radio-selected-focus-icon-color: #c8102e;
  --mdc-radio-selected-hover-icon-color: #c8102e;
  --mdc-radio-selected-icon-color: #c8102e;
  --mdc-radio-selected-pressed-icon-color: #c8102e;
}
.atlas-copco-theme .mat-mdc-radio-button.mat-warn {
  --mat-radio-ripple-color: black;
  --mat-radio-checked-ripple-color: #c8102e;
  --mat-radio-disabled-label-color: rgba(0, 0, 0, 0.38);
  --mat-radio-label-text-color: rgba(0, 0, 0, 0.87);
}
.atlas-copco-theme {
  --mdc-slider-active-track-height: 6px;
  --mdc-slider-active-track-shape: 9999px;
  --mdc-slider-handle-height: 20px;
  --mdc-slider-handle-shape: 50%;
  --mdc-slider-handle-width: 20px;
  --mdc-slider-inactive-track-height: 4px;
  --mdc-slider-inactive-track-shape: 9999px;
  --mdc-slider-with-overlap-handle-outline-width: 1px;
  --mdc-slider-with-tick-marks-active-container-opacity: 0.6;
  --mdc-slider-with-tick-marks-container-shape: 50%;
  --mdc-slider-with-tick-marks-container-size: 2px;
  --mdc-slider-with-tick-marks-inactive-container-opacity: 0.6;
  --mdc-slider-handle-elevation:
    0px 2px 1px -1px rgba(0, 0, 0, 0.2),
    0px 1px 1px 0px rgba(0, 0, 0, 0.14),
    0px 1px 3px 0px rgba(0, 0, 0, 0.12);
}
.atlas-copco-theme {
  --mat-slider-value-indicator-width: auto;
  --mat-slider-value-indicator-height: 32px;
  --mat-slider-value-indicator-caret-display: block;
  --mat-slider-value-indicator-border-radius: 4px;
  --mat-slider-value-indicator-padding: 0 12px;
  --mat-slider-value-indicator-text-transform: none;
  --mat-slider-value-indicator-container-transform: translateX(-50%);
}
.atlas-copco-theme {
  --mdc-slider-handle-color: #0099cc;
  --mdc-slider-focus-handle-color: #0099cc;
  --mdc-slider-hover-handle-color: #0099cc;
  --mdc-slider-active-track-color: #0099cc;
  --mdc-slider-inactive-track-color: #0099cc;
  --mdc-slider-with-tick-marks-inactive-container-color: #0099cc;
  --mdc-slider-with-tick-marks-active-container-color: white;
  --mdc-slider-disabled-active-track-color: #000;
  --mdc-slider-disabled-handle-color: #000;
  --mdc-slider-disabled-inactive-track-color: #000;
  --mdc-slider-label-container-color: #000;
  --mdc-slider-label-label-text-color: #fff;
  --mdc-slider-with-overlap-handle-outline-color: #fff;
  --mdc-slider-with-tick-marks-disabled-container-color: #000;
}
.atlas-copco-theme {
  --mat-slider-ripple-color: #0099cc;
  --mat-slider-hover-state-layer-color: rgba(0, 153, 204, 0.05);
  --mat-slider-focus-state-layer-color: rgba(0, 153, 204, 0.2);
  --mat-slider-value-indicator-opacity: 0.6;
}
.atlas-copco-theme .mat-accent {
  --mdc-slider-handle-color: #a4d7ff;
  --mdc-slider-focus-handle-color: #a4d7ff;
  --mdc-slider-hover-handle-color: #a4d7ff;
  --mdc-slider-active-track-color: #a4d7ff;
  --mdc-slider-inactive-track-color: #a4d7ff;
  --mdc-slider-with-tick-marks-inactive-container-color: #a4d7ff;
  --mdc-slider-with-tick-marks-active-container-color: black;
}
.atlas-copco-theme .mat-accent {
  --mat-slider-ripple-color: #a4d7ff;
  --mat-slider-hover-state-layer-color: rgba(164, 215, 255, 0.05);
  --mat-slider-focus-state-layer-color: rgba(164, 215, 255, 0.2);
}
.atlas-copco-theme .mat-warn {
  --mdc-slider-handle-color: #c8102e;
  --mdc-slider-focus-handle-color: #c8102e;
  --mdc-slider-hover-handle-color: #c8102e;
  --mdc-slider-active-track-color: #c8102e;
  --mdc-slider-inactive-track-color: #c8102e;
  --mdc-slider-with-tick-marks-inactive-container-color: #c8102e;
  --mdc-slider-with-tick-marks-active-container-color: white;
}
.atlas-copco-theme .mat-warn {
  --mat-slider-ripple-color: #c8102e;
  --mat-slider-hover-state-layer-color: rgba(200, 16, 46, 0.05);
  --mat-slider-focus-state-layer-color: rgba(200, 16, 46, 0.2);
}
.atlas-copco-theme {
  --mat-menu-container-shape: 4px;
  --mat-menu-divider-bottom-spacing: 0;
  --mat-menu-divider-top-spacing: 0;
  --mat-menu-item-spacing: 16px;
  --mat-menu-item-icon-size: 24px;
  --mat-menu-item-leading-spacing: 16px;
  --mat-menu-item-trailing-spacing: 16px;
  --mat-menu-item-with-icon-leading-spacing: 16px;
  --mat-menu-item-with-icon-trailing-spacing: 16px;
  --mat-menu-container-elevation-shadow:
    0px 5px 5px -3px rgba(0, 0, 0, 0.2),
    0px 8px 10px 1px rgba(0, 0, 0, 0.14),
    0px 3px 14px 2px rgba(0, 0, 0, 0.12);
}
.atlas-copco-theme {
  --mat-menu-item-label-text-color: rgba(0, 0, 0, 0.87);
  --mat-menu-item-icon-color: rgba(0, 0, 0, 0.87);
  --mat-menu-item-hover-state-layer-color: rgba(0, 0, 0, 0.04);
  --mat-menu-item-focus-state-layer-color: rgba(0, 0, 0, 0.04);
  --mat-menu-container-color: white;
  --mat-menu-divider-color: rgba(0, 0, 0, 0.12);
}
.atlas-copco-theme {
  --mdc-list-list-item-container-shape: 0;
  --mdc-list-list-item-leading-avatar-shape: 50%;
  --mdc-list-list-item-container-color: transparent;
  --mdc-list-list-item-selected-container-color: transparent;
  --mdc-list-list-item-leading-avatar-color: transparent;
  --mdc-list-list-item-leading-icon-size: 24px;
  --mdc-list-list-item-leading-avatar-size: 40px;
  --mdc-list-list-item-trailing-icon-size: 24px;
  --mdc-list-list-item-disabled-state-layer-color: transparent;
  --mdc-list-list-item-disabled-state-layer-opacity: 0;
  --mdc-list-list-item-disabled-label-text-opacity: 0.38;
  --mdc-list-list-item-disabled-leading-icon-opacity: 0.38;
  --mdc-list-list-item-disabled-trailing-icon-opacity: 0.38;
}
.atlas-copco-theme {
  --mat-list-active-indicator-color: transparent;
  --mat-list-active-indicator-shape: 4px;
}
.atlas-copco-theme {
  --mdc-list-list-item-label-text-color: rgba(0, 0, 0, 0.87);
  --mdc-list-list-item-supporting-text-color: rgba(0, 0, 0, 0.54);
  --mdc-list-list-item-leading-icon-color: rgba(0, 0, 0, 0.38);
  --mdc-list-list-item-trailing-supporting-text-color: rgba(0, 0, 0, 0.38);
  --mdc-list-list-item-trailing-icon-color: rgba(0, 0, 0, 0.38);
  --mdc-list-list-item-selected-trailing-icon-color: rgba(0, 0, 0, 0.38);
  --mdc-list-list-item-disabled-label-text-color: black;
  --mdc-list-list-item-disabled-leading-icon-color: black;
  --mdc-list-list-item-disabled-trailing-icon-color: black;
  --mdc-list-list-item-hover-label-text-color: rgba(0, 0, 0, 0.87);
  --mdc-list-list-item-hover-leading-icon-color: rgba(0, 0, 0, 0.38);
  --mdc-list-list-item-hover-trailing-icon-color: rgba(0, 0, 0, 0.38);
  --mdc-list-list-item-focus-label-text-color: rgba(0, 0, 0, 0.87);
  --mdc-list-list-item-hover-state-layer-color: black;
  --mdc-list-list-item-hover-state-layer-opacity: 0.04;
  --mdc-list-list-item-focus-state-layer-color: black;
  --mdc-list-list-item-focus-state-layer-opacity: 0.12;
}
.atlas-copco-theme .mdc-list-item__start,
.atlas-copco-theme .mdc-list-item__end {
  --mdc-radio-disabled-selected-icon-color: black;
  --mdc-radio-disabled-unselected-icon-color: black;
  --mdc-radio-unselected-hover-icon-color: #212121;
  --mdc-radio-unselected-focus-icon-color: #212121;
  --mdc-radio-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-radio-selected-focus-icon-color: #0099cc;
  --mdc-radio-selected-hover-icon-color: #0099cc;
  --mdc-radio-selected-icon-color: #0099cc;
  --mdc-radio-selected-pressed-icon-color: #0099cc;
}
.atlas-copco-theme .mat-accent .mdc-list-item__start,
.atlas-copco-theme .mat-accent .mdc-list-item__end {
  --mdc-radio-disabled-selected-icon-color: black;
  --mdc-radio-disabled-unselected-icon-color: black;
  --mdc-radio-unselected-hover-icon-color: #212121;
  --mdc-radio-unselected-focus-icon-color: #212121;
  --mdc-radio-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-radio-selected-focus-icon-color: #a4d7ff;
  --mdc-radio-selected-hover-icon-color: #a4d7ff;
  --mdc-radio-selected-icon-color: #a4d7ff;
  --mdc-radio-selected-pressed-icon-color: #a4d7ff;
}
.atlas-copco-theme .mat-warn .mdc-list-item__start,
.atlas-copco-theme .mat-warn .mdc-list-item__end {
  --mdc-radio-disabled-selected-icon-color: black;
  --mdc-radio-disabled-unselected-icon-color: black;
  --mdc-radio-unselected-hover-icon-color: #212121;
  --mdc-radio-unselected-focus-icon-color: #212121;
  --mdc-radio-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-radio-selected-focus-icon-color: #c8102e;
  --mdc-radio-selected-hover-icon-color: #c8102e;
  --mdc-radio-selected-icon-color: #c8102e;
  --mdc-radio-selected-pressed-icon-color: #c8102e;
}
.atlas-copco-theme .mat-mdc-list-option {
  --mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, 0.38);
  --mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, 0.38);
  --mdc-checkbox-selected-checkmark-color: white;
  --mdc-checkbox-selected-focus-icon-color: #0099cc;
  --mdc-checkbox-selected-hover-icon-color: #0099cc;
  --mdc-checkbox-selected-icon-color: #0099cc;
  --mdc-checkbox-selected-pressed-icon-color: #0099cc;
  --mdc-checkbox-unselected-focus-icon-color: #212121;
  --mdc-checkbox-unselected-hover-icon-color: #212121;
  --mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-checkbox-selected-focus-state-layer-color: #0099cc;
  --mdc-checkbox-selected-hover-state-layer-color: #0099cc;
  --mdc-checkbox-selected-pressed-state-layer-color: #0099cc;
  --mdc-checkbox-unselected-focus-state-layer-color: black;
  --mdc-checkbox-unselected-hover-state-layer-color: black;
  --mdc-checkbox-unselected-pressed-state-layer-color: black;
}
.atlas-copco-theme .mat-mdc-list-option.mat-accent {
  --mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, 0.38);
  --mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, 0.38);
  --mdc-checkbox-selected-checkmark-color: black;
  --mdc-checkbox-selected-focus-icon-color: #a4d7ff;
  --mdc-checkbox-selected-hover-icon-color: #a4d7ff;
  --mdc-checkbox-selected-icon-color: #a4d7ff;
  --mdc-checkbox-selected-pressed-icon-color: #a4d7ff;
  --mdc-checkbox-unselected-focus-icon-color: #212121;
  --mdc-checkbox-unselected-hover-icon-color: #212121;
  --mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-checkbox-selected-focus-state-layer-color: #a4d7ff;
  --mdc-checkbox-selected-hover-state-layer-color: #a4d7ff;
  --mdc-checkbox-selected-pressed-state-layer-color: #a4d7ff;
  --mdc-checkbox-unselected-focus-state-layer-color: black;
  --mdc-checkbox-unselected-hover-state-layer-color: black;
  --mdc-checkbox-unselected-pressed-state-layer-color: black;
}
.atlas-copco-theme .mat-mdc-list-option.mat-warn {
  --mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, 0.38);
  --mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, 0.38);
  --mdc-checkbox-selected-checkmark-color: white;
  --mdc-checkbox-selected-focus-icon-color: #c8102e;
  --mdc-checkbox-selected-hover-icon-color: #c8102e;
  --mdc-checkbox-selected-icon-color: #c8102e;
  --mdc-checkbox-selected-pressed-icon-color: #c8102e;
  --mdc-checkbox-unselected-focus-icon-color: #212121;
  --mdc-checkbox-unselected-hover-icon-color: #212121;
  --mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-checkbox-selected-focus-state-layer-color: #c8102e;
  --mdc-checkbox-selected-hover-state-layer-color: #c8102e;
  --mdc-checkbox-selected-pressed-state-layer-color: #c8102e;
  --mdc-checkbox-unselected-focus-state-layer-color: black;
  --mdc-checkbox-unselected-hover-state-layer-color: black;
  --mdc-checkbox-unselected-pressed-state-layer-color: black;
}
.atlas-copco-theme .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text,
.atlas-copco-theme .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__start,
.atlas-copco-theme .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text,
.atlas-copco-theme .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__start {
  color: #0099cc;
}
.atlas-copco-theme .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__start,
.atlas-copco-theme .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__content,
.atlas-copco-theme .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__end {
  opacity: 1;
}
.atlas-copco-theme {
  --mat-paginator-container-text-color: rgba(0, 0, 0, 0.87);
  --mat-paginator-container-background-color: white;
  --mat-paginator-enabled-icon-color: rgba(0, 0, 0, 0.54);
  --mat-paginator-disabled-icon-color: rgba(0, 0, 0, 0.12);
}
.atlas-copco-theme {
  --mdc-secondary-navigation-tab-container-height: 48px;
}
.atlas-copco-theme {
  --mdc-tab-indicator-active-indicator-height: 2px;
  --mdc-tab-indicator-active-indicator-shape: 0;
}
.atlas-copco-theme {
  --mat-tab-header-divider-color: transparent;
  --mat-tab-header-divider-height: 0;
}
.atlas-copco-theme .mat-mdc-tab-group,
.atlas-copco-theme .mat-mdc-tab-nav-bar {
  --mdc-tab-indicator-active-indicator-color: #0099cc;
}
.atlas-copco-theme .mat-mdc-tab-group,
.atlas-copco-theme .mat-mdc-tab-nav-bar {
  --mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, 0.38);
  --mat-tab-header-pagination-icon-color: black;
  --mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, 0.6);
  --mat-tab-header-active-label-text-color: #0099cc;
  --mat-tab-header-active-ripple-color: #0099cc;
  --mat-tab-header-inactive-ripple-color: #0099cc;
  --mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, 0.6);
  --mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, 0.6);
  --mat-tab-header-active-focus-label-text-color: #0099cc;
  --mat-tab-header-active-hover-label-text-color: #0099cc;
  --mat-tab-header-active-focus-indicator-color: #0099cc;
  --mat-tab-header-active-hover-indicator-color: #0099cc;
}
.atlas-copco-theme .mat-mdc-tab-group.mat-accent,
.atlas-copco-theme .mat-mdc-tab-nav-bar.mat-accent {
  --mdc-tab-indicator-active-indicator-color: #a4d7ff;
}
.atlas-copco-theme .mat-mdc-tab-group.mat-accent,
.atlas-copco-theme .mat-mdc-tab-nav-bar.mat-accent {
  --mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, 0.38);
  --mat-tab-header-pagination-icon-color: black;
  --mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, 0.6);
  --mat-tab-header-active-label-text-color: #a4d7ff;
  --mat-tab-header-active-ripple-color: #a4d7ff;
  --mat-tab-header-inactive-ripple-color: #a4d7ff;
  --mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, 0.6);
  --mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, 0.6);
  --mat-tab-header-active-focus-label-text-color: #a4d7ff;
  --mat-tab-header-active-hover-label-text-color: #a4d7ff;
  --mat-tab-header-active-focus-indicator-color: #a4d7ff;
  --mat-tab-header-active-hover-indicator-color: #a4d7ff;
}
.atlas-copco-theme .mat-mdc-tab-group.mat-warn,
.atlas-copco-theme .mat-mdc-tab-nav-bar.mat-warn {
  --mdc-tab-indicator-active-indicator-color: #c8102e;
}
.atlas-copco-theme .mat-mdc-tab-group.mat-warn,
.atlas-copco-theme .mat-mdc-tab-nav-bar.mat-warn {
  --mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, 0.38);
  --mat-tab-header-pagination-icon-color: black;
  --mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, 0.6);
  --mat-tab-header-active-label-text-color: #c8102e;
  --mat-tab-header-active-ripple-color: #c8102e;
  --mat-tab-header-inactive-ripple-color: #c8102e;
  --mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, 0.6);
  --mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, 0.6);
  --mat-tab-header-active-focus-label-text-color: #c8102e;
  --mat-tab-header-active-hover-label-text-color: #c8102e;
  --mat-tab-header-active-focus-indicator-color: #c8102e;
  --mat-tab-header-active-hover-indicator-color: #c8102e;
}
.atlas-copco-theme .mat-mdc-tab-group.mat-background-primary,
.atlas-copco-theme .mat-mdc-tab-nav-bar.mat-background-primary {
  --mat-tab-header-with-background-background-color: #0099cc;
  --mat-tab-header-with-background-foreground-color: white;
}
.atlas-copco-theme .mat-mdc-tab-group.mat-background-accent,
.atlas-copco-theme .mat-mdc-tab-nav-bar.mat-background-accent {
  --mat-tab-header-with-background-background-color: #a4d7ff;
  --mat-tab-header-with-background-foreground-color: black;
}
.atlas-copco-theme .mat-mdc-tab-group.mat-background-warn,
.atlas-copco-theme .mat-mdc-tab-nav-bar.mat-background-warn {
  --mat-tab-header-with-background-background-color: #c8102e;
  --mat-tab-header-with-background-foreground-color: white;
}
.atlas-copco-theme {
  --mdc-checkbox-disabled-selected-checkmark-color: #fff;
  --mdc-checkbox-selected-focus-state-layer-opacity: 0.16;
  --mdc-checkbox-selected-hover-state-layer-opacity: 0.04;
  --mdc-checkbox-selected-pressed-state-layer-opacity: 0.16;
  --mdc-checkbox-unselected-focus-state-layer-opacity: 0.16;
  --mdc-checkbox-unselected-hover-state-layer-opacity: 0.04;
  --mdc-checkbox-unselected-pressed-state-layer-opacity: 0.16;
}
.atlas-copco-theme {
  --mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, 0.38);
  --mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, 0.38);
  --mdc-checkbox-selected-checkmark-color: black;
  --mdc-checkbox-selected-focus-icon-color: #a4d7ff;
  --mdc-checkbox-selected-hover-icon-color: #a4d7ff;
  --mdc-checkbox-selected-icon-color: #a4d7ff;
  --mdc-checkbox-selected-pressed-icon-color: #a4d7ff;
  --mdc-checkbox-unselected-focus-icon-color: #212121;
  --mdc-checkbox-unselected-hover-icon-color: #212121;
  --mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-checkbox-selected-focus-state-layer-color: #a4d7ff;
  --mdc-checkbox-selected-hover-state-layer-color: #a4d7ff;
  --mdc-checkbox-selected-pressed-state-layer-color: #a4d7ff;
  --mdc-checkbox-unselected-focus-state-layer-color: black;
  --mdc-checkbox-unselected-hover-state-layer-color: black;
  --mdc-checkbox-unselected-pressed-state-layer-color: black;
}
.atlas-copco-theme {
  --mat-checkbox-disabled-label-color: rgba(0, 0, 0, 0.38);
  --mat-checkbox-label-text-color: rgba(0, 0, 0, 0.87);
}
.atlas-copco-theme .mat-mdc-checkbox.mat-primary {
  --mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, 0.38);
  --mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, 0.38);
  --mdc-checkbox-selected-checkmark-color: white;
  --mdc-checkbox-selected-focus-icon-color: #0099cc;
  --mdc-checkbox-selected-hover-icon-color: #0099cc;
  --mdc-checkbox-selected-icon-color: #0099cc;
  --mdc-checkbox-selected-pressed-icon-color: #0099cc;
  --mdc-checkbox-unselected-focus-icon-color: #212121;
  --mdc-checkbox-unselected-hover-icon-color: #212121;
  --mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-checkbox-selected-focus-state-layer-color: #0099cc;
  --mdc-checkbox-selected-hover-state-layer-color: #0099cc;
  --mdc-checkbox-selected-pressed-state-layer-color: #0099cc;
  --mdc-checkbox-unselected-focus-state-layer-color: black;
  --mdc-checkbox-unselected-hover-state-layer-color: black;
  --mdc-checkbox-unselected-pressed-state-layer-color: black;
}
.atlas-copco-theme .mat-mdc-checkbox.mat-warn {
  --mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, 0.38);
  --mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, 0.38);
  --mdc-checkbox-selected-checkmark-color: white;
  --mdc-checkbox-selected-focus-icon-color: #c8102e;
  --mdc-checkbox-selected-hover-icon-color: #c8102e;
  --mdc-checkbox-selected-icon-color: #c8102e;
  --mdc-checkbox-selected-pressed-icon-color: #c8102e;
  --mdc-checkbox-unselected-focus-icon-color: #212121;
  --mdc-checkbox-unselected-hover-icon-color: #212121;
  --mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-checkbox-selected-focus-state-layer-color: #c8102e;
  --mdc-checkbox-selected-hover-state-layer-color: #c8102e;
  --mdc-checkbox-selected-pressed-state-layer-color: #c8102e;
  --mdc-checkbox-unselected-focus-state-layer-color: black;
  --mdc-checkbox-unselected-hover-state-layer-color: black;
  --mdc-checkbox-unselected-pressed-state-layer-color: black;
}
.atlas-copco-theme {
  --mdc-text-button-container-shape: 4px;
  --mdc-text-button-keep-touch-target: false;
}
.atlas-copco-theme {
  --mdc-filled-button-container-shape: 4px;
  --mdc-filled-button-keep-touch-target: false;
}
.atlas-copco-theme {
  --mdc-protected-button-container-shape: 4px;
  --mdc-protected-button-container-elevation-shadow:
    0px 3px 1px -2px rgba(0, 0, 0, 0.2),
    0px 2px 2px 0px rgba(0, 0, 0, 0.14),
    0px 1px 5px 0px rgba(0, 0, 0, 0.12);
  --mdc-protected-button-disabled-container-elevation-shadow:
    0px 0px 0px 0px rgba(0, 0, 0, 0.2),
    0px 0px 0px 0px rgba(0, 0, 0, 0.14),
    0px 0px 0px 0px rgba(0, 0, 0, 0.12);
  --mdc-protected-button-focus-container-elevation-shadow:
    0px 2px 4px -1px rgba(0, 0, 0, 0.2),
    0px 4px 5px 0px rgba(0, 0, 0, 0.14),
    0px 1px 10px 0px rgba(0, 0, 0, 0.12);
  --mdc-protected-button-hover-container-elevation-shadow:
    0px 2px 4px -1px rgba(0, 0, 0, 0.2),
    0px 4px 5px 0px rgba(0, 0, 0, 0.14),
    0px 1px 10px 0px rgba(0, 0, 0, 0.12);
  --mdc-protected-button-pressed-container-elevation-shadow:
    0px 5px 5px -3px rgba(0, 0, 0, 0.2),
    0px 8px 10px 1px rgba(0, 0, 0, 0.14),
    0px 3px 14px 2px rgba(0, 0, 0, 0.12);
}
.atlas-copco-theme {
  --mdc-outlined-button-keep-touch-target: false;
  --mdc-outlined-button-outline-width: 1px;
  --mdc-outlined-button-container-shape: 4px;
}
.atlas-copco-theme {
  --mat-text-button-horizontal-padding: 8px;
  --mat-text-button-with-icon-horizontal-padding: 8px;
  --mat-text-button-icon-spacing: 8px;
  --mat-text-button-icon-offset: 0;
}
.atlas-copco-theme {
  --mat-filled-button-horizontal-padding: 16px;
  --mat-filled-button-icon-spacing: 8px;
  --mat-filled-button-icon-offset: -4px;
}
.atlas-copco-theme {
  --mat-protected-button-horizontal-padding: 16px;
  --mat-protected-button-icon-spacing: 8px;
  --mat-protected-button-icon-offset: -4px;
}
.atlas-copco-theme {
  --mat-outlined-button-horizontal-padding: 15px;
  --mat-outlined-button-icon-spacing: 8px;
  --mat-outlined-button-icon-offset: -4px;
}
.atlas-copco-theme {
  --mdc-text-button-label-text-color: black;
  --mdc-text-button-disabled-label-text-color: rgba(0, 0, 0, 0.38);
}
.atlas-copco-theme {
  --mat-text-button-state-layer-color: black;
  --mat-text-button-disabled-state-layer-color: black;
  --mat-text-button-ripple-color: rgba(0, 0, 0, 0.1);
  --mat-text-button-hover-state-layer-opacity: 0.04;
  --mat-text-button-focus-state-layer-opacity: 0.12;
  --mat-text-button-pressed-state-layer-opacity: 0.12;
}
.atlas-copco-theme {
  --mdc-filled-button-container-color: white;
  --mdc-filled-button-label-text-color: black;
  --mdc-filled-button-disabled-container-color: rgba(0, 0, 0, 0.12);
  --mdc-filled-button-disabled-label-text-color: rgba(0, 0, 0, 0.38);
}
.atlas-copco-theme {
  --mat-filled-button-state-layer-color: black;
  --mat-filled-button-disabled-state-layer-color: black;
  --mat-filled-button-ripple-color: rgba(0, 0, 0, 0.1);
  --mat-filled-button-hover-state-layer-opacity: 0.04;
  --mat-filled-button-focus-state-layer-opacity: 0.12;
  --mat-filled-button-pressed-state-layer-opacity: 0.12;
}
.atlas-copco-theme {
  --mdc-protected-button-container-color: white;
  --mdc-protected-button-label-text-color: black;
  --mdc-protected-button-disabled-container-color: rgba(0, 0, 0, 0.12);
  --mdc-protected-button-disabled-label-text-color: rgba(0, 0, 0, 0.38);
}
.atlas-copco-theme {
  --mat-protected-button-state-layer-color: black;
  --mat-protected-button-disabled-state-layer-color: black;
  --mat-protected-button-ripple-color: rgba(0, 0, 0, 0.1);
  --mat-protected-button-hover-state-layer-opacity: 0.04;
  --mat-protected-button-focus-state-layer-opacity: 0.12;
  --mat-protected-button-pressed-state-layer-opacity: 0.12;
}
.atlas-copco-theme {
  --mdc-outlined-button-disabled-outline-color: rgba(0, 0, 0, 0.12);
  --mdc-outlined-button-disabled-label-text-color: rgba(0, 0, 0, 0.38);
  --mdc-outlined-button-label-text-color: black;
  --mdc-outlined-button-outline-color: rgba(0, 0, 0, 0.12);
}
.atlas-copco-theme {
  --mat-outlined-button-state-layer-color: black;
  --mat-outlined-button-disabled-state-layer-color: black;
  --mat-outlined-button-ripple-color: rgba(0, 0, 0, 0.1);
  --mat-outlined-button-hover-state-layer-opacity: 0.04;
  --mat-outlined-button-focus-state-layer-opacity: 0.12;
  --mat-outlined-button-pressed-state-layer-opacity: 0.12;
}
.atlas-copco-theme .mat-mdc-button.mat-primary {
  --mdc-text-button-label-text-color: #0099cc;
}
.atlas-copco-theme .mat-mdc-button.mat-primary {
  --mat-text-button-state-layer-color: #0099cc;
  --mat-text-button-ripple-color: rgba(0, 153, 204, 0.1);
}
.atlas-copco-theme .mat-mdc-button.mat-accent {
  --mdc-text-button-label-text-color: #a4d7ff;
}
.atlas-copco-theme .mat-mdc-button.mat-accent {
  --mat-text-button-state-layer-color: #a4d7ff;
  --mat-text-button-ripple-color: rgba(164, 215, 255, 0.1);
}
.atlas-copco-theme .mat-mdc-button.mat-warn {
  --mdc-text-button-label-text-color: #c8102e;
}
.atlas-copco-theme .mat-mdc-button.mat-warn {
  --mat-text-button-state-layer-color: #c8102e;
  --mat-text-button-ripple-color: rgba(200, 16, 46, 0.1);
}
.atlas-copco-theme .mat-mdc-unelevated-button.mat-primary {
  --mdc-filled-button-container-color: #0099cc;
  --mdc-filled-button-label-text-color: white;
}
.atlas-copco-theme .mat-mdc-unelevated-button.mat-primary {
  --mat-filled-button-state-layer-color: white;
  --mat-filled-button-ripple-color: rgba(255, 255, 255, 0.1);
}
.atlas-copco-theme .mat-mdc-unelevated-button.mat-accent {
  --mdc-filled-button-container-color: #a4d7ff;
  --mdc-filled-button-label-text-color: black;
}
.atlas-copco-theme .mat-mdc-unelevated-button.mat-accent {
  --mat-filled-button-state-layer-color: black;
  --mat-filled-button-ripple-color: rgba(0, 0, 0, 0.1);
}
.atlas-copco-theme .mat-mdc-unelevated-button.mat-warn {
  --mdc-filled-button-container-color: #c8102e;
  --mdc-filled-button-label-text-color: white;
}
.atlas-copco-theme .mat-mdc-unelevated-button.mat-warn {
  --mat-filled-button-state-layer-color: white;
  --mat-filled-button-ripple-color: rgba(255, 255, 255, 0.1);
}
.atlas-copco-theme .mat-mdc-raised-button.mat-primary {
  --mdc-protected-button-container-color: #0099cc;
  --mdc-protected-button-label-text-color: white;
}
.atlas-copco-theme .mat-mdc-raised-button.mat-primary {
  --mat-protected-button-state-layer-color: white;
  --mat-protected-button-ripple-color: rgba(255, 255, 255, 0.1);
}
.atlas-copco-theme .mat-mdc-raised-button.mat-accent {
  --mdc-protected-button-container-color: #a4d7ff;
  --mdc-protected-button-label-text-color: black;
}
.atlas-copco-theme .mat-mdc-raised-button.mat-accent {
  --mat-protected-button-state-layer-color: black;
  --mat-protected-button-ripple-color: rgba(0, 0, 0, 0.1);
}
.atlas-copco-theme .mat-mdc-raised-button.mat-warn {
  --mdc-protected-button-container-color: #c8102e;
  --mdc-protected-button-label-text-color: white;
}
.atlas-copco-theme .mat-mdc-raised-button.mat-warn {
  --mat-protected-button-state-layer-color: white;
  --mat-protected-button-ripple-color: rgba(255, 255, 255, 0.1);
}
.atlas-copco-theme .mat-mdc-outlined-button.mat-primary {
  --mdc-outlined-button-label-text-color: #0099cc;
  --mdc-outlined-button-outline-color: rgba(0, 0, 0, 0.12);
}
.atlas-copco-theme .mat-mdc-outlined-button.mat-primary {
  --mat-outlined-button-state-layer-color: #0099cc;
  --mat-outlined-button-ripple-color: rgba(0, 153, 204, 0.1);
}
.atlas-copco-theme .mat-mdc-outlined-button.mat-accent {
  --mdc-outlined-button-label-text-color: #a4d7ff;
  --mdc-outlined-button-outline-color: rgba(0, 0, 0, 0.12);
}
.atlas-copco-theme .mat-mdc-outlined-button.mat-accent {
  --mat-outlined-button-state-layer-color: #a4d7ff;
  --mat-outlined-button-ripple-color: rgba(164, 215, 255, 0.1);
}
.atlas-copco-theme .mat-mdc-outlined-button.mat-warn {
  --mdc-outlined-button-label-text-color: #c8102e;
  --mdc-outlined-button-outline-color: rgba(0, 0, 0, 0.12);
}
.atlas-copco-theme .mat-mdc-outlined-button.mat-warn {
  --mat-outlined-button-state-layer-color: #c8102e;
  --mat-outlined-button-ripple-color: rgba(200, 16, 46, 0.1);
}
.atlas-copco-theme {
  --mdc-icon-button-icon-size: 24px;
}
.atlas-copco-theme {
  --mdc-icon-button-icon-color: inherit;
  --mdc-icon-button-disabled-icon-color: rgba(0, 0, 0, 0.38);
}
.atlas-copco-theme {
  --mat-icon-button-state-layer-color: black;
  --mat-icon-button-disabled-state-layer-color: black;
  --mat-icon-button-ripple-color: rgba(0, 0, 0, 0.1);
  --mat-icon-button-hover-state-layer-opacity: 0.04;
  --mat-icon-button-focus-state-layer-opacity: 0.12;
  --mat-icon-button-pressed-state-layer-opacity: 0.12;
}
.atlas-copco-theme .mat-mdc-icon-button.mat-primary {
  --mdc-icon-button-icon-color: #0099cc;
}
.atlas-copco-theme .mat-mdc-icon-button.mat-primary {
  --mat-icon-button-state-layer-color: #0099cc;
  --mat-icon-button-ripple-color: rgba(0, 153, 204, 0.1);
}
.atlas-copco-theme .mat-mdc-icon-button.mat-accent {
  --mdc-icon-button-icon-color: #a4d7ff;
}
.atlas-copco-theme .mat-mdc-icon-button.mat-accent {
  --mat-icon-button-state-layer-color: #a4d7ff;
  --mat-icon-button-ripple-color: rgba(164, 215, 255, 0.1);
}
.atlas-copco-theme .mat-mdc-icon-button.mat-warn {
  --mdc-icon-button-icon-color: #c8102e;
}
.atlas-copco-theme .mat-mdc-icon-button.mat-warn {
  --mat-icon-button-state-layer-color: #c8102e;
  --mat-icon-button-ripple-color: rgba(200, 16, 46, 0.1);
}
.atlas-copco-theme {
  --mdc-fab-container-shape: 50%;
  --mdc-fab-container-elevation-shadow:
    0px 3px 5px -1px rgba(0, 0, 0, 0.2),
    0px 6px 10px 0px rgba(0, 0, 0, 0.14),
    0px 1px 18px 0px rgba(0, 0, 0, 0.12);
  --mdc-fab-focus-container-elevation-shadow:
    0px 5px 5px -3px rgba(0, 0, 0, 0.2),
    0px 8px 10px 1px rgba(0, 0, 0, 0.14),
    0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  --mdc-fab-hover-container-elevation-shadow:
    0px 5px 5px -3px rgba(0, 0, 0, 0.2),
    0px 8px 10px 1px rgba(0, 0, 0, 0.14),
    0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  --mdc-fab-pressed-container-elevation-shadow:
    0px 7px 8px -4px rgba(0, 0, 0, 0.2),
    0px 12px 17px 2px rgba(0, 0, 0, 0.14),
    0px 5px 22px 4px rgba(0, 0, 0, 0.12);
}
.atlas-copco-theme {
  --mdc-fab-small-container-shape: 50%;
  --mdc-fab-small-container-elevation-shadow:
    0px 3px 5px -1px rgba(0, 0, 0, 0.2),
    0px 6px 10px 0px rgba(0, 0, 0, 0.14),
    0px 1px 18px 0px rgba(0, 0, 0, 0.12);
  --mdc-fab-small-focus-container-elevation-shadow:
    0px 5px 5px -3px rgba(0, 0, 0, 0.2),
    0px 8px 10px 1px rgba(0, 0, 0, 0.14),
    0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  --mdc-fab-small-hover-container-elevation-shadow:
    0px 5px 5px -3px rgba(0, 0, 0, 0.2),
    0px 8px 10px 1px rgba(0, 0, 0, 0.14),
    0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  --mdc-fab-small-pressed-container-elevation-shadow:
    0px 7px 8px -4px rgba(0, 0, 0, 0.2),
    0px 12px 17px 2px rgba(0, 0, 0, 0.14),
    0px 5px 22px 4px rgba(0, 0, 0, 0.12);
}
.atlas-copco-theme {
  --mdc-extended-fab-container-height: 48px;
  --mdc-extended-fab-container-shape: 24px;
  --mdc-extended-fab-container-elevation-shadow:
    0px 3px 5px -1px rgba(0, 0, 0, 0.2),
    0px 6px 10px 0px rgba(0, 0, 0, 0.14),
    0px 1px 18px 0px rgba(0, 0, 0, 0.12);
  --mdc-extended-fab-focus-container-elevation-shadow:
    0px 5px 5px -3px rgba(0, 0, 0, 0.2),
    0px 8px 10px 1px rgba(0, 0, 0, 0.14),
    0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  --mdc-extended-fab-hover-container-elevation-shadow:
    0px 5px 5px -3px rgba(0, 0, 0, 0.2),
    0px 8px 10px 1px rgba(0, 0, 0, 0.14),
    0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  --mdc-extended-fab-pressed-container-elevation-shadow:
    0px 7px 8px -4px rgba(0, 0, 0, 0.2),
    0px 12px 17px 2px rgba(0, 0, 0, 0.14),
    0px 5px 22px 4px rgba(0, 0, 0, 0.12);
}
.atlas-copco-theme {
  --mdc-fab-container-color: white;
}
.atlas-copco-theme {
  --mat-fab-foreground-color: black;
  --mat-fab-state-layer-color: black;
  --mat-fab-disabled-state-layer-color: black;
  --mat-fab-ripple-color: rgba(0, 0, 0, 0.1);
  --mat-fab-hover-state-layer-opacity: 0.04;
  --mat-fab-focus-state-layer-opacity: 0.12;
  --mat-fab-pressed-state-layer-opacity: 0.12;
  --mat-fab-disabled-state-container-color: rgba(0, 0, 0, 0.12);
  --mat-fab-disabled-state-foreground-color: rgba(0, 0, 0, 0.38);
}
.atlas-copco-theme {
  --mdc-fab-small-container-color: white;
}
.atlas-copco-theme {
  --mat-fab-small-foreground-color: black;
  --mat-fab-small-state-layer-color: black;
  --mat-fab-small-disabled-state-layer-color: black;
  --mat-fab-small-ripple-color: rgba(0, 0, 0, 0.1);
  --mat-fab-small-hover-state-layer-opacity: 0.04;
  --mat-fab-small-focus-state-layer-opacity: 0.12;
  --mat-fab-small-pressed-state-layer-opacity: 0.12;
  --mat-fab-small-disabled-state-container-color: rgba(0, 0, 0, 0.12);
  --mat-fab-small-disabled-state-foreground-color: rgba(0, 0, 0, 0.38);
}
.atlas-copco-theme .mat-mdc-fab.mat-primary {
  --mdc-fab-container-color: #0099cc;
}
.atlas-copco-theme .mat-mdc-fab.mat-primary {
  --mat-fab-foreground-color: white;
  --mat-fab-state-layer-color: white;
  --mat-fab-ripple-color: rgba(255, 255, 255, 0.1);
}
.atlas-copco-theme .mat-mdc-fab.mat-accent {
  --mdc-fab-container-color: #a4d7ff;
}
.atlas-copco-theme .mat-mdc-fab.mat-accent {
  --mat-fab-foreground-color: black;
  --mat-fab-state-layer-color: black;
  --mat-fab-ripple-color: rgba(0, 0, 0, 0.1);
}
.atlas-copco-theme .mat-mdc-fab.mat-warn {
  --mdc-fab-container-color: #c8102e;
}
.atlas-copco-theme .mat-mdc-fab.mat-warn {
  --mat-fab-foreground-color: white;
  --mat-fab-state-layer-color: white;
  --mat-fab-ripple-color: rgba(255, 255, 255, 0.1);
}
.atlas-copco-theme .mat-mdc-mini-fab.mat-primary {
  --mdc-fab-small-container-color: #0099cc;
}
.atlas-copco-theme .mat-mdc-mini-fab.mat-primary {
  --mat-fab-small-foreground-color: white;
  --mat-fab-small-state-layer-color: white;
  --mat-fab-small-ripple-color: rgba(255, 255, 255, 0.1);
}
.atlas-copco-theme .mat-mdc-mini-fab.mat-accent {
  --mdc-fab-small-container-color: #a4d7ff;
}
.atlas-copco-theme .mat-mdc-mini-fab.mat-accent {
  --mat-fab-small-foreground-color: black;
  --mat-fab-small-state-layer-color: black;
  --mat-fab-small-ripple-color: rgba(0, 0, 0, 0.1);
}
.atlas-copco-theme .mat-mdc-mini-fab.mat-warn {
  --mdc-fab-small-container-color: #c8102e;
}
.atlas-copco-theme .mat-mdc-mini-fab.mat-warn {
  --mat-fab-small-foreground-color: white;
  --mat-fab-small-state-layer-color: white;
  --mat-fab-small-ripple-color: rgba(255, 255, 255, 0.1);
}
.atlas-copco-theme {
  --mdc-snackbar-container-shape: 4px;
}
.atlas-copco-theme {
  --mdc-snackbar-container-color: #333333;
  --mdc-snackbar-supporting-text-color: rgba(255, 255, 255, 0.87);
}
.atlas-copco-theme {
  --mat-snack-bar-button-color: #a4d7ff;
}
.atlas-copco-theme {
  --mat-table-row-item-outline-width: 1px;
}
.atlas-copco-theme {
  --mat-table-background-color: white;
  --mat-table-header-headline-color: rgba(0, 0, 0, 0.87);
  --mat-table-row-item-label-text-color: rgba(0, 0, 0, 0.87);
  --mat-table-row-item-outline-color: rgba(0, 0, 0, 0.12);
}
.atlas-copco-theme {
  --mdc-circular-progress-active-indicator-width: 4px;
  --mdc-circular-progress-size: 48px;
}
.atlas-copco-theme {
  --mdc-circular-progress-active-indicator-color: #0099cc;
}
.atlas-copco-theme .mat-accent {
  --mdc-circular-progress-active-indicator-color: #a4d7ff;
}
.atlas-copco-theme .mat-warn {
  --mdc-circular-progress-active-indicator-color: #c8102e;
}
.atlas-copco-theme {
  --mat-badge-container-shape: 50%;
  --mat-badge-container-size: unset;
  --mat-badge-small-size-container-size: unset;
  --mat-badge-large-size-container-size: unset;
  --mat-badge-legacy-container-size: 22px;
  --mat-badge-legacy-small-size-container-size: 16px;
  --mat-badge-legacy-large-size-container-size: 28px;
  --mat-badge-container-offset: -11px 0;
  --mat-badge-small-size-container-offset: -8px 0;
  --mat-badge-large-size-container-offset: -14px 0;
  --mat-badge-container-overlap-offset: -11px;
  --mat-badge-small-size-container-overlap-offset: -8px;
  --mat-badge-large-size-container-overlap-offset: -14px;
  --mat-badge-container-padding: 0;
  --mat-badge-small-size-container-padding: 0;
  --mat-badge-large-size-container-padding: 0;
}
.atlas-copco-theme {
  --mat-badge-background-color: #0099cc;
  --mat-badge-text-color: white;
  --mat-badge-disabled-state-background-color: #b9b9b9;
  --mat-badge-disabled-state-text-color: rgba(0, 0, 0, 0.38);
}
.atlas-copco-theme .mat-badge-accent {
  --mat-badge-background-color: #a4d7ff;
  --mat-badge-text-color: black;
}
.atlas-copco-theme .mat-badge-warn {
  --mat-badge-background-color: #c8102e;
  --mat-badge-text-color: white;
}
.atlas-copco-theme {
  --mat-bottom-sheet-container-shape: 4px;
}
.atlas-copco-theme {
  --mat-bottom-sheet-container-text-color: rgba(0, 0, 0, 0.87);
  --mat-bottom-sheet-container-background-color: white;
}
.atlas-copco-theme {
  --mat-legacy-button-toggle-height: 36px;
  --mat-legacy-button-toggle-shape: 2px;
  --mat-legacy-button-toggle-focus-state-layer-opacity: 1;
}
.atlas-copco-theme {
  --mat-standard-button-toggle-shape: 4px;
  --mat-standard-button-toggle-hover-state-layer-opacity: 0.04;
  --mat-standard-button-toggle-focus-state-layer-opacity: 0.12;
}
.atlas-copco-theme {
  --mat-legacy-button-toggle-text-color: rgba(0, 0, 0, 0.38);
  --mat-legacy-button-toggle-state-layer-color: rgba(0, 0, 0, 0.12);
  --mat-legacy-button-toggle-selected-state-text-color: rgba(0, 0, 0, 0.54);
  --mat-legacy-button-toggle-selected-state-background-color: #e0e0e0;
  --mat-legacy-button-toggle-disabled-state-text-color: rgba(0, 0, 0, 0.26);
  --mat-legacy-button-toggle-disabled-state-background-color: #eeeeee;
  --mat-legacy-button-toggle-disabled-selected-state-background-color: #bdbdbd;
}
.atlas-copco-theme {
  --mat-standard-button-toggle-text-color: rgba(0, 0, 0, 0.87);
  --mat-standard-button-toggle-background-color: white;
  --mat-standard-button-toggle-state-layer-color: black;
  --mat-standard-button-toggle-selected-state-background-color: #e0e0e0;
  --mat-standard-button-toggle-selected-state-text-color: rgba(0, 0, 0, 0.87);
  --mat-standard-button-toggle-disabled-state-text-color: rgba(0, 0, 0, 0.26);
  --mat-standard-button-toggle-disabled-state-background-color: white;
  --mat-standard-button-toggle-disabled-selected-state-text-color: rgba(0, 0, 0, 0.87);
  --mat-standard-button-toggle-disabled-selected-state-background-color: #bdbdbd;
  --mat-standard-button-toggle-divider-color: rgb(224.4, 224.4, 224.4);
}
.atlas-copco-theme {
  --mat-datepicker-calendar-container-shape: 4px;
  --mat-datepicker-calendar-container-touch-shape: 4px;
  --mat-datepicker-calendar-container-elevation-shadow:
    0px 2px 4px -1px rgba(0, 0, 0, 0.2),
    0px 4px 5px 0px rgba(0, 0, 0, 0.14),
    0px 1px 10px 0px rgba(0, 0, 0, 0.12);
  --mat-datepicker-calendar-container-touch-elevation-shadow:
    0px 11px 15px -7px rgba(0, 0, 0, 0.2),
    0px 24px 38px 3px rgba(0, 0, 0, 0.14),
    0px 9px 46px 8px rgba(0, 0, 0, 0.12);
}
.atlas-copco-theme {
  --mat-datepicker-calendar-date-selected-state-text-color: white;
  --mat-datepicker-calendar-date-selected-state-background-color: #0099cc;
  --mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(0, 153, 204, 0.4);
  --mat-datepicker-calendar-date-today-selected-state-outline-color: white;
  --mat-datepicker-calendar-date-focus-state-background-color: rgba(0, 153, 204, 0.3);
  --mat-datepicker-calendar-date-hover-state-background-color: rgba(0, 153, 204, 0.3);
  --mat-datepicker-toggle-active-state-icon-color: #0099cc;
  --mat-datepicker-calendar-date-in-range-state-background-color: rgba(0, 153, 204, 0.2);
  --mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, 0.2);
  --mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;
  --mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);
  --mat-datepicker-toggle-icon-color: rgba(0, 0, 0, 0.54);
  --mat-datepicker-calendar-body-label-text-color: rgba(0, 0, 0, 0.54);
  --mat-datepicker-calendar-period-button-text-color: black;
  --mat-datepicker-calendar-period-button-icon-color: rgba(0, 0, 0, 0.54);
  --mat-datepicker-calendar-navigation-button-icon-color: rgba(0, 0, 0, 0.54);
  --mat-datepicker-calendar-header-divider-color: rgba(0, 0, 0, 0.12);
  --mat-datepicker-calendar-header-text-color: rgba(0, 0, 0, 0.54);
  --mat-datepicker-calendar-date-today-outline-color: rgba(0, 0, 0, 0.38);
  --mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(0, 0, 0, 0.18);
  --mat-datepicker-calendar-date-text-color: rgba(0, 0, 0, 0.87);
  --mat-datepicker-calendar-date-outline-color: transparent;
  --mat-datepicker-calendar-date-disabled-state-text-color: rgba(0, 0, 0, 0.38);
  --mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, 0.24);
  --mat-datepicker-range-input-separator-color: rgba(0, 0, 0, 0.87);
  --mat-datepicker-range-input-disabled-state-separator-color: rgba(0, 0, 0, 0.38);
  --mat-datepicker-range-input-disabled-state-text-color: rgba(0, 0, 0, 0.38);
  --mat-datepicker-calendar-container-background-color: white;
  --mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, 0.87);
}
.atlas-copco-theme .mat-datepicker-content.mat-accent {
  --mat-datepicker-calendar-date-selected-state-text-color: black;
  --mat-datepicker-calendar-date-selected-state-background-color: #a4d7ff;
  --mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(164, 215, 255, 0.4);
  --mat-datepicker-calendar-date-today-selected-state-outline-color: black;
  --mat-datepicker-calendar-date-focus-state-background-color: rgba(164, 215, 255, 0.3);
  --mat-datepicker-calendar-date-hover-state-background-color: rgba(164, 215, 255, 0.3);
  --mat-datepicker-calendar-date-in-range-state-background-color: rgba(164, 215, 255, 0.2);
  --mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, 0.2);
  --mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;
  --mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);
}
.atlas-copco-theme .mat-datepicker-content.mat-warn {
  --mat-datepicker-calendar-date-selected-state-text-color: white;
  --mat-datepicker-calendar-date-selected-state-background-color: #c8102e;
  --mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(200, 16, 46, 0.4);
  --mat-datepicker-calendar-date-today-selected-state-outline-color: white;
  --mat-datepicker-calendar-date-focus-state-background-color: rgba(200, 16, 46, 0.3);
  --mat-datepicker-calendar-date-hover-state-background-color: rgba(200, 16, 46, 0.3);
  --mat-datepicker-calendar-date-in-range-state-background-color: rgba(200, 16, 46, 0.2);
  --mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, 0.2);
  --mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;
  --mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);
}
.atlas-copco-theme .mat-datepicker-toggle-active.mat-accent {
  --mat-datepicker-toggle-active-state-icon-color: #a4d7ff;
}
.atlas-copco-theme .mat-datepicker-toggle-active.mat-warn {
  --mat-datepicker-toggle-active-state-icon-color: #c8102e;
}
.atlas-copco-theme {
  --mat-divider-width: 1px;
}
.atlas-copco-theme {
  --mat-divider-color: rgba(0, 0, 0, 0.12);
}
.atlas-copco-theme {
  --mat-expansion-container-shape: 4px;
  --mat-expansion-legacy-header-indicator-display: inline-block;
  --mat-expansion-header-indicator-display: none;
}
.atlas-copco-theme {
  --mat-expansion-container-background-color: white;
  --mat-expansion-container-text-color: rgba(0, 0, 0, 0.87);
  --mat-expansion-actions-divider-color: rgba(0, 0, 0, 0.12);
  --mat-expansion-header-hover-state-layer-color: rgba(0, 0, 0, 0.04);
  --mat-expansion-header-focus-state-layer-color: rgba(0, 0, 0, 0.04);
  --mat-expansion-header-disabled-state-text-color: rgba(0, 0, 0, 0.26);
  --mat-expansion-header-text-color: rgba(0, 0, 0, 0.87);
  --mat-expansion-header-description-color: rgba(0, 0, 0, 0.54);
  --mat-expansion-header-indicator-color: rgba(0, 0, 0, 0.54);
}
.atlas-copco-theme {
  --mat-icon-color: inherit;
}
.atlas-copco-theme .mat-icon.mat-primary {
  --mat-icon-color: #0099cc;
}
.atlas-copco-theme .mat-icon.mat-accent {
  --mat-icon-color: #a4d7ff;
}
.atlas-copco-theme .mat-icon.mat-warn {
  --mat-icon-color: #c8102e;
}
.atlas-copco-theme {
  --mat-sidenav-container-shape: 0;
  --mat-sidenav-container-elevation-shadow:
    0px 8px 10px -5px rgba(0, 0, 0, 0.2),
    0px 16px 24px 2px rgba(0, 0, 0, 0.14),
    0px 6px 30px 5px rgba(0, 0, 0, 0.12);
  --mat-sidenav-container-width: auto;
}
.atlas-copco-theme {
  --mat-sidenav-container-divider-color: rgba(0, 0, 0, 0.12);
  --mat-sidenav-container-background-color: white;
  --mat-sidenav-container-text-color: rgba(0, 0, 0, 0.87);
  --mat-sidenav-content-background-color: #fafafa;
  --mat-sidenav-content-text-color: rgba(0, 0, 0, 0.87);
  --mat-sidenav-scrim-color: rgba(0, 0, 0, 0.6);
}
.atlas-copco-theme {
  --mat-stepper-header-icon-foreground-color: white;
  --mat-stepper-header-selected-state-icon-background-color: #0099cc;
  --mat-stepper-header-selected-state-icon-foreground-color: white;
  --mat-stepper-header-done-state-icon-background-color: #0099cc;
  --mat-stepper-header-done-state-icon-foreground-color: white;
  --mat-stepper-header-edit-state-icon-background-color: #0099cc;
  --mat-stepper-header-edit-state-icon-foreground-color: white;
  --mat-stepper-container-color: white;
  --mat-stepper-line-color: rgba(0, 0, 0, 0.12);
  --mat-stepper-header-hover-state-layer-color: rgba(0, 0, 0, 0.04);
  --mat-stepper-header-focus-state-layer-color: rgba(0, 0, 0, 0.04);
  --mat-stepper-header-label-text-color: rgba(0, 0, 0, 0.54);
  --mat-stepper-header-optional-label-text-color: rgba(0, 0, 0, 0.54);
  --mat-stepper-header-selected-state-label-text-color: rgba(0, 0, 0, 0.87);
  --mat-stepper-header-error-state-label-text-color: #c8102e;
  --mat-stepper-header-icon-background-color: rgba(0, 0, 0, 0.54);
  --mat-stepper-header-error-state-icon-foreground-color: #c8102e;
  --mat-stepper-header-error-state-icon-background-color: transparent;
}
.atlas-copco-theme .mat-step-header.mat-accent {
  --mat-stepper-header-icon-foreground-color: black;
  --mat-stepper-header-selected-state-icon-background-color: #a4d7ff;
  --mat-stepper-header-selected-state-icon-foreground-color: black;
  --mat-stepper-header-done-state-icon-background-color: #a4d7ff;
  --mat-stepper-header-done-state-icon-foreground-color: black;
  --mat-stepper-header-edit-state-icon-background-color: #a4d7ff;
  --mat-stepper-header-edit-state-icon-foreground-color: black;
}
.atlas-copco-theme .mat-step-header.mat-warn {
  --mat-stepper-header-icon-foreground-color: white;
  --mat-stepper-header-selected-state-icon-background-color: #c8102e;
  --mat-stepper-header-selected-state-icon-foreground-color: white;
  --mat-stepper-header-done-state-icon-background-color: #c8102e;
  --mat-stepper-header-done-state-icon-foreground-color: white;
  --mat-stepper-header-edit-state-icon-background-color: #c8102e;
  --mat-stepper-header-edit-state-icon-foreground-color: white;
}
.atlas-copco-theme {
  --mat-sort-arrow-color: rgb(117.3, 117.3, 117.3);
}
.atlas-copco-theme {
  --mat-toolbar-container-background-color: whitesmoke;
  --mat-toolbar-container-text-color: rgba(0, 0, 0, 0.87);
}
.atlas-copco-theme .mat-toolbar.mat-primary {
  --mat-toolbar-container-background-color: #0099cc;
  --mat-toolbar-container-text-color: white;
}
.atlas-copco-theme .mat-toolbar.mat-accent {
  --mat-toolbar-container-background-color: #a4d7ff;
  --mat-toolbar-container-text-color: black;
}
.atlas-copco-theme .mat-toolbar.mat-warn {
  --mat-toolbar-container-background-color: #c8102e;
  --mat-toolbar-container-text-color: white;
}
.atlas-copco-theme {
  --mat-tree-container-background-color: white;
  --mat-tree-node-text-color: rgba(0, 0, 0, 0.87);
}
.atlas-copco-theme {
  --mat-timepicker-container-shape: 4px;
  --mat-timepicker-container-elevation-shadow:
    0px 5px 5px -3px rgba(0, 0, 0, 0.2),
    0px 8px 10px 1px rgba(0, 0, 0, 0.14),
    0px 3px 14px 2px rgba(0, 0, 0, 0.12);
}
.atlas-copco-theme {
  --mat-timepicker-container-background-color: white;
}
.desoutter-theme {
  --brand-color: var(--desoutter-red);
  --brand-color-dark: var(--dark-red);
  --brand-color-light: var(--primary-red-light-5);
  --brand-color-lighter: var(--primary-red-light-6);
  --brand-color-hover: var(--hover-red);
  --brand-color-80: var(--primary-red-80);
}
.desoutter-theme {
  --mat-ripple-color: rgba(0, 0, 0, 0.1);
}
.desoutter-theme {
  --mat-option-selected-state-label-text-color: #f44336;
  --mat-option-label-text-color: rgba(0, 0, 0, 0.87);
  --mat-option-hover-state-layer-color: rgba(0, 0, 0, 0.04);
  --mat-option-focus-state-layer-color: rgba(0, 0, 0, 0.04);
  --mat-option-selected-state-layer-color: rgba(0, 0, 0, 0.04);
}
.desoutter-theme .mat-accent {
  --mat-option-selected-state-label-text-color: #ff5252;
  --mat-option-label-text-color: rgba(0, 0, 0, 0.87);
  --mat-option-hover-state-layer-color: rgba(0, 0, 0, 0.04);
  --mat-option-focus-state-layer-color: rgba(0, 0, 0, 0.04);
  --mat-option-selected-state-layer-color: rgba(0, 0, 0, 0.04);
}
.desoutter-theme .mat-warn {
  --mat-option-selected-state-label-text-color: #c8102e;
  --mat-option-label-text-color: rgba(0, 0, 0, 0.87);
  --mat-option-hover-state-layer-color: rgba(0, 0, 0, 0.04);
  --mat-option-focus-state-layer-color: rgba(0, 0, 0, 0.04);
  --mat-option-selected-state-layer-color: rgba(0, 0, 0, 0.04);
}
.desoutter-theme {
  --mat-optgroup-label-text-color: rgba(0, 0, 0, 0.87);
}
.desoutter-theme {
  --mat-full-pseudo-checkbox-selected-icon-color: #ff5252;
  --mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;
  --mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;
  --mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;
  --mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;
}
.desoutter-theme {
  --mat-minimal-pseudo-checkbox-selected-checkmark-color: #ff5252;
  --mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0;
}
.desoutter-theme .mat-primary {
  --mat-full-pseudo-checkbox-selected-icon-color: #f44336;
  --mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;
  --mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;
  --mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;
  --mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;
}
.desoutter-theme .mat-primary {
  --mat-minimal-pseudo-checkbox-selected-checkmark-color: #f44336;
  --mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0;
}
.desoutter-theme .mat-accent {
  --mat-full-pseudo-checkbox-selected-icon-color: #ff5252;
  --mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;
  --mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;
  --mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;
  --mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;
}
.desoutter-theme .mat-accent {
  --mat-minimal-pseudo-checkbox-selected-checkmark-color: #ff5252;
  --mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0;
}
.desoutter-theme .mat-warn {
  --mat-full-pseudo-checkbox-selected-icon-color: #c8102e;
  --mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;
  --mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;
  --mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;
  --mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;
}
.desoutter-theme .mat-warn {
  --mat-minimal-pseudo-checkbox-selected-checkmark-color: #c8102e;
  --mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0;
}
.desoutter-theme {
  --mat-app-background-color: #fafafa;
  --mat-app-text-color: rgba(0, 0, 0, 0.87);
  --mat-app-elevation-shadow-level-0:
    0px 0px 0px 0px rgba(0, 0, 0, 0.2),
    0px 0px 0px 0px rgba(0, 0, 0, 0.14),
    0px 0px 0px 0px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-1:
    0px 2px 1px -1px rgba(0, 0, 0, 0.2),
    0px 1px 1px 0px rgba(0, 0, 0, 0.14),
    0px 1px 3px 0px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-2:
    0px 3px 1px -2px rgba(0, 0, 0, 0.2),
    0px 2px 2px 0px rgba(0, 0, 0, 0.14),
    0px 1px 5px 0px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-3:
    0px 3px 3px -2px rgba(0, 0, 0, 0.2),
    0px 3px 4px 0px rgba(0, 0, 0, 0.14),
    0px 1px 8px 0px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-4:
    0px 2px 4px -1px rgba(0, 0, 0, 0.2),
    0px 4px 5px 0px rgba(0, 0, 0, 0.14),
    0px 1px 10px 0px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-5:
    0px 3px 5px -1px rgba(0, 0, 0, 0.2),
    0px 5px 8px 0px rgba(0, 0, 0, 0.14),
    0px 1px 14px 0px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-6:
    0px 3px 5px -1px rgba(0, 0, 0, 0.2),
    0px 6px 10px 0px rgba(0, 0, 0, 0.14),
    0px 1px 18px 0px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-7:
    0px 4px 5px -2px rgba(0, 0, 0, 0.2),
    0px 7px 10px 1px rgba(0, 0, 0, 0.14),
    0px 2px 16px 1px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-8:
    0px 5px 5px -3px rgba(0, 0, 0, 0.2),
    0px 8px 10px 1px rgba(0, 0, 0, 0.14),
    0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-9:
    0px 5px 6px -3px rgba(0, 0, 0, 0.2),
    0px 9px 12px 1px rgba(0, 0, 0, 0.14),
    0px 3px 16px 2px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-10:
    0px 6px 6px -3px rgba(0, 0, 0, 0.2),
    0px 10px 14px 1px rgba(0, 0, 0, 0.14),
    0px 4px 18px 3px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-11:
    0px 6px 7px -4px rgba(0, 0, 0, 0.2),
    0px 11px 15px 1px rgba(0, 0, 0, 0.14),
    0px 4px 20px 3px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-12:
    0px 7px 8px -4px rgba(0, 0, 0, 0.2),
    0px 12px 17px 2px rgba(0, 0, 0, 0.14),
    0px 5px 22px 4px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-13:
    0px 7px 8px -4px rgba(0, 0, 0, 0.2),
    0px 13px 19px 2px rgba(0, 0, 0, 0.14),
    0px 5px 24px 4px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-14:
    0px 7px 9px -4px rgba(0, 0, 0, 0.2),
    0px 14px 21px 2px rgba(0, 0, 0, 0.14),
    0px 5px 26px 4px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-15:
    0px 8px 9px -5px rgba(0, 0, 0, 0.2),
    0px 15px 22px 2px rgba(0, 0, 0, 0.14),
    0px 6px 28px 5px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-16:
    0px 8px 10px -5px rgba(0, 0, 0, 0.2),
    0px 16px 24px 2px rgba(0, 0, 0, 0.14),
    0px 6px 30px 5px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-17:
    0px 8px 11px -5px rgba(0, 0, 0, 0.2),
    0px 17px 26px 2px rgba(0, 0, 0, 0.14),
    0px 6px 32px 5px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-18:
    0px 9px 11px -5px rgba(0, 0, 0, 0.2),
    0px 18px 28px 2px rgba(0, 0, 0, 0.14),
    0px 7px 34px 6px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-19:
    0px 9px 12px -6px rgba(0, 0, 0, 0.2),
    0px 19px 29px 2px rgba(0, 0, 0, 0.14),
    0px 7px 36px 6px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-20:
    0px 10px 13px -6px rgba(0, 0, 0, 0.2),
    0px 20px 31px 3px rgba(0, 0, 0, 0.14),
    0px 8px 38px 7px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-21:
    0px 10px 13px -6px rgba(0, 0, 0, 0.2),
    0px 21px 33px 3px rgba(0, 0, 0, 0.14),
    0px 8px 40px 7px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-22:
    0px 10px 14px -6px rgba(0, 0, 0, 0.2),
    0px 22px 35px 3px rgba(0, 0, 0, 0.14),
    0px 8px 42px 7px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-23:
    0px 11px 14px -7px rgba(0, 0, 0, 0.2),
    0px 23px 36px 3px rgba(0, 0, 0, 0.14),
    0px 9px 44px 8px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-24:
    0px 11px 15px -7px rgba(0, 0, 0, 0.2),
    0px 24px 38px 3px rgba(0, 0, 0, 0.14),
    0px 9px 46px 8px rgba(0, 0, 0, 0.12);
}
.desoutter-theme {
  --mdc-elevated-card-container-shape: 4px;
}
.desoutter-theme {
  --mdc-outlined-card-container-shape: 4px;
  --mdc-outlined-card-outline-width: 1px;
}
.desoutter-theme {
  --mdc-elevated-card-container-color: white;
  --mdc-elevated-card-container-elevation:
    0px 2px 1px -1px rgba(0, 0, 0, 0.2),
    0px 1px 1px 0px rgba(0, 0, 0, 0.14),
    0px 1px 3px 0px rgba(0, 0, 0, 0.12);
}
.desoutter-theme {
  --mdc-outlined-card-container-color: white;
  --mdc-outlined-card-outline-color: rgba(0, 0, 0, 0.12);
  --mdc-outlined-card-container-elevation:
    0px 0px 0px 0px rgba(0, 0, 0, 0.2),
    0px 0px 0px 0px rgba(0, 0, 0, 0.14),
    0px 0px 0px 0px rgba(0, 0, 0, 0.12);
}
.desoutter-theme {
  --mat-card-subtitle-text-color: rgba(0, 0, 0, 0.54);
}
.desoutter-theme {
  --mdc-linear-progress-active-indicator-height: 4px;
  --mdc-linear-progress-track-height: 4px;
  --mdc-linear-progress-track-shape: 0;
}
.desoutter-theme .mat-mdc-progress-bar {
  --mdc-linear-progress-active-indicator-color: #f44336;
  --mdc-linear-progress-track-color: rgba(244, 67, 54, 0.25);
}
.desoutter-theme .mat-mdc-progress-bar.mat-accent {
  --mdc-linear-progress-active-indicator-color: #ff5252;
  --mdc-linear-progress-track-color: rgba(255, 82, 82, 0.25);
}
.desoutter-theme .mat-mdc-progress-bar.mat-warn {
  --mdc-linear-progress-active-indicator-color: #c8102e;
  --mdc-linear-progress-track-color: rgba(200, 16, 46, 0.25);
}
.desoutter-theme {
  --mdc-plain-tooltip-container-shape: 4px;
  --mdc-plain-tooltip-supporting-text-line-height: 16px;
}
.desoutter-theme {
  --mdc-plain-tooltip-container-color: #616161;
  --mdc-plain-tooltip-supporting-text-color: #fff;
}
.desoutter-theme {
  --mdc-filled-text-field-active-indicator-height: 1px;
  --mdc-filled-text-field-focus-active-indicator-height: 2px;
  --mdc-filled-text-field-container-shape: 4px;
}
.desoutter-theme {
  --mdc-outlined-text-field-outline-width: 1px;
  --mdc-outlined-text-field-focus-outline-width: 2px;
  --mdc-outlined-text-field-container-shape: 4px;
}
.desoutter-theme {
  --mdc-filled-text-field-caret-color: #f44336;
  --mdc-filled-text-field-focus-active-indicator-color: #f44336;
  --mdc-filled-text-field-focus-label-text-color: rgba(244, 67, 54, 0.87);
  --mdc-filled-text-field-container-color: rgb(244.8, 244.8, 244.8);
  --mdc-filled-text-field-disabled-container-color: rgb(249.9, 249.9, 249.9);
  --mdc-filled-text-field-label-text-color: rgba(0, 0, 0, 0.6);
  --mdc-filled-text-field-hover-label-text-color: rgba(0, 0, 0, 0.6);
  --mdc-filled-text-field-disabled-label-text-color: rgba(0, 0, 0, 0.38);
  --mdc-filled-text-field-input-text-color: rgba(0, 0, 0, 0.87);
  --mdc-filled-text-field-disabled-input-text-color: rgba(0, 0, 0, 0.38);
  --mdc-filled-text-field-input-text-placeholder-color: rgba(0, 0, 0, 0.6);
  --mdc-filled-text-field-error-hover-label-text-color: #c8102e;
  --mdc-filled-text-field-error-focus-label-text-color: #c8102e;
  --mdc-filled-text-field-error-label-text-color: #c8102e;
  --mdc-filled-text-field-error-caret-color: #c8102e;
  --mdc-filled-text-field-active-indicator-color: rgba(0, 0, 0, 0.42);
  --mdc-filled-text-field-disabled-active-indicator-color: rgba(0, 0, 0, 0.06);
  --mdc-filled-text-field-hover-active-indicator-color: rgba(0, 0, 0, 0.87);
  --mdc-filled-text-field-error-active-indicator-color: #c8102e;
  --mdc-filled-text-field-error-focus-active-indicator-color: #c8102e;
  --mdc-filled-text-field-error-hover-active-indicator-color: #c8102e;
}
.desoutter-theme {
  --mdc-outlined-text-field-caret-color: #f44336;
  --mdc-outlined-text-field-focus-outline-color: #f44336;
  --mdc-outlined-text-field-focus-label-text-color: rgba(244, 67, 54, 0.87);
  --mdc-outlined-text-field-label-text-color: rgba(0, 0, 0, 0.6);
  --mdc-outlined-text-field-hover-label-text-color: rgba(0, 0, 0, 0.6);
  --mdc-outlined-text-field-disabled-label-text-color: rgba(0, 0, 0, 0.38);
  --mdc-outlined-text-field-input-text-color: rgba(0, 0, 0, 0.87);
  --mdc-outlined-text-field-disabled-input-text-color: rgba(0, 0, 0, 0.38);
  --mdc-outlined-text-field-input-text-placeholder-color: rgba(0, 0, 0, 0.6);
  --mdc-outlined-text-field-error-caret-color: #c8102e;
  --mdc-outlined-text-field-error-focus-label-text-color: #c8102e;
  --mdc-outlined-text-field-error-label-text-color: #c8102e;
  --mdc-outlined-text-field-error-hover-label-text-color: #c8102e;
  --mdc-outlined-text-field-outline-color: rgba(0, 0, 0, 0.38);
  --mdc-outlined-text-field-disabled-outline-color: rgba(0, 0, 0, 0.06);
  --mdc-outlined-text-field-hover-outline-color: rgba(0, 0, 0, 0.87);
  --mdc-outlined-text-field-error-focus-outline-color: #c8102e;
  --mdc-outlined-text-field-error-hover-outline-color: #c8102e;
  --mdc-outlined-text-field-error-outline-color: #c8102e;
}
.desoutter-theme {
  --mat-form-field-focus-select-arrow-color: rgba(244, 67, 54, 0.87);
  --mat-form-field-disabled-input-text-placeholder-color: rgba(0, 0, 0, 0.38);
  --mat-form-field-state-layer-color: rgba(0, 0, 0, 0.87);
  --mat-form-field-error-text-color: #c8102e;
  --mat-form-field-select-option-text-color: inherit;
  --mat-form-field-select-disabled-option-text-color: GrayText;
  --mat-form-field-leading-icon-color: unset;
  --mat-form-field-disabled-leading-icon-color: unset;
  --mat-form-field-trailing-icon-color: unset;
  --mat-form-field-disabled-trailing-icon-color: unset;
  --mat-form-field-error-focus-trailing-icon-color: unset;
  --mat-form-field-error-hover-trailing-icon-color: unset;
  --mat-form-field-error-trailing-icon-color: unset;
  --mat-form-field-enabled-select-arrow-color: rgba(0, 0, 0, 0.54);
  --mat-form-field-disabled-select-arrow-color: rgba(0, 0, 0, 0.38);
  --mat-form-field-hover-state-layer-opacity: 0.04;
  --mat-form-field-focus-state-layer-opacity: 0.08;
}
.desoutter-theme .mat-mdc-form-field.mat-accent {
  --mdc-filled-text-field-caret-color: #ff5252;
  --mdc-filled-text-field-focus-active-indicator-color: #ff5252;
  --mdc-filled-text-field-focus-label-text-color: rgba(255, 82, 82, 0.87);
}
.desoutter-theme .mat-mdc-form-field.mat-accent {
  --mdc-outlined-text-field-caret-color: #ff5252;
  --mdc-outlined-text-field-focus-outline-color: #ff5252;
  --mdc-outlined-text-field-focus-label-text-color: rgba(255, 82, 82, 0.87);
}
.desoutter-theme .mat-mdc-form-field.mat-accent {
  --mat-form-field-focus-select-arrow-color: rgba(255, 82, 82, 0.87);
}
.desoutter-theme .mat-mdc-form-field.mat-warn {
  --mdc-filled-text-field-caret-color: #c8102e;
  --mdc-filled-text-field-focus-active-indicator-color: #c8102e;
  --mdc-filled-text-field-focus-label-text-color: rgba(200, 16, 46, 0.87);
}
.desoutter-theme .mat-mdc-form-field.mat-warn {
  --mdc-outlined-text-field-caret-color: #c8102e;
  --mdc-outlined-text-field-focus-outline-color: #c8102e;
  --mdc-outlined-text-field-focus-label-text-color: rgba(200, 16, 46, 0.87);
}
.desoutter-theme .mat-mdc-form-field.mat-warn {
  --mat-form-field-focus-select-arrow-color: rgba(200, 16, 46, 0.87);
}
.desoutter-theme {
  --mat-select-container-elevation-shadow:
    0px 5px 5px -3px rgba(0, 0, 0, 0.2),
    0px 8px 10px 1px rgba(0, 0, 0, 0.14),
    0px 3px 14px 2px rgba(0, 0, 0, 0.12);
}
.desoutter-theme {
  --mat-select-panel-background-color: white;
  --mat-select-enabled-trigger-text-color: rgba(0, 0, 0, 0.87);
  --mat-select-disabled-trigger-text-color: rgba(0, 0, 0, 0.38);
  --mat-select-placeholder-text-color: rgba(0, 0, 0, 0.6);
  --mat-select-enabled-arrow-color: rgba(0, 0, 0, 0.54);
  --mat-select-disabled-arrow-color: rgba(0, 0, 0, 0.38);
  --mat-select-focused-arrow-color: rgba(244, 67, 54, 0.87);
  --mat-select-invalid-arrow-color: rgba(200, 16, 46, 0.87);
}
.desoutter-theme .mat-mdc-form-field.mat-accent {
  --mat-select-panel-background-color: white;
  --mat-select-enabled-trigger-text-color: rgba(0, 0, 0, 0.87);
  --mat-select-disabled-trigger-text-color: rgba(0, 0, 0, 0.38);
  --mat-select-placeholder-text-color: rgba(0, 0, 0, 0.6);
  --mat-select-enabled-arrow-color: rgba(0, 0, 0, 0.54);
  --mat-select-disabled-arrow-color: rgba(0, 0, 0, 0.38);
  --mat-select-focused-arrow-color: rgba(255, 82, 82, 0.87);
  --mat-select-invalid-arrow-color: rgba(200, 16, 46, 0.87);
}
.desoutter-theme .mat-mdc-form-field.mat-warn {
  --mat-select-panel-background-color: white;
  --mat-select-enabled-trigger-text-color: rgba(0, 0, 0, 0.87);
  --mat-select-disabled-trigger-text-color: rgba(0, 0, 0, 0.38);
  --mat-select-placeholder-text-color: rgba(0, 0, 0, 0.6);
  --mat-select-enabled-arrow-color: rgba(0, 0, 0, 0.54);
  --mat-select-disabled-arrow-color: rgba(0, 0, 0, 0.38);
  --mat-select-focused-arrow-color: rgba(200, 16, 46, 0.87);
  --mat-select-invalid-arrow-color: rgba(200, 16, 46, 0.87);
}
.desoutter-theme {
  --mat-autocomplete-container-shape: 4px;
  --mat-autocomplete-container-elevation-shadow:
    0px 5px 5px -3px rgba(0, 0, 0, 0.2),
    0px 8px 10px 1px rgba(0, 0, 0, 0.14),
    0px 3px 14px 2px rgba(0, 0, 0, 0.12);
}
.desoutter-theme {
  --mat-autocomplete-background-color: white;
}
.desoutter-theme {
  --mdc-dialog-container-shape: 4px;
}
.desoutter-theme {
  --mat-dialog-container-elevation-shadow:
    0px 11px 15px -7px rgba(0, 0, 0, 0.2),
    0px 24px 38px 3px rgba(0, 0, 0, 0.14),
    0px 9px 46px 8px rgba(0, 0, 0, 0.12);
  --mat-dialog-container-max-width: 80vw;
  --mat-dialog-container-small-max-width: 80vw;
  --mat-dialog-container-min-width: 0;
  --mat-dialog-actions-alignment: start;
  --mat-dialog-actions-padding: 8px;
  --mat-dialog-content-padding: 20px 24px;
  --mat-dialog-with-actions-content-padding: 20px 24px;
  --mat-dialog-headline-padding: 0 24px 9px;
}
.desoutter-theme {
  --mdc-dialog-container-color: white;
  --mdc-dialog-subhead-color: rgba(0, 0, 0, 0.87);
  --mdc-dialog-supporting-text-color: rgba(0, 0, 0, 0.6);
}
.desoutter-theme .mat-mdc-standard-chip {
  --mdc-chip-container-shape-radius: 16px;
  --mdc-chip-with-avatar-avatar-shape-radius: 14px;
  --mdc-chip-with-avatar-avatar-size: 28px;
  --mdc-chip-with-icon-icon-size: 18px;
  --mdc-chip-outline-width: 0;
  --mdc-chip-outline-color: transparent;
  --mdc-chip-disabled-outline-color: transparent;
  --mdc-chip-focus-outline-color: transparent;
  --mdc-chip-hover-state-layer-opacity: 0.04;
  --mdc-chip-with-avatar-disabled-avatar-opacity: 1;
  --mdc-chip-flat-selected-outline-width: 0;
  --mdc-chip-selected-hover-state-layer-opacity: 0.04;
  --mdc-chip-with-trailing-icon-disabled-trailing-icon-opacity: 1;
  --mdc-chip-with-icon-disabled-icon-opacity: 1;
}
.desoutter-theme .mat-mdc-standard-chip {
  --mat-chip-disabled-container-opacity: 0.4;
  --mat-chip-trailing-action-opacity: 0.54;
  --mat-chip-trailing-action-focus-opacity: 1;
  --mat-chip-trailing-action-state-layer-color: transparent;
  --mat-chip-selected-trailing-action-state-layer-color: transparent;
  --mat-chip-trailing-action-hover-state-layer-opacity: 0;
  --mat-chip-trailing-action-focus-state-layer-opacity: 0;
}
.desoutter-theme .mat-mdc-standard-chip {
  --mdc-chip-disabled-label-text-color: #212121;
  --mdc-chip-elevated-container-color: rgb(224.4, 224.4, 224.4);
  --mdc-chip-elevated-selected-container-color: rgb(224.4, 224.4, 224.4);
  --mdc-chip-elevated-disabled-container-color: rgb(224.4, 224.4, 224.4);
  --mdc-chip-flat-disabled-selected-container-color: rgb(224.4, 224.4, 224.4);
  --mdc-chip-focus-state-layer-color: black;
  --mdc-chip-hover-state-layer-color: black;
  --mdc-chip-selected-hover-state-layer-color: black;
  --mdc-chip-focus-state-layer-opacity: 0.12;
  --mdc-chip-selected-focus-state-layer-color: black;
  --mdc-chip-selected-focus-state-layer-opacity: 0.12;
  --mdc-chip-label-text-color: #212121;
  --mdc-chip-selected-label-text-color: #212121;
  --mdc-chip-with-icon-icon-color: #212121;
  --mdc-chip-with-icon-disabled-icon-color: #212121;
  --mdc-chip-with-icon-selected-icon-color: #212121;
  --mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #212121;
  --mdc-chip-with-trailing-icon-trailing-icon-color: #212121;
}
.desoutter-theme .mat-mdc-standard-chip {
  --mat-chip-selected-disabled-trailing-icon-color: #212121;
  --mat-chip-selected-trailing-icon-color: #212121;
}
.desoutter-theme .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary,
.desoutter-theme .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary {
  --mdc-chip-disabled-label-text-color: white;
  --mdc-chip-elevated-container-color: #f44336;
  --mdc-chip-elevated-selected-container-color: #f44336;
  --mdc-chip-elevated-disabled-container-color: #f44336;
  --mdc-chip-flat-disabled-selected-container-color: #f44336;
  --mdc-chip-focus-state-layer-color: black;
  --mdc-chip-hover-state-layer-color: black;
  --mdc-chip-selected-hover-state-layer-color: black;
  --mdc-chip-focus-state-layer-opacity: 0.12;
  --mdc-chip-selected-focus-state-layer-color: black;
  --mdc-chip-selected-focus-state-layer-opacity: 0.12;
  --mdc-chip-label-text-color: white;
  --mdc-chip-selected-label-text-color: white;
  --mdc-chip-with-icon-icon-color: white;
  --mdc-chip-with-icon-disabled-icon-color: white;
  --mdc-chip-with-icon-selected-icon-color: white;
  --mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;
  --mdc-chip-with-trailing-icon-trailing-icon-color: white;
}
.desoutter-theme .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary,
.desoutter-theme .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary {
  --mat-chip-selected-disabled-trailing-icon-color: white;
  --mat-chip-selected-trailing-icon-color: white;
}
.desoutter-theme .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent,
.desoutter-theme .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent {
  --mdc-chip-disabled-label-text-color: black;
  --mdc-chip-elevated-container-color: #ff5252;
  --mdc-chip-elevated-selected-container-color: #ff5252;
  --mdc-chip-elevated-disabled-container-color: #ff5252;
  --mdc-chip-flat-disabled-selected-container-color: #ff5252;
  --mdc-chip-focus-state-layer-color: black;
  --mdc-chip-hover-state-layer-color: black;
  --mdc-chip-selected-hover-state-layer-color: black;
  --mdc-chip-focus-state-layer-opacity: 0.12;
  --mdc-chip-selected-focus-state-layer-color: black;
  --mdc-chip-selected-focus-state-layer-opacity: 0.12;
  --mdc-chip-label-text-color: black;
  --mdc-chip-selected-label-text-color: black;
  --mdc-chip-with-icon-icon-color: black;
  --mdc-chip-with-icon-disabled-icon-color: black;
  --mdc-chip-with-icon-selected-icon-color: black;
  --mdc-chip-with-trailing-icon-disabled-trailing-icon-color: black;
  --mdc-chip-with-trailing-icon-trailing-icon-color: black;
}
.desoutter-theme .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent,
.desoutter-theme .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent {
  --mat-chip-selected-disabled-trailing-icon-color: black;
  --mat-chip-selected-trailing-icon-color: black;
}
.desoutter-theme .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn,
.desoutter-theme .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn {
  --mdc-chip-disabled-label-text-color: white;
  --mdc-chip-elevated-container-color: #c8102e;
  --mdc-chip-elevated-selected-container-color: #c8102e;
  --mdc-chip-elevated-disabled-container-color: #c8102e;
  --mdc-chip-flat-disabled-selected-container-color: #c8102e;
  --mdc-chip-focus-state-layer-color: black;
  --mdc-chip-hover-state-layer-color: black;
  --mdc-chip-selected-hover-state-layer-color: black;
  --mdc-chip-focus-state-layer-opacity: 0.12;
  --mdc-chip-selected-focus-state-layer-color: black;
  --mdc-chip-selected-focus-state-layer-opacity: 0.12;
  --mdc-chip-label-text-color: white;
  --mdc-chip-selected-label-text-color: white;
  --mdc-chip-with-icon-icon-color: white;
  --mdc-chip-with-icon-disabled-icon-color: white;
  --mdc-chip-with-icon-selected-icon-color: white;
  --mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;
  --mdc-chip-with-trailing-icon-trailing-icon-color: white;
}
.desoutter-theme .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn,
.desoutter-theme .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn {
  --mat-chip-selected-disabled-trailing-icon-color: white;
  --mat-chip-selected-trailing-icon-color: white;
}
.desoutter-theme {
  --mdc-switch-disabled-selected-icon-opacity: 0.38;
  --mdc-switch-disabled-track-opacity: 0.12;
  --mdc-switch-disabled-unselected-icon-opacity: 0.38;
  --mdc-switch-handle-height: 20px;
  --mdc-switch-handle-shape: 10px;
  --mdc-switch-handle-width: 20px;
  --mdc-switch-selected-icon-size: 18px;
  --mdc-switch-track-height: 14px;
  --mdc-switch-track-shape: 7px;
  --mdc-switch-track-width: 36px;
  --mdc-switch-unselected-icon-size: 18px;
  --mdc-switch-selected-focus-state-layer-opacity: 0.12;
  --mdc-switch-selected-hover-state-layer-opacity: 0.04;
  --mdc-switch-selected-pressed-state-layer-opacity: 0.1;
  --mdc-switch-unselected-focus-state-layer-opacity: 0.12;
  --mdc-switch-unselected-hover-state-layer-opacity: 0.04;
  --mdc-switch-unselected-pressed-state-layer-opacity: 0.1;
}
.desoutter-theme .mat-mdc-slide-toggle {
  --mat-switch-disabled-selected-handle-opacity: 0.38;
  --mat-switch-disabled-unselected-handle-opacity: 0.38;
  --mat-switch-unselected-handle-size: 20px;
  --mat-switch-selected-handle-size: 20px;
  --mat-switch-pressed-handle-size: 20px;
  --mat-switch-with-icon-handle-size: 20px;
  --mat-switch-selected-handle-horizontal-margin: 0;
  --mat-switch-selected-with-icon-handle-horizontal-margin: 0;
  --mat-switch-selected-pressed-handle-horizontal-margin: 0;
  --mat-switch-unselected-handle-horizontal-margin: 0;
  --mat-switch-unselected-with-icon-handle-horizontal-margin: 0;
  --mat-switch-unselected-pressed-handle-horizontal-margin: 0;
  --mat-switch-visible-track-opacity: 1;
  --mat-switch-hidden-track-opacity: 1;
  --mat-switch-visible-track-transition: transform 75ms 0ms cubic-bezier(0, 0, 0.2, 1);
  --mat-switch-hidden-track-transition: transform 75ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
  --mat-switch-track-outline-width: 1px;
  --mat-switch-track-outline-color: transparent;
  --mat-switch-selected-track-outline-width: 1px;
  --mat-switch-selected-track-outline-color: transparent;
  --mat-switch-disabled-unselected-track-outline-width: 1px;
  --mat-switch-disabled-unselected-track-outline-color: transparent;
}
.desoutter-theme {
  --mdc-switch-selected-focus-state-layer-color: #e53935;
  --mdc-switch-selected-handle-color: #e53935;
  --mdc-switch-selected-hover-state-layer-color: #e53935;
  --mdc-switch-selected-pressed-state-layer-color: #e53935;
  --mdc-switch-selected-focus-handle-color: #b71c1c;
  --mdc-switch-selected-hover-handle-color: #b71c1c;
  --mdc-switch-selected-pressed-handle-color: #b71c1c;
  --mdc-switch-selected-focus-track-color: #e57373;
  --mdc-switch-selected-hover-track-color: #e57373;
  --mdc-switch-selected-pressed-track-color: #e57373;
  --mdc-switch-selected-track-color: #e57373;
  --mdc-switch-disabled-selected-handle-color: #424242;
  --mdc-switch-disabled-selected-icon-color: #fff;
  --mdc-switch-disabled-selected-track-color: #424242;
  --mdc-switch-disabled-unselected-handle-color: #424242;
  --mdc-switch-disabled-unselected-icon-color: #fff;
  --mdc-switch-disabled-unselected-track-color: #424242;
  --mdc-switch-handle-surface-color: #fff;
  --mdc-switch-selected-icon-color: #fff;
  --mdc-switch-unselected-focus-handle-color: #212121;
  --mdc-switch-unselected-focus-state-layer-color: #424242;
  --mdc-switch-unselected-focus-track-color: #e0e0e0;
  --mdc-switch-unselected-handle-color: #616161;
  --mdc-switch-unselected-hover-handle-color: #212121;
  --mdc-switch-unselected-hover-state-layer-color: #424242;
  --mdc-switch-unselected-hover-track-color: #e0e0e0;
  --mdc-switch-unselected-icon-color: #fff;
  --mdc-switch-unselected-pressed-handle-color: #212121;
  --mdc-switch-unselected-pressed-state-layer-color: #424242;
  --mdc-switch-unselected-pressed-track-color: #e0e0e0;
  --mdc-switch-unselected-track-color: #e0e0e0;
  --mdc-switch-handle-elevation-shadow:
    0px 2px 1px -1px rgba(0, 0, 0, 0.2),
    0px 1px 1px 0px rgba(0, 0, 0, 0.14),
    0px 1px 3px 0px rgba(0, 0, 0, 0.12);
  --mdc-switch-disabled-handle-elevation-shadow:
    0px 0px 0px 0px rgba(0, 0, 0, 0.2),
    0px 0px 0px 0px rgba(0, 0, 0, 0.14),
    0px 0px 0px 0px rgba(0, 0, 0, 0.12);
}
.desoutter-theme {
  --mdc-switch-disabled-label-text-color: rgba(0, 0, 0, 0.38);
}
.desoutter-theme .mat-mdc-slide-toggle {
  --mat-switch-label-text-color: rgba(0, 0, 0, 0.87);
}
.desoutter-theme .mat-mdc-slide-toggle.mat-accent {
  --mdc-switch-selected-focus-state-layer-color: #e53935;
  --mdc-switch-selected-handle-color: #e53935;
  --mdc-switch-selected-hover-state-layer-color: #e53935;
  --mdc-switch-selected-pressed-state-layer-color: #e53935;
  --mdc-switch-selected-focus-handle-color: #b71c1c;
  --mdc-switch-selected-hover-handle-color: #b71c1c;
  --mdc-switch-selected-pressed-handle-color: #b71c1c;
  --mdc-switch-selected-focus-track-color: #e57373;
  --mdc-switch-selected-hover-track-color: #e57373;
  --mdc-switch-selected-pressed-track-color: #e57373;
  --mdc-switch-selected-track-color: #e57373;
}
.desoutter-theme .mat-mdc-slide-toggle.mat-warn {
  --mdc-switch-selected-focus-state-layer-color: #b80e29;
  --mdc-switch-selected-handle-color: #b80e29;
  --mdc-switch-selected-hover-state-layer-color: #b80e29;
  --mdc-switch-selected-pressed-state-layer-color: #b80e29;
  --mdc-switch-selected-focus-handle-color: #74071a;
  --mdc-switch-selected-hover-handle-color: #74071a;
  --mdc-switch-selected-pressed-handle-color: #74071a;
  --mdc-switch-selected-focus-track-color: #f07184;
  --mdc-switch-selected-hover-track-color: #f07184;
  --mdc-switch-selected-pressed-track-color: #f07184;
  --mdc-switch-selected-track-color: #f07184;
}
.desoutter-theme {
  --mdc-radio-disabled-selected-icon-opacity: 0.38;
  --mdc-radio-disabled-unselected-icon-opacity: 0.38;
  --mdc-radio-state-layer-size: 40px;
}
.desoutter-theme .mat-mdc-radio-button.mat-primary {
  --mdc-radio-disabled-selected-icon-color: black;
  --mdc-radio-disabled-unselected-icon-color: black;
  --mdc-radio-unselected-hover-icon-color: #212121;
  --mdc-radio-unselected-focus-icon-color: #212121;
  --mdc-radio-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-radio-selected-focus-icon-color: #f44336;
  --mdc-radio-selected-hover-icon-color: #f44336;
  --mdc-radio-selected-icon-color: #f44336;
  --mdc-radio-selected-pressed-icon-color: #f44336;
}
.desoutter-theme .mat-mdc-radio-button.mat-primary {
  --mat-radio-ripple-color: black;
  --mat-radio-checked-ripple-color: #f44336;
  --mat-radio-disabled-label-color: rgba(0, 0, 0, 0.38);
  --mat-radio-label-text-color: rgba(0, 0, 0, 0.87);
}
.desoutter-theme .mat-mdc-radio-button.mat-accent {
  --mdc-radio-disabled-selected-icon-color: black;
  --mdc-radio-disabled-unselected-icon-color: black;
  --mdc-radio-unselected-hover-icon-color: #212121;
  --mdc-radio-unselected-focus-icon-color: #212121;
  --mdc-radio-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-radio-selected-focus-icon-color: #ff5252;
  --mdc-radio-selected-hover-icon-color: #ff5252;
  --mdc-radio-selected-icon-color: #ff5252;
  --mdc-radio-selected-pressed-icon-color: #ff5252;
}
.desoutter-theme .mat-mdc-radio-button.mat-accent {
  --mat-radio-ripple-color: black;
  --mat-radio-checked-ripple-color: #ff5252;
  --mat-radio-disabled-label-color: rgba(0, 0, 0, 0.38);
  --mat-radio-label-text-color: rgba(0, 0, 0, 0.87);
}
.desoutter-theme .mat-mdc-radio-button.mat-warn {
  --mdc-radio-disabled-selected-icon-color: black;
  --mdc-radio-disabled-unselected-icon-color: black;
  --mdc-radio-unselected-hover-icon-color: #212121;
  --mdc-radio-unselected-focus-icon-color: #212121;
  --mdc-radio-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-radio-selected-focus-icon-color: #c8102e;
  --mdc-radio-selected-hover-icon-color: #c8102e;
  --mdc-radio-selected-icon-color: #c8102e;
  --mdc-radio-selected-pressed-icon-color: #c8102e;
}
.desoutter-theme .mat-mdc-radio-button.mat-warn {
  --mat-radio-ripple-color: black;
  --mat-radio-checked-ripple-color: #c8102e;
  --mat-radio-disabled-label-color: rgba(0, 0, 0, 0.38);
  --mat-radio-label-text-color: rgba(0, 0, 0, 0.87);
}
.desoutter-theme {
  --mdc-slider-active-track-height: 6px;
  --mdc-slider-active-track-shape: 9999px;
  --mdc-slider-handle-height: 20px;
  --mdc-slider-handle-shape: 50%;
  --mdc-slider-handle-width: 20px;
  --mdc-slider-inactive-track-height: 4px;
  --mdc-slider-inactive-track-shape: 9999px;
  --mdc-slider-with-overlap-handle-outline-width: 1px;
  --mdc-slider-with-tick-marks-active-container-opacity: 0.6;
  --mdc-slider-with-tick-marks-container-shape: 50%;
  --mdc-slider-with-tick-marks-container-size: 2px;
  --mdc-slider-with-tick-marks-inactive-container-opacity: 0.6;
  --mdc-slider-handle-elevation:
    0px 2px 1px -1px rgba(0, 0, 0, 0.2),
    0px 1px 1px 0px rgba(0, 0, 0, 0.14),
    0px 1px 3px 0px rgba(0, 0, 0, 0.12);
}
.desoutter-theme {
  --mat-slider-value-indicator-width: auto;
  --mat-slider-value-indicator-height: 32px;
  --mat-slider-value-indicator-caret-display: block;
  --mat-slider-value-indicator-border-radius: 4px;
  --mat-slider-value-indicator-padding: 0 12px;
  --mat-slider-value-indicator-text-transform: none;
  --mat-slider-value-indicator-container-transform: translateX(-50%);
}
.desoutter-theme {
  --mdc-slider-handle-color: #f44336;
  --mdc-slider-focus-handle-color: #f44336;
  --mdc-slider-hover-handle-color: #f44336;
  --mdc-slider-active-track-color: #f44336;
  --mdc-slider-inactive-track-color: #f44336;
  --mdc-slider-with-tick-marks-inactive-container-color: #f44336;
  --mdc-slider-with-tick-marks-active-container-color: white;
  --mdc-slider-disabled-active-track-color: #000;
  --mdc-slider-disabled-handle-color: #000;
  --mdc-slider-disabled-inactive-track-color: #000;
  --mdc-slider-label-container-color: #000;
  --mdc-slider-label-label-text-color: #fff;
  --mdc-slider-with-overlap-handle-outline-color: #fff;
  --mdc-slider-with-tick-marks-disabled-container-color: #000;
}
.desoutter-theme {
  --mat-slider-ripple-color: #f44336;
  --mat-slider-hover-state-layer-color: rgba(244, 67, 54, 0.05);
  --mat-slider-focus-state-layer-color: rgba(244, 67, 54, 0.2);
  --mat-slider-value-indicator-opacity: 0.6;
}
.desoutter-theme .mat-accent {
  --mdc-slider-handle-color: #ff5252;
  --mdc-slider-focus-handle-color: #ff5252;
  --mdc-slider-hover-handle-color: #ff5252;
  --mdc-slider-active-track-color: #ff5252;
  --mdc-slider-inactive-track-color: #ff5252;
  --mdc-slider-with-tick-marks-inactive-container-color: #ff5252;
  --mdc-slider-with-tick-marks-active-container-color: black;
}
.desoutter-theme .mat-accent {
  --mat-slider-ripple-color: #ff5252;
  --mat-slider-hover-state-layer-color: rgba(255, 82, 82, 0.05);
  --mat-slider-focus-state-layer-color: rgba(255, 82, 82, 0.2);
}
.desoutter-theme .mat-warn {
  --mdc-slider-handle-color: #c8102e;
  --mdc-slider-focus-handle-color: #c8102e;
  --mdc-slider-hover-handle-color: #c8102e;
  --mdc-slider-active-track-color: #c8102e;
  --mdc-slider-inactive-track-color: #c8102e;
  --mdc-slider-with-tick-marks-inactive-container-color: #c8102e;
  --mdc-slider-with-tick-marks-active-container-color: white;
}
.desoutter-theme .mat-warn {
  --mat-slider-ripple-color: #c8102e;
  --mat-slider-hover-state-layer-color: rgba(200, 16, 46, 0.05);
  --mat-slider-focus-state-layer-color: rgba(200, 16, 46, 0.2);
}
.desoutter-theme {
  --mat-menu-container-shape: 4px;
  --mat-menu-divider-bottom-spacing: 0;
  --mat-menu-divider-top-spacing: 0;
  --mat-menu-item-spacing: 16px;
  --mat-menu-item-icon-size: 24px;
  --mat-menu-item-leading-spacing: 16px;
  --mat-menu-item-trailing-spacing: 16px;
  --mat-menu-item-with-icon-leading-spacing: 16px;
  --mat-menu-item-with-icon-trailing-spacing: 16px;
  --mat-menu-container-elevation-shadow:
    0px 5px 5px -3px rgba(0, 0, 0, 0.2),
    0px 8px 10px 1px rgba(0, 0, 0, 0.14),
    0px 3px 14px 2px rgba(0, 0, 0, 0.12);
}
.desoutter-theme {
  --mat-menu-item-label-text-color: rgba(0, 0, 0, 0.87);
  --mat-menu-item-icon-color: rgba(0, 0, 0, 0.87);
  --mat-menu-item-hover-state-layer-color: rgba(0, 0, 0, 0.04);
  --mat-menu-item-focus-state-layer-color: rgba(0, 0, 0, 0.04);
  --mat-menu-container-color: white;
  --mat-menu-divider-color: rgba(0, 0, 0, 0.12);
}
.desoutter-theme {
  --mdc-list-list-item-container-shape: 0;
  --mdc-list-list-item-leading-avatar-shape: 50%;
  --mdc-list-list-item-container-color: transparent;
  --mdc-list-list-item-selected-container-color: transparent;
  --mdc-list-list-item-leading-avatar-color: transparent;
  --mdc-list-list-item-leading-icon-size: 24px;
  --mdc-list-list-item-leading-avatar-size: 40px;
  --mdc-list-list-item-trailing-icon-size: 24px;
  --mdc-list-list-item-disabled-state-layer-color: transparent;
  --mdc-list-list-item-disabled-state-layer-opacity: 0;
  --mdc-list-list-item-disabled-label-text-opacity: 0.38;
  --mdc-list-list-item-disabled-leading-icon-opacity: 0.38;
  --mdc-list-list-item-disabled-trailing-icon-opacity: 0.38;
}
.desoutter-theme {
  --mat-list-active-indicator-color: transparent;
  --mat-list-active-indicator-shape: 4px;
}
.desoutter-theme {
  --mdc-list-list-item-label-text-color: rgba(0, 0, 0, 0.87);
  --mdc-list-list-item-supporting-text-color: rgba(0, 0, 0, 0.54);
  --mdc-list-list-item-leading-icon-color: rgba(0, 0, 0, 0.38);
  --mdc-list-list-item-trailing-supporting-text-color: rgba(0, 0, 0, 0.38);
  --mdc-list-list-item-trailing-icon-color: rgba(0, 0, 0, 0.38);
  --mdc-list-list-item-selected-trailing-icon-color: rgba(0, 0, 0, 0.38);
  --mdc-list-list-item-disabled-label-text-color: black;
  --mdc-list-list-item-disabled-leading-icon-color: black;
  --mdc-list-list-item-disabled-trailing-icon-color: black;
  --mdc-list-list-item-hover-label-text-color: rgba(0, 0, 0, 0.87);
  --mdc-list-list-item-hover-leading-icon-color: rgba(0, 0, 0, 0.38);
  --mdc-list-list-item-hover-trailing-icon-color: rgba(0, 0, 0, 0.38);
  --mdc-list-list-item-focus-label-text-color: rgba(0, 0, 0, 0.87);
  --mdc-list-list-item-hover-state-layer-color: black;
  --mdc-list-list-item-hover-state-layer-opacity: 0.04;
  --mdc-list-list-item-focus-state-layer-color: black;
  --mdc-list-list-item-focus-state-layer-opacity: 0.12;
}
.desoutter-theme .mdc-list-item__start,
.desoutter-theme .mdc-list-item__end {
  --mdc-radio-disabled-selected-icon-color: black;
  --mdc-radio-disabled-unselected-icon-color: black;
  --mdc-radio-unselected-hover-icon-color: #212121;
  --mdc-radio-unselected-focus-icon-color: #212121;
  --mdc-radio-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-radio-selected-focus-icon-color: #f44336;
  --mdc-radio-selected-hover-icon-color: #f44336;
  --mdc-radio-selected-icon-color: #f44336;
  --mdc-radio-selected-pressed-icon-color: #f44336;
}
.desoutter-theme .mat-accent .mdc-list-item__start,
.desoutter-theme .mat-accent .mdc-list-item__end {
  --mdc-radio-disabled-selected-icon-color: black;
  --mdc-radio-disabled-unselected-icon-color: black;
  --mdc-radio-unselected-hover-icon-color: #212121;
  --mdc-radio-unselected-focus-icon-color: #212121;
  --mdc-radio-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-radio-selected-focus-icon-color: #ff5252;
  --mdc-radio-selected-hover-icon-color: #ff5252;
  --mdc-radio-selected-icon-color: #ff5252;
  --mdc-radio-selected-pressed-icon-color: #ff5252;
}
.desoutter-theme .mat-warn .mdc-list-item__start,
.desoutter-theme .mat-warn .mdc-list-item__end {
  --mdc-radio-disabled-selected-icon-color: black;
  --mdc-radio-disabled-unselected-icon-color: black;
  --mdc-radio-unselected-hover-icon-color: #212121;
  --mdc-radio-unselected-focus-icon-color: #212121;
  --mdc-radio-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-radio-selected-focus-icon-color: #c8102e;
  --mdc-radio-selected-hover-icon-color: #c8102e;
  --mdc-radio-selected-icon-color: #c8102e;
  --mdc-radio-selected-pressed-icon-color: #c8102e;
}
.desoutter-theme .mat-mdc-list-option {
  --mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, 0.38);
  --mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, 0.38);
  --mdc-checkbox-selected-checkmark-color: white;
  --mdc-checkbox-selected-focus-icon-color: #f44336;
  --mdc-checkbox-selected-hover-icon-color: #f44336;
  --mdc-checkbox-selected-icon-color: #f44336;
  --mdc-checkbox-selected-pressed-icon-color: #f44336;
  --mdc-checkbox-unselected-focus-icon-color: #212121;
  --mdc-checkbox-unselected-hover-icon-color: #212121;
  --mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-checkbox-selected-focus-state-layer-color: #f44336;
  --mdc-checkbox-selected-hover-state-layer-color: #f44336;
  --mdc-checkbox-selected-pressed-state-layer-color: #f44336;
  --mdc-checkbox-unselected-focus-state-layer-color: black;
  --mdc-checkbox-unselected-hover-state-layer-color: black;
  --mdc-checkbox-unselected-pressed-state-layer-color: black;
}
.desoutter-theme .mat-mdc-list-option.mat-accent {
  --mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, 0.38);
  --mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, 0.38);
  --mdc-checkbox-selected-checkmark-color: black;
  --mdc-checkbox-selected-focus-icon-color: #ff5252;
  --mdc-checkbox-selected-hover-icon-color: #ff5252;
  --mdc-checkbox-selected-icon-color: #ff5252;
  --mdc-checkbox-selected-pressed-icon-color: #ff5252;
  --mdc-checkbox-unselected-focus-icon-color: #212121;
  --mdc-checkbox-unselected-hover-icon-color: #212121;
  --mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-checkbox-selected-focus-state-layer-color: #ff5252;
  --mdc-checkbox-selected-hover-state-layer-color: #ff5252;
  --mdc-checkbox-selected-pressed-state-layer-color: #ff5252;
  --mdc-checkbox-unselected-focus-state-layer-color: black;
  --mdc-checkbox-unselected-hover-state-layer-color: black;
  --mdc-checkbox-unselected-pressed-state-layer-color: black;
}
.desoutter-theme .mat-mdc-list-option.mat-warn {
  --mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, 0.38);
  --mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, 0.38);
  --mdc-checkbox-selected-checkmark-color: white;
  --mdc-checkbox-selected-focus-icon-color: #c8102e;
  --mdc-checkbox-selected-hover-icon-color: #c8102e;
  --mdc-checkbox-selected-icon-color: #c8102e;
  --mdc-checkbox-selected-pressed-icon-color: #c8102e;
  --mdc-checkbox-unselected-focus-icon-color: #212121;
  --mdc-checkbox-unselected-hover-icon-color: #212121;
  --mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-checkbox-selected-focus-state-layer-color: #c8102e;
  --mdc-checkbox-selected-hover-state-layer-color: #c8102e;
  --mdc-checkbox-selected-pressed-state-layer-color: #c8102e;
  --mdc-checkbox-unselected-focus-state-layer-color: black;
  --mdc-checkbox-unselected-hover-state-layer-color: black;
  --mdc-checkbox-unselected-pressed-state-layer-color: black;
}
.desoutter-theme .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text,
.desoutter-theme .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__start,
.desoutter-theme .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text,
.desoutter-theme .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__start {
  color: #f44336;
}
.desoutter-theme .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__start,
.desoutter-theme .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__content,
.desoutter-theme .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__end {
  opacity: 1;
}
.desoutter-theme {
  --mat-paginator-container-text-color: rgba(0, 0, 0, 0.87);
  --mat-paginator-container-background-color: white;
  --mat-paginator-enabled-icon-color: rgba(0, 0, 0, 0.54);
  --mat-paginator-disabled-icon-color: rgba(0, 0, 0, 0.12);
}
.desoutter-theme {
  --mdc-secondary-navigation-tab-container-height: 48px;
}
.desoutter-theme {
  --mdc-tab-indicator-active-indicator-height: 2px;
  --mdc-tab-indicator-active-indicator-shape: 0;
}
.desoutter-theme {
  --mat-tab-header-divider-color: transparent;
  --mat-tab-header-divider-height: 0;
}
.desoutter-theme .mat-mdc-tab-group,
.desoutter-theme .mat-mdc-tab-nav-bar {
  --mdc-tab-indicator-active-indicator-color: #f44336;
}
.desoutter-theme .mat-mdc-tab-group,
.desoutter-theme .mat-mdc-tab-nav-bar {
  --mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, 0.38);
  --mat-tab-header-pagination-icon-color: black;
  --mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, 0.6);
  --mat-tab-header-active-label-text-color: #f44336;
  --mat-tab-header-active-ripple-color: #f44336;
  --mat-tab-header-inactive-ripple-color: #f44336;
  --mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, 0.6);
  --mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, 0.6);
  --mat-tab-header-active-focus-label-text-color: #f44336;
  --mat-tab-header-active-hover-label-text-color: #f44336;
  --mat-tab-header-active-focus-indicator-color: #f44336;
  --mat-tab-header-active-hover-indicator-color: #f44336;
}
.desoutter-theme .mat-mdc-tab-group.mat-accent,
.desoutter-theme .mat-mdc-tab-nav-bar.mat-accent {
  --mdc-tab-indicator-active-indicator-color: #ff5252;
}
.desoutter-theme .mat-mdc-tab-group.mat-accent,
.desoutter-theme .mat-mdc-tab-nav-bar.mat-accent {
  --mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, 0.38);
  --mat-tab-header-pagination-icon-color: black;
  --mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, 0.6);
  --mat-tab-header-active-label-text-color: #ff5252;
  --mat-tab-header-active-ripple-color: #ff5252;
  --mat-tab-header-inactive-ripple-color: #ff5252;
  --mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, 0.6);
  --mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, 0.6);
  --mat-tab-header-active-focus-label-text-color: #ff5252;
  --mat-tab-header-active-hover-label-text-color: #ff5252;
  --mat-tab-header-active-focus-indicator-color: #ff5252;
  --mat-tab-header-active-hover-indicator-color: #ff5252;
}
.desoutter-theme .mat-mdc-tab-group.mat-warn,
.desoutter-theme .mat-mdc-tab-nav-bar.mat-warn {
  --mdc-tab-indicator-active-indicator-color: #c8102e;
}
.desoutter-theme .mat-mdc-tab-group.mat-warn,
.desoutter-theme .mat-mdc-tab-nav-bar.mat-warn {
  --mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, 0.38);
  --mat-tab-header-pagination-icon-color: black;
  --mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, 0.6);
  --mat-tab-header-active-label-text-color: #c8102e;
  --mat-tab-header-active-ripple-color: #c8102e;
  --mat-tab-header-inactive-ripple-color: #c8102e;
  --mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, 0.6);
  --mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, 0.6);
  --mat-tab-header-active-focus-label-text-color: #c8102e;
  --mat-tab-header-active-hover-label-text-color: #c8102e;
  --mat-tab-header-active-focus-indicator-color: #c8102e;
  --mat-tab-header-active-hover-indicator-color: #c8102e;
}
.desoutter-theme .mat-mdc-tab-group.mat-background-primary,
.desoutter-theme .mat-mdc-tab-nav-bar.mat-background-primary {
  --mat-tab-header-with-background-background-color: #f44336;
  --mat-tab-header-with-background-foreground-color: white;
}
.desoutter-theme .mat-mdc-tab-group.mat-background-accent,
.desoutter-theme .mat-mdc-tab-nav-bar.mat-background-accent {
  --mat-tab-header-with-background-background-color: #ff5252;
  --mat-tab-header-with-background-foreground-color: black;
}
.desoutter-theme .mat-mdc-tab-group.mat-background-warn,
.desoutter-theme .mat-mdc-tab-nav-bar.mat-background-warn {
  --mat-tab-header-with-background-background-color: #c8102e;
  --mat-tab-header-with-background-foreground-color: white;
}
.desoutter-theme {
  --mdc-checkbox-disabled-selected-checkmark-color: #fff;
  --mdc-checkbox-selected-focus-state-layer-opacity: 0.16;
  --mdc-checkbox-selected-hover-state-layer-opacity: 0.04;
  --mdc-checkbox-selected-pressed-state-layer-opacity: 0.16;
  --mdc-checkbox-unselected-focus-state-layer-opacity: 0.16;
  --mdc-checkbox-unselected-hover-state-layer-opacity: 0.04;
  --mdc-checkbox-unselected-pressed-state-layer-opacity: 0.16;
}
.desoutter-theme {
  --mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, 0.38);
  --mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, 0.38);
  --mdc-checkbox-selected-checkmark-color: black;
  --mdc-checkbox-selected-focus-icon-color: #ff5252;
  --mdc-checkbox-selected-hover-icon-color: #ff5252;
  --mdc-checkbox-selected-icon-color: #ff5252;
  --mdc-checkbox-selected-pressed-icon-color: #ff5252;
  --mdc-checkbox-unselected-focus-icon-color: #212121;
  --mdc-checkbox-unselected-hover-icon-color: #212121;
  --mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-checkbox-selected-focus-state-layer-color: #ff5252;
  --mdc-checkbox-selected-hover-state-layer-color: #ff5252;
  --mdc-checkbox-selected-pressed-state-layer-color: #ff5252;
  --mdc-checkbox-unselected-focus-state-layer-color: black;
  --mdc-checkbox-unselected-hover-state-layer-color: black;
  --mdc-checkbox-unselected-pressed-state-layer-color: black;
}
.desoutter-theme {
  --mat-checkbox-disabled-label-color: rgba(0, 0, 0, 0.38);
  --mat-checkbox-label-text-color: rgba(0, 0, 0, 0.87);
}
.desoutter-theme .mat-mdc-checkbox.mat-primary {
  --mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, 0.38);
  --mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, 0.38);
  --mdc-checkbox-selected-checkmark-color: white;
  --mdc-checkbox-selected-focus-icon-color: #f44336;
  --mdc-checkbox-selected-hover-icon-color: #f44336;
  --mdc-checkbox-selected-icon-color: #f44336;
  --mdc-checkbox-selected-pressed-icon-color: #f44336;
  --mdc-checkbox-unselected-focus-icon-color: #212121;
  --mdc-checkbox-unselected-hover-icon-color: #212121;
  --mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-checkbox-selected-focus-state-layer-color: #f44336;
  --mdc-checkbox-selected-hover-state-layer-color: #f44336;
  --mdc-checkbox-selected-pressed-state-layer-color: #f44336;
  --mdc-checkbox-unselected-focus-state-layer-color: black;
  --mdc-checkbox-unselected-hover-state-layer-color: black;
  --mdc-checkbox-unselected-pressed-state-layer-color: black;
}
.desoutter-theme .mat-mdc-checkbox.mat-warn {
  --mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, 0.38);
  --mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, 0.38);
  --mdc-checkbox-selected-checkmark-color: white;
  --mdc-checkbox-selected-focus-icon-color: #c8102e;
  --mdc-checkbox-selected-hover-icon-color: #c8102e;
  --mdc-checkbox-selected-icon-color: #c8102e;
  --mdc-checkbox-selected-pressed-icon-color: #c8102e;
  --mdc-checkbox-unselected-focus-icon-color: #212121;
  --mdc-checkbox-unselected-hover-icon-color: #212121;
  --mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-checkbox-selected-focus-state-layer-color: #c8102e;
  --mdc-checkbox-selected-hover-state-layer-color: #c8102e;
  --mdc-checkbox-selected-pressed-state-layer-color: #c8102e;
  --mdc-checkbox-unselected-focus-state-layer-color: black;
  --mdc-checkbox-unselected-hover-state-layer-color: black;
  --mdc-checkbox-unselected-pressed-state-layer-color: black;
}
.desoutter-theme {
  --mdc-text-button-container-shape: 4px;
  --mdc-text-button-keep-touch-target: false;
}
.desoutter-theme {
  --mdc-filled-button-container-shape: 4px;
  --mdc-filled-button-keep-touch-target: false;
}
.desoutter-theme {
  --mdc-protected-button-container-shape: 4px;
  --mdc-protected-button-container-elevation-shadow:
    0px 3px 1px -2px rgba(0, 0, 0, 0.2),
    0px 2px 2px 0px rgba(0, 0, 0, 0.14),
    0px 1px 5px 0px rgba(0, 0, 0, 0.12);
  --mdc-protected-button-disabled-container-elevation-shadow:
    0px 0px 0px 0px rgba(0, 0, 0, 0.2),
    0px 0px 0px 0px rgba(0, 0, 0, 0.14),
    0px 0px 0px 0px rgba(0, 0, 0, 0.12);
  --mdc-protected-button-focus-container-elevation-shadow:
    0px 2px 4px -1px rgba(0, 0, 0, 0.2),
    0px 4px 5px 0px rgba(0, 0, 0, 0.14),
    0px 1px 10px 0px rgba(0, 0, 0, 0.12);
  --mdc-protected-button-hover-container-elevation-shadow:
    0px 2px 4px -1px rgba(0, 0, 0, 0.2),
    0px 4px 5px 0px rgba(0, 0, 0, 0.14),
    0px 1px 10px 0px rgba(0, 0, 0, 0.12);
  --mdc-protected-button-pressed-container-elevation-shadow:
    0px 5px 5px -3px rgba(0, 0, 0, 0.2),
    0px 8px 10px 1px rgba(0, 0, 0, 0.14),
    0px 3px 14px 2px rgba(0, 0, 0, 0.12);
}
.desoutter-theme {
  --mdc-outlined-button-keep-touch-target: false;
  --mdc-outlined-button-outline-width: 1px;
  --mdc-outlined-button-container-shape: 4px;
}
.desoutter-theme {
  --mat-text-button-horizontal-padding: 8px;
  --mat-text-button-with-icon-horizontal-padding: 8px;
  --mat-text-button-icon-spacing: 8px;
  --mat-text-button-icon-offset: 0;
}
.desoutter-theme {
  --mat-filled-button-horizontal-padding: 16px;
  --mat-filled-button-icon-spacing: 8px;
  --mat-filled-button-icon-offset: -4px;
}
.desoutter-theme {
  --mat-protected-button-horizontal-padding: 16px;
  --mat-protected-button-icon-spacing: 8px;
  --mat-protected-button-icon-offset: -4px;
}
.desoutter-theme {
  --mat-outlined-button-horizontal-padding: 15px;
  --mat-outlined-button-icon-spacing: 8px;
  --mat-outlined-button-icon-offset: -4px;
}
.desoutter-theme {
  --mdc-text-button-label-text-color: black;
  --mdc-text-button-disabled-label-text-color: rgba(0, 0, 0, 0.38);
}
.desoutter-theme {
  --mat-text-button-state-layer-color: black;
  --mat-text-button-disabled-state-layer-color: black;
  --mat-text-button-ripple-color: rgba(0, 0, 0, 0.1);
  --mat-text-button-hover-state-layer-opacity: 0.04;
  --mat-text-button-focus-state-layer-opacity: 0.12;
  --mat-text-button-pressed-state-layer-opacity: 0.12;
}
.desoutter-theme {
  --mdc-filled-button-container-color: white;
  --mdc-filled-button-label-text-color: black;
  --mdc-filled-button-disabled-container-color: rgba(0, 0, 0, 0.12);
  --mdc-filled-button-disabled-label-text-color: rgba(0, 0, 0, 0.38);
}
.desoutter-theme {
  --mat-filled-button-state-layer-color: black;
  --mat-filled-button-disabled-state-layer-color: black;
  --mat-filled-button-ripple-color: rgba(0, 0, 0, 0.1);
  --mat-filled-button-hover-state-layer-opacity: 0.04;
  --mat-filled-button-focus-state-layer-opacity: 0.12;
  --mat-filled-button-pressed-state-layer-opacity: 0.12;
}
.desoutter-theme {
  --mdc-protected-button-container-color: white;
  --mdc-protected-button-label-text-color: black;
  --mdc-protected-button-disabled-container-color: rgba(0, 0, 0, 0.12);
  --mdc-protected-button-disabled-label-text-color: rgba(0, 0, 0, 0.38);
}
.desoutter-theme {
  --mat-protected-button-state-layer-color: black;
  --mat-protected-button-disabled-state-layer-color: black;
  --mat-protected-button-ripple-color: rgba(0, 0, 0, 0.1);
  --mat-protected-button-hover-state-layer-opacity: 0.04;
  --mat-protected-button-focus-state-layer-opacity: 0.12;
  --mat-protected-button-pressed-state-layer-opacity: 0.12;
}
.desoutter-theme {
  --mdc-outlined-button-disabled-outline-color: rgba(0, 0, 0, 0.12);
  --mdc-outlined-button-disabled-label-text-color: rgba(0, 0, 0, 0.38);
  --mdc-outlined-button-label-text-color: black;
  --mdc-outlined-button-outline-color: rgba(0, 0, 0, 0.12);
}
.desoutter-theme {
  --mat-outlined-button-state-layer-color: black;
  --mat-outlined-button-disabled-state-layer-color: black;
  --mat-outlined-button-ripple-color: rgba(0, 0, 0, 0.1);
  --mat-outlined-button-hover-state-layer-opacity: 0.04;
  --mat-outlined-button-focus-state-layer-opacity: 0.12;
  --mat-outlined-button-pressed-state-layer-opacity: 0.12;
}
.desoutter-theme .mat-mdc-button.mat-primary {
  --mdc-text-button-label-text-color: #f44336;
}
.desoutter-theme .mat-mdc-button.mat-primary {
  --mat-text-button-state-layer-color: #f44336;
  --mat-text-button-ripple-color: rgba(244, 67, 54, 0.1);
}
.desoutter-theme .mat-mdc-button.mat-accent {
  --mdc-text-button-label-text-color: #ff5252;
}
.desoutter-theme .mat-mdc-button.mat-accent {
  --mat-text-button-state-layer-color: #ff5252;
  --mat-text-button-ripple-color: rgba(255, 82, 82, 0.1);
}
.desoutter-theme .mat-mdc-button.mat-warn {
  --mdc-text-button-label-text-color: #c8102e;
}
.desoutter-theme .mat-mdc-button.mat-warn {
  --mat-text-button-state-layer-color: #c8102e;
  --mat-text-button-ripple-color: rgba(200, 16, 46, 0.1);
}
.desoutter-theme .mat-mdc-unelevated-button.mat-primary {
  --mdc-filled-button-container-color: #f44336;
  --mdc-filled-button-label-text-color: white;
}
.desoutter-theme .mat-mdc-unelevated-button.mat-primary {
  --mat-filled-button-state-layer-color: white;
  --mat-filled-button-ripple-color: rgba(255, 255, 255, 0.1);
}
.desoutter-theme .mat-mdc-unelevated-button.mat-accent {
  --mdc-filled-button-container-color: #ff5252;
  --mdc-filled-button-label-text-color: black;
}
.desoutter-theme .mat-mdc-unelevated-button.mat-accent {
  --mat-filled-button-state-layer-color: black;
  --mat-filled-button-ripple-color: rgba(0, 0, 0, 0.1);
}
.desoutter-theme .mat-mdc-unelevated-button.mat-warn {
  --mdc-filled-button-container-color: #c8102e;
  --mdc-filled-button-label-text-color: white;
}
.desoutter-theme .mat-mdc-unelevated-button.mat-warn {
  --mat-filled-button-state-layer-color: white;
  --mat-filled-button-ripple-color: rgba(255, 255, 255, 0.1);
}
.desoutter-theme .mat-mdc-raised-button.mat-primary {
  --mdc-protected-button-container-color: #f44336;
  --mdc-protected-button-label-text-color: white;
}
.desoutter-theme .mat-mdc-raised-button.mat-primary {
  --mat-protected-button-state-layer-color: white;
  --mat-protected-button-ripple-color: rgba(255, 255, 255, 0.1);
}
.desoutter-theme .mat-mdc-raised-button.mat-accent {
  --mdc-protected-button-container-color: #ff5252;
  --mdc-protected-button-label-text-color: black;
}
.desoutter-theme .mat-mdc-raised-button.mat-accent {
  --mat-protected-button-state-layer-color: black;
  --mat-protected-button-ripple-color: rgba(0, 0, 0, 0.1);
}
.desoutter-theme .mat-mdc-raised-button.mat-warn {
  --mdc-protected-button-container-color: #c8102e;
  --mdc-protected-button-label-text-color: white;
}
.desoutter-theme .mat-mdc-raised-button.mat-warn {
  --mat-protected-button-state-layer-color: white;
  --mat-protected-button-ripple-color: rgba(255, 255, 255, 0.1);
}
.desoutter-theme .mat-mdc-outlined-button.mat-primary {
  --mdc-outlined-button-label-text-color: #f44336;
  --mdc-outlined-button-outline-color: rgba(0, 0, 0, 0.12);
}
.desoutter-theme .mat-mdc-outlined-button.mat-primary {
  --mat-outlined-button-state-layer-color: #f44336;
  --mat-outlined-button-ripple-color: rgba(244, 67, 54, 0.1);
}
.desoutter-theme .mat-mdc-outlined-button.mat-accent {
  --mdc-outlined-button-label-text-color: #ff5252;
  --mdc-outlined-button-outline-color: rgba(0, 0, 0, 0.12);
}
.desoutter-theme .mat-mdc-outlined-button.mat-accent {
  --mat-outlined-button-state-layer-color: #ff5252;
  --mat-outlined-button-ripple-color: rgba(255, 82, 82, 0.1);
}
.desoutter-theme .mat-mdc-outlined-button.mat-warn {
  --mdc-outlined-button-label-text-color: #c8102e;
  --mdc-outlined-button-outline-color: rgba(0, 0, 0, 0.12);
}
.desoutter-theme .mat-mdc-outlined-button.mat-warn {
  --mat-outlined-button-state-layer-color: #c8102e;
  --mat-outlined-button-ripple-color: rgba(200, 16, 46, 0.1);
}
.desoutter-theme {
  --mdc-icon-button-icon-size: 24px;
}
.desoutter-theme {
  --mdc-icon-button-icon-color: inherit;
  --mdc-icon-button-disabled-icon-color: rgba(0, 0, 0, 0.38);
}
.desoutter-theme {
  --mat-icon-button-state-layer-color: black;
  --mat-icon-button-disabled-state-layer-color: black;
  --mat-icon-button-ripple-color: rgba(0, 0, 0, 0.1);
  --mat-icon-button-hover-state-layer-opacity: 0.04;
  --mat-icon-button-focus-state-layer-opacity: 0.12;
  --mat-icon-button-pressed-state-layer-opacity: 0.12;
}
.desoutter-theme .mat-mdc-icon-button.mat-primary {
  --mdc-icon-button-icon-color: #f44336;
}
.desoutter-theme .mat-mdc-icon-button.mat-primary {
  --mat-icon-button-state-layer-color: #f44336;
  --mat-icon-button-ripple-color: rgba(244, 67, 54, 0.1);
}
.desoutter-theme .mat-mdc-icon-button.mat-accent {
  --mdc-icon-button-icon-color: #ff5252;
}
.desoutter-theme .mat-mdc-icon-button.mat-accent {
  --mat-icon-button-state-layer-color: #ff5252;
  --mat-icon-button-ripple-color: rgba(255, 82, 82, 0.1);
}
.desoutter-theme .mat-mdc-icon-button.mat-warn {
  --mdc-icon-button-icon-color: #c8102e;
}
.desoutter-theme .mat-mdc-icon-button.mat-warn {
  --mat-icon-button-state-layer-color: #c8102e;
  --mat-icon-button-ripple-color: rgba(200, 16, 46, 0.1);
}
.desoutter-theme {
  --mdc-fab-container-shape: 50%;
  --mdc-fab-container-elevation-shadow:
    0px 3px 5px -1px rgba(0, 0, 0, 0.2),
    0px 6px 10px 0px rgba(0, 0, 0, 0.14),
    0px 1px 18px 0px rgba(0, 0, 0, 0.12);
  --mdc-fab-focus-container-elevation-shadow:
    0px 5px 5px -3px rgba(0, 0, 0, 0.2),
    0px 8px 10px 1px rgba(0, 0, 0, 0.14),
    0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  --mdc-fab-hover-container-elevation-shadow:
    0px 5px 5px -3px rgba(0, 0, 0, 0.2),
    0px 8px 10px 1px rgba(0, 0, 0, 0.14),
    0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  --mdc-fab-pressed-container-elevation-shadow:
    0px 7px 8px -4px rgba(0, 0, 0, 0.2),
    0px 12px 17px 2px rgba(0, 0, 0, 0.14),
    0px 5px 22px 4px rgba(0, 0, 0, 0.12);
}
.desoutter-theme {
  --mdc-fab-small-container-shape: 50%;
  --mdc-fab-small-container-elevation-shadow:
    0px 3px 5px -1px rgba(0, 0, 0, 0.2),
    0px 6px 10px 0px rgba(0, 0, 0, 0.14),
    0px 1px 18px 0px rgba(0, 0, 0, 0.12);
  --mdc-fab-small-focus-container-elevation-shadow:
    0px 5px 5px -3px rgba(0, 0, 0, 0.2),
    0px 8px 10px 1px rgba(0, 0, 0, 0.14),
    0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  --mdc-fab-small-hover-container-elevation-shadow:
    0px 5px 5px -3px rgba(0, 0, 0, 0.2),
    0px 8px 10px 1px rgba(0, 0, 0, 0.14),
    0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  --mdc-fab-small-pressed-container-elevation-shadow:
    0px 7px 8px -4px rgba(0, 0, 0, 0.2),
    0px 12px 17px 2px rgba(0, 0, 0, 0.14),
    0px 5px 22px 4px rgba(0, 0, 0, 0.12);
}
.desoutter-theme {
  --mdc-extended-fab-container-height: 48px;
  --mdc-extended-fab-container-shape: 24px;
  --mdc-extended-fab-container-elevation-shadow:
    0px 3px 5px -1px rgba(0, 0, 0, 0.2),
    0px 6px 10px 0px rgba(0, 0, 0, 0.14),
    0px 1px 18px 0px rgba(0, 0, 0, 0.12);
  --mdc-extended-fab-focus-container-elevation-shadow:
    0px 5px 5px -3px rgba(0, 0, 0, 0.2),
    0px 8px 10px 1px rgba(0, 0, 0, 0.14),
    0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  --mdc-extended-fab-hover-container-elevation-shadow:
    0px 5px 5px -3px rgba(0, 0, 0, 0.2),
    0px 8px 10px 1px rgba(0, 0, 0, 0.14),
    0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  --mdc-extended-fab-pressed-container-elevation-shadow:
    0px 7px 8px -4px rgba(0, 0, 0, 0.2),
    0px 12px 17px 2px rgba(0, 0, 0, 0.14),
    0px 5px 22px 4px rgba(0, 0, 0, 0.12);
}
.desoutter-theme {
  --mdc-fab-container-color: white;
}
.desoutter-theme {
  --mat-fab-foreground-color: black;
  --mat-fab-state-layer-color: black;
  --mat-fab-disabled-state-layer-color: black;
  --mat-fab-ripple-color: rgba(0, 0, 0, 0.1);
  --mat-fab-hover-state-layer-opacity: 0.04;
  --mat-fab-focus-state-layer-opacity: 0.12;
  --mat-fab-pressed-state-layer-opacity: 0.12;
  --mat-fab-disabled-state-container-color: rgba(0, 0, 0, 0.12);
  --mat-fab-disabled-state-foreground-color: rgba(0, 0, 0, 0.38);
}
.desoutter-theme {
  --mdc-fab-small-container-color: white;
}
.desoutter-theme {
  --mat-fab-small-foreground-color: black;
  --mat-fab-small-state-layer-color: black;
  --mat-fab-small-disabled-state-layer-color: black;
  --mat-fab-small-ripple-color: rgba(0, 0, 0, 0.1);
  --mat-fab-small-hover-state-layer-opacity: 0.04;
  --mat-fab-small-focus-state-layer-opacity: 0.12;
  --mat-fab-small-pressed-state-layer-opacity: 0.12;
  --mat-fab-small-disabled-state-container-color: rgba(0, 0, 0, 0.12);
  --mat-fab-small-disabled-state-foreground-color: rgba(0, 0, 0, 0.38);
}
.desoutter-theme .mat-mdc-fab.mat-primary {
  --mdc-fab-container-color: #f44336;
}
.desoutter-theme .mat-mdc-fab.mat-primary {
  --mat-fab-foreground-color: white;
  --mat-fab-state-layer-color: white;
  --mat-fab-ripple-color: rgba(255, 255, 255, 0.1);
}
.desoutter-theme .mat-mdc-fab.mat-accent {
  --mdc-fab-container-color: #ff5252;
}
.desoutter-theme .mat-mdc-fab.mat-accent {
  --mat-fab-foreground-color: black;
  --mat-fab-state-layer-color: black;
  --mat-fab-ripple-color: rgba(0, 0, 0, 0.1);
}
.desoutter-theme .mat-mdc-fab.mat-warn {
  --mdc-fab-container-color: #c8102e;
}
.desoutter-theme .mat-mdc-fab.mat-warn {
  --mat-fab-foreground-color: white;
  --mat-fab-state-layer-color: white;
  --mat-fab-ripple-color: rgba(255, 255, 255, 0.1);
}
.desoutter-theme .mat-mdc-mini-fab.mat-primary {
  --mdc-fab-small-container-color: #f44336;
}
.desoutter-theme .mat-mdc-mini-fab.mat-primary {
  --mat-fab-small-foreground-color: white;
  --mat-fab-small-state-layer-color: white;
  --mat-fab-small-ripple-color: rgba(255, 255, 255, 0.1);
}
.desoutter-theme .mat-mdc-mini-fab.mat-accent {
  --mdc-fab-small-container-color: #ff5252;
}
.desoutter-theme .mat-mdc-mini-fab.mat-accent {
  --mat-fab-small-foreground-color: black;
  --mat-fab-small-state-layer-color: black;
  --mat-fab-small-ripple-color: rgba(0, 0, 0, 0.1);
}
.desoutter-theme .mat-mdc-mini-fab.mat-warn {
  --mdc-fab-small-container-color: #c8102e;
}
.desoutter-theme .mat-mdc-mini-fab.mat-warn {
  --mat-fab-small-foreground-color: white;
  --mat-fab-small-state-layer-color: white;
  --mat-fab-small-ripple-color: rgba(255, 255, 255, 0.1);
}
.desoutter-theme {
  --mdc-snackbar-container-shape: 4px;
}
.desoutter-theme {
  --mdc-snackbar-container-color: #333333;
  --mdc-snackbar-supporting-text-color: rgba(255, 255, 255, 0.87);
}
.desoutter-theme {
  --mat-snack-bar-button-color: #ff5252;
}
.desoutter-theme {
  --mat-table-row-item-outline-width: 1px;
}
.desoutter-theme {
  --mat-table-background-color: white;
  --mat-table-header-headline-color: rgba(0, 0, 0, 0.87);
  --mat-table-row-item-label-text-color: rgba(0, 0, 0, 0.87);
  --mat-table-row-item-outline-color: rgba(0, 0, 0, 0.12);
}
.desoutter-theme {
  --mdc-circular-progress-active-indicator-width: 4px;
  --mdc-circular-progress-size: 48px;
}
.desoutter-theme {
  --mdc-circular-progress-active-indicator-color: #f44336;
}
.desoutter-theme .mat-accent {
  --mdc-circular-progress-active-indicator-color: #ff5252;
}
.desoutter-theme .mat-warn {
  --mdc-circular-progress-active-indicator-color: #c8102e;
}
.desoutter-theme {
  --mat-badge-container-shape: 50%;
  --mat-badge-container-size: unset;
  --mat-badge-small-size-container-size: unset;
  --mat-badge-large-size-container-size: unset;
  --mat-badge-legacy-container-size: 22px;
  --mat-badge-legacy-small-size-container-size: 16px;
  --mat-badge-legacy-large-size-container-size: 28px;
  --mat-badge-container-offset: -11px 0;
  --mat-badge-small-size-container-offset: -8px 0;
  --mat-badge-large-size-container-offset: -14px 0;
  --mat-badge-container-overlap-offset: -11px;
  --mat-badge-small-size-container-overlap-offset: -8px;
  --mat-badge-large-size-container-overlap-offset: -14px;
  --mat-badge-container-padding: 0;
  --mat-badge-small-size-container-padding: 0;
  --mat-badge-large-size-container-padding: 0;
}
.desoutter-theme {
  --mat-badge-background-color: #f44336;
  --mat-badge-text-color: white;
  --mat-badge-disabled-state-background-color: #b9b9b9;
  --mat-badge-disabled-state-text-color: rgba(0, 0, 0, 0.38);
}
.desoutter-theme .mat-badge-accent {
  --mat-badge-background-color: #ff5252;
  --mat-badge-text-color: black;
}
.desoutter-theme .mat-badge-warn {
  --mat-badge-background-color: #c8102e;
  --mat-badge-text-color: white;
}
.desoutter-theme {
  --mat-bottom-sheet-container-shape: 4px;
}
.desoutter-theme {
  --mat-bottom-sheet-container-text-color: rgba(0, 0, 0, 0.87);
  --mat-bottom-sheet-container-background-color: white;
}
.desoutter-theme {
  --mat-legacy-button-toggle-height: 36px;
  --mat-legacy-button-toggle-shape: 2px;
  --mat-legacy-button-toggle-focus-state-layer-opacity: 1;
}
.desoutter-theme {
  --mat-standard-button-toggle-shape: 4px;
  --mat-standard-button-toggle-hover-state-layer-opacity: 0.04;
  --mat-standard-button-toggle-focus-state-layer-opacity: 0.12;
}
.desoutter-theme {
  --mat-legacy-button-toggle-text-color: rgba(0, 0, 0, 0.38);
  --mat-legacy-button-toggle-state-layer-color: rgba(0, 0, 0, 0.12);
  --mat-legacy-button-toggle-selected-state-text-color: rgba(0, 0, 0, 0.54);
  --mat-legacy-button-toggle-selected-state-background-color: #e0e0e0;
  --mat-legacy-button-toggle-disabled-state-text-color: rgba(0, 0, 0, 0.26);
  --mat-legacy-button-toggle-disabled-state-background-color: #eeeeee;
  --mat-legacy-button-toggle-disabled-selected-state-background-color: #bdbdbd;
}
.desoutter-theme {
  --mat-standard-button-toggle-text-color: rgba(0, 0, 0, 0.87);
  --mat-standard-button-toggle-background-color: white;
  --mat-standard-button-toggle-state-layer-color: black;
  --mat-standard-button-toggle-selected-state-background-color: #e0e0e0;
  --mat-standard-button-toggle-selected-state-text-color: rgba(0, 0, 0, 0.87);
  --mat-standard-button-toggle-disabled-state-text-color: rgba(0, 0, 0, 0.26);
  --mat-standard-button-toggle-disabled-state-background-color: white;
  --mat-standard-button-toggle-disabled-selected-state-text-color: rgba(0, 0, 0, 0.87);
  --mat-standard-button-toggle-disabled-selected-state-background-color: #bdbdbd;
  --mat-standard-button-toggle-divider-color: rgb(224.4, 224.4, 224.4);
}
.desoutter-theme {
  --mat-datepicker-calendar-container-shape: 4px;
  --mat-datepicker-calendar-container-touch-shape: 4px;
  --mat-datepicker-calendar-container-elevation-shadow:
    0px 2px 4px -1px rgba(0, 0, 0, 0.2),
    0px 4px 5px 0px rgba(0, 0, 0, 0.14),
    0px 1px 10px 0px rgba(0, 0, 0, 0.12);
  --mat-datepicker-calendar-container-touch-elevation-shadow:
    0px 11px 15px -7px rgba(0, 0, 0, 0.2),
    0px 24px 38px 3px rgba(0, 0, 0, 0.14),
    0px 9px 46px 8px rgba(0, 0, 0, 0.12);
}
.desoutter-theme {
  --mat-datepicker-calendar-date-selected-state-text-color: white;
  --mat-datepicker-calendar-date-selected-state-background-color: #f44336;
  --mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(244, 67, 54, 0.4);
  --mat-datepicker-calendar-date-today-selected-state-outline-color: white;
  --mat-datepicker-calendar-date-focus-state-background-color: rgba(244, 67, 54, 0.3);
  --mat-datepicker-calendar-date-hover-state-background-color: rgba(244, 67, 54, 0.3);
  --mat-datepicker-toggle-active-state-icon-color: #f44336;
  --mat-datepicker-calendar-date-in-range-state-background-color: rgba(244, 67, 54, 0.2);
  --mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, 0.2);
  --mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;
  --mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);
  --mat-datepicker-toggle-icon-color: rgba(0, 0, 0, 0.54);
  --mat-datepicker-calendar-body-label-text-color: rgba(0, 0, 0, 0.54);
  --mat-datepicker-calendar-period-button-text-color: black;
  --mat-datepicker-calendar-period-button-icon-color: rgba(0, 0, 0, 0.54);
  --mat-datepicker-calendar-navigation-button-icon-color: rgba(0, 0, 0, 0.54);
  --mat-datepicker-calendar-header-divider-color: rgba(0, 0, 0, 0.12);
  --mat-datepicker-calendar-header-text-color: rgba(0, 0, 0, 0.54);
  --mat-datepicker-calendar-date-today-outline-color: rgba(0, 0, 0, 0.38);
  --mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(0, 0, 0, 0.18);
  --mat-datepicker-calendar-date-text-color: rgba(0, 0, 0, 0.87);
  --mat-datepicker-calendar-date-outline-color: transparent;
  --mat-datepicker-calendar-date-disabled-state-text-color: rgba(0, 0, 0, 0.38);
  --mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, 0.24);
  --mat-datepicker-range-input-separator-color: rgba(0, 0, 0, 0.87);
  --mat-datepicker-range-input-disabled-state-separator-color: rgba(0, 0, 0, 0.38);
  --mat-datepicker-range-input-disabled-state-text-color: rgba(0, 0, 0, 0.38);
  --mat-datepicker-calendar-container-background-color: white;
  --mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, 0.87);
}
.desoutter-theme .mat-datepicker-content.mat-accent {
  --mat-datepicker-calendar-date-selected-state-text-color: black;
  --mat-datepicker-calendar-date-selected-state-background-color: #ff5252;
  --mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(255, 82, 82, 0.4);
  --mat-datepicker-calendar-date-today-selected-state-outline-color: black;
  --mat-datepicker-calendar-date-focus-state-background-color: rgba(255, 82, 82, 0.3);
  --mat-datepicker-calendar-date-hover-state-background-color: rgba(255, 82, 82, 0.3);
  --mat-datepicker-calendar-date-in-range-state-background-color: rgba(255, 82, 82, 0.2);
  --mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, 0.2);
  --mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;
  --mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);
}
.desoutter-theme .mat-datepicker-content.mat-warn {
  --mat-datepicker-calendar-date-selected-state-text-color: white;
  --mat-datepicker-calendar-date-selected-state-background-color: #c8102e;
  --mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(200, 16, 46, 0.4);
  --mat-datepicker-calendar-date-today-selected-state-outline-color: white;
  --mat-datepicker-calendar-date-focus-state-background-color: rgba(200, 16, 46, 0.3);
  --mat-datepicker-calendar-date-hover-state-background-color: rgba(200, 16, 46, 0.3);
  --mat-datepicker-calendar-date-in-range-state-background-color: rgba(200, 16, 46, 0.2);
  --mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, 0.2);
  --mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;
  --mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);
}
.desoutter-theme .mat-datepicker-toggle-active.mat-accent {
  --mat-datepicker-toggle-active-state-icon-color: #ff5252;
}
.desoutter-theme .mat-datepicker-toggle-active.mat-warn {
  --mat-datepicker-toggle-active-state-icon-color: #c8102e;
}
.desoutter-theme {
  --mat-divider-width: 1px;
}
.desoutter-theme {
  --mat-divider-color: rgba(0, 0, 0, 0.12);
}
.desoutter-theme {
  --mat-expansion-container-shape: 4px;
  --mat-expansion-legacy-header-indicator-display: inline-block;
  --mat-expansion-header-indicator-display: none;
}
.desoutter-theme {
  --mat-expansion-container-background-color: white;
  --mat-expansion-container-text-color: rgba(0, 0, 0, 0.87);
  --mat-expansion-actions-divider-color: rgba(0, 0, 0, 0.12);
  --mat-expansion-header-hover-state-layer-color: rgba(0, 0, 0, 0.04);
  --mat-expansion-header-focus-state-layer-color: rgba(0, 0, 0, 0.04);
  --mat-expansion-header-disabled-state-text-color: rgba(0, 0, 0, 0.26);
  --mat-expansion-header-text-color: rgba(0, 0, 0, 0.87);
  --mat-expansion-header-description-color: rgba(0, 0, 0, 0.54);
  --mat-expansion-header-indicator-color: rgba(0, 0, 0, 0.54);
}
.desoutter-theme {
  --mat-icon-color: inherit;
}
.desoutter-theme .mat-icon.mat-primary {
  --mat-icon-color: #f44336;
}
.desoutter-theme .mat-icon.mat-accent {
  --mat-icon-color: #ff5252;
}
.desoutter-theme .mat-icon.mat-warn {
  --mat-icon-color: #c8102e;
}
.desoutter-theme {
  --mat-sidenav-container-shape: 0;
  --mat-sidenav-container-elevation-shadow:
    0px 8px 10px -5px rgba(0, 0, 0, 0.2),
    0px 16px 24px 2px rgba(0, 0, 0, 0.14),
    0px 6px 30px 5px rgba(0, 0, 0, 0.12);
  --mat-sidenav-container-width: auto;
}
.desoutter-theme {
  --mat-sidenav-container-divider-color: rgba(0, 0, 0, 0.12);
  --mat-sidenav-container-background-color: white;
  --mat-sidenav-container-text-color: rgba(0, 0, 0, 0.87);
  --mat-sidenav-content-background-color: #fafafa;
  --mat-sidenav-content-text-color: rgba(0, 0, 0, 0.87);
  --mat-sidenav-scrim-color: rgba(0, 0, 0, 0.6);
}
.desoutter-theme {
  --mat-stepper-header-icon-foreground-color: white;
  --mat-stepper-header-selected-state-icon-background-color: #f44336;
  --mat-stepper-header-selected-state-icon-foreground-color: white;
  --mat-stepper-header-done-state-icon-background-color: #f44336;
  --mat-stepper-header-done-state-icon-foreground-color: white;
  --mat-stepper-header-edit-state-icon-background-color: #f44336;
  --mat-stepper-header-edit-state-icon-foreground-color: white;
  --mat-stepper-container-color: white;
  --mat-stepper-line-color: rgba(0, 0, 0, 0.12);
  --mat-stepper-header-hover-state-layer-color: rgba(0, 0, 0, 0.04);
  --mat-stepper-header-focus-state-layer-color: rgba(0, 0, 0, 0.04);
  --mat-stepper-header-label-text-color: rgba(0, 0, 0, 0.54);
  --mat-stepper-header-optional-label-text-color: rgba(0, 0, 0, 0.54);
  --mat-stepper-header-selected-state-label-text-color: rgba(0, 0, 0, 0.87);
  --mat-stepper-header-error-state-label-text-color: #c8102e;
  --mat-stepper-header-icon-background-color: rgba(0, 0, 0, 0.54);
  --mat-stepper-header-error-state-icon-foreground-color: #c8102e;
  --mat-stepper-header-error-state-icon-background-color: transparent;
}
.desoutter-theme .mat-step-header.mat-accent {
  --mat-stepper-header-icon-foreground-color: black;
  --mat-stepper-header-selected-state-icon-background-color: #ff5252;
  --mat-stepper-header-selected-state-icon-foreground-color: black;
  --mat-stepper-header-done-state-icon-background-color: #ff5252;
  --mat-stepper-header-done-state-icon-foreground-color: black;
  --mat-stepper-header-edit-state-icon-background-color: #ff5252;
  --mat-stepper-header-edit-state-icon-foreground-color: black;
}
.desoutter-theme .mat-step-header.mat-warn {
  --mat-stepper-header-icon-foreground-color: white;
  --mat-stepper-header-selected-state-icon-background-color: #c8102e;
  --mat-stepper-header-selected-state-icon-foreground-color: white;
  --mat-stepper-header-done-state-icon-background-color: #c8102e;
  --mat-stepper-header-done-state-icon-foreground-color: white;
  --mat-stepper-header-edit-state-icon-background-color: #c8102e;
  --mat-stepper-header-edit-state-icon-foreground-color: white;
}
.desoutter-theme {
  --mat-sort-arrow-color: rgb(117.3, 117.3, 117.3);
}
.desoutter-theme {
  --mat-toolbar-container-background-color: whitesmoke;
  --mat-toolbar-container-text-color: rgba(0, 0, 0, 0.87);
}
.desoutter-theme .mat-toolbar.mat-primary {
  --mat-toolbar-container-background-color: #f44336;
  --mat-toolbar-container-text-color: white;
}
.desoutter-theme .mat-toolbar.mat-accent {
  --mat-toolbar-container-background-color: #ff5252;
  --mat-toolbar-container-text-color: black;
}
.desoutter-theme .mat-toolbar.mat-warn {
  --mat-toolbar-container-background-color: #c8102e;
  --mat-toolbar-container-text-color: white;
}
.desoutter-theme {
  --mat-tree-container-background-color: white;
  --mat-tree-node-text-color: rgba(0, 0, 0, 0.87);
}
.desoutter-theme {
  --mat-timepicker-container-shape: 4px;
  --mat-timepicker-container-elevation-shadow:
    0px 5px 5px -3px rgba(0, 0, 0, 0.2),
    0px 8px 10px 1px rgba(0, 0, 0, 0.14),
    0px 3px 14px 2px rgba(0, 0, 0, 0.12);
}
.desoutter-theme {
  --mat-timepicker-container-background-color: white;
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
