/*!***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[6].rules[0].oneOf[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[6].rules[0].oneOf[0].use[2]!./node_modules/resolve-url-loader/index.js??ruleSet[1].rules[6].rules[1].use[0]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[6].rules[1].use[1]!./src/styles.scss?ngGlobalStyle ***!
  \***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
@charset "UTF-8";
/*
    Esse mixin foi criado para não precisar escrever o valor em pixels de cada breakpoint toda vez que for necessário
    criar um media query. Se em algum momento for necessário alterar o valor de um breakpoint, basta alterar o valor nos
    tokens e o mixin irá se encarregar de atualizar todos os media queries que utilizam aquele breakpoint.

    Exemplo de uso:



*/
/*
How to use
@import '~matcha-ds/assets/scss/components/matcha-typography.scss';
@include base-typography-theme($theme);
*/
.par-xs,
.p-tiny {
  font-size: 12px !important;
}

.par-sm,
.par-p,
.p-small {
  font-size: 14px !important;
}

.par-md,
.par-m,
.p-medium {
  font-size: 16px !important;
}

.par-lg,
.p-large {
  font-size: 20px !important;
}

.par-xl,
.p-huge {
  font-size: 24px !important;
}

.text-medium,
.text-semibold {
  font-weight: 500;
}

.text-regular,
.text-book {
  font-weight: 400;
}

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

.text-black {
  font-weight: 900;
}

.matcha-message-box,
.matcha-msg-box,
.message-box {
  padding: 16px;
  border-left: 6px solid;
}

.matcha-message-box.error, .matcha-message-box.warning, .matcha-message-box.success, .matcha-message-box.info, .matcha-message-box--error, .matcha-message-box--warning, .matcha-message-box--success, .matcha-message-box--info,
.matcha-msg-box.error,
.matcha-msg-box.warning,
.matcha-msg-box.success,
.matcha-msg-box.info,
.matcha-msg-box--error,
.matcha-msg-box--warning,
.matcha-msg-box--success,
.matcha-msg-box--info,
.message-box.error,
.message-box.warning,
.message-box.success,
.message-box.info,
.message-box--error,
.message-box--warning,
.message-box--success,
.message-box--info {
  padding: 16px;
  border-left: 6px solid;
}

.title {
  line-height: 24px;
  margin: 0 0 16px 0;
  display: flex;
  align-items: center;
}

.title .title-bullet {
  margin: 0px 8px 0 0;
  display: inline-block;
  position: relative;
  border-radius: 10px;
}

.title .title-content {
  line-height: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
  white-space: initial;
  -webkit-box-orient: vertical;
  text-transform: capitalize;
}

.title-sm {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.matcha-container {
  width: 100%;
  max-width: 1128px;
  margin-left: auto;
  margin-right: auto;
}

.combo-image-text,
.combo-checkbox-text,
.combo-icon-text,
.combo-double-line {
  display: flex;
  align-items: center;
}

.combo-image-text .side-text,
.combo-checkbox-text .side-text,
.combo-icon-text .side-text,
.combo-double-line .side-text {
  display: inline-block;
  width: calc(100% - 48px);
  line-height: 20px;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
  white-space: initial;
  -webkit-box-orient: vertical;
}

.combo-image-text .avatar,
.combo-checkbox-text .avatar,
.combo-icon-text .avatar,
.combo-double-line .avatar {
  border-radius: 50px;
  min-width: 24px;
  min-height: 24px;
}

.one-line-text {
  line-height: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
}

.two-lines-text {
  line-height: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
}

.three-lines-text {
  line-height: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
}

.four-lines-text {
  line-height: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
}

.five-lines-text {
  line-height: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 5;
}

.one-line-text,
.two-lines-text,
.three-lines-text,
.four-lines-text,
.five-lines-text {
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
  white-space: initial;
  -webkit-box-orient: vertical;
}

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

.word-break-all {
  word-break: break-all;
}

.letter-spacing-condensed {
  letter-spacing: -0.08em !important;
}

.letter-spacing-normal {
  letter-spacing: normal !important;
}

.letter-spacing-relaxed {
  letter-spacing: 0.08em !important;
}

.pointer-events-all {
  pointer-events: all;
}

.pointer-events-none {
  pointer-events: none;
}

.flatten,
.no-shadow,
.shadow-none {
  box-shadow: none !important;
}

.disabled {
  transition: opacity 100ms linear;
  opacity: 0.5;
  pointer-events: none;
}

.enabled {
  transition: opacity 100ms linear;
  opacity: 1;
}

.on-hover-show:hover {
  opacity: 1;
}

.on-hover-hide:hover {
  opacity: 0;
}

.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

.left {
  float: left;
}

.right {
  float: right;
}

.list,
.list-style-none {
  list-style: none;
}

.list-style-disc,
.list-style-dot {
  list-style: disc;
}

/*
How to use
@import '~matcha-ds/assets/scss/components/matcha-audio-player.scss';
@include matcha-audio-player-theme($theme);
*/
button[matcha-button],
a[matcha-button] {
  transition: all 50ms linear;
  overflow: hidden;
  position: relative;
  font-size: 16px;
  font-weight: 700;
  font-family: unset;
  height: 56px;
  appearance: auto;
  text-rendering: auto;
  letter-spacing: normal;
  word-spacing: normal;
  line-height: normal;
  text-transform: none;
  text-indent: 0px;
  text-shadow: none;
  text-align: center;
  text-wrap: nowrap;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-sizing: border-box;
  border-radius: 0.5rem;
}

button[matcha-button] *,
a[matcha-button] * {
  pointer-events: none;
}

button[matcha-button][size=tiny],
a[matcha-button][size=tiny] {
  padding: 0 2rem;
  line-height: 1.25rem;
  max-height: 2rem;
}

button[matcha-button][size=small],
a[matcha-button][size=small] {
  padding: 0 2rem;
  line-height: 1.25rem;
  max-height: 2.5rem;
}

button[matcha-button][size=medium],
a[matcha-button][size=medium] {
  padding: 0 2rem;
  line-height: 1.25rem;
  max-height: 3rem;
}

button[matcha-button][size=large],
a[matcha-button][size=large] {
  padding: 0 2rem;
  line-height: 1.25rem;
  max-height: 3.5rem;
}

button[matcha-button][size=huge],
a[matcha-button][size=huge] {
  padding: 0 2rem;
  line-height: 1.25rem;
  max-height: 3.5rem;
}

@media screen and (max-width: 599px) {
  button[matcha-button][size-xs=tiny],
  a[matcha-button][size-xs=tiny] {
    padding: 0 2rem;
    line-height: 1.25rem;
    max-height: 2rem;
  }
  button[matcha-button][size-xs=small],
  a[matcha-button][size-xs=small] {
    padding: 0 2rem;
    line-height: 1.25rem;
    max-height: 2.5rem;
  }
  button[matcha-button][size-xs=medium],
  a[matcha-button][size-xs=medium] {
    padding: 0 2rem;
    line-height: 1.25rem;
    max-height: 3rem;
  }
  button[matcha-button][size-xs=large],
  a[matcha-button][size-xs=large] {
    padding: 0 2rem;
    line-height: 1.25rem;
    max-height: 3.5rem;
  }
  button[matcha-button][size-xs=huge],
  a[matcha-button][size-xs=huge] {
    padding: 0 2rem;
    line-height: 1.25rem;
    max-height: 3.5rem;
  }
}
@media screen and (min-width: 600px) {
  button[matcha-button][size-sm=tiny],
  a[matcha-button][size-sm=tiny] {
    padding: 0 2rem;
    line-height: 1.25rem;
    max-height: 2rem;
  }
  button[matcha-button][size-sm=small],
  a[matcha-button][size-sm=small] {
    padding: 0 2rem;
    line-height: 1.25rem;
    max-height: 2.5rem;
  }
  button[matcha-button][size-sm=medium],
  a[matcha-button][size-sm=medium] {
    padding: 0 2rem;
    line-height: 1.25rem;
    max-height: 3rem;
  }
  button[matcha-button][size-sm=large],
  a[matcha-button][size-sm=large] {
    padding: 0 2rem;
    line-height: 1.25rem;
    max-height: 3.5rem;
  }
  button[matcha-button][size-sm=huge],
  a[matcha-button][size-sm=huge] {
    padding: 0 2rem;
    line-height: 1.25rem;
    max-height: 3.5rem;
  }
}
@media screen and (min-width: 1024px) {
  button[matcha-button][size-md=tiny],
  a[matcha-button][size-md=tiny] {
    padding: 0 2rem;
    line-height: 1.25rem;
    max-height: 2rem;
  }
  button[matcha-button][size-md=small],
  a[matcha-button][size-md=small] {
    padding: 0 2rem;
    line-height: 1.25rem;
    max-height: 2.5rem;
  }
  button[matcha-button][size-md=medium],
  a[matcha-button][size-md=medium] {
    padding: 0 2rem;
    line-height: 1.25rem;
    max-height: 3rem;
  }
  button[matcha-button][size-md=large],
  a[matcha-button][size-md=large] {
    padding: 0 2rem;
    line-height: 1.25rem;
    max-height: 3.5rem;
  }
  button[matcha-button][size-md=huge],
  a[matcha-button][size-md=huge] {
    padding: 0 2rem;
    line-height: 1.25rem;
    max-height: 3.5rem;
  }
}
@media screen and (min-width: 1440px) {
  button[matcha-button][size-lg=tiny],
  a[matcha-button][size-lg=tiny] {
    padding: 0 2rem;
    line-height: 1.25rem;
    max-height: 2rem;
  }
  button[matcha-button][size-lg=small],
  a[matcha-button][size-lg=small] {
    padding: 0 2rem;
    line-height: 1.25rem;
    max-height: 2.5rem;
  }
  button[matcha-button][size-lg=medium],
  a[matcha-button][size-lg=medium] {
    padding: 0 2rem;
    line-height: 1.25rem;
    max-height: 3rem;
  }
  button[matcha-button][size-lg=large],
  a[matcha-button][size-lg=large] {
    padding: 0 2rem;
    line-height: 1.25rem;
    max-height: 3.5rem;
  }
  button[matcha-button][size-lg=huge],
  a[matcha-button][size-lg=huge] {
    padding: 0 2rem;
    line-height: 1.25rem;
    max-height: 3.5rem;
  }
}
@media screen and (min-width: 1920px) {
  button[matcha-button][size-xl=tiny],
  a[matcha-button][size-xl=tiny] {
    padding: 0 2rem;
    line-height: 1.25rem;
    max-height: 2rem;
  }
  button[matcha-button][size-xl=small],
  a[matcha-button][size-xl=small] {
    padding: 0 2rem;
    line-height: 1.25rem;
    max-height: 2.5rem;
  }
  button[matcha-button][size-xl=medium],
  a[matcha-button][size-xl=medium] {
    padding: 0 2rem;
    line-height: 1.25rem;
    max-height: 3rem;
  }
  button[matcha-button][size-xl=large],
  a[matcha-button][size-xl=large] {
    padding: 0 2rem;
    line-height: 1.25rem;
    max-height: 3.5rem;
  }
  button[matcha-button][size-xl=huge],
  a[matcha-button][size-xl=huge] {
    padding: 0 2rem;
    line-height: 1.25rem;
    max-height: 3.5rem;
  }
}
button[matcha-button][disabled],
a[matcha-button][disabled] {
  pointer-events: none;
}

button[matcha-button][basic]:not([basic=false]),
a[matcha-button][basic]:not([basic=false]) {
  box-shadow: 0px 0px 0px 0px inset;
}

button[matcha-button][outline]:not([outline=false]),
a[matcha-button][outline]:not([outline=false]) {
  box-shadow: 0px 0px 0px 2px inset;
}

button[matcha-button][outline]:not([outline=false])[link]:not([link=false])[size=tiny],
a[matcha-button][outline]:not([outline=false])[link]:not([link=false])[size=tiny] {
  padding: 0px 8px;
  gap: 4px;
}

button[matcha-button][outline]:not([outline=false])[link]:not([link=false])[size=small],
a[matcha-button][outline]:not([outline=false])[link]:not([link=false])[size=small] {
  padding: 0px 12px;
  gap: 8px;
}

button[matcha-button][outline]:not([outline=false])[link]:not([link=false])[size=medium],
a[matcha-button][outline]:not([outline=false])[link]:not([link=false])[size=medium] {
  padding: 0px 16px;
  gap: 12px;
}

button[matcha-button][outline]:not([outline=false])[link]:not([link=false])[size=large],
a[matcha-button][outline]:not([outline=false])[link]:not([link=false])[size=large] {
  padding: 0px 16px;
  gap: 12px;
}

button[matcha-button][outline]:not([outline=false])[link]:not([link=false])[size=huge],
a[matcha-button][outline]:not([outline=false])[link]:not([link=false])[size=huge] {
  padding: 0px 16px;
  gap: 12px;
}

button[matcha-button][pill]:not([pill=false]),
a[matcha-button][pill]:not([pill=false]) {
  border-radius: 999px;
}

button[matcha-button][link]:not([link=false]),
a[matcha-button][link]:not([link=false]) {
  text-transform: initial;
  letter-spacing: 0;
  text-decoration: none;
  padding: 0;
}

button[matcha-button][icon]:not([icon=false]),
a[matcha-button][icon]:not([icon=false]) {
  aspect-ratio: 1;
  padding: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

button[matcha-button] .ripple,
a[matcha-button] .ripple {
  position: absolute;
  border-radius: 999px;
  transform: scale(0);
  pointer-events: none;
}

button[matcha-button] .ripple.show,
a[matcha-button] .ripple.show {
  animation: ripple 400ms ease-out;
}

@keyframes ripple {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  25% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(2);
  }
}
matcha-button-toggle .button-group.gap-0 {
  gap: 0 !important;
}

matcha-button-toggle .button-group.gap-0 button[matcha-button]:first-child {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

matcha-button-toggle .button-group.gap-0 button[matcha-button]:last-child {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

matcha-button-toggle .button-group.gap-0 button[matcha-button]:not(:first-child):not(:last-child) {
  border-radius: 0;
}

matcha-card,
.matcha-card,
.matcha-card-flat {
  padding: 16px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
}

matcha-card-border, matcha-card-border-left,
.matcha-card-border,
.matcha-card-border-left,
.matcha-card-flat-border,
.matcha-card-flat-border-left {
  border-left: 8px solid;
}

matcha-card-border-right,
.matcha-card-border-right,
.matcha-card-flat-border-right {
  border-right: 8px solid;
}

matcha-card.disabled,
.matcha-card.disabled,
.matcha-card-flat.disabled {
  transition: opacity 100ms linear;
  opacity: 0.5;
  pointer-events: none;
}

matcha-card.enabled,
.matcha-card.enabled,
.matcha-card-flat.enabled {
  transition: opacity 100ms linear;
  opacity: 1;
}

matcha-card.variable-width,
.matcha-card.variable-width,
.matcha-card-flat.variable-width {
  min-width: 0;
}

matcha-card.auto-width,
.matcha-card.auto-width,
.matcha-card-flat.auto-width {
  min-width: 0;
  max-width: none;
}

matcha-card.fixed-width,
.matcha-card.fixed-width,
.matcha-card-flat.fixed-width {
  min-width: 264px;
  max-width: 264px;
  width: 264px;
}

matcha-card .mat-button,
.matcha-card .mat-button,
.matcha-card-flat .mat-button {
  min-width: 0 !important;
  padding: 0 8px !important;
}

matcha-card .mat-button-toggle-group,
matcha-card .mat-button-toggle-standalone,
.matcha-card .mat-button-toggle-group,
.matcha-card .mat-button-toggle-standalone,
.matcha-card-flat .mat-button-toggle-group,
.matcha-card-flat .mat-button-toggle-standalone {
  box-shadow: none !important;
}

matcha-card .mat-tab-label,
.matcha-card .mat-tab-label,
.matcha-card-flat .mat-tab-label {
  min-width: 0 !important;
}

matcha-card .card-divider,
.matcha-card .card-divider,
.matcha-card-flat .card-divider {
  margin: 16px;
}

matcha-card .card-divider.full-width,
.matcha-card .card-divider.full-width,
.matcha-card-flat .card-divider.full-width {
  margin: 0;
}

matcha-card .card-expand-area,
.matcha-card .card-expand-area,
.matcha-card-flat .card-expand-area {
  overflow: hidden;
}

matcha-card .card-expand-area .card-expanded-content,
.matcha-card .card-expand-area .card-expanded-content,
.matcha-card-flat .card-expand-area .card-expanded-content {
  padding: 8px 16px 16px 16px;
  line-height: 1.75;
}

/*
How to use
@import '~matcha-ds/assets/scss/components/matcha-color-pick.scss';
@include matcha-color-pick-theme($theme);
*/
/*
How to use
@import '~matcha-ds/assets/scss/components/matcha-draggable.scss';
@include matcha-draggable-theme($theme);
*/
@keyframes drop-zone-animation {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 32px 0, 32px 0, 32px 0;
  }
}
@keyframes pulse-reject {
  0% {
    opacity: 0.5;
    transform: scaleY(1);
  }
  100% {
    opacity: 1;
    transform: scaleY(1.5);
  }
}
@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-2px);
  }
  75% {
    transform: translateX(2px);
  }
}
@keyframes drag-glow {
  0% {
    opacity: 0.1;
  }
  100% {
    opacity: 0.3;
  }
}
/*
How to use
@import '~matcha-ds/assets/scss/components/matcha-header.scss';
@include matcha-headers-theme($theme);
*/
.matcha-header__content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  height: auto;
}

.matcha-header__content > div:nth-child(n+2) {
  margin-top: 8px;
}

.matcha-header__content--few-options .matcha-header__content__options__buttons {
  display: flex;
}

.matcha-header__content--full-options .matcha-header__content__options__buttons {
  display: flex;
}

.matcha-header__content--full-options .main-btn-new {
  display: none;
}

.matcha-header__content--full-options .float-btn-new {
  display: inline-block;
}

.matcha-header__content__title {
  font-size: 20px;
  font-family: "CircularStd", "Helvetica Neue", "Arial", sans-serif;
  font-weight: 700;
  margin: 0 16px 0 0;
  line-height: 48px;
  min-height: 48px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: flex;
  align-items: center;
}

.matcha-header__content__title__icon {
  font-size: 32px;
  line-height: 32px;
  width: 32px;
  height: 32px;
  margin: 0px 16px 0 0px;
}

.matcha-header__content__title__label {
  line-height: 24px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
  white-space: initial;
  -webkit-box-orient: vertical;
  text-transform: capitalize;
}

.matcha-header__content__options {
  display: flex;
  margin: 0;
  flex-direction: column-reverse;
  justify-content: flex-end;
  width: 100%;
  padding: 16px;
  border-radius: 8px;
}

.matcha-header__content__options > div:nth-child(n+2) {
  margin-bottom: 8px;
}

.matcha-header__content__options__form {
  display: flex;
  width: 100%;
  height: 48px;
  margin-top: 0px;
}

.matcha-header__content__options__form form {
  display: flex;
  width: 100%;
  height: 48px;
  margin-top: 0px !important;
}

.matcha-header__content__options__form form .mat-form-field {
  width: 100%;
  margin: 0 0 0 0 !important;
}

.matcha-header__content__options__form form .mat-form-field .mat-form-field-wrapper {
  margin: 0;
}

.matcha-header__content__options__form form .mat-form-field .mat-form-field-outline-end {
  border-radius: 0 0 0 0 !important;
}

.matcha-header__content__options__form .btn-search-filter {
  margin: 0 0 0 -2px !important;
  border-radius: 0 8px 8px 0 !important;
}

.matcha-header__content__options__field {
  display: flex;
  width: 100%;
  height: 48px;
  margin-top: 0px;
}

.matcha-header__content__options__field form {
  display: flex;
  width: 100%;
  height: 48px;
  margin-top: 0px !important;
}

.matcha-header__content__options__field .mat-form-field {
  width: 100%;
  margin: 0 0 0 0 !important;
}

.matcha-header__content__options__field .mat-form-field .mat-form-field-wrapper {
  margin: 0;
}

.matcha-header__content__options__buttons button:nth-child(n):not(.float-btn-new):not(.btn-search-filter) {
  margin: 0 8px 0 0;
}

.matcha-header__content__options__buttons button:first-child {
  margin: 0 8px 0 0;
}

.matcha-header__content .float-btn-new {
  position: fixed;
  z-index: 9999;
  top: calc(100vh - 72px);
  left: calc(100vw - 72px);
}

@media screen and (min-width: 600px) {
  .matcha-header__content {
    padding: 16px;
    border-radius: 8px;
    flex-wrap: nowrap;
  }
  .matcha-header__content > div:nth-child(n+2) {
    margin-top: 0px;
  }
  .matcha-header__content--few-options .matcha-header__content__options__buttons {
    display: flex;
  }
  .matcha-header__content--full-options .matcha-header__content__options__buttons {
    display: flex;
  }
  .matcha-header__content--full-options .main-btn-new {
    display: inline-block;
  }
  .matcha-header__content--full-options .float-btn-new {
    display: none;
  }
  .matcha-header__content__options {
    flex-direction: row;
    max-width: -moz-fit-content;
    max-width: fit-content;
    padding: 0px;
    border-radius: 0px;
  }
  .matcha-header__content__options > div:nth-child(n+2) {
    margin-bottom: 0px;
  }
  .matcha-header__content__options__form, .matcha-header__content__options__field {
    min-width: 272px;
  }
  .matcha-header__content__options__buttons {
    margin-bottom: 0px;
    display: flex;
  }
  .matcha-header__content__options__buttons button:nth-child(n):not(.float-btn-new):not(.btn-search-filter) {
    margin: 0 0 0 16px;
  }
  .matcha-header__content__options__buttons button:first-child {
    margin: 0;
  }
}
/*
How to use
@import '~matcha-ds/assets/scss/components/matcha-header.scss';
@include matcha-progress-bar-theme($theme);
*/
.matcha-progress-bar {
  width: 100%;
  display: flex;
}

.matcha-progress-bar__field {
  border-radius: 8px;
  display: flex;
  width: 100%;
}

.matcha-progress-bar__progress {
  line-height: 12px;
  font-size: 12px;
  height: 16px;
  border-radius: 8px;
  display: flex;
}

.matcha-progress-bar__label {
  line-height: 16px;
  padding-left: 8px;
  display: flex;
  position: relative;
}

.matcha-tooltip-content {
  position: absolute;
  z-index: 9999;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 20px;
  width: auto;
  max-width: 500px;
  text-overflow: ellipsis;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.matcha-tooltip-content:not(.matcha-tooltip-content_below):not(.matcha-tooltip-content_left):not(.matcha-tooltip-content_right)::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 8px 0 8px;
  bottom: -4px;
  left: 50%;
  border-radius: 0px;
  transform: translateX(-50%);
}

.matcha-tooltip-close {
  display: flex;
  pointer-events: auto;
  cursor: pointer;
}

.matcha-tooltip-close::before {
  content: "\e92a";
  font-family: "MatchaIcons";
  font-size: 16px;
  line-height: 16px;
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.matcha-tooltip-content_below::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0px 8px 6px 8px;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
}

.matcha-tooltip-content_left::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 6px;
  top: 50%;
  right: -4px;
  transform: translateY(-50%);
}

.matcha-tooltip-content_right::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 6px 8px 0;
  top: 50%;
  left: -4px;
  transform: translateY(-50%);
}

.matcha-form-field input[type=text],
.matcha-form-field input[type=email],
.matcha-form-field input[type=tel],
.matcha-form-field input[type=url],
.matcha-form-field input[type=password],
.matcha-form-field input[type=number],
.matcha-form-field input[type=search],
.matcha-form-field input[type=date],
.matcha-form-field input[type=time],
.matcha-form-field textarea {
  width: 100%;
  outline: none;
  box-shadow: none;
  font-size: 16px;
  resize: none;
  font-weight: 500;
}

.matcha-form-field input[type=text]:focus,
.matcha-form-field input[type=email]:focus,
.matcha-form-field input[type=tel]:focus,
.matcha-form-field input[type=url]:focus,
.matcha-form-field input[type=password]:focus,
.matcha-form-field input[type=number]:focus,
.matcha-form-field input[type=search]:focus,
.matcha-form-field input[type=date]:focus,
.matcha-form-field input[type=time]:focus,
.matcha-form-field textarea:focus {
  outline: none;
}

matcha-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

matcha-checkbox input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  padding: 0;
  border-radius: 4px;
  border-width: 2px;
  border-style: solid;
  outline: none;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
}

matcha-checkbox input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 0px;
  width: 5px;
  height: 10px;
  border-style: solid;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

matcha-checkbox input[type=checkbox]:indeterminate::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 7px;
  width: 8px;
  height: 2px;
}

matcha-checkbox input[type=checkbox]:disabled {
  cursor: not-allowed;
}

matcha-checkbox .matcha-checkbox-label {
  font-size: 14px;
  -webkit-user-select: none;
          user-select: none;
  cursor: pointer;
}

matcha-checkbox[disabled] {
  cursor: not-allowed;
  opacity: 0.6;
}

matcha-checkbox[disabled] input[type=checkbox] {
  border-width: 2px;
  border-style: solid;
}

matcha-checkbox[disabled] .matcha-checkbox-label {
  cursor: not-allowed;
}

matcha-accordion[stretch]:not([stretch=false]) .accordion-header-wrapper {
  width: 100%;
}

matcha-accordion[stretch]:not([stretch=false]) .accordion-header-wrapper matcha-accordion-header {
  width: 100%;
}

matcha-spin:not([progress]) .spin-progress {
  animation: matcha-spin-rotate 1.5s linear infinite, matcha-spin-dash 1.5s ease-in-out infinite;
}

.matcha-spin {
  display: inline-block;
  position: relative;
}

.matcha-spin svg {
  transform: rotate(-90deg);
  width: 100%;
  height: 100%;
}

.matcha-spin .spin-placeholder {
  fill: none;
}

.matcha-spin .spin-progress {
  fill: none;
  stroke-linecap: round;
  transform-origin: center;
  transition: stroke-dashoffset 0.3s linear;
}

@keyframes matcha-spin-rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes matcha-spin-dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 100, 200;
    stroke-dashoffset: -15;
  }
  100% {
    stroke-dasharray: 100, 200;
    stroke-dashoffset: -200;
  }
}
matcha-spinner:not([progress]) .matcha-spinner,
matcha-spinner[progress="0"] .matcha-spinner {
  display: flex;
  position: relative;
}

matcha-spinner:not([progress]) .matcha-spinner .spinner-progress,
matcha-spinner[progress="0"] .matcha-spinner .spinner-progress {
  stroke-linecap: round;
  stroke-dasharray: 187;
  stroke-dashoffset: 0;
  transform-origin: center;
  animation: rotator 1.4s linear infinite, dash 1.4s ease-in-out infinite;
}

matcha-spinner:not([progress]) .matcha-spinner .spinner,
matcha-spinner[progress="0"] .matcha-spinner .spinner {
  animation: rotator 1.4s linear infinite;
}

@keyframes rotator {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(270deg);
  }
}
@keyframes dash {
  0% {
    stroke-dashoffset: 187;
  }
  50% {
    stroke-dashoffset: 46.75;
    transform: rotate(135deg);
  }
  100% {
    stroke-dashoffset: 187;
    transform: rotate(450deg);
  }
}
matcha-spinner[progress] .spinner-progress {
  animation: none;
}

matcha-radio {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

matcha-radio input[type=radio] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  padding: 0;
  margin: 0;
  border-radius: 50%;
  border-width: 2px;
  border-style: solid;
  outline: none;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
}

matcha-radio input[type=radio]:checked::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 3px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

matcha-radio input[type=radio]:disabled {
  cursor: not-allowed;
}

matcha-radio .matcha-radio-label {
  font-size: 14px;
  -webkit-user-select: none;
          user-select: none;
  cursor: pointer;
}

matcha-radio[disabled] {
  cursor: not-allowed;
  opacity: 0.6;
}

matcha-radio[disabled] input[type=radio] {
  border-width: 2px;
  border-style: solid;
}

matcha-radio[disabled] .matcha-radio-label {
  cursor: not-allowed;
}

.matcha-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  font-weight: 500;
  -webkit-user-select: none;
          user-select: none;
  flex-shrink: 0;
}

.matcha-avatar.matcha-avatar-tiny {
  width: 24px;
  height: 24px;
  font-size: 10px;
  line-height: 1;
}

.matcha-avatar.matcha-avatar-small {
  width: 40px;
  height: 40px;
  font-size: 14px;
  line-height: 1;
}

.matcha-avatar.matcha-avatar-medium {
  width: 56px;
  height: 56px;
  font-size: 20px;
  line-height: 1;
}

.matcha-avatar.matcha-avatar-large {
  width: 80px;
  height: 80px;
  font-size: 28px;
  line-height: 1;
}

.matcha-avatar.matcha-avatar-huge {
  width: 96px;
  height: 96px;
  font-size: 32px;
  line-height: 1;
}

.matcha-avatar .matcha-avatar-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.matcha-avatar .matcha-avatar-initials {
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.matcha-avatar .matcha-avatar-icon {
  width: 100%;
  height: 100%;
}

.matcha-avatar.color-disabled {
  opacity: 0.6;
  pointer-events: none;
}

.matcha-paginator .page-size-selector {
  position: relative;
  display: inline-block;
}

.matcha-paginator .page-size-selector .page-size-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: 8px 32px 8px 12px;
  border: 1px solid var(--color-border);
  background-color: var(--color-bg);
  color: var(--color-fg);
  font-size: 14px;
  font-family: CircularStd, "Helvetica Neue", "Arial", sans-serif, "angular";;
  font-weight: 500;
  cursor: pointer;
  min-width: 60px;
  transition: all 0.2s ease;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.033), 0px 2px 2px 0px rgba(0, 0, 0, 0.033), 0px 2px 2px 0px rgba(0, 0, 0, 0.033);
}

.matcha-paginator .page-size-selector .page-size-select:hover {
  border-color: var(--color-accent);
  background-color: var(--color-surface);
}

.matcha-paginator .page-size-selector .page-size-select:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.matcha-paginator .page-size-selector .page-size-select::-ms-expand {
  display: none;
}

.matcha-paginator .page-size-selector .page-size-select option {
  font-family: CircularStd, "Helvetica Neue", "Arial", sans-serif, "angular";;
  font-weight: 500;
  font-size: 14px;
  background-color: var(--color-bg);
  color: var(--color-fg);
  padding: 8px 12px;
}

.matcha-paginator .page-size-selector .select-icon {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  transition: transform 0.2s ease;
}

.matcha-paginator .page-size-selector .select-icon ::ng-deep .i-matcha-action_arrow_up {
  transform: rotate(180deg);
  font-size: 14px;
}

.matcha-paginator .page-size-selector:hover .select-icon ::ng-deep .i-matcha-action_arrow_up {
  transform: rotate(180deg) scale(1.1);
}

.matcha-paginator .page-size-select {
  padding: 4px 8px;
  border: 1px solid var(--color-border);
  background-color: var(--color-bg);
  color: var(--color-fg);
  font-size: 14px;
}

.matcha-paginator .page-size-select:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.matcha-paginator .nav-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border: 1px solid var(--color-border);
  background-color: var(--color-bg);
  color: var(--color-fg);
  cursor: pointer;
  transition: all 0.2s ease;
}

.matcha-paginator .nav-button:hover:not(:disabled) {
  background-color: var(--color-surface);
  border-color: var(--color-accent);
}

.matcha-paginator .nav-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.matcha-paginator .nav-button:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.matcha-paginator .page-button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  padding: 0 6px;
  border: 1px solid var(--color-border);
  background-color: var(--color-bg);
  color: var(--color-fg);
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 14px;
}

.matcha-paginator .page-button:hover:not(.active) {
  background-color: var(--color-surface);
  border-color: var(--color-accent);
}

.matcha-paginator .page-button:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.matcha-paginator .ellipsis {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-fg-muted);
  font-size: 14px;
  -webkit-user-select: none;
          user-select: none;
}

.matcha-paginator .text-sm {
  font-size: 14px;
  color: var(--color-fg);
}

.matcha-slider {
  position: relative;
  width: 100%;
  padding: 20px 0;
  -webkit-user-select: none;
          user-select: none;
  background-color: transparent;
}

.matcha-slider .slider-track {
  position: relative;
  height: 4px;
  border-radius: 2px;
  cursor: pointer;
  margin: 0 10px;
}

.matcha-slider .selection-bar {
  position: absolute;
  height: 100%;
  background-color: var(--color-accent);
  border-radius: 2px;
  transition: all 0.2s ease;
}

.matcha-slider .pointer {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  background-color: var(--color-accent);
  border-radius: 50%;
  cursor: grab;
  border: 4px solid var(--color-bg);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.matcha-slider .pointer:hover {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), 0 0 0 2px rgba(var(--color-accent-rgb), 0.24);
}

.matcha-slider .pointer:active {
  cursor: grabbing;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), 0 0 0 2px rgba(var(--color-accent-rgb), 0.24);
}

.matcha-slider .pointer:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--color-accent);
}

.matcha-slider .pointer.focused {
  box-shadow: 0 0 0 2px var(--color-accent);
}

.matcha-slider .pointer-label {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-surface);
  color: var(--color-fg);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 400;
  white-space: nowrap;
}

.matcha-slider .tick {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.matcha-slider .tick .tick-value {
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 16px;
  color: var(--color-fg-muted);
  white-space: nowrap;
}

.matcha-slider .limit-labels {
  display: flex;
  justify-content: space-between;
  margin: 8px 10px 0;
  top: -18px;
  position: relative;
  font-size: 16px;
  color: var(--color-fg-muted);
}

.matcha-slider .limit-labels .color-placeholder {
  color: var(--color-fg-muted);
}

.matcha-slider.disabled {
  opacity: 0.6;
  pointer-events: none;
  background-color: transparent !important;
}

.matcha-slider.disabled .slider-track {
  cursor: not-allowed;
  background-color: #E2E7E9;
}

.matcha-slider.disabled .pointer {
  cursor: not-allowed;
}

.matcha-slider.range .pointer.low-pointer {
  z-index: 2;
}

.matcha-slider.range .pointer.high-pointer {
  z-index: 1;
}

.matcha-slider.dragging .pointer {
  cursor: grabbing !important;
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.matcha-slider.dragging .selection-bar {
  transition: none;
  background-color: #A7B6BE;
}

.matcha-slider .pointer:focus-visible {
  outline-offset: 2px;
}

@media (prefers-contrast: high) {
  .matcha-slider .pointer {
    border-width: 3px;
  }
  .matcha-slider .selection-bar {
    border: 1px solid var(--color-fg);
  }
}
@media (prefers-reduced-motion: reduce) {
  .matcha-slider .pointer,
  .matcha-slider .selection-bar {
    transition: none;
  }
}
.button-group.gap-0 {
  gap: 0 !important;
}

.button-group.gap-0 matcha-tab-item:first-child button[matcha-button] {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.button-group.gap-0 matcha-tab-item:last-child button[matcha-button] {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.button-group.gap-0 matcha-tab-item:not(:first-child):not(:last-child) button[matcha-button] {
  border-radius: 0;
}

matcha-chip {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  cursor: default;
  outline: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid #5A6A72;
  white-space: nowrap;
  overflow: hidden;
  -webkit-user-select: none;
          user-select: none;
}

matcha-chip.matcha-chip-disabled {
  opacity: 0.4;
  pointer-events: none;
  cursor: default;
}

matcha-chip:not(.matcha-chip-disabled) {
  cursor: pointer;
}

.matcha-chip-content {
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  text-overflow: ellipsis;
}

.matcha-chip-remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  margin-left: 8px;
  margin-right: -4px;
  padding: 0;
  border: none;
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  outline: none;
  transition: opacity 0.2s;
}

.matcha-chip-remove:hover {
  opacity: 1;
}

.matcha-chip-remove:focus {
  opacity: 1;
}

.matcha-chip-remove[disabled] {
  cursor: default;
  opacity: 0.4;
}

.matcha-chip-remove-icon {
  font-size: 18px;
  line-height: 18px;
  color: inherit;
}

.matcha-chip-list-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.matcha-chip-list-wrapper.matcha-chip-list-vertical {
  flex-direction: column;
  align-items: flex-start;
}

.matcha-chip-list-disabled {
  opacity: 0.6;
  pointer-events: none;
}

@font-face {
  font-family: "CircularStd";
  src: url('CircularStd-Regular.eot');
  src: local("☺"), url('CircularStd-Regular.woff') format("woff"), url('CircularStd-Regular.ttf') format("truetype"), url('CircularStd-Regular.svg') format("svg");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "CircularStd";
  src: url('CircularStd-Medium.eot');
  src: local("☺"), url('CircularStd-Medium.woff') format("woff"), url('CircularStd-Medium.ttf') format("truetype"), url('CircularStd-Medium.svg') format("svg");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "CircularStd";
  src: url('CircularStd-Bold.eot');
  src: local("☺"), url('CircularStd-Bold.woff') format("woff"), url('CircularStd-Bold.ttf') format("truetype"), url('CircularStd-Bold.svg') format("svg");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "CircularStd";
  src: url('CircularStd-Black.eot');
  src: local("☺"), url('CircularStd-Black.woff') format("woff"), url('CircularStd-Black.ttf') format("truetype"), url('CircularStd-Black.svg') format("svg");
  font-weight: 900;
  font-style: normal;
}
.mat-ripple {
  overflow: hidden;
  position: relative;
}
.mat-ripple:not(:empty) {
  transform: translateZ(0);
}

.mat-ripple.mat-ripple-unbounded {
  overflow: visible;
}

.mat-ripple-element {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  transition: opacity, transform 0ms cubic-bezier(0, 0, 0.2, 1);
  transform: scale3d(0, 0, 0);
}
.cdk-high-contrast-active .mat-ripple-element {
  display: none;
}

.cdk-visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap;
  outline: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  left: 0;
}
[dir=rtl] .cdk-visually-hidden {
  left: auto;
  right: 0;
}

.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;
  z-index: 1000;
  display: flex;
  max-width: 100%;
  max-height: 100%;
}

.cdk-overlay-backdrop {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  pointer-events: auto;
  -webkit-tap-highlight-color: transparent;
  transition: opacity 400ms cubic-bezier(0.25, 0.8, 0.25, 1);
  opacity: 0;
}
.cdk-overlay-backdrop.cdk-overlay-backdrop-showing {
  opacity: 1;
}
.cdk-high-contrast-active .cdk-overlay-backdrop.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 {
  opacity: 0;
  visibility: visible;
}

.cdk-overlay-backdrop-noop-animation {
  transition: none;
}

.cdk-overlay-connected-position-bounding-box {
  position: absolute;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  min-width: 1px;
  min-height: 1px;
}

.cdk-global-scrollblock {
  position: fixed;
  width: 100%;
  overflow-y: scroll;
}

textarea.cdk-textarea-autosize {
  resize: none;
}

textarea.cdk-textarea-autosize-measuring {
  padding: 2px 0 !important;
  box-sizing: content-box !important;
  height: auto !important;
  overflow: hidden !important;
}

textarea.cdk-textarea-autosize-measuring-firefox {
  padding: 2px 0 !important;
  box-sizing: content-box !important;
  height: 0 !important;
}

@keyframes cdk-text-field-autofill-start { /*!*/ }
@keyframes cdk-text-field-autofill-end { /*!*/ }
.cdk-text-field-autofill-monitored:-webkit-autofill {
  animation: cdk-text-field-autofill-start 0s 1ms;
}

.cdk-text-field-autofill-monitored:not(:-webkit-autofill) {
  animation: cdk-text-field-autofill-end 0s 1ms;
}

.mat-focus-indicator {
  position: relative;
}
.mat-focus-indicator::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  box-sizing: border-box;
  pointer-events: none;
  display: var(--mat-focus-indicator-display, none);
  border: var(--mat-focus-indicator-border-width, 3px) var(--mat-focus-indicator-border-style, solid) var(--mat-focus-indicator-border-color, transparent);
  border-radius: var(--mat-focus-indicator-border-radius, 4px);
}
.mat-focus-indicator:focus::before {
  content: "";
}

.cdk-high-contrast-active {
  --mat-focus-indicator-display: block;
}

.mat-mdc-focus-indicator {
  position: relative;
}
.mat-mdc-focus-indicator::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  box-sizing: border-box;
  pointer-events: none;
  display: var(--mat-mdc-focus-indicator-display, none);
  border: var(--mat-mdc-focus-indicator-border-width, 3px) var(--mat-mdc-focus-indicator-border-style, solid) var(--mat-mdc-focus-indicator-border-color, transparent);
  border-radius: var(--mat-mdc-focus-indicator-border-radius, 4px);
}
.mat-mdc-focus-indicator:focus::before {
  content: "";
}

.cdk-high-contrast-active {
  --mat-mdc-focus-indicator-display: block;
}

.theme-default-light {
  --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);
  --mat-table-header-container-height: 56px;
  --mat-table-footer-container-height: 52px;
  --mat-table-row-item-container-height: 52px;
  --mat-table-header-headline-font: CircularStd, sans-serif, arial;
  --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: CircularStd, sans-serif, arial;
  --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: CircularStd, sans-serif, arial;
  --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;
  --mdc-typography-button-letter-spacing: 0;
  /* reduce the input height fom 56px to 48px */
  /* align icons inside of buttons */
  /* Colors
  --------------------------------------------------------------------------------------------------*/
  /* COMPONENT STYLE
  --------------------------------------------------------------------------------------------------*/
  /*!
  FullCalendar Core Package v4.2.0
  Docs & License: https://fullcalendar.io/
  (c) 2019 Adam Shaw
  */
  /* Colors
  --------------------------------------------------------------------------------------------------*/
  /* Popover
  --------------------------------------------------------------------------------------------------*/
  /* Misc Reusable Components
  --------------------------------------------------------------------------------------------------*/
  /* Tables
  --------------------------------------------------------------------------------------------------*/
  /* Internal Nav Links
  --------------------------------------------------------------------------------------------------*/
  /* Fake Table Rows
  --------------------------------------------------------------------------------------------------*/
  /* Day Row (used within the header and the DayGrid)
  --------------------------------------------------------------------------------------------------*/
  /* highlighting cells & background event skeleton */
  /*
  row content (which contains day/week numbers and events) as well as "mirror" (which contains
  temporary rendered events).
  */
  /* Scrolling Container
  --------------------------------------------------------------------------------------------------*/
  /* TODO: move to timegrid/daygrid */
  /* Global Event Styles
  --------------------------------------------------------------------------------------------------*/
  /* resizer (cursor AND touch devices) */
  /* resizer (touch devices) */
  /* hit area */
  /* Event Selection (only for touch devices)
  --------------------------------------------------------------------------------------------------*/
  /* Event Dragging
  --------------------------------------------------------------------------------------------------*/
  /* Horizontal Events
  --------------------------------------------------------------------------------------------------*/
  /* bigger touch area when selected */
  /* events that are continuing to/from another week. kill rounded corners and butt up against edge */
  /* resizer (cursor AND touch devices) */
  /* left resizer  */
  /* right resizer */
  /* resizer (mouse devices) */
  /* resizer (touch devices) */
  /* left resizer  */
  /* right resizer */
  /* DayGrid events
  ----------------------------------------------------------------------------------------------------
  We use the full "fc-day-grid-event" class instead of using descendants because the event won't
  be a descendant of the grid when it is being dragged.
  */
  /* resizer (cursor devices) */
  /* left resizer  */
  /* right resizer */
  /* Event Limiting
  --------------------------------------------------------------------------------------------------*/
  /* "more" link that represents hidden events */
  /* popover that appears when "more" link is clicked */
  /* Now Indicator
  --------------------------------------------------------------------------------------------------*/
  /* Utilities
  --------------------------------------------------------------------------------------------------*/
  /* Buttons
  --------------------------------------------------------------------------------------------------
  Lots taken from Flatly (MIT): https://bootswatch.com/4/flatly/bootstrap.css
  */
  /* reset */
  /* theme */
  /* icons within buttons */
  /* Buttons Groups
  --------------------------------------------------------------------------------------------------*/
  /* Popover
  --------------------------------------------------------------------------------------------------*/
  /* List View
  --------------------------------------------------------------------------------------------------*/
  /* Toolbar
  --------------------------------------------------------------------------------------------------*/
  /* inner content */
  /* View Structure
  --------------------------------------------------------------------------------------------------*/
  /* undo twitter bootstrap's box-sizing rules. normalizes positioning techniques */
  /* don't do this for the toolbar because we'll want bootstrap to style those buttons as some pt */
  /*!
  FullCalendar Day Grid Plugin v4.2.0
  Docs & License: https://fullcalendar.io/
  (c) 2019 Adam Shaw
  */
  /* DayGridView
  --------------------------------------------------------------------------------------------------*/
  /* day row structure */
  /* a "rigid" row will take up a constant amount of height because content-skeleton is absolute */
  /* week and day number styling */
  /* when week/day number have own column */
}
.theme-default-light .mat-ripple-element {
  background-color: rgba(0, 0, 0, 0.1);
}
.theme-default-light {
  --mat-option-selected-state-label-text-color: #2b363b;
  --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);
}

.theme-default-light .mat-accent {
  --mat-option-selected-state-label-text-color: #1e5bda;
}
.theme-default-light .mat-warn {
  --mat-option-selected-state-label-text-color: #d31818;
}
.theme-default-light {
  --mat-optgroup-label-text-color: rgba(0, 0, 0, 0.87);
}

.theme-default-light .mat-pseudo-checkbox-full {
  color: rgba(0, 0, 0, 0.54);
}
.theme-default-light .mat-pseudo-checkbox-full.mat-pseudo-checkbox-disabled {
  color: #b0b0b0;
}
.theme-default-light .mat-primary .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-minimal::after,
.theme-default-light .mat-primary .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-minimal::after {
  color: #2b363b;
}
.theme-default-light .mat-primary .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full,
.theme-default-light .mat-primary .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full {
  background: #2b363b;
}
.theme-default-light .mat-primary .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full::after,
.theme-default-light .mat-primary .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full::after {
  color: #fafafa;
}
.theme-default-light .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-minimal::after,
.theme-default-light .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-minimal::after {
  color: #1e5bda;
}
.theme-default-light .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full,
.theme-default-light .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full {
  background: #1e5bda;
}
.theme-default-light .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full::after,
.theme-default-light .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full::after {
  color: #fafafa;
}
.theme-default-light .mat-accent .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-minimal::after,
.theme-default-light .mat-accent .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-minimal::after {
  color: #1e5bda;
}
.theme-default-light .mat-accent .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full,
.theme-default-light .mat-accent .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full {
  background: #1e5bda;
}
.theme-default-light .mat-accent .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full::after,
.theme-default-light .mat-accent .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full::after {
  color: #fafafa;
}
.theme-default-light .mat-warn .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-minimal::after,
.theme-default-light .mat-warn .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-minimal::after {
  color: #d31818;
}
.theme-default-light .mat-warn .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full,
.theme-default-light .mat-warn .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full {
  background: #d31818;
}
.theme-default-light .mat-warn .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full::after,
.theme-default-light .mat-warn .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full::after {
  color: #fafafa;
}
.theme-default-light .mat-pseudo-checkbox-disabled.mat-pseudo-checkbox-checked.mat-pseudo-checkbox-minimal::after,
.theme-default-light .mat-pseudo-checkbox-disabled.mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-minimal::after {
  color: #b0b0b0;
}
.theme-default-light .mat-pseudo-checkbox-disabled.mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full,
.theme-default-light .mat-pseudo-checkbox-disabled.mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full {
  background: #b0b0b0;
}
.theme-default-light .mat-app-background, .theme-default-light.mat-app-background {
  background-color: #fafafa;
  color: rgba(0, 0, 0, 0.87);
}
.theme-default-light .mat-elevation-z0, .theme-default-light .mat-mdc-elevation-specific.mat-elevation-z0 {
  box-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);
}
.theme-default-light .mat-elevation-z1, .theme-default-light .mat-mdc-elevation-specific.mat-elevation-z1 {
  box-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);
}
.theme-default-light .mat-elevation-z2, .theme-default-light .mat-mdc-elevation-specific.mat-elevation-z2 {
  box-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);
}
.theme-default-light .mat-elevation-z3, .theme-default-light .mat-mdc-elevation-specific.mat-elevation-z3 {
  box-shadow: 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);
}
.theme-default-light .mat-elevation-z4, .theme-default-light .mat-mdc-elevation-specific.mat-elevation-z4 {
  box-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);
}
.theme-default-light .mat-elevation-z5, .theme-default-light .mat-mdc-elevation-specific.mat-elevation-z5 {
  box-shadow: 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);
}
.theme-default-light .mat-elevation-z6, .theme-default-light .mat-mdc-elevation-specific.mat-elevation-z6 {
  box-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);
}
.theme-default-light .mat-elevation-z7, .theme-default-light .mat-mdc-elevation-specific.mat-elevation-z7 {
  box-shadow: 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);
}
.theme-default-light .mat-elevation-z8, .theme-default-light .mat-mdc-elevation-specific.mat-elevation-z8 {
  box-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);
}
.theme-default-light .mat-elevation-z9, .theme-default-light .mat-mdc-elevation-specific.mat-elevation-z9 {
  box-shadow: 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);
}
.theme-default-light .mat-elevation-z10, .theme-default-light .mat-mdc-elevation-specific.mat-elevation-z10 {
  box-shadow: 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);
}
.theme-default-light .mat-elevation-z11, .theme-default-light .mat-mdc-elevation-specific.mat-elevation-z11 {
  box-shadow: 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);
}
.theme-default-light .mat-elevation-z12, .theme-default-light .mat-mdc-elevation-specific.mat-elevation-z12 {
  box-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);
}
.theme-default-light .mat-elevation-z13, .theme-default-light .mat-mdc-elevation-specific.mat-elevation-z13 {
  box-shadow: 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);
}
.theme-default-light .mat-elevation-z14, .theme-default-light .mat-mdc-elevation-specific.mat-elevation-z14 {
  box-shadow: 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);
}
.theme-default-light .mat-elevation-z15, .theme-default-light .mat-mdc-elevation-specific.mat-elevation-z15 {
  box-shadow: 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);
}
.theme-default-light .mat-elevation-z16, .theme-default-light .mat-mdc-elevation-specific.mat-elevation-z16 {
  box-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);
}
.theme-default-light .mat-elevation-z17, .theme-default-light .mat-mdc-elevation-specific.mat-elevation-z17 {
  box-shadow: 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);
}
.theme-default-light .mat-elevation-z18, .theme-default-light .mat-mdc-elevation-specific.mat-elevation-z18 {
  box-shadow: 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);
}
.theme-default-light .mat-elevation-z19, .theme-default-light .mat-mdc-elevation-specific.mat-elevation-z19 {
  box-shadow: 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);
}
.theme-default-light .mat-elevation-z20, .theme-default-light .mat-mdc-elevation-specific.mat-elevation-z20 {
  box-shadow: 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);
}
.theme-default-light .mat-elevation-z21, .theme-default-light .mat-mdc-elevation-specific.mat-elevation-z21 {
  box-shadow: 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);
}
.theme-default-light .mat-elevation-z22, .theme-default-light .mat-mdc-elevation-specific.mat-elevation-z22 {
  box-shadow: 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);
}
.theme-default-light .mat-elevation-z23, .theme-default-light .mat-mdc-elevation-specific.mat-elevation-z23 {
  box-shadow: 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);
}
.theme-default-light .mat-elevation-z24, .theme-default-light .mat-mdc-elevation-specific.mat-elevation-z24 {
  box-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-theme-loaded-marker {
  display: none;
}

.theme-default-light {
  --mat-option-label-text-font: CircularStd, sans-serif, arial;
  --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;
}

.theme-default-light {
  --mat-optgroup-label-text-font: CircularStd, sans-serif, arial;
  --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;
}

.theme-default-light .mat-mdc-card {
  --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);
  --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);
  --mat-card-subtitle-text-color: rgba(0, 0, 0, 0.54);
}
.theme-default-light .mat-mdc-card {
  --mat-card-title-text-font: CircularStd, sans-serif, arial;
  --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: CircularStd, sans-serif, arial;
  --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;
}
.theme-default-light .mat-mdc-progress-bar {
  --mdc-linear-progress-active-indicator-color: #2b363b;
  --mdc-linear-progress-track-color: rgba(43, 54, 59, 0.25);
}
@keyframes mdc-linear-progress-buffering {
  from {
    /* @noflip */ /*rtl:ignore*/
  }
}
.theme-default-light .mat-mdc-progress-bar .mdc-linear-progress__buffer-dots {
  background-color: rgba(43, 54, 59, 0.25);
  /* @alternate */
  background-color: var(--mdc-linear-progress-track-color, rgba(43, 54, 59, 0.25));
}
@media (forced-colors: active) {
  .theme-default-light .mat-mdc-progress-bar .mdc-linear-progress__buffer-dots {
    background-color: ButtonBorder;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .theme-default-light .mat-mdc-progress-bar .mdc-linear-progress__buffer-dots {
    background-color: transparent;
    background-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' enable-background='new 0 0 5 2' xml:space='preserve' viewBox='0 0 5 2' preserveAspectRatio='none slice'%3E%3Ccircle cx='1' cy='1' r='1' fill='rgba(43, 54, 59, 0.25)'/%3E%3C/svg%3E");
  }
}
.theme-default-light .mat-mdc-progress-bar .mdc-linear-progress__buffer-bar {
  background-color: rgba(43, 54, 59, 0.25);
  /* @alternate */
  background-color: var(--mdc-linear-progress-track-color, rgba(43, 54, 59, 0.25));
}
.theme-default-light .mat-mdc-progress-bar.mat-accent {
  --mdc-linear-progress-active-indicator-color: #1e5bda;
  --mdc-linear-progress-track-color: rgba(30, 91, 218, 0.25);
}
@keyframes mdc-linear-progress-buffering {
  from {
    /* @noflip */ /*rtl:ignore*/
  }
}
.theme-default-light .mat-mdc-progress-bar.mat-accent .mdc-linear-progress__buffer-dots {
  background-color: rgba(30, 91, 218, 0.25);
  /* @alternate */
  background-color: var(--mdc-linear-progress-track-color, rgba(30, 91, 218, 0.25));
}
@media (forced-colors: active) {
  .theme-default-light .mat-mdc-progress-bar.mat-accent .mdc-linear-progress__buffer-dots {
    background-color: ButtonBorder;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .theme-default-light .mat-mdc-progress-bar.mat-accent .mdc-linear-progress__buffer-dots {
    background-color: transparent;
    background-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' enable-background='new 0 0 5 2' xml:space='preserve' viewBox='0 0 5 2' preserveAspectRatio='none slice'%3E%3Ccircle cx='1' cy='1' r='1' fill='rgba(30, 91, 218, 0.25)'/%3E%3C/svg%3E");
  }
}
.theme-default-light .mat-mdc-progress-bar.mat-accent .mdc-linear-progress__buffer-bar {
  background-color: rgba(30, 91, 218, 0.25);
  /* @alternate */
  background-color: var(--mdc-linear-progress-track-color, rgba(30, 91, 218, 0.25));
}
.theme-default-light .mat-mdc-progress-bar.mat-warn {
  --mdc-linear-progress-active-indicator-color: #d31818;
  --mdc-linear-progress-track-color: rgba(211, 24, 24, 0.25);
}
@keyframes mdc-linear-progress-buffering {
  from {
    /* @noflip */ /*rtl:ignore*/
  }
}
.theme-default-light .mat-mdc-progress-bar.mat-warn .mdc-linear-progress__buffer-dots {
  background-color: rgba(211, 24, 24, 0.25);
  /* @alternate */
  background-color: var(--mdc-linear-progress-track-color, rgba(211, 24, 24, 0.25));
}
@media (forced-colors: active) {
  .theme-default-light .mat-mdc-progress-bar.mat-warn .mdc-linear-progress__buffer-dots {
    background-color: ButtonBorder;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .theme-default-light .mat-mdc-progress-bar.mat-warn .mdc-linear-progress__buffer-dots {
    background-color: transparent;
    background-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' enable-background='new 0 0 5 2' xml:space='preserve' viewBox='0 0 5 2' preserveAspectRatio='none slice'%3E%3Ccircle cx='1' cy='1' r='1' fill='rgba(211, 24, 24, 0.25)'/%3E%3C/svg%3E");
  }
}
.theme-default-light .mat-mdc-progress-bar.mat-warn .mdc-linear-progress__buffer-bar {
  background-color: rgba(211, 24, 24, 0.25);
  /* @alternate */
  background-color: var(--mdc-linear-progress-track-color, rgba(211, 24, 24, 0.25));
}
.theme-default-light .mat-mdc-tooltip {
  --mdc-plain-tooltip-container-color: #616161;
  --mdc-plain-tooltip-supporting-text-color: #fff;
}
.theme-default-light .mat-mdc-tooltip {
  --mdc-plain-tooltip-supporting-text-font: CircularStd, sans-serif, arial;
  --mdc-plain-tooltip-supporting-text-size: 12px;
  --mdc-plain-tooltip-supporting-text-weight: 400;
  --mdc-plain-tooltip-supporting-text-tracking: 0.0333333333em;
}
.theme-default-light {
  --mdc-filled-text-field-caret-color: #2b363b;
  --mdc-filled-text-field-focus-active-indicator-color: #2b363b;
  --mdc-filled-text-field-focus-label-text-color: rgba(43, 54, 59, 0.87);
  --mdc-filled-text-field-container-color: whitesmoke;
  --mdc-filled-text-field-disabled-container-color: #fafafa;
  --mdc-filled-text-field-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-focus-label-text-color: #d31818;
  --mdc-filled-text-field-error-label-text-color: #d31818;
  --mdc-filled-text-field-error-caret-color: #d31818;
  --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: #d31818;
  --mdc-filled-text-field-error-focus-active-indicator-color: #d31818;
  --mdc-filled-text-field-error-hover-active-indicator-color: #d31818;
  --mdc-outlined-text-field-caret-color: #2b363b;
  --mdc-outlined-text-field-focus-outline-color: #2b363b;
  --mdc-outlined-text-field-focus-label-text-color: rgba(43, 54, 59, 0.87);
  --mdc-outlined-text-field-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: #d31818;
  --mdc-outlined-text-field-error-focus-label-text-color: #d31818;
  --mdc-outlined-text-field-error-label-text-color: #d31818;
  --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: #d31818;
  --mdc-outlined-text-field-error-hover-outline-color: #d31818;
  --mdc-outlined-text-field-error-outline-color: #d31818;
  --mat-form-field-disabled-input-text-placeholder-color: rgba(0, 0, 0, 0.38);
}

.theme-default-light .mat-mdc-form-field-error {
  color: var(--mdc-theme-error, #d31818);
}
.theme-default-light .mat-mdc-form-field-subscript-wrapper,
.theme-default-light .mat-mdc-form-field-bottom-align::before {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: var(--mat-form-field-subscript-text-font);
  line-height: var(--mat-form-field-subscript-text-line-height);
  font-size: var(--mat-form-field-subscript-text-size);
  letter-spacing: var(--mat-form-field-subscript-text-tracking);
  font-weight: var(--mat-form-field-subscript-text-weight);
}
.theme-default-light .mat-mdc-form-field-focus-overlay {
  background-color: rgba(0, 0, 0, 0.87);
}
.theme-default-light .mat-mdc-form-field:hover .mat-mdc-form-field-focus-overlay {
  opacity: 0.04;
}
.theme-default-light .mat-mdc-form-field.mat-focused .mat-mdc-form-field-focus-overlay {
  opacity: 0.12;
}
.theme-default-light .mat-mdc-form-field-type-mat-native-select .mat-mdc-form-field-infix::after {
  color: rgba(0, 0, 0, 0.54);
}
.theme-default-light .mat-mdc-form-field-type-mat-native-select.mat-focused.mat-primary .mat-mdc-form-field-infix::after {
  color: rgba(43, 54, 59, 0.87);
}
.theme-default-light .mat-mdc-form-field-type-mat-native-select.mat-focused.mat-accent .mat-mdc-form-field-infix::after {
  color: rgba(30, 91, 218, 0.87);
}
.theme-default-light .mat-mdc-form-field-type-mat-native-select.mat-focused.mat-warn .mat-mdc-form-field-infix::after {
  color: rgba(211, 24, 24, 0.87);
}
.theme-default-light .mat-mdc-form-field-type-mat-native-select.mat-form-field-disabled .mat-mdc-form-field-infix::after {
  color: rgba(0, 0, 0, 0.38);
}
.theme-default-light .mat-mdc-form-field.mat-accent {
  --mdc-filled-text-field-caret-color: #1e5bda;
  --mdc-filled-text-field-focus-active-indicator-color: #1e5bda;
  --mdc-filled-text-field-focus-label-text-color: rgba(30, 91, 218, 0.87);
  --mdc-outlined-text-field-caret-color: #1e5bda;
  --mdc-outlined-text-field-focus-outline-color: #1e5bda;
  --mdc-outlined-text-field-focus-label-text-color: rgba(30, 91, 218, 0.87);
}
.theme-default-light .mat-mdc-form-field.mat-warn {
  --mdc-filled-text-field-caret-color: #d31818;
  --mdc-filled-text-field-focus-active-indicator-color: #d31818;
  --mdc-filled-text-field-focus-label-text-color: rgba(211, 24, 24, 0.87);
  --mdc-outlined-text-field-caret-color: #d31818;
  --mdc-outlined-text-field-focus-outline-color: #d31818;
  --mdc-outlined-text-field-focus-label-text-color: rgba(211, 24, 24, 0.87);
}
.theme-default-light .mat-mdc-form-field.mat-mdc-form-field.mat-mdc-form-field.mat-mdc-form-field.mat-mdc-form-field.mat-mdc-form-field .mdc-notched-outline__notch {
  border-left: 1px solid transparent;
}
.theme-default-light [dir=rtl] .mat-mdc-form-field.mat-mdc-form-field.mat-mdc-form-field.mat-mdc-form-field.mat-mdc-form-field.mat-mdc-form-field .mdc-notched-outline__notch {
  border-left: none;
  border-right: 1px solid transparent;
}
.theme-default-light .mat-mdc-form-field-infix {
  min-height: 56px;
}
.theme-default-light .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-floating-label {
  top: 28px;
}
.theme-default-light .mat-mdc-text-field-wrapper.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above {
  --mat-mdc-form-field-label-transform: translateY(
          -34.75px)
          scale(var(--mat-mdc-form-field-floating-label-scale, 0.75));
  transform: var(--mat-mdc-form-field-label-transform);
}
.theme-default-light .mat-mdc-text-field-wrapper.mdc-text-field--outlined .mat-mdc-form-field-infix {
  padding-top: 16px;
  padding-bottom: 16px;
}
.theme-default-light .mat-mdc-text-field-wrapper:not(.mdc-text-field--outlined) .mat-mdc-form-field-infix {
  padding-top: 24px;
  padding-bottom: 8px;
}
.theme-default-light .mdc-text-field--no-label:not(.mdc-text-field--outlined):not(.mdc-text-field--textarea) .mat-mdc-form-field-infix {
  padding-top: 16px;
  padding-bottom: 16px;
}
.theme-default-light {
  --mdc-filled-text-field-label-text-font: CircularStd, sans-serif, arial;
  --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;
  --mdc-outlined-text-field-label-text-font: CircularStd, sans-serif, arial;
  --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;
  --mat-form-field-container-text-font: CircularStd, sans-serif, arial;
  --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: CircularStd, sans-serif, arial;
  --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;
}

.theme-default-light {
  --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(43, 54, 59, 0.87);
  --mat-select-invalid-arrow-color: rgba(211, 24, 24, 0.87);
}
.theme-default-light .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(30, 91, 218, 0.87);
  --mat-select-invalid-arrow-color: rgba(211, 24, 24, 0.87);
}
.theme-default-light .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(211, 24, 24, 0.87);
  --mat-select-invalid-arrow-color: rgba(211, 24, 24, 0.87);
}

.theme-default-light {
  --mat-select-trigger-text-font: CircularStd, sans-serif, arial;
  --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;
}

.theme-default-light {
  --mat-autocomplete-background-color: white;
}

.theme-default-light .mat-mdc-dialog-container {
  --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);
}
.theme-default-light .mat-mdc-dialog-container {
  --mdc-dialog-subhead-font: CircularStd, sans-serif, arial;
  --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: CircularStd, sans-serif, arial;
  --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;
}
.theme-default-light .mat-mdc-standard-chip {
  --mdc-chip-disabled-label-text-color: #212121;
  --mdc-chip-elevated-container-color: #e0e0e0;
  --mdc-chip-elevated-disabled-container-color: #e0e0e0;
  --mdc-chip-focus-state-layer-color: black;
  --mdc-chip-focus-state-layer-opacity: 0.12;
  --mdc-chip-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;
}
.theme-default-light .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary, .theme-default-light .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary {
  --mdc-chip-disabled-label-text-color: white;
  --mdc-chip-elevated-container-color: #2b363b;
  --mdc-chip-elevated-disabled-container-color: #2b363b;
  --mdc-chip-focus-state-layer-color: black;
  --mdc-chip-focus-state-layer-opacity: 0.12;
  --mdc-chip-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;
}
.theme-default-light .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent, .theme-default-light .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent {
  --mdc-chip-disabled-label-text-color: white;
  --mdc-chip-elevated-container-color: #1e5bda;
  --mdc-chip-elevated-disabled-container-color: #1e5bda;
  --mdc-chip-focus-state-layer-color: black;
  --mdc-chip-focus-state-layer-opacity: 0.12;
  --mdc-chip-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;
}
.theme-default-light .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn, .theme-default-light .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn {
  --mdc-chip-disabled-label-text-color: white;
  --mdc-chip-elevated-container-color: #d31818;
  --mdc-chip-elevated-disabled-container-color: #d31818;
  --mdc-chip-focus-state-layer-color: black;
  --mdc-chip-focus-state-layer-opacity: 0.12;
  --mdc-chip-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;
}
.theme-default-light .mat-mdc-chip.mat-mdc-standard-chip {
  --mdc-chip-container-height: 32px;
}
.theme-default-light .mat-mdc-standard-chip {
  --mdc-chip-label-text-font: CircularStd, sans-serif, arial;
  --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;
}
.theme-default-light .mat-mdc-slide-toggle {
  --mdc-switch-selected-focus-state-layer-color: #5a6a72;
  --mdc-switch-selected-handle-color: #5a6a72;
  --mdc-switch-selected-hover-state-layer-color: #5a6a72;
  --mdc-switch-selected-pressed-state-layer-color: #5a6a72;
  --mdc-switch-selected-focus-handle-color: #21282c;
  --mdc-switch-selected-hover-handle-color: #21282c;
  --mdc-switch-selected-pressed-handle-color: #21282c;
  --mdc-switch-selected-focus-track-color: #a7b6be;
  --mdc-switch-selected-hover-track-color: #a7b6be;
  --mdc-switch-selected-pressed-track-color: #a7b6be;
  --mdc-switch-selected-track-color: #a7b6be;
  --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: var(--mdc-theme-surface, #fff);
  --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-handle-shadow-color: black;
  --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);
  --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;
}
.theme-default-light .mat-mdc-slide-toggle .mdc-form-field {
  color: var(--mdc-theme-text-primary-on-background, rgba(0, 0, 0, 0.87));
}
.theme-default-light .mat-mdc-slide-toggle .mdc-switch--disabled + label {
  color: rgba(0, 0, 0, 0.38);
}
.theme-default-light .mat-mdc-slide-toggle.mat-accent {
  --mdc-switch-selected-focus-state-layer-color: #1a53d6;
  --mdc-switch-selected-handle-color: #1a53d6;
  --mdc-switch-selected-hover-state-layer-color: #1a53d6;
  --mdc-switch-selected-pressed-state-layer-color: #1a53d6;
  --mdc-switch-selected-focus-handle-color: #0a2fc2;
  --mdc-switch-selected-hover-handle-color: #0a2fc2;
  --mdc-switch-selected-pressed-handle-color: #0a2fc2;
  --mdc-switch-selected-focus-track-color: #628ce5;
  --mdc-switch-selected-hover-track-color: #628ce5;
  --mdc-switch-selected-pressed-track-color: #628ce5;
  --mdc-switch-selected-track-color: #628ce5;
}
.theme-default-light .mat-mdc-slide-toggle.mat-warn {
  --mdc-switch-selected-focus-state-layer-color: #e23434;
  --mdc-switch-selected-handle-color: #e23434;
  --mdc-switch-selected-hover-state-layer-color: #e23434;
  --mdc-switch-selected-pressed-state-layer-color: #e23434;
  --mdc-switch-selected-focus-handle-color: #d31818;
  --mdc-switch-selected-hover-handle-color: #d31818;
  --mdc-switch-selected-pressed-handle-color: #d31818;
  --mdc-switch-selected-focus-track-color: #ed7575;
  --mdc-switch-selected-hover-track-color: #ed7575;
  --mdc-switch-selected-pressed-track-color: #ed7575;
  --mdc-switch-selected-track-color: #ed7575;
}
.theme-default-light .mat-mdc-slide-toggle {
  --mdc-switch-state-layer-size: 48px;
}
.theme-default-light .mat-mdc-slide-toggle {
  --mat-slide-toggle-label-text-font: CircularStd, sans-serif, arial;
  --mat-slide-toggle-label-text-size: 14px;
  --mat-slide-toggle-label-text-tracking: 0.0178571429em;
  --mat-slide-toggle-label-text-line-height: 20px;
  --mat-slide-toggle-label-text-weight: 400;
}
.theme-default-light .mat-mdc-slide-toggle .mdc-form-field {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: Roboto, sans-serif;
  /* @alternate */
  font-family: var(--mdc-typography-body2-font-family, var(--mdc-typography-font-family, Roboto, sans-serif));
  font-size: 0.875rem;
  /* @alternate */
  font-size: var(--mdc-typography-body2-font-size, 0.875rem);
  line-height: 1.25rem;
  /* @alternate */
  line-height: var(--mdc-typography-body2-line-height, 1.25rem);
  font-weight: 400;
  /* @alternate */
  font-weight: var(--mdc-typography-body2-font-weight, 400);
  letter-spacing: 0.0178571429em;
  /* @alternate */
  letter-spacing: var(--mdc-typography-body2-letter-spacing, 0.0178571429em);
  text-decoration: inherit;
  /* @alternate */
  -webkit-text-decoration: var(--mdc-typography-body2-text-decoration, inherit);
          text-decoration: var(--mdc-typography-body2-text-decoration, inherit);
  text-transform: inherit;
  /* @alternate */
  text-transform: var(--mdc-typography-body2-text-transform, inherit);
}
.theme-default-light .mat-mdc-radio-button .mdc-form-field {
  color: var(--mdc-theme-text-primary-on-background, rgba(0, 0, 0, 0.87));
}
.theme-default-light .mat-mdc-radio-button.mat-primary {
  --mdc-radio-disabled-selected-icon-color: #000;
  --mdc-radio-disabled-unselected-icon-color: #000;
  --mdc-radio-unselected-hover-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: #2b363b;
  --mdc-radio-selected-hover-icon-color: #2b363b;
  --mdc-radio-selected-icon-color: #2b363b;
  --mdc-radio-selected-pressed-icon-color: #2b363b;
  --mat-radio-ripple-color: #000;
  --mat-radio-checked-ripple-color: #2b363b;
  --mat-radio-disabled-label-color: rgba(0, 0, 0, 0.38);
}
.theme-default-light .mat-mdc-radio-button.mat-accent {
  --mdc-radio-disabled-selected-icon-color: #000;
  --mdc-radio-disabled-unselected-icon-color: #000;
  --mdc-radio-unselected-hover-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: #1e5bda;
  --mdc-radio-selected-hover-icon-color: #1e5bda;
  --mdc-radio-selected-icon-color: #1e5bda;
  --mdc-radio-selected-pressed-icon-color: #1e5bda;
  --mat-radio-ripple-color: #000;
  --mat-radio-checked-ripple-color: #1e5bda;
  --mat-radio-disabled-label-color: rgba(0, 0, 0, 0.38);
}
.theme-default-light .mat-mdc-radio-button.mat-warn {
  --mdc-radio-disabled-selected-icon-color: #000;
  --mdc-radio-disabled-unselected-icon-color: #000;
  --mdc-radio-unselected-hover-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: #d31818;
  --mdc-radio-selected-hover-icon-color: #d31818;
  --mdc-radio-selected-icon-color: #d31818;
  --mdc-radio-selected-pressed-icon-color: #d31818;
  --mat-radio-ripple-color: #000;
  --mat-radio-checked-ripple-color: #d31818;
  --mat-radio-disabled-label-color: rgba(0, 0, 0, 0.38);
}
.theme-default-light .mat-mdc-radio-button .mdc-radio {
  --mdc-radio-state-layer-size: 40px;
}
.theme-default-light .mat-mdc-radio-button .mdc-form-field {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: var(--mdc-typography-body2-font-family, var(--mdc-typography-font-family, CircularStd, sans-serif, arial));
  font-size: var(--mdc-typography-body2-font-size, 14px);
  line-height: var(--mdc-typography-body2-line-height, 20px);
  font-weight: var(--mdc-typography-body2-font-weight, 400);
  letter-spacing: var(--mdc-typography-body2-letter-spacing, 0.0178571429em);
  -webkit-text-decoration: var(--mdc-typography-body2-text-decoration, inherit);
          text-decoration: var(--mdc-typography-body2-text-decoration, inherit);
  text-transform: var(--mdc-typography-body2-text-transform, none);
}
.theme-default-light .mat-mdc-slider {
  --mdc-slider-label-container-color: black;
  --mdc-slider-label-label-text-color: white;
  --mdc-slider-disabled-handle-color: #000;
  --mdc-slider-disabled-active-track-color: #000;
  --mdc-slider-disabled-inactive-track-color: #000;
  --mdc-slider-with-tick-marks-disabled-container-color: #000;
  --mat-mdc-slider-value-indicator-opacity: 0.6;
}
.theme-default-light .mat-mdc-slider.mat-primary {
  --mdc-slider-handle-color: #2b363b;
  --mdc-slider-focus-handle-color: #2b363b;
  --mdc-slider-hover-handle-color: #2b363b;
  --mdc-slider-active-track-color: #2b363b;
  --mdc-slider-inactive-track-color: #2b363b;
  --mdc-slider-with-tick-marks-active-container-color: #fff;
  --mdc-slider-with-tick-marks-inactive-container-color: #2b363b;
  --mat-mdc-slider-ripple-color: #2b363b;
  --mat-mdc-slider-hover-ripple-color: rgba(43, 54, 59, 0.05);
  --mat-mdc-slider-focus-ripple-color: rgba(43, 54, 59, 0.2);
}
.theme-default-light .mat-mdc-slider.mat-accent {
  --mdc-slider-handle-color: #1e5bda;
  --mdc-slider-focus-handle-color: #1e5bda;
  --mdc-slider-hover-handle-color: #1e5bda;
  --mdc-slider-active-track-color: #1e5bda;
  --mdc-slider-inactive-track-color: #1e5bda;
  --mdc-slider-with-tick-marks-active-container-color: #fff;
  --mdc-slider-with-tick-marks-inactive-container-color: #1e5bda;
  --mat-mdc-slider-ripple-color: #1e5bda;
  --mat-mdc-slider-hover-ripple-color: rgba(30, 91, 218, 0.05);
  --mat-mdc-slider-focus-ripple-color: rgba(30, 91, 218, 0.2);
}
.theme-default-light .mat-mdc-slider.mat-warn {
  --mdc-slider-handle-color: #d31818;
  --mdc-slider-focus-handle-color: #d31818;
  --mdc-slider-hover-handle-color: #d31818;
  --mdc-slider-active-track-color: #d31818;
  --mdc-slider-inactive-track-color: #d31818;
  --mdc-slider-with-tick-marks-active-container-color: #fff;
  --mdc-slider-with-tick-marks-inactive-container-color: #d31818;
  --mat-mdc-slider-ripple-color: #d31818;
  --mat-mdc-slider-hover-ripple-color: rgba(211, 24, 24, 0.05);
  --mat-mdc-slider-focus-ripple-color: rgba(211, 24, 24, 0.2);
}
.theme-default-light .mat-mdc-slider {
  --mdc-slider-label-label-text-font: CircularStd, sans-serif, arial;
  --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;
}
.theme-default-light {
  --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;
}

.theme-default-light {
  --mat-menu-item-label-text-font: CircularStd, sans-serif, arial;
  --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;
}

.theme-default-light .mat-mdc-list-base {
  --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;
}
.theme-default-light .mdc-list-item__start,
.theme-default-light .mdc-list-item__end {
  --mdc-radio-disabled-selected-icon-color: #000;
  --mdc-radio-disabled-unselected-icon-color: #000;
  --mdc-radio-unselected-hover-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: #2b363b;
  --mdc-radio-selected-hover-icon-color: #2b363b;
  --mdc-radio-selected-icon-color: #2b363b;
  --mdc-radio-selected-pressed-icon-color: #2b363b;
}
.theme-default-light .mat-accent .mdc-list-item__start,
.theme-default-light .mat-accent .mdc-list-item__end {
  --mdc-radio-disabled-selected-icon-color: #000;
  --mdc-radio-disabled-unselected-icon-color: #000;
  --mdc-radio-unselected-hover-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: #1e5bda;
  --mdc-radio-selected-hover-icon-color: #1e5bda;
  --mdc-radio-selected-icon-color: #1e5bda;
  --mdc-radio-selected-pressed-icon-color: #1e5bda;
}
.theme-default-light .mat-warn .mdc-list-item__start,
.theme-default-light .mat-warn .mdc-list-item__end {
  --mdc-radio-disabled-selected-icon-color: #000;
  --mdc-radio-disabled-unselected-icon-color: #000;
  --mdc-radio-unselected-hover-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: #d31818;
  --mdc-radio-selected-hover-icon-color: #d31818;
  --mdc-radio-selected-icon-color: #d31818;
  --mdc-radio-selected-pressed-icon-color: #d31818;
}
.theme-default-light .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: #fff;
  --mdc-checkbox-selected-focus-icon-color: #2b363b;
  --mdc-checkbox-selected-hover-icon-color: #2b363b;
  --mdc-checkbox-selected-icon-color: #2b363b;
  --mdc-checkbox-selected-pressed-icon-color: #2b363b;
  --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-unselected-pressed-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-checkbox-selected-focus-state-layer-color: #2b363b;
  --mdc-checkbox-selected-hover-state-layer-color: #2b363b;
  --mdc-checkbox-selected-pressed-state-layer-color: #2b363b;
  --mdc-checkbox-unselected-focus-state-layer-color: black;
  --mdc-checkbox-unselected-hover-state-layer-color: black;
  --mdc-checkbox-unselected-pressed-state-layer-color: black;
}
.theme-default-light .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: #fff;
  --mdc-checkbox-selected-focus-icon-color: #1e5bda;
  --mdc-checkbox-selected-hover-icon-color: #1e5bda;
  --mdc-checkbox-selected-icon-color: #1e5bda;
  --mdc-checkbox-selected-pressed-icon-color: #1e5bda;
  --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-unselected-pressed-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-checkbox-selected-focus-state-layer-color: #1e5bda;
  --mdc-checkbox-selected-hover-state-layer-color: #1e5bda;
  --mdc-checkbox-selected-pressed-state-layer-color: #1e5bda;
  --mdc-checkbox-unselected-focus-state-layer-color: black;
  --mdc-checkbox-unselected-hover-state-layer-color: black;
  --mdc-checkbox-unselected-pressed-state-layer-color: black;
}
.theme-default-light .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: #fff;
  --mdc-checkbox-selected-focus-icon-color: #d31818;
  --mdc-checkbox-selected-hover-icon-color: #d31818;
  --mdc-checkbox-selected-icon-color: #d31818;
  --mdc-checkbox-selected-pressed-icon-color: #d31818;
  --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-unselected-pressed-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-checkbox-selected-focus-state-layer-color: #d31818;
  --mdc-checkbox-selected-hover-state-layer-color: #d31818;
  --mdc-checkbox-selected-pressed-state-layer-color: #d31818;
  --mdc-checkbox-unselected-focus-state-layer-color: black;
  --mdc-checkbox-unselected-hover-state-layer-color: black;
  --mdc-checkbox-unselected-pressed-state-layer-color: black;
}
.theme-default-light .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text,
.theme-default-light .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text {
  color: #2b363b;
}
.theme-default-light .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected.mdc-list-item--with-leading-icon .mdc-list-item__start,
.theme-default-light .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated.mdc-list-item--with-leading-icon .mdc-list-item__start {
  color: #2b363b;
}
.theme-default-light .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__start,
.theme-default-light .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__content,
.theme-default-light .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__end {
  opacity: 1;
}
.theme-default-light .mat-mdc-list-base {
  --mdc-list-list-item-one-line-container-height: 48px;
  --mdc-list-list-item-two-line-container-height: 64px;
  --mdc-list-list-item-three-line-container-height: 88px;
}
.theme-default-light .mat-mdc-list-item.mdc-list-item--with-leading-avatar.mdc-list-item--with-one-line, .theme-default-light .mat-mdc-list-item.mdc-list-item--with-leading-checkbox.mdc-list-item--with-one-line, .theme-default-light .mat-mdc-list-item.mdc-list-item--with-leading-icon.mdc-list-item--with-one-line {
  height: 56px;
}
.theme-default-light .mat-mdc-list-item.mdc-list-item--with-leading-avatar.mdc-list-item--with-two-lines, .theme-default-light .mat-mdc-list-item.mdc-list-item--with-leading-checkbox.mdc-list-item--with-two-lines, .theme-default-light .mat-mdc-list-item.mdc-list-item--with-leading-icon.mdc-list-item--with-two-lines {
  height: 72px;
}
.theme-default-light .mat-mdc-list-base {
  --mdc-list-list-item-label-text-font: CircularStd, sans-serif, arial;
  --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: CircularStd, sans-serif, arial;
  --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: CircularStd, sans-serif, arial;
  --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;
}
.theme-default-light .mdc-list-group__subheader {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  font-family: CircularStd, sans-serif, arial;
  letter-spacing: 0.009375em;
}
.theme-default-light {
  --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);
}

.theme-default-light {
  --mat-paginator-container-size: 56px;
}

.theme-default-light .mat-mdc-paginator .mat-mdc-form-field-infix {
  min-height: 40px;
}
.theme-default-light .mat-mdc-paginator .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-floating-label {
  top: 20px;
}
.theme-default-light .mat-mdc-paginator .mat-mdc-text-field-wrapper.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above {
  --mat-mdc-form-field-label-transform: translateY(
          -26.75px)
          scale(var(--mat-mdc-form-field-floating-label-scale, 0.75));
  transform: var(--mat-mdc-form-field-label-transform);
}
.theme-default-light .mat-mdc-paginator .mat-mdc-text-field-wrapper.mdc-text-field--outlined .mat-mdc-form-field-infix {
  padding-top: 8px;
  padding-bottom: 8px;
}
.theme-default-light .mat-mdc-paginator .mat-mdc-text-field-wrapper:not(.mdc-text-field--outlined) .mat-mdc-form-field-infix {
  padding-top: 8px;
  padding-bottom: 8px;
}
.theme-default-light .mat-mdc-paginator .mdc-text-field--no-label:not(.mdc-text-field--outlined):not(.mdc-text-field--textarea) .mat-mdc-form-field-infix {
  padding-top: 8px;
  padding-bottom: 8px;
}
.theme-default-light .mat-mdc-paginator .mat-mdc-text-field-wrapper:not(.mdc-text-field--outlined) .mat-mdc-floating-label {
  display: none;
}
.theme-default-light {
  --mat-paginator-container-text-font: CircularStd, sans-serif, arial;
  --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;
}

.theme-default-light .mat-mdc-tab-group, .theme-default-light .mat-mdc-tab-nav-bar {
  --mdc-tab-indicator-active-indicator-color: #2b363b;
  --mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, 0.38);
  --mat-tab-header-pagination-icon-color: #000;
  --mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, 0.6);
  --mat-tab-header-active-label-text-color: #2b363b;
  --mat-tab-header-active-ripple-color: #2b363b;
  --mat-tab-header-inactive-ripple-color: #2b363b;
  --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: #2b363b;
  --mat-tab-header-active-hover-label-text-color: #2b363b;
  --mat-tab-header-active-focus-indicator-color: #2b363b;
  --mat-tab-header-active-hover-indicator-color: #2b363b;
}
.theme-default-light .mat-mdc-tab-group.mat-accent, .theme-default-light .mat-mdc-tab-nav-bar.mat-accent {
  --mdc-tab-indicator-active-indicator-color: #1e5bda;
  --mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, 0.38);
  --mat-tab-header-pagination-icon-color: #000;
  --mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, 0.6);
  --mat-tab-header-active-label-text-color: #1e5bda;
  --mat-tab-header-active-ripple-color: #1e5bda;
  --mat-tab-header-inactive-ripple-color: #1e5bda;
  --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: #1e5bda;
  --mat-tab-header-active-hover-label-text-color: #1e5bda;
  --mat-tab-header-active-focus-indicator-color: #1e5bda;
  --mat-tab-header-active-hover-indicator-color: #1e5bda;
}
.theme-default-light .mat-mdc-tab-group.mat-warn, .theme-default-light .mat-mdc-tab-nav-bar.mat-warn {
  --mdc-tab-indicator-active-indicator-color: #d31818;
  --mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, 0.38);
  --mat-tab-header-pagination-icon-color: #000;
  --mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, 0.6);
  --mat-tab-header-active-label-text-color: #d31818;
  --mat-tab-header-active-ripple-color: #d31818;
  --mat-tab-header-inactive-ripple-color: #d31818;
  --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: #d31818;
  --mat-tab-header-active-hover-label-text-color: #d31818;
  --mat-tab-header-active-focus-indicator-color: #d31818;
  --mat-tab-header-active-hover-indicator-color: #d31818;
}
.theme-default-light .mat-mdc-tab-group.mat-background-primary, .theme-default-light .mat-mdc-tab-nav-bar.mat-background-primary {
  --mat-tab-header-with-background-background-color: #2b363b;
  --mat-tab-header-with-background-foreground-color: white;
}
.theme-default-light .mat-mdc-tab-group.mat-background-accent, .theme-default-light .mat-mdc-tab-nav-bar.mat-background-accent {
  --mat-tab-header-with-background-background-color: #1e5bda;
  --mat-tab-header-with-background-foreground-color: white;
}
.theme-default-light .mat-mdc-tab-group.mat-background-warn, .theme-default-light .mat-mdc-tab-nav-bar.mat-background-warn {
  --mat-tab-header-with-background-background-color: #d31818;
  --mat-tab-header-with-background-foreground-color: white;
}
.theme-default-light .mat-mdc-tab-header {
  --mdc-secondary-navigation-tab-container-height: 48px;
}
.theme-default-light .mat-mdc-tab-header {
  --mat-tab-header-label-text-font: CircularStd, sans-serif, arial;
  --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;
}
.theme-default-light {
  --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: #fff;
  --mdc-checkbox-selected-focus-icon-color: #1e5bda;
  --mdc-checkbox-selected-hover-icon-color: #1e5bda;
  --mdc-checkbox-selected-icon-color: #1e5bda;
  --mdc-checkbox-selected-pressed-icon-color: #1e5bda;
  --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-unselected-pressed-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-checkbox-selected-focus-state-layer-color: #1e5bda;
  --mdc-checkbox-selected-hover-state-layer-color: #1e5bda;
  --mdc-checkbox-selected-pressed-state-layer-color: #1e5bda;
  --mdc-checkbox-unselected-focus-state-layer-color: black;
  --mdc-checkbox-unselected-hover-state-layer-color: black;
  --mdc-checkbox-unselected-pressed-state-layer-color: black;
}

.theme-default-light .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: #fff;
  --mdc-checkbox-selected-focus-icon-color: #2b363b;
  --mdc-checkbox-selected-hover-icon-color: #2b363b;
  --mdc-checkbox-selected-icon-color: #2b363b;
  --mdc-checkbox-selected-pressed-icon-color: #2b363b;
  --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-unselected-pressed-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-checkbox-selected-focus-state-layer-color: #2b363b;
  --mdc-checkbox-selected-hover-state-layer-color: #2b363b;
  --mdc-checkbox-selected-pressed-state-layer-color: #2b363b;
  --mdc-checkbox-unselected-focus-state-layer-color: black;
  --mdc-checkbox-unselected-hover-state-layer-color: black;
  --mdc-checkbox-unselected-pressed-state-layer-color: black;
}
.theme-default-light .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: #fff;
  --mdc-checkbox-selected-focus-icon-color: #d31818;
  --mdc-checkbox-selected-hover-icon-color: #d31818;
  --mdc-checkbox-selected-icon-color: #d31818;
  --mdc-checkbox-selected-pressed-icon-color: #d31818;
  --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-unselected-pressed-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-checkbox-selected-focus-state-layer-color: #d31818;
  --mdc-checkbox-selected-hover-state-layer-color: #d31818;
  --mdc-checkbox-selected-pressed-state-layer-color: #d31818;
  --mdc-checkbox-unselected-focus-state-layer-color: black;
  --mdc-checkbox-unselected-hover-state-layer-color: black;
  --mdc-checkbox-unselected-pressed-state-layer-color: black;
}
.theme-default-light .mat-mdc-checkbox .mdc-form-field {
  color: var(--mdc-theme-text-primary-on-background, rgba(0, 0, 0, 0.87));
}
.theme-default-light .mat-mdc-checkbox.mat-mdc-checkbox-disabled label {
  color: rgba(0, 0, 0, 0.38);
}
.theme-default-light {
  --mdc-checkbox-state-layer-size: 40px;
}

.theme-default-light .mat-mdc-checkbox .mdc-form-field {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: var(--mdc-typography-body2-font-family, var(--mdc-typography-font-family, CircularStd, sans-serif, arial));
  font-size: var(--mdc-typography-body2-font-size, 14px);
  line-height: var(--mdc-typography-body2-line-height, 20px);
  font-weight: var(--mdc-typography-body2-font-weight, 400);
  letter-spacing: var(--mdc-typography-body2-letter-spacing, 0.0178571429em);
  -webkit-text-decoration: var(--mdc-typography-body2-text-decoration, inherit);
          text-decoration: var(--mdc-typography-body2-text-decoration, inherit);
  text-transform: var(--mdc-typography-body2-text-transform, none);
}
.theme-default-light .mat-mdc-button.mat-unthemed {
  --mdc-text-button-label-text-color: #000;
}
.theme-default-light .mat-mdc-button.mat-primary {
  --mdc-text-button-label-text-color: #2b363b;
}
.theme-default-light .mat-mdc-button.mat-accent {
  --mdc-text-button-label-text-color: #1e5bda;
}
.theme-default-light .mat-mdc-button.mat-warn {
  --mdc-text-button-label-text-color: #d31818;
}
.theme-default-light .mat-mdc-button[disabled][disabled] {
  --mdc-text-button-disabled-label-text-color: rgba(0, 0, 0, 0.38);
  --mdc-text-button-label-text-color: rgba(0, 0, 0, 0.38);
}
.theme-default-light .mat-mdc-unelevated-button.mat-unthemed {
  --mdc-filled-button-container-color: #fff;
  --mdc-filled-button-label-text-color: #000;
}
.theme-default-light .mat-mdc-unelevated-button.mat-primary {
  --mdc-filled-button-container-color: #2b363b;
  --mdc-filled-button-label-text-color: #fff;
}
.theme-default-light .mat-mdc-unelevated-button.mat-accent {
  --mdc-filled-button-container-color: #1e5bda;
  --mdc-filled-button-label-text-color: #fff;
}
.theme-default-light .mat-mdc-unelevated-button.mat-warn {
  --mdc-filled-button-container-color: #d31818;
  --mdc-filled-button-label-text-color: #fff;
}
.theme-default-light .mat-mdc-unelevated-button[disabled][disabled] {
  --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);
  --mdc-filled-button-container-color: rgba(0, 0, 0, 0.12);
  --mdc-filled-button-label-text-color: rgba(0, 0, 0, 0.38);
}
.theme-default-light .mat-mdc-raised-button.mat-unthemed {
  --mdc-protected-button-container-color: #fff;
  --mdc-protected-button-label-text-color: #000;
}
.theme-default-light .mat-mdc-raised-button.mat-primary {
  --mdc-protected-button-container-color: #2b363b;
  --mdc-protected-button-label-text-color: #fff;
}
.theme-default-light .mat-mdc-raised-button.mat-accent {
  --mdc-protected-button-container-color: #1e5bda;
  --mdc-protected-button-label-text-color: #fff;
}
.theme-default-light .mat-mdc-raised-button.mat-warn {
  --mdc-protected-button-container-color: #d31818;
  --mdc-protected-button-label-text-color: #fff;
}
.theme-default-light .mat-mdc-raised-button[disabled][disabled] {
  --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);
  --mdc-protected-button-container-color: rgba(0, 0, 0, 0.12);
  --mdc-protected-button-label-text-color: rgba(0, 0, 0, 0.38);
  --mdc-protected-button-container-elevation: 0;
}
.theme-default-light .mat-mdc-outlined-button {
  --mdc-outlined-button-outline-color: rgba(0, 0, 0, 0.12);
}
.theme-default-light .mat-mdc-outlined-button.mat-unthemed {
  --mdc-outlined-button-label-text-color: #000;
}
.theme-default-light .mat-mdc-outlined-button.mat-primary {
  --mdc-outlined-button-label-text-color: #2b363b;
}
.theme-default-light .mat-mdc-outlined-button.mat-accent {
  --mdc-outlined-button-label-text-color: #1e5bda;
}
.theme-default-light .mat-mdc-outlined-button.mat-warn {
  --mdc-outlined-button-label-text-color: #d31818;
}
.theme-default-light .mat-mdc-outlined-button[disabled][disabled] {
  --mdc-outlined-button-label-text-color: rgba(0, 0, 0, 0.38);
  --mdc-outlined-button-disabled-label-text-color: rgba(0, 0, 0, 0.38);
  --mdc-outlined-button-outline-color: rgba(0, 0, 0, 0.12);
  --mdc-outlined-button-disabled-outline-color: rgba(0, 0, 0, 0.12);
}
.theme-default-light .mat-mdc-button, .theme-default-light .mat-mdc-outlined-button {
  --mat-mdc-button-persistent-ripple-color: #000;
  --mat-mdc-button-ripple-color: rgba(0, 0, 0, 0.1);
}
.theme-default-light .mat-mdc-button:hover .mat-mdc-button-persistent-ripple::before, .theme-default-light .mat-mdc-outlined-button:hover .mat-mdc-button-persistent-ripple::before {
  opacity: 0.04;
}
.theme-default-light .mat-mdc-button.cdk-program-focused .mat-mdc-button-persistent-ripple::before, .theme-default-light .mat-mdc-button.cdk-keyboard-focused .mat-mdc-button-persistent-ripple::before, .theme-default-light .mat-mdc-outlined-button.cdk-program-focused .mat-mdc-button-persistent-ripple::before, .theme-default-light .mat-mdc-outlined-button.cdk-keyboard-focused .mat-mdc-button-persistent-ripple::before {
  opacity: 0.12;
}
.theme-default-light .mat-mdc-button:active .mat-mdc-button-persistent-ripple::before, .theme-default-light .mat-mdc-outlined-button:active .mat-mdc-button-persistent-ripple::before {
  opacity: 0.12;
}
.theme-default-light .mat-mdc-button.mat-primary, .theme-default-light .mat-mdc-outlined-button.mat-primary {
  --mat-mdc-button-persistent-ripple-color: #2b363b;
  --mat-mdc-button-ripple-color: rgba(43, 54, 59, 0.1);
}
.theme-default-light .mat-mdc-button.mat-accent, .theme-default-light .mat-mdc-outlined-button.mat-accent {
  --mat-mdc-button-persistent-ripple-color: #1e5bda;
  --mat-mdc-button-ripple-color: rgba(30, 91, 218, 0.1);
}
.theme-default-light .mat-mdc-button.mat-warn, .theme-default-light .mat-mdc-outlined-button.mat-warn {
  --mat-mdc-button-persistent-ripple-color: #d31818;
  --mat-mdc-button-ripple-color: rgba(211, 24, 24, 0.1);
}
.theme-default-light .mat-mdc-raised-button, .theme-default-light .mat-mdc-unelevated-button {
  --mat-mdc-button-persistent-ripple-color: #000;
  --mat-mdc-button-ripple-color: rgba(0, 0, 0, 0.1);
}
.theme-default-light .mat-mdc-raised-button:hover .mat-mdc-button-persistent-ripple::before, .theme-default-light .mat-mdc-unelevated-button:hover .mat-mdc-button-persistent-ripple::before {
  opacity: 0.04;
}
.theme-default-light .mat-mdc-raised-button.cdk-program-focused .mat-mdc-button-persistent-ripple::before, .theme-default-light .mat-mdc-raised-button.cdk-keyboard-focused .mat-mdc-button-persistent-ripple::before, .theme-default-light .mat-mdc-unelevated-button.cdk-program-focused .mat-mdc-button-persistent-ripple::before, .theme-default-light .mat-mdc-unelevated-button.cdk-keyboard-focused .mat-mdc-button-persistent-ripple::before {
  opacity: 0.12;
}
.theme-default-light .mat-mdc-raised-button:active .mat-mdc-button-persistent-ripple::before, .theme-default-light .mat-mdc-unelevated-button:active .mat-mdc-button-persistent-ripple::before {
  opacity: 0.12;
}
.theme-default-light .mat-mdc-raised-button.mat-primary, .theme-default-light .mat-mdc-unelevated-button.mat-primary {
  --mat-mdc-button-persistent-ripple-color: #fff;
  --mat-mdc-button-ripple-color: rgba(255, 255, 255, 0.1);
}
.theme-default-light .mat-mdc-raised-button.mat-accent, .theme-default-light .mat-mdc-unelevated-button.mat-accent {
  --mat-mdc-button-persistent-ripple-color: #fff;
  --mat-mdc-button-ripple-color: rgba(255, 255, 255, 0.1);
}
.theme-default-light .mat-mdc-raised-button.mat-warn, .theme-default-light .mat-mdc-unelevated-button.mat-warn {
  --mat-mdc-button-persistent-ripple-color: #fff;
  --mat-mdc-button-ripple-color: rgba(255, 255, 255, 0.1);
}
.theme-default-light .mat-mdc-button.mat-mdc-button-base,
.theme-default-light .mat-mdc-raised-button.mat-mdc-button-base,
.theme-default-light .mat-mdc-unelevated-button.mat-mdc-button-base,
.theme-default-light .mat-mdc-outlined-button.mat-mdc-button-base {
  height: 36px;
}
.theme-default-light .mdc-button {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: var(--mdc-typography-button-font-family, var(--mdc-typography-font-family, CircularStd, sans-serif, arial));
  font-size: var(--mdc-typography-button-font-size, 14px);
  line-height: var(--mdc-typography-button-line-height, 36px);
  font-weight: var(--mdc-typography-button-font-weight, 500);
  letter-spacing: var(--mdc-typography-button-letter-spacing, 0.0892857143em);
  -webkit-text-decoration: var(--mdc-typography-button-text-decoration, none);
          text-decoration: var(--mdc-typography-button-text-decoration, none);
  text-transform: var(--mdc-typography-button-text-transform, none);
}
.theme-default-light .mat-mdc-icon-button {
  --mat-mdc-button-persistent-ripple-color: #000;
  --mat-mdc-button-ripple-color: rgba(0, 0, 0, 0.1);
  --mdc-icon-button-icon-color: inherit;
  --mat-mdc-button-persistent-ripple-color: #000;
  --mat-mdc-button-ripple-color: rgba(0, 0, 0, 0.1);
}
.theme-default-light .mat-mdc-icon-button:hover .mat-mdc-button-persistent-ripple::before {
  opacity: 0.04;
}
.theme-default-light .mat-mdc-icon-button.cdk-program-focused .mat-mdc-button-persistent-ripple::before, .theme-default-light .mat-mdc-icon-button.cdk-keyboard-focused .mat-mdc-button-persistent-ripple::before {
  opacity: 0.12;
}
.theme-default-light .mat-mdc-icon-button:active .mat-mdc-button-persistent-ripple::before {
  opacity: 0.12;
}
.theme-default-light .mat-mdc-icon-button.mat-primary {
  --mat-mdc-button-persistent-ripple-color: #6200ee;
  --mat-mdc-button-ripple-color: rgba(98, 0, 238, 0.1);
}
.theme-default-light .mat-mdc-icon-button.mat-accent {
  --mat-mdc-button-persistent-ripple-color: #018786;
  --mat-mdc-button-ripple-color: rgba(1, 135, 134, 0.1);
}
.theme-default-light .mat-mdc-icon-button.mat-warn {
  --mat-mdc-button-persistent-ripple-color: #b00020;
  --mat-mdc-button-ripple-color: rgba(176, 0, 32, 0.1);
}
.theme-default-light .mat-mdc-icon-button.mat-primary {
  --mdc-icon-button-icon-color: #2b363b;
  --mat-mdc-button-persistent-ripple-color: #2b363b;
  --mat-mdc-button-ripple-color: rgba(43, 54, 59, 0.1);
}
.theme-default-light .mat-mdc-icon-button.mat-accent {
  --mdc-icon-button-icon-color: #1e5bda;
  --mat-mdc-button-persistent-ripple-color: #1e5bda;
  --mat-mdc-button-ripple-color: rgba(30, 91, 218, 0.1);
}
.theme-default-light .mat-mdc-icon-button.mat-warn {
  --mdc-icon-button-icon-color: #d31818;
  --mat-mdc-button-persistent-ripple-color: #d31818;
  --mat-mdc-button-ripple-color: rgba(211, 24, 24, 0.1);
}
.theme-default-light .mat-mdc-icon-button[disabled][disabled] {
  --mdc-icon-button-icon-color: rgba(0, 0, 0, 0.38);
  --mdc-icon-button-disabled-icon-color: rgba(0, 0, 0, 0.38);
}
.theme-default-light .mat-mdc-icon-button.mat-mdc-button-base {
  --mdc-icon-button-state-layer-size: 48px;
  width: var(--mdc-icon-button-state-layer-size);
  height: var(--mdc-icon-button-state-layer-size);
  padding: 12px;
}
.theme-default-light .mat-mdc-fab,
.theme-default-light .mat-mdc-mini-fab {
  --mat-mdc-button-persistent-ripple-color: #000;
  --mat-mdc-button-ripple-color: rgba(0, 0, 0, 0.1);
}
.theme-default-light .mat-mdc-fab:hover .mat-mdc-button-persistent-ripple::before,
.theme-default-light .mat-mdc-mini-fab:hover .mat-mdc-button-persistent-ripple::before {
  opacity: 0.04;
}
.theme-default-light .mat-mdc-fab.cdk-program-focused .mat-mdc-button-persistent-ripple::before, .theme-default-light .mat-mdc-fab.cdk-keyboard-focused .mat-mdc-button-persistent-ripple::before,
.theme-default-light .mat-mdc-mini-fab.cdk-program-focused .mat-mdc-button-persistent-ripple::before,
.theme-default-light .mat-mdc-mini-fab.cdk-keyboard-focused .mat-mdc-button-persistent-ripple::before {
  opacity: 0.12;
}
.theme-default-light .mat-mdc-fab:active .mat-mdc-button-persistent-ripple::before,
.theme-default-light .mat-mdc-mini-fab:active .mat-mdc-button-persistent-ripple::before {
  opacity: 0.12;
}
.theme-default-light .mat-mdc-fab.mat-primary,
.theme-default-light .mat-mdc-mini-fab.mat-primary {
  --mat-mdc-button-persistent-ripple-color: #fff;
  --mat-mdc-button-ripple-color: rgba(255, 255, 255, 0.1);
}
.theme-default-light .mat-mdc-fab.mat-accent,
.theme-default-light .mat-mdc-mini-fab.mat-accent {
  --mat-mdc-button-persistent-ripple-color: #fff;
  --mat-mdc-button-ripple-color: rgba(255, 255, 255, 0.1);
}
.theme-default-light .mat-mdc-fab.mat-warn,
.theme-default-light .mat-mdc-mini-fab.mat-warn {
  --mat-mdc-button-persistent-ripple-color: #fff;
  --mat-mdc-button-ripple-color: rgba(255, 255, 255, 0.1);
}
.theme-default-light .mat-mdc-fab[disabled][disabled],
.theme-default-light .mat-mdc-mini-fab[disabled][disabled] {
  --mdc-fab-container-color: rgba(0, 0, 0, 0.12);
  --mdc-fab-icon-color: rgba(0, 0, 0, 0.38);
  --mat-mdc-fab-color: rgba(0, 0, 0, 0.38);
}
.theme-default-light .mat-mdc-fab.mat-unthemed,
.theme-default-light .mat-mdc-mini-fab.mat-unthemed {
  --mdc-fab-container-color: white;
  --mdc-fab-icon-color: black;
  --mat-mdc-fab-color: #000;
}
.theme-default-light .mat-mdc-fab.mat-primary,
.theme-default-light .mat-mdc-mini-fab.mat-primary {
  --mdc-fab-container-color: #2b363b;
  --mdc-fab-icon-color: white;
  --mat-mdc-fab-color: #fff;
}
.theme-default-light .mat-mdc-fab.mat-accent,
.theme-default-light .mat-mdc-mini-fab.mat-accent {
  --mdc-fab-container-color: #1e5bda;
  --mdc-fab-icon-color: white;
  --mat-mdc-fab-color: #fff;
}
.theme-default-light .mat-mdc-fab.mat-warn,
.theme-default-light .mat-mdc-mini-fab.mat-warn {
  --mdc-fab-container-color: #d31818;
  --mdc-fab-icon-color: white;
  --mat-mdc-fab-color: #fff;
}
.theme-default-light .mdc-fab--extended {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: var(--mdc-typography-button-font-family, var(--mdc-typography-font-family, CircularStd, sans-serif, arial));
  font-size: var(--mdc-typography-button-font-size, 14px);
  line-height: var(--mdc-typography-button-line-height, 36px);
  font-weight: var(--mdc-typography-button-font-weight, 500);
  letter-spacing: var(--mdc-typography-button-letter-spacing, 0.0892857143em);
  -webkit-text-decoration: var(--mdc-typography-button-text-decoration, none);
          text-decoration: var(--mdc-typography-button-text-decoration, none);
  text-transform: var(--mdc-typography-button-text-transform, none);
}
.theme-default-light .mat-mdc-extended-fab {
  --mdc-extended-fab-label-text-font: CircularStd, sans-serif, arial;
  --mdc-extended-fab-label-text-size: 14px;
  --mdc-extended-fab-label-text-tracking: 0.0892857143em;
  --mdc-extended-fab-label-text-weight: 500;
}
.theme-default-light .mat-mdc-snack-bar-container {
  --mdc-snackbar-container-color: #333333;
  --mdc-snackbar-supporting-text-color: rgba(255, 255, 255, 0.87);
}
.theme-default-light .mat-mdc-snack-bar-container {
  --mdc-snackbar-supporting-text-font: CircularStd, sans-serif, arial;
  --mdc-snackbar-supporting-text-line-height: 20px;
  --mdc-snackbar-supporting-text-size: 14px;
  --mdc-snackbar-supporting-text-weight: 400;
}
.theme-default-light .mat-mdc-progress-spinner {
  --mdc-circular-progress-active-indicator-color: #2b363b;
}
.theme-default-light .mat-mdc-progress-spinner.mat-accent {
  --mdc-circular-progress-active-indicator-color: #1e5bda;
}
.theme-default-light .mat-mdc-progress-spinner.mat-warn {
  --mdc-circular-progress-active-indicator-color: #d31818;
}
.theme-default-light .mat-badge {
  position: relative;
}
.theme-default-light .mat-badge.mat-badge {
  overflow: visible;
}
.theme-default-light .mat-badge-content {
  position: absolute;
  text-align: center;
  display: inline-block;
  border-radius: 50%;
  transition: transform 200ms ease-in-out;
  transform: scale(0.6);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  pointer-events: none;
  background-color: var(--mat-badge-background-color);
  color: var(--mat-badge-text-color);
  font-family: Roboto, sans-serif;
  /* @alternate */
  font-family: var(--mat-badge-text-font, Roboto, sans-serif);
  font-size: 12px;
  /* @alternate */
  font-size: var(--mat-badge-text-size, 12px);
  font-weight: 600;
  /* @alternate */
  font-weight: var(--mat-badge-text-weight, 600);
}
.cdk-high-contrast-active .theme-default-light .mat-badge-content {
  outline: solid 1px;
  border-radius: 0;
}

.theme-default-light .mat-badge-disabled .mat-badge-content {
  background-color: var(--mat-badge-disabled-state-background-color);
  color: var(--mat-badge-disabled-state-text-color);
}
.theme-default-light .mat-badge-hidden .mat-badge-content {
  display: none;
}
.theme-default-light .ng-animate-disabled .mat-badge-content,
.theme-default-light .mat-badge-content._mat-animation-noopable {
  transition: none;
}
.theme-default-light .mat-badge-content.mat-badge-active {
  transform: none;
}
.theme-default-light .mat-badge-small .mat-badge-content {
  width: 16px;
  height: 16px;
  line-height: 16px;
  font-size: 9px;
  /* @alternate */
  font-size: var(--mat-badge-small-size-text-size, 9px);
}
.theme-default-light .mat-badge-small.mat-badge-above .mat-badge-content {
  top: -8px;
}
.theme-default-light .mat-badge-small.mat-badge-below .mat-badge-content {
  bottom: -8px;
}
.theme-default-light .mat-badge-small.mat-badge-before .mat-badge-content {
  left: -16px;
}
[dir=rtl] .theme-default-light .mat-badge-small.mat-badge-before .mat-badge-content {
  left: auto;
  right: -16px;
}
.theme-default-light .mat-badge-small.mat-badge-after .mat-badge-content {
  right: -16px;
}
[dir=rtl] .theme-default-light .mat-badge-small.mat-badge-after .mat-badge-content {
  right: auto;
  left: -16px;
}
.theme-default-light .mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content {
  left: -8px;
}
[dir=rtl] .theme-default-light .mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content {
  left: auto;
  right: -8px;
}
.theme-default-light .mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content {
  right: -8px;
}
[dir=rtl] .theme-default-light .mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content {
  right: auto;
  left: -8px;
}
.theme-default-light .mat-badge-medium .mat-badge-content {
  width: 22px;
  height: 22px;
  line-height: 22px;
}
.theme-default-light .mat-badge-medium.mat-badge-above .mat-badge-content {
  top: -11px;
}
.theme-default-light .mat-badge-medium.mat-badge-below .mat-badge-content {
  bottom: -11px;
}
.theme-default-light .mat-badge-medium.mat-badge-before .mat-badge-content {
  left: -22px;
}
[dir=rtl] .theme-default-light .mat-badge-medium.mat-badge-before .mat-badge-content {
  left: auto;
  right: -22px;
}
.theme-default-light .mat-badge-medium.mat-badge-after .mat-badge-content {
  right: -22px;
}
[dir=rtl] .theme-default-light .mat-badge-medium.mat-badge-after .mat-badge-content {
  right: auto;
  left: -22px;
}
.theme-default-light .mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content {
  left: -11px;
}
[dir=rtl] .theme-default-light .mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content {
  left: auto;
  right: -11px;
}
.theme-default-light .mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content {
  right: -11px;
}
[dir=rtl] .theme-default-light .mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content {
  right: auto;
  left: -11px;
}
.theme-default-light .mat-badge-large .mat-badge-content {
  width: 28px;
  height: 28px;
  line-height: 28px;
  font-size: 24px;
  /* @alternate */
  font-size: var(--mat-badge-large-size-text-size, 24px);
}
.theme-default-light .mat-badge-large.mat-badge-above .mat-badge-content {
  top: -14px;
}
.theme-default-light .mat-badge-large.mat-badge-below .mat-badge-content {
  bottom: -14px;
}
.theme-default-light .mat-badge-large.mat-badge-before .mat-badge-content {
  left: -28px;
}
[dir=rtl] .theme-default-light .mat-badge-large.mat-badge-before .mat-badge-content {
  left: auto;
  right: -28px;
}
.theme-default-light .mat-badge-large.mat-badge-after .mat-badge-content {
  right: -28px;
}
[dir=rtl] .theme-default-light .mat-badge-large.mat-badge-after .mat-badge-content {
  right: auto;
  left: -28px;
}
.theme-default-light .mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content {
  left: -14px;
}
[dir=rtl] .theme-default-light .mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content {
  left: auto;
  right: -14px;
}
.theme-default-light .mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content {
  right: -14px;
}
[dir=rtl] .theme-default-light .mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content {
  right: auto;
  left: -14px;
}
.theme-default-light {
  --mat-badge-background-color: #2b363b;
  --mat-badge-text-color: white;
  --mat-badge-disabled-state-background-color: #b9b9b9;
  --mat-badge-disabled-state-text-color: rgba(0, 0, 0, 0.38);
}

.theme-default-light .mat-badge-accent {
  --mat-badge-background-color: #1e5bda;
  --mat-badge-text-color: white;
}
.theme-default-light .mat-badge-warn {
  --mat-badge-background-color: #d31818;
  --mat-badge-text-color: white;
}
.theme-default-light {
  --mat-badge-text-font: CircularStd, sans-serif, arial;
  --mat-badge-text-size: 12px;
  --mat-badge-text-weight: 600;
  --mat-badge-small-size-text-size: 9px;
  --mat-badge-large-size-text-size: 24px;
}

.theme-default-light {
  --mat-bottom-sheet-container-text-color: rgba(0, 0, 0, 0.87);
  --mat-bottom-sheet-container-background-color: white;
}

.theme-default-light {
  --mat-bottom-sheet-container-text-font: CircularStd, sans-serif, arial;
  --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;
}

.theme-default-light {
  --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;
  --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: #e0e0e0;
}

.theme-default-light {
  --mat-standard-button-toggle-height: 48px;
}

.theme-default-light {
  --mat-legacy-button-toggle-text-font: CircularStd, sans-serif, arial;
  --mat-standard-button-toggle-text-font: CircularStd, sans-serif, arial;
}

.theme-default-light {
  --mat-datepicker-calendar-date-selected-state-text-color: white;
  --mat-datepicker-calendar-date-selected-state-background-color: #2b363b;
  --mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(43, 54, 59, 0.4);
  --mat-datepicker-calendar-date-today-selected-state-outline-color: white;
  --mat-datepicker-calendar-date-focus-state-background-color: rgba(43, 54, 59, 0.3);
  --mat-datepicker-calendar-date-hover-state-background-color: rgba(43, 54, 59, 0.3);
  --mat-datepicker-calendar-date-in-range-state-background-color: rgba(43, 54, 59, 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: #46a35e;
  --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-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);
}

.theme-default-light .mat-datepicker-content.mat-accent {
  --mat-datepicker-calendar-date-selected-state-text-color: white;
  --mat-datepicker-calendar-date-selected-state-background-color: #1e5bda;
  --mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(30, 91, 218, 0.4);
  --mat-datepicker-calendar-date-today-selected-state-outline-color: white;
  --mat-datepicker-calendar-date-focus-state-background-color: rgba(30, 91, 218, 0.3);
  --mat-datepicker-calendar-date-hover-state-background-color: rgba(30, 91, 218, 0.3);
  --mat-datepicker-calendar-date-in-range-state-background-color: rgba(30, 91, 218, 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: #46a35e;
}
.theme-default-light .mat-datepicker-content.mat-warn {
  --mat-datepicker-calendar-date-selected-state-text-color: white;
  --mat-datepicker-calendar-date-selected-state-background-color: #d31818;
  --mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(211, 24, 24, 0.4);
  --mat-datepicker-calendar-date-today-selected-state-outline-color: white;
  --mat-datepicker-calendar-date-focus-state-background-color: rgba(211, 24, 24, 0.3);
  --mat-datepicker-calendar-date-hover-state-background-color: rgba(211, 24, 24, 0.3);
  --mat-datepicker-calendar-date-in-range-state-background-color: rgba(211, 24, 24, 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: #46a35e;
}
.theme-default-light .mat-calendar-controls .mat-mdc-icon-button.mat-mdc-button-base {
  --mdc-icon-button-state-layer-size: 40px;
  width: var(--mdc-icon-button-state-layer-size);
  height: var(--mdc-icon-button-state-layer-size);
  padding: 8px;
}
.theme-default-light .mat-calendar-controls .mat-mdc-icon-button.mat-mdc-button-base .mat-mdc-button-touch-target {
  display: none;
}
.theme-default-light {
  --mat-datepicker-calendar-text-font: CircularStd, sans-serif, arial;
  --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;
}

.theme-default-light {
  --mat-divider-color: rgba(0, 0, 0, 0.12);
}

.theme-default-light {
  --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);
}

.theme-default-light {
  --mat-expansion-header-collapsed-state-height: 48px;
  --mat-expansion-header-expanded-state-height: 64px;
}

.theme-default-light {
  --mat-expansion-header-text-font: CircularStd, sans-serif, arial;
  --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: CircularStd, sans-serif, arial;
  --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;
}

.theme-default-light {
  --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;
}

.theme-default-light {
  --mat-icon-color: inherit;
}

.theme-default-light {
  --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);
}

.theme-default-light {
  --mat-stepper-header-icon-foreground-color: white;
  --mat-stepper-header-selected-state-icon-background-color: #2b363b;
  --mat-stepper-header-selected-state-icon-foreground-color: white;
  --mat-stepper-header-done-state-icon-background-color: #2b363b;
  --mat-stepper-header-done-state-icon-foreground-color: white;
  --mat-stepper-header-edit-state-icon-background-color: #2b363b;
  --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-icon-background-color: rgba(0, 0, 0, 0.54);
  --mat-stepper-header-error-state-icon-background-color: transparent;
}
.theme-default-light .mat-step-header.mat-accent {
  --mat-stepper-header-icon-foreground-color: white;
  --mat-stepper-header-selected-state-icon-background-color: #1e5bda;
  --mat-stepper-header-selected-state-icon-foreground-color: white;
  --mat-stepper-header-done-state-icon-background-color: #1e5bda;
  --mat-stepper-header-done-state-icon-foreground-color: white;
  --mat-stepper-header-edit-state-icon-background-color: #1e5bda;
  --mat-stepper-header-edit-state-icon-foreground-color: white;
}
.theme-default-light .mat-step-header.mat-warn {
  --mat-stepper-header-icon-foreground-color: white;
  --mat-stepper-header-selected-state-icon-background-color: #d31818;
  --mat-stepper-header-selected-state-icon-foreground-color: white;
  --mat-stepper-header-done-state-icon-background-color: #d31818;
  --mat-stepper-header-done-state-icon-foreground-color: white;
  --mat-stepper-header-edit-state-icon-background-color: #d31818;
  --mat-stepper-header-edit-state-icon-foreground-color: white;
}

.theme-default-light {
  --mat-stepper-header-height: 72px;
}

.theme-default-light {
  --mat-stepper-container-text-font: CircularStd, sans-serif, arial;
  --mat-stepper-header-label-text-font: CircularStd, sans-serif, arial;
  --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;
}

.theme-default-light .mat-sort-header-arrow {
  color: #757575;
}
.theme-default-light {
  --mat-toolbar-container-background-color: whitesmoke;
  --mat-toolbar-container-text-color: rgba(0, 0, 0, 0.87);
}

.theme-default-light .mat-toolbar.mat-primary {
  --mat-toolbar-container-background-color: #2b363b;
  --mat-toolbar-container-text-color: white;
}
.theme-default-light .mat-toolbar.mat-accent {
  --mat-toolbar-container-background-color: #1e5bda;
  --mat-toolbar-container-text-color: white;
}
.theme-default-light .mat-toolbar.mat-warn {
  --mat-toolbar-container-background-color: #d31818;
  --mat-toolbar-container-text-color: white;
}
.theme-default-light {
  --mat-toolbar-standard-height: 64px;
  --mat-toolbar-mobile-height: 56px;
}

.theme-default-light {
  --mat-toolbar-title-text-font: CircularStd, sans-serif, arial;
  --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;
}

.theme-default-light .mat-tree {
  background: white;
}
.theme-default-light .mat-tree-node,
.theme-default-light .mat-nested-tree-node {
  color: rgba(0, 0, 0, 0.87);
}
.theme-default-light .mat-tree-node {
  min-height: 48px;
}
.theme-default-light .mat-tree {
  font-family: CircularStd, sans-serif, arial;
}
.theme-default-light .mat-tree-node,
.theme-default-light .mat-nested-tree-node {
  font-weight: 400;
  font-size: 14px;
}
.theme-default-light .red-50 {
  background-color: #fce7e7 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .red-50[disabled] {
  background-color: rgba(252, 231, 231, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .red-50-bg {
  background-color: #fce7e7 !important;
}
.theme-default-light .red-50-fg {
  color: #fce7e7 !important;
}
.theme-default-light .red-100 {
  background-color: #f7c4c4 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .red-100[disabled] {
  background-color: rgba(247, 196, 196, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .red-100-bg {
  background-color: #f7c4c4 !important;
}
.theme-default-light .red-100-fg {
  color: #f7c4c4 !important;
}
.theme-default-light .red-200 {
  background-color: #f29d9d !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .red-200[disabled] {
  background-color: rgba(242, 157, 157, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .red-200-bg {
  background-color: #f29d9d !important;
}
.theme-default-light .red-200-fg {
  color: #f29d9d !important;
}
.theme-default-light .red-300 {
  background-color: #ed7575 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .red-300[disabled] {
  background-color: rgba(237, 117, 117, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .red-300-bg {
  background-color: #ed7575 !important;
}
.theme-default-light .red-300-fg {
  color: #ed7575 !important;
}
.theme-default-light .red-400 {
  background-color: #e95858 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .red-400[disabled] {
  background-color: rgba(233, 88, 88, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .red-400-bg {
  background-color: #e95858 !important;
}
.theme-default-light .red-400-fg {
  color: #e95858 !important;
}
.theme-default-light .red-500 {
  background-color: #e53a3a !important;
  color: white !important;
}
.theme-default-light .red-500[disabled] {
  background-color: rgba(229, 58, 58, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .red-500-bg {
  background-color: #e53a3a !important;
}
.theme-default-light .red-500-fg {
  color: #e53a3a !important;
}
.theme-default-light .red-bg {
  background-color: #e53a3a !important;
}
.theme-default-light .red-fg {
  color: #e53a3a !important;
}
.theme-default-light .red-600 {
  background-color: #e23434 !important;
  color: white !important;
}
.theme-default-light .red-600[disabled] {
  background-color: rgba(226, 52, 52, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .red-600-bg {
  background-color: #e23434 !important;
}
.theme-default-light .red-600-fg {
  color: #e23434 !important;
}
.theme-default-light .red-700 {
  background-color: #de2c2c !important;
  color: white !important;
}
.theme-default-light .red-700[disabled] {
  background-color: rgba(222, 44, 44, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .red-700-bg {
  background-color: #de2c2c !important;
}
.theme-default-light .red-700-fg {
  color: #de2c2c !important;
}
.theme-default-light .red-800 {
  background-color: #da2525 !important;
  color: white !important;
}
.theme-default-light .red-800[disabled] {
  background-color: rgba(218, 37, 37, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .red-800-bg {
  background-color: #da2525 !important;
}
.theme-default-light .red-800-fg {
  color: #da2525 !important;
}
.theme-default-light .red-900 {
  background-color: #d31818 !important;
  color: white !important;
}
.theme-default-light .red-900[disabled] {
  background-color: rgba(211, 24, 24, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .red-900-bg {
  background-color: #d31818 !important;
}
.theme-default-light .red-900-fg {
  color: #d31818 !important;
}
.theme-default-light .red-A100 {
  background-color: #ff8a80 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .red-A100[disabled] {
  background-color: rgba(255, 138, 128, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .red-A100-bg {
  background-color: #ff8a80 !important;
}
.theme-default-light .red-A100-fg {
  color: #ff8a80 !important;
}
.theme-default-light .red-A200 {
  background-color: #ff5252 !important;
  color: white !important;
}
.theme-default-light .red-A200[disabled] {
  background-color: rgba(255, 82, 82, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .red-A200-bg {
  background-color: #ff5252 !important;
}
.theme-default-light .red-A200-fg {
  color: #ff5252 !important;
}
.theme-default-light .red-A400 {
  background-color: #ff1744 !important;
  color: white !important;
}
.theme-default-light .red-A400[disabled] {
  background-color: rgba(255, 23, 68, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .red-A400-bg {
  background-color: #ff1744 !important;
}
.theme-default-light .red-A400-fg {
  color: #ff1744 !important;
}
.theme-default-light .red-A700 {
  background-color: #d50000 !important;
  color: white !important;
}
.theme-default-light .red-A700[disabled] {
  background-color: rgba(213, 0, 0, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .red-A700-bg {
  background-color: #d50000 !important;
}
.theme-default-light .red-A700-fg {
  color: #d50000 !important;
}
.theme-default-light .pink-50 {
  background-color: #fce4ec !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .pink-50[disabled] {
  background-color: rgba(252, 228, 236, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .pink-50-bg {
  background-color: #fce4ec !important;
}
.theme-default-light .pink-50-fg {
  color: #fce4ec !important;
}
.theme-default-light .pink-100 {
  background-color: #f8bbd0 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .pink-100[disabled] {
  background-color: rgba(248, 187, 208, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .pink-100-bg {
  background-color: #f8bbd0 !important;
}
.theme-default-light .pink-100-fg {
  color: #f8bbd0 !important;
}
.theme-default-light .pink-200 {
  background-color: #f48fb1 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .pink-200[disabled] {
  background-color: rgba(244, 143, 177, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .pink-200-bg {
  background-color: #f48fb1 !important;
}
.theme-default-light .pink-200-fg {
  color: #f48fb1 !important;
}
.theme-default-light .pink-300 {
  background-color: #f06e9a !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .pink-300[disabled] {
  background-color: rgba(240, 110, 154, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .pink-300-bg {
  background-color: #f06e9a !important;
}
.theme-default-light .pink-300-fg {
  color: #f06e9a !important;
}
.theme-default-light .pink-400 {
  background-color: #ec407a !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .pink-400[disabled] {
  background-color: rgba(236, 64, 122, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .pink-400-bg {
  background-color: #ec407a !important;
}
.theme-default-light .pink-400-fg {
  color: #ec407a !important;
}
.theme-default-light .pink-500 {
  background-color: #e91e63 !important;
  color: white !important;
}
.theme-default-light .pink-500[disabled] {
  background-color: rgba(233, 30, 99, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .pink-500-bg {
  background-color: #e91e63 !important;
}
.theme-default-light .pink-500-fg {
  color: #e91e63 !important;
}
.theme-default-light .pink-bg {
  background-color: #e91e63 !important;
}
.theme-default-light .pink-fg {
  color: #e91e63 !important;
}
.theme-default-light .pink-600 {
  background-color: #d81b60 !important;
  color: white !important;
}
.theme-default-light .pink-600[disabled] {
  background-color: rgba(216, 27, 96, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .pink-600-bg {
  background-color: #d81b60 !important;
}
.theme-default-light .pink-600-fg {
  color: #d81b60 !important;
}
.theme-default-light .pink-700 {
  background-color: #c2185b !important;
  color: white !important;
}
.theme-default-light .pink-700[disabled] {
  background-color: rgba(194, 24, 91, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .pink-700-bg {
  background-color: #c2185b !important;
}
.theme-default-light .pink-700-fg {
  color: #c2185b !important;
}
.theme-default-light .pink-800 {
  background-color: #ad1457 !important;
  color: white !important;
}
.theme-default-light .pink-800[disabled] {
  background-color: rgba(173, 20, 87, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .pink-800-bg {
  background-color: #ad1457 !important;
}
.theme-default-light .pink-800-fg {
  color: #ad1457 !important;
}
.theme-default-light .pink-900 {
  background-color: #880e4f !important;
  color: white !important;
}
.theme-default-light .pink-900[disabled] {
  background-color: rgba(136, 14, 79, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .pink-900-bg {
  background-color: #880e4f !important;
}
.theme-default-light .pink-900-fg {
  color: #880e4f !important;
}
.theme-default-light .pink-A100 {
  background-color: #ff80ab !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .pink-A100[disabled] {
  background-color: rgba(255, 128, 171, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .pink-A100-bg {
  background-color: #ff80ab !important;
}
.theme-default-light .pink-A100-fg {
  color: #ff80ab !important;
}
.theme-default-light .pink-A200 {
  background-color: #ff4081 !important;
  color: white !important;
}
.theme-default-light .pink-A200[disabled] {
  background-color: rgba(255, 64, 129, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .pink-A200-bg {
  background-color: #ff4081 !important;
}
.theme-default-light .pink-A200-fg {
  color: #ff4081 !important;
}
.theme-default-light .pink-A400 {
  background-color: #f50057 !important;
  color: white !important;
}
.theme-default-light .pink-A400[disabled] {
  background-color: rgba(245, 0, 87, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .pink-A400-bg {
  background-color: #f50057 !important;
}
.theme-default-light .pink-A400-fg {
  color: #f50057 !important;
}
.theme-default-light .pink-A700 {
  background-color: #c51162 !important;
  color: white !important;
}
.theme-default-light .pink-A700[disabled] {
  background-color: rgba(197, 17, 98, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .pink-A700-bg {
  background-color: #c51162 !important;
}
.theme-default-light .pink-A700-fg {
  color: #c51162 !important;
}
.theme-default-light .purple-50 {
  background-color: #f3e6ff !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .purple-50[disabled] {
  background-color: rgba(243, 230, 255, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .purple-50-bg {
  background-color: #f3e6ff !important;
}
.theme-default-light .purple-50-fg {
  color: #f3e6ff !important;
}
.theme-default-light .purple-100 {
  background-color: #e1bee7 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .purple-100[disabled] {
  background-color: rgba(225, 190, 231, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .purple-100-bg {
  background-color: #e1bee7 !important;
}
.theme-default-light .purple-100-fg {
  color: #e1bee7 !important;
}
.theme-default-light .purple-200 {
  background-color: #ce93d8 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .purple-200[disabled] {
  background-color: rgba(206, 147, 216, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .purple-200-bg {
  background-color: #ce93d8 !important;
}
.theme-default-light .purple-200-fg {
  color: #ce93d8 !important;
}
.theme-default-light .purple-300 {
  background-color: #ba68c8 !important;
  color: white !important;
}
.theme-default-light .purple-300[disabled] {
  background-color: rgba(186, 104, 200, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .purple-300-bg {
  background-color: #ba68c8 !important;
}
.theme-default-light .purple-300-fg {
  color: #ba68c8 !important;
}
.theme-default-light .purple-400 {
  background-color: #ab47bc !important;
  color: white !important;
}
.theme-default-light .purple-400[disabled] {
  background-color: rgba(171, 71, 188, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .purple-400-bg {
  background-color: #ab47bc !important;
}
.theme-default-light .purple-400-fg {
  color: #ab47bc !important;
}
.theme-default-light .purple-500 {
  background-color: #9c27b0 !important;
  color: white !important;
}
.theme-default-light .purple-500[disabled] {
  background-color: rgba(156, 39, 176, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .purple-500-bg {
  background-color: #9c27b0 !important;
}
.theme-default-light .purple-500-fg {
  color: #9c27b0 !important;
}
.theme-default-light .purple-bg {
  background-color: #9c27b0 !important;
}
.theme-default-light .purple-fg {
  color: #9c27b0 !important;
}
.theme-default-light .purple-600 {
  background-color: #8e24aa !important;
  color: white !important;
}
.theme-default-light .purple-600[disabled] {
  background-color: rgba(142, 36, 170, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .purple-600-bg {
  background-color: #8e24aa !important;
}
.theme-default-light .purple-600-fg {
  color: #8e24aa !important;
}
.theme-default-light .purple-700 {
  background-color: #7b1fa2 !important;
  color: white !important;
}
.theme-default-light .purple-700[disabled] {
  background-color: rgba(123, 31, 162, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .purple-700-bg {
  background-color: #7b1fa2 !important;
}
.theme-default-light .purple-700-fg {
  color: #7b1fa2 !important;
}
.theme-default-light .purple-800 {
  background-color: #6a1b9a !important;
  color: white !important;
}
.theme-default-light .purple-800[disabled] {
  background-color: rgba(106, 27, 154, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .purple-800-bg {
  background-color: #6a1b9a !important;
}
.theme-default-light .purple-800-fg {
  color: #6a1b9a !important;
}
.theme-default-light .purple-900 {
  background-color: #4a148c !important;
  color: white !important;
}
.theme-default-light .purple-900[disabled] {
  background-color: rgba(74, 20, 140, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .purple-900-bg {
  background-color: #4a148c !important;
}
.theme-default-light .purple-900-fg {
  color: #4a148c !important;
}
.theme-default-light .purple-A100 {
  background-color: #ea80fc !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .purple-A100[disabled] {
  background-color: rgba(234, 128, 252, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .purple-A100-bg {
  background-color: #ea80fc !important;
}
.theme-default-light .purple-A100-fg {
  color: #ea80fc !important;
}
.theme-default-light .purple-A200 {
  background-color: #e040fb !important;
  color: white !important;
}
.theme-default-light .purple-A200[disabled] {
  background-color: rgba(224, 64, 251, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .purple-A200-bg {
  background-color: #e040fb !important;
}
.theme-default-light .purple-A200-fg {
  color: #e040fb !important;
}
.theme-default-light .purple-A400 {
  background-color: #d500f9 !important;
  color: white !important;
}
.theme-default-light .purple-A400[disabled] {
  background-color: rgba(213, 0, 249, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .purple-A400-bg {
  background-color: #d500f9 !important;
}
.theme-default-light .purple-A400-fg {
  color: #d500f9 !important;
}
.theme-default-light .purple-A700 {
  background-color: #aa00ff !important;
  color: white !important;
}
.theme-default-light .purple-A700[disabled] {
  background-color: rgba(170, 0, 255, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .purple-A700-bg {
  background-color: #aa00ff !important;
}
.theme-default-light .purple-A700-fg {
  color: #aa00ff !important;
}
.theme-default-light .deep-purple-50 {
  background-color: #ede7f6 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .deep-purple-50[disabled] {
  background-color: rgba(237, 231, 246, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .deep-purple-50-bg {
  background-color: #ede7f6 !important;
}
.theme-default-light .deep-purple-50-fg {
  color: #ede7f6 !important;
}
.theme-default-light .deep-purple-100 {
  background-color: #d1c4e9 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .deep-purple-100[disabled] {
  background-color: rgba(209, 196, 233, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .deep-purple-100-bg {
  background-color: #d1c4e9 !important;
}
.theme-default-light .deep-purple-100-fg {
  color: #d1c4e9 !important;
}
.theme-default-light .deep-purple-200 {
  background-color: #b39ddb !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .deep-purple-200[disabled] {
  background-color: rgba(179, 157, 219, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .deep-purple-200-bg {
  background-color: #b39ddb !important;
}
.theme-default-light .deep-purple-200-fg {
  color: #b39ddb !important;
}
.theme-default-light .deep-purple-300 {
  background-color: #9575cd !important;
  color: white !important;
}
.theme-default-light .deep-purple-300[disabled] {
  background-color: rgba(149, 117, 205, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .deep-purple-300-bg {
  background-color: #9575cd !important;
}
.theme-default-light .deep-purple-300-fg {
  color: #9575cd !important;
}
.theme-default-light .deep-purple-400 {
  background-color: #7e57c2 !important;
  color: white !important;
}
.theme-default-light .deep-purple-400[disabled] {
  background-color: rgba(126, 87, 194, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .deep-purple-400-bg {
  background-color: #7e57c2 !important;
}
.theme-default-light .deep-purple-400-fg {
  color: #7e57c2 !important;
}
.theme-default-light .deep-purple-500 {
  background-color: #673ab7 !important;
  color: white !important;
}
.theme-default-light .deep-purple-500[disabled] {
  background-color: rgba(103, 58, 183, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .deep-purple-500-bg {
  background-color: #673ab7 !important;
}
.theme-default-light .deep-purple-500-fg {
  color: #673ab7 !important;
}
.theme-default-light .deep-purple-bg {
  background-color: #673ab7 !important;
}
.theme-default-light .deep-purple-fg {
  color: #673ab7 !important;
}
.theme-default-light .deep-purple-600 {
  background-color: #5e35b1 !important;
  color: white !important;
}
.theme-default-light .deep-purple-600[disabled] {
  background-color: rgba(94, 53, 177, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .deep-purple-600-bg {
  background-color: #5e35b1 !important;
}
.theme-default-light .deep-purple-600-fg {
  color: #5e35b1 !important;
}
.theme-default-light .deep-purple-700 {
  background-color: #512da8 !important;
  color: white !important;
}
.theme-default-light .deep-purple-700[disabled] {
  background-color: rgba(81, 45, 168, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .deep-purple-700-bg {
  background-color: #512da8 !important;
}
.theme-default-light .deep-purple-700-fg {
  color: #512da8 !important;
}
.theme-default-light .deep-purple-800 {
  background-color: #4527a0 !important;
  color: white !important;
}
.theme-default-light .deep-purple-800[disabled] {
  background-color: rgba(69, 39, 160, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .deep-purple-800-bg {
  background-color: #4527a0 !important;
}
.theme-default-light .deep-purple-800-fg {
  color: #4527a0 !important;
}
.theme-default-light .deep-purple-900 {
  background-color: #311b92 !important;
  color: white !important;
}
.theme-default-light .deep-purple-900[disabled] {
  background-color: rgba(49, 27, 146, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .deep-purple-900-bg {
  background-color: #311b92 !important;
}
.theme-default-light .deep-purple-900-fg {
  color: #311b92 !important;
}
.theme-default-light .deep-purple-A100 {
  background-color: #cf97ff !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .deep-purple-A100[disabled] {
  background-color: rgba(207, 151, 255, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .deep-purple-A100-bg {
  background-color: #cf97ff !important;
}
.theme-default-light .deep-purple-A100-fg {
  color: #cf97ff !important;
}
.theme-default-light .deep-purple-A200 {
  background-color: #be73ff !important;
  color: white !important;
}
.theme-default-light .deep-purple-A200[disabled] {
  background-color: rgba(190, 115, 255, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .deep-purple-A200-bg {
  background-color: #be73ff !important;
}
.theme-default-light .deep-purple-A200-fg {
  color: #be73ff !important;
}
.theme-default-light .deep-purple-A400 {
  background-color: #9f2eff !important;
  color: white !important;
}
.theme-default-light .deep-purple-A400[disabled] {
  background-color: rgba(159, 46, 255, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .deep-purple-A400-bg {
  background-color: #9f2eff !important;
}
.theme-default-light .deep-purple-A400-fg {
  color: #9f2eff !important;
}
.theme-default-light .deep-purple-A700 {
  background-color: #7212ff !important;
  color: white !important;
}
.theme-default-light .deep-purple-A700[disabled] {
  background-color: rgba(114, 18, 255, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .deep-purple-A700-bg {
  background-color: #7212ff !important;
}
.theme-default-light .deep-purple-A700-fg {
  color: #7212ff !important;
}
.theme-default-light .indigo-50 {
  background-color: #e8eaf6 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .indigo-50[disabled] {
  background-color: rgba(232, 234, 246, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .indigo-50-bg {
  background-color: #e8eaf6 !important;
}
.theme-default-light .indigo-50-fg {
  color: #e8eaf6 !important;
}
.theme-default-light .indigo-100 {
  background-color: #c5cae9 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .indigo-100[disabled] {
  background-color: rgba(197, 202, 233, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .indigo-100-bg {
  background-color: #c5cae9 !important;
}
.theme-default-light .indigo-100-fg {
  color: #c5cae9 !important;
}
.theme-default-light .indigo-200 {
  background-color: #9fa8da !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .indigo-200[disabled] {
  background-color: rgba(159, 168, 218, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .indigo-200-bg {
  background-color: #9fa8da !important;
}
.theme-default-light .indigo-200-fg {
  color: #9fa8da !important;
}
.theme-default-light .indigo-300 {
  background-color: #7986cb !important;
  color: white !important;
}
.theme-default-light .indigo-300[disabled] {
  background-color: rgba(121, 134, 203, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .indigo-300-bg {
  background-color: #7986cb !important;
}
.theme-default-light .indigo-300-fg {
  color: #7986cb !important;
}
.theme-default-light .indigo-400 {
  background-color: #5c6bc0 !important;
  color: white !important;
}
.theme-default-light .indigo-400[disabled] {
  background-color: rgba(92, 107, 192, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .indigo-400-bg {
  background-color: #5c6bc0 !important;
}
.theme-default-light .indigo-400-fg {
  color: #5c6bc0 !important;
}
.theme-default-light .indigo-500 {
  background-color: #3f51b5 !important;
  color: white !important;
}
.theme-default-light .indigo-500[disabled] {
  background-color: rgba(63, 81, 181, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .indigo-500-bg {
  background-color: #3f51b5 !important;
}
.theme-default-light .indigo-500-fg {
  color: #3f51b5 !important;
}
.theme-default-light .indigo-bg {
  background-color: #3f51b5 !important;
}
.theme-default-light .indigo-fg {
  color: #3f51b5 !important;
}
.theme-default-light .indigo-600 {
  background-color: #3949ab !important;
  color: white !important;
}
.theme-default-light .indigo-600[disabled] {
  background-color: rgba(57, 73, 171, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .indigo-600-bg {
  background-color: #3949ab !important;
}
.theme-default-light .indigo-600-fg {
  color: #3949ab !important;
}
.theme-default-light .indigo-700 {
  background-color: #303f9f !important;
  color: white !important;
}
.theme-default-light .indigo-700[disabled] {
  background-color: rgba(48, 63, 159, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .indigo-700-bg {
  background-color: #303f9f !important;
}
.theme-default-light .indigo-700-fg {
  color: #303f9f !important;
}
.theme-default-light .indigo-800 {
  background-color: #283593 !important;
  color: white !important;
}
.theme-default-light .indigo-800[disabled] {
  background-color: rgba(40, 53, 147, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .indigo-800-bg {
  background-color: #283593 !important;
}
.theme-default-light .indigo-800-fg {
  color: #283593 !important;
}
.theme-default-light .indigo-900 {
  background-color: #1a237e !important;
  color: white !important;
}
.theme-default-light .indigo-900[disabled] {
  background-color: rgba(26, 35, 126, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .indigo-900-bg {
  background-color: #1a237e !important;
}
.theme-default-light .indigo-900-fg {
  color: #1a237e !important;
}
.theme-default-light .indigo-A100 {
  background-color: #8c9eff !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .indigo-A100[disabled] {
  background-color: rgba(140, 158, 255, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .indigo-A100-bg {
  background-color: #8c9eff !important;
}
.theme-default-light .indigo-A100-fg {
  color: #8c9eff !important;
}
.theme-default-light .indigo-A200 {
  background-color: #536dfe !important;
  color: white !important;
}
.theme-default-light .indigo-A200[disabled] {
  background-color: rgba(83, 109, 254, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .indigo-A200-bg {
  background-color: #536dfe !important;
}
.theme-default-light .indigo-A200-fg {
  color: #536dfe !important;
}
.theme-default-light .indigo-A400 {
  background-color: #3d5afe !important;
  color: white !important;
}
.theme-default-light .indigo-A400[disabled] {
  background-color: rgba(61, 90, 254, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .indigo-A400-bg {
  background-color: #3d5afe !important;
}
.theme-default-light .indigo-A400-fg {
  color: #3d5afe !important;
}
.theme-default-light .indigo-A700 {
  background-color: #304ffe !important;
  color: white !important;
}
.theme-default-light .indigo-A700[disabled] {
  background-color: rgba(48, 79, 254, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .indigo-A700-bg {
  background-color: #304ffe !important;
}
.theme-default-light .indigo-A700-fg {
  color: #304ffe !important;
}
.theme-default-light .blue-50 {
  background-color: #e4ebfb !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .blue-50[disabled] {
  background-color: rgba(228, 235, 251, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .blue-50-bg {
  background-color: #e4ebfb !important;
}
.theme-default-light .blue-50-fg {
  color: #e4ebfb !important;
}
.theme-default-light .blue-100 {
  background-color: #bccef4 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .blue-100[disabled] {
  background-color: rgba(188, 206, 244, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .blue-100-bg {
  background-color: #bccef4 !important;
}
.theme-default-light .blue-100-fg {
  color: #bccef4 !important;
}
.theme-default-light .blue-200 {
  background-color: #8faded !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .blue-200[disabled] {
  background-color: rgba(143, 173, 237, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .blue-200-bg {
  background-color: #8faded !important;
}
.theme-default-light .blue-200-fg {
  color: #8faded !important;
}
.theme-default-light .blue-300 {
  background-color: #628ce5 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .blue-300[disabled] {
  background-color: rgba(98, 140, 229, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .blue-300-bg {
  background-color: #628ce5 !important;
}
.theme-default-light .blue-300-fg {
  color: #628ce5 !important;
}
.theme-default-light .blue-400 {
  background-color: #4074e0 !important;
  color: white !important;
}
.theme-default-light .blue-400[disabled] {
  background-color: rgba(64, 116, 224, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .blue-400-bg {
  background-color: #4074e0 !important;
}
.theme-default-light .blue-400-fg {
  color: #4074e0 !important;
}
.theme-default-light .blue-500 {
  background-color: #1e5bda !important;
  color: white !important;
}
.theme-default-light .blue-500[disabled] {
  background-color: rgba(30, 91, 218, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .blue-500-bg {
  background-color: #1e5bda !important;
}
.theme-default-light .blue-500-fg {
  color: #1e5bda !important;
}
.theme-default-light .blue-bg {
  background-color: #1e5bda !important;
}
.theme-default-light .blue-fg {
  color: #1e5bda !important;
}
.theme-default-light .blue-600 {
  background-color: #1a53d6 !important;
  color: white !important;
}
.theme-default-light .blue-600[disabled] {
  background-color: rgba(26, 83, 214, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .blue-600-bg {
  background-color: #1a53d6 !important;
}
.theme-default-light .blue-600-fg {
  color: #1a53d6 !important;
}
.theme-default-light .blue-700 {
  background-color: #1649d0 !important;
  color: white !important;
}
.theme-default-light .blue-700[disabled] {
  background-color: rgba(22, 73, 208, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .blue-700-bg {
  background-color: #1649d0 !important;
}
.theme-default-light .blue-700-fg {
  color: #1649d0 !important;
}
.theme-default-light .blue-800 {
  background-color: #1240cb !important;
  color: white !important;
}
.theme-default-light .blue-800[disabled] {
  background-color: rgba(18, 64, 203, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .blue-800-bg {
  background-color: #1240cb !important;
}
.theme-default-light .blue-800-fg {
  color: #1240cb !important;
}
.theme-default-light .blue-900 {
  background-color: #0a2fc2 !important;
  color: white !important;
}
.theme-default-light .blue-900[disabled] {
  background-color: rgba(10, 47, 194, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .blue-900-bg {
  background-color: #0a2fc2 !important;
}
.theme-default-light .blue-900-fg {
  color: #0a2fc2 !important;
}
.theme-default-light .blue-A100 {
  background-color: #82b1ff !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .blue-A100[disabled] {
  background-color: rgba(130, 177, 255, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .blue-A100-bg {
  background-color: #82b1ff !important;
}
.theme-default-light .blue-A100-fg {
  color: #82b1ff !important;
}
.theme-default-light .blue-A200 {
  background-color: #448aff !important;
  color: white !important;
}
.theme-default-light .blue-A200[disabled] {
  background-color: rgba(68, 138, 255, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .blue-A200-bg {
  background-color: #448aff !important;
}
.theme-default-light .blue-A200-fg {
  color: #448aff !important;
}
.theme-default-light .blue-A400 {
  background-color: #2979ff !important;
  color: white !important;
}
.theme-default-light .blue-A400[disabled] {
  background-color: rgba(41, 121, 255, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .blue-A400-bg {
  background-color: #2979ff !important;
}
.theme-default-light .blue-A400-fg {
  color: #2979ff !important;
}
.theme-default-light .blue-A700 {
  background-color: #2962ff !important;
  color: white !important;
}
.theme-default-light .blue-A700[disabled] {
  background-color: rgba(41, 98, 255, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .blue-A700-bg {
  background-color: #2962ff !important;
}
.theme-default-light .blue-A700-fg {
  color: #2962ff !important;
}
.theme-default-light .light-blue-50 {
  background-color: #e1f5fe !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .light-blue-50[disabled] {
  background-color: rgba(225, 245, 254, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .light-blue-50-bg {
  background-color: #e1f5fe !important;
}
.theme-default-light .light-blue-50-fg {
  color: #e1f5fe !important;
}
.theme-default-light .light-blue-100 {
  background-color: #b3e5fc !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .light-blue-100[disabled] {
  background-color: rgba(179, 229, 252, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .light-blue-100-bg {
  background-color: #b3e5fc !important;
}
.theme-default-light .light-blue-100-fg {
  color: #b3e5fc !important;
}
.theme-default-light .light-blue-200 {
  background-color: #81d4fa !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .light-blue-200[disabled] {
  background-color: rgba(129, 212, 250, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .light-blue-200-bg {
  background-color: #81d4fa !important;
}
.theme-default-light .light-blue-200-fg {
  color: #81d4fa !important;
}
.theme-default-light .light-blue-300 {
  background-color: #4fc3f7 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .light-blue-300[disabled] {
  background-color: rgba(79, 195, 247, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .light-blue-300-bg {
  background-color: #4fc3f7 !important;
}
.theme-default-light .light-blue-300-fg {
  color: #4fc3f7 !important;
}
.theme-default-light .light-blue-400 {
  background-color: #29b6f6 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .light-blue-400[disabled] {
  background-color: rgba(41, 182, 246, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .light-blue-400-bg {
  background-color: #29b6f6 !important;
}
.theme-default-light .light-blue-400-fg {
  color: #29b6f6 !important;
}
.theme-default-light .light-blue-500 {
  background-color: #03a9f4 !important;
  color: white !important;
}
.theme-default-light .light-blue-500[disabled] {
  background-color: rgba(3, 169, 244, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .light-blue-500-bg {
  background-color: #03a9f4 !important;
}
.theme-default-light .light-blue-500-fg {
  color: #03a9f4 !important;
}
.theme-default-light .light-blue-bg {
  background-color: #03a9f4 !important;
}
.theme-default-light .light-blue-fg {
  color: #03a9f4 !important;
}
.theme-default-light .light-blue-600 {
  background-color: #039be5 !important;
  color: white !important;
}
.theme-default-light .light-blue-600[disabled] {
  background-color: rgba(3, 155, 229, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .light-blue-600-bg {
  background-color: #039be5 !important;
}
.theme-default-light .light-blue-600-fg {
  color: #039be5 !important;
}
.theme-default-light .light-blue-700 {
  background-color: #0288d1 !important;
  color: white !important;
}
.theme-default-light .light-blue-700[disabled] {
  background-color: rgba(2, 136, 209, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .light-blue-700-bg {
  background-color: #0288d1 !important;
}
.theme-default-light .light-blue-700-fg {
  color: #0288d1 !important;
}
.theme-default-light .light-blue-800 {
  background-color: #0277bd !important;
  color: white !important;
}
.theme-default-light .light-blue-800[disabled] {
  background-color: rgba(2, 119, 189, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .light-blue-800-bg {
  background-color: #0277bd !important;
}
.theme-default-light .light-blue-800-fg {
  color: #0277bd !important;
}
.theme-default-light .light-blue-900 {
  background-color: #01579b !important;
  color: white !important;
}
.theme-default-light .light-blue-900[disabled] {
  background-color: rgba(1, 87, 155, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .light-blue-900-bg {
  background-color: #01579b !important;
}
.theme-default-light .light-blue-900-fg {
  color: #01579b !important;
}
.theme-default-light .light-blue-A100 {
  background-color: #80d8ff !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .light-blue-A100[disabled] {
  background-color: rgba(128, 216, 255, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .light-blue-A100-bg {
  background-color: #80d8ff !important;
}
.theme-default-light .light-blue-A100-fg {
  color: #80d8ff !important;
}
.theme-default-light .light-blue-A200 {
  background-color: #40c4ff !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .light-blue-A200[disabled] {
  background-color: rgba(64, 196, 255, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .light-blue-A200-bg {
  background-color: #40c4ff !important;
}
.theme-default-light .light-blue-A200-fg {
  color: #40c4ff !important;
}
.theme-default-light .light-blue-A400 {
  background-color: #33b6ff !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .light-blue-A400[disabled] {
  background-color: rgba(51, 182, 255, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .light-blue-A400-bg {
  background-color: #33b6ff !important;
}
.theme-default-light .light-blue-A400-fg {
  color: #33b6ff !important;
}
.theme-default-light .light-blue-A700 {
  background-color: #0091ea !important;
  color: white !important;
}
.theme-default-light .light-blue-A700[disabled] {
  background-color: rgba(0, 145, 234, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .light-blue-A700-bg {
  background-color: #0091ea !important;
}
.theme-default-light .light-blue-A700-fg {
  color: #0091ea !important;
}
.theme-default-light .cyan-50 {
  background-color: #e0f7fa !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .cyan-50[disabled] {
  background-color: rgba(224, 247, 250, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .cyan-50-bg {
  background-color: #e0f7fa !important;
}
.theme-default-light .cyan-50-fg {
  color: #e0f7fa !important;
}
.theme-default-light .cyan-100 {
  background-color: #b2ebf2 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .cyan-100[disabled] {
  background-color: rgba(178, 235, 242, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .cyan-100-bg {
  background-color: #b2ebf2 !important;
}
.theme-default-light .cyan-100-fg {
  color: #b2ebf2 !important;
}
.theme-default-light .cyan-200 {
  background-color: #84e1eb !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .cyan-200[disabled] {
  background-color: rgba(132, 225, 235, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .cyan-200-bg {
  background-color: #84e1eb !important;
}
.theme-default-light .cyan-200-fg {
  color: #84e1eb !important;
}
.theme-default-light .cyan-300 {
  background-color: #4dd0e1 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .cyan-300[disabled] {
  background-color: rgba(77, 208, 225, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .cyan-300-bg {
  background-color: #4dd0e1 !important;
}
.theme-default-light .cyan-300-fg {
  color: #4dd0e1 !important;
}
.theme-default-light .cyan-400 {
  background-color: #08c3d6 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .cyan-400[disabled] {
  background-color: rgba(8, 195, 214, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .cyan-400-bg {
  background-color: #08c3d6 !important;
}
.theme-default-light .cyan-400-fg {
  color: #08c3d6 !important;
}
.theme-default-light .cyan-500 {
  background-color: #00bcd4 !important;
  color: white !important;
}
.theme-default-light .cyan-500[disabled] {
  background-color: rgba(0, 188, 212, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .cyan-500-bg {
  background-color: #00bcd4 !important;
}
.theme-default-light .cyan-500-fg {
  color: #00bcd4 !important;
}
.theme-default-light .cyan-bg {
  background-color: #00bcd4 !important;
}
.theme-default-light .cyan-fg {
  color: #00bcd4 !important;
}
.theme-default-light .cyan-600 {
  background-color: #00acc1 !important;
  color: white !important;
}
.theme-default-light .cyan-600[disabled] {
  background-color: rgba(0, 172, 193, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .cyan-600-bg {
  background-color: #00acc1 !important;
}
.theme-default-light .cyan-600-fg {
  color: #00acc1 !important;
}
.theme-default-light .cyan-700 {
  background-color: #02a1bc !important;
  color: white !important;
}
.theme-default-light .cyan-700[disabled] {
  background-color: rgba(2, 161, 188, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .cyan-700-bg {
  background-color: #02a1bc !important;
}
.theme-default-light .cyan-700-fg {
  color: #02a1bc !important;
}
.theme-default-light .cyan-800 {
  background-color: #00838f !important;
  color: white !important;
}
.theme-default-light .cyan-800[disabled] {
  background-color: rgba(0, 131, 143, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .cyan-800-bg {
  background-color: #00838f !important;
}
.theme-default-light .cyan-800-fg {
  color: #00838f !important;
}
.theme-default-light .cyan-900 {
  background-color: #006064 !important;
  color: white !important;
}
.theme-default-light .cyan-900[disabled] {
  background-color: rgba(0, 96, 100, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .cyan-900-bg {
  background-color: #006064 !important;
}
.theme-default-light .cyan-900-fg {
  color: #006064 !important;
}
.theme-default-light .cyan-A100 {
  background-color: #84ffff !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .cyan-A100[disabled] {
  background-color: rgba(132, 255, 255, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .cyan-A100-bg {
  background-color: #84ffff !important;
}
.theme-default-light .cyan-A100-fg {
  color: #84ffff !important;
}
.theme-default-light .cyan-A200 {
  background-color: #18ffff !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .cyan-A200[disabled] {
  background-color: rgba(24, 255, 255, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .cyan-A200-bg {
  background-color: #18ffff !important;
}
.theme-default-light .cyan-A200-fg {
  color: #18ffff !important;
}
.theme-default-light .cyan-A400 {
  background-color: #00e5ff !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .cyan-A400[disabled] {
  background-color: rgba(0, 229, 255, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .cyan-A400-bg {
  background-color: #00e5ff !important;
}
.theme-default-light .cyan-A400-fg {
  color: #00e5ff !important;
}
.theme-default-light .cyan-A700 {
  background-color: #00b8d4 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .cyan-A700[disabled] {
  background-color: rgba(0, 184, 212, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .cyan-A700-bg {
  background-color: #00b8d4 !important;
}
.theme-default-light .cyan-A700-fg {
  color: #00b8d4 !important;
}
.theme-default-light .teal-50 {
  background-color: #e0f2f1 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .teal-50[disabled] {
  background-color: rgba(224, 242, 241, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .teal-50-bg {
  background-color: #e0f2f1 !important;
}
.theme-default-light .teal-50-fg {
  color: #e0f2f1 !important;
}
.theme-default-light .teal-100 {
  background-color: #b2dfdb !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .teal-100[disabled] {
  background-color: rgba(178, 223, 219, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .teal-100-bg {
  background-color: #b2dfdb !important;
}
.theme-default-light .teal-100-fg {
  color: #b2dfdb !important;
}
.theme-default-light .teal-200 {
  background-color: #80cbc4 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .teal-200[disabled] {
  background-color: rgba(128, 203, 196, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .teal-200-bg {
  background-color: #80cbc4 !important;
}
.theme-default-light .teal-200-fg {
  color: #80cbc4 !important;
}
.theme-default-light .teal-300 {
  background-color: #4db6ac !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .teal-300[disabled] {
  background-color: rgba(77, 182, 172, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .teal-300-bg {
  background-color: #4db6ac !important;
}
.theme-default-light .teal-300-fg {
  color: #4db6ac !important;
}
.theme-default-light .teal-400 {
  background-color: #26a69a !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .teal-400[disabled] {
  background-color: rgba(38, 166, 154, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .teal-400-bg {
  background-color: #26a69a !important;
}
.theme-default-light .teal-400-fg {
  color: #26a69a !important;
}
.theme-default-light .teal-500 {
  background-color: #009688 !important;
  color: white !important;
}
.theme-default-light .teal-500[disabled] {
  background-color: rgba(0, 150, 136, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .teal-500-bg {
  background-color: #009688 !important;
}
.theme-default-light .teal-500-fg {
  color: #009688 !important;
}
.theme-default-light .teal-bg {
  background-color: #009688 !important;
}
.theme-default-light .teal-fg {
  color: #009688 !important;
}
.theme-default-light .teal-600 {
  background-color: #00897b !important;
  color: white !important;
}
.theme-default-light .teal-600[disabled] {
  background-color: rgba(0, 137, 123, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .teal-600-bg {
  background-color: #00897b !important;
}
.theme-default-light .teal-600-fg {
  color: #00897b !important;
}
.theme-default-light .teal-700 {
  background-color: #00796b !important;
  color: white !important;
}
.theme-default-light .teal-700[disabled] {
  background-color: rgba(0, 121, 107, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .teal-700-bg {
  background-color: #00796b !important;
}
.theme-default-light .teal-700-fg {
  color: #00796b !important;
}
.theme-default-light .teal-800 {
  background-color: #00695c !important;
  color: white !important;
}
.theme-default-light .teal-800[disabled] {
  background-color: rgba(0, 105, 92, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .teal-800-bg {
  background-color: #00695c !important;
}
.theme-default-light .teal-800-fg {
  color: #00695c !important;
}
.theme-default-light .teal-900 {
  background-color: #004d40 !important;
  color: white !important;
}
.theme-default-light .teal-900[disabled] {
  background-color: rgba(0, 77, 64, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .teal-900-bg {
  background-color: #004d40 !important;
}
.theme-default-light .teal-900-fg {
  color: #004d40 !important;
}
.theme-default-light .teal-A100 {
  background-color: #a7ffeb !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .teal-A100[disabled] {
  background-color: rgba(167, 255, 235, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .teal-A100-bg {
  background-color: #a7ffeb !important;
}
.theme-default-light .teal-A100-fg {
  color: #a7ffeb !important;
}
.theme-default-light .teal-A200 {
  background-color: #64ffda !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .teal-A200[disabled] {
  background-color: rgba(100, 255, 218, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .teal-A200-bg {
  background-color: #64ffda !important;
}
.theme-default-light .teal-A200-fg {
  color: #64ffda !important;
}
.theme-default-light .teal-A400 {
  background-color: #1de9b6 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .teal-A400[disabled] {
  background-color: rgba(29, 233, 182, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .teal-A400-bg {
  background-color: #1de9b6 !important;
}
.theme-default-light .teal-A400-fg {
  color: #1de9b6 !important;
}
.theme-default-light .teal-A700 {
  background-color: #00bfa5 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .teal-A700[disabled] {
  background-color: rgba(0, 191, 165, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .teal-A700-bg {
  background-color: #00bfa5 !important;
}
.theme-default-light .teal-A700-fg {
  color: #00bfa5 !important;
}
.theme-default-light .green-50 {
  background-color: #e2f2e9 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .green-50[disabled] {
  background-color: rgba(226, 242, 233, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .green-50-bg {
  background-color: #e2f2e9 !important;
}
.theme-default-light .green-50-fg {
  color: #e2f2e9 !important;
}
.theme-default-light .green-100 {
  background-color: #b8dec8 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .green-100[disabled] {
  background-color: rgba(184, 222, 200, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .green-100-bg {
  background-color: #b8dec8 !important;
}
.theme-default-light .green-100-fg {
  color: #b8dec8 !important;
}
.theme-default-light .green-200 {
  background-color: #88c8a3 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .green-200[disabled] {
  background-color: rgba(136, 200, 163, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .green-200-bg {
  background-color: #88c8a3 !important;
}
.theme-default-light .green-200-fg {
  color: #88c8a3 !important;
}
.theme-default-light .green-300 {
  background-color: #58b17e !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .green-300[disabled] {
  background-color: rgba(88, 177, 126, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .green-300-bg {
  background-color: #58b17e !important;
}
.theme-default-light .green-300-fg {
  color: #58b17e !important;
}
.theme-default-light .green-400 {
  background-color: #35a162 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .green-400[disabled] {
  background-color: rgba(53, 161, 98, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .green-400-bg {
  background-color: #35a162 !important;
}
.theme-default-light .green-400-fg {
  color: #35a162 !important;
}
.theme-default-light .green-500 {
  background-color: #119046 !important;
  color: white !important;
}
.theme-default-light .green-500[disabled] {
  background-color: rgba(17, 144, 70, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .green-500-bg {
  background-color: #119046 !important;
}
.theme-default-light .green-500-fg {
  color: #119046 !important;
}
.theme-default-light .green-bg {
  background-color: #119046 !important;
}
.theme-default-light .green-fg {
  color: #119046 !important;
}
.theme-default-light .green-600 {
  background-color: #0f883f !important;
  color: white !important;
}
.theme-default-light .green-600[disabled] {
  background-color: rgba(15, 136, 63, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .green-600-bg {
  background-color: #0f883f !important;
}
.theme-default-light .green-600-fg {
  color: #0f883f !important;
}
.theme-default-light .green-700 {
  background-color: #0c7d37 !important;
  color: white !important;
}
.theme-default-light .green-700[disabled] {
  background-color: rgba(12, 125, 55, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .green-700-bg {
  background-color: #0c7d37 !important;
}
.theme-default-light .green-700-fg {
  color: #0c7d37 !important;
}
.theme-default-light .green-800 {
  background-color: #0a732f !important;
  color: white !important;
}
.theme-default-light .green-800[disabled] {
  background-color: rgba(10, 115, 47, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .green-800-bg {
  background-color: #0a732f !important;
}
.theme-default-light .green-800-fg {
  color: #0a732f !important;
}
.theme-default-light .green-900 {
  background-color: #056120 !important;
  color: white !important;
}
.theme-default-light .green-900[disabled] {
  background-color: rgba(5, 97, 32, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .green-900-bg {
  background-color: #056120 !important;
}
.theme-default-light .green-900-fg {
  color: #056120 !important;
}
.theme-default-light .green-A100 {
  background-color: #b9f6ca !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .green-A100[disabled] {
  background-color: rgba(185, 246, 202, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .green-A100-bg {
  background-color: #b9f6ca !important;
}
.theme-default-light .green-A100-fg {
  color: #b9f6ca !important;
}
.theme-default-light .green-A200 {
  background-color: #69f0ae !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .green-A200[disabled] {
  background-color: rgba(105, 240, 174, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .green-A200-bg {
  background-color: #69f0ae !important;
}
.theme-default-light .green-A200-fg {
  color: #69f0ae !important;
}
.theme-default-light .green-A400 {
  background-color: #2cff5b !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .green-A400[disabled] {
  background-color: rgba(44, 255, 91, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .green-A400-bg {
  background-color: #2cff5b !important;
}
.theme-default-light .green-A400-fg {
  color: #2cff5b !important;
}
.theme-default-light .green-A700 {
  background-color: #13ff48 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .green-A700[disabled] {
  background-color: rgba(19, 255, 72, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .green-A700-bg {
  background-color: #13ff48 !important;
}
.theme-default-light .green-A700-fg {
  color: #13ff48 !important;
}
.theme-default-light .light-green-50 {
  background-color: #E9F9DF !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .light-green-50[disabled] {
  background-color: rgba(233, 249, 223, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .light-green-50-bg {
  background-color: #E9F9DF !important;
}
.theme-default-light .light-green-50-fg {
  color: #E9F9DF !important;
}
.theme-default-light .light-green-100 {
  background-color: #D4F4C0 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .light-green-100[disabled] {
  background-color: rgba(212, 244, 192, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .light-green-100-bg {
  background-color: #D4F4C0 !important;
}
.theme-default-light .light-green-100-fg {
  color: #D4F4C0 !important;
}
.theme-default-light .light-green-200 {
  background-color: #B7ED96 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .light-green-200[disabled] {
  background-color: rgba(183, 237, 150, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .light-green-200-bg {
  background-color: #B7ED96 !important;
}
.theme-default-light .light-green-200-fg {
  color: #B7ED96 !important;
}
.theme-default-light .light-green-300 {
  background-color: #9AE56B !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .light-green-300[disabled] {
  background-color: rgba(154, 229, 107, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .light-green-300-bg {
  background-color: #9AE56B !important;
}
.theme-default-light .light-green-300-fg {
  color: #9AE56B !important;
}
.theme-default-light .light-green-400 {
  background-color: #84E04C !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .light-green-400[disabled] {
  background-color: rgba(132, 224, 76, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .light-green-400-bg {
  background-color: #84E04C !important;
}
.theme-default-light .light-green-400-fg {
  color: #84E04C !important;
}
.theme-default-light .light-green-500 {
  background-color: #6EDA2C !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .light-green-500[disabled] {
  background-color: rgba(110, 218, 44, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .light-green-500-bg {
  background-color: #6EDA2C !important;
}
.theme-default-light .light-green-500-fg {
  color: #6EDA2C !important;
}
.theme-default-light .light-green-bg {
  background-color: #6EDA2C !important;
}
.theme-default-light .light-green-fg {
  color: #6EDA2C !important;
}
.theme-default-light .light-green-600 {
  background-color: #5EB925 !important;
  color: white !important;
}
.theme-default-light .light-green-600[disabled] {
  background-color: rgba(94, 185, 37, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .light-green-600-bg {
  background-color: #5EB925 !important;
}
.theme-default-light .light-green-600-fg {
  color: #5EB925 !important;
}
.theme-default-light .light-green-700 {
  background-color: #4D991F !important;
  color: white !important;
}
.theme-default-light .light-green-700[disabled] {
  background-color: rgba(77, 153, 31, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .light-green-700-bg {
  background-color: #4D991F !important;
}
.theme-default-light .light-green-700-fg {
  color: #4D991F !important;
}
.theme-default-light .light-green-800 {
  background-color: #376D16 !important;
  color: white !important;
}
.theme-default-light .light-green-800[disabled] {
  background-color: rgba(55, 109, 22, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .light-green-800-bg {
  background-color: #376D16 !important;
}
.theme-default-light .light-green-800-fg {
  color: #376D16 !important;
}
.theme-default-light .light-green-900 {
  background-color: #274C0F !important;
  color: white !important;
}
.theme-default-light .light-green-900[disabled] {
  background-color: rgba(39, 76, 15, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .light-green-900-bg {
  background-color: #274C0F !important;
}
.theme-default-light .light-green-900-fg {
  color: #274C0F !important;
}
.theme-default-light .light-green-A100 {
  background-color: #D4FFBE !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .light-green-A100[disabled] {
  background-color: rgba(212, 255, 190, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .light-green-A100-bg {
  background-color: #D4FFBE !important;
}
.theme-default-light .light-green-A100-fg {
  color: #D4FFBE !important;
}
.theme-default-light .light-green-A200 {
  background-color: #B1FF8A !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .light-green-A200[disabled] {
  background-color: rgba(177, 255, 138, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .light-green-A200-bg {
  background-color: #B1FF8A !important;
}
.theme-default-light .light-green-A200-fg {
  color: #B1FF8A !important;
}
.theme-default-light .light-green-A400 {
  background-color: #8DFF56 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .light-green-A400[disabled] {
  background-color: rgba(141, 255, 86, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .light-green-A400-bg {
  background-color: #8DFF56 !important;
}
.theme-default-light .light-green-A400-fg {
  color: #8DFF56 !important;
}
.theme-default-light .light-green-A700 {
  background-color: #6AFF21 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .light-green-A700[disabled] {
  background-color: rgba(106, 255, 33, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .light-green-A700-bg {
  background-color: #6AFF21 !important;
}
.theme-default-light .light-green-A700-fg {
  color: #6AFF21 !important;
}
.theme-default-light .lime-50 {
  background-color: #f0f7e0 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .lime-50[disabled] {
  background-color: rgba(240, 247, 224, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .lime-50-bg {
  background-color: #f0f7e0 !important;
}
.theme-default-light .lime-50-fg {
  color: #f0f7e0 !important;
}
.theme-default-light .lime-100 {
  background-color: #dbebb3 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .lime-100[disabled] {
  background-color: rgba(219, 235, 179, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .lime-100-bg {
  background-color: #dbebb3 !important;
}
.theme-default-light .lime-100-fg {
  color: #dbebb3 !important;
}
.theme-default-light .lime-200 {
  background-color: #c3de80 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .lime-200[disabled] {
  background-color: rgba(195, 222, 128, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .lime-200-bg {
  background-color: #c3de80 !important;
}
.theme-default-light .lime-200-fg {
  color: #c3de80 !important;
}
.theme-default-light .lime-300 {
  background-color: #aad14d !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .lime-300[disabled] {
  background-color: rgba(170, 209, 77, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .lime-300-bg {
  background-color: #aad14d !important;
}
.theme-default-light .lime-300-fg {
  color: #aad14d !important;
}
.theme-default-light .lime-400 {
  background-color: #98c726 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .lime-400[disabled] {
  background-color: rgba(152, 199, 38, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .lime-400-bg {
  background-color: #98c726 !important;
}
.theme-default-light .lime-400-fg {
  color: #98c726 !important;
}
.theme-default-light .lime-500 {
  background-color: #86bd00 !important;
  color: white !important;
}
.theme-default-light .lime-500[disabled] {
  background-color: rgba(134, 189, 0, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .lime-500-bg {
  background-color: #86bd00 !important;
}
.theme-default-light .lime-500-fg {
  color: #86bd00 !important;
}
.theme-default-light .lime-bg {
  background-color: #86bd00 !important;
}
.theme-default-light .lime-fg {
  color: #86bd00 !important;
}
.theme-default-light .lime-600 {
  background-color: #7eb700 !important;
  color: white !important;
}
.theme-default-light .lime-600[disabled] {
  background-color: rgba(126, 183, 0, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .lime-600-bg {
  background-color: #7eb700 !important;
}
.theme-default-light .lime-600-fg {
  color: #7eb700 !important;
}
.theme-default-light .lime-700 {
  background-color: #73ae00 !important;
  color: white !important;
}
.theme-default-light .lime-700[disabled] {
  background-color: rgba(115, 174, 0, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .lime-700-bg {
  background-color: #73ae00 !important;
}
.theme-default-light .lime-700-fg {
  color: #73ae00 !important;
}
.theme-default-light .lime-800 {
  background-color: #69a600 !important;
  color: white !important;
}
.theme-default-light .lime-800[disabled] {
  background-color: rgba(105, 166, 0, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .lime-800-bg {
  background-color: #69a600 !important;
}
.theme-default-light .lime-800-fg {
  color: #69a600 !important;
}
.theme-default-light .lime-900 {
  background-color: #569800 !important;
  color: white !important;
}
.theme-default-light .lime-900[disabled] {
  background-color: rgba(86, 152, 0, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .lime-900-bg {
  background-color: #569800 !important;
}
.theme-default-light .lime-900-fg {
  color: #569800 !important;
}
.theme-default-light .lime-A100 {
  background-color: #f4ff81 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .lime-A100[disabled] {
  background-color: rgba(244, 255, 129, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .lime-A100-bg {
  background-color: #f4ff81 !important;
}
.theme-default-light .lime-A100-fg {
  color: #f4ff81 !important;
}
.theme-default-light .lime-A200 {
  background-color: #eeff41 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .lime-A200[disabled] {
  background-color: rgba(238, 255, 65, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .lime-A200-bg {
  background-color: #eeff41 !important;
}
.theme-default-light .lime-A200-fg {
  color: #eeff41 !important;
}
.theme-default-light .lime-A400 {
  background-color: #c6ff00 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .lime-A400[disabled] {
  background-color: rgba(198, 255, 0, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .lime-A400-bg {
  background-color: #c6ff00 !important;
}
.theme-default-light .lime-A400-fg {
  color: #c6ff00 !important;
}
.theme-default-light .lime-A700 {
  background-color: #aeea00 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .lime-A700[disabled] {
  background-color: rgba(174, 234, 0, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .lime-A700-bg {
  background-color: #aeea00 !important;
}
.theme-default-light .lime-A700-fg {
  color: #aeea00 !important;
}
.theme-default-light .yellow-50 {
  background-color: #fcf8e0 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .yellow-50[disabled] {
  background-color: rgba(252, 248, 224, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .yellow-50-bg {
  background-color: #fcf8e0 !important;
}
.theme-default-light .yellow-50-fg {
  color: #fcf8e0 !important;
}
.theme-default-light .yellow-100 {
  background-color: #f8edb3 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .yellow-100[disabled] {
  background-color: rgba(248, 237, 179, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .yellow-100-bg {
  background-color: #f8edb3 !important;
}
.theme-default-light .yellow-100-fg {
  color: #f8edb3 !important;
}
.theme-default-light .yellow-200 {
  background-color: #f4e180 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .yellow-200[disabled] {
  background-color: rgba(244, 225, 128, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .yellow-200-bg {
  background-color: #f4e180 !important;
}
.theme-default-light .yellow-200-fg {
  color: #f4e180 !important;
}
.theme-default-light .yellow-300 {
  background-color: #efd54d !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .yellow-300[disabled] {
  background-color: rgba(239, 213, 77, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .yellow-300-bg {
  background-color: #efd54d !important;
}
.theme-default-light .yellow-300-fg {
  color: #efd54d !important;
}
.theme-default-light .yellow-400 {
  background-color: #ebcc26 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .yellow-400[disabled] {
  background-color: rgba(235, 204, 38, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .yellow-400-bg {
  background-color: #ebcc26 !important;
}
.theme-default-light .yellow-400-fg {
  color: #ebcc26 !important;
}
.theme-default-light .yellow-500 {
  background-color: #e8c300 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .yellow-500[disabled] {
  background-color: rgba(232, 195, 0, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .yellow-500-bg {
  background-color: #e8c300 !important;
}
.theme-default-light .yellow-500-fg {
  color: #e8c300 !important;
}
.theme-default-light .yellow-bg {
  background-color: #e8c300 !important;
}
.theme-default-light .yellow-fg {
  color: #e8c300 !important;
}
.theme-default-light .yellow-600 {
  background-color: #e5bd00 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .yellow-600[disabled] {
  background-color: rgba(229, 189, 0, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .yellow-600-bg {
  background-color: #e5bd00 !important;
}
.theme-default-light .yellow-600-fg {
  color: #e5bd00 !important;
}
.theme-default-light .yellow-700 {
  background-color: #e2b500 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .yellow-700[disabled] {
  background-color: rgba(226, 181, 0, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .yellow-700-bg {
  background-color: #e2b500 !important;
}
.theme-default-light .yellow-700-fg {
  color: #e2b500 !important;
}
.theme-default-light .yellow-800 {
  background-color: #deae00 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .yellow-800[disabled] {
  background-color: rgba(222, 174, 0, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .yellow-800-bg {
  background-color: #deae00 !important;
}
.theme-default-light .yellow-800-fg {
  color: #deae00 !important;
}
.theme-default-light .yellow-900 {
  background-color: #d8a100 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .yellow-900[disabled] {
  background-color: rgba(216, 161, 0, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .yellow-900-bg {
  background-color: #d8a100 !important;
}
.theme-default-light .yellow-900-fg {
  color: #d8a100 !important;
}
.theme-default-light .yellow-A100 {
  background-color: #ffff8d !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .yellow-A100[disabled] {
  background-color: rgba(255, 255, 141, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .yellow-A100-bg {
  background-color: #ffff8d !important;
}
.theme-default-light .yellow-A100-fg {
  color: #ffff8d !important;
}
.theme-default-light .yellow-A200 {
  background-color: #ffff00 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .yellow-A200[disabled] {
  background-color: rgba(255, 255, 0, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .yellow-A200-bg {
  background-color: #ffff00 !important;
}
.theme-default-light .yellow-A200-fg {
  color: #ffff00 !important;
}
.theme-default-light .yellow-A400 {
  background-color: #ffea00 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .yellow-A400[disabled] {
  background-color: rgba(255, 234, 0, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .yellow-A400-bg {
  background-color: #ffea00 !important;
}
.theme-default-light .yellow-A400-fg {
  color: #ffea00 !important;
}
.theme-default-light .yellow-A700 {
  background-color: #ffd600 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .yellow-A700[disabled] {
  background-color: rgba(255, 214, 0, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .yellow-A700-bg {
  background-color: #ffd600 !important;
}
.theme-default-light .yellow-A700-fg {
  color: #ffd600 !important;
}
.theme-default-light .amber-50 {
  background-color: #fef4e4 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .amber-50[disabled] {
  background-color: rgba(254, 244, 228, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .amber-50-bg {
  background-color: #fef4e4 !important;
}
.theme-default-light .amber-50-fg {
  color: #fef4e4 !important;
}
.theme-default-light .amber-100 {
  background-color: #fee4ba !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .amber-100[disabled] {
  background-color: rgba(254, 228, 186, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .amber-100-bg {
  background-color: #fee4ba !important;
}
.theme-default-light .amber-100-fg {
  color: #fee4ba !important;
}
.theme-default-light .amber-200 {
  background-color: #fdd38d !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .amber-200[disabled] {
  background-color: rgba(253, 211, 141, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .amber-200-bg {
  background-color: #fdd38d !important;
}
.theme-default-light .amber-200-fg {
  color: #fdd38d !important;
}
.theme-default-light .amber-300 {
  background-color: #fcc15f !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .amber-300[disabled] {
  background-color: rgba(252, 193, 95, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .amber-300-bg {
  background-color: #fcc15f !important;
}
.theme-default-light .amber-300-fg {
  color: #fcc15f !important;
}
.theme-default-light .amber-400 {
  background-color: #fbb33c !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .amber-400[disabled] {
  background-color: rgba(251, 179, 60, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .amber-400-bg {
  background-color: #fbb33c !important;
}
.theme-default-light .amber-400-fg {
  color: #fbb33c !important;
}
.theme-default-light .amber-500 {
  background-color: #faa61a !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .amber-500[disabled] {
  background-color: rgba(250, 166, 26, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .amber-500-bg {
  background-color: #faa61a !important;
}
.theme-default-light .amber-500-fg {
  color: #faa61a !important;
}
.theme-default-light .amber-bg {
  background-color: #faa61a !important;
}
.theme-default-light .amber-fg {
  color: #faa61a !important;
}
.theme-default-light .amber-600 {
  background-color: #f99e17 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .amber-600[disabled] {
  background-color: rgba(249, 158, 23, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .amber-600-bg {
  background-color: #f99e17 !important;
}
.theme-default-light .amber-600-fg {
  color: #f99e17 !important;
}
.theme-default-light .amber-700 {
  background-color: #f99513 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .amber-700[disabled] {
  background-color: rgba(249, 149, 19, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .amber-700-bg {
  background-color: #f99513 !important;
}
.theme-default-light .amber-700-fg {
  color: #f99513 !important;
}
.theme-default-light .amber-800 {
  background-color: #f88b0f !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .amber-800[disabled] {
  background-color: rgba(248, 139, 15, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .amber-800-bg {
  background-color: #f88b0f !important;
}
.theme-default-light .amber-800-fg {
  color: #f88b0f !important;
}
.theme-default-light .amber-900 {
  background-color: #f67b08 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .amber-900[disabled] {
  background-color: rgba(246, 123, 8, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .amber-900-bg {
  background-color: #f67b08 !important;
}
.theme-default-light .amber-900-fg {
  color: #f67b08 !important;
}
.theme-default-light .amber-A100 {
  background-color: #ffe57f !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .amber-A100[disabled] {
  background-color: rgba(255, 229, 127, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .amber-A100-bg {
  background-color: #ffe57f !important;
}
.theme-default-light .amber-A100-fg {
  color: #ffe57f !important;
}
.theme-default-light .amber-A200 {
  background-color: #ffd740 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .amber-A200[disabled] {
  background-color: rgba(255, 215, 64, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .amber-A200-bg {
  background-color: #ffd740 !important;
}
.theme-default-light .amber-A200-fg {
  color: #ffd740 !important;
}
.theme-default-light .amber-A400 {
  background-color: #ffc400 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .amber-A400[disabled] {
  background-color: rgba(255, 196, 0, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .amber-A400-bg {
  background-color: #ffc400 !important;
}
.theme-default-light .amber-A400-fg {
  color: #ffc400 !important;
}
.theme-default-light .amber-A700 {
  background-color: #ffab00 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .amber-A700[disabled] {
  background-color: rgba(255, 171, 0, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .amber-A700-bg {
  background-color: #ffab00 !important;
}
.theme-default-light .amber-A700-fg {
  color: #ffab00 !important;
}
.theme-default-light .orange-50 {
  background-color: #feefe3 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .orange-50[disabled] {
  background-color: rgba(254, 239, 227, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .orange-50-bg {
  background-color: #feefe3 !important;
}
.theme-default-light .orange-50-fg {
  color: #feefe3 !important;
}
.theme-default-light .orange-100 {
  background-color: #fdd7b9 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .orange-100[disabled] {
  background-color: rgba(253, 215, 185, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .orange-100-bg {
  background-color: #fdd7b9 !important;
}
.theme-default-light .orange-100-fg {
  color: #fdd7b9 !important;
}
.theme-default-light .orange-200 {
  background-color: #fbbc8a !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .orange-200[disabled] {
  background-color: rgba(251, 188, 138, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .orange-200-bg {
  background-color: #fbbc8a !important;
}
.theme-default-light .orange-200-fg {
  color: #fbbc8a !important;
}
.theme-default-light .orange-300 {
  background-color: #f9a15b !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .orange-300[disabled] {
  background-color: rgba(249, 161, 91, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .orange-300-bg {
  background-color: #f9a15b !important;
}
.theme-default-light .orange-300-fg {
  color: #f9a15b !important;
}
.theme-default-light .orange-400 {
  background-color: #f88c37 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .orange-400[disabled] {
  background-color: rgba(248, 140, 55, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .orange-400-bg {
  background-color: #f88c37 !important;
}
.theme-default-light .orange-400-fg {
  color: #f88c37 !important;
}
.theme-default-light .orange-500 {
  background-color: #f77814 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .orange-500[disabled] {
  background-color: rgba(247, 120, 20, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .orange-500-bg {
  background-color: #f77814 !important;
}
.theme-default-light .orange-500-fg {
  color: #f77814 !important;
}
.theme-default-light .orange-bg {
  background-color: #f77814 !important;
}
.theme-default-light .orange-fg {
  color: #f77814 !important;
}
.theme-default-light .orange-600 {
  background-color: #f67012 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .orange-600[disabled] {
  background-color: rgba(246, 112, 18, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .orange-600-bg {
  background-color: #f67012 !important;
}
.theme-default-light .orange-600-fg {
  color: #f67012 !important;
}
.theme-default-light .orange-700 {
  background-color: #f5650e !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .orange-700[disabled] {
  background-color: rgba(245, 101, 14, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .orange-700-bg {
  background-color: #f5650e !important;
}
.theme-default-light .orange-700-fg {
  color: #f5650e !important;
}
.theme-default-light .orange-800 {
  background-color: #f35b0b !important;
  color: white !important;
}
.theme-default-light .orange-800[disabled] {
  background-color: rgba(243, 91, 11, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .orange-800-bg {
  background-color: #f35b0b !important;
}
.theme-default-light .orange-800-fg {
  color: #f35b0b !important;
}
.theme-default-light .orange-900 {
  background-color: #f14806 !important;
  color: white !important;
}
.theme-default-light .orange-900[disabled] {
  background-color: rgba(241, 72, 6, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .orange-900-bg {
  background-color: #f14806 !important;
}
.theme-default-light .orange-900-fg {
  color: #f14806 !important;
}
.theme-default-light .orange-A100 {
  background-color: #ffd180 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .orange-A100[disabled] {
  background-color: rgba(255, 209, 128, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .orange-A100-bg {
  background-color: #ffd180 !important;
}
.theme-default-light .orange-A100-fg {
  color: #ffd180 !important;
}
.theme-default-light .orange-A200 {
  background-color: #ffab40 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .orange-A200[disabled] {
  background-color: rgba(255, 171, 64, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .orange-A200-bg {
  background-color: #ffab40 !important;
}
.theme-default-light .orange-A200-fg {
  color: #ffab40 !important;
}
.theme-default-light .orange-A400 {
  background-color: #ff9100 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .orange-A400[disabled] {
  background-color: rgba(255, 145, 0, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .orange-A400-bg {
  background-color: #ff9100 !important;
}
.theme-default-light .orange-A400-fg {
  color: #ff9100 !important;
}
.theme-default-light .orange-A700 {
  background-color: #ff6d00 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .orange-A700[disabled] {
  background-color: rgba(255, 109, 0, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .orange-A700-bg {
  background-color: #ff6d00 !important;
}
.theme-default-light .orange-A700-fg {
  color: #ff6d00 !important;
}
.theme-default-light .deep-orange-50 {
  background-color: #fbe9e7 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .deep-orange-50[disabled] {
  background-color: rgba(251, 233, 231, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .deep-orange-50-bg {
  background-color: #fbe9e7 !important;
}
.theme-default-light .deep-orange-50-fg {
  color: #fbe9e7 !important;
}
.theme-default-light .deep-orange-100 {
  background-color: #ffccbc !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .deep-orange-100[disabled] {
  background-color: rgba(255, 204, 188, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .deep-orange-100-bg {
  background-color: #ffccbc !important;
}
.theme-default-light .deep-orange-100-fg {
  color: #ffccbc !important;
}
.theme-default-light .deep-orange-200 {
  background-color: #ffab91 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .deep-orange-200[disabled] {
  background-color: rgba(255, 171, 145, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .deep-orange-200-bg {
  background-color: #ffab91 !important;
}
.theme-default-light .deep-orange-200-fg {
  color: #ffab91 !important;
}
.theme-default-light .deep-orange-300 {
  background-color: #ff8a65 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .deep-orange-300[disabled] {
  background-color: rgba(255, 138, 101, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .deep-orange-300-bg {
  background-color: #ff8a65 !important;
}
.theme-default-light .deep-orange-300-fg {
  color: #ff8a65 !important;
}
.theme-default-light .deep-orange-400 {
  background-color: #ff7043 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .deep-orange-400[disabled] {
  background-color: rgba(255, 112, 67, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .deep-orange-400-bg {
  background-color: #ff7043 !important;
}
.theme-default-light .deep-orange-400-fg {
  color: #ff7043 !important;
}
.theme-default-light .deep-orange-500 {
  background-color: #ff5722 !important;
  color: white !important;
}
.theme-default-light .deep-orange-500[disabled] {
  background-color: rgba(255, 87, 34, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .deep-orange-500-bg {
  background-color: #ff5722 !important;
}
.theme-default-light .deep-orange-500-fg {
  color: #ff5722 !important;
}
.theme-default-light .deep-orange-bg {
  background-color: #ff5722 !important;
}
.theme-default-light .deep-orange-fg {
  color: #ff5722 !important;
}
.theme-default-light .deep-orange-600 {
  background-color: #f4511e !important;
  color: white !important;
}
.theme-default-light .deep-orange-600[disabled] {
  background-color: rgba(244, 81, 30, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .deep-orange-600-bg {
  background-color: #f4511e !important;
}
.theme-default-light .deep-orange-600-fg {
  color: #f4511e !important;
}
.theme-default-light .deep-orange-700 {
  background-color: #e64a19 !important;
  color: white !important;
}
.theme-default-light .deep-orange-700[disabled] {
  background-color: rgba(230, 74, 25, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .deep-orange-700-bg {
  background-color: #e64a19 !important;
}
.theme-default-light .deep-orange-700-fg {
  color: #e64a19 !important;
}
.theme-default-light .deep-orange-800 {
  background-color: #d84315 !important;
  color: white !important;
}
.theme-default-light .deep-orange-800[disabled] {
  background-color: rgba(216, 67, 21, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .deep-orange-800-bg {
  background-color: #d84315 !important;
}
.theme-default-light .deep-orange-800-fg {
  color: #d84315 !important;
}
.theme-default-light .deep-orange-900 {
  background-color: #bf360c !important;
  color: white !important;
}
.theme-default-light .deep-orange-900[disabled] {
  background-color: rgba(191, 54, 12, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .deep-orange-900-bg {
  background-color: #bf360c !important;
}
.theme-default-light .deep-orange-900-fg {
  color: #bf360c !important;
}
.theme-default-light .deep-orange-A100 {
  background-color: #ff9e80 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .deep-orange-A100[disabled] {
  background-color: rgba(255, 158, 128, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .deep-orange-A100-bg {
  background-color: #ff9e80 !important;
}
.theme-default-light .deep-orange-A100-fg {
  color: #ff9e80 !important;
}
.theme-default-light .deep-orange-A200 {
  background-color: #ff6e40 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .deep-orange-A200[disabled] {
  background-color: rgba(255, 110, 64, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .deep-orange-A200-bg {
  background-color: #ff6e40 !important;
}
.theme-default-light .deep-orange-A200-fg {
  color: #ff6e40 !important;
}
.theme-default-light .deep-orange-A400 {
  background-color: #ff3d00 !important;
  color: white !important;
}
.theme-default-light .deep-orange-A400[disabled] {
  background-color: rgba(255, 61, 0, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .deep-orange-A400-bg {
  background-color: #ff3d00 !important;
}
.theme-default-light .deep-orange-A400-fg {
  color: #ff3d00 !important;
}
.theme-default-light .deep-orange-A700 {
  background-color: #dd2c00 !important;
  color: white !important;
}
.theme-default-light .deep-orange-A700[disabled] {
  background-color: rgba(221, 44, 0, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .deep-orange-A700-bg {
  background-color: #dd2c00 !important;
}
.theme-default-light .deep-orange-A700-fg {
  color: #dd2c00 !important;
}
.theme-default-light .brown-50 {
  background-color: #efebe9 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .brown-50[disabled] {
  background-color: rgba(239, 235, 233, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .brown-50-bg {
  background-color: #efebe9 !important;
}
.theme-default-light .brown-50-fg {
  color: #efebe9 !important;
}
.theme-default-light .brown-100 {
  background-color: #d7ccc8 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .brown-100[disabled] {
  background-color: rgba(215, 204, 200, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .brown-100-bg {
  background-color: #d7ccc8 !important;
}
.theme-default-light .brown-100-fg {
  color: #d7ccc8 !important;
}
.theme-default-light .brown-200 {
  background-color: #bcaaa4 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .brown-200[disabled] {
  background-color: rgba(188, 170, 164, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .brown-200-bg {
  background-color: #bcaaa4 !important;
}
.theme-default-light .brown-200-fg {
  color: #bcaaa4 !important;
}
.theme-default-light .brown-300 {
  background-color: #a1887f !important;
  color: white !important;
}
.theme-default-light .brown-300[disabled] {
  background-color: rgba(161, 136, 127, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .brown-300-bg {
  background-color: #a1887f !important;
}
.theme-default-light .brown-300-fg {
  color: #a1887f !important;
}
.theme-default-light .brown-400 {
  background-color: #8d6e63 !important;
  color: white !important;
}
.theme-default-light .brown-400[disabled] {
  background-color: rgba(141, 110, 99, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .brown-400-bg {
  background-color: #8d6e63 !important;
}
.theme-default-light .brown-400-fg {
  color: #8d6e63 !important;
}
.theme-default-light .brown-500 {
  background-color: #795548 !important;
  color: white !important;
}
.theme-default-light .brown-500[disabled] {
  background-color: rgba(121, 85, 72, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .brown-500-bg {
  background-color: #795548 !important;
}
.theme-default-light .brown-500-fg {
  color: #795548 !important;
}
.theme-default-light .brown-bg {
  background-color: #795548 !important;
}
.theme-default-light .brown-fg {
  color: #795548 !important;
}
.theme-default-light .brown-600 {
  background-color: #6d4c41 !important;
  color: white !important;
}
.theme-default-light .brown-600[disabled] {
  background-color: rgba(109, 76, 65, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .brown-600-bg {
  background-color: #6d4c41 !important;
}
.theme-default-light .brown-600-fg {
  color: #6d4c41 !important;
}
.theme-default-light .brown-700 {
  background-color: #5d4037 !important;
  color: white !important;
}
.theme-default-light .brown-700[disabled] {
  background-color: rgba(93, 64, 55, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .brown-700-bg {
  background-color: #5d4037 !important;
}
.theme-default-light .brown-700-fg {
  color: #5d4037 !important;
}
.theme-default-light .brown-800 {
  background-color: #4e342e !important;
  color: white !important;
}
.theme-default-light .brown-800[disabled] {
  background-color: rgba(78, 52, 46, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .brown-800-bg {
  background-color: #4e342e !important;
}
.theme-default-light .brown-800-fg {
  color: #4e342e !important;
}
.theme-default-light .brown-900 {
  background-color: #3e2723 !important;
  color: white !important;
}
.theme-default-light .brown-900[disabled] {
  background-color: rgba(62, 39, 35, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .brown-900-bg {
  background-color: #3e2723 !important;
}
.theme-default-light .brown-900-fg {
  color: #3e2723 !important;
}
.theme-default-light .brown-A100 {
  background-color: #d7ccc8 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .brown-A100[disabled] {
  background-color: rgba(215, 204, 200, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .brown-A100-bg {
  background-color: #d7ccc8 !important;
}
.theme-default-light .brown-A100-fg {
  color: #d7ccc8 !important;
}
.theme-default-light .brown-A200 {
  background-color: #bcaaa4 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .brown-A200[disabled] {
  background-color: rgba(188, 170, 164, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .brown-A200-bg {
  background-color: #bcaaa4 !important;
}
.theme-default-light .brown-A200-fg {
  color: #bcaaa4 !important;
}
.theme-default-light .brown-A400 {
  background-color: #8d6e63 !important;
  color: white !important;
}
.theme-default-light .brown-A400[disabled] {
  background-color: rgba(141, 110, 99, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .brown-A400-bg {
  background-color: #8d6e63 !important;
}
.theme-default-light .brown-A400-fg {
  color: #8d6e63 !important;
}
.theme-default-light .brown-A700 {
  background-color: #5d4037 !important;
  color: white !important;
}
.theme-default-light .brown-A700[disabled] {
  background-color: rgba(93, 64, 55, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .brown-A700-bg {
  background-color: #5d4037 !important;
}
.theme-default-light .brown-A700-fg {
  color: #5d4037 !important;
}
.theme-default-light .grey-50 {
  background-color: #EFF1F2 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .grey-50[disabled] {
  background-color: rgba(239, 241, 242, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .grey-50-bg {
  background-color: #EFF1F2 !important;
}
.theme-default-light .grey-50-fg {
  color: #EFF1F2 !important;
}
.theme-default-light .grey-100 {
  background-color: #DEE3E6 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .grey-100[disabled] {
  background-color: rgba(222, 227, 230, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .grey-100-bg {
  background-color: #DEE3E6 !important;
}
.theme-default-light .grey-100-fg {
  color: #DEE3E6 !important;
}
.theme-default-light .grey-200 {
  background-color: #C8D0D5 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .grey-200[disabled] {
  background-color: rgba(200, 208, 213, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .grey-200-bg {
  background-color: #C8D0D5 !important;
}
.theme-default-light .grey-200-fg {
  color: #C8D0D5 !important;
}
.theme-default-light .grey-300 {
  background-color: #B2BDC4 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .grey-300[disabled] {
  background-color: rgba(178, 189, 196, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .grey-300-bg {
  background-color: #B2BDC4 !important;
}
.theme-default-light .grey-300-fg {
  color: #B2BDC4 !important;
}
.theme-default-light .grey-400 {
  background-color: #A2AEB7 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .grey-400[disabled] {
  background-color: rgba(162, 174, 183, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .grey-400-bg {
  background-color: #A2AEB7 !important;
}
.theme-default-light .grey-400-fg {
  color: #A2AEB7 !important;
}
.theme-default-light .grey-500 {
  background-color: #91A0AA !important;
  color: white !important;
}
.theme-default-light .grey-500[disabled] {
  background-color: rgba(145, 160, 170, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .grey-500-bg {
  background-color: #91A0AA !important;
}
.theme-default-light .grey-500-fg {
  color: #91A0AA !important;
}
.theme-default-light .grey-bg {
  background-color: #91A0AA !important;
}
.theme-default-light .grey-fg {
  color: #91A0AA !important;
}
.theme-default-light .grey-600 {
  background-color: #7B8891 !important;
  color: white !important;
}
.theme-default-light .grey-600[disabled] {
  background-color: rgba(123, 136, 145, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .grey-600-bg {
  background-color: #7B8891 !important;
}
.theme-default-light .grey-600-fg {
  color: #7B8891 !important;
}
.theme-default-light .grey-700 {
  background-color: #667077 !important;
  color: white !important;
}
.theme-default-light .grey-700[disabled] {
  background-color: rgba(102, 112, 119, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .grey-700-bg {
  background-color: #667077 !important;
}
.theme-default-light .grey-700-fg {
  color: #667077 !important;
}
.theme-default-light .grey-800 {
  background-color: #495055 !important;
  color: white !important;
}
.theme-default-light .grey-800[disabled] {
  background-color: rgba(73, 80, 85, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .grey-800-bg {
  background-color: #495055 !important;
}
.theme-default-light .grey-800-fg {
  color: #495055 !important;
}
.theme-default-light .grey-900 {
  background-color: #33383B !important;
  color: white !important;
}
.theme-default-light .grey-900[disabled] {
  background-color: rgba(51, 56, 59, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .grey-900-bg {
  background-color: #33383B !important;
}
.theme-default-light .grey-900-fg {
  color: #33383B !important;
}
.theme-default-light .grey-A100 {
  background-color: #FFFFFF !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .grey-A100[disabled] {
  background-color: rgba(255, 255, 255, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .grey-A100-bg {
  background-color: #FFFFFF !important;
}
.theme-default-light .grey-A100-fg {
  color: #FFFFFF !important;
}
.theme-default-light .grey-A200 {
  background-color: #E7EDF1 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .grey-A200[disabled] {
  background-color: rgba(231, 237, 241, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .grey-A200-bg {
  background-color: #E7EDF1 !important;
}
.theme-default-light .grey-A200-fg {
  color: #E7EDF1 !important;
}
.theme-default-light .grey-A400 {
  background-color: #C0CEDA !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .grey-A400[disabled] {
  background-color: rgba(192, 206, 218, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .grey-A400-bg {
  background-color: #C0CEDA !important;
}
.theme-default-light .grey-A400-fg {
  color: #C0CEDA !important;
}
.theme-default-light .grey-A700 {
  background-color: #98AFC2 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .grey-A700[disabled] {
  background-color: rgba(152, 175, 194, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .grey-A700-bg {
  background-color: #98AFC2 !important;
}
.theme-default-light .grey-A700-fg {
  color: #98AFC2 !important;
}
.theme-default-light .blue-grey-50 {
  background-color: #FFFFFF !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .blue-grey-50[disabled] {
  background-color: rgba(255, 255, 255, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .blue-grey-50-bg {
  background-color: #FFFFFF !important;
}
.theme-default-light .blue-grey-50-fg {
  color: #FFFFFF !important;
}
.theme-default-light .blue-grey-100 {
  background-color: #E2E7E9 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .blue-grey-100[disabled] {
  background-color: rgba(226, 231, 233, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .blue-grey-100-bg {
  background-color: #E2E7E9 !important;
}
.theme-default-light .blue-grey-100-fg {
  color: #E2E7E9 !important;
}
.theme-default-light .blue-grey-200 {
  background-color: #C4CFD4 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .blue-grey-200[disabled] {
  background-color: rgba(196, 207, 212, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .blue-grey-200-bg {
  background-color: #C4CFD4 !important;
}
.theme-default-light .blue-grey-200-fg {
  color: #C4CFD4 !important;
}
.theme-default-light .blue-grey-300 {
  background-color: #A7B6BE !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .blue-grey-300[disabled] {
  background-color: rgba(167, 182, 190, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .blue-grey-300-bg {
  background-color: #A7B6BE !important;
}
.theme-default-light .blue-grey-300-fg {
  color: #A7B6BE !important;
}
.theme-default-light .blue-grey-400 {
  background-color: #8A9EA8 !important;
  color: white !important;
}
.theme-default-light .blue-grey-400[disabled] {
  background-color: rgba(138, 158, 168, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .blue-grey-400-bg {
  background-color: #8A9EA8 !important;
}
.theme-default-light .blue-grey-400-fg {
  color: #8A9EA8 !important;
}
.theme-default-light .blue-grey-500 {
  background-color: #7E8E95 !important;
  color: white !important;
}
.theme-default-light .blue-grey-500[disabled] {
  background-color: rgba(126, 142, 149, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .blue-grey-500-bg {
  background-color: #7E8E95 !important;
}
.theme-default-light .blue-grey-500-fg {
  color: #7E8E95 !important;
}
.theme-default-light .blue-grey-bg {
  background-color: #7E8E95 !important;
}
.theme-default-light .blue-grey-fg {
  color: #7E8E95 !important;
}
.theme-default-light .blue-grey-600 {
  background-color: #5A6A72 !important;
  color: white !important;
}
.theme-default-light .blue-grey-600[disabled] {
  background-color: rgba(90, 106, 114, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .blue-grey-600-bg {
  background-color: #5A6A72 !important;
}
.theme-default-light .blue-grey-600-fg {
  color: #5A6A72 !important;
}
.theme-default-light .blue-grey-700 {
  background-color: #435056 !important;
  color: white !important;
}
.theme-default-light .blue-grey-700[disabled] {
  background-color: rgba(67, 80, 86, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .blue-grey-700-bg {
  background-color: #435056 !important;
}
.theme-default-light .blue-grey-700-fg {
  color: #435056 !important;
}
.theme-default-light .blue-grey-800 {
  background-color: #2B363B !important;
  color: white !important;
}
.theme-default-light .blue-grey-800[disabled] {
  background-color: rgba(43, 54, 59, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .blue-grey-800-bg {
  background-color: #2B363B !important;
}
.theme-default-light .blue-grey-800-fg {
  color: #2B363B !important;
}
.theme-default-light .blue-grey-900 {
  background-color: #21282C !important;
  color: white !important;
}
.theme-default-light .blue-grey-900[disabled] {
  background-color: rgba(33, 40, 44, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .blue-grey-900-bg {
  background-color: #21282C !important;
}
.theme-default-light .blue-grey-900-fg {
  color: #21282C !important;
}
.theme-default-light .blue-grey-A100 {
  background-color: #E2E7E9 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .blue-grey-A100[disabled] {
  background-color: rgba(226, 231, 233, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .blue-grey-A100-bg {
  background-color: #E2E7E9 !important;
}
.theme-default-light .blue-grey-A100-fg {
  color: #E2E7E9 !important;
}
.theme-default-light .blue-grey-A200 {
  background-color: #C4CFD4 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .blue-grey-A200[disabled] {
  background-color: rgba(196, 207, 212, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .blue-grey-A200-bg {
  background-color: #C4CFD4 !important;
}
.theme-default-light .blue-grey-A200-fg {
  color: #C4CFD4 !important;
}
.theme-default-light .blue-grey-A400 {
  background-color: #8A9EA8 !important;
  color: white !important;
}
.theme-default-light .blue-grey-A400[disabled] {
  background-color: rgba(138, 158, 168, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .blue-grey-A400-bg {
  background-color: #8A9EA8 !important;
}
.theme-default-light .blue-grey-A400-fg {
  color: #8A9EA8 !important;
}
.theme-default-light .blue-grey-A700 {
  background-color: #435056 !important;
  color: white !important;
}
.theme-default-light .blue-grey-A700[disabled] {
  background-color: rgba(67, 80, 86, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .blue-grey-A700-bg {
  background-color: #435056 !important;
}
.theme-default-light .blue-grey-A700-fg {
  color: #435056 !important;
}
.theme-default-light .light-grey-50 {
  background-color: #FFFFFF !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .light-grey-50[disabled] {
  background-color: rgba(255, 255, 255, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .light-grey-50-bg {
  background-color: #FFFFFF !important;
}
.theme-default-light .light-grey-50-fg {
  color: #FFFFFF !important;
}
.theme-default-light .light-grey-100 {
  background-color: #F8F9FC !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .light-grey-100[disabled] {
  background-color: rgba(248, 249, 252, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .light-grey-100-bg {
  background-color: #F8F9FC !important;
}
.theme-default-light .light-grey-100-fg {
  color: #F8F9FC !important;
}
.theme-default-light .light-grey-200 {
  background-color: #F2F3F8 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .light-grey-200[disabled] {
  background-color: rgba(242, 243, 248, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .light-grey-200-bg {
  background-color: #F2F3F8 !important;
}
.theme-default-light .light-grey-200-fg {
  color: #F2F3F8 !important;
}
.theme-default-light .light-grey-300 {
  background-color: #EAECF6 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .light-grey-300[disabled] {
  background-color: rgba(234, 236, 246, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .light-grey-300-bg {
  background-color: #EAECF6 !important;
}
.theme-default-light .light-grey-300-fg {
  color: #EAECF6 !important;
}
.theme-default-light .light-grey-400 {
  background-color: #E2E5F3 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .light-grey-400[disabled] {
  background-color: rgba(226, 229, 243, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .light-grey-400-bg {
  background-color: #E2E5F3 !important;
}
.theme-default-light .light-grey-400-fg {
  color: #E2E5F3 !important;
}
.theme-default-light .light-grey-500 {
  background-color: #DBDFF0 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .light-grey-500[disabled] {
  background-color: rgba(219, 223, 240, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .light-grey-500-bg {
  background-color: #DBDFF0 !important;
}
.theme-default-light .light-grey-500-fg {
  color: #DBDFF0 !important;
}
.theme-default-light .light-grey-bg {
  background-color: #DBDFF0 !important;
}
.theme-default-light .light-grey-fg {
  color: #DBDFF0 !important;
}
.theme-default-light .light-grey-600 {
  background-color: #D4D8ED !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .light-grey-600[disabled] {
  background-color: rgba(212, 216, 237, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .light-grey-600-bg {
  background-color: #D4D8ED !important;
}
.theme-default-light .light-grey-600-fg {
  color: #D4D8ED !important;
}
.theme-default-light .light-grey-700 {
  background-color: #CDD2EA !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .light-grey-700[disabled] {
  background-color: rgba(205, 210, 234, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .light-grey-700-bg {
  background-color: #CDD2EA !important;
}
.theme-default-light .light-grey-700-fg {
  color: #CDD2EA !important;
}
.theme-default-light .light-grey-800 {
  background-color: #C6CBE7 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .light-grey-800[disabled] {
  background-color: rgba(198, 203, 231, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .light-grey-800-bg {
  background-color: #C6CBE7 !important;
}
.theme-default-light .light-grey-800-fg {
  color: #C6CBE7 !important;
}
.theme-default-light .light-grey-900 {
  background-color: #BFC5E3 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .light-grey-900[disabled] {
  background-color: rgba(191, 197, 227, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .light-grey-900-bg {
  background-color: #BFC5E3 !important;
}
.theme-default-light .light-grey-900-fg {
  color: #BFC5E3 !important;
}
.theme-default-light .light-grey-A100 {
  background-color: #F8F9FC !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .light-grey-A100[disabled] {
  background-color: rgba(248, 249, 252, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .light-grey-A100-bg {
  background-color: #F8F9FC !important;
}
.theme-default-light .light-grey-A100-fg {
  color: #F8F9FC !important;
}
.theme-default-light .light-grey-A200 {
  background-color: #F2F3F8 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .light-grey-A200[disabled] {
  background-color: rgba(242, 243, 248, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .light-grey-A200-bg {
  background-color: #F2F3F8 !important;
}
.theme-default-light .light-grey-A200-fg {
  color: #F2F3F8 !important;
}
.theme-default-light .light-grey-A400 {
  background-color: #E2E5F3 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .light-grey-A400[disabled] {
  background-color: rgba(226, 229, 243, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .light-grey-A400-bg {
  background-color: #E2E5F3 !important;
}
.theme-default-light .light-grey-A400-fg {
  color: #E2E5F3 !important;
}
.theme-default-light .light-grey-A700 {
  background-color: #CDD2EA !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .light-grey-A700[disabled] {
  background-color: rgba(205, 210, 234, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .light-grey-A700-bg {
  background-color: #CDD2EA !important;
}
.theme-default-light .light-grey-A700-fg {
  color: #CDD2EA !important;
}
.theme-default-light .dark-grey-50 {
  background-color: #2E2E2E !important;
  color: white !important;
}
.theme-default-light .dark-grey-50[disabled] {
  background-color: rgba(46, 46, 46, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .dark-grey-50-bg {
  background-color: #2E2E2E !important;
}
.theme-default-light .dark-grey-50-fg {
  color: #2E2E2E !important;
}
.theme-default-light .dark-grey-100 {
  background-color: #292929 !important;
  color: white !important;
}
.theme-default-light .dark-grey-100[disabled] {
  background-color: rgba(41, 41, 41, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .dark-grey-100-bg {
  background-color: #292929 !important;
}
.theme-default-light .dark-grey-100-fg {
  color: #292929 !important;
}
.theme-default-light .dark-grey-200 {
  background-color: #242424 !important;
  color: white !important;
}
.theme-default-light .dark-grey-200[disabled] {
  background-color: rgba(36, 36, 36, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .dark-grey-200-bg {
  background-color: #242424 !important;
}
.theme-default-light .dark-grey-200-fg {
  color: #242424 !important;
}
.theme-default-light .dark-grey-300 {
  background-color: #1F1F1F !important;
  color: white !important;
}
.theme-default-light .dark-grey-300[disabled] {
  background-color: rgba(31, 31, 31, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .dark-grey-300-bg {
  background-color: #1F1F1F !important;
}
.theme-default-light .dark-grey-300-fg {
  color: #1F1F1F !important;
}
.theme-default-light .dark-grey-400 {
  background-color: #1A1A1A !important;
  color: white !important;
}
.theme-default-light .dark-grey-400[disabled] {
  background-color: rgba(26, 26, 26, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .dark-grey-400-bg {
  background-color: #1A1A1A !important;
}
.theme-default-light .dark-grey-400-fg {
  color: #1A1A1A !important;
}
.theme-default-light .dark-grey-500 {
  background-color: #141414 !important;
  color: white !important;
}
.theme-default-light .dark-grey-500[disabled] {
  background-color: rgba(20, 20, 20, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .dark-grey-500-bg {
  background-color: #141414 !important;
}
.theme-default-light .dark-grey-500-fg {
  color: #141414 !important;
}
.theme-default-light .dark-grey-bg {
  background-color: #141414 !important;
}
.theme-default-light .dark-grey-fg {
  color: #141414 !important;
}
.theme-default-light .dark-grey-600 {
  background-color: #0F0F0F !important;
  color: white !important;
}
.theme-default-light .dark-grey-600[disabled] {
  background-color: rgba(15, 15, 15, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .dark-grey-600-bg {
  background-color: #0F0F0F !important;
}
.theme-default-light .dark-grey-600-fg {
  color: #0F0F0F !important;
}
.theme-default-light .dark-grey-700 {
  background-color: #0A0A0A !important;
  color: white !important;
}
.theme-default-light .dark-grey-700[disabled] {
  background-color: rgba(10, 10, 10, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .dark-grey-700-bg {
  background-color: #0A0A0A !important;
}
.theme-default-light .dark-grey-700-fg {
  color: #0A0A0A !important;
}
.theme-default-light .dark-grey-800 {
  background-color: #050505 !important;
  color: white !important;
}
.theme-default-light .dark-grey-800[disabled] {
  background-color: rgba(5, 5, 5, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .dark-grey-800-bg {
  background-color: #050505 !important;
}
.theme-default-light .dark-grey-800-fg {
  color: #050505 !important;
}
.theme-default-light .dark-grey-900 {
  background-color: #000000 !important;
  color: white !important;
}
.theme-default-light .dark-grey-900[disabled] {
  background-color: rgba(0, 0, 0, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .dark-grey-900-bg {
  background-color: #000000 !important;
}
.theme-default-light .dark-grey-900-fg {
  color: #000000 !important;
}
.theme-default-light .dark-grey-A100 {
  background-color: #292929 !important;
  color: white !important;
}
.theme-default-light .dark-grey-A100[disabled] {
  background-color: rgba(41, 41, 41, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .dark-grey-A100-bg {
  background-color: #292929 !important;
}
.theme-default-light .dark-grey-A100-fg {
  color: #292929 !important;
}
.theme-default-light .dark-grey-A200 {
  background-color: #242424 !important;
  color: white !important;
}
.theme-default-light .dark-grey-A200[disabled] {
  background-color: rgba(36, 36, 36, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .dark-grey-A200-bg {
  background-color: #242424 !important;
}
.theme-default-light .dark-grey-A200-fg {
  color: #242424 !important;
}
.theme-default-light .dark-grey-A400 {
  background-color: #1A1A1A !important;
  color: white !important;
}
.theme-default-light .dark-grey-A400[disabled] {
  background-color: rgba(26, 26, 26, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .dark-grey-A400-bg {
  background-color: #1A1A1A !important;
}
.theme-default-light .dark-grey-A400-fg {
  color: #1A1A1A !important;
}
.theme-default-light .dark-grey-A700 {
  background-color: #0A0A0A !important;
  color: white !important;
}
.theme-default-light .dark-grey-A700[disabled] {
  background-color: rgba(10, 10, 10, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .dark-grey-A700-bg {
  background-color: #0A0A0A !important;
}
.theme-default-light .dark-grey-A700-fg {
  color: #0A0A0A !important;
}
.theme-default-light .primary-50 {
  background-color: #FFFFFF !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .primary-50[disabled] {
  background-color: rgba(255, 255, 255, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .primary-50-bg {
  background-color: #FFFFFF !important;
}
.theme-default-light .primary-50-fg {
  color: #FFFFFF !important;
}
.theme-default-light .primary-100 {
  background-color: #E2E7E9 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .primary-100[disabled] {
  background-color: rgba(226, 231, 233, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .primary-100-bg {
  background-color: #E2E7E9 !important;
}
.theme-default-light .primary-100-fg {
  color: #E2E7E9 !important;
}
.theme-default-light .primary-200 {
  background-color: #C4CFD4 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .primary-200[disabled] {
  background-color: rgba(196, 207, 212, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .primary-200-bg {
  background-color: #C4CFD4 !important;
}
.theme-default-light .primary-200-fg {
  color: #C4CFD4 !important;
}
.theme-default-light .primary-300 {
  background-color: #A7B6BE !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .primary-300[disabled] {
  background-color: rgba(167, 182, 190, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .primary-300-bg {
  background-color: #A7B6BE !important;
}
.theme-default-light .primary-300-fg {
  color: #A7B6BE !important;
}
.theme-default-light .primary-400 {
  background-color: #8A9EA8 !important;
  color: white !important;
}
.theme-default-light .primary-400[disabled] {
  background-color: rgba(138, 158, 168, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .primary-400-bg {
  background-color: #8A9EA8 !important;
}
.theme-default-light .primary-400-fg {
  color: #8A9EA8 !important;
}
.theme-default-light .primary-500 {
  background-color: #7E8E95 !important;
  color: white !important;
}
.theme-default-light .primary-500[disabled] {
  background-color: rgba(126, 142, 149, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .primary-500-bg {
  background-color: #7E8E95 !important;
}
.theme-default-light .primary-500-fg {
  color: #7E8E95 !important;
}
.theme-default-light .primary-bg {
  background-color: #7E8E95 !important;
}
.theme-default-light .primary-fg {
  color: #7E8E95 !important;
}
.theme-default-light .primary-600 {
  background-color: #5A6A72 !important;
  color: white !important;
}
.theme-default-light .primary-600[disabled] {
  background-color: rgba(90, 106, 114, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .primary-600-bg {
  background-color: #5A6A72 !important;
}
.theme-default-light .primary-600-fg {
  color: #5A6A72 !important;
}
.theme-default-light .primary-700 {
  background-color: #435056 !important;
  color: white !important;
}
.theme-default-light .primary-700[disabled] {
  background-color: rgba(67, 80, 86, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .primary-700-bg {
  background-color: #435056 !important;
}
.theme-default-light .primary-700-fg {
  color: #435056 !important;
}
.theme-default-light .primary-800 {
  background-color: #2B363B !important;
  color: white !important;
}
.theme-default-light .primary-800[disabled] {
  background-color: rgba(43, 54, 59, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .primary-800-bg {
  background-color: #2B363B !important;
}
.theme-default-light .primary-800-fg {
  color: #2B363B !important;
}
.theme-default-light .primary-900 {
  background-color: #21282C !important;
  color: white !important;
}
.theme-default-light .primary-900[disabled] {
  background-color: rgba(33, 40, 44, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .primary-900-bg {
  background-color: #21282C !important;
}
.theme-default-light .primary-900-fg {
  color: #21282C !important;
}
.theme-default-light .primary-A100 {
  background-color: #E2E7E9 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .primary-A100[disabled] {
  background-color: rgba(226, 231, 233, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .primary-A100-bg {
  background-color: #E2E7E9 !important;
}
.theme-default-light .primary-A100-fg {
  color: #E2E7E9 !important;
}
.theme-default-light .primary-A200 {
  background-color: #C4CFD4 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .primary-A200[disabled] {
  background-color: rgba(196, 207, 212, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .primary-A200-bg {
  background-color: #C4CFD4 !important;
}
.theme-default-light .primary-A200-fg {
  color: #C4CFD4 !important;
}
.theme-default-light .primary-A400 {
  background-color: #8A9EA8 !important;
  color: white !important;
}
.theme-default-light .primary-A400[disabled] {
  background-color: rgba(138, 158, 168, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .primary-A400-bg {
  background-color: #8A9EA8 !important;
}
.theme-default-light .primary-A400-fg {
  color: #8A9EA8 !important;
}
.theme-default-light .primary-A700 {
  background-color: #435056 !important;
  color: white !important;
}
.theme-default-light .primary-A700[disabled] {
  background-color: rgba(67, 80, 86, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .primary-A700-bg {
  background-color: #435056 !important;
}
.theme-default-light .primary-A700-fg {
  color: #435056 !important;
}
.theme-default-light .accent-50 {
  background-color: #e4ebfb !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .accent-50[disabled] {
  background-color: rgba(228, 235, 251, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .accent-50-bg {
  background-color: #e4ebfb !important;
}
.theme-default-light .accent-50-fg {
  color: #e4ebfb !important;
}
.theme-default-light .accent-100 {
  background-color: #bccef4 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .accent-100[disabled] {
  background-color: rgba(188, 206, 244, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .accent-100-bg {
  background-color: #bccef4 !important;
}
.theme-default-light .accent-100-fg {
  color: #bccef4 !important;
}
.theme-default-light .accent-200 {
  background-color: #8faded !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .accent-200[disabled] {
  background-color: rgba(143, 173, 237, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .accent-200-bg {
  background-color: #8faded !important;
}
.theme-default-light .accent-200-fg {
  color: #8faded !important;
}
.theme-default-light .accent-300 {
  background-color: #628ce5 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .accent-300[disabled] {
  background-color: rgba(98, 140, 229, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .accent-300-bg {
  background-color: #628ce5 !important;
}
.theme-default-light .accent-300-fg {
  color: #628ce5 !important;
}
.theme-default-light .accent-400 {
  background-color: #4074e0 !important;
  color: white !important;
}
.theme-default-light .accent-400[disabled] {
  background-color: rgba(64, 116, 224, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .accent-400-bg {
  background-color: #4074e0 !important;
}
.theme-default-light .accent-400-fg {
  color: #4074e0 !important;
}
.theme-default-light .accent-500 {
  background-color: #1e5bda !important;
  color: white !important;
}
.theme-default-light .accent-500[disabled] {
  background-color: rgba(30, 91, 218, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .accent-500-bg {
  background-color: #1e5bda !important;
}
.theme-default-light .accent-500-fg {
  color: #1e5bda !important;
}
.theme-default-light .accent-bg {
  background-color: #1e5bda !important;
}
.theme-default-light .accent-fg {
  color: #1e5bda !important;
}
.theme-default-light .accent-600 {
  background-color: #1a53d6 !important;
  color: white !important;
}
.theme-default-light .accent-600[disabled] {
  background-color: rgba(26, 83, 214, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .accent-600-bg {
  background-color: #1a53d6 !important;
}
.theme-default-light .accent-600-fg {
  color: #1a53d6 !important;
}
.theme-default-light .accent-700 {
  background-color: #1649d0 !important;
  color: white !important;
}
.theme-default-light .accent-700[disabled] {
  background-color: rgba(22, 73, 208, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .accent-700-bg {
  background-color: #1649d0 !important;
}
.theme-default-light .accent-700-fg {
  color: #1649d0 !important;
}
.theme-default-light .accent-800 {
  background-color: #1240cb !important;
  color: white !important;
}
.theme-default-light .accent-800[disabled] {
  background-color: rgba(18, 64, 203, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .accent-800-bg {
  background-color: #1240cb !important;
}
.theme-default-light .accent-800-fg {
  color: #1240cb !important;
}
.theme-default-light .accent-900 {
  background-color: #0a2fc2 !important;
  color: white !important;
}
.theme-default-light .accent-900[disabled] {
  background-color: rgba(10, 47, 194, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .accent-900-bg {
  background-color: #0a2fc2 !important;
}
.theme-default-light .accent-900-fg {
  color: #0a2fc2 !important;
}
.theme-default-light .accent-A100 {
  background-color: #82b1ff !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .accent-A100[disabled] {
  background-color: rgba(130, 177, 255, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .accent-A100-bg {
  background-color: #82b1ff !important;
}
.theme-default-light .accent-A100-fg {
  color: #82b1ff !important;
}
.theme-default-light .accent-A200 {
  background-color: #448aff !important;
  color: white !important;
}
.theme-default-light .accent-A200[disabled] {
  background-color: rgba(68, 138, 255, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .accent-A200-bg {
  background-color: #448aff !important;
}
.theme-default-light .accent-A200-fg {
  color: #448aff !important;
}
.theme-default-light .accent-A400 {
  background-color: #2979ff !important;
  color: white !important;
}
.theme-default-light .accent-A400[disabled] {
  background-color: rgba(41, 121, 255, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .accent-A400-bg {
  background-color: #2979ff !important;
}
.theme-default-light .accent-A400-fg {
  color: #2979ff !important;
}
.theme-default-light .accent-A700 {
  background-color: #2962ff !important;
  color: white !important;
}
.theme-default-light .accent-A700[disabled] {
  background-color: rgba(41, 98, 255, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .accent-A700-bg {
  background-color: #2962ff !important;
}
.theme-default-light .accent-A700-fg {
  color: #2962ff !important;
}
.theme-default-light .warn-50 {
  background-color: #fce7e7 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .warn-50[disabled] {
  background-color: rgba(252, 231, 231, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .warn-50-bg {
  background-color: #fce7e7 !important;
}
.theme-default-light .warn-50-fg {
  color: #fce7e7 !important;
}
.theme-default-light .warn-100 {
  background-color: #f7c4c4 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .warn-100[disabled] {
  background-color: rgba(247, 196, 196, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .warn-100-bg {
  background-color: #f7c4c4 !important;
}
.theme-default-light .warn-100-fg {
  color: #f7c4c4 !important;
}
.theme-default-light .warn-200 {
  background-color: #f29d9d !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .warn-200[disabled] {
  background-color: rgba(242, 157, 157, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .warn-200-bg {
  background-color: #f29d9d !important;
}
.theme-default-light .warn-200-fg {
  color: #f29d9d !important;
}
.theme-default-light .warn-300 {
  background-color: #ed7575 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .warn-300[disabled] {
  background-color: rgba(237, 117, 117, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .warn-300-bg {
  background-color: #ed7575 !important;
}
.theme-default-light .warn-300-fg {
  color: #ed7575 !important;
}
.theme-default-light .warn-400 {
  background-color: #e95858 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .warn-400[disabled] {
  background-color: rgba(233, 88, 88, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .warn-400-bg {
  background-color: #e95858 !important;
}
.theme-default-light .warn-400-fg {
  color: #e95858 !important;
}
.theme-default-light .warn-500 {
  background-color: #e53a3a !important;
  color: white !important;
}
.theme-default-light .warn-500[disabled] {
  background-color: rgba(229, 58, 58, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .warn-500-bg {
  background-color: #e53a3a !important;
}
.theme-default-light .warn-500-fg {
  color: #e53a3a !important;
}
.theme-default-light .warn-bg {
  background-color: #e53a3a !important;
}
.theme-default-light .warn-fg {
  color: #e53a3a !important;
}
.theme-default-light .warn-600 {
  background-color: #e23434 !important;
  color: white !important;
}
.theme-default-light .warn-600[disabled] {
  background-color: rgba(226, 52, 52, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .warn-600-bg {
  background-color: #e23434 !important;
}
.theme-default-light .warn-600-fg {
  color: #e23434 !important;
}
.theme-default-light .warn-700 {
  background-color: #de2c2c !important;
  color: white !important;
}
.theme-default-light .warn-700[disabled] {
  background-color: rgba(222, 44, 44, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .warn-700-bg {
  background-color: #de2c2c !important;
}
.theme-default-light .warn-700-fg {
  color: #de2c2c !important;
}
.theme-default-light .warn-800 {
  background-color: #da2525 !important;
  color: white !important;
}
.theme-default-light .warn-800[disabled] {
  background-color: rgba(218, 37, 37, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .warn-800-bg {
  background-color: #da2525 !important;
}
.theme-default-light .warn-800-fg {
  color: #da2525 !important;
}
.theme-default-light .warn-900 {
  background-color: #d31818 !important;
  color: white !important;
}
.theme-default-light .warn-900[disabled] {
  background-color: rgba(211, 24, 24, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .warn-900-bg {
  background-color: #d31818 !important;
}
.theme-default-light .warn-900-fg {
  color: #d31818 !important;
}
.theme-default-light .warn-A100 {
  background-color: #ff8a80 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .warn-A100[disabled] {
  background-color: rgba(255, 138, 128, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .warn-A100-bg {
  background-color: #ff8a80 !important;
}
.theme-default-light .warn-A100-fg {
  color: #ff8a80 !important;
}
.theme-default-light .warn-A200 {
  background-color: #ff5252 !important;
  color: white !important;
}
.theme-default-light .warn-A200[disabled] {
  background-color: rgba(255, 82, 82, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .warn-A200-bg {
  background-color: #ff5252 !important;
}
.theme-default-light .warn-A200-fg {
  color: #ff5252 !important;
}
.theme-default-light .warn-A400 {
  background-color: #ff1744 !important;
  color: white !important;
}
.theme-default-light .warn-A400[disabled] {
  background-color: rgba(255, 23, 68, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .warn-A400-bg {
  background-color: #ff1744 !important;
}
.theme-default-light .warn-A400-fg {
  color: #ff1744 !important;
}
.theme-default-light .warn-A700 {
  background-color: #d50000 !important;
  color: white !important;
}
.theme-default-light .warn-A700[disabled] {
  background-color: rgba(213, 0, 0, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .warn-A700-bg {
  background-color: #d50000 !important;
}
.theme-default-light .warn-A700-fg {
  color: #d50000 !important;
}
.theme-default-light .red-50.secondary-text,
.theme-default-light .red-50 .secondary-text, .theme-default-light .red-100.secondary-text,
.theme-default-light .red-100 .secondary-text, .theme-default-light .red-200.secondary-text,
.theme-default-light .red-200 .secondary-text, .theme-default-light .red-300.secondary-text,
.theme-default-light .red-300 .secondary-text, .theme-default-light .red-400.secondary-text,
.theme-default-light .red-400 .secondary-text, .theme-default-light .red-A100.secondary-text,
.theme-default-light .red-A100 .secondary-text, .theme-default-light .pink-50.secondary-text,
.theme-default-light .pink-50 .secondary-text, .theme-default-light .pink-100.secondary-text,
.theme-default-light .pink-100 .secondary-text, .theme-default-light .pink-200.secondary-text,
.theme-default-light .pink-200 .secondary-text, .theme-default-light .pink-300.secondary-text,
.theme-default-light .pink-300 .secondary-text, .theme-default-light .pink-400.secondary-text,
.theme-default-light .pink-400 .secondary-text, .theme-default-light .pink-A100.secondary-text,
.theme-default-light .pink-A100 .secondary-text, .theme-default-light .purple-50.secondary-text,
.theme-default-light .purple-50 .secondary-text, .theme-default-light .purple-100.secondary-text,
.theme-default-light .purple-100 .secondary-text, .theme-default-light .purple-200.secondary-text,
.theme-default-light .purple-200 .secondary-text, .theme-default-light .purple-A100.secondary-text,
.theme-default-light .purple-A100 .secondary-text, .theme-default-light .deep-purple-50.secondary-text,
.theme-default-light .deep-purple-50 .secondary-text, .theme-default-light .deep-purple-100.secondary-text,
.theme-default-light .deep-purple-100 .secondary-text, .theme-default-light .deep-purple-200.secondary-text,
.theme-default-light .deep-purple-200 .secondary-text, .theme-default-light .deep-purple-A100.secondary-text,
.theme-default-light .deep-purple-A100 .secondary-text, .theme-default-light .indigo-50.secondary-text,
.theme-default-light .indigo-50 .secondary-text, .theme-default-light .indigo-100.secondary-text,
.theme-default-light .indigo-100 .secondary-text, .theme-default-light .indigo-200.secondary-text,
.theme-default-light .indigo-200 .secondary-text, .theme-default-light .indigo-A100.secondary-text,
.theme-default-light .indigo-A100 .secondary-text, .theme-default-light .blue-50.secondary-text,
.theme-default-light .blue-50 .secondary-text, .theme-default-light .blue-100.secondary-text,
.theme-default-light .blue-100 .secondary-text, .theme-default-light .blue-200.secondary-text,
.theme-default-light .blue-200 .secondary-text, .theme-default-light .blue-300.secondary-text,
.theme-default-light .blue-300 .secondary-text, .theme-default-light .blue-A100.secondary-text,
.theme-default-light .blue-A100 .secondary-text, .theme-default-light .light-blue-50.secondary-text,
.theme-default-light .light-blue-50 .secondary-text, .theme-default-light .light-blue-100.secondary-text,
.theme-default-light .light-blue-100 .secondary-text, .theme-default-light .light-blue-200.secondary-text,
.theme-default-light .light-blue-200 .secondary-text, .theme-default-light .light-blue-300.secondary-text,
.theme-default-light .light-blue-300 .secondary-text, .theme-default-light .light-blue-400.secondary-text,
.theme-default-light .light-blue-400 .secondary-text, .theme-default-light .light-blue-A100.secondary-text,
.theme-default-light .light-blue-A100 .secondary-text, .theme-default-light .light-blue-A200.secondary-text,
.theme-default-light .light-blue-A200 .secondary-text, .theme-default-light .light-blue-A400.secondary-text,
.theme-default-light .light-blue-A400 .secondary-text, .theme-default-light .cyan-50.secondary-text,
.theme-default-light .cyan-50 .secondary-text, .theme-default-light .cyan-100.secondary-text,
.theme-default-light .cyan-100 .secondary-text, .theme-default-light .cyan-200.secondary-text,
.theme-default-light .cyan-200 .secondary-text, .theme-default-light .cyan-300.secondary-text,
.theme-default-light .cyan-300 .secondary-text, .theme-default-light .cyan-400.secondary-text,
.theme-default-light .cyan-400 .secondary-text, .theme-default-light .cyan-A100.secondary-text,
.theme-default-light .cyan-A100 .secondary-text, .theme-default-light .cyan-A200.secondary-text,
.theme-default-light .cyan-A200 .secondary-text, .theme-default-light .cyan-A400.secondary-text,
.theme-default-light .cyan-A400 .secondary-text, .theme-default-light .cyan-A700.secondary-text,
.theme-default-light .cyan-A700 .secondary-text, .theme-default-light .teal-50.secondary-text,
.theme-default-light .teal-50 .secondary-text, .theme-default-light .teal-100.secondary-text,
.theme-default-light .teal-100 .secondary-text, .theme-default-light .teal-200.secondary-text,
.theme-default-light .teal-200 .secondary-text, .theme-default-light .teal-300.secondary-text,
.theme-default-light .teal-300 .secondary-text, .theme-default-light .teal-400.secondary-text,
.theme-default-light .teal-400 .secondary-text, .theme-default-light .teal-A100.secondary-text,
.theme-default-light .teal-A100 .secondary-text, .theme-default-light .teal-A200.secondary-text,
.theme-default-light .teal-A200 .secondary-text, .theme-default-light .teal-A400.secondary-text,
.theme-default-light .teal-A400 .secondary-text, .theme-default-light .teal-A700.secondary-text,
.theme-default-light .teal-A700 .secondary-text, .theme-default-light .green-50.secondary-text,
.theme-default-light .green-50 .secondary-text, .theme-default-light .green-100.secondary-text,
.theme-default-light .green-100 .secondary-text, .theme-default-light .green-200.secondary-text,
.theme-default-light .green-200 .secondary-text, .theme-default-light .green-300.secondary-text,
.theme-default-light .green-300 .secondary-text, .theme-default-light .green-400.secondary-text,
.theme-default-light .green-400 .secondary-text, .theme-default-light .green-A100.secondary-text,
.theme-default-light .green-A100 .secondary-text, .theme-default-light .green-A200.secondary-text,
.theme-default-light .green-A200 .secondary-text, .theme-default-light .green-A400.secondary-text,
.theme-default-light .green-A400 .secondary-text, .theme-default-light .green-A700.secondary-text,
.theme-default-light .green-A700 .secondary-text, .theme-default-light .light-green-50.secondary-text,
.theme-default-light .light-green-50 .secondary-text, .theme-default-light .light-green-100.secondary-text,
.theme-default-light .light-green-100 .secondary-text, .theme-default-light .light-green-200.secondary-text,
.theme-default-light .light-green-200 .secondary-text, .theme-default-light .light-green-300.secondary-text,
.theme-default-light .light-green-300 .secondary-text, .theme-default-light .light-green-400.secondary-text,
.theme-default-light .light-green-400 .secondary-text, .theme-default-light .light-green-500.secondary-text,
.theme-default-light .light-green-500 .secondary-text, .theme-default-light .light-green-A100.secondary-text,
.theme-default-light .light-green-A100 .secondary-text, .theme-default-light .light-green-A200.secondary-text,
.theme-default-light .light-green-A200 .secondary-text, .theme-default-light .light-green-A400.secondary-text,
.theme-default-light .light-green-A400 .secondary-text, .theme-default-light .light-green-A700.secondary-text,
.theme-default-light .light-green-A700 .secondary-text, .theme-default-light .lime-50.secondary-text,
.theme-default-light .lime-50 .secondary-text, .theme-default-light .lime-100.secondary-text,
.theme-default-light .lime-100 .secondary-text, .theme-default-light .lime-200.secondary-text,
.theme-default-light .lime-200 .secondary-text, .theme-default-light .lime-300.secondary-text,
.theme-default-light .lime-300 .secondary-text, .theme-default-light .lime-400.secondary-text,
.theme-default-light .lime-400 .secondary-text, .theme-default-light .lime-A100.secondary-text,
.theme-default-light .lime-A100 .secondary-text, .theme-default-light .lime-A200.secondary-text,
.theme-default-light .lime-A200 .secondary-text, .theme-default-light .lime-A400.secondary-text,
.theme-default-light .lime-A400 .secondary-text, .theme-default-light .lime-A700.secondary-text,
.theme-default-light .lime-A700 .secondary-text, .theme-default-light .yellow-50.secondary-text,
.theme-default-light .yellow-50 .secondary-text, .theme-default-light .yellow-100.secondary-text,
.theme-default-light .yellow-100 .secondary-text, .theme-default-light .yellow-200.secondary-text,
.theme-default-light .yellow-200 .secondary-text, .theme-default-light .yellow-300.secondary-text,
.theme-default-light .yellow-300 .secondary-text, .theme-default-light .yellow-400.secondary-text,
.theme-default-light .yellow-400 .secondary-text, .theme-default-light .yellow-500.secondary-text,
.theme-default-light .yellow-500 .secondary-text, .theme-default-light .yellow-600.secondary-text,
.theme-default-light .yellow-600 .secondary-text, .theme-default-light .yellow-700.secondary-text,
.theme-default-light .yellow-700 .secondary-text, .theme-default-light .yellow-800.secondary-text,
.theme-default-light .yellow-800 .secondary-text, .theme-default-light .yellow-900.secondary-text,
.theme-default-light .yellow-900 .secondary-text, .theme-default-light .yellow-A100.secondary-text,
.theme-default-light .yellow-A100 .secondary-text, .theme-default-light .yellow-A200.secondary-text,
.theme-default-light .yellow-A200 .secondary-text, .theme-default-light .yellow-A400.secondary-text,
.theme-default-light .yellow-A400 .secondary-text, .theme-default-light .yellow-A700.secondary-text,
.theme-default-light .yellow-A700 .secondary-text, .theme-default-light .amber-50.secondary-text,
.theme-default-light .amber-50 .secondary-text, .theme-default-light .amber-100.secondary-text,
.theme-default-light .amber-100 .secondary-text, .theme-default-light .amber-200.secondary-text,
.theme-default-light .amber-200 .secondary-text, .theme-default-light .amber-300.secondary-text,
.theme-default-light .amber-300 .secondary-text, .theme-default-light .amber-400.secondary-text,
.theme-default-light .amber-400 .secondary-text, .theme-default-light .amber-500.secondary-text,
.theme-default-light .amber-500 .secondary-text, .theme-default-light .amber-600.secondary-text,
.theme-default-light .amber-600 .secondary-text, .theme-default-light .amber-700.secondary-text,
.theme-default-light .amber-700 .secondary-text, .theme-default-light .amber-800.secondary-text,
.theme-default-light .amber-800 .secondary-text, .theme-default-light .amber-900.secondary-text,
.theme-default-light .amber-900 .secondary-text, .theme-default-light .amber-A100.secondary-text,
.theme-default-light .amber-A100 .secondary-text, .theme-default-light .amber-A200.secondary-text,
.theme-default-light .amber-A200 .secondary-text, .theme-default-light .amber-A400.secondary-text,
.theme-default-light .amber-A400 .secondary-text, .theme-default-light .amber-A700.secondary-text,
.theme-default-light .amber-A700 .secondary-text, .theme-default-light .orange-50.secondary-text,
.theme-default-light .orange-50 .secondary-text, .theme-default-light .orange-100.secondary-text,
.theme-default-light .orange-100 .secondary-text, .theme-default-light .orange-200.secondary-text,
.theme-default-light .orange-200 .secondary-text, .theme-default-light .orange-300.secondary-text,
.theme-default-light .orange-300 .secondary-text, .theme-default-light .orange-400.secondary-text,
.theme-default-light .orange-400 .secondary-text, .theme-default-light .orange-500.secondary-text,
.theme-default-light .orange-500 .secondary-text, .theme-default-light .orange-600.secondary-text,
.theme-default-light .orange-600 .secondary-text, .theme-default-light .orange-700.secondary-text,
.theme-default-light .orange-700 .secondary-text, .theme-default-light .orange-A100.secondary-text,
.theme-default-light .orange-A100 .secondary-text, .theme-default-light .orange-A200.secondary-text,
.theme-default-light .orange-A200 .secondary-text, .theme-default-light .orange-A400.secondary-text,
.theme-default-light .orange-A400 .secondary-text, .theme-default-light .orange-A700.secondary-text,
.theme-default-light .orange-A700 .secondary-text, .theme-default-light .deep-orange-50.secondary-text,
.theme-default-light .deep-orange-50 .secondary-text, .theme-default-light .deep-orange-100.secondary-text,
.theme-default-light .deep-orange-100 .secondary-text, .theme-default-light .deep-orange-200.secondary-text,
.theme-default-light .deep-orange-200 .secondary-text, .theme-default-light .deep-orange-300.secondary-text,
.theme-default-light .deep-orange-300 .secondary-text, .theme-default-light .deep-orange-400.secondary-text,
.theme-default-light .deep-orange-400 .secondary-text, .theme-default-light .deep-orange-A100.secondary-text,
.theme-default-light .deep-orange-A100 .secondary-text, .theme-default-light .deep-orange-A200.secondary-text,
.theme-default-light .deep-orange-A200 .secondary-text, .theme-default-light .brown-50.secondary-text,
.theme-default-light .brown-50 .secondary-text, .theme-default-light .brown-100.secondary-text,
.theme-default-light .brown-100 .secondary-text, .theme-default-light .brown-200.secondary-text,
.theme-default-light .brown-200 .secondary-text, .theme-default-light .brown-A100.secondary-text,
.theme-default-light .brown-A100 .secondary-text, .theme-default-light .brown-A200.secondary-text,
.theme-default-light .brown-A200 .secondary-text, .theme-default-light .grey-50.secondary-text,
.theme-default-light .grey-50 .secondary-text, .theme-default-light .grey-100.secondary-text,
.theme-default-light .grey-100 .secondary-text, .theme-default-light .grey-200.secondary-text,
.theme-default-light .grey-200 .secondary-text, .theme-default-light .grey-300.secondary-text,
.theme-default-light .grey-300 .secondary-text, .theme-default-light .grey-400.secondary-text,
.theme-default-light .grey-400 .secondary-text, .theme-default-light .grey-A100.secondary-text,
.theme-default-light .grey-A100 .secondary-text, .theme-default-light .grey-A200.secondary-text,
.theme-default-light .grey-A200 .secondary-text, .theme-default-light .grey-A400.secondary-text,
.theme-default-light .grey-A400 .secondary-text, .theme-default-light .grey-A700.secondary-text,
.theme-default-light .grey-A700 .secondary-text, .theme-default-light .blue-grey-50.secondary-text,
.theme-default-light .blue-grey-50 .secondary-text, .theme-default-light .blue-grey-100.secondary-text,
.theme-default-light .blue-grey-100 .secondary-text, .theme-default-light .blue-grey-200.secondary-text,
.theme-default-light .blue-grey-200 .secondary-text, .theme-default-light .blue-grey-300.secondary-text,
.theme-default-light .blue-grey-300 .secondary-text, .theme-default-light .blue-grey-A100.secondary-text,
.theme-default-light .blue-grey-A100 .secondary-text, .theme-default-light .blue-grey-A200.secondary-text,
.theme-default-light .blue-grey-A200 .secondary-text, .theme-default-light .light-grey-50.secondary-text,
.theme-default-light .light-grey-50 .secondary-text, .theme-default-light .light-grey-100.secondary-text,
.theme-default-light .light-grey-100 .secondary-text, .theme-default-light .light-grey-200.secondary-text,
.theme-default-light .light-grey-200 .secondary-text, .theme-default-light .light-grey-300.secondary-text,
.theme-default-light .light-grey-300 .secondary-text, .theme-default-light .light-grey-400.secondary-text,
.theme-default-light .light-grey-400 .secondary-text, .theme-default-light .light-grey-500.secondary-text,
.theme-default-light .light-grey-500 .secondary-text, .theme-default-light .light-grey-600.secondary-text,
.theme-default-light .light-grey-600 .secondary-text, .theme-default-light .light-grey-700.secondary-text,
.theme-default-light .light-grey-700 .secondary-text, .theme-default-light .light-grey-800.secondary-text,
.theme-default-light .light-grey-800 .secondary-text, .theme-default-light .light-grey-900.secondary-text,
.theme-default-light .light-grey-900 .secondary-text, .theme-default-light .light-grey-A100.secondary-text,
.theme-default-light .light-grey-A100 .secondary-text, .theme-default-light .light-grey-A200.secondary-text,
.theme-default-light .light-grey-A200 .secondary-text, .theme-default-light .light-grey-A400.secondary-text,
.theme-default-light .light-grey-A400 .secondary-text, .theme-default-light .light-grey-A700.secondary-text,
.theme-default-light .light-grey-A700 .secondary-text, .theme-default-light .primary-50.secondary-text,
.theme-default-light .primary-50 .secondary-text, .theme-default-light .primary-100.secondary-text,
.theme-default-light .primary-100 .secondary-text, .theme-default-light .primary-200.secondary-text,
.theme-default-light .primary-200 .secondary-text, .theme-default-light .primary-300.secondary-text,
.theme-default-light .primary-300 .secondary-text, .theme-default-light .primary-A100.secondary-text,
.theme-default-light .primary-A100 .secondary-text, .theme-default-light .primary-A200.secondary-text,
.theme-default-light .primary-A200 .secondary-text, .theme-default-light .accent-50.secondary-text,
.theme-default-light .accent-50 .secondary-text, .theme-default-light .accent-100.secondary-text,
.theme-default-light .accent-100 .secondary-text, .theme-default-light .accent-200.secondary-text,
.theme-default-light .accent-200 .secondary-text, .theme-default-light .accent-300.secondary-text,
.theme-default-light .accent-300 .secondary-text, .theme-default-light .accent-A100.secondary-text,
.theme-default-light .accent-A100 .secondary-text, .theme-default-light .warn-50.secondary-text,
.theme-default-light .warn-50 .secondary-text, .theme-default-light .warn-100.secondary-text,
.theme-default-light .warn-100 .secondary-text, .theme-default-light .warn-200.secondary-text,
.theme-default-light .warn-200 .secondary-text, .theme-default-light .warn-300.secondary-text,
.theme-default-light .warn-300 .secondary-text, .theme-default-light .warn-400.secondary-text,
.theme-default-light .warn-400 .secondary-text, .theme-default-light .warn-A100.secondary-text,
.theme-default-light .warn-A100 .secondary-text {
  color: rgba(0, 0, 0, 0.54) !important;
}
.theme-default-light .red-50.hint-text,
.theme-default-light .red-50 .hint-text, .theme-default-light .red-50.disabled-text,
.theme-default-light .red-50 .disabled-text, .theme-default-light .red-100.hint-text,
.theme-default-light .red-100 .hint-text, .theme-default-light .red-100.disabled-text,
.theme-default-light .red-100 .disabled-text, .theme-default-light .red-200.hint-text,
.theme-default-light .red-200 .hint-text, .theme-default-light .red-200.disabled-text,
.theme-default-light .red-200 .disabled-text, .theme-default-light .red-300.hint-text,
.theme-default-light .red-300 .hint-text, .theme-default-light .red-300.disabled-text,
.theme-default-light .red-300 .disabled-text, .theme-default-light .red-400.hint-text,
.theme-default-light .red-400 .hint-text, .theme-default-light .red-400.disabled-text,
.theme-default-light .red-400 .disabled-text, .theme-default-light .red-A100.hint-text,
.theme-default-light .red-A100 .hint-text, .theme-default-light .red-A100.disabled-text,
.theme-default-light .red-A100 .disabled-text, .theme-default-light .pink-50.hint-text,
.theme-default-light .pink-50 .hint-text, .theme-default-light .pink-50.disabled-text,
.theme-default-light .pink-50 .disabled-text, .theme-default-light .pink-100.hint-text,
.theme-default-light .pink-100 .hint-text, .theme-default-light .pink-100.disabled-text,
.theme-default-light .pink-100 .disabled-text, .theme-default-light .pink-200.hint-text,
.theme-default-light .pink-200 .hint-text, .theme-default-light .pink-200.disabled-text,
.theme-default-light .pink-200 .disabled-text, .theme-default-light .pink-300.hint-text,
.theme-default-light .pink-300 .hint-text, .theme-default-light .pink-300.disabled-text,
.theme-default-light .pink-300 .disabled-text, .theme-default-light .pink-400.hint-text,
.theme-default-light .pink-400 .hint-text, .theme-default-light .pink-400.disabled-text,
.theme-default-light .pink-400 .disabled-text, .theme-default-light .pink-A100.hint-text,
.theme-default-light .pink-A100 .hint-text, .theme-default-light .pink-A100.disabled-text,
.theme-default-light .pink-A100 .disabled-text, .theme-default-light .purple-50.hint-text,
.theme-default-light .purple-50 .hint-text, .theme-default-light .purple-50.disabled-text,
.theme-default-light .purple-50 .disabled-text, .theme-default-light .purple-100.hint-text,
.theme-default-light .purple-100 .hint-text, .theme-default-light .purple-100.disabled-text,
.theme-default-light .purple-100 .disabled-text, .theme-default-light .purple-200.hint-text,
.theme-default-light .purple-200 .hint-text, .theme-default-light .purple-200.disabled-text,
.theme-default-light .purple-200 .disabled-text, .theme-default-light .purple-A100.hint-text,
.theme-default-light .purple-A100 .hint-text, .theme-default-light .purple-A100.disabled-text,
.theme-default-light .purple-A100 .disabled-text, .theme-default-light .deep-purple-50.hint-text,
.theme-default-light .deep-purple-50 .hint-text, .theme-default-light .deep-purple-50.disabled-text,
.theme-default-light .deep-purple-50 .disabled-text, .theme-default-light .deep-purple-100.hint-text,
.theme-default-light .deep-purple-100 .hint-text, .theme-default-light .deep-purple-100.disabled-text,
.theme-default-light .deep-purple-100 .disabled-text, .theme-default-light .deep-purple-200.hint-text,
.theme-default-light .deep-purple-200 .hint-text, .theme-default-light .deep-purple-200.disabled-text,
.theme-default-light .deep-purple-200 .disabled-text, .theme-default-light .deep-purple-A100.hint-text,
.theme-default-light .deep-purple-A100 .hint-text, .theme-default-light .deep-purple-A100.disabled-text,
.theme-default-light .deep-purple-A100 .disabled-text, .theme-default-light .indigo-50.hint-text,
.theme-default-light .indigo-50 .hint-text, .theme-default-light .indigo-50.disabled-text,
.theme-default-light .indigo-50 .disabled-text, .theme-default-light .indigo-100.hint-text,
.theme-default-light .indigo-100 .hint-text, .theme-default-light .indigo-100.disabled-text,
.theme-default-light .indigo-100 .disabled-text, .theme-default-light .indigo-200.hint-text,
.theme-default-light .indigo-200 .hint-text, .theme-default-light .indigo-200.disabled-text,
.theme-default-light .indigo-200 .disabled-text, .theme-default-light .indigo-A100.hint-text,
.theme-default-light .indigo-A100 .hint-text, .theme-default-light .indigo-A100.disabled-text,
.theme-default-light .indigo-A100 .disabled-text, .theme-default-light .blue-50.hint-text,
.theme-default-light .blue-50 .hint-text, .theme-default-light .blue-50.disabled-text,
.theme-default-light .blue-50 .disabled-text, .theme-default-light .blue-100.hint-text,
.theme-default-light .blue-100 .hint-text, .theme-default-light .blue-100.disabled-text,
.theme-default-light .blue-100 .disabled-text, .theme-default-light .blue-200.hint-text,
.theme-default-light .blue-200 .hint-text, .theme-default-light .blue-200.disabled-text,
.theme-default-light .blue-200 .disabled-text, .theme-default-light .blue-300.hint-text,
.theme-default-light .blue-300 .hint-text, .theme-default-light .blue-300.disabled-text,
.theme-default-light .blue-300 .disabled-text, .theme-default-light .blue-A100.hint-text,
.theme-default-light .blue-A100 .hint-text, .theme-default-light .blue-A100.disabled-text,
.theme-default-light .blue-A100 .disabled-text, .theme-default-light .light-blue-50.hint-text,
.theme-default-light .light-blue-50 .hint-text, .theme-default-light .light-blue-50.disabled-text,
.theme-default-light .light-blue-50 .disabled-text, .theme-default-light .light-blue-100.hint-text,
.theme-default-light .light-blue-100 .hint-text, .theme-default-light .light-blue-100.disabled-text,
.theme-default-light .light-blue-100 .disabled-text, .theme-default-light .light-blue-200.hint-text,
.theme-default-light .light-blue-200 .hint-text, .theme-default-light .light-blue-200.disabled-text,
.theme-default-light .light-blue-200 .disabled-text, .theme-default-light .light-blue-300.hint-text,
.theme-default-light .light-blue-300 .hint-text, .theme-default-light .light-blue-300.disabled-text,
.theme-default-light .light-blue-300 .disabled-text, .theme-default-light .light-blue-400.hint-text,
.theme-default-light .light-blue-400 .hint-text, .theme-default-light .light-blue-400.disabled-text,
.theme-default-light .light-blue-400 .disabled-text, .theme-default-light .light-blue-A100.hint-text,
.theme-default-light .light-blue-A100 .hint-text, .theme-default-light .light-blue-A100.disabled-text,
.theme-default-light .light-blue-A100 .disabled-text, .theme-default-light .light-blue-A200.hint-text,
.theme-default-light .light-blue-A200 .hint-text, .theme-default-light .light-blue-A200.disabled-text,
.theme-default-light .light-blue-A200 .disabled-text, .theme-default-light .light-blue-A400.hint-text,
.theme-default-light .light-blue-A400 .hint-text, .theme-default-light .light-blue-A400.disabled-text,
.theme-default-light .light-blue-A400 .disabled-text, .theme-default-light .cyan-50.hint-text,
.theme-default-light .cyan-50 .hint-text, .theme-default-light .cyan-50.disabled-text,
.theme-default-light .cyan-50 .disabled-text, .theme-default-light .cyan-100.hint-text,
.theme-default-light .cyan-100 .hint-text, .theme-default-light .cyan-100.disabled-text,
.theme-default-light .cyan-100 .disabled-text, .theme-default-light .cyan-200.hint-text,
.theme-default-light .cyan-200 .hint-text, .theme-default-light .cyan-200.disabled-text,
.theme-default-light .cyan-200 .disabled-text, .theme-default-light .cyan-300.hint-text,
.theme-default-light .cyan-300 .hint-text, .theme-default-light .cyan-300.disabled-text,
.theme-default-light .cyan-300 .disabled-text, .theme-default-light .cyan-400.hint-text,
.theme-default-light .cyan-400 .hint-text, .theme-default-light .cyan-400.disabled-text,
.theme-default-light .cyan-400 .disabled-text, .theme-default-light .cyan-A100.hint-text,
.theme-default-light .cyan-A100 .hint-text, .theme-default-light .cyan-A100.disabled-text,
.theme-default-light .cyan-A100 .disabled-text, .theme-default-light .cyan-A200.hint-text,
.theme-default-light .cyan-A200 .hint-text, .theme-default-light .cyan-A200.disabled-text,
.theme-default-light .cyan-A200 .disabled-text, .theme-default-light .cyan-A400.hint-text,
.theme-default-light .cyan-A400 .hint-text, .theme-default-light .cyan-A400.disabled-text,
.theme-default-light .cyan-A400 .disabled-text, .theme-default-light .cyan-A700.hint-text,
.theme-default-light .cyan-A700 .hint-text, .theme-default-light .cyan-A700.disabled-text,
.theme-default-light .cyan-A700 .disabled-text, .theme-default-light .teal-50.hint-text,
.theme-default-light .teal-50 .hint-text, .theme-default-light .teal-50.disabled-text,
.theme-default-light .teal-50 .disabled-text, .theme-default-light .teal-100.hint-text,
.theme-default-light .teal-100 .hint-text, .theme-default-light .teal-100.disabled-text,
.theme-default-light .teal-100 .disabled-text, .theme-default-light .teal-200.hint-text,
.theme-default-light .teal-200 .hint-text, .theme-default-light .teal-200.disabled-text,
.theme-default-light .teal-200 .disabled-text, .theme-default-light .teal-300.hint-text,
.theme-default-light .teal-300 .hint-text, .theme-default-light .teal-300.disabled-text,
.theme-default-light .teal-300 .disabled-text, .theme-default-light .teal-400.hint-text,
.theme-default-light .teal-400 .hint-text, .theme-default-light .teal-400.disabled-text,
.theme-default-light .teal-400 .disabled-text, .theme-default-light .teal-A100.hint-text,
.theme-default-light .teal-A100 .hint-text, .theme-default-light .teal-A100.disabled-text,
.theme-default-light .teal-A100 .disabled-text, .theme-default-light .teal-A200.hint-text,
.theme-default-light .teal-A200 .hint-text, .theme-default-light .teal-A200.disabled-text,
.theme-default-light .teal-A200 .disabled-text, .theme-default-light .teal-A400.hint-text,
.theme-default-light .teal-A400 .hint-text, .theme-default-light .teal-A400.disabled-text,
.theme-default-light .teal-A400 .disabled-text, .theme-default-light .teal-A700.hint-text,
.theme-default-light .teal-A700 .hint-text, .theme-default-light .teal-A700.disabled-text,
.theme-default-light .teal-A700 .disabled-text, .theme-default-light .green-50.hint-text,
.theme-default-light .green-50 .hint-text, .theme-default-light .green-50.disabled-text,
.theme-default-light .green-50 .disabled-text, .theme-default-light .green-100.hint-text,
.theme-default-light .green-100 .hint-text, .theme-default-light .green-100.disabled-text,
.theme-default-light .green-100 .disabled-text, .theme-default-light .green-200.hint-text,
.theme-default-light .green-200 .hint-text, .theme-default-light .green-200.disabled-text,
.theme-default-light .green-200 .disabled-text, .theme-default-light .green-300.hint-text,
.theme-default-light .green-300 .hint-text, .theme-default-light .green-300.disabled-text,
.theme-default-light .green-300 .disabled-text, .theme-default-light .green-400.hint-text,
.theme-default-light .green-400 .hint-text, .theme-default-light .green-400.disabled-text,
.theme-default-light .green-400 .disabled-text, .theme-default-light .green-A100.hint-text,
.theme-default-light .green-A100 .hint-text, .theme-default-light .green-A100.disabled-text,
.theme-default-light .green-A100 .disabled-text, .theme-default-light .green-A200.hint-text,
.theme-default-light .green-A200 .hint-text, .theme-default-light .green-A200.disabled-text,
.theme-default-light .green-A200 .disabled-text, .theme-default-light .green-A400.hint-text,
.theme-default-light .green-A400 .hint-text, .theme-default-light .green-A400.disabled-text,
.theme-default-light .green-A400 .disabled-text, .theme-default-light .green-A700.hint-text,
.theme-default-light .green-A700 .hint-text, .theme-default-light .green-A700.disabled-text,
.theme-default-light .green-A700 .disabled-text, .theme-default-light .light-green-50.hint-text,
.theme-default-light .light-green-50 .hint-text, .theme-default-light .light-green-50.disabled-text,
.theme-default-light .light-green-50 .disabled-text, .theme-default-light .light-green-100.hint-text,
.theme-default-light .light-green-100 .hint-text, .theme-default-light .light-green-100.disabled-text,
.theme-default-light .light-green-100 .disabled-text, .theme-default-light .light-green-200.hint-text,
.theme-default-light .light-green-200 .hint-text, .theme-default-light .light-green-200.disabled-text,
.theme-default-light .light-green-200 .disabled-text, .theme-default-light .light-green-300.hint-text,
.theme-default-light .light-green-300 .hint-text, .theme-default-light .light-green-300.disabled-text,
.theme-default-light .light-green-300 .disabled-text, .theme-default-light .light-green-400.hint-text,
.theme-default-light .light-green-400 .hint-text, .theme-default-light .light-green-400.disabled-text,
.theme-default-light .light-green-400 .disabled-text, .theme-default-light .light-green-500.hint-text,
.theme-default-light .light-green-500 .hint-text, .theme-default-light .light-green-500.disabled-text,
.theme-default-light .light-green-500 .disabled-text, .theme-default-light .light-green-A100.hint-text,
.theme-default-light .light-green-A100 .hint-text, .theme-default-light .light-green-A100.disabled-text,
.theme-default-light .light-green-A100 .disabled-text, .theme-default-light .light-green-A200.hint-text,
.theme-default-light .light-green-A200 .hint-text, .theme-default-light .light-green-A200.disabled-text,
.theme-default-light .light-green-A200 .disabled-text, .theme-default-light .light-green-A400.hint-text,
.theme-default-light .light-green-A400 .hint-text, .theme-default-light .light-green-A400.disabled-text,
.theme-default-light .light-green-A400 .disabled-text, .theme-default-light .light-green-A700.hint-text,
.theme-default-light .light-green-A700 .hint-text, .theme-default-light .light-green-A700.disabled-text,
.theme-default-light .light-green-A700 .disabled-text, .theme-default-light .lime-50.hint-text,
.theme-default-light .lime-50 .hint-text, .theme-default-light .lime-50.disabled-text,
.theme-default-light .lime-50 .disabled-text, .theme-default-light .lime-100.hint-text,
.theme-default-light .lime-100 .hint-text, .theme-default-light .lime-100.disabled-text,
.theme-default-light .lime-100 .disabled-text, .theme-default-light .lime-200.hint-text,
.theme-default-light .lime-200 .hint-text, .theme-default-light .lime-200.disabled-text,
.theme-default-light .lime-200 .disabled-text, .theme-default-light .lime-300.hint-text,
.theme-default-light .lime-300 .hint-text, .theme-default-light .lime-300.disabled-text,
.theme-default-light .lime-300 .disabled-text, .theme-default-light .lime-400.hint-text,
.theme-default-light .lime-400 .hint-text, .theme-default-light .lime-400.disabled-text,
.theme-default-light .lime-400 .disabled-text, .theme-default-light .lime-A100.hint-text,
.theme-default-light .lime-A100 .hint-text, .theme-default-light .lime-A100.disabled-text,
.theme-default-light .lime-A100 .disabled-text, .theme-default-light .lime-A200.hint-text,
.theme-default-light .lime-A200 .hint-text, .theme-default-light .lime-A200.disabled-text,
.theme-default-light .lime-A200 .disabled-text, .theme-default-light .lime-A400.hint-text,
.theme-default-light .lime-A400 .hint-text, .theme-default-light .lime-A400.disabled-text,
.theme-default-light .lime-A400 .disabled-text, .theme-default-light .lime-A700.hint-text,
.theme-default-light .lime-A700 .hint-text, .theme-default-light .lime-A700.disabled-text,
.theme-default-light .lime-A700 .disabled-text, .theme-default-light .yellow-50.hint-text,
.theme-default-light .yellow-50 .hint-text, .theme-default-light .yellow-50.disabled-text,
.theme-default-light .yellow-50 .disabled-text, .theme-default-light .yellow-100.hint-text,
.theme-default-light .yellow-100 .hint-text, .theme-default-light .yellow-100.disabled-text,
.theme-default-light .yellow-100 .disabled-text, .theme-default-light .yellow-200.hint-text,
.theme-default-light .yellow-200 .hint-text, .theme-default-light .yellow-200.disabled-text,
.theme-default-light .yellow-200 .disabled-text, .theme-default-light .yellow-300.hint-text,
.theme-default-light .yellow-300 .hint-text, .theme-default-light .yellow-300.disabled-text,
.theme-default-light .yellow-300 .disabled-text, .theme-default-light .yellow-400.hint-text,
.theme-default-light .yellow-400 .hint-text, .theme-default-light .yellow-400.disabled-text,
.theme-default-light .yellow-400 .disabled-text, .theme-default-light .yellow-500.hint-text,
.theme-default-light .yellow-500 .hint-text, .theme-default-light .yellow-500.disabled-text,
.theme-default-light .yellow-500 .disabled-text, .theme-default-light .yellow-600.hint-text,
.theme-default-light .yellow-600 .hint-text, .theme-default-light .yellow-600.disabled-text,
.theme-default-light .yellow-600 .disabled-text, .theme-default-light .yellow-700.hint-text,
.theme-default-light .yellow-700 .hint-text, .theme-default-light .yellow-700.disabled-text,
.theme-default-light .yellow-700 .disabled-text, .theme-default-light .yellow-800.hint-text,
.theme-default-light .yellow-800 .hint-text, .theme-default-light .yellow-800.disabled-text,
.theme-default-light .yellow-800 .disabled-text, .theme-default-light .yellow-900.hint-text,
.theme-default-light .yellow-900 .hint-text, .theme-default-light .yellow-900.disabled-text,
.theme-default-light .yellow-900 .disabled-text, .theme-default-light .yellow-A100.hint-text,
.theme-default-light .yellow-A100 .hint-text, .theme-default-light .yellow-A100.disabled-text,
.theme-default-light .yellow-A100 .disabled-text, .theme-default-light .yellow-A200.hint-text,
.theme-default-light .yellow-A200 .hint-text, .theme-default-light .yellow-A200.disabled-text,
.theme-default-light .yellow-A200 .disabled-text, .theme-default-light .yellow-A400.hint-text,
.theme-default-light .yellow-A400 .hint-text, .theme-default-light .yellow-A400.disabled-text,
.theme-default-light .yellow-A400 .disabled-text, .theme-default-light .yellow-A700.hint-text,
.theme-default-light .yellow-A700 .hint-text, .theme-default-light .yellow-A700.disabled-text,
.theme-default-light .yellow-A700 .disabled-text, .theme-default-light .amber-50.hint-text,
.theme-default-light .amber-50 .hint-text, .theme-default-light .amber-50.disabled-text,
.theme-default-light .amber-50 .disabled-text, .theme-default-light .amber-100.hint-text,
.theme-default-light .amber-100 .hint-text, .theme-default-light .amber-100.disabled-text,
.theme-default-light .amber-100 .disabled-text, .theme-default-light .amber-200.hint-text,
.theme-default-light .amber-200 .hint-text, .theme-default-light .amber-200.disabled-text,
.theme-default-light .amber-200 .disabled-text, .theme-default-light .amber-300.hint-text,
.theme-default-light .amber-300 .hint-text, .theme-default-light .amber-300.disabled-text,
.theme-default-light .amber-300 .disabled-text, .theme-default-light .amber-400.hint-text,
.theme-default-light .amber-400 .hint-text, .theme-default-light .amber-400.disabled-text,
.theme-default-light .amber-400 .disabled-text, .theme-default-light .amber-500.hint-text,
.theme-default-light .amber-500 .hint-text, .theme-default-light .amber-500.disabled-text,
.theme-default-light .amber-500 .disabled-text, .theme-default-light .amber-600.hint-text,
.theme-default-light .amber-600 .hint-text, .theme-default-light .amber-600.disabled-text,
.theme-default-light .amber-600 .disabled-text, .theme-default-light .amber-700.hint-text,
.theme-default-light .amber-700 .hint-text, .theme-default-light .amber-700.disabled-text,
.theme-default-light .amber-700 .disabled-text, .theme-default-light .amber-800.hint-text,
.theme-default-light .amber-800 .hint-text, .theme-default-light .amber-800.disabled-text,
.theme-default-light .amber-800 .disabled-text, .theme-default-light .amber-900.hint-text,
.theme-default-light .amber-900 .hint-text, .theme-default-light .amber-900.disabled-text,
.theme-default-light .amber-900 .disabled-text, .theme-default-light .amber-A100.hint-text,
.theme-default-light .amber-A100 .hint-text, .theme-default-light .amber-A100.disabled-text,
.theme-default-light .amber-A100 .disabled-text, .theme-default-light .amber-A200.hint-text,
.theme-default-light .amber-A200 .hint-text, .theme-default-light .amber-A200.disabled-text,
.theme-default-light .amber-A200 .disabled-text, .theme-default-light .amber-A400.hint-text,
.theme-default-light .amber-A400 .hint-text, .theme-default-light .amber-A400.disabled-text,
.theme-default-light .amber-A400 .disabled-text, .theme-default-light .amber-A700.hint-text,
.theme-default-light .amber-A700 .hint-text, .theme-default-light .amber-A700.disabled-text,
.theme-default-light .amber-A700 .disabled-text, .theme-default-light .orange-50.hint-text,
.theme-default-light .orange-50 .hint-text, .theme-default-light .orange-50.disabled-text,
.theme-default-light .orange-50 .disabled-text, .theme-default-light .orange-100.hint-text,
.theme-default-light .orange-100 .hint-text, .theme-default-light .orange-100.disabled-text,
.theme-default-light .orange-100 .disabled-text, .theme-default-light .orange-200.hint-text,
.theme-default-light .orange-200 .hint-text, .theme-default-light .orange-200.disabled-text,
.theme-default-light .orange-200 .disabled-text, .theme-default-light .orange-300.hint-text,
.theme-default-light .orange-300 .hint-text, .theme-default-light .orange-300.disabled-text,
.theme-default-light .orange-300 .disabled-text, .theme-default-light .orange-400.hint-text,
.theme-default-light .orange-400 .hint-text, .theme-default-light .orange-400.disabled-text,
.theme-default-light .orange-400 .disabled-text, .theme-default-light .orange-500.hint-text,
.theme-default-light .orange-500 .hint-text, .theme-default-light .orange-500.disabled-text,
.theme-default-light .orange-500 .disabled-text, .theme-default-light .orange-600.hint-text,
.theme-default-light .orange-600 .hint-text, .theme-default-light .orange-600.disabled-text,
.theme-default-light .orange-600 .disabled-text, .theme-default-light .orange-700.hint-text,
.theme-default-light .orange-700 .hint-text, .theme-default-light .orange-700.disabled-text,
.theme-default-light .orange-700 .disabled-text, .theme-default-light .orange-A100.hint-text,
.theme-default-light .orange-A100 .hint-text, .theme-default-light .orange-A100.disabled-text,
.theme-default-light .orange-A100 .disabled-text, .theme-default-light .orange-A200.hint-text,
.theme-default-light .orange-A200 .hint-text, .theme-default-light .orange-A200.disabled-text,
.theme-default-light .orange-A200 .disabled-text, .theme-default-light .orange-A400.hint-text,
.theme-default-light .orange-A400 .hint-text, .theme-default-light .orange-A400.disabled-text,
.theme-default-light .orange-A400 .disabled-text, .theme-default-light .orange-A700.hint-text,
.theme-default-light .orange-A700 .hint-text, .theme-default-light .orange-A700.disabled-text,
.theme-default-light .orange-A700 .disabled-text, .theme-default-light .deep-orange-50.hint-text,
.theme-default-light .deep-orange-50 .hint-text, .theme-default-light .deep-orange-50.disabled-text,
.theme-default-light .deep-orange-50 .disabled-text, .theme-default-light .deep-orange-100.hint-text,
.theme-default-light .deep-orange-100 .hint-text, .theme-default-light .deep-orange-100.disabled-text,
.theme-default-light .deep-orange-100 .disabled-text, .theme-default-light .deep-orange-200.hint-text,
.theme-default-light .deep-orange-200 .hint-text, .theme-default-light .deep-orange-200.disabled-text,
.theme-default-light .deep-orange-200 .disabled-text, .theme-default-light .deep-orange-300.hint-text,
.theme-default-light .deep-orange-300 .hint-text, .theme-default-light .deep-orange-300.disabled-text,
.theme-default-light .deep-orange-300 .disabled-text, .theme-default-light .deep-orange-400.hint-text,
.theme-default-light .deep-orange-400 .hint-text, .theme-default-light .deep-orange-400.disabled-text,
.theme-default-light .deep-orange-400 .disabled-text, .theme-default-light .deep-orange-A100.hint-text,
.theme-default-light .deep-orange-A100 .hint-text, .theme-default-light .deep-orange-A100.disabled-text,
.theme-default-light .deep-orange-A100 .disabled-text, .theme-default-light .deep-orange-A200.hint-text,
.theme-default-light .deep-orange-A200 .hint-text, .theme-default-light .deep-orange-A200.disabled-text,
.theme-default-light .deep-orange-A200 .disabled-text, .theme-default-light .brown-50.hint-text,
.theme-default-light .brown-50 .hint-text, .theme-default-light .brown-50.disabled-text,
.theme-default-light .brown-50 .disabled-text, .theme-default-light .brown-100.hint-text,
.theme-default-light .brown-100 .hint-text, .theme-default-light .brown-100.disabled-text,
.theme-default-light .brown-100 .disabled-text, .theme-default-light .brown-200.hint-text,
.theme-default-light .brown-200 .hint-text, .theme-default-light .brown-200.disabled-text,
.theme-default-light .brown-200 .disabled-text, .theme-default-light .brown-A100.hint-text,
.theme-default-light .brown-A100 .hint-text, .theme-default-light .brown-A100.disabled-text,
.theme-default-light .brown-A100 .disabled-text, .theme-default-light .brown-A200.hint-text,
.theme-default-light .brown-A200 .hint-text, .theme-default-light .brown-A200.disabled-text,
.theme-default-light .brown-A200 .disabled-text, .theme-default-light .grey-50.hint-text,
.theme-default-light .grey-50 .hint-text, .theme-default-light .grey-50.disabled-text,
.theme-default-light .grey-50 .disabled-text, .theme-default-light .grey-100.hint-text,
.theme-default-light .grey-100 .hint-text, .theme-default-light .grey-100.disabled-text,
.theme-default-light .grey-100 .disabled-text, .theme-default-light .grey-200.hint-text,
.theme-default-light .grey-200 .hint-text, .theme-default-light .grey-200.disabled-text,
.theme-default-light .grey-200 .disabled-text, .theme-default-light .grey-300.hint-text,
.theme-default-light .grey-300 .hint-text, .theme-default-light .grey-300.disabled-text,
.theme-default-light .grey-300 .disabled-text, .theme-default-light .grey-400.hint-text,
.theme-default-light .grey-400 .hint-text, .theme-default-light .grey-400.disabled-text,
.theme-default-light .grey-400 .disabled-text, .theme-default-light .grey-A100.hint-text,
.theme-default-light .grey-A100 .hint-text, .theme-default-light .grey-A100.disabled-text,
.theme-default-light .grey-A100 .disabled-text, .theme-default-light .grey-A200.hint-text,
.theme-default-light .grey-A200 .hint-text, .theme-default-light .grey-A200.disabled-text,
.theme-default-light .grey-A200 .disabled-text, .theme-default-light .grey-A400.hint-text,
.theme-default-light .grey-A400 .hint-text, .theme-default-light .grey-A400.disabled-text,
.theme-default-light .grey-A400 .disabled-text, .theme-default-light .grey-A700.hint-text,
.theme-default-light .grey-A700 .hint-text, .theme-default-light .grey-A700.disabled-text,
.theme-default-light .grey-A700 .disabled-text, .theme-default-light .blue-grey-50.hint-text,
.theme-default-light .blue-grey-50 .hint-text, .theme-default-light .blue-grey-50.disabled-text,
.theme-default-light .blue-grey-50 .disabled-text, .theme-default-light .blue-grey-100.hint-text,
.theme-default-light .blue-grey-100 .hint-text, .theme-default-light .blue-grey-100.disabled-text,
.theme-default-light .blue-grey-100 .disabled-text, .theme-default-light .blue-grey-200.hint-text,
.theme-default-light .blue-grey-200 .hint-text, .theme-default-light .blue-grey-200.disabled-text,
.theme-default-light .blue-grey-200 .disabled-text, .theme-default-light .blue-grey-300.hint-text,
.theme-default-light .blue-grey-300 .hint-text, .theme-default-light .blue-grey-300.disabled-text,
.theme-default-light .blue-grey-300 .disabled-text, .theme-default-light .blue-grey-A100.hint-text,
.theme-default-light .blue-grey-A100 .hint-text, .theme-default-light .blue-grey-A100.disabled-text,
.theme-default-light .blue-grey-A100 .disabled-text, .theme-default-light .blue-grey-A200.hint-text,
.theme-default-light .blue-grey-A200 .hint-text, .theme-default-light .blue-grey-A200.disabled-text,
.theme-default-light .blue-grey-A200 .disabled-text, .theme-default-light .light-grey-50.hint-text,
.theme-default-light .light-grey-50 .hint-text, .theme-default-light .light-grey-50.disabled-text,
.theme-default-light .light-grey-50 .disabled-text, .theme-default-light .light-grey-100.hint-text,
.theme-default-light .light-grey-100 .hint-text, .theme-default-light .light-grey-100.disabled-text,
.theme-default-light .light-grey-100 .disabled-text, .theme-default-light .light-grey-200.hint-text,
.theme-default-light .light-grey-200 .hint-text, .theme-default-light .light-grey-200.disabled-text,
.theme-default-light .light-grey-200 .disabled-text, .theme-default-light .light-grey-300.hint-text,
.theme-default-light .light-grey-300 .hint-text, .theme-default-light .light-grey-300.disabled-text,
.theme-default-light .light-grey-300 .disabled-text, .theme-default-light .light-grey-400.hint-text,
.theme-default-light .light-grey-400 .hint-text, .theme-default-light .light-grey-400.disabled-text,
.theme-default-light .light-grey-400 .disabled-text, .theme-default-light .light-grey-500.hint-text,
.theme-default-light .light-grey-500 .hint-text, .theme-default-light .light-grey-500.disabled-text,
.theme-default-light .light-grey-500 .disabled-text, .theme-default-light .light-grey-600.hint-text,
.theme-default-light .light-grey-600 .hint-text, .theme-default-light .light-grey-600.disabled-text,
.theme-default-light .light-grey-600 .disabled-text, .theme-default-light .light-grey-700.hint-text,
.theme-default-light .light-grey-700 .hint-text, .theme-default-light .light-grey-700.disabled-text,
.theme-default-light .light-grey-700 .disabled-text, .theme-default-light .light-grey-800.hint-text,
.theme-default-light .light-grey-800 .hint-text, .theme-default-light .light-grey-800.disabled-text,
.theme-default-light .light-grey-800 .disabled-text, .theme-default-light .light-grey-900.hint-text,
.theme-default-light .light-grey-900 .hint-text, .theme-default-light .light-grey-900.disabled-text,
.theme-default-light .light-grey-900 .disabled-text, .theme-default-light .light-grey-A100.hint-text,
.theme-default-light .light-grey-A100 .hint-text, .theme-default-light .light-grey-A100.disabled-text,
.theme-default-light .light-grey-A100 .disabled-text, .theme-default-light .light-grey-A200.hint-text,
.theme-default-light .light-grey-A200 .hint-text, .theme-default-light .light-grey-A200.disabled-text,
.theme-default-light .light-grey-A200 .disabled-text, .theme-default-light .light-grey-A400.hint-text,
.theme-default-light .light-grey-A400 .hint-text, .theme-default-light .light-grey-A400.disabled-text,
.theme-default-light .light-grey-A400 .disabled-text, .theme-default-light .light-grey-A700.hint-text,
.theme-default-light .light-grey-A700 .hint-text, .theme-default-light .light-grey-A700.disabled-text,
.theme-default-light .light-grey-A700 .disabled-text, .theme-default-light .primary-50.hint-text,
.theme-default-light .primary-50 .hint-text, .theme-default-light .primary-50.disabled-text,
.theme-default-light .primary-50 .disabled-text, .theme-default-light .primary-100.hint-text,
.theme-default-light .primary-100 .hint-text, .theme-default-light .primary-100.disabled-text,
.theme-default-light .primary-100 .disabled-text, .theme-default-light .primary-200.hint-text,
.theme-default-light .primary-200 .hint-text, .theme-default-light .primary-200.disabled-text,
.theme-default-light .primary-200 .disabled-text, .theme-default-light .primary-300.hint-text,
.theme-default-light .primary-300 .hint-text, .theme-default-light .primary-300.disabled-text,
.theme-default-light .primary-300 .disabled-text, .theme-default-light .primary-A100.hint-text,
.theme-default-light .primary-A100 .hint-text, .theme-default-light .primary-A100.disabled-text,
.theme-default-light .primary-A100 .disabled-text, .theme-default-light .primary-A200.hint-text,
.theme-default-light .primary-A200 .hint-text, .theme-default-light .primary-A200.disabled-text,
.theme-default-light .primary-A200 .disabled-text, .theme-default-light .accent-50.hint-text,
.theme-default-light .accent-50 .hint-text, .theme-default-light .accent-50.disabled-text,
.theme-default-light .accent-50 .disabled-text, .theme-default-light .accent-100.hint-text,
.theme-default-light .accent-100 .hint-text, .theme-default-light .accent-100.disabled-text,
.theme-default-light .accent-100 .disabled-text, .theme-default-light .accent-200.hint-text,
.theme-default-light .accent-200 .hint-text, .theme-default-light .accent-200.disabled-text,
.theme-default-light .accent-200 .disabled-text, .theme-default-light .accent-300.hint-text,
.theme-default-light .accent-300 .hint-text, .theme-default-light .accent-300.disabled-text,
.theme-default-light .accent-300 .disabled-text, .theme-default-light .accent-A100.hint-text,
.theme-default-light .accent-A100 .hint-text, .theme-default-light .accent-A100.disabled-text,
.theme-default-light .accent-A100 .disabled-text, .theme-default-light .warn-50.hint-text,
.theme-default-light .warn-50 .hint-text, .theme-default-light .warn-50.disabled-text,
.theme-default-light .warn-50 .disabled-text, .theme-default-light .warn-100.hint-text,
.theme-default-light .warn-100 .hint-text, .theme-default-light .warn-100.disabled-text,
.theme-default-light .warn-100 .disabled-text, .theme-default-light .warn-200.hint-text,
.theme-default-light .warn-200 .hint-text, .theme-default-light .warn-200.disabled-text,
.theme-default-light .warn-200 .disabled-text, .theme-default-light .warn-300.hint-text,
.theme-default-light .warn-300 .hint-text, .theme-default-light .warn-300.disabled-text,
.theme-default-light .warn-300 .disabled-text, .theme-default-light .warn-400.hint-text,
.theme-default-light .warn-400 .hint-text, .theme-default-light .warn-400.disabled-text,
.theme-default-light .warn-400 .disabled-text, .theme-default-light .warn-A100.hint-text,
.theme-default-light .warn-A100 .hint-text, .theme-default-light .warn-A100.disabled-text,
.theme-default-light .warn-A100 .disabled-text {
  color: rgba(0, 0, 0, 0.38) !important;
}
.theme-default-light .red-50.divider,
.theme-default-light .red-50 .divider, .theme-default-light .red-100.divider,
.theme-default-light .red-100 .divider, .theme-default-light .red-200.divider,
.theme-default-light .red-200 .divider, .theme-default-light .red-300.divider,
.theme-default-light .red-300 .divider, .theme-default-light .red-400.divider,
.theme-default-light .red-400 .divider, .theme-default-light .red-A100.divider,
.theme-default-light .red-A100 .divider, .theme-default-light .pink-50.divider,
.theme-default-light .pink-50 .divider, .theme-default-light .pink-100.divider,
.theme-default-light .pink-100 .divider, .theme-default-light .pink-200.divider,
.theme-default-light .pink-200 .divider, .theme-default-light .pink-300.divider,
.theme-default-light .pink-300 .divider, .theme-default-light .pink-400.divider,
.theme-default-light .pink-400 .divider, .theme-default-light .pink-A100.divider,
.theme-default-light .pink-A100 .divider, .theme-default-light .purple-50.divider,
.theme-default-light .purple-50 .divider, .theme-default-light .purple-100.divider,
.theme-default-light .purple-100 .divider, .theme-default-light .purple-200.divider,
.theme-default-light .purple-200 .divider, .theme-default-light .purple-A100.divider,
.theme-default-light .purple-A100 .divider, .theme-default-light .deep-purple-50.divider,
.theme-default-light .deep-purple-50 .divider, .theme-default-light .deep-purple-100.divider,
.theme-default-light .deep-purple-100 .divider, .theme-default-light .deep-purple-200.divider,
.theme-default-light .deep-purple-200 .divider, .theme-default-light .deep-purple-A100.divider,
.theme-default-light .deep-purple-A100 .divider, .theme-default-light .indigo-50.divider,
.theme-default-light .indigo-50 .divider, .theme-default-light .indigo-100.divider,
.theme-default-light .indigo-100 .divider, .theme-default-light .indigo-200.divider,
.theme-default-light .indigo-200 .divider, .theme-default-light .indigo-A100.divider,
.theme-default-light .indigo-A100 .divider, .theme-default-light .blue-50.divider,
.theme-default-light .blue-50 .divider, .theme-default-light .blue-100.divider,
.theme-default-light .blue-100 .divider, .theme-default-light .blue-200.divider,
.theme-default-light .blue-200 .divider, .theme-default-light .blue-300.divider,
.theme-default-light .blue-300 .divider, .theme-default-light .blue-A100.divider,
.theme-default-light .blue-A100 .divider, .theme-default-light .light-blue-50.divider,
.theme-default-light .light-blue-50 .divider, .theme-default-light .light-blue-100.divider,
.theme-default-light .light-blue-100 .divider, .theme-default-light .light-blue-200.divider,
.theme-default-light .light-blue-200 .divider, .theme-default-light .light-blue-300.divider,
.theme-default-light .light-blue-300 .divider, .theme-default-light .light-blue-400.divider,
.theme-default-light .light-blue-400 .divider, .theme-default-light .light-blue-A100.divider,
.theme-default-light .light-blue-A100 .divider, .theme-default-light .light-blue-A200.divider,
.theme-default-light .light-blue-A200 .divider, .theme-default-light .light-blue-A400.divider,
.theme-default-light .light-blue-A400 .divider, .theme-default-light .cyan-50.divider,
.theme-default-light .cyan-50 .divider, .theme-default-light .cyan-100.divider,
.theme-default-light .cyan-100 .divider, .theme-default-light .cyan-200.divider,
.theme-default-light .cyan-200 .divider, .theme-default-light .cyan-300.divider,
.theme-default-light .cyan-300 .divider, .theme-default-light .cyan-400.divider,
.theme-default-light .cyan-400 .divider, .theme-default-light .cyan-A100.divider,
.theme-default-light .cyan-A100 .divider, .theme-default-light .cyan-A200.divider,
.theme-default-light .cyan-A200 .divider, .theme-default-light .cyan-A400.divider,
.theme-default-light .cyan-A400 .divider, .theme-default-light .cyan-A700.divider,
.theme-default-light .cyan-A700 .divider, .theme-default-light .teal-50.divider,
.theme-default-light .teal-50 .divider, .theme-default-light .teal-100.divider,
.theme-default-light .teal-100 .divider, .theme-default-light .teal-200.divider,
.theme-default-light .teal-200 .divider, .theme-default-light .teal-300.divider,
.theme-default-light .teal-300 .divider, .theme-default-light .teal-400.divider,
.theme-default-light .teal-400 .divider, .theme-default-light .teal-A100.divider,
.theme-default-light .teal-A100 .divider, .theme-default-light .teal-A200.divider,
.theme-default-light .teal-A200 .divider, .theme-default-light .teal-A400.divider,
.theme-default-light .teal-A400 .divider, .theme-default-light .teal-A700.divider,
.theme-default-light .teal-A700 .divider, .theme-default-light .green-50.divider,
.theme-default-light .green-50 .divider, .theme-default-light .green-100.divider,
.theme-default-light .green-100 .divider, .theme-default-light .green-200.divider,
.theme-default-light .green-200 .divider, .theme-default-light .green-300.divider,
.theme-default-light .green-300 .divider, .theme-default-light .green-400.divider,
.theme-default-light .green-400 .divider, .theme-default-light .green-A100.divider,
.theme-default-light .green-A100 .divider, .theme-default-light .green-A200.divider,
.theme-default-light .green-A200 .divider, .theme-default-light .green-A400.divider,
.theme-default-light .green-A400 .divider, .theme-default-light .green-A700.divider,
.theme-default-light .green-A700 .divider, .theme-default-light .light-green-50.divider,
.theme-default-light .light-green-50 .divider, .theme-default-light .light-green-100.divider,
.theme-default-light .light-green-100 .divider, .theme-default-light .light-green-200.divider,
.theme-default-light .light-green-200 .divider, .theme-default-light .light-green-300.divider,
.theme-default-light .light-green-300 .divider, .theme-default-light .light-green-400.divider,
.theme-default-light .light-green-400 .divider, .theme-default-light .light-green-500.divider,
.theme-default-light .light-green-500 .divider, .theme-default-light .light-green-A100.divider,
.theme-default-light .light-green-A100 .divider, .theme-default-light .light-green-A200.divider,
.theme-default-light .light-green-A200 .divider, .theme-default-light .light-green-A400.divider,
.theme-default-light .light-green-A400 .divider, .theme-default-light .light-green-A700.divider,
.theme-default-light .light-green-A700 .divider, .theme-default-light .lime-50.divider,
.theme-default-light .lime-50 .divider, .theme-default-light .lime-100.divider,
.theme-default-light .lime-100 .divider, .theme-default-light .lime-200.divider,
.theme-default-light .lime-200 .divider, .theme-default-light .lime-300.divider,
.theme-default-light .lime-300 .divider, .theme-default-light .lime-400.divider,
.theme-default-light .lime-400 .divider, .theme-default-light .lime-A100.divider,
.theme-default-light .lime-A100 .divider, .theme-default-light .lime-A200.divider,
.theme-default-light .lime-A200 .divider, .theme-default-light .lime-A400.divider,
.theme-default-light .lime-A400 .divider, .theme-default-light .lime-A700.divider,
.theme-default-light .lime-A700 .divider, .theme-default-light .yellow-50.divider,
.theme-default-light .yellow-50 .divider, .theme-default-light .yellow-100.divider,
.theme-default-light .yellow-100 .divider, .theme-default-light .yellow-200.divider,
.theme-default-light .yellow-200 .divider, .theme-default-light .yellow-300.divider,
.theme-default-light .yellow-300 .divider, .theme-default-light .yellow-400.divider,
.theme-default-light .yellow-400 .divider, .theme-default-light .yellow-500.divider,
.theme-default-light .yellow-500 .divider, .theme-default-light .yellow-600.divider,
.theme-default-light .yellow-600 .divider, .theme-default-light .yellow-700.divider,
.theme-default-light .yellow-700 .divider, .theme-default-light .yellow-800.divider,
.theme-default-light .yellow-800 .divider, .theme-default-light .yellow-900.divider,
.theme-default-light .yellow-900 .divider, .theme-default-light .yellow-A100.divider,
.theme-default-light .yellow-A100 .divider, .theme-default-light .yellow-A200.divider,
.theme-default-light .yellow-A200 .divider, .theme-default-light .yellow-A400.divider,
.theme-default-light .yellow-A400 .divider, .theme-default-light .yellow-A700.divider,
.theme-default-light .yellow-A700 .divider, .theme-default-light .amber-50.divider,
.theme-default-light .amber-50 .divider, .theme-default-light .amber-100.divider,
.theme-default-light .amber-100 .divider, .theme-default-light .amber-200.divider,
.theme-default-light .amber-200 .divider, .theme-default-light .amber-300.divider,
.theme-default-light .amber-300 .divider, .theme-default-light .amber-400.divider,
.theme-default-light .amber-400 .divider, .theme-default-light .amber-500.divider,
.theme-default-light .amber-500 .divider, .theme-default-light .amber-600.divider,
.theme-default-light .amber-600 .divider, .theme-default-light .amber-700.divider,
.theme-default-light .amber-700 .divider, .theme-default-light .amber-800.divider,
.theme-default-light .amber-800 .divider, .theme-default-light .amber-900.divider,
.theme-default-light .amber-900 .divider, .theme-default-light .amber-A100.divider,
.theme-default-light .amber-A100 .divider, .theme-default-light .amber-A200.divider,
.theme-default-light .amber-A200 .divider, .theme-default-light .amber-A400.divider,
.theme-default-light .amber-A400 .divider, .theme-default-light .amber-A700.divider,
.theme-default-light .amber-A700 .divider, .theme-default-light .orange-50.divider,
.theme-default-light .orange-50 .divider, .theme-default-light .orange-100.divider,
.theme-default-light .orange-100 .divider, .theme-default-light .orange-200.divider,
.theme-default-light .orange-200 .divider, .theme-default-light .orange-300.divider,
.theme-default-light .orange-300 .divider, .theme-default-light .orange-400.divider,
.theme-default-light .orange-400 .divider, .theme-default-light .orange-500.divider,
.theme-default-light .orange-500 .divider, .theme-default-light .orange-600.divider,
.theme-default-light .orange-600 .divider, .theme-default-light .orange-700.divider,
.theme-default-light .orange-700 .divider, .theme-default-light .orange-A100.divider,
.theme-default-light .orange-A100 .divider, .theme-default-light .orange-A200.divider,
.theme-default-light .orange-A200 .divider, .theme-default-light .orange-A400.divider,
.theme-default-light .orange-A400 .divider, .theme-default-light .orange-A700.divider,
.theme-default-light .orange-A700 .divider, .theme-default-light .deep-orange-50.divider,
.theme-default-light .deep-orange-50 .divider, .theme-default-light .deep-orange-100.divider,
.theme-default-light .deep-orange-100 .divider, .theme-default-light .deep-orange-200.divider,
.theme-default-light .deep-orange-200 .divider, .theme-default-light .deep-orange-300.divider,
.theme-default-light .deep-orange-300 .divider, .theme-default-light .deep-orange-400.divider,
.theme-default-light .deep-orange-400 .divider, .theme-default-light .deep-orange-A100.divider,
.theme-default-light .deep-orange-A100 .divider, .theme-default-light .deep-orange-A200.divider,
.theme-default-light .deep-orange-A200 .divider, .theme-default-light .brown-50.divider,
.theme-default-light .brown-50 .divider, .theme-default-light .brown-100.divider,
.theme-default-light .brown-100 .divider, .theme-default-light .brown-200.divider,
.theme-default-light .brown-200 .divider, .theme-default-light .brown-A100.divider,
.theme-default-light .brown-A100 .divider, .theme-default-light .brown-A200.divider,
.theme-default-light .brown-A200 .divider, .theme-default-light .grey-50.divider,
.theme-default-light .grey-50 .divider, .theme-default-light .grey-100.divider,
.theme-default-light .grey-100 .divider, .theme-default-light .grey-200.divider,
.theme-default-light .grey-200 .divider, .theme-default-light .grey-300.divider,
.theme-default-light .grey-300 .divider, .theme-default-light .grey-400.divider,
.theme-default-light .grey-400 .divider, .theme-default-light .grey-A100.divider,
.theme-default-light .grey-A100 .divider, .theme-default-light .grey-A200.divider,
.theme-default-light .grey-A200 .divider, .theme-default-light .grey-A400.divider,
.theme-default-light .grey-A400 .divider, .theme-default-light .grey-A700.divider,
.theme-default-light .grey-A700 .divider, .theme-default-light .blue-grey-50.divider,
.theme-default-light .blue-grey-50 .divider, .theme-default-light .blue-grey-100.divider,
.theme-default-light .blue-grey-100 .divider, .theme-default-light .blue-grey-200.divider,
.theme-default-light .blue-grey-200 .divider, .theme-default-light .blue-grey-300.divider,
.theme-default-light .blue-grey-300 .divider, .theme-default-light .blue-grey-A100.divider,
.theme-default-light .blue-grey-A100 .divider, .theme-default-light .blue-grey-A200.divider,
.theme-default-light .blue-grey-A200 .divider, .theme-default-light .light-grey-50.divider,
.theme-default-light .light-grey-50 .divider, .theme-default-light .light-grey-100.divider,
.theme-default-light .light-grey-100 .divider, .theme-default-light .light-grey-200.divider,
.theme-default-light .light-grey-200 .divider, .theme-default-light .light-grey-300.divider,
.theme-default-light .light-grey-300 .divider, .theme-default-light .light-grey-400.divider,
.theme-default-light .light-grey-400 .divider, .theme-default-light .light-grey-500.divider,
.theme-default-light .light-grey-500 .divider, .theme-default-light .light-grey-600.divider,
.theme-default-light .light-grey-600 .divider, .theme-default-light .light-grey-700.divider,
.theme-default-light .light-grey-700 .divider, .theme-default-light .light-grey-800.divider,
.theme-default-light .light-grey-800 .divider, .theme-default-light .light-grey-900.divider,
.theme-default-light .light-grey-900 .divider, .theme-default-light .light-grey-A100.divider,
.theme-default-light .light-grey-A100 .divider, .theme-default-light .light-grey-A200.divider,
.theme-default-light .light-grey-A200 .divider, .theme-default-light .light-grey-A400.divider,
.theme-default-light .light-grey-A400 .divider, .theme-default-light .light-grey-A700.divider,
.theme-default-light .light-grey-A700 .divider, .theme-default-light .primary-50.divider,
.theme-default-light .primary-50 .divider, .theme-default-light .primary-100.divider,
.theme-default-light .primary-100 .divider, .theme-default-light .primary-200.divider,
.theme-default-light .primary-200 .divider, .theme-default-light .primary-300.divider,
.theme-default-light .primary-300 .divider, .theme-default-light .primary-A100.divider,
.theme-default-light .primary-A100 .divider, .theme-default-light .primary-A200.divider,
.theme-default-light .primary-A200 .divider, .theme-default-light .accent-50.divider,
.theme-default-light .accent-50 .divider, .theme-default-light .accent-100.divider,
.theme-default-light .accent-100 .divider, .theme-default-light .accent-200.divider,
.theme-default-light .accent-200 .divider, .theme-default-light .accent-300.divider,
.theme-default-light .accent-300 .divider, .theme-default-light .accent-A100.divider,
.theme-default-light .accent-A100 .divider, .theme-default-light .warn-50.divider,
.theme-default-light .warn-50 .divider, .theme-default-light .warn-100.divider,
.theme-default-light .warn-100 .divider, .theme-default-light .warn-200.divider,
.theme-default-light .warn-200 .divider, .theme-default-light .warn-300.divider,
.theme-default-light .warn-300 .divider, .theme-default-light .warn-400.divider,
.theme-default-light .warn-400 .divider, .theme-default-light .warn-A100.divider,
.theme-default-light .warn-A100 .divider {
  color: rgba(0, 0, 0, 0.12) !important;
}
.theme-default-light .red-500.secondary-text,
.theme-default-light .red-500 .secondary-text, .theme-default-light .red-600.secondary-text,
.theme-default-light .red-600 .secondary-text, .theme-default-light .red-700.secondary-text,
.theme-default-light .red-700 .secondary-text, .theme-default-light .red-800.secondary-text,
.theme-default-light .red-800 .secondary-text, .theme-default-light .red-900.secondary-text,
.theme-default-light .red-900 .secondary-text, .theme-default-light .red-A200.secondary-text,
.theme-default-light .red-A200 .secondary-text, .theme-default-light .red-A400.secondary-text,
.theme-default-light .red-A400 .secondary-text, .theme-default-light .red-A700.secondary-text,
.theme-default-light .red-A700 .secondary-text, .theme-default-light .pink-500.secondary-text,
.theme-default-light .pink-500 .secondary-text, .theme-default-light .pink-600.secondary-text,
.theme-default-light .pink-600 .secondary-text, .theme-default-light .pink-700.secondary-text,
.theme-default-light .pink-700 .secondary-text, .theme-default-light .pink-800.secondary-text,
.theme-default-light .pink-800 .secondary-text, .theme-default-light .pink-900.secondary-text,
.theme-default-light .pink-900 .secondary-text, .theme-default-light .pink-A200.secondary-text,
.theme-default-light .pink-A200 .secondary-text, .theme-default-light .pink-A400.secondary-text,
.theme-default-light .pink-A400 .secondary-text, .theme-default-light .pink-A700.secondary-text,
.theme-default-light .pink-A700 .secondary-text, .theme-default-light .purple-300.secondary-text,
.theme-default-light .purple-300 .secondary-text, .theme-default-light .purple-400.secondary-text,
.theme-default-light .purple-400 .secondary-text, .theme-default-light .purple-500.secondary-text,
.theme-default-light .purple-500 .secondary-text, .theme-default-light .purple-600.secondary-text,
.theme-default-light .purple-600 .secondary-text, .theme-default-light .purple-700.secondary-text,
.theme-default-light .purple-700 .secondary-text, .theme-default-light .purple-800.secondary-text,
.theme-default-light .purple-800 .secondary-text, .theme-default-light .purple-900.secondary-text,
.theme-default-light .purple-900 .secondary-text, .theme-default-light .purple-A200.secondary-text,
.theme-default-light .purple-A200 .secondary-text, .theme-default-light .purple-A400.secondary-text,
.theme-default-light .purple-A400 .secondary-text, .theme-default-light .purple-A700.secondary-text,
.theme-default-light .purple-A700 .secondary-text, .theme-default-light .deep-purple-300.secondary-text,
.theme-default-light .deep-purple-300 .secondary-text, .theme-default-light .deep-purple-400.secondary-text,
.theme-default-light .deep-purple-400 .secondary-text, .theme-default-light .deep-purple-500.secondary-text,
.theme-default-light .deep-purple-500 .secondary-text, .theme-default-light .deep-purple-600.secondary-text,
.theme-default-light .deep-purple-600 .secondary-text, .theme-default-light .deep-purple-700.secondary-text,
.theme-default-light .deep-purple-700 .secondary-text, .theme-default-light .deep-purple-800.secondary-text,
.theme-default-light .deep-purple-800 .secondary-text, .theme-default-light .deep-purple-900.secondary-text,
.theme-default-light .deep-purple-900 .secondary-text, .theme-default-light .deep-purple-A200.secondary-text,
.theme-default-light .deep-purple-A200 .secondary-text, .theme-default-light .deep-purple-A400.secondary-text,
.theme-default-light .deep-purple-A400 .secondary-text, .theme-default-light .deep-purple-A700.secondary-text,
.theme-default-light .deep-purple-A700 .secondary-text, .theme-default-light .indigo-300.secondary-text,
.theme-default-light .indigo-300 .secondary-text, .theme-default-light .indigo-400.secondary-text,
.theme-default-light .indigo-400 .secondary-text, .theme-default-light .indigo-500.secondary-text,
.theme-default-light .indigo-500 .secondary-text, .theme-default-light .indigo-600.secondary-text,
.theme-default-light .indigo-600 .secondary-text, .theme-default-light .indigo-700.secondary-text,
.theme-default-light .indigo-700 .secondary-text, .theme-default-light .indigo-800.secondary-text,
.theme-default-light .indigo-800 .secondary-text, .theme-default-light .indigo-900.secondary-text,
.theme-default-light .indigo-900 .secondary-text, .theme-default-light .indigo-A200.secondary-text,
.theme-default-light .indigo-A200 .secondary-text, .theme-default-light .indigo-A400.secondary-text,
.theme-default-light .indigo-A400 .secondary-text, .theme-default-light .indigo-A700.secondary-text,
.theme-default-light .indigo-A700 .secondary-text, .theme-default-light .blue-400.secondary-text,
.theme-default-light .blue-400 .secondary-text, .theme-default-light .blue-500.secondary-text,
.theme-default-light .blue-500 .secondary-text, .theme-default-light .blue-600.secondary-text,
.theme-default-light .blue-600 .secondary-text, .theme-default-light .blue-700.secondary-text,
.theme-default-light .blue-700 .secondary-text, .theme-default-light .blue-800.secondary-text,
.theme-default-light .blue-800 .secondary-text, .theme-default-light .blue-900.secondary-text,
.theme-default-light .blue-900 .secondary-text, .theme-default-light .blue-A200.secondary-text,
.theme-default-light .blue-A200 .secondary-text, .theme-default-light .blue-A400.secondary-text,
.theme-default-light .blue-A400 .secondary-text, .theme-default-light .blue-A700.secondary-text,
.theme-default-light .blue-A700 .secondary-text, .theme-default-light .light-blue-500.secondary-text,
.theme-default-light .light-blue-500 .secondary-text, .theme-default-light .light-blue-600.secondary-text,
.theme-default-light .light-blue-600 .secondary-text, .theme-default-light .light-blue-700.secondary-text,
.theme-default-light .light-blue-700 .secondary-text, .theme-default-light .light-blue-800.secondary-text,
.theme-default-light .light-blue-800 .secondary-text, .theme-default-light .light-blue-900.secondary-text,
.theme-default-light .light-blue-900 .secondary-text, .theme-default-light .light-blue-A700.secondary-text,
.theme-default-light .light-blue-A700 .secondary-text, .theme-default-light .cyan-500.secondary-text,
.theme-default-light .cyan-500 .secondary-text, .theme-default-light .cyan-600.secondary-text,
.theme-default-light .cyan-600 .secondary-text, .theme-default-light .cyan-700.secondary-text,
.theme-default-light .cyan-700 .secondary-text, .theme-default-light .cyan-800.secondary-text,
.theme-default-light .cyan-800 .secondary-text, .theme-default-light .cyan-900.secondary-text,
.theme-default-light .cyan-900 .secondary-text, .theme-default-light .teal-500.secondary-text,
.theme-default-light .teal-500 .secondary-text, .theme-default-light .teal-600.secondary-text,
.theme-default-light .teal-600 .secondary-text, .theme-default-light .teal-700.secondary-text,
.theme-default-light .teal-700 .secondary-text, .theme-default-light .teal-800.secondary-text,
.theme-default-light .teal-800 .secondary-text, .theme-default-light .teal-900.secondary-text,
.theme-default-light .teal-900 .secondary-text, .theme-default-light .green-500.secondary-text,
.theme-default-light .green-500 .secondary-text, .theme-default-light .green-600.secondary-text,
.theme-default-light .green-600 .secondary-text, .theme-default-light .green-700.secondary-text,
.theme-default-light .green-700 .secondary-text, .theme-default-light .green-800.secondary-text,
.theme-default-light .green-800 .secondary-text, .theme-default-light .green-900.secondary-text,
.theme-default-light .green-900 .secondary-text, .theme-default-light .light-green-600.secondary-text,
.theme-default-light .light-green-600 .secondary-text, .theme-default-light .light-green-700.secondary-text,
.theme-default-light .light-green-700 .secondary-text, .theme-default-light .light-green-800.secondary-text,
.theme-default-light .light-green-800 .secondary-text, .theme-default-light .light-green-900.secondary-text,
.theme-default-light .light-green-900 .secondary-text, .theme-default-light .lime-500.secondary-text,
.theme-default-light .lime-500 .secondary-text, .theme-default-light .lime-600.secondary-text,
.theme-default-light .lime-600 .secondary-text, .theme-default-light .lime-700.secondary-text,
.theme-default-light .lime-700 .secondary-text, .theme-default-light .lime-800.secondary-text,
.theme-default-light .lime-800 .secondary-text, .theme-default-light .lime-900.secondary-text,
.theme-default-light .lime-900 .secondary-text, .theme-default-light .orange-800.secondary-text,
.theme-default-light .orange-800 .secondary-text, .theme-default-light .orange-900.secondary-text,
.theme-default-light .orange-900 .secondary-text, .theme-default-light .deep-orange-500.secondary-text,
.theme-default-light .deep-orange-500 .secondary-text, .theme-default-light .deep-orange-600.secondary-text,
.theme-default-light .deep-orange-600 .secondary-text, .theme-default-light .deep-orange-700.secondary-text,
.theme-default-light .deep-orange-700 .secondary-text, .theme-default-light .deep-orange-800.secondary-text,
.theme-default-light .deep-orange-800 .secondary-text, .theme-default-light .deep-orange-900.secondary-text,
.theme-default-light .deep-orange-900 .secondary-text, .theme-default-light .deep-orange-A400.secondary-text,
.theme-default-light .deep-orange-A400 .secondary-text, .theme-default-light .deep-orange-A700.secondary-text,
.theme-default-light .deep-orange-A700 .secondary-text, .theme-default-light .brown-300.secondary-text,
.theme-default-light .brown-300 .secondary-text, .theme-default-light .brown-400.secondary-text,
.theme-default-light .brown-400 .secondary-text, .theme-default-light .brown-500.secondary-text,
.theme-default-light .brown-500 .secondary-text, .theme-default-light .brown-600.secondary-text,
.theme-default-light .brown-600 .secondary-text, .theme-default-light .brown-700.secondary-text,
.theme-default-light .brown-700 .secondary-text, .theme-default-light .brown-800.secondary-text,
.theme-default-light .brown-800 .secondary-text, .theme-default-light .brown-900.secondary-text,
.theme-default-light .brown-900 .secondary-text, .theme-default-light .brown-A400.secondary-text,
.theme-default-light .brown-A400 .secondary-text, .theme-default-light .brown-A700.secondary-text,
.theme-default-light .brown-A700 .secondary-text, .theme-default-light .grey-500.secondary-text,
.theme-default-light .grey-500 .secondary-text, .theme-default-light .grey-600.secondary-text,
.theme-default-light .grey-600 .secondary-text, .theme-default-light .grey-700.secondary-text,
.theme-default-light .grey-700 .secondary-text, .theme-default-light .grey-800.secondary-text,
.theme-default-light .grey-800 .secondary-text, .theme-default-light .grey-900.secondary-text,
.theme-default-light .grey-900 .secondary-text, .theme-default-light .blue-grey-400.secondary-text,
.theme-default-light .blue-grey-400 .secondary-text, .theme-default-light .blue-grey-500.secondary-text,
.theme-default-light .blue-grey-500 .secondary-text, .theme-default-light .blue-grey-600.secondary-text,
.theme-default-light .blue-grey-600 .secondary-text, .theme-default-light .blue-grey-700.secondary-text,
.theme-default-light .blue-grey-700 .secondary-text, .theme-default-light .blue-grey-800.secondary-text,
.theme-default-light .blue-grey-800 .secondary-text, .theme-default-light .blue-grey-900.secondary-text,
.theme-default-light .blue-grey-900 .secondary-text, .theme-default-light .blue-grey-A400.secondary-text,
.theme-default-light .blue-grey-A400 .secondary-text, .theme-default-light .blue-grey-A700.secondary-text,
.theme-default-light .blue-grey-A700 .secondary-text, .theme-default-light .dark-grey-50.secondary-text,
.theme-default-light .dark-grey-50 .secondary-text, .theme-default-light .dark-grey-100.secondary-text,
.theme-default-light .dark-grey-100 .secondary-text, .theme-default-light .dark-grey-200.secondary-text,
.theme-default-light .dark-grey-200 .secondary-text, .theme-default-light .dark-grey-300.secondary-text,
.theme-default-light .dark-grey-300 .secondary-text, .theme-default-light .dark-grey-400.secondary-text,
.theme-default-light .dark-grey-400 .secondary-text, .theme-default-light .dark-grey-500.secondary-text,
.theme-default-light .dark-grey-500 .secondary-text, .theme-default-light .dark-grey-600.secondary-text,
.theme-default-light .dark-grey-600 .secondary-text, .theme-default-light .dark-grey-700.secondary-text,
.theme-default-light .dark-grey-700 .secondary-text, .theme-default-light .dark-grey-800.secondary-text,
.theme-default-light .dark-grey-800 .secondary-text, .theme-default-light .dark-grey-900.secondary-text,
.theme-default-light .dark-grey-900 .secondary-text, .theme-default-light .dark-grey-A100.secondary-text,
.theme-default-light .dark-grey-A100 .secondary-text, .theme-default-light .dark-grey-A200.secondary-text,
.theme-default-light .dark-grey-A200 .secondary-text, .theme-default-light .dark-grey-A400.secondary-text,
.theme-default-light .dark-grey-A400 .secondary-text, .theme-default-light .dark-grey-A700.secondary-text,
.theme-default-light .dark-grey-A700 .secondary-text, .theme-default-light .primary-400.secondary-text,
.theme-default-light .primary-400 .secondary-text, .theme-default-light .primary-500.secondary-text,
.theme-default-light .primary-500 .secondary-text, .theme-default-light .primary-600.secondary-text,
.theme-default-light .primary-600 .secondary-text, .theme-default-light .primary-700.secondary-text,
.theme-default-light .primary-700 .secondary-text, .theme-default-light .primary-800.secondary-text,
.theme-default-light .primary-800 .secondary-text, .theme-default-light .primary-900.secondary-text,
.theme-default-light .primary-900 .secondary-text, .theme-default-light .primary-A400.secondary-text,
.theme-default-light .primary-A400 .secondary-text, .theme-default-light .primary-A700.secondary-text,
.theme-default-light .primary-A700 .secondary-text, .theme-default-light .accent-400.secondary-text,
.theme-default-light .accent-400 .secondary-text, .theme-default-light .accent-500.secondary-text,
.theme-default-light .accent-500 .secondary-text, .theme-default-light .accent-600.secondary-text,
.theme-default-light .accent-600 .secondary-text, .theme-default-light .accent-700.secondary-text,
.theme-default-light .accent-700 .secondary-text, .theme-default-light .accent-800.secondary-text,
.theme-default-light .accent-800 .secondary-text, .theme-default-light .accent-900.secondary-text,
.theme-default-light .accent-900 .secondary-text, .theme-default-light .accent-A200.secondary-text,
.theme-default-light .accent-A200 .secondary-text, .theme-default-light .accent-A400.secondary-text,
.theme-default-light .accent-A400 .secondary-text, .theme-default-light .accent-A700.secondary-text,
.theme-default-light .accent-A700 .secondary-text, .theme-default-light .warn-500.secondary-text,
.theme-default-light .warn-500 .secondary-text, .theme-default-light .warn-600.secondary-text,
.theme-default-light .warn-600 .secondary-text, .theme-default-light .warn-700.secondary-text,
.theme-default-light .warn-700 .secondary-text, .theme-default-light .warn-800.secondary-text,
.theme-default-light .warn-800 .secondary-text, .theme-default-light .warn-900.secondary-text,
.theme-default-light .warn-900 .secondary-text, .theme-default-light .warn-A200.secondary-text,
.theme-default-light .warn-A200 .secondary-text, .theme-default-light .warn-A400.secondary-text,
.theme-default-light .warn-A400 .secondary-text, .theme-default-light .warn-A700.secondary-text,
.theme-default-light .warn-A700 .secondary-text {
  color: rgba(255, 255, 255, 0.7) !important;
}
.theme-default-light .red-500.hint-text,
.theme-default-light .red-500 .hint-text, .theme-default-light .red-500.disabled-text,
.theme-default-light .red-500 .disabled-text, .theme-default-light .red-600.hint-text,
.theme-default-light .red-600 .hint-text, .theme-default-light .red-600.disabled-text,
.theme-default-light .red-600 .disabled-text, .theme-default-light .red-700.hint-text,
.theme-default-light .red-700 .hint-text, .theme-default-light .red-700.disabled-text,
.theme-default-light .red-700 .disabled-text, .theme-default-light .red-800.hint-text,
.theme-default-light .red-800 .hint-text, .theme-default-light .red-800.disabled-text,
.theme-default-light .red-800 .disabled-text, .theme-default-light .red-900.hint-text,
.theme-default-light .red-900 .hint-text, .theme-default-light .red-900.disabled-text,
.theme-default-light .red-900 .disabled-text, .theme-default-light .red-A200.hint-text,
.theme-default-light .red-A200 .hint-text, .theme-default-light .red-A200.disabled-text,
.theme-default-light .red-A200 .disabled-text, .theme-default-light .red-A400.hint-text,
.theme-default-light .red-A400 .hint-text, .theme-default-light .red-A400.disabled-text,
.theme-default-light .red-A400 .disabled-text, .theme-default-light .red-A700.hint-text,
.theme-default-light .red-A700 .hint-text, .theme-default-light .red-A700.disabled-text,
.theme-default-light .red-A700 .disabled-text, .theme-default-light .pink-500.hint-text,
.theme-default-light .pink-500 .hint-text, .theme-default-light .pink-500.disabled-text,
.theme-default-light .pink-500 .disabled-text, .theme-default-light .pink-600.hint-text,
.theme-default-light .pink-600 .hint-text, .theme-default-light .pink-600.disabled-text,
.theme-default-light .pink-600 .disabled-text, .theme-default-light .pink-700.hint-text,
.theme-default-light .pink-700 .hint-text, .theme-default-light .pink-700.disabled-text,
.theme-default-light .pink-700 .disabled-text, .theme-default-light .pink-800.hint-text,
.theme-default-light .pink-800 .hint-text, .theme-default-light .pink-800.disabled-text,
.theme-default-light .pink-800 .disabled-text, .theme-default-light .pink-900.hint-text,
.theme-default-light .pink-900 .hint-text, .theme-default-light .pink-900.disabled-text,
.theme-default-light .pink-900 .disabled-text, .theme-default-light .pink-A200.hint-text,
.theme-default-light .pink-A200 .hint-text, .theme-default-light .pink-A200.disabled-text,
.theme-default-light .pink-A200 .disabled-text, .theme-default-light .pink-A400.hint-text,
.theme-default-light .pink-A400 .hint-text, .theme-default-light .pink-A400.disabled-text,
.theme-default-light .pink-A400 .disabled-text, .theme-default-light .pink-A700.hint-text,
.theme-default-light .pink-A700 .hint-text, .theme-default-light .pink-A700.disabled-text,
.theme-default-light .pink-A700 .disabled-text, .theme-default-light .purple-300.hint-text,
.theme-default-light .purple-300 .hint-text, .theme-default-light .purple-300.disabled-text,
.theme-default-light .purple-300 .disabled-text, .theme-default-light .purple-400.hint-text,
.theme-default-light .purple-400 .hint-text, .theme-default-light .purple-400.disabled-text,
.theme-default-light .purple-400 .disabled-text, .theme-default-light .purple-500.hint-text,
.theme-default-light .purple-500 .hint-text, .theme-default-light .purple-500.disabled-text,
.theme-default-light .purple-500 .disabled-text, .theme-default-light .purple-600.hint-text,
.theme-default-light .purple-600 .hint-text, .theme-default-light .purple-600.disabled-text,
.theme-default-light .purple-600 .disabled-text, .theme-default-light .purple-700.hint-text,
.theme-default-light .purple-700 .hint-text, .theme-default-light .purple-700.disabled-text,
.theme-default-light .purple-700 .disabled-text, .theme-default-light .purple-800.hint-text,
.theme-default-light .purple-800 .hint-text, .theme-default-light .purple-800.disabled-text,
.theme-default-light .purple-800 .disabled-text, .theme-default-light .purple-900.hint-text,
.theme-default-light .purple-900 .hint-text, .theme-default-light .purple-900.disabled-text,
.theme-default-light .purple-900 .disabled-text, .theme-default-light .purple-A200.hint-text,
.theme-default-light .purple-A200 .hint-text, .theme-default-light .purple-A200.disabled-text,
.theme-default-light .purple-A200 .disabled-text, .theme-default-light .purple-A400.hint-text,
.theme-default-light .purple-A400 .hint-text, .theme-default-light .purple-A400.disabled-text,
.theme-default-light .purple-A400 .disabled-text, .theme-default-light .purple-A700.hint-text,
.theme-default-light .purple-A700 .hint-text, .theme-default-light .purple-A700.disabled-text,
.theme-default-light .purple-A700 .disabled-text, .theme-default-light .deep-purple-300.hint-text,
.theme-default-light .deep-purple-300 .hint-text, .theme-default-light .deep-purple-300.disabled-text,
.theme-default-light .deep-purple-300 .disabled-text, .theme-default-light .deep-purple-400.hint-text,
.theme-default-light .deep-purple-400 .hint-text, .theme-default-light .deep-purple-400.disabled-text,
.theme-default-light .deep-purple-400 .disabled-text, .theme-default-light .deep-purple-500.hint-text,
.theme-default-light .deep-purple-500 .hint-text, .theme-default-light .deep-purple-500.disabled-text,
.theme-default-light .deep-purple-500 .disabled-text, .theme-default-light .deep-purple-600.hint-text,
.theme-default-light .deep-purple-600 .hint-text, .theme-default-light .deep-purple-600.disabled-text,
.theme-default-light .deep-purple-600 .disabled-text, .theme-default-light .deep-purple-700.hint-text,
.theme-default-light .deep-purple-700 .hint-text, .theme-default-light .deep-purple-700.disabled-text,
.theme-default-light .deep-purple-700 .disabled-text, .theme-default-light .deep-purple-800.hint-text,
.theme-default-light .deep-purple-800 .hint-text, .theme-default-light .deep-purple-800.disabled-text,
.theme-default-light .deep-purple-800 .disabled-text, .theme-default-light .deep-purple-900.hint-text,
.theme-default-light .deep-purple-900 .hint-text, .theme-default-light .deep-purple-900.disabled-text,
.theme-default-light .deep-purple-900 .disabled-text, .theme-default-light .deep-purple-A200.hint-text,
.theme-default-light .deep-purple-A200 .hint-text, .theme-default-light .deep-purple-A200.disabled-text,
.theme-default-light .deep-purple-A200 .disabled-text, .theme-default-light .deep-purple-A400.hint-text,
.theme-default-light .deep-purple-A400 .hint-text, .theme-default-light .deep-purple-A400.disabled-text,
.theme-default-light .deep-purple-A400 .disabled-text, .theme-default-light .deep-purple-A700.hint-text,
.theme-default-light .deep-purple-A700 .hint-text, .theme-default-light .deep-purple-A700.disabled-text,
.theme-default-light .deep-purple-A700 .disabled-text, .theme-default-light .indigo-300.hint-text,
.theme-default-light .indigo-300 .hint-text, .theme-default-light .indigo-300.disabled-text,
.theme-default-light .indigo-300 .disabled-text, .theme-default-light .indigo-400.hint-text,
.theme-default-light .indigo-400 .hint-text, .theme-default-light .indigo-400.disabled-text,
.theme-default-light .indigo-400 .disabled-text, .theme-default-light .indigo-500.hint-text,
.theme-default-light .indigo-500 .hint-text, .theme-default-light .indigo-500.disabled-text,
.theme-default-light .indigo-500 .disabled-text, .theme-default-light .indigo-600.hint-text,
.theme-default-light .indigo-600 .hint-text, .theme-default-light .indigo-600.disabled-text,
.theme-default-light .indigo-600 .disabled-text, .theme-default-light .indigo-700.hint-text,
.theme-default-light .indigo-700 .hint-text, .theme-default-light .indigo-700.disabled-text,
.theme-default-light .indigo-700 .disabled-text, .theme-default-light .indigo-800.hint-text,
.theme-default-light .indigo-800 .hint-text, .theme-default-light .indigo-800.disabled-text,
.theme-default-light .indigo-800 .disabled-text, .theme-default-light .indigo-900.hint-text,
.theme-default-light .indigo-900 .hint-text, .theme-default-light .indigo-900.disabled-text,
.theme-default-light .indigo-900 .disabled-text, .theme-default-light .indigo-A200.hint-text,
.theme-default-light .indigo-A200 .hint-text, .theme-default-light .indigo-A200.disabled-text,
.theme-default-light .indigo-A200 .disabled-text, .theme-default-light .indigo-A400.hint-text,
.theme-default-light .indigo-A400 .hint-text, .theme-default-light .indigo-A400.disabled-text,
.theme-default-light .indigo-A400 .disabled-text, .theme-default-light .indigo-A700.hint-text,
.theme-default-light .indigo-A700 .hint-text, .theme-default-light .indigo-A700.disabled-text,
.theme-default-light .indigo-A700 .disabled-text, .theme-default-light .blue-400.hint-text,
.theme-default-light .blue-400 .hint-text, .theme-default-light .blue-400.disabled-text,
.theme-default-light .blue-400 .disabled-text, .theme-default-light .blue-500.hint-text,
.theme-default-light .blue-500 .hint-text, .theme-default-light .blue-500.disabled-text,
.theme-default-light .blue-500 .disabled-text, .theme-default-light .blue-600.hint-text,
.theme-default-light .blue-600 .hint-text, .theme-default-light .blue-600.disabled-text,
.theme-default-light .blue-600 .disabled-text, .theme-default-light .blue-700.hint-text,
.theme-default-light .blue-700 .hint-text, .theme-default-light .blue-700.disabled-text,
.theme-default-light .blue-700 .disabled-text, .theme-default-light .blue-800.hint-text,
.theme-default-light .blue-800 .hint-text, .theme-default-light .blue-800.disabled-text,
.theme-default-light .blue-800 .disabled-text, .theme-default-light .blue-900.hint-text,
.theme-default-light .blue-900 .hint-text, .theme-default-light .blue-900.disabled-text,
.theme-default-light .blue-900 .disabled-text, .theme-default-light .blue-A200.hint-text,
.theme-default-light .blue-A200 .hint-text, .theme-default-light .blue-A200.disabled-text,
.theme-default-light .blue-A200 .disabled-text, .theme-default-light .blue-A400.hint-text,
.theme-default-light .blue-A400 .hint-text, .theme-default-light .blue-A400.disabled-text,
.theme-default-light .blue-A400 .disabled-text, .theme-default-light .blue-A700.hint-text,
.theme-default-light .blue-A700 .hint-text, .theme-default-light .blue-A700.disabled-text,
.theme-default-light .blue-A700 .disabled-text, .theme-default-light .light-blue-500.hint-text,
.theme-default-light .light-blue-500 .hint-text, .theme-default-light .light-blue-500.disabled-text,
.theme-default-light .light-blue-500 .disabled-text, .theme-default-light .light-blue-600.hint-text,
.theme-default-light .light-blue-600 .hint-text, .theme-default-light .light-blue-600.disabled-text,
.theme-default-light .light-blue-600 .disabled-text, .theme-default-light .light-blue-700.hint-text,
.theme-default-light .light-blue-700 .hint-text, .theme-default-light .light-blue-700.disabled-text,
.theme-default-light .light-blue-700 .disabled-text, .theme-default-light .light-blue-800.hint-text,
.theme-default-light .light-blue-800 .hint-text, .theme-default-light .light-blue-800.disabled-text,
.theme-default-light .light-blue-800 .disabled-text, .theme-default-light .light-blue-900.hint-text,
.theme-default-light .light-blue-900 .hint-text, .theme-default-light .light-blue-900.disabled-text,
.theme-default-light .light-blue-900 .disabled-text, .theme-default-light .light-blue-A700.hint-text,
.theme-default-light .light-blue-A700 .hint-text, .theme-default-light .light-blue-A700.disabled-text,
.theme-default-light .light-blue-A700 .disabled-text, .theme-default-light .cyan-500.hint-text,
.theme-default-light .cyan-500 .hint-text, .theme-default-light .cyan-500.disabled-text,
.theme-default-light .cyan-500 .disabled-text, .theme-default-light .cyan-600.hint-text,
.theme-default-light .cyan-600 .hint-text, .theme-default-light .cyan-600.disabled-text,
.theme-default-light .cyan-600 .disabled-text, .theme-default-light .cyan-700.hint-text,
.theme-default-light .cyan-700 .hint-text, .theme-default-light .cyan-700.disabled-text,
.theme-default-light .cyan-700 .disabled-text, .theme-default-light .cyan-800.hint-text,
.theme-default-light .cyan-800 .hint-text, .theme-default-light .cyan-800.disabled-text,
.theme-default-light .cyan-800 .disabled-text, .theme-default-light .cyan-900.hint-text,
.theme-default-light .cyan-900 .hint-text, .theme-default-light .cyan-900.disabled-text,
.theme-default-light .cyan-900 .disabled-text, .theme-default-light .teal-500.hint-text,
.theme-default-light .teal-500 .hint-text, .theme-default-light .teal-500.disabled-text,
.theme-default-light .teal-500 .disabled-text, .theme-default-light .teal-600.hint-text,
.theme-default-light .teal-600 .hint-text, .theme-default-light .teal-600.disabled-text,
.theme-default-light .teal-600 .disabled-text, .theme-default-light .teal-700.hint-text,
.theme-default-light .teal-700 .hint-text, .theme-default-light .teal-700.disabled-text,
.theme-default-light .teal-700 .disabled-text, .theme-default-light .teal-800.hint-text,
.theme-default-light .teal-800 .hint-text, .theme-default-light .teal-800.disabled-text,
.theme-default-light .teal-800 .disabled-text, .theme-default-light .teal-900.hint-text,
.theme-default-light .teal-900 .hint-text, .theme-default-light .teal-900.disabled-text,
.theme-default-light .teal-900 .disabled-text, .theme-default-light .green-500.hint-text,
.theme-default-light .green-500 .hint-text, .theme-default-light .green-500.disabled-text,
.theme-default-light .green-500 .disabled-text, .theme-default-light .green-600.hint-text,
.theme-default-light .green-600 .hint-text, .theme-default-light .green-600.disabled-text,
.theme-default-light .green-600 .disabled-text, .theme-default-light .green-700.hint-text,
.theme-default-light .green-700 .hint-text, .theme-default-light .green-700.disabled-text,
.theme-default-light .green-700 .disabled-text, .theme-default-light .green-800.hint-text,
.theme-default-light .green-800 .hint-text, .theme-default-light .green-800.disabled-text,
.theme-default-light .green-800 .disabled-text, .theme-default-light .green-900.hint-text,
.theme-default-light .green-900 .hint-text, .theme-default-light .green-900.disabled-text,
.theme-default-light .green-900 .disabled-text, .theme-default-light .light-green-600.hint-text,
.theme-default-light .light-green-600 .hint-text, .theme-default-light .light-green-600.disabled-text,
.theme-default-light .light-green-600 .disabled-text, .theme-default-light .light-green-700.hint-text,
.theme-default-light .light-green-700 .hint-text, .theme-default-light .light-green-700.disabled-text,
.theme-default-light .light-green-700 .disabled-text, .theme-default-light .light-green-800.hint-text,
.theme-default-light .light-green-800 .hint-text, .theme-default-light .light-green-800.disabled-text,
.theme-default-light .light-green-800 .disabled-text, .theme-default-light .light-green-900.hint-text,
.theme-default-light .light-green-900 .hint-text, .theme-default-light .light-green-900.disabled-text,
.theme-default-light .light-green-900 .disabled-text, .theme-default-light .lime-500.hint-text,
.theme-default-light .lime-500 .hint-text, .theme-default-light .lime-500.disabled-text,
.theme-default-light .lime-500 .disabled-text, .theme-default-light .lime-600.hint-text,
.theme-default-light .lime-600 .hint-text, .theme-default-light .lime-600.disabled-text,
.theme-default-light .lime-600 .disabled-text, .theme-default-light .lime-700.hint-text,
.theme-default-light .lime-700 .hint-text, .theme-default-light .lime-700.disabled-text,
.theme-default-light .lime-700 .disabled-text, .theme-default-light .lime-800.hint-text,
.theme-default-light .lime-800 .hint-text, .theme-default-light .lime-800.disabled-text,
.theme-default-light .lime-800 .disabled-text, .theme-default-light .lime-900.hint-text,
.theme-default-light .lime-900 .hint-text, .theme-default-light .lime-900.disabled-text,
.theme-default-light .lime-900 .disabled-text, .theme-default-light .orange-800.hint-text,
.theme-default-light .orange-800 .hint-text, .theme-default-light .orange-800.disabled-text,
.theme-default-light .orange-800 .disabled-text, .theme-default-light .orange-900.hint-text,
.theme-default-light .orange-900 .hint-text, .theme-default-light .orange-900.disabled-text,
.theme-default-light .orange-900 .disabled-text, .theme-default-light .deep-orange-500.hint-text,
.theme-default-light .deep-orange-500 .hint-text, .theme-default-light .deep-orange-500.disabled-text,
.theme-default-light .deep-orange-500 .disabled-text, .theme-default-light .deep-orange-600.hint-text,
.theme-default-light .deep-orange-600 .hint-text, .theme-default-light .deep-orange-600.disabled-text,
.theme-default-light .deep-orange-600 .disabled-text, .theme-default-light .deep-orange-700.hint-text,
.theme-default-light .deep-orange-700 .hint-text, .theme-default-light .deep-orange-700.disabled-text,
.theme-default-light .deep-orange-700 .disabled-text, .theme-default-light .deep-orange-800.hint-text,
.theme-default-light .deep-orange-800 .hint-text, .theme-default-light .deep-orange-800.disabled-text,
.theme-default-light .deep-orange-800 .disabled-text, .theme-default-light .deep-orange-900.hint-text,
.theme-default-light .deep-orange-900 .hint-text, .theme-default-light .deep-orange-900.disabled-text,
.theme-default-light .deep-orange-900 .disabled-text, .theme-default-light .deep-orange-A400.hint-text,
.theme-default-light .deep-orange-A400 .hint-text, .theme-default-light .deep-orange-A400.disabled-text,
.theme-default-light .deep-orange-A400 .disabled-text, .theme-default-light .deep-orange-A700.hint-text,
.theme-default-light .deep-orange-A700 .hint-text, .theme-default-light .deep-orange-A700.disabled-text,
.theme-default-light .deep-orange-A700 .disabled-text, .theme-default-light .brown-300.hint-text,
.theme-default-light .brown-300 .hint-text, .theme-default-light .brown-300.disabled-text,
.theme-default-light .brown-300 .disabled-text, .theme-default-light .brown-400.hint-text,
.theme-default-light .brown-400 .hint-text, .theme-default-light .brown-400.disabled-text,
.theme-default-light .brown-400 .disabled-text, .theme-default-light .brown-500.hint-text,
.theme-default-light .brown-500 .hint-text, .theme-default-light .brown-500.disabled-text,
.theme-default-light .brown-500 .disabled-text, .theme-default-light .brown-600.hint-text,
.theme-default-light .brown-600 .hint-text, .theme-default-light .brown-600.disabled-text,
.theme-default-light .brown-600 .disabled-text, .theme-default-light .brown-700.hint-text,
.theme-default-light .brown-700 .hint-text, .theme-default-light .brown-700.disabled-text,
.theme-default-light .brown-700 .disabled-text, .theme-default-light .brown-800.hint-text,
.theme-default-light .brown-800 .hint-text, .theme-default-light .brown-800.disabled-text,
.theme-default-light .brown-800 .disabled-text, .theme-default-light .brown-900.hint-text,
.theme-default-light .brown-900 .hint-text, .theme-default-light .brown-900.disabled-text,
.theme-default-light .brown-900 .disabled-text, .theme-default-light .brown-A400.hint-text,
.theme-default-light .brown-A400 .hint-text, .theme-default-light .brown-A400.disabled-text,
.theme-default-light .brown-A400 .disabled-text, .theme-default-light .brown-A700.hint-text,
.theme-default-light .brown-A700 .hint-text, .theme-default-light .brown-A700.disabled-text,
.theme-default-light .brown-A700 .disabled-text, .theme-default-light .grey-500.hint-text,
.theme-default-light .grey-500 .hint-text, .theme-default-light .grey-500.disabled-text,
.theme-default-light .grey-500 .disabled-text, .theme-default-light .grey-600.hint-text,
.theme-default-light .grey-600 .hint-text, .theme-default-light .grey-600.disabled-text,
.theme-default-light .grey-600 .disabled-text, .theme-default-light .grey-700.hint-text,
.theme-default-light .grey-700 .hint-text, .theme-default-light .grey-700.disabled-text,
.theme-default-light .grey-700 .disabled-text, .theme-default-light .grey-800.hint-text,
.theme-default-light .grey-800 .hint-text, .theme-default-light .grey-800.disabled-text,
.theme-default-light .grey-800 .disabled-text, .theme-default-light .grey-900.hint-text,
.theme-default-light .grey-900 .hint-text, .theme-default-light .grey-900.disabled-text,
.theme-default-light .grey-900 .disabled-text, .theme-default-light .blue-grey-400.hint-text,
.theme-default-light .blue-grey-400 .hint-text, .theme-default-light .blue-grey-400.disabled-text,
.theme-default-light .blue-grey-400 .disabled-text, .theme-default-light .blue-grey-500.hint-text,
.theme-default-light .blue-grey-500 .hint-text, .theme-default-light .blue-grey-500.disabled-text,
.theme-default-light .blue-grey-500 .disabled-text, .theme-default-light .blue-grey-600.hint-text,
.theme-default-light .blue-grey-600 .hint-text, .theme-default-light .blue-grey-600.disabled-text,
.theme-default-light .blue-grey-600 .disabled-text, .theme-default-light .blue-grey-700.hint-text,
.theme-default-light .blue-grey-700 .hint-text, .theme-default-light .blue-grey-700.disabled-text,
.theme-default-light .blue-grey-700 .disabled-text, .theme-default-light .blue-grey-800.hint-text,
.theme-default-light .blue-grey-800 .hint-text, .theme-default-light .blue-grey-800.disabled-text,
.theme-default-light .blue-grey-800 .disabled-text, .theme-default-light .blue-grey-900.hint-text,
.theme-default-light .blue-grey-900 .hint-text, .theme-default-light .blue-grey-900.disabled-text,
.theme-default-light .blue-grey-900 .disabled-text, .theme-default-light .blue-grey-A400.hint-text,
.theme-default-light .blue-grey-A400 .hint-text, .theme-default-light .blue-grey-A400.disabled-text,
.theme-default-light .blue-grey-A400 .disabled-text, .theme-default-light .blue-grey-A700.hint-text,
.theme-default-light .blue-grey-A700 .hint-text, .theme-default-light .blue-grey-A700.disabled-text,
.theme-default-light .blue-grey-A700 .disabled-text, .theme-default-light .dark-grey-50.hint-text,
.theme-default-light .dark-grey-50 .hint-text, .theme-default-light .dark-grey-50.disabled-text,
.theme-default-light .dark-grey-50 .disabled-text, .theme-default-light .dark-grey-100.hint-text,
.theme-default-light .dark-grey-100 .hint-text, .theme-default-light .dark-grey-100.disabled-text,
.theme-default-light .dark-grey-100 .disabled-text, .theme-default-light .dark-grey-200.hint-text,
.theme-default-light .dark-grey-200 .hint-text, .theme-default-light .dark-grey-200.disabled-text,
.theme-default-light .dark-grey-200 .disabled-text, .theme-default-light .dark-grey-300.hint-text,
.theme-default-light .dark-grey-300 .hint-text, .theme-default-light .dark-grey-300.disabled-text,
.theme-default-light .dark-grey-300 .disabled-text, .theme-default-light .dark-grey-400.hint-text,
.theme-default-light .dark-grey-400 .hint-text, .theme-default-light .dark-grey-400.disabled-text,
.theme-default-light .dark-grey-400 .disabled-text, .theme-default-light .dark-grey-500.hint-text,
.theme-default-light .dark-grey-500 .hint-text, .theme-default-light .dark-grey-500.disabled-text,
.theme-default-light .dark-grey-500 .disabled-text, .theme-default-light .dark-grey-600.hint-text,
.theme-default-light .dark-grey-600 .hint-text, .theme-default-light .dark-grey-600.disabled-text,
.theme-default-light .dark-grey-600 .disabled-text, .theme-default-light .dark-grey-700.hint-text,
.theme-default-light .dark-grey-700 .hint-text, .theme-default-light .dark-grey-700.disabled-text,
.theme-default-light .dark-grey-700 .disabled-text, .theme-default-light .dark-grey-800.hint-text,
.theme-default-light .dark-grey-800 .hint-text, .theme-default-light .dark-grey-800.disabled-text,
.theme-default-light .dark-grey-800 .disabled-text, .theme-default-light .dark-grey-900.hint-text,
.theme-default-light .dark-grey-900 .hint-text, .theme-default-light .dark-grey-900.disabled-text,
.theme-default-light .dark-grey-900 .disabled-text, .theme-default-light .dark-grey-A100.hint-text,
.theme-default-light .dark-grey-A100 .hint-text, .theme-default-light .dark-grey-A100.disabled-text,
.theme-default-light .dark-grey-A100 .disabled-text, .theme-default-light .dark-grey-A200.hint-text,
.theme-default-light .dark-grey-A200 .hint-text, .theme-default-light .dark-grey-A200.disabled-text,
.theme-default-light .dark-grey-A200 .disabled-text, .theme-default-light .dark-grey-A400.hint-text,
.theme-default-light .dark-grey-A400 .hint-text, .theme-default-light .dark-grey-A400.disabled-text,
.theme-default-light .dark-grey-A400 .disabled-text, .theme-default-light .dark-grey-A700.hint-text,
.theme-default-light .dark-grey-A700 .hint-text, .theme-default-light .dark-grey-A700.disabled-text,
.theme-default-light .dark-grey-A700 .disabled-text, .theme-default-light .primary-400.hint-text,
.theme-default-light .primary-400 .hint-text, .theme-default-light .primary-400.disabled-text,
.theme-default-light .primary-400 .disabled-text, .theme-default-light .primary-500.hint-text,
.theme-default-light .primary-500 .hint-text, .theme-default-light .primary-500.disabled-text,
.theme-default-light .primary-500 .disabled-text, .theme-default-light .primary-600.hint-text,
.theme-default-light .primary-600 .hint-text, .theme-default-light .primary-600.disabled-text,
.theme-default-light .primary-600 .disabled-text, .theme-default-light .primary-700.hint-text,
.theme-default-light .primary-700 .hint-text, .theme-default-light .primary-700.disabled-text,
.theme-default-light .primary-700 .disabled-text, .theme-default-light .primary-800.hint-text,
.theme-default-light .primary-800 .hint-text, .theme-default-light .primary-800.disabled-text,
.theme-default-light .primary-800 .disabled-text, .theme-default-light .primary-900.hint-text,
.theme-default-light .primary-900 .hint-text, .theme-default-light .primary-900.disabled-text,
.theme-default-light .primary-900 .disabled-text, .theme-default-light .primary-A400.hint-text,
.theme-default-light .primary-A400 .hint-text, .theme-default-light .primary-A400.disabled-text,
.theme-default-light .primary-A400 .disabled-text, .theme-default-light .primary-A700.hint-text,
.theme-default-light .primary-A700 .hint-text, .theme-default-light .primary-A700.disabled-text,
.theme-default-light .primary-A700 .disabled-text, .theme-default-light .accent-400.hint-text,
.theme-default-light .accent-400 .hint-text, .theme-default-light .accent-400.disabled-text,
.theme-default-light .accent-400 .disabled-text, .theme-default-light .accent-500.hint-text,
.theme-default-light .accent-500 .hint-text, .theme-default-light .accent-500.disabled-text,
.theme-default-light .accent-500 .disabled-text, .theme-default-light .accent-600.hint-text,
.theme-default-light .accent-600 .hint-text, .theme-default-light .accent-600.disabled-text,
.theme-default-light .accent-600 .disabled-text, .theme-default-light .accent-700.hint-text,
.theme-default-light .accent-700 .hint-text, .theme-default-light .accent-700.disabled-text,
.theme-default-light .accent-700 .disabled-text, .theme-default-light .accent-800.hint-text,
.theme-default-light .accent-800 .hint-text, .theme-default-light .accent-800.disabled-text,
.theme-default-light .accent-800 .disabled-text, .theme-default-light .accent-900.hint-text,
.theme-default-light .accent-900 .hint-text, .theme-default-light .accent-900.disabled-text,
.theme-default-light .accent-900 .disabled-text, .theme-default-light .accent-A200.hint-text,
.theme-default-light .accent-A200 .hint-text, .theme-default-light .accent-A200.disabled-text,
.theme-default-light .accent-A200 .disabled-text, .theme-default-light .accent-A400.hint-text,
.theme-default-light .accent-A400 .hint-text, .theme-default-light .accent-A400.disabled-text,
.theme-default-light .accent-A400 .disabled-text, .theme-default-light .accent-A700.hint-text,
.theme-default-light .accent-A700 .hint-text, .theme-default-light .accent-A700.disabled-text,
.theme-default-light .accent-A700 .disabled-text, .theme-default-light .warn-500.hint-text,
.theme-default-light .warn-500 .hint-text, .theme-default-light .warn-500.disabled-text,
.theme-default-light .warn-500 .disabled-text, .theme-default-light .warn-600.hint-text,
.theme-default-light .warn-600 .hint-text, .theme-default-light .warn-600.disabled-text,
.theme-default-light .warn-600 .disabled-text, .theme-default-light .warn-700.hint-text,
.theme-default-light .warn-700 .hint-text, .theme-default-light .warn-700.disabled-text,
.theme-default-light .warn-700 .disabled-text, .theme-default-light .warn-800.hint-text,
.theme-default-light .warn-800 .hint-text, .theme-default-light .warn-800.disabled-text,
.theme-default-light .warn-800 .disabled-text, .theme-default-light .warn-900.hint-text,
.theme-default-light .warn-900 .hint-text, .theme-default-light .warn-900.disabled-text,
.theme-default-light .warn-900 .disabled-text, .theme-default-light .warn-A200.hint-text,
.theme-default-light .warn-A200 .hint-text, .theme-default-light .warn-A200.disabled-text,
.theme-default-light .warn-A200 .disabled-text, .theme-default-light .warn-A400.hint-text,
.theme-default-light .warn-A400 .hint-text, .theme-default-light .warn-A400.disabled-text,
.theme-default-light .warn-A400 .disabled-text, .theme-default-light .warn-A700.hint-text,
.theme-default-light .warn-A700 .hint-text, .theme-default-light .warn-A700.disabled-text,
.theme-default-light .warn-A700 .disabled-text {
  color: rgba(255, 255, 255, 0.5) !important;
}
.theme-default-light .red-500.divider,
.theme-default-light .red-500 .divider, .theme-default-light .red-600.divider,
.theme-default-light .red-600 .divider, .theme-default-light .red-700.divider,
.theme-default-light .red-700 .divider, .theme-default-light .red-800.divider,
.theme-default-light .red-800 .divider, .theme-default-light .red-900.divider,
.theme-default-light .red-900 .divider, .theme-default-light .red-A200.divider,
.theme-default-light .red-A200 .divider, .theme-default-light .red-A400.divider,
.theme-default-light .red-A400 .divider, .theme-default-light .red-A700.divider,
.theme-default-light .red-A700 .divider, .theme-default-light .pink-500.divider,
.theme-default-light .pink-500 .divider, .theme-default-light .pink-600.divider,
.theme-default-light .pink-600 .divider, .theme-default-light .pink-700.divider,
.theme-default-light .pink-700 .divider, .theme-default-light .pink-800.divider,
.theme-default-light .pink-800 .divider, .theme-default-light .pink-900.divider,
.theme-default-light .pink-900 .divider, .theme-default-light .pink-A200.divider,
.theme-default-light .pink-A200 .divider, .theme-default-light .pink-A400.divider,
.theme-default-light .pink-A400 .divider, .theme-default-light .pink-A700.divider,
.theme-default-light .pink-A700 .divider, .theme-default-light .purple-300.divider,
.theme-default-light .purple-300 .divider, .theme-default-light .purple-400.divider,
.theme-default-light .purple-400 .divider, .theme-default-light .purple-500.divider,
.theme-default-light .purple-500 .divider, .theme-default-light .purple-600.divider,
.theme-default-light .purple-600 .divider, .theme-default-light .purple-700.divider,
.theme-default-light .purple-700 .divider, .theme-default-light .purple-800.divider,
.theme-default-light .purple-800 .divider, .theme-default-light .purple-900.divider,
.theme-default-light .purple-900 .divider, .theme-default-light .purple-A200.divider,
.theme-default-light .purple-A200 .divider, .theme-default-light .purple-A400.divider,
.theme-default-light .purple-A400 .divider, .theme-default-light .purple-A700.divider,
.theme-default-light .purple-A700 .divider, .theme-default-light .deep-purple-300.divider,
.theme-default-light .deep-purple-300 .divider, .theme-default-light .deep-purple-400.divider,
.theme-default-light .deep-purple-400 .divider, .theme-default-light .deep-purple-500.divider,
.theme-default-light .deep-purple-500 .divider, .theme-default-light .deep-purple-600.divider,
.theme-default-light .deep-purple-600 .divider, .theme-default-light .deep-purple-700.divider,
.theme-default-light .deep-purple-700 .divider, .theme-default-light .deep-purple-800.divider,
.theme-default-light .deep-purple-800 .divider, .theme-default-light .deep-purple-900.divider,
.theme-default-light .deep-purple-900 .divider, .theme-default-light .deep-purple-A200.divider,
.theme-default-light .deep-purple-A200 .divider, .theme-default-light .deep-purple-A400.divider,
.theme-default-light .deep-purple-A400 .divider, .theme-default-light .deep-purple-A700.divider,
.theme-default-light .deep-purple-A700 .divider, .theme-default-light .indigo-300.divider,
.theme-default-light .indigo-300 .divider, .theme-default-light .indigo-400.divider,
.theme-default-light .indigo-400 .divider, .theme-default-light .indigo-500.divider,
.theme-default-light .indigo-500 .divider, .theme-default-light .indigo-600.divider,
.theme-default-light .indigo-600 .divider, .theme-default-light .indigo-700.divider,
.theme-default-light .indigo-700 .divider, .theme-default-light .indigo-800.divider,
.theme-default-light .indigo-800 .divider, .theme-default-light .indigo-900.divider,
.theme-default-light .indigo-900 .divider, .theme-default-light .indigo-A200.divider,
.theme-default-light .indigo-A200 .divider, .theme-default-light .indigo-A400.divider,
.theme-default-light .indigo-A400 .divider, .theme-default-light .indigo-A700.divider,
.theme-default-light .indigo-A700 .divider, .theme-default-light .blue-400.divider,
.theme-default-light .blue-400 .divider, .theme-default-light .blue-500.divider,
.theme-default-light .blue-500 .divider, .theme-default-light .blue-600.divider,
.theme-default-light .blue-600 .divider, .theme-default-light .blue-700.divider,
.theme-default-light .blue-700 .divider, .theme-default-light .blue-800.divider,
.theme-default-light .blue-800 .divider, .theme-default-light .blue-900.divider,
.theme-default-light .blue-900 .divider, .theme-default-light .blue-A200.divider,
.theme-default-light .blue-A200 .divider, .theme-default-light .blue-A400.divider,
.theme-default-light .blue-A400 .divider, .theme-default-light .blue-A700.divider,
.theme-default-light .blue-A700 .divider, .theme-default-light .light-blue-500.divider,
.theme-default-light .light-blue-500 .divider, .theme-default-light .light-blue-600.divider,
.theme-default-light .light-blue-600 .divider, .theme-default-light .light-blue-700.divider,
.theme-default-light .light-blue-700 .divider, .theme-default-light .light-blue-800.divider,
.theme-default-light .light-blue-800 .divider, .theme-default-light .light-blue-900.divider,
.theme-default-light .light-blue-900 .divider, .theme-default-light .light-blue-A700.divider,
.theme-default-light .light-blue-A700 .divider, .theme-default-light .cyan-500.divider,
.theme-default-light .cyan-500 .divider, .theme-default-light .cyan-600.divider,
.theme-default-light .cyan-600 .divider, .theme-default-light .cyan-700.divider,
.theme-default-light .cyan-700 .divider, .theme-default-light .cyan-800.divider,
.theme-default-light .cyan-800 .divider, .theme-default-light .cyan-900.divider,
.theme-default-light .cyan-900 .divider, .theme-default-light .teal-500.divider,
.theme-default-light .teal-500 .divider, .theme-default-light .teal-600.divider,
.theme-default-light .teal-600 .divider, .theme-default-light .teal-700.divider,
.theme-default-light .teal-700 .divider, .theme-default-light .teal-800.divider,
.theme-default-light .teal-800 .divider, .theme-default-light .teal-900.divider,
.theme-default-light .teal-900 .divider, .theme-default-light .green-500.divider,
.theme-default-light .green-500 .divider, .theme-default-light .green-600.divider,
.theme-default-light .green-600 .divider, .theme-default-light .green-700.divider,
.theme-default-light .green-700 .divider, .theme-default-light .green-800.divider,
.theme-default-light .green-800 .divider, .theme-default-light .green-900.divider,
.theme-default-light .green-900 .divider, .theme-default-light .light-green-600.divider,
.theme-default-light .light-green-600 .divider, .theme-default-light .light-green-700.divider,
.theme-default-light .light-green-700 .divider, .theme-default-light .light-green-800.divider,
.theme-default-light .light-green-800 .divider, .theme-default-light .light-green-900.divider,
.theme-default-light .light-green-900 .divider, .theme-default-light .lime-500.divider,
.theme-default-light .lime-500 .divider, .theme-default-light .lime-600.divider,
.theme-default-light .lime-600 .divider, .theme-default-light .lime-700.divider,
.theme-default-light .lime-700 .divider, .theme-default-light .lime-800.divider,
.theme-default-light .lime-800 .divider, .theme-default-light .lime-900.divider,
.theme-default-light .lime-900 .divider, .theme-default-light .orange-800.divider,
.theme-default-light .orange-800 .divider, .theme-default-light .orange-900.divider,
.theme-default-light .orange-900 .divider, .theme-default-light .deep-orange-500.divider,
.theme-default-light .deep-orange-500 .divider, .theme-default-light .deep-orange-600.divider,
.theme-default-light .deep-orange-600 .divider, .theme-default-light .deep-orange-700.divider,
.theme-default-light .deep-orange-700 .divider, .theme-default-light .deep-orange-800.divider,
.theme-default-light .deep-orange-800 .divider, .theme-default-light .deep-orange-900.divider,
.theme-default-light .deep-orange-900 .divider, .theme-default-light .deep-orange-A400.divider,
.theme-default-light .deep-orange-A400 .divider, .theme-default-light .deep-orange-A700.divider,
.theme-default-light .deep-orange-A700 .divider, .theme-default-light .brown-300.divider,
.theme-default-light .brown-300 .divider, .theme-default-light .brown-400.divider,
.theme-default-light .brown-400 .divider, .theme-default-light .brown-500.divider,
.theme-default-light .brown-500 .divider, .theme-default-light .brown-600.divider,
.theme-default-light .brown-600 .divider, .theme-default-light .brown-700.divider,
.theme-default-light .brown-700 .divider, .theme-default-light .brown-800.divider,
.theme-default-light .brown-800 .divider, .theme-default-light .brown-900.divider,
.theme-default-light .brown-900 .divider, .theme-default-light .brown-A400.divider,
.theme-default-light .brown-A400 .divider, .theme-default-light .brown-A700.divider,
.theme-default-light .brown-A700 .divider, .theme-default-light .grey-500.divider,
.theme-default-light .grey-500 .divider, .theme-default-light .grey-600.divider,
.theme-default-light .grey-600 .divider, .theme-default-light .grey-700.divider,
.theme-default-light .grey-700 .divider, .theme-default-light .grey-800.divider,
.theme-default-light .grey-800 .divider, .theme-default-light .grey-900.divider,
.theme-default-light .grey-900 .divider, .theme-default-light .blue-grey-400.divider,
.theme-default-light .blue-grey-400 .divider, .theme-default-light .blue-grey-500.divider,
.theme-default-light .blue-grey-500 .divider, .theme-default-light .blue-grey-600.divider,
.theme-default-light .blue-grey-600 .divider, .theme-default-light .blue-grey-700.divider,
.theme-default-light .blue-grey-700 .divider, .theme-default-light .blue-grey-800.divider,
.theme-default-light .blue-grey-800 .divider, .theme-default-light .blue-grey-900.divider,
.theme-default-light .blue-grey-900 .divider, .theme-default-light .blue-grey-A400.divider,
.theme-default-light .blue-grey-A400 .divider, .theme-default-light .blue-grey-A700.divider,
.theme-default-light .blue-grey-A700 .divider, .theme-default-light .dark-grey-50.divider,
.theme-default-light .dark-grey-50 .divider, .theme-default-light .dark-grey-100.divider,
.theme-default-light .dark-grey-100 .divider, .theme-default-light .dark-grey-200.divider,
.theme-default-light .dark-grey-200 .divider, .theme-default-light .dark-grey-300.divider,
.theme-default-light .dark-grey-300 .divider, .theme-default-light .dark-grey-400.divider,
.theme-default-light .dark-grey-400 .divider, .theme-default-light .dark-grey-500.divider,
.theme-default-light .dark-grey-500 .divider, .theme-default-light .dark-grey-600.divider,
.theme-default-light .dark-grey-600 .divider, .theme-default-light .dark-grey-700.divider,
.theme-default-light .dark-grey-700 .divider, .theme-default-light .dark-grey-800.divider,
.theme-default-light .dark-grey-800 .divider, .theme-default-light .dark-grey-900.divider,
.theme-default-light .dark-grey-900 .divider, .theme-default-light .dark-grey-A100.divider,
.theme-default-light .dark-grey-A100 .divider, .theme-default-light .dark-grey-A200.divider,
.theme-default-light .dark-grey-A200 .divider, .theme-default-light .dark-grey-A400.divider,
.theme-default-light .dark-grey-A400 .divider, .theme-default-light .dark-grey-A700.divider,
.theme-default-light .dark-grey-A700 .divider, .theme-default-light .primary-400.divider,
.theme-default-light .primary-400 .divider, .theme-default-light .primary-500.divider,
.theme-default-light .primary-500 .divider, .theme-default-light .primary-600.divider,
.theme-default-light .primary-600 .divider, .theme-default-light .primary-700.divider,
.theme-default-light .primary-700 .divider, .theme-default-light .primary-800.divider,
.theme-default-light .primary-800 .divider, .theme-default-light .primary-900.divider,
.theme-default-light .primary-900 .divider, .theme-default-light .primary-A400.divider,
.theme-default-light .primary-A400 .divider, .theme-default-light .primary-A700.divider,
.theme-default-light .primary-A700 .divider, .theme-default-light .accent-400.divider,
.theme-default-light .accent-400 .divider, .theme-default-light .accent-500.divider,
.theme-default-light .accent-500 .divider, .theme-default-light .accent-600.divider,
.theme-default-light .accent-600 .divider, .theme-default-light .accent-700.divider,
.theme-default-light .accent-700 .divider, .theme-default-light .accent-800.divider,
.theme-default-light .accent-800 .divider, .theme-default-light .accent-900.divider,
.theme-default-light .accent-900 .divider, .theme-default-light .accent-A200.divider,
.theme-default-light .accent-A200 .divider, .theme-default-light .accent-A400.divider,
.theme-default-light .accent-A400 .divider, .theme-default-light .accent-A700.divider,
.theme-default-light .accent-A700 .divider, .theme-default-light .warn-500.divider,
.theme-default-light .warn-500 .divider, .theme-default-light .warn-600.divider,
.theme-default-light .warn-600 .divider, .theme-default-light .warn-700.divider,
.theme-default-light .warn-700 .divider, .theme-default-light .warn-800.divider,
.theme-default-light .warn-800 .divider, .theme-default-light .warn-900.divider,
.theme-default-light .warn-900 .divider, .theme-default-light .warn-A200.divider,
.theme-default-light .warn-A200 .divider, .theme-default-light .warn-A400.divider,
.theme-default-light .warn-A400 .divider, .theme-default-light .warn-A700.divider,
.theme-default-light .warn-A700 .divider {
  color: rgba(255, 255, 255, 0.12) !important;
}
.theme-default-light .color-unset {
  color: #21282C;
}
.theme-default-light .color-unset .ripple {
  background: #21282C;
}
.theme-default-light .background-red-alpha {
  background: rgba(229, 58, 58, 0.2);
}
.theme-default-light .red .ripple {
  background: rgba(229, 58, 58, 0.2);
}
.theme-default-light .background-red {
  background: #e53a3a;
}
.theme-default-light .border-color-red {
  border-color: #e53a3a;
}
.theme-default-light .color-red {
  color: #e53a3a !important;
}
.theme-default-light .fill-red {
  fill: #e53a3a;
}
.theme-default-light .stroke-red {
  stroke: #e53a3a;
}
.theme-default-light .color-red-alpha {
  color: rgba(229, 58, 58, 0.2) !important;
}
.theme-default-light .red-alpha {
  background: rgba(229, 58, 58, 0.2);
  color: #e53a3a;
}
.theme-default-light .red {
  background: #e53a3a;
  color: white;
}
.theme-default-light .background-pink-alpha {
  background: rgba(233, 30, 99, 0.2);
}
.theme-default-light .pink .ripple {
  background: rgba(233, 30, 99, 0.2);
}
.theme-default-light .background-pink {
  background: #e91e63;
}
.theme-default-light .border-color-pink {
  border-color: #e91e63;
}
.theme-default-light .color-pink {
  color: #e91e63 !important;
}
.theme-default-light .fill-pink {
  fill: #e91e63;
}
.theme-default-light .stroke-pink {
  stroke: #e91e63;
}
.theme-default-light .color-pink-alpha {
  color: rgba(233, 30, 99, 0.2) !important;
}
.theme-default-light .pink-alpha {
  background: rgba(233, 30, 99, 0.2);
  color: #e91e63;
}
.theme-default-light .pink {
  background: #e91e63;
  color: white;
}
.theme-default-light .background-purple-alpha {
  background: rgba(156, 39, 176, 0.2);
}
.theme-default-light .purple .ripple {
  background: rgba(156, 39, 176, 0.2);
}
.theme-default-light .background-purple {
  background: #9c27b0;
}
.theme-default-light .border-color-purple {
  border-color: #9c27b0;
}
.theme-default-light .color-purple {
  color: #9c27b0 !important;
}
.theme-default-light .fill-purple {
  fill: #9c27b0;
}
.theme-default-light .stroke-purple {
  stroke: #9c27b0;
}
.theme-default-light .color-purple-alpha {
  color: rgba(156, 39, 176, 0.2) !important;
}
.theme-default-light .purple-alpha {
  background: rgba(156, 39, 176, 0.2);
  color: #9c27b0;
}
.theme-default-light .purple {
  background: #9c27b0;
  color: white;
}
.theme-default-light .background-deep-purple-alpha {
  background: rgba(103, 58, 183, 0.2);
}
.theme-default-light .deep-purple .ripple {
  background: rgba(103, 58, 183, 0.2);
}
.theme-default-light .background-deep-purple {
  background: #673ab7;
}
.theme-default-light .border-color-deep-purple {
  border-color: #673ab7;
}
.theme-default-light .color-deep-purple {
  color: #673ab7 !important;
}
.theme-default-light .fill-deep-purple {
  fill: #673ab7;
}
.theme-default-light .stroke-deep-purple {
  stroke: #673ab7;
}
.theme-default-light .color-deep-purple-alpha {
  color: rgba(103, 58, 183, 0.2) !important;
}
.theme-default-light .deep-purple-alpha {
  background: rgba(103, 58, 183, 0.2);
  color: #673ab7;
}
.theme-default-light .deep-purple {
  background: #673ab7;
  color: white;
}
.theme-default-light .background-indigo-alpha {
  background: rgba(63, 81, 181, 0.2);
}
.theme-default-light .indigo .ripple {
  background: rgba(63, 81, 181, 0.2);
}
.theme-default-light .background-indigo {
  background: #3f51b5;
}
.theme-default-light .border-color-indigo {
  border-color: #3f51b5;
}
.theme-default-light .color-indigo {
  color: #3f51b5 !important;
}
.theme-default-light .fill-indigo {
  fill: #3f51b5;
}
.theme-default-light .stroke-indigo {
  stroke: #3f51b5;
}
.theme-default-light .color-indigo-alpha {
  color: rgba(63, 81, 181, 0.2) !important;
}
.theme-default-light .indigo-alpha {
  background: rgba(63, 81, 181, 0.2);
  color: #3f51b5;
}
.theme-default-light .indigo {
  background: #3f51b5;
  color: white;
}
.theme-default-light .background-blue-alpha {
  background: rgba(30, 91, 218, 0.2);
}
.theme-default-light .blue .ripple {
  background: rgba(30, 91, 218, 0.2);
}
.theme-default-light .background-blue {
  background: #1e5bda;
}
.theme-default-light .border-color-blue {
  border-color: #1e5bda;
}
.theme-default-light .color-blue {
  color: #1e5bda !important;
}
.theme-default-light .fill-blue {
  fill: #1e5bda;
}
.theme-default-light .stroke-blue {
  stroke: #1e5bda;
}
.theme-default-light .color-blue-alpha {
  color: rgba(30, 91, 218, 0.2) !important;
}
.theme-default-light .blue-alpha {
  background: rgba(30, 91, 218, 0.2);
  color: #1e5bda;
}
.theme-default-light .blue {
  background: #1e5bda;
  color: white;
}
.theme-default-light .background-light-blue-alpha {
  background: rgba(3, 169, 244, 0.2);
}
.theme-default-light .light-blue .ripple {
  background: rgba(3, 169, 244, 0.2);
}
.theme-default-light .background-light-blue {
  background: #03a9f4;
}
.theme-default-light .border-color-light-blue {
  border-color: #03a9f4;
}
.theme-default-light .color-light-blue {
  color: #03a9f4 !important;
}
.theme-default-light .fill-light-blue {
  fill: #03a9f4;
}
.theme-default-light .stroke-light-blue {
  stroke: #03a9f4;
}
.theme-default-light .color-light-blue-alpha {
  color: rgba(3, 169, 244, 0.2) !important;
}
.theme-default-light .light-blue-alpha {
  background: rgba(3, 169, 244, 0.2);
  color: #03a9f4;
}
.theme-default-light .light-blue {
  background: #03a9f4;
  color: white;
}
.theme-default-light .background-cyan-alpha {
  background: rgba(0, 188, 212, 0.2);
}
.theme-default-light .cyan .ripple {
  background: rgba(0, 188, 212, 0.2);
}
.theme-default-light .background-cyan {
  background: #00bcd4;
}
.theme-default-light .border-color-cyan {
  border-color: #00bcd4;
}
.theme-default-light .color-cyan {
  color: #00bcd4 !important;
}
.theme-default-light .fill-cyan {
  fill: #00bcd4;
}
.theme-default-light .stroke-cyan {
  stroke: #00bcd4;
}
.theme-default-light .color-cyan-alpha {
  color: rgba(0, 188, 212, 0.2) !important;
}
.theme-default-light .cyan-alpha {
  background: rgba(0, 188, 212, 0.2);
  color: #00bcd4;
}
.theme-default-light .cyan {
  background: #00bcd4;
  color: white;
}
.theme-default-light .background-teal-alpha {
  background: rgba(0, 150, 136, 0.2);
}
.theme-default-light .teal .ripple {
  background: rgba(0, 150, 136, 0.2);
}
.theme-default-light .background-teal {
  background: #009688;
}
.theme-default-light .border-color-teal {
  border-color: #009688;
}
.theme-default-light .color-teal {
  color: #009688 !important;
}
.theme-default-light .fill-teal {
  fill: #009688;
}
.theme-default-light .stroke-teal {
  stroke: #009688;
}
.theme-default-light .color-teal-alpha {
  color: rgba(0, 150, 136, 0.2) !important;
}
.theme-default-light .teal-alpha {
  background: rgba(0, 150, 136, 0.2);
  color: #009688;
}
.theme-default-light .teal {
  background: #009688;
  color: white;
}
.theme-default-light .background-green-alpha {
  background: rgba(17, 144, 70, 0.2);
}
.theme-default-light .green .ripple {
  background: rgba(17, 144, 70, 0.2);
}
.theme-default-light .background-green {
  background: #119046;
}
.theme-default-light .border-color-green {
  border-color: #119046;
}
.theme-default-light .color-green {
  color: #119046 !important;
}
.theme-default-light .fill-green {
  fill: #119046;
}
.theme-default-light .stroke-green {
  stroke: #119046;
}
.theme-default-light .color-green-alpha {
  color: rgba(17, 144, 70, 0.2) !important;
}
.theme-default-light .green-alpha {
  background: rgba(17, 144, 70, 0.2);
  color: #119046;
}
.theme-default-light .green {
  background: #119046;
  color: white;
}
.theme-default-light .background-light-green-alpha {
  background: rgba(110, 218, 44, 0.2);
}
.theme-default-light .light-green .ripple {
  background: rgba(110, 218, 44, 0.2);
}
.theme-default-light .background-light-green {
  background: #6EDA2C;
}
.theme-default-light .border-color-light-green {
  border-color: #6EDA2C;
}
.theme-default-light .color-light-green {
  color: #6EDA2C !important;
}
.theme-default-light .fill-light-green {
  fill: #6EDA2C;
}
.theme-default-light .stroke-light-green {
  stroke: #6EDA2C;
}
.theme-default-light .color-light-green-alpha {
  color: rgba(110, 218, 44, 0.2) !important;
}
.theme-default-light .light-green-alpha {
  background: rgba(110, 218, 44, 0.2);
  color: #6EDA2C;
}
.theme-default-light .light-green {
  background: #6EDA2C;
  color: rgba(0, 0, 0, 0.87);
}
.theme-default-light .background-lime-alpha {
  background: rgba(134, 189, 0, 0.2);
}
.theme-default-light .lime .ripple {
  background: rgba(134, 189, 0, 0.2);
}
.theme-default-light .background-lime {
  background: #86bd00;
}
.theme-default-light .border-color-lime {
  border-color: #86bd00;
}
.theme-default-light .color-lime {
  color: #86bd00 !important;
}
.theme-default-light .fill-lime {
  fill: #86bd00;
}
.theme-default-light .stroke-lime {
  stroke: #86bd00;
}
.theme-default-light .color-lime-alpha {
  color: rgba(134, 189, 0, 0.2) !important;
}
.theme-default-light .lime-alpha {
  background: rgba(134, 189, 0, 0.2);
  color: #86bd00;
}
.theme-default-light .lime {
  background: #86bd00;
  color: white;
}
.theme-default-light .background-yellow-alpha {
  background: rgba(232, 195, 0, 0.2);
}
.theme-default-light .yellow .ripple {
  background: rgba(232, 195, 0, 0.2);
}
.theme-default-light .background-yellow {
  background: #e8c300;
}
.theme-default-light .border-color-yellow {
  border-color: #e8c300;
}
.theme-default-light .color-yellow {
  color: #e8c300 !important;
}
.theme-default-light .fill-yellow {
  fill: #e8c300;
}
.theme-default-light .stroke-yellow {
  stroke: #e8c300;
}
.theme-default-light .color-yellow-alpha {
  color: rgba(232, 195, 0, 0.2) !important;
}
.theme-default-light .yellow-alpha {
  background: rgba(232, 195, 0, 0.2);
  color: #e8c300;
}
.theme-default-light .yellow {
  background: #e8c300;
  color: rgba(0, 0, 0, 0.87);
}
.theme-default-light .background-amber-alpha {
  background: rgba(250, 166, 26, 0.2);
}
.theme-default-light .amber .ripple {
  background: rgba(250, 166, 26, 0.2);
}
.theme-default-light .background-amber {
  background: #faa61a;
}
.theme-default-light .border-color-amber {
  border-color: #faa61a;
}
.theme-default-light .color-amber {
  color: #faa61a !important;
}
.theme-default-light .fill-amber {
  fill: #faa61a;
}
.theme-default-light .stroke-amber {
  stroke: #faa61a;
}
.theme-default-light .color-amber-alpha {
  color: rgba(250, 166, 26, 0.2) !important;
}
.theme-default-light .amber-alpha {
  background: rgba(250, 166, 26, 0.2);
  color: #faa61a;
}
.theme-default-light .amber {
  background: #faa61a;
  color: rgba(0, 0, 0, 0.87);
}
.theme-default-light .background-orange-alpha {
  background: rgba(247, 120, 20, 0.2);
}
.theme-default-light .orange .ripple {
  background: rgba(247, 120, 20, 0.2);
}
.theme-default-light .background-orange {
  background: #f77814;
}
.theme-default-light .border-color-orange {
  border-color: #f77814;
}
.theme-default-light .color-orange {
  color: #f77814 !important;
}
.theme-default-light .fill-orange {
  fill: #f77814;
}
.theme-default-light .stroke-orange {
  stroke: #f77814;
}
.theme-default-light .color-orange-alpha {
  color: rgba(247, 120, 20, 0.2) !important;
}
.theme-default-light .orange-alpha {
  background: rgba(247, 120, 20, 0.2);
  color: #f77814;
}
.theme-default-light .orange {
  background: #f77814;
  color: rgba(0, 0, 0, 0.87);
}
.theme-default-light .background-deep-orange-alpha {
  background: rgba(255, 87, 34, 0.2);
}
.theme-default-light .deep-orange .ripple {
  background: rgba(255, 87, 34, 0.2);
}
.theme-default-light .background-deep-orange {
  background: #ff5722;
}
.theme-default-light .border-color-deep-orange {
  border-color: #ff5722;
}
.theme-default-light .color-deep-orange {
  color: #ff5722 !important;
}
.theme-default-light .fill-deep-orange {
  fill: #ff5722;
}
.theme-default-light .stroke-deep-orange {
  stroke: #ff5722;
}
.theme-default-light .color-deep-orange-alpha {
  color: rgba(255, 87, 34, 0.2) !important;
}
.theme-default-light .deep-orange-alpha {
  background: rgba(255, 87, 34, 0.2);
  color: #ff5722;
}
.theme-default-light .deep-orange {
  background: #ff5722;
  color: white;
}
.theme-default-light .background-brown-alpha {
  background: rgba(121, 85, 72, 0.2);
}
.theme-default-light .brown .ripple {
  background: rgba(121, 85, 72, 0.2);
}
.theme-default-light .background-brown {
  background: #795548;
}
.theme-default-light .border-color-brown {
  border-color: #795548;
}
.theme-default-light .color-brown {
  color: #795548 !important;
}
.theme-default-light .fill-brown {
  fill: #795548;
}
.theme-default-light .stroke-brown {
  stroke: #795548;
}
.theme-default-light .color-brown-alpha {
  color: rgba(121, 85, 72, 0.2) !important;
}
.theme-default-light .brown-alpha {
  background: rgba(121, 85, 72, 0.2);
  color: #795548;
}
.theme-default-light .brown {
  background: #795548;
  color: white;
}
.theme-default-light .background-grey-alpha {
  background: rgba(145, 160, 170, 0.2);
}
.theme-default-light .grey .ripple {
  background: rgba(145, 160, 170, 0.2);
}
.theme-default-light .background-grey {
  background: #91A0AA;
}
.theme-default-light .border-color-grey {
  border-color: #91A0AA;
}
.theme-default-light .color-grey {
  color: #91A0AA !important;
}
.theme-default-light .fill-grey {
  fill: #91A0AA;
}
.theme-default-light .stroke-grey {
  stroke: #91A0AA;
}
.theme-default-light .color-grey-alpha {
  color: rgba(145, 160, 170, 0.2) !important;
}
.theme-default-light .grey-alpha {
  background: rgba(145, 160, 170, 0.2);
  color: #91A0AA;
}
.theme-default-light .grey {
  background: #91A0AA;
  color: white;
}
.theme-default-light .background-blue-grey-alpha {
  background: rgba(126, 142, 149, 0.2);
}
.theme-default-light .blue-grey .ripple {
  background: rgba(126, 142, 149, 0.2);
}
.theme-default-light .background-blue-grey {
  background: #7E8E95;
}
.theme-default-light .border-color-blue-grey {
  border-color: #7E8E95;
}
.theme-default-light .color-blue-grey {
  color: #7E8E95 !important;
}
.theme-default-light .fill-blue-grey {
  fill: #7E8E95;
}
.theme-default-light .stroke-blue-grey {
  stroke: #7E8E95;
}
.theme-default-light .color-blue-grey-alpha {
  color: rgba(126, 142, 149, 0.2) !important;
}
.theme-default-light .blue-grey-alpha {
  background: rgba(126, 142, 149, 0.2);
  color: #7E8E95;
}
.theme-default-light .blue-grey {
  background: #7E8E95;
  color: white;
}
.theme-default-light .background-primary-alpha {
  background: rgba(43, 54, 59, 0.2);
}
.theme-default-light .primary .ripple {
  background: rgba(43, 54, 59, 0.2);
}
.theme-default-light .background-primary {
  background: #2B363B;
}
.theme-default-light .border-color-primary {
  border-color: #2B363B;
}
.theme-default-light .color-primary {
  color: #2B363B !important;
}
.theme-default-light .fill-primary {
  fill: #2B363B;
}
.theme-default-light .stroke-primary {
  stroke: #2B363B;
}
.theme-default-light .color-primary-alpha {
  color: rgba(43, 54, 59, 0.2) !important;
}
.theme-default-light .primary-alpha {
  background: rgba(43, 54, 59, 0.2);
  color: #2B363B;
}
.theme-default-light .primary {
  background: #2B363B;
  color: white;
}
.theme-default-light .background-accent-alpha {
  background: rgba(30, 91, 218, 0.2);
}
.theme-default-light .accent .ripple {
  background: rgba(30, 91, 218, 0.2);
}
.theme-default-light .background-accent {
  background: #1e5bda;
}
.theme-default-light .border-color-accent {
  border-color: #1e5bda;
}
.theme-default-light .color-accent {
  color: #1e5bda !important;
}
.theme-default-light .fill-accent {
  fill: #1e5bda;
}
.theme-default-light .stroke-accent {
  stroke: #1e5bda;
}
.theme-default-light .color-accent-alpha {
  color: rgba(30, 91, 218, 0.2) !important;
}
.theme-default-light .accent-alpha {
  background: rgba(30, 91, 218, 0.2);
  color: #1e5bda;
}
.theme-default-light .accent {
  background: #1e5bda;
  color: white;
}
.theme-default-light .background-warn-alpha {
  background: rgba(211, 24, 24, 0.2);
}
.theme-default-light .warn .ripple {
  background: rgba(211, 24, 24, 0.2);
}
.theme-default-light .background-warn {
  background: #d31818;
}
.theme-default-light .border-color-warn {
  border-color: #d31818;
}
.theme-default-light .color-warn {
  color: #d31818 !important;
}
.theme-default-light .fill-warn {
  fill: #d31818;
}
.theme-default-light .stroke-warn {
  stroke: #d31818;
}
.theme-default-light .color-warn-alpha {
  color: rgba(211, 24, 24, 0.2) !important;
}
.theme-default-light .warn-alpha {
  background: rgba(211, 24, 24, 0.2);
  color: #d31818;
}
.theme-default-light .warn {
  background: #d31818;
  color: white;
}
.theme-default-light .background-disabled-alpha {
  background: rgba(226, 231, 233, 0.5);
}
.theme-default-light .disabled .ripple {
  background: rgba(226, 231, 233, 0.5);
}
.theme-default-light .background-disabled {
  background: #E2E7E9;
}
.theme-default-light .border-color-disabled {
  border-color: #E2E7E9;
}
.theme-default-light .color-disabled {
  color: #E2E7E9 !important;
}
.theme-default-light .fill-disabled {
  fill: #E2E7E9;
}
.theme-default-light .stroke-disabled {
  stroke: #E2E7E9;
}
.theme-default-light .color-disabled-alpha {
  color: rgba(226, 231, 233, 0.5) !important;
}
.theme-default-light .disabled-alpha {
  background: rgba(226, 231, 233, 0.5);
  color: #E2E7E9;
}
.theme-default-light .disabled {
  background: #E2E7E9;
  color: #E2E7E9;
}
.theme-default-light .background-basic-alpha {
  background: rgba(33, 40, 44, 0.2);
}
.theme-default-light .basic .ripple {
  background: rgba(33, 40, 44, 0.2);
}
.theme-default-light .background-basic {
  background: #FFFFFF;
}
.theme-default-light .border-color-basic {
  border-color: #21282C;
}
.theme-default-light .color-basic {
  color: #21282C !important;
}
.theme-default-light .fill-basic {
  fill: #FFFFFF;
}
.theme-default-light .stroke-basic {
  stroke: #21282C;
}
.theme-default-light .color-basic-alpha {
  color: rgba(33, 40, 44, 0.2) !important;
}
.theme-default-light .basic-alpha {
  background: rgba(33, 40, 44, 0.2);
  color: #21282C;
}
.theme-default-light .basic {
  background: #FFFFFF;
  color: #21282C;
}
.theme-default-light .color-unset {
  color: unset;
}
.theme-default-light .background-transparent {
  background: transparent;
}
.theme-default-light .color-fg,
.theme-default-light .color-base,
.theme-default-light .color-text {
  color: #21282C !important;
}
.theme-default-light .color-fg-inverse,
.theme-default-light .color-base-inverse,
.theme-default-light .color-text-inverse {
  color: #E2E7E9 !important;
}
.theme-default-light .color-surface {
  color: #FFFFFF !important;
}
.theme-default-light .color-surface-alpha {
  color: rgba(255, 255, 255, 0.5) !important;
}
.theme-default-light .color-placeholder {
  color: #91A0AA !important;
}
.theme-default-light .color-placeholder-alpha {
  background: rgba(145, 160, 170, 0.2) !important;
}
.theme-default-light .color-label {
  color: #7E8E95 !important;
}
.theme-default-light .color-disabled {
  color: #E2E7E9 !important;
}
.theme-default-light .color-disabled-icon {
  color: #E2E7E9 !important;
}
.theme-default-light .border-color-bg {
  border-color: #F2F3F8 !important;
}
.theme-default-light .border-color-bg-alpha {
  border-color: rgba(242, 243, 248, 0.5) !important;
}
.theme-default-light .border-color-bg-inverse {
  border-color: #0A0A0A !important;
}
.theme-default-light .border-color-bg-alpha-inverse {
  border-color: rgba(10, 10, 10, 0.5) !important;
}
.theme-default-light .border-color-surface-inverse {
  border-color: #141414 !important;
}
.theme-default-light .border-color-surface-alpha-inverse {
  border-color: rgba(20, 20, 20, 0.5) !important;
}
.theme-default-light .border-color-fg,
.theme-default-light .border-color-base,
.theme-default-light .border-color-text {
  border-color: #21282C !important;
}
.theme-default-light .border-color-fg-inverse,
.theme-default-light .border-color-base-inverse,
.theme-default-light .border-color-text-inverse {
  border-color: #E2E7E9 !important;
}
.theme-default-light .border-color-surface {
  border-color: #FFFFFF !important;
}
.theme-default-light .border-color-surface-alpha {
  border-color: rgba(255, 255, 255, 0.5) !important;
}
.theme-default-light .border-color-placeholder {
  border-color: #91A0AA !important;
}
.theme-default-light .border-color-placeholder-alpha {
  background: rgba(145, 160, 170, 0.2) !important;
}
.theme-default-light .border-color-label {
  border-color: #7E8E95 !important;
}
.theme-default-light .border-color-disabled {
  border-color: #E2E7E9 !important;
}
.theme-default-light .border-color-disabled-icon {
  border-color: #E2E7E9 !important;
}
.theme-default-light .background-bg {
  background: #F2F3F8 !important;
}
.theme-default-light .background-bg-alpha {
  background: rgba(242, 243, 248, 0.5) !important;
}
.theme-default-light .background-bg-inverse {
  background: #0A0A0A !important;
}
.theme-default-light .background-bg-alpha-inverse {
  background: rgba(10, 10, 10, 0.5) !important;
}
.theme-default-light .background-surface-inverse {
  background: #141414 !important;
}
.theme-default-light .background-surface-alpha-inverse {
  background: rgba(20, 20, 20, 0.5) !important;
}
.theme-default-light .background-fg,
.theme-default-light .background-base,
.theme-default-light .background-text {
  background: #21282C !important;
}
.theme-default-light .background-fg-inverse,
.theme-default-light .background-base-inverse,
.theme-default-light .background-text-inverse {
  background: #E2E7E9 !important;
}
.theme-default-light .background-surface {
  background: #FFFFFF !important;
}
.theme-default-light .background-surface-alpha {
  background: rgba(255, 255, 255, 0.5) !important;
}
.theme-default-light .background-placeholder {
  background: #91A0AA !important;
}
.theme-default-light .background-placeholder-alpha {
  background: rgba(145, 160, 170, 0.2) !important;
}
.theme-default-light .background-label {
  background: #7E8E95 !important;
}
.theme-default-light .background-disabled {
  background: #E2E7E9 !important;
}
.theme-default-light .background-disabled-icon {
  background: #E2E7E9 !important;
}
.theme-default-light .fill-bg {
  fill: #F2F3F8 !important;
}
.theme-default-light .fill-bg-alpha {
  fill: rgba(242, 243, 248, 0.5) !important;
}
.theme-default-light .fill-bg-inverse {
  fill: #0A0A0A !important;
}
.theme-default-light .fill-bg-alpha-inverse {
  fill: rgba(10, 10, 10, 0.5) !important;
}
.theme-default-light .fill-surface-inverse {
  fill: #141414 !important;
}
.theme-default-light .fill-surface-alpha-inverse {
  fill: rgba(20, 20, 20, 0.5) !important;
}
.theme-default-light .fill-fg,
.theme-default-light .fill-base,
.theme-default-light .fill-text {
  fill: #21282C !important;
}
.theme-default-light .fill-fg-inverse,
.theme-default-light .fill-base-inverse,
.theme-default-light .fill-text-inverse {
  fill: #E2E7E9 !important;
}
.theme-default-light .fill-surface {
  fill: #FFFFFF !important;
}
.theme-default-light .fill-surface-alpha {
  fill: rgba(255, 255, 255, 0.5) !important;
}
.theme-default-light .fill-placeholder {
  fill: #91A0AA !important;
}
.theme-default-light .fill-placeholder-alpha {
  background: rgba(145, 160, 170, 0.2) !important;
}
.theme-default-light .fill-label {
  fill: #7E8E95 !important;
}
.theme-default-light .fill-disabled {
  fill: #E2E7E9 !important;
}
.theme-default-light .fill-disabled-icon {
  fill: #E2E7E9 !important;
}
.theme-default-light .stroke-bg {
  stroke: #F2F3F8 !important;
}
.theme-default-light .stroke-bg-alpha {
  stroke: rgba(242, 243, 248, 0.5) !important;
}
.theme-default-light .stroke-bg-inverse {
  stroke: #0A0A0A !important;
}
.theme-default-light .stroke-bg-alpha-inverse {
  stroke: rgba(10, 10, 10, 0.5) !important;
}
.theme-default-light .stroke-surface-inverse {
  stroke: #141414 !important;
}
.theme-default-light .stroke-surface-alpha-inverse {
  stroke: rgba(20, 20, 20, 0.5) !important;
}
.theme-default-light .stroke-fg,
.theme-default-light .stroke-base,
.theme-default-light .stroke-text {
  stroke: #21282C !important;
}
.theme-default-light .stroke-fg-inverse,
.theme-default-light .stroke-base-inverse,
.theme-default-light .stroke-text-inverse {
  stroke: #E2E7E9 !important;
}
.theme-default-light .stroke-surface {
  stroke: #FFFFFF !important;
}
.theme-default-light .stroke-surface-alpha {
  stroke: rgba(255, 255, 255, 0.5) !important;
}
.theme-default-light .stroke-placeholder {
  stroke: #91A0AA !important;
}
.theme-default-light .stroke-placeholder-alpha {
  background: rgba(145, 160, 170, 0.2) !important;
}
.theme-default-light .stroke-label {
  stroke: #7E8E95 !important;
}
.theme-default-light .stroke-disabled {
  stroke: #E2E7E9 !important;
}
.theme-default-light .stroke-disabled-icon {
  stroke: #E2E7E9 !important;
}
.theme-default-light .red-50 {
  background-color: #fce7e7 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .red-50[disabled] {
  background-color: rgba(252, 231, 231, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .red-50-bg {
  background-color: #fce7e7 !important;
}
.theme-default-light .red-50-fg {
  color: #fce7e7 !important;
}
.theme-default-light .red-100 {
  background-color: #f7c4c4 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .red-100[disabled] {
  background-color: rgba(247, 196, 196, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .red-100-bg {
  background-color: #f7c4c4 !important;
}
.theme-default-light .red-100-fg {
  color: #f7c4c4 !important;
}
.theme-default-light .red-200 {
  background-color: #f29d9d !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .red-200[disabled] {
  background-color: rgba(242, 157, 157, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .red-200-bg {
  background-color: #f29d9d !important;
}
.theme-default-light .red-200-fg {
  color: #f29d9d !important;
}
.theme-default-light .red-300 {
  background-color: #ed7575 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .red-300[disabled] {
  background-color: rgba(237, 117, 117, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .red-300-bg {
  background-color: #ed7575 !important;
}
.theme-default-light .red-300-fg {
  color: #ed7575 !important;
}
.theme-default-light .red-400 {
  background-color: #e95858 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .red-400[disabled] {
  background-color: rgba(233, 88, 88, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .red-400-bg {
  background-color: #e95858 !important;
}
.theme-default-light .red-400-fg {
  color: #e95858 !important;
}
.theme-default-light .red-500 {
  background-color: #e53a3a !important;
  color: white !important;
}
.theme-default-light .red-500[disabled] {
  background-color: rgba(229, 58, 58, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .red-500-bg {
  background-color: #e53a3a !important;
}
.theme-default-light .red-500-fg {
  color: #e53a3a !important;
}
.theme-default-light .red-bg {
  background-color: #e53a3a !important;
}
.theme-default-light .red-fg {
  color: #e53a3a !important;
}
.theme-default-light .red-600 {
  background-color: #e23434 !important;
  color: white !important;
}
.theme-default-light .red-600[disabled] {
  background-color: rgba(226, 52, 52, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .red-600-bg {
  background-color: #e23434 !important;
}
.theme-default-light .red-600-fg {
  color: #e23434 !important;
}
.theme-default-light .red-700 {
  background-color: #de2c2c !important;
  color: white !important;
}
.theme-default-light .red-700[disabled] {
  background-color: rgba(222, 44, 44, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .red-700-bg {
  background-color: #de2c2c !important;
}
.theme-default-light .red-700-fg {
  color: #de2c2c !important;
}
.theme-default-light .red-800 {
  background-color: #da2525 !important;
  color: white !important;
}
.theme-default-light .red-800[disabled] {
  background-color: rgba(218, 37, 37, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .red-800-bg {
  background-color: #da2525 !important;
}
.theme-default-light .red-800-fg {
  color: #da2525 !important;
}
.theme-default-light .red-900 {
  background-color: #d31818 !important;
  color: white !important;
}
.theme-default-light .red-900[disabled] {
  background-color: rgba(211, 24, 24, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .red-900-bg {
  background-color: #d31818 !important;
}
.theme-default-light .red-900-fg {
  color: #d31818 !important;
}
.theme-default-light .red-A100 {
  background-color: #ff8a80 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .red-A100[disabled] {
  background-color: rgba(255, 138, 128, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .red-A100-bg {
  background-color: #ff8a80 !important;
}
.theme-default-light .red-A100-fg {
  color: #ff8a80 !important;
}
.theme-default-light .red-A200 {
  background-color: #ff5252 !important;
  color: white !important;
}
.theme-default-light .red-A200[disabled] {
  background-color: rgba(255, 82, 82, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .red-A200-bg {
  background-color: #ff5252 !important;
}
.theme-default-light .red-A200-fg {
  color: #ff5252 !important;
}
.theme-default-light .red-A400 {
  background-color: #ff1744 !important;
  color: white !important;
}
.theme-default-light .red-A400[disabled] {
  background-color: rgba(255, 23, 68, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .red-A400-bg {
  background-color: #ff1744 !important;
}
.theme-default-light .red-A400-fg {
  color: #ff1744 !important;
}
.theme-default-light .red-A700 {
  background-color: #d50000 !important;
  color: white !important;
}
.theme-default-light .red-A700[disabled] {
  background-color: rgba(213, 0, 0, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .red-A700-bg {
  background-color: #d50000 !important;
}
.theme-default-light .red-A700-fg {
  color: #d50000 !important;
}
.theme-default-light .pink-50 {
  background-color: #fce4ec !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .pink-50[disabled] {
  background-color: rgba(252, 228, 236, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .pink-50-bg {
  background-color: #fce4ec !important;
}
.theme-default-light .pink-50-fg {
  color: #fce4ec !important;
}
.theme-default-light .pink-100 {
  background-color: #f8bbd0 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .pink-100[disabled] {
  background-color: rgba(248, 187, 208, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .pink-100-bg {
  background-color: #f8bbd0 !important;
}
.theme-default-light .pink-100-fg {
  color: #f8bbd0 !important;
}
.theme-default-light .pink-200 {
  background-color: #f48fb1 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .pink-200[disabled] {
  background-color: rgba(244, 143, 177, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .pink-200-bg {
  background-color: #f48fb1 !important;
}
.theme-default-light .pink-200-fg {
  color: #f48fb1 !important;
}
.theme-default-light .pink-300 {
  background-color: #f06e9a !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .pink-300[disabled] {
  background-color: rgba(240, 110, 154, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .pink-300-bg {
  background-color: #f06e9a !important;
}
.theme-default-light .pink-300-fg {
  color: #f06e9a !important;
}
.theme-default-light .pink-400 {
  background-color: #ec407a !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .pink-400[disabled] {
  background-color: rgba(236, 64, 122, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .pink-400-bg {
  background-color: #ec407a !important;
}
.theme-default-light .pink-400-fg {
  color: #ec407a !important;
}
.theme-default-light .pink-500 {
  background-color: #e91e63 !important;
  color: white !important;
}
.theme-default-light .pink-500[disabled] {
  background-color: rgba(233, 30, 99, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .pink-500-bg {
  background-color: #e91e63 !important;
}
.theme-default-light .pink-500-fg {
  color: #e91e63 !important;
}
.theme-default-light .pink-bg {
  background-color: #e91e63 !important;
}
.theme-default-light .pink-fg {
  color: #e91e63 !important;
}
.theme-default-light .pink-600 {
  background-color: #d81b60 !important;
  color: white !important;
}
.theme-default-light .pink-600[disabled] {
  background-color: rgba(216, 27, 96, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .pink-600-bg {
  background-color: #d81b60 !important;
}
.theme-default-light .pink-600-fg {
  color: #d81b60 !important;
}
.theme-default-light .pink-700 {
  background-color: #c2185b !important;
  color: white !important;
}
.theme-default-light .pink-700[disabled] {
  background-color: rgba(194, 24, 91, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .pink-700-bg {
  background-color: #c2185b !important;
}
.theme-default-light .pink-700-fg {
  color: #c2185b !important;
}
.theme-default-light .pink-800 {
  background-color: #ad1457 !important;
  color: white !important;
}
.theme-default-light .pink-800[disabled] {
  background-color: rgba(173, 20, 87, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .pink-800-bg {
  background-color: #ad1457 !important;
}
.theme-default-light .pink-800-fg {
  color: #ad1457 !important;
}
.theme-default-light .pink-900 {
  background-color: #880e4f !important;
  color: white !important;
}
.theme-default-light .pink-900[disabled] {
  background-color: rgba(136, 14, 79, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .pink-900-bg {
  background-color: #880e4f !important;
}
.theme-default-light .pink-900-fg {
  color: #880e4f !important;
}
.theme-default-light .pink-A100 {
  background-color: #ff80ab !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .pink-A100[disabled] {
  background-color: rgba(255, 128, 171, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .pink-A100-bg {
  background-color: #ff80ab !important;
}
.theme-default-light .pink-A100-fg {
  color: #ff80ab !important;
}
.theme-default-light .pink-A200 {
  background-color: #ff4081 !important;
  color: white !important;
}
.theme-default-light .pink-A200[disabled] {
  background-color: rgba(255, 64, 129, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .pink-A200-bg {
  background-color: #ff4081 !important;
}
.theme-default-light .pink-A200-fg {
  color: #ff4081 !important;
}
.theme-default-light .pink-A400 {
  background-color: #f50057 !important;
  color: white !important;
}
.theme-default-light .pink-A400[disabled] {
  background-color: rgba(245, 0, 87, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .pink-A400-bg {
  background-color: #f50057 !important;
}
.theme-default-light .pink-A400-fg {
  color: #f50057 !important;
}
.theme-default-light .pink-A700 {
  background-color: #c51162 !important;
  color: white !important;
}
.theme-default-light .pink-A700[disabled] {
  background-color: rgba(197, 17, 98, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .pink-A700-bg {
  background-color: #c51162 !important;
}
.theme-default-light .pink-A700-fg {
  color: #c51162 !important;
}
.theme-default-light .purple-50 {
  background-color: #f3e6ff !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .purple-50[disabled] {
  background-color: rgba(243, 230, 255, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .purple-50-bg {
  background-color: #f3e6ff !important;
}
.theme-default-light .purple-50-fg {
  color: #f3e6ff !important;
}
.theme-default-light .purple-100 {
  background-color: #e1bee7 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .purple-100[disabled] {
  background-color: rgba(225, 190, 231, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .purple-100-bg {
  background-color: #e1bee7 !important;
}
.theme-default-light .purple-100-fg {
  color: #e1bee7 !important;
}
.theme-default-light .purple-200 {
  background-color: #ce93d8 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .purple-200[disabled] {
  background-color: rgba(206, 147, 216, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .purple-200-bg {
  background-color: #ce93d8 !important;
}
.theme-default-light .purple-200-fg {
  color: #ce93d8 !important;
}
.theme-default-light .purple-300 {
  background-color: #ba68c8 !important;
  color: white !important;
}
.theme-default-light .purple-300[disabled] {
  background-color: rgba(186, 104, 200, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .purple-300-bg {
  background-color: #ba68c8 !important;
}
.theme-default-light .purple-300-fg {
  color: #ba68c8 !important;
}
.theme-default-light .purple-400 {
  background-color: #ab47bc !important;
  color: white !important;
}
.theme-default-light .purple-400[disabled] {
  background-color: rgba(171, 71, 188, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .purple-400-bg {
  background-color: #ab47bc !important;
}
.theme-default-light .purple-400-fg {
  color: #ab47bc !important;
}
.theme-default-light .purple-500 {
  background-color: #9c27b0 !important;
  color: white !important;
}
.theme-default-light .purple-500[disabled] {
  background-color: rgba(156, 39, 176, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .purple-500-bg {
  background-color: #9c27b0 !important;
}
.theme-default-light .purple-500-fg {
  color: #9c27b0 !important;
}
.theme-default-light .purple-bg {
  background-color: #9c27b0 !important;
}
.theme-default-light .purple-fg {
  color: #9c27b0 !important;
}
.theme-default-light .purple-600 {
  background-color: #8e24aa !important;
  color: white !important;
}
.theme-default-light .purple-600[disabled] {
  background-color: rgba(142, 36, 170, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .purple-600-bg {
  background-color: #8e24aa !important;
}
.theme-default-light .purple-600-fg {
  color: #8e24aa !important;
}
.theme-default-light .purple-700 {
  background-color: #7b1fa2 !important;
  color: white !important;
}
.theme-default-light .purple-700[disabled] {
  background-color: rgba(123, 31, 162, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .purple-700-bg {
  background-color: #7b1fa2 !important;
}
.theme-default-light .purple-700-fg {
  color: #7b1fa2 !important;
}
.theme-default-light .purple-800 {
  background-color: #6a1b9a !important;
  color: white !important;
}
.theme-default-light .purple-800[disabled] {
  background-color: rgba(106, 27, 154, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .purple-800-bg {
  background-color: #6a1b9a !important;
}
.theme-default-light .purple-800-fg {
  color: #6a1b9a !important;
}
.theme-default-light .purple-900 {
  background-color: #4a148c !important;
  color: white !important;
}
.theme-default-light .purple-900[disabled] {
  background-color: rgba(74, 20, 140, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .purple-900-bg {
  background-color: #4a148c !important;
}
.theme-default-light .purple-900-fg {
  color: #4a148c !important;
}
.theme-default-light .purple-A100 {
  background-color: #ea80fc !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .purple-A100[disabled] {
  background-color: rgba(234, 128, 252, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .purple-A100-bg {
  background-color: #ea80fc !important;
}
.theme-default-light .purple-A100-fg {
  color: #ea80fc !important;
}
.theme-default-light .purple-A200 {
  background-color: #e040fb !important;
  color: white !important;
}
.theme-default-light .purple-A200[disabled] {
  background-color: rgba(224, 64, 251, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .purple-A200-bg {
  background-color: #e040fb !important;
}
.theme-default-light .purple-A200-fg {
  color: #e040fb !important;
}
.theme-default-light .purple-A400 {
  background-color: #d500f9 !important;
  color: white !important;
}
.theme-default-light .purple-A400[disabled] {
  background-color: rgba(213, 0, 249, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .purple-A400-bg {
  background-color: #d500f9 !important;
}
.theme-default-light .purple-A400-fg {
  color: #d500f9 !important;
}
.theme-default-light .purple-A700 {
  background-color: #aa00ff !important;
  color: white !important;
}
.theme-default-light .purple-A700[disabled] {
  background-color: rgba(170, 0, 255, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .purple-A700-bg {
  background-color: #aa00ff !important;
}
.theme-default-light .purple-A700-fg {
  color: #aa00ff !important;
}
.theme-default-light .deep-purple-50 {
  background-color: #ede7f6 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .deep-purple-50[disabled] {
  background-color: rgba(237, 231, 246, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .deep-purple-50-bg {
  background-color: #ede7f6 !important;
}
.theme-default-light .deep-purple-50-fg {
  color: #ede7f6 !important;
}
.theme-default-light .deep-purple-100 {
  background-color: #d1c4e9 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .deep-purple-100[disabled] {
  background-color: rgba(209, 196, 233, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .deep-purple-100-bg {
  background-color: #d1c4e9 !important;
}
.theme-default-light .deep-purple-100-fg {
  color: #d1c4e9 !important;
}
.theme-default-light .deep-purple-200 {
  background-color: #b39ddb !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .deep-purple-200[disabled] {
  background-color: rgba(179, 157, 219, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .deep-purple-200-bg {
  background-color: #b39ddb !important;
}
.theme-default-light .deep-purple-200-fg {
  color: #b39ddb !important;
}
.theme-default-light .deep-purple-300 {
  background-color: #9575cd !important;
  color: white !important;
}
.theme-default-light .deep-purple-300[disabled] {
  background-color: rgba(149, 117, 205, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .deep-purple-300-bg {
  background-color: #9575cd !important;
}
.theme-default-light .deep-purple-300-fg {
  color: #9575cd !important;
}
.theme-default-light .deep-purple-400 {
  background-color: #7e57c2 !important;
  color: white !important;
}
.theme-default-light .deep-purple-400[disabled] {
  background-color: rgba(126, 87, 194, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .deep-purple-400-bg {
  background-color: #7e57c2 !important;
}
.theme-default-light .deep-purple-400-fg {
  color: #7e57c2 !important;
}
.theme-default-light .deep-purple-500 {
  background-color: #673ab7 !important;
  color: white !important;
}
.theme-default-light .deep-purple-500[disabled] {
  background-color: rgba(103, 58, 183, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .deep-purple-500-bg {
  background-color: #673ab7 !important;
}
.theme-default-light .deep-purple-500-fg {
  color: #673ab7 !important;
}
.theme-default-light .deep-purple-bg {
  background-color: #673ab7 !important;
}
.theme-default-light .deep-purple-fg {
  color: #673ab7 !important;
}
.theme-default-light .deep-purple-600 {
  background-color: #5e35b1 !important;
  color: white !important;
}
.theme-default-light .deep-purple-600[disabled] {
  background-color: rgba(94, 53, 177, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .deep-purple-600-bg {
  background-color: #5e35b1 !important;
}
.theme-default-light .deep-purple-600-fg {
  color: #5e35b1 !important;
}
.theme-default-light .deep-purple-700 {
  background-color: #512da8 !important;
  color: white !important;
}
.theme-default-light .deep-purple-700[disabled] {
  background-color: rgba(81, 45, 168, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .deep-purple-700-bg {
  background-color: #512da8 !important;
}
.theme-default-light .deep-purple-700-fg {
  color: #512da8 !important;
}
.theme-default-light .deep-purple-800 {
  background-color: #4527a0 !important;
  color: white !important;
}
.theme-default-light .deep-purple-800[disabled] {
  background-color: rgba(69, 39, 160, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .deep-purple-800-bg {
  background-color: #4527a0 !important;
}
.theme-default-light .deep-purple-800-fg {
  color: #4527a0 !important;
}
.theme-default-light .deep-purple-900 {
  background-color: #311b92 !important;
  color: white !important;
}
.theme-default-light .deep-purple-900[disabled] {
  background-color: rgba(49, 27, 146, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .deep-purple-900-bg {
  background-color: #311b92 !important;
}
.theme-default-light .deep-purple-900-fg {
  color: #311b92 !important;
}
.theme-default-light .deep-purple-A100 {
  background-color: #cf97ff !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .deep-purple-A100[disabled] {
  background-color: rgba(207, 151, 255, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .deep-purple-A100-bg {
  background-color: #cf97ff !important;
}
.theme-default-light .deep-purple-A100-fg {
  color: #cf97ff !important;
}
.theme-default-light .deep-purple-A200 {
  background-color: #be73ff !important;
  color: white !important;
}
.theme-default-light .deep-purple-A200[disabled] {
  background-color: rgba(190, 115, 255, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .deep-purple-A200-bg {
  background-color: #be73ff !important;
}
.theme-default-light .deep-purple-A200-fg {
  color: #be73ff !important;
}
.theme-default-light .deep-purple-A400 {
  background-color: #9f2eff !important;
  color: white !important;
}
.theme-default-light .deep-purple-A400[disabled] {
  background-color: rgba(159, 46, 255, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .deep-purple-A400-bg {
  background-color: #9f2eff !important;
}
.theme-default-light .deep-purple-A400-fg {
  color: #9f2eff !important;
}
.theme-default-light .deep-purple-A700 {
  background-color: #7212ff !important;
  color: white !important;
}
.theme-default-light .deep-purple-A700[disabled] {
  background-color: rgba(114, 18, 255, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .deep-purple-A700-bg {
  background-color: #7212ff !important;
}
.theme-default-light .deep-purple-A700-fg {
  color: #7212ff !important;
}
.theme-default-light .indigo-50 {
  background-color: #e8eaf6 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .indigo-50[disabled] {
  background-color: rgba(232, 234, 246, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .indigo-50-bg {
  background-color: #e8eaf6 !important;
}
.theme-default-light .indigo-50-fg {
  color: #e8eaf6 !important;
}
.theme-default-light .indigo-100 {
  background-color: #c5cae9 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .indigo-100[disabled] {
  background-color: rgba(197, 202, 233, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .indigo-100-bg {
  background-color: #c5cae9 !important;
}
.theme-default-light .indigo-100-fg {
  color: #c5cae9 !important;
}
.theme-default-light .indigo-200 {
  background-color: #9fa8da !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .indigo-200[disabled] {
  background-color: rgba(159, 168, 218, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .indigo-200-bg {
  background-color: #9fa8da !important;
}
.theme-default-light .indigo-200-fg {
  color: #9fa8da !important;
}
.theme-default-light .indigo-300 {
  background-color: #7986cb !important;
  color: white !important;
}
.theme-default-light .indigo-300[disabled] {
  background-color: rgba(121, 134, 203, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .indigo-300-bg {
  background-color: #7986cb !important;
}
.theme-default-light .indigo-300-fg {
  color: #7986cb !important;
}
.theme-default-light .indigo-400 {
  background-color: #5c6bc0 !important;
  color: white !important;
}
.theme-default-light .indigo-400[disabled] {
  background-color: rgba(92, 107, 192, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .indigo-400-bg {
  background-color: #5c6bc0 !important;
}
.theme-default-light .indigo-400-fg {
  color: #5c6bc0 !important;
}
.theme-default-light .indigo-500 {
  background-color: #3f51b5 !important;
  color: white !important;
}
.theme-default-light .indigo-500[disabled] {
  background-color: rgba(63, 81, 181, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .indigo-500-bg {
  background-color: #3f51b5 !important;
}
.theme-default-light .indigo-500-fg {
  color: #3f51b5 !important;
}
.theme-default-light .indigo-bg {
  background-color: #3f51b5 !important;
}
.theme-default-light .indigo-fg {
  color: #3f51b5 !important;
}
.theme-default-light .indigo-600 {
  background-color: #3949ab !important;
  color: white !important;
}
.theme-default-light .indigo-600[disabled] {
  background-color: rgba(57, 73, 171, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .indigo-600-bg {
  background-color: #3949ab !important;
}
.theme-default-light .indigo-600-fg {
  color: #3949ab !important;
}
.theme-default-light .indigo-700 {
  background-color: #303f9f !important;
  color: white !important;
}
.theme-default-light .indigo-700[disabled] {
  background-color: rgba(48, 63, 159, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .indigo-700-bg {
  background-color: #303f9f !important;
}
.theme-default-light .indigo-700-fg {
  color: #303f9f !important;
}
.theme-default-light .indigo-800 {
  background-color: #283593 !important;
  color: white !important;
}
.theme-default-light .indigo-800[disabled] {
  background-color: rgba(40, 53, 147, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .indigo-800-bg {
  background-color: #283593 !important;
}
.theme-default-light .indigo-800-fg {
  color: #283593 !important;
}
.theme-default-light .indigo-900 {
  background-color: #1a237e !important;
  color: white !important;
}
.theme-default-light .indigo-900[disabled] {
  background-color: rgba(26, 35, 126, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .indigo-900-bg {
  background-color: #1a237e !important;
}
.theme-default-light .indigo-900-fg {
  color: #1a237e !important;
}
.theme-default-light .indigo-A100 {
  background-color: #8c9eff !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .indigo-A100[disabled] {
  background-color: rgba(140, 158, 255, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .indigo-A100-bg {
  background-color: #8c9eff !important;
}
.theme-default-light .indigo-A100-fg {
  color: #8c9eff !important;
}
.theme-default-light .indigo-A200 {
  background-color: #536dfe !important;
  color: white !important;
}
.theme-default-light .indigo-A200[disabled] {
  background-color: rgba(83, 109, 254, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .indigo-A200-bg {
  background-color: #536dfe !important;
}
.theme-default-light .indigo-A200-fg {
  color: #536dfe !important;
}
.theme-default-light .indigo-A400 {
  background-color: #3d5afe !important;
  color: white !important;
}
.theme-default-light .indigo-A400[disabled] {
  background-color: rgba(61, 90, 254, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .indigo-A400-bg {
  background-color: #3d5afe !important;
}
.theme-default-light .indigo-A400-fg {
  color: #3d5afe !important;
}
.theme-default-light .indigo-A700 {
  background-color: #304ffe !important;
  color: white !important;
}
.theme-default-light .indigo-A700[disabled] {
  background-color: rgba(48, 79, 254, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .indigo-A700-bg {
  background-color: #304ffe !important;
}
.theme-default-light .indigo-A700-fg {
  color: #304ffe !important;
}
.theme-default-light .blue-50 {
  background-color: #e4ebfb !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .blue-50[disabled] {
  background-color: rgba(228, 235, 251, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .blue-50-bg {
  background-color: #e4ebfb !important;
}
.theme-default-light .blue-50-fg {
  color: #e4ebfb !important;
}
.theme-default-light .blue-100 {
  background-color: #bccef4 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .blue-100[disabled] {
  background-color: rgba(188, 206, 244, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .blue-100-bg {
  background-color: #bccef4 !important;
}
.theme-default-light .blue-100-fg {
  color: #bccef4 !important;
}
.theme-default-light .blue-200 {
  background-color: #8faded !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .blue-200[disabled] {
  background-color: rgba(143, 173, 237, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .blue-200-bg {
  background-color: #8faded !important;
}
.theme-default-light .blue-200-fg {
  color: #8faded !important;
}
.theme-default-light .blue-300 {
  background-color: #628ce5 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .blue-300[disabled] {
  background-color: rgba(98, 140, 229, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .blue-300-bg {
  background-color: #628ce5 !important;
}
.theme-default-light .blue-300-fg {
  color: #628ce5 !important;
}
.theme-default-light .blue-400 {
  background-color: #4074e0 !important;
  color: white !important;
}
.theme-default-light .blue-400[disabled] {
  background-color: rgba(64, 116, 224, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .blue-400-bg {
  background-color: #4074e0 !important;
}
.theme-default-light .blue-400-fg {
  color: #4074e0 !important;
}
.theme-default-light .blue-500 {
  background-color: #1e5bda !important;
  color: white !important;
}
.theme-default-light .blue-500[disabled] {
  background-color: rgba(30, 91, 218, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .blue-500-bg {
  background-color: #1e5bda !important;
}
.theme-default-light .blue-500-fg {
  color: #1e5bda !important;
}
.theme-default-light .blue-bg {
  background-color: #1e5bda !important;
}
.theme-default-light .blue-fg {
  color: #1e5bda !important;
}
.theme-default-light .blue-600 {
  background-color: #1a53d6 !important;
  color: white !important;
}
.theme-default-light .blue-600[disabled] {
  background-color: rgba(26, 83, 214, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .blue-600-bg {
  background-color: #1a53d6 !important;
}
.theme-default-light .blue-600-fg {
  color: #1a53d6 !important;
}
.theme-default-light .blue-700 {
  background-color: #1649d0 !important;
  color: white !important;
}
.theme-default-light .blue-700[disabled] {
  background-color: rgba(22, 73, 208, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .blue-700-bg {
  background-color: #1649d0 !important;
}
.theme-default-light .blue-700-fg {
  color: #1649d0 !important;
}
.theme-default-light .blue-800 {
  background-color: #1240cb !important;
  color: white !important;
}
.theme-default-light .blue-800[disabled] {
  background-color: rgba(18, 64, 203, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .blue-800-bg {
  background-color: #1240cb !important;
}
.theme-default-light .blue-800-fg {
  color: #1240cb !important;
}
.theme-default-light .blue-900 {
  background-color: #0a2fc2 !important;
  color: white !important;
}
.theme-default-light .blue-900[disabled] {
  background-color: rgba(10, 47, 194, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .blue-900-bg {
  background-color: #0a2fc2 !important;
}
.theme-default-light .blue-900-fg {
  color: #0a2fc2 !important;
}
.theme-default-light .blue-A100 {
  background-color: #82b1ff !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .blue-A100[disabled] {
  background-color: rgba(130, 177, 255, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .blue-A100-bg {
  background-color: #82b1ff !important;
}
.theme-default-light .blue-A100-fg {
  color: #82b1ff !important;
}
.theme-default-light .blue-A200 {
  background-color: #448aff !important;
  color: white !important;
}
.theme-default-light .blue-A200[disabled] {
  background-color: rgba(68, 138, 255, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .blue-A200-bg {
  background-color: #448aff !important;
}
.theme-default-light .blue-A200-fg {
  color: #448aff !important;
}
.theme-default-light .blue-A400 {
  background-color: #2979ff !important;
  color: white !important;
}
.theme-default-light .blue-A400[disabled] {
  background-color: rgba(41, 121, 255, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .blue-A400-bg {
  background-color: #2979ff !important;
}
.theme-default-light .blue-A400-fg {
  color: #2979ff !important;
}
.theme-default-light .blue-A700 {
  background-color: #2962ff !important;
  color: white !important;
}
.theme-default-light .blue-A700[disabled] {
  background-color: rgba(41, 98, 255, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .blue-A700-bg {
  background-color: #2962ff !important;
}
.theme-default-light .blue-A700-fg {
  color: #2962ff !important;
}
.theme-default-light .light-blue-50 {
  background-color: #e1f5fe !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .light-blue-50[disabled] {
  background-color: rgba(225, 245, 254, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .light-blue-50-bg {
  background-color: #e1f5fe !important;
}
.theme-default-light .light-blue-50-fg {
  color: #e1f5fe !important;
}
.theme-default-light .light-blue-100 {
  background-color: #b3e5fc !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .light-blue-100[disabled] {
  background-color: rgba(179, 229, 252, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .light-blue-100-bg {
  background-color: #b3e5fc !important;
}
.theme-default-light .light-blue-100-fg {
  color: #b3e5fc !important;
}
.theme-default-light .light-blue-200 {
  background-color: #81d4fa !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .light-blue-200[disabled] {
  background-color: rgba(129, 212, 250, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .light-blue-200-bg {
  background-color: #81d4fa !important;
}
.theme-default-light .light-blue-200-fg {
  color: #81d4fa !important;
}
.theme-default-light .light-blue-300 {
  background-color: #4fc3f7 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .light-blue-300[disabled] {
  background-color: rgba(79, 195, 247, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .light-blue-300-bg {
  background-color: #4fc3f7 !important;
}
.theme-default-light .light-blue-300-fg {
  color: #4fc3f7 !important;
}
.theme-default-light .light-blue-400 {
  background-color: #29b6f6 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .light-blue-400[disabled] {
  background-color: rgba(41, 182, 246, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .light-blue-400-bg {
  background-color: #29b6f6 !important;
}
.theme-default-light .light-blue-400-fg {
  color: #29b6f6 !important;
}
.theme-default-light .light-blue-500 {
  background-color: #03a9f4 !important;
  color: white !important;
}
.theme-default-light .light-blue-500[disabled] {
  background-color: rgba(3, 169, 244, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .light-blue-500-bg {
  background-color: #03a9f4 !important;
}
.theme-default-light .light-blue-500-fg {
  color: #03a9f4 !important;
}
.theme-default-light .light-blue-bg {
  background-color: #03a9f4 !important;
}
.theme-default-light .light-blue-fg {
  color: #03a9f4 !important;
}
.theme-default-light .light-blue-600 {
  background-color: #039be5 !important;
  color: white !important;
}
.theme-default-light .light-blue-600[disabled] {
  background-color: rgba(3, 155, 229, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .light-blue-600-bg {
  background-color: #039be5 !important;
}
.theme-default-light .light-blue-600-fg {
  color: #039be5 !important;
}
.theme-default-light .light-blue-700 {
  background-color: #0288d1 !important;
  color: white !important;
}
.theme-default-light .light-blue-700[disabled] {
  background-color: rgba(2, 136, 209, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .light-blue-700-bg {
  background-color: #0288d1 !important;
}
.theme-default-light .light-blue-700-fg {
  color: #0288d1 !important;
}
.theme-default-light .light-blue-800 {
  background-color: #0277bd !important;
  color: white !important;
}
.theme-default-light .light-blue-800[disabled] {
  background-color: rgba(2, 119, 189, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .light-blue-800-bg {
  background-color: #0277bd !important;
}
.theme-default-light .light-blue-800-fg {
  color: #0277bd !important;
}
.theme-default-light .light-blue-900 {
  background-color: #01579b !important;
  color: white !important;
}
.theme-default-light .light-blue-900[disabled] {
  background-color: rgba(1, 87, 155, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .light-blue-900-bg {
  background-color: #01579b !important;
}
.theme-default-light .light-blue-900-fg {
  color: #01579b !important;
}
.theme-default-light .light-blue-A100 {
  background-color: #80d8ff !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .light-blue-A100[disabled] {
  background-color: rgba(128, 216, 255, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .light-blue-A100-bg {
  background-color: #80d8ff !important;
}
.theme-default-light .light-blue-A100-fg {
  color: #80d8ff !important;
}
.theme-default-light .light-blue-A200 {
  background-color: #40c4ff !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .light-blue-A200[disabled] {
  background-color: rgba(64, 196, 255, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .light-blue-A200-bg {
  background-color: #40c4ff !important;
}
.theme-default-light .light-blue-A200-fg {
  color: #40c4ff !important;
}
.theme-default-light .light-blue-A400 {
  background-color: #33b6ff !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .light-blue-A400[disabled] {
  background-color: rgba(51, 182, 255, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .light-blue-A400-bg {
  background-color: #33b6ff !important;
}
.theme-default-light .light-blue-A400-fg {
  color: #33b6ff !important;
}
.theme-default-light .light-blue-A700 {
  background-color: #0091ea !important;
  color: white !important;
}
.theme-default-light .light-blue-A700[disabled] {
  background-color: rgba(0, 145, 234, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .light-blue-A700-bg {
  background-color: #0091ea !important;
}
.theme-default-light .light-blue-A700-fg {
  color: #0091ea !important;
}
.theme-default-light .cyan-50 {
  background-color: #e0f7fa !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .cyan-50[disabled] {
  background-color: rgba(224, 247, 250, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .cyan-50-bg {
  background-color: #e0f7fa !important;
}
.theme-default-light .cyan-50-fg {
  color: #e0f7fa !important;
}
.theme-default-light .cyan-100 {
  background-color: #b2ebf2 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .cyan-100[disabled] {
  background-color: rgba(178, 235, 242, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .cyan-100-bg {
  background-color: #b2ebf2 !important;
}
.theme-default-light .cyan-100-fg {
  color: #b2ebf2 !important;
}
.theme-default-light .cyan-200 {
  background-color: #84e1eb !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .cyan-200[disabled] {
  background-color: rgba(132, 225, 235, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .cyan-200-bg {
  background-color: #84e1eb !important;
}
.theme-default-light .cyan-200-fg {
  color: #84e1eb !important;
}
.theme-default-light .cyan-300 {
  background-color: #4dd0e1 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .cyan-300[disabled] {
  background-color: rgba(77, 208, 225, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .cyan-300-bg {
  background-color: #4dd0e1 !important;
}
.theme-default-light .cyan-300-fg {
  color: #4dd0e1 !important;
}
.theme-default-light .cyan-400 {
  background-color: #08c3d6 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .cyan-400[disabled] {
  background-color: rgba(8, 195, 214, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .cyan-400-bg {
  background-color: #08c3d6 !important;
}
.theme-default-light .cyan-400-fg {
  color: #08c3d6 !important;
}
.theme-default-light .cyan-500 {
  background-color: #00bcd4 !important;
  color: white !important;
}
.theme-default-light .cyan-500[disabled] {
  background-color: rgba(0, 188, 212, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .cyan-500-bg {
  background-color: #00bcd4 !important;
}
.theme-default-light .cyan-500-fg {
  color: #00bcd4 !important;
}
.theme-default-light .cyan-bg {
  background-color: #00bcd4 !important;
}
.theme-default-light .cyan-fg {
  color: #00bcd4 !important;
}
.theme-default-light .cyan-600 {
  background-color: #00acc1 !important;
  color: white !important;
}
.theme-default-light .cyan-600[disabled] {
  background-color: rgba(0, 172, 193, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .cyan-600-bg {
  background-color: #00acc1 !important;
}
.theme-default-light .cyan-600-fg {
  color: #00acc1 !important;
}
.theme-default-light .cyan-700 {
  background-color: #02a1bc !important;
  color: white !important;
}
.theme-default-light .cyan-700[disabled] {
  background-color: rgba(2, 161, 188, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .cyan-700-bg {
  background-color: #02a1bc !important;
}
.theme-default-light .cyan-700-fg {
  color: #02a1bc !important;
}
.theme-default-light .cyan-800 {
  background-color: #00838f !important;
  color: white !important;
}
.theme-default-light .cyan-800[disabled] {
  background-color: rgba(0, 131, 143, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .cyan-800-bg {
  background-color: #00838f !important;
}
.theme-default-light .cyan-800-fg {
  color: #00838f !important;
}
.theme-default-light .cyan-900 {
  background-color: #006064 !important;
  color: white !important;
}
.theme-default-light .cyan-900[disabled] {
  background-color: rgba(0, 96, 100, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .cyan-900-bg {
  background-color: #006064 !important;
}
.theme-default-light .cyan-900-fg {
  color: #006064 !important;
}
.theme-default-light .cyan-A100 {
  background-color: #84ffff !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .cyan-A100[disabled] {
  background-color: rgba(132, 255, 255, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .cyan-A100-bg {
  background-color: #84ffff !important;
}
.theme-default-light .cyan-A100-fg {
  color: #84ffff !important;
}
.theme-default-light .cyan-A200 {
  background-color: #18ffff !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .cyan-A200[disabled] {
  background-color: rgba(24, 255, 255, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .cyan-A200-bg {
  background-color: #18ffff !important;
}
.theme-default-light .cyan-A200-fg {
  color: #18ffff !important;
}
.theme-default-light .cyan-A400 {
  background-color: #00e5ff !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .cyan-A400[disabled] {
  background-color: rgba(0, 229, 255, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .cyan-A400-bg {
  background-color: #00e5ff !important;
}
.theme-default-light .cyan-A400-fg {
  color: #00e5ff !important;
}
.theme-default-light .cyan-A700 {
  background-color: #00b8d4 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .cyan-A700[disabled] {
  background-color: rgba(0, 184, 212, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .cyan-A700-bg {
  background-color: #00b8d4 !important;
}
.theme-default-light .cyan-A700-fg {
  color: #00b8d4 !important;
}
.theme-default-light .teal-50 {
  background-color: #e0f2f1 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .teal-50[disabled] {
  background-color: rgba(224, 242, 241, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .teal-50-bg {
  background-color: #e0f2f1 !important;
}
.theme-default-light .teal-50-fg {
  color: #e0f2f1 !important;
}
.theme-default-light .teal-100 {
  background-color: #b2dfdb !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .teal-100[disabled] {
  background-color: rgba(178, 223, 219, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .teal-100-bg {
  background-color: #b2dfdb !important;
}
.theme-default-light .teal-100-fg {
  color: #b2dfdb !important;
}
.theme-default-light .teal-200 {
  background-color: #80cbc4 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .teal-200[disabled] {
  background-color: rgba(128, 203, 196, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .teal-200-bg {
  background-color: #80cbc4 !important;
}
.theme-default-light .teal-200-fg {
  color: #80cbc4 !important;
}
.theme-default-light .teal-300 {
  background-color: #4db6ac !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .teal-300[disabled] {
  background-color: rgba(77, 182, 172, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .teal-300-bg {
  background-color: #4db6ac !important;
}
.theme-default-light .teal-300-fg {
  color: #4db6ac !important;
}
.theme-default-light .teal-400 {
  background-color: #26a69a !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .teal-400[disabled] {
  background-color: rgba(38, 166, 154, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .teal-400-bg {
  background-color: #26a69a !important;
}
.theme-default-light .teal-400-fg {
  color: #26a69a !important;
}
.theme-default-light .teal-500 {
  background-color: #009688 !important;
  color: white !important;
}
.theme-default-light .teal-500[disabled] {
  background-color: rgba(0, 150, 136, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .teal-500-bg {
  background-color: #009688 !important;
}
.theme-default-light .teal-500-fg {
  color: #009688 !important;
}
.theme-default-light .teal-bg {
  background-color: #009688 !important;
}
.theme-default-light .teal-fg {
  color: #009688 !important;
}
.theme-default-light .teal-600 {
  background-color: #00897b !important;
  color: white !important;
}
.theme-default-light .teal-600[disabled] {
  background-color: rgba(0, 137, 123, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .teal-600-bg {
  background-color: #00897b !important;
}
.theme-default-light .teal-600-fg {
  color: #00897b !important;
}
.theme-default-light .teal-700 {
  background-color: #00796b !important;
  color: white !important;
}
.theme-default-light .teal-700[disabled] {
  background-color: rgba(0, 121, 107, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .teal-700-bg {
  background-color: #00796b !important;
}
.theme-default-light .teal-700-fg {
  color: #00796b !important;
}
.theme-default-light .teal-800 {
  background-color: #00695c !important;
  color: white !important;
}
.theme-default-light .teal-800[disabled] {
  background-color: rgba(0, 105, 92, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .teal-800-bg {
  background-color: #00695c !important;
}
.theme-default-light .teal-800-fg {
  color: #00695c !important;
}
.theme-default-light .teal-900 {
  background-color: #004d40 !important;
  color: white !important;
}
.theme-default-light .teal-900[disabled] {
  background-color: rgba(0, 77, 64, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .teal-900-bg {
  background-color: #004d40 !important;
}
.theme-default-light .teal-900-fg {
  color: #004d40 !important;
}
.theme-default-light .teal-A100 {
  background-color: #a7ffeb !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .teal-A100[disabled] {
  background-color: rgba(167, 255, 235, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .teal-A100-bg {
  background-color: #a7ffeb !important;
}
.theme-default-light .teal-A100-fg {
  color: #a7ffeb !important;
}
.theme-default-light .teal-A200 {
  background-color: #64ffda !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .teal-A200[disabled] {
  background-color: rgba(100, 255, 218, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .teal-A200-bg {
  background-color: #64ffda !important;
}
.theme-default-light .teal-A200-fg {
  color: #64ffda !important;
}
.theme-default-light .teal-A400 {
  background-color: #1de9b6 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .teal-A400[disabled] {
  background-color: rgba(29, 233, 182, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .teal-A400-bg {
  background-color: #1de9b6 !important;
}
.theme-default-light .teal-A400-fg {
  color: #1de9b6 !important;
}
.theme-default-light .teal-A700 {
  background-color: #00bfa5 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .teal-A700[disabled] {
  background-color: rgba(0, 191, 165, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .teal-A700-bg {
  background-color: #00bfa5 !important;
}
.theme-default-light .teal-A700-fg {
  color: #00bfa5 !important;
}
.theme-default-light .green-50 {
  background-color: #e2f2e9 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .green-50[disabled] {
  background-color: rgba(226, 242, 233, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .green-50-bg {
  background-color: #e2f2e9 !important;
}
.theme-default-light .green-50-fg {
  color: #e2f2e9 !important;
}
.theme-default-light .green-100 {
  background-color: #b8dec8 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .green-100[disabled] {
  background-color: rgba(184, 222, 200, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .green-100-bg {
  background-color: #b8dec8 !important;
}
.theme-default-light .green-100-fg {
  color: #b8dec8 !important;
}
.theme-default-light .green-200 {
  background-color: #88c8a3 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .green-200[disabled] {
  background-color: rgba(136, 200, 163, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .green-200-bg {
  background-color: #88c8a3 !important;
}
.theme-default-light .green-200-fg {
  color: #88c8a3 !important;
}
.theme-default-light .green-300 {
  background-color: #58b17e !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .green-300[disabled] {
  background-color: rgba(88, 177, 126, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .green-300-bg {
  background-color: #58b17e !important;
}
.theme-default-light .green-300-fg {
  color: #58b17e !important;
}
.theme-default-light .green-400 {
  background-color: #35a162 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .green-400[disabled] {
  background-color: rgba(53, 161, 98, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .green-400-bg {
  background-color: #35a162 !important;
}
.theme-default-light .green-400-fg {
  color: #35a162 !important;
}
.theme-default-light .green-500 {
  background-color: #119046 !important;
  color: white !important;
}
.theme-default-light .green-500[disabled] {
  background-color: rgba(17, 144, 70, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .green-500-bg {
  background-color: #119046 !important;
}
.theme-default-light .green-500-fg {
  color: #119046 !important;
}
.theme-default-light .green-bg {
  background-color: #119046 !important;
}
.theme-default-light .green-fg {
  color: #119046 !important;
}
.theme-default-light .green-600 {
  background-color: #0f883f !important;
  color: white !important;
}
.theme-default-light .green-600[disabled] {
  background-color: rgba(15, 136, 63, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .green-600-bg {
  background-color: #0f883f !important;
}
.theme-default-light .green-600-fg {
  color: #0f883f !important;
}
.theme-default-light .green-700 {
  background-color: #0c7d37 !important;
  color: white !important;
}
.theme-default-light .green-700[disabled] {
  background-color: rgba(12, 125, 55, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .green-700-bg {
  background-color: #0c7d37 !important;
}
.theme-default-light .green-700-fg {
  color: #0c7d37 !important;
}
.theme-default-light .green-800 {
  background-color: #0a732f !important;
  color: white !important;
}
.theme-default-light .green-800[disabled] {
  background-color: rgba(10, 115, 47, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .green-800-bg {
  background-color: #0a732f !important;
}
.theme-default-light .green-800-fg {
  color: #0a732f !important;
}
.theme-default-light .green-900 {
  background-color: #056120 !important;
  color: white !important;
}
.theme-default-light .green-900[disabled] {
  background-color: rgba(5, 97, 32, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .green-900-bg {
  background-color: #056120 !important;
}
.theme-default-light .green-900-fg {
  color: #056120 !important;
}
.theme-default-light .green-A100 {
  background-color: #b9f6ca !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .green-A100[disabled] {
  background-color: rgba(185, 246, 202, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .green-A100-bg {
  background-color: #b9f6ca !important;
}
.theme-default-light .green-A100-fg {
  color: #b9f6ca !important;
}
.theme-default-light .green-A200 {
  background-color: #69f0ae !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .green-A200[disabled] {
  background-color: rgba(105, 240, 174, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .green-A200-bg {
  background-color: #69f0ae !important;
}
.theme-default-light .green-A200-fg {
  color: #69f0ae !important;
}
.theme-default-light .green-A400 {
  background-color: #2cff5b !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .green-A400[disabled] {
  background-color: rgba(44, 255, 91, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .green-A400-bg {
  background-color: #2cff5b !important;
}
.theme-default-light .green-A400-fg {
  color: #2cff5b !important;
}
.theme-default-light .green-A700 {
  background-color: #13ff48 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .green-A700[disabled] {
  background-color: rgba(19, 255, 72, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .green-A700-bg {
  background-color: #13ff48 !important;
}
.theme-default-light .green-A700-fg {
  color: #13ff48 !important;
}
.theme-default-light .light-green-50 {
  background-color: #E9F9DF !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .light-green-50[disabled] {
  background-color: rgba(233, 249, 223, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .light-green-50-bg {
  background-color: #E9F9DF !important;
}
.theme-default-light .light-green-50-fg {
  color: #E9F9DF !important;
}
.theme-default-light .light-green-100 {
  background-color: #D4F4C0 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .light-green-100[disabled] {
  background-color: rgba(212, 244, 192, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .light-green-100-bg {
  background-color: #D4F4C0 !important;
}
.theme-default-light .light-green-100-fg {
  color: #D4F4C0 !important;
}
.theme-default-light .light-green-200 {
  background-color: #B7ED96 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .light-green-200[disabled] {
  background-color: rgba(183, 237, 150, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .light-green-200-bg {
  background-color: #B7ED96 !important;
}
.theme-default-light .light-green-200-fg {
  color: #B7ED96 !important;
}
.theme-default-light .light-green-300 {
  background-color: #9AE56B !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .light-green-300[disabled] {
  background-color: rgba(154, 229, 107, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .light-green-300-bg {
  background-color: #9AE56B !important;
}
.theme-default-light .light-green-300-fg {
  color: #9AE56B !important;
}
.theme-default-light .light-green-400 {
  background-color: #84E04C !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .light-green-400[disabled] {
  background-color: rgba(132, 224, 76, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .light-green-400-bg {
  background-color: #84E04C !important;
}
.theme-default-light .light-green-400-fg {
  color: #84E04C !important;
}
.theme-default-light .light-green-500 {
  background-color: #6EDA2C !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .light-green-500[disabled] {
  background-color: rgba(110, 218, 44, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .light-green-500-bg {
  background-color: #6EDA2C !important;
}
.theme-default-light .light-green-500-fg {
  color: #6EDA2C !important;
}
.theme-default-light .light-green-bg {
  background-color: #6EDA2C !important;
}
.theme-default-light .light-green-fg {
  color: #6EDA2C !important;
}
.theme-default-light .light-green-600 {
  background-color: #5EB925 !important;
  color: white !important;
}
.theme-default-light .light-green-600[disabled] {
  background-color: rgba(94, 185, 37, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .light-green-600-bg {
  background-color: #5EB925 !important;
}
.theme-default-light .light-green-600-fg {
  color: #5EB925 !important;
}
.theme-default-light .light-green-700 {
  background-color: #4D991F !important;
  color: white !important;
}
.theme-default-light .light-green-700[disabled] {
  background-color: rgba(77, 153, 31, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .light-green-700-bg {
  background-color: #4D991F !important;
}
.theme-default-light .light-green-700-fg {
  color: #4D991F !important;
}
.theme-default-light .light-green-800 {
  background-color: #376D16 !important;
  color: white !important;
}
.theme-default-light .light-green-800[disabled] {
  background-color: rgba(55, 109, 22, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .light-green-800-bg {
  background-color: #376D16 !important;
}
.theme-default-light .light-green-800-fg {
  color: #376D16 !important;
}
.theme-default-light .light-green-900 {
  background-color: #274C0F !important;
  color: white !important;
}
.theme-default-light .light-green-900[disabled] {
  background-color: rgba(39, 76, 15, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .light-green-900-bg {
  background-color: #274C0F !important;
}
.theme-default-light .light-green-900-fg {
  color: #274C0F !important;
}
.theme-default-light .light-green-A100 {
  background-color: #D4FFBE !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .light-green-A100[disabled] {
  background-color: rgba(212, 255, 190, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .light-green-A100-bg {
  background-color: #D4FFBE !important;
}
.theme-default-light .light-green-A100-fg {
  color: #D4FFBE !important;
}
.theme-default-light .light-green-A200 {
  background-color: #B1FF8A !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .light-green-A200[disabled] {
  background-color: rgba(177, 255, 138, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .light-green-A200-bg {
  background-color: #B1FF8A !important;
}
.theme-default-light .light-green-A200-fg {
  color: #B1FF8A !important;
}
.theme-default-light .light-green-A400 {
  background-color: #8DFF56 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .light-green-A400[disabled] {
  background-color: rgba(141, 255, 86, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .light-green-A400-bg {
  background-color: #8DFF56 !important;
}
.theme-default-light .light-green-A400-fg {
  color: #8DFF56 !important;
}
.theme-default-light .light-green-A700 {
  background-color: #6AFF21 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .light-green-A700[disabled] {
  background-color: rgba(106, 255, 33, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .light-green-A700-bg {
  background-color: #6AFF21 !important;
}
.theme-default-light .light-green-A700-fg {
  color: #6AFF21 !important;
}
.theme-default-light .lime-50 {
  background-color: #f0f7e0 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .lime-50[disabled] {
  background-color: rgba(240, 247, 224, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .lime-50-bg {
  background-color: #f0f7e0 !important;
}
.theme-default-light .lime-50-fg {
  color: #f0f7e0 !important;
}
.theme-default-light .lime-100 {
  background-color: #dbebb3 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .lime-100[disabled] {
  background-color: rgba(219, 235, 179, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .lime-100-bg {
  background-color: #dbebb3 !important;
}
.theme-default-light .lime-100-fg {
  color: #dbebb3 !important;
}
.theme-default-light .lime-200 {
  background-color: #c3de80 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .lime-200[disabled] {
  background-color: rgba(195, 222, 128, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .lime-200-bg {
  background-color: #c3de80 !important;
}
.theme-default-light .lime-200-fg {
  color: #c3de80 !important;
}
.theme-default-light .lime-300 {
  background-color: #aad14d !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .lime-300[disabled] {
  background-color: rgba(170, 209, 77, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .lime-300-bg {
  background-color: #aad14d !important;
}
.theme-default-light .lime-300-fg {
  color: #aad14d !important;
}
.theme-default-light .lime-400 {
  background-color: #98c726 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .lime-400[disabled] {
  background-color: rgba(152, 199, 38, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .lime-400-bg {
  background-color: #98c726 !important;
}
.theme-default-light .lime-400-fg {
  color: #98c726 !important;
}
.theme-default-light .lime-500 {
  background-color: #86bd00 !important;
  color: white !important;
}
.theme-default-light .lime-500[disabled] {
  background-color: rgba(134, 189, 0, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .lime-500-bg {
  background-color: #86bd00 !important;
}
.theme-default-light .lime-500-fg {
  color: #86bd00 !important;
}
.theme-default-light .lime-bg {
  background-color: #86bd00 !important;
}
.theme-default-light .lime-fg {
  color: #86bd00 !important;
}
.theme-default-light .lime-600 {
  background-color: #7eb700 !important;
  color: white !important;
}
.theme-default-light .lime-600[disabled] {
  background-color: rgba(126, 183, 0, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .lime-600-bg {
  background-color: #7eb700 !important;
}
.theme-default-light .lime-600-fg {
  color: #7eb700 !important;
}
.theme-default-light .lime-700 {
  background-color: #73ae00 !important;
  color: white !important;
}
.theme-default-light .lime-700[disabled] {
  background-color: rgba(115, 174, 0, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .lime-700-bg {
  background-color: #73ae00 !important;
}
.theme-default-light .lime-700-fg {
  color: #73ae00 !important;
}
.theme-default-light .lime-800 {
  background-color: #69a600 !important;
  color: white !important;
}
.theme-default-light .lime-800[disabled] {
  background-color: rgba(105, 166, 0, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .lime-800-bg {
  background-color: #69a600 !important;
}
.theme-default-light .lime-800-fg {
  color: #69a600 !important;
}
.theme-default-light .lime-900 {
  background-color: #569800 !important;
  color: white !important;
}
.theme-default-light .lime-900[disabled] {
  background-color: rgba(86, 152, 0, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .lime-900-bg {
  background-color: #569800 !important;
}
.theme-default-light .lime-900-fg {
  color: #569800 !important;
}
.theme-default-light .lime-A100 {
  background-color: #f4ff81 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .lime-A100[disabled] {
  background-color: rgba(244, 255, 129, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .lime-A100-bg {
  background-color: #f4ff81 !important;
}
.theme-default-light .lime-A100-fg {
  color: #f4ff81 !important;
}
.theme-default-light .lime-A200 {
  background-color: #eeff41 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .lime-A200[disabled] {
  background-color: rgba(238, 255, 65, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .lime-A200-bg {
  background-color: #eeff41 !important;
}
.theme-default-light .lime-A200-fg {
  color: #eeff41 !important;
}
.theme-default-light .lime-A400 {
  background-color: #c6ff00 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .lime-A400[disabled] {
  background-color: rgba(198, 255, 0, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .lime-A400-bg {
  background-color: #c6ff00 !important;
}
.theme-default-light .lime-A400-fg {
  color: #c6ff00 !important;
}
.theme-default-light .lime-A700 {
  background-color: #aeea00 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .lime-A700[disabled] {
  background-color: rgba(174, 234, 0, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .lime-A700-bg {
  background-color: #aeea00 !important;
}
.theme-default-light .lime-A700-fg {
  color: #aeea00 !important;
}
.theme-default-light .yellow-50 {
  background-color: #fcf8e0 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .yellow-50[disabled] {
  background-color: rgba(252, 248, 224, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .yellow-50-bg {
  background-color: #fcf8e0 !important;
}
.theme-default-light .yellow-50-fg {
  color: #fcf8e0 !important;
}
.theme-default-light .yellow-100 {
  background-color: #f8edb3 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .yellow-100[disabled] {
  background-color: rgba(248, 237, 179, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .yellow-100-bg {
  background-color: #f8edb3 !important;
}
.theme-default-light .yellow-100-fg {
  color: #f8edb3 !important;
}
.theme-default-light .yellow-200 {
  background-color: #f4e180 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .yellow-200[disabled] {
  background-color: rgba(244, 225, 128, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .yellow-200-bg {
  background-color: #f4e180 !important;
}
.theme-default-light .yellow-200-fg {
  color: #f4e180 !important;
}
.theme-default-light .yellow-300 {
  background-color: #efd54d !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .yellow-300[disabled] {
  background-color: rgba(239, 213, 77, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .yellow-300-bg {
  background-color: #efd54d !important;
}
.theme-default-light .yellow-300-fg {
  color: #efd54d !important;
}
.theme-default-light .yellow-400 {
  background-color: #ebcc26 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .yellow-400[disabled] {
  background-color: rgba(235, 204, 38, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .yellow-400-bg {
  background-color: #ebcc26 !important;
}
.theme-default-light .yellow-400-fg {
  color: #ebcc26 !important;
}
.theme-default-light .yellow-500 {
  background-color: #e8c300 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .yellow-500[disabled] {
  background-color: rgba(232, 195, 0, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .yellow-500-bg {
  background-color: #e8c300 !important;
}
.theme-default-light .yellow-500-fg {
  color: #e8c300 !important;
}
.theme-default-light .yellow-bg {
  background-color: #e8c300 !important;
}
.theme-default-light .yellow-fg {
  color: #e8c300 !important;
}
.theme-default-light .yellow-600 {
  background-color: #e5bd00 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .yellow-600[disabled] {
  background-color: rgba(229, 189, 0, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .yellow-600-bg {
  background-color: #e5bd00 !important;
}
.theme-default-light .yellow-600-fg {
  color: #e5bd00 !important;
}
.theme-default-light .yellow-700 {
  background-color: #e2b500 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .yellow-700[disabled] {
  background-color: rgba(226, 181, 0, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .yellow-700-bg {
  background-color: #e2b500 !important;
}
.theme-default-light .yellow-700-fg {
  color: #e2b500 !important;
}
.theme-default-light .yellow-800 {
  background-color: #deae00 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .yellow-800[disabled] {
  background-color: rgba(222, 174, 0, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .yellow-800-bg {
  background-color: #deae00 !important;
}
.theme-default-light .yellow-800-fg {
  color: #deae00 !important;
}
.theme-default-light .yellow-900 {
  background-color: #d8a100 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .yellow-900[disabled] {
  background-color: rgba(216, 161, 0, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .yellow-900-bg {
  background-color: #d8a100 !important;
}
.theme-default-light .yellow-900-fg {
  color: #d8a100 !important;
}
.theme-default-light .yellow-A100 {
  background-color: #ffff8d !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .yellow-A100[disabled] {
  background-color: rgba(255, 255, 141, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .yellow-A100-bg {
  background-color: #ffff8d !important;
}
.theme-default-light .yellow-A100-fg {
  color: #ffff8d !important;
}
.theme-default-light .yellow-A200 {
  background-color: #ffff00 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .yellow-A200[disabled] {
  background-color: rgba(255, 255, 0, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .yellow-A200-bg {
  background-color: #ffff00 !important;
}
.theme-default-light .yellow-A200-fg {
  color: #ffff00 !important;
}
.theme-default-light .yellow-A400 {
  background-color: #ffea00 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .yellow-A400[disabled] {
  background-color: rgba(255, 234, 0, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .yellow-A400-bg {
  background-color: #ffea00 !important;
}
.theme-default-light .yellow-A400-fg {
  color: #ffea00 !important;
}
.theme-default-light .yellow-A700 {
  background-color: #ffd600 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .yellow-A700[disabled] {
  background-color: rgba(255, 214, 0, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .yellow-A700-bg {
  background-color: #ffd600 !important;
}
.theme-default-light .yellow-A700-fg {
  color: #ffd600 !important;
}
.theme-default-light .amber-50 {
  background-color: #fef4e4 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .amber-50[disabled] {
  background-color: rgba(254, 244, 228, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .amber-50-bg {
  background-color: #fef4e4 !important;
}
.theme-default-light .amber-50-fg {
  color: #fef4e4 !important;
}
.theme-default-light .amber-100 {
  background-color: #fee4ba !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .amber-100[disabled] {
  background-color: rgba(254, 228, 186, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .amber-100-bg {
  background-color: #fee4ba !important;
}
.theme-default-light .amber-100-fg {
  color: #fee4ba !important;
}
.theme-default-light .amber-200 {
  background-color: #fdd38d !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .amber-200[disabled] {
  background-color: rgba(253, 211, 141, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .amber-200-bg {
  background-color: #fdd38d !important;
}
.theme-default-light .amber-200-fg {
  color: #fdd38d !important;
}
.theme-default-light .amber-300 {
  background-color: #fcc15f !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .amber-300[disabled] {
  background-color: rgba(252, 193, 95, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .amber-300-bg {
  background-color: #fcc15f !important;
}
.theme-default-light .amber-300-fg {
  color: #fcc15f !important;
}
.theme-default-light .amber-400 {
  background-color: #fbb33c !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .amber-400[disabled] {
  background-color: rgba(251, 179, 60, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .amber-400-bg {
  background-color: #fbb33c !important;
}
.theme-default-light .amber-400-fg {
  color: #fbb33c !important;
}
.theme-default-light .amber-500 {
  background-color: #faa61a !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .amber-500[disabled] {
  background-color: rgba(250, 166, 26, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .amber-500-bg {
  background-color: #faa61a !important;
}
.theme-default-light .amber-500-fg {
  color: #faa61a !important;
}
.theme-default-light .amber-bg {
  background-color: #faa61a !important;
}
.theme-default-light .amber-fg {
  color: #faa61a !important;
}
.theme-default-light .amber-600 {
  background-color: #f99e17 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .amber-600[disabled] {
  background-color: rgba(249, 158, 23, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .amber-600-bg {
  background-color: #f99e17 !important;
}
.theme-default-light .amber-600-fg {
  color: #f99e17 !important;
}
.theme-default-light .amber-700 {
  background-color: #f99513 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .amber-700[disabled] {
  background-color: rgba(249, 149, 19, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .amber-700-bg {
  background-color: #f99513 !important;
}
.theme-default-light .amber-700-fg {
  color: #f99513 !important;
}
.theme-default-light .amber-800 {
  background-color: #f88b0f !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .amber-800[disabled] {
  background-color: rgba(248, 139, 15, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .amber-800-bg {
  background-color: #f88b0f !important;
}
.theme-default-light .amber-800-fg {
  color: #f88b0f !important;
}
.theme-default-light .amber-900 {
  background-color: #f67b08 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .amber-900[disabled] {
  background-color: rgba(246, 123, 8, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .amber-900-bg {
  background-color: #f67b08 !important;
}
.theme-default-light .amber-900-fg {
  color: #f67b08 !important;
}
.theme-default-light .amber-A100 {
  background-color: #ffe57f !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .amber-A100[disabled] {
  background-color: rgba(255, 229, 127, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .amber-A100-bg {
  background-color: #ffe57f !important;
}
.theme-default-light .amber-A100-fg {
  color: #ffe57f !important;
}
.theme-default-light .amber-A200 {
  background-color: #ffd740 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .amber-A200[disabled] {
  background-color: rgba(255, 215, 64, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .amber-A200-bg {
  background-color: #ffd740 !important;
}
.theme-default-light .amber-A200-fg {
  color: #ffd740 !important;
}
.theme-default-light .amber-A400 {
  background-color: #ffc400 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .amber-A400[disabled] {
  background-color: rgba(255, 196, 0, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .amber-A400-bg {
  background-color: #ffc400 !important;
}
.theme-default-light .amber-A400-fg {
  color: #ffc400 !important;
}
.theme-default-light .amber-A700 {
  background-color: #ffab00 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .amber-A700[disabled] {
  background-color: rgba(255, 171, 0, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .amber-A700-bg {
  background-color: #ffab00 !important;
}
.theme-default-light .amber-A700-fg {
  color: #ffab00 !important;
}
.theme-default-light .orange-50 {
  background-color: #feefe3 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .orange-50[disabled] {
  background-color: rgba(254, 239, 227, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .orange-50-bg {
  background-color: #feefe3 !important;
}
.theme-default-light .orange-50-fg {
  color: #feefe3 !important;
}
.theme-default-light .orange-100 {
  background-color: #fdd7b9 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .orange-100[disabled] {
  background-color: rgba(253, 215, 185, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .orange-100-bg {
  background-color: #fdd7b9 !important;
}
.theme-default-light .orange-100-fg {
  color: #fdd7b9 !important;
}
.theme-default-light .orange-200 {
  background-color: #fbbc8a !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .orange-200[disabled] {
  background-color: rgba(251, 188, 138, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .orange-200-bg {
  background-color: #fbbc8a !important;
}
.theme-default-light .orange-200-fg {
  color: #fbbc8a !important;
}
.theme-default-light .orange-300 {
  background-color: #f9a15b !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .orange-300[disabled] {
  background-color: rgba(249, 161, 91, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .orange-300-bg {
  background-color: #f9a15b !important;
}
.theme-default-light .orange-300-fg {
  color: #f9a15b !important;
}
.theme-default-light .orange-400 {
  background-color: #f88c37 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .orange-400[disabled] {
  background-color: rgba(248, 140, 55, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .orange-400-bg {
  background-color: #f88c37 !important;
}
.theme-default-light .orange-400-fg {
  color: #f88c37 !important;
}
.theme-default-light .orange-500 {
  background-color: #f77814 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .orange-500[disabled] {
  background-color: rgba(247, 120, 20, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .orange-500-bg {
  background-color: #f77814 !important;
}
.theme-default-light .orange-500-fg {
  color: #f77814 !important;
}
.theme-default-light .orange-bg {
  background-color: #f77814 !important;
}
.theme-default-light .orange-fg {
  color: #f77814 !important;
}
.theme-default-light .orange-600 {
  background-color: #f67012 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .orange-600[disabled] {
  background-color: rgba(246, 112, 18, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .orange-600-bg {
  background-color: #f67012 !important;
}
.theme-default-light .orange-600-fg {
  color: #f67012 !important;
}
.theme-default-light .orange-700 {
  background-color: #f5650e !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .orange-700[disabled] {
  background-color: rgba(245, 101, 14, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .orange-700-bg {
  background-color: #f5650e !important;
}
.theme-default-light .orange-700-fg {
  color: #f5650e !important;
}
.theme-default-light .orange-800 {
  background-color: #f35b0b !important;
  color: white !important;
}
.theme-default-light .orange-800[disabled] {
  background-color: rgba(243, 91, 11, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .orange-800-bg {
  background-color: #f35b0b !important;
}
.theme-default-light .orange-800-fg {
  color: #f35b0b !important;
}
.theme-default-light .orange-900 {
  background-color: #f14806 !important;
  color: white !important;
}
.theme-default-light .orange-900[disabled] {
  background-color: rgba(241, 72, 6, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .orange-900-bg {
  background-color: #f14806 !important;
}
.theme-default-light .orange-900-fg {
  color: #f14806 !important;
}
.theme-default-light .orange-A100 {
  background-color: #ffd180 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .orange-A100[disabled] {
  background-color: rgba(255, 209, 128, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .orange-A100-bg {
  background-color: #ffd180 !important;
}
.theme-default-light .orange-A100-fg {
  color: #ffd180 !important;
}
.theme-default-light .orange-A200 {
  background-color: #ffab40 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .orange-A200[disabled] {
  background-color: rgba(255, 171, 64, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .orange-A200-bg {
  background-color: #ffab40 !important;
}
.theme-default-light .orange-A200-fg {
  color: #ffab40 !important;
}
.theme-default-light .orange-A400 {
  background-color: #ff9100 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .orange-A400[disabled] {
  background-color: rgba(255, 145, 0, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .orange-A400-bg {
  background-color: #ff9100 !important;
}
.theme-default-light .orange-A400-fg {
  color: #ff9100 !important;
}
.theme-default-light .orange-A700 {
  background-color: #ff6d00 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .orange-A700[disabled] {
  background-color: rgba(255, 109, 0, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .orange-A700-bg {
  background-color: #ff6d00 !important;
}
.theme-default-light .orange-A700-fg {
  color: #ff6d00 !important;
}
.theme-default-light .deep-orange-50 {
  background-color: #fbe9e7 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .deep-orange-50[disabled] {
  background-color: rgba(251, 233, 231, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .deep-orange-50-bg {
  background-color: #fbe9e7 !important;
}
.theme-default-light .deep-orange-50-fg {
  color: #fbe9e7 !important;
}
.theme-default-light .deep-orange-100 {
  background-color: #ffccbc !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .deep-orange-100[disabled] {
  background-color: rgba(255, 204, 188, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .deep-orange-100-bg {
  background-color: #ffccbc !important;
}
.theme-default-light .deep-orange-100-fg {
  color: #ffccbc !important;
}
.theme-default-light .deep-orange-200 {
  background-color: #ffab91 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .deep-orange-200[disabled] {
  background-color: rgba(255, 171, 145, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .deep-orange-200-bg {
  background-color: #ffab91 !important;
}
.theme-default-light .deep-orange-200-fg {
  color: #ffab91 !important;
}
.theme-default-light .deep-orange-300 {
  background-color: #ff8a65 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .deep-orange-300[disabled] {
  background-color: rgba(255, 138, 101, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .deep-orange-300-bg {
  background-color: #ff8a65 !important;
}
.theme-default-light .deep-orange-300-fg {
  color: #ff8a65 !important;
}
.theme-default-light .deep-orange-400 {
  background-color: #ff7043 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .deep-orange-400[disabled] {
  background-color: rgba(255, 112, 67, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .deep-orange-400-bg {
  background-color: #ff7043 !important;
}
.theme-default-light .deep-orange-400-fg {
  color: #ff7043 !important;
}
.theme-default-light .deep-orange-500 {
  background-color: #ff5722 !important;
  color: white !important;
}
.theme-default-light .deep-orange-500[disabled] {
  background-color: rgba(255, 87, 34, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .deep-orange-500-bg {
  background-color: #ff5722 !important;
}
.theme-default-light .deep-orange-500-fg {
  color: #ff5722 !important;
}
.theme-default-light .deep-orange-bg {
  background-color: #ff5722 !important;
}
.theme-default-light .deep-orange-fg {
  color: #ff5722 !important;
}
.theme-default-light .deep-orange-600 {
  background-color: #f4511e !important;
  color: white !important;
}
.theme-default-light .deep-orange-600[disabled] {
  background-color: rgba(244, 81, 30, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .deep-orange-600-bg {
  background-color: #f4511e !important;
}
.theme-default-light .deep-orange-600-fg {
  color: #f4511e !important;
}
.theme-default-light .deep-orange-700 {
  background-color: #e64a19 !important;
  color: white !important;
}
.theme-default-light .deep-orange-700[disabled] {
  background-color: rgba(230, 74, 25, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .deep-orange-700-bg {
  background-color: #e64a19 !important;
}
.theme-default-light .deep-orange-700-fg {
  color: #e64a19 !important;
}
.theme-default-light .deep-orange-800 {
  background-color: #d84315 !important;
  color: white !important;
}
.theme-default-light .deep-orange-800[disabled] {
  background-color: rgba(216, 67, 21, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .deep-orange-800-bg {
  background-color: #d84315 !important;
}
.theme-default-light .deep-orange-800-fg {
  color: #d84315 !important;
}
.theme-default-light .deep-orange-900 {
  background-color: #bf360c !important;
  color: white !important;
}
.theme-default-light .deep-orange-900[disabled] {
  background-color: rgba(191, 54, 12, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .deep-orange-900-bg {
  background-color: #bf360c !important;
}
.theme-default-light .deep-orange-900-fg {
  color: #bf360c !important;
}
.theme-default-light .deep-orange-A100 {
  background-color: #ff9e80 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .deep-orange-A100[disabled] {
  background-color: rgba(255, 158, 128, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .deep-orange-A100-bg {
  background-color: #ff9e80 !important;
}
.theme-default-light .deep-orange-A100-fg {
  color: #ff9e80 !important;
}
.theme-default-light .deep-orange-A200 {
  background-color: #ff6e40 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .deep-orange-A200[disabled] {
  background-color: rgba(255, 110, 64, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .deep-orange-A200-bg {
  background-color: #ff6e40 !important;
}
.theme-default-light .deep-orange-A200-fg {
  color: #ff6e40 !important;
}
.theme-default-light .deep-orange-A400 {
  background-color: #ff3d00 !important;
  color: white !important;
}
.theme-default-light .deep-orange-A400[disabled] {
  background-color: rgba(255, 61, 0, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .deep-orange-A400-bg {
  background-color: #ff3d00 !important;
}
.theme-default-light .deep-orange-A400-fg {
  color: #ff3d00 !important;
}
.theme-default-light .deep-orange-A700 {
  background-color: #dd2c00 !important;
  color: white !important;
}
.theme-default-light .deep-orange-A700[disabled] {
  background-color: rgba(221, 44, 0, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .deep-orange-A700-bg {
  background-color: #dd2c00 !important;
}
.theme-default-light .deep-orange-A700-fg {
  color: #dd2c00 !important;
}
.theme-default-light .brown-50 {
  background-color: #efebe9 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .brown-50[disabled] {
  background-color: rgba(239, 235, 233, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .brown-50-bg {
  background-color: #efebe9 !important;
}
.theme-default-light .brown-50-fg {
  color: #efebe9 !important;
}
.theme-default-light .brown-100 {
  background-color: #d7ccc8 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .brown-100[disabled] {
  background-color: rgba(215, 204, 200, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .brown-100-bg {
  background-color: #d7ccc8 !important;
}
.theme-default-light .brown-100-fg {
  color: #d7ccc8 !important;
}
.theme-default-light .brown-200 {
  background-color: #bcaaa4 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .brown-200[disabled] {
  background-color: rgba(188, 170, 164, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .brown-200-bg {
  background-color: #bcaaa4 !important;
}
.theme-default-light .brown-200-fg {
  color: #bcaaa4 !important;
}
.theme-default-light .brown-300 {
  background-color: #a1887f !important;
  color: white !important;
}
.theme-default-light .brown-300[disabled] {
  background-color: rgba(161, 136, 127, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .brown-300-bg {
  background-color: #a1887f !important;
}
.theme-default-light .brown-300-fg {
  color: #a1887f !important;
}
.theme-default-light .brown-400 {
  background-color: #8d6e63 !important;
  color: white !important;
}
.theme-default-light .brown-400[disabled] {
  background-color: rgba(141, 110, 99, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .brown-400-bg {
  background-color: #8d6e63 !important;
}
.theme-default-light .brown-400-fg {
  color: #8d6e63 !important;
}
.theme-default-light .brown-500 {
  background-color: #795548 !important;
  color: white !important;
}
.theme-default-light .brown-500[disabled] {
  background-color: rgba(121, 85, 72, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .brown-500-bg {
  background-color: #795548 !important;
}
.theme-default-light .brown-500-fg {
  color: #795548 !important;
}
.theme-default-light .brown-bg {
  background-color: #795548 !important;
}
.theme-default-light .brown-fg {
  color: #795548 !important;
}
.theme-default-light .brown-600 {
  background-color: #6d4c41 !important;
  color: white !important;
}
.theme-default-light .brown-600[disabled] {
  background-color: rgba(109, 76, 65, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .brown-600-bg {
  background-color: #6d4c41 !important;
}
.theme-default-light .brown-600-fg {
  color: #6d4c41 !important;
}
.theme-default-light .brown-700 {
  background-color: #5d4037 !important;
  color: white !important;
}
.theme-default-light .brown-700[disabled] {
  background-color: rgba(93, 64, 55, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .brown-700-bg {
  background-color: #5d4037 !important;
}
.theme-default-light .brown-700-fg {
  color: #5d4037 !important;
}
.theme-default-light .brown-800 {
  background-color: #4e342e !important;
  color: white !important;
}
.theme-default-light .brown-800[disabled] {
  background-color: rgba(78, 52, 46, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .brown-800-bg {
  background-color: #4e342e !important;
}
.theme-default-light .brown-800-fg {
  color: #4e342e !important;
}
.theme-default-light .brown-900 {
  background-color: #3e2723 !important;
  color: white !important;
}
.theme-default-light .brown-900[disabled] {
  background-color: rgba(62, 39, 35, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .brown-900-bg {
  background-color: #3e2723 !important;
}
.theme-default-light .brown-900-fg {
  color: #3e2723 !important;
}
.theme-default-light .brown-A100 {
  background-color: #d7ccc8 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .brown-A100[disabled] {
  background-color: rgba(215, 204, 200, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .brown-A100-bg {
  background-color: #d7ccc8 !important;
}
.theme-default-light .brown-A100-fg {
  color: #d7ccc8 !important;
}
.theme-default-light .brown-A200 {
  background-color: #bcaaa4 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .brown-A200[disabled] {
  background-color: rgba(188, 170, 164, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .brown-A200-bg {
  background-color: #bcaaa4 !important;
}
.theme-default-light .brown-A200-fg {
  color: #bcaaa4 !important;
}
.theme-default-light .brown-A400 {
  background-color: #8d6e63 !important;
  color: white !important;
}
.theme-default-light .brown-A400[disabled] {
  background-color: rgba(141, 110, 99, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .brown-A400-bg {
  background-color: #8d6e63 !important;
}
.theme-default-light .brown-A400-fg {
  color: #8d6e63 !important;
}
.theme-default-light .brown-A700 {
  background-color: #5d4037 !important;
  color: white !important;
}
.theme-default-light .brown-A700[disabled] {
  background-color: rgba(93, 64, 55, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .brown-A700-bg {
  background-color: #5d4037 !important;
}
.theme-default-light .brown-A700-fg {
  color: #5d4037 !important;
}
.theme-default-light .grey-50 {
  background-color: #EFF1F2 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .grey-50[disabled] {
  background-color: rgba(239, 241, 242, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .grey-50-bg {
  background-color: #EFF1F2 !important;
}
.theme-default-light .grey-50-fg {
  color: #EFF1F2 !important;
}
.theme-default-light .grey-100 {
  background-color: #DEE3E6 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .grey-100[disabled] {
  background-color: rgba(222, 227, 230, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .grey-100-bg {
  background-color: #DEE3E6 !important;
}
.theme-default-light .grey-100-fg {
  color: #DEE3E6 !important;
}
.theme-default-light .grey-200 {
  background-color: #C8D0D5 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .grey-200[disabled] {
  background-color: rgba(200, 208, 213, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .grey-200-bg {
  background-color: #C8D0D5 !important;
}
.theme-default-light .grey-200-fg {
  color: #C8D0D5 !important;
}
.theme-default-light .grey-300 {
  background-color: #B2BDC4 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .grey-300[disabled] {
  background-color: rgba(178, 189, 196, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .grey-300-bg {
  background-color: #B2BDC4 !important;
}
.theme-default-light .grey-300-fg {
  color: #B2BDC4 !important;
}
.theme-default-light .grey-400 {
  background-color: #A2AEB7 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .grey-400[disabled] {
  background-color: rgba(162, 174, 183, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .grey-400-bg {
  background-color: #A2AEB7 !important;
}
.theme-default-light .grey-400-fg {
  color: #A2AEB7 !important;
}
.theme-default-light .grey-500 {
  background-color: #91A0AA !important;
  color: white !important;
}
.theme-default-light .grey-500[disabled] {
  background-color: rgba(145, 160, 170, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .grey-500-bg {
  background-color: #91A0AA !important;
}
.theme-default-light .grey-500-fg {
  color: #91A0AA !important;
}
.theme-default-light .grey-bg {
  background-color: #91A0AA !important;
}
.theme-default-light .grey-fg {
  color: #91A0AA !important;
}
.theme-default-light .grey-600 {
  background-color: #7B8891 !important;
  color: white !important;
}
.theme-default-light .grey-600[disabled] {
  background-color: rgba(123, 136, 145, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .grey-600-bg {
  background-color: #7B8891 !important;
}
.theme-default-light .grey-600-fg {
  color: #7B8891 !important;
}
.theme-default-light .grey-700 {
  background-color: #667077 !important;
  color: white !important;
}
.theme-default-light .grey-700[disabled] {
  background-color: rgba(102, 112, 119, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .grey-700-bg {
  background-color: #667077 !important;
}
.theme-default-light .grey-700-fg {
  color: #667077 !important;
}
.theme-default-light .grey-800 {
  background-color: #495055 !important;
  color: white !important;
}
.theme-default-light .grey-800[disabled] {
  background-color: rgba(73, 80, 85, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .grey-800-bg {
  background-color: #495055 !important;
}
.theme-default-light .grey-800-fg {
  color: #495055 !important;
}
.theme-default-light .grey-900 {
  background-color: #33383B !important;
  color: white !important;
}
.theme-default-light .grey-900[disabled] {
  background-color: rgba(51, 56, 59, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .grey-900-bg {
  background-color: #33383B !important;
}
.theme-default-light .grey-900-fg {
  color: #33383B !important;
}
.theme-default-light .grey-A100 {
  background-color: #FFFFFF !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .grey-A100[disabled] {
  background-color: rgba(255, 255, 255, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .grey-A100-bg {
  background-color: #FFFFFF !important;
}
.theme-default-light .grey-A100-fg {
  color: #FFFFFF !important;
}
.theme-default-light .grey-A200 {
  background-color: #E7EDF1 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .grey-A200[disabled] {
  background-color: rgba(231, 237, 241, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .grey-A200-bg {
  background-color: #E7EDF1 !important;
}
.theme-default-light .grey-A200-fg {
  color: #E7EDF1 !important;
}
.theme-default-light .grey-A400 {
  background-color: #C0CEDA !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .grey-A400[disabled] {
  background-color: rgba(192, 206, 218, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .grey-A400-bg {
  background-color: #C0CEDA !important;
}
.theme-default-light .grey-A400-fg {
  color: #C0CEDA !important;
}
.theme-default-light .grey-A700 {
  background-color: #98AFC2 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .grey-A700[disabled] {
  background-color: rgba(152, 175, 194, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .grey-A700-bg {
  background-color: #98AFC2 !important;
}
.theme-default-light .grey-A700-fg {
  color: #98AFC2 !important;
}
.theme-default-light .blue-grey-50 {
  background-color: #FFFFFF !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .blue-grey-50[disabled] {
  background-color: rgba(255, 255, 255, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .blue-grey-50-bg {
  background-color: #FFFFFF !important;
}
.theme-default-light .blue-grey-50-fg {
  color: #FFFFFF !important;
}
.theme-default-light .blue-grey-100 {
  background-color: #E2E7E9 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .blue-grey-100[disabled] {
  background-color: rgba(226, 231, 233, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .blue-grey-100-bg {
  background-color: #E2E7E9 !important;
}
.theme-default-light .blue-grey-100-fg {
  color: #E2E7E9 !important;
}
.theme-default-light .blue-grey-200 {
  background-color: #C4CFD4 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .blue-grey-200[disabled] {
  background-color: rgba(196, 207, 212, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .blue-grey-200-bg {
  background-color: #C4CFD4 !important;
}
.theme-default-light .blue-grey-200-fg {
  color: #C4CFD4 !important;
}
.theme-default-light .blue-grey-300 {
  background-color: #A7B6BE !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .blue-grey-300[disabled] {
  background-color: rgba(167, 182, 190, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .blue-grey-300-bg {
  background-color: #A7B6BE !important;
}
.theme-default-light .blue-grey-300-fg {
  color: #A7B6BE !important;
}
.theme-default-light .blue-grey-400 {
  background-color: #8A9EA8 !important;
  color: white !important;
}
.theme-default-light .blue-grey-400[disabled] {
  background-color: rgba(138, 158, 168, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .blue-grey-400-bg {
  background-color: #8A9EA8 !important;
}
.theme-default-light .blue-grey-400-fg {
  color: #8A9EA8 !important;
}
.theme-default-light .blue-grey-500 {
  background-color: #7E8E95 !important;
  color: white !important;
}
.theme-default-light .blue-grey-500[disabled] {
  background-color: rgba(126, 142, 149, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .blue-grey-500-bg {
  background-color: #7E8E95 !important;
}
.theme-default-light .blue-grey-500-fg {
  color: #7E8E95 !important;
}
.theme-default-light .blue-grey-bg {
  background-color: #7E8E95 !important;
}
.theme-default-light .blue-grey-fg {
  color: #7E8E95 !important;
}
.theme-default-light .blue-grey-600 {
  background-color: #5A6A72 !important;
  color: white !important;
}
.theme-default-light .blue-grey-600[disabled] {
  background-color: rgba(90, 106, 114, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .blue-grey-600-bg {
  background-color: #5A6A72 !important;
}
.theme-default-light .blue-grey-600-fg {
  color: #5A6A72 !important;
}
.theme-default-light .blue-grey-700 {
  background-color: #435056 !important;
  color: white !important;
}
.theme-default-light .blue-grey-700[disabled] {
  background-color: rgba(67, 80, 86, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .blue-grey-700-bg {
  background-color: #435056 !important;
}
.theme-default-light .blue-grey-700-fg {
  color: #435056 !important;
}
.theme-default-light .blue-grey-800 {
  background-color: #2B363B !important;
  color: white !important;
}
.theme-default-light .blue-grey-800[disabled] {
  background-color: rgba(43, 54, 59, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .blue-grey-800-bg {
  background-color: #2B363B !important;
}
.theme-default-light .blue-grey-800-fg {
  color: #2B363B !important;
}
.theme-default-light .blue-grey-900 {
  background-color: #21282C !important;
  color: white !important;
}
.theme-default-light .blue-grey-900[disabled] {
  background-color: rgba(33, 40, 44, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .blue-grey-900-bg {
  background-color: #21282C !important;
}
.theme-default-light .blue-grey-900-fg {
  color: #21282C !important;
}
.theme-default-light .blue-grey-A100 {
  background-color: #E2E7E9 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .blue-grey-A100[disabled] {
  background-color: rgba(226, 231, 233, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .blue-grey-A100-bg {
  background-color: #E2E7E9 !important;
}
.theme-default-light .blue-grey-A100-fg {
  color: #E2E7E9 !important;
}
.theme-default-light .blue-grey-A200 {
  background-color: #C4CFD4 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .blue-grey-A200[disabled] {
  background-color: rgba(196, 207, 212, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .blue-grey-A200-bg {
  background-color: #C4CFD4 !important;
}
.theme-default-light .blue-grey-A200-fg {
  color: #C4CFD4 !important;
}
.theme-default-light .blue-grey-A400 {
  background-color: #8A9EA8 !important;
  color: white !important;
}
.theme-default-light .blue-grey-A400[disabled] {
  background-color: rgba(138, 158, 168, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .blue-grey-A400-bg {
  background-color: #8A9EA8 !important;
}
.theme-default-light .blue-grey-A400-fg {
  color: #8A9EA8 !important;
}
.theme-default-light .blue-grey-A700 {
  background-color: #435056 !important;
  color: white !important;
}
.theme-default-light .blue-grey-A700[disabled] {
  background-color: rgba(67, 80, 86, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .blue-grey-A700-bg {
  background-color: #435056 !important;
}
.theme-default-light .blue-grey-A700-fg {
  color: #435056 !important;
}
.theme-default-light .light-grey-50 {
  background-color: #FFFFFF !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .light-grey-50[disabled] {
  background-color: rgba(255, 255, 255, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .light-grey-50-bg {
  background-color: #FFFFFF !important;
}
.theme-default-light .light-grey-50-fg {
  color: #FFFFFF !important;
}
.theme-default-light .light-grey-100 {
  background-color: #F8F9FC !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .light-grey-100[disabled] {
  background-color: rgba(248, 249, 252, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .light-grey-100-bg {
  background-color: #F8F9FC !important;
}
.theme-default-light .light-grey-100-fg {
  color: #F8F9FC !important;
}
.theme-default-light .light-grey-200 {
  background-color: #F2F3F8 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .light-grey-200[disabled] {
  background-color: rgba(242, 243, 248, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .light-grey-200-bg {
  background-color: #F2F3F8 !important;
}
.theme-default-light .light-grey-200-fg {
  color: #F2F3F8 !important;
}
.theme-default-light .light-grey-300 {
  background-color: #EAECF6 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .light-grey-300[disabled] {
  background-color: rgba(234, 236, 246, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .light-grey-300-bg {
  background-color: #EAECF6 !important;
}
.theme-default-light .light-grey-300-fg {
  color: #EAECF6 !important;
}
.theme-default-light .light-grey-400 {
  background-color: #E2E5F3 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .light-grey-400[disabled] {
  background-color: rgba(226, 229, 243, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .light-grey-400-bg {
  background-color: #E2E5F3 !important;
}
.theme-default-light .light-grey-400-fg {
  color: #E2E5F3 !important;
}
.theme-default-light .light-grey-500 {
  background-color: #DBDFF0 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .light-grey-500[disabled] {
  background-color: rgba(219, 223, 240, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .light-grey-500-bg {
  background-color: #DBDFF0 !important;
}
.theme-default-light .light-grey-500-fg {
  color: #DBDFF0 !important;
}
.theme-default-light .light-grey-bg {
  background-color: #DBDFF0 !important;
}
.theme-default-light .light-grey-fg {
  color: #DBDFF0 !important;
}
.theme-default-light .light-grey-600 {
  background-color: #D4D8ED !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .light-grey-600[disabled] {
  background-color: rgba(212, 216, 237, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .light-grey-600-bg {
  background-color: #D4D8ED !important;
}
.theme-default-light .light-grey-600-fg {
  color: #D4D8ED !important;
}
.theme-default-light .light-grey-700 {
  background-color: #CDD2EA !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .light-grey-700[disabled] {
  background-color: rgba(205, 210, 234, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .light-grey-700-bg {
  background-color: #CDD2EA !important;
}
.theme-default-light .light-grey-700-fg {
  color: #CDD2EA !important;
}
.theme-default-light .light-grey-800 {
  background-color: #C6CBE7 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .light-grey-800[disabled] {
  background-color: rgba(198, 203, 231, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .light-grey-800-bg {
  background-color: #C6CBE7 !important;
}
.theme-default-light .light-grey-800-fg {
  color: #C6CBE7 !important;
}
.theme-default-light .light-grey-900 {
  background-color: #BFC5E3 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .light-grey-900[disabled] {
  background-color: rgba(191, 197, 227, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .light-grey-900-bg {
  background-color: #BFC5E3 !important;
}
.theme-default-light .light-grey-900-fg {
  color: #BFC5E3 !important;
}
.theme-default-light .light-grey-A100 {
  background-color: #F8F9FC !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .light-grey-A100[disabled] {
  background-color: rgba(248, 249, 252, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .light-grey-A100-bg {
  background-color: #F8F9FC !important;
}
.theme-default-light .light-grey-A100-fg {
  color: #F8F9FC !important;
}
.theme-default-light .light-grey-A200 {
  background-color: #F2F3F8 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .light-grey-A200[disabled] {
  background-color: rgba(242, 243, 248, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .light-grey-A200-bg {
  background-color: #F2F3F8 !important;
}
.theme-default-light .light-grey-A200-fg {
  color: #F2F3F8 !important;
}
.theme-default-light .light-grey-A400 {
  background-color: #E2E5F3 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .light-grey-A400[disabled] {
  background-color: rgba(226, 229, 243, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .light-grey-A400-bg {
  background-color: #E2E5F3 !important;
}
.theme-default-light .light-grey-A400-fg {
  color: #E2E5F3 !important;
}
.theme-default-light .light-grey-A700 {
  background-color: #CDD2EA !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .light-grey-A700[disabled] {
  background-color: rgba(205, 210, 234, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .light-grey-A700-bg {
  background-color: #CDD2EA !important;
}
.theme-default-light .light-grey-A700-fg {
  color: #CDD2EA !important;
}
.theme-default-light .dark-grey-50 {
  background-color: #2E2E2E !important;
  color: white !important;
}
.theme-default-light .dark-grey-50[disabled] {
  background-color: rgba(46, 46, 46, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .dark-grey-50-bg {
  background-color: #2E2E2E !important;
}
.theme-default-light .dark-grey-50-fg {
  color: #2E2E2E !important;
}
.theme-default-light .dark-grey-100 {
  background-color: #292929 !important;
  color: white !important;
}
.theme-default-light .dark-grey-100[disabled] {
  background-color: rgba(41, 41, 41, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .dark-grey-100-bg {
  background-color: #292929 !important;
}
.theme-default-light .dark-grey-100-fg {
  color: #292929 !important;
}
.theme-default-light .dark-grey-200 {
  background-color: #242424 !important;
  color: white !important;
}
.theme-default-light .dark-grey-200[disabled] {
  background-color: rgba(36, 36, 36, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .dark-grey-200-bg {
  background-color: #242424 !important;
}
.theme-default-light .dark-grey-200-fg {
  color: #242424 !important;
}
.theme-default-light .dark-grey-300 {
  background-color: #1F1F1F !important;
  color: white !important;
}
.theme-default-light .dark-grey-300[disabled] {
  background-color: rgba(31, 31, 31, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .dark-grey-300-bg {
  background-color: #1F1F1F !important;
}
.theme-default-light .dark-grey-300-fg {
  color: #1F1F1F !important;
}
.theme-default-light .dark-grey-400 {
  background-color: #1A1A1A !important;
  color: white !important;
}
.theme-default-light .dark-grey-400[disabled] {
  background-color: rgba(26, 26, 26, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .dark-grey-400-bg {
  background-color: #1A1A1A !important;
}
.theme-default-light .dark-grey-400-fg {
  color: #1A1A1A !important;
}
.theme-default-light .dark-grey-500 {
  background-color: #141414 !important;
  color: white !important;
}
.theme-default-light .dark-grey-500[disabled] {
  background-color: rgba(20, 20, 20, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .dark-grey-500-bg {
  background-color: #141414 !important;
}
.theme-default-light .dark-grey-500-fg {
  color: #141414 !important;
}
.theme-default-light .dark-grey-bg {
  background-color: #141414 !important;
}
.theme-default-light .dark-grey-fg {
  color: #141414 !important;
}
.theme-default-light .dark-grey-600 {
  background-color: #0F0F0F !important;
  color: white !important;
}
.theme-default-light .dark-grey-600[disabled] {
  background-color: rgba(15, 15, 15, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .dark-grey-600-bg {
  background-color: #0F0F0F !important;
}
.theme-default-light .dark-grey-600-fg {
  color: #0F0F0F !important;
}
.theme-default-light .dark-grey-700 {
  background-color: #0A0A0A !important;
  color: white !important;
}
.theme-default-light .dark-grey-700[disabled] {
  background-color: rgba(10, 10, 10, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .dark-grey-700-bg {
  background-color: #0A0A0A !important;
}
.theme-default-light .dark-grey-700-fg {
  color: #0A0A0A !important;
}
.theme-default-light .dark-grey-800 {
  background-color: #050505 !important;
  color: white !important;
}
.theme-default-light .dark-grey-800[disabled] {
  background-color: rgba(5, 5, 5, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .dark-grey-800-bg {
  background-color: #050505 !important;
}
.theme-default-light .dark-grey-800-fg {
  color: #050505 !important;
}
.theme-default-light .dark-grey-900 {
  background-color: #000000 !important;
  color: white !important;
}
.theme-default-light .dark-grey-900[disabled] {
  background-color: rgba(0, 0, 0, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .dark-grey-900-bg {
  background-color: #000000 !important;
}
.theme-default-light .dark-grey-900-fg {
  color: #000000 !important;
}
.theme-default-light .dark-grey-A100 {
  background-color: #292929 !important;
  color: white !important;
}
.theme-default-light .dark-grey-A100[disabled] {
  background-color: rgba(41, 41, 41, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .dark-grey-A100-bg {
  background-color: #292929 !important;
}
.theme-default-light .dark-grey-A100-fg {
  color: #292929 !important;
}
.theme-default-light .dark-grey-A200 {
  background-color: #242424 !important;
  color: white !important;
}
.theme-default-light .dark-grey-A200[disabled] {
  background-color: rgba(36, 36, 36, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .dark-grey-A200-bg {
  background-color: #242424 !important;
}
.theme-default-light .dark-grey-A200-fg {
  color: #242424 !important;
}
.theme-default-light .dark-grey-A400 {
  background-color: #1A1A1A !important;
  color: white !important;
}
.theme-default-light .dark-grey-A400[disabled] {
  background-color: rgba(26, 26, 26, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .dark-grey-A400-bg {
  background-color: #1A1A1A !important;
}
.theme-default-light .dark-grey-A400-fg {
  color: #1A1A1A !important;
}
.theme-default-light .dark-grey-A700 {
  background-color: #0A0A0A !important;
  color: white !important;
}
.theme-default-light .dark-grey-A700[disabled] {
  background-color: rgba(10, 10, 10, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .dark-grey-A700-bg {
  background-color: #0A0A0A !important;
}
.theme-default-light .dark-grey-A700-fg {
  color: #0A0A0A !important;
}
.theme-default-light .primary-50 {
  background-color: #FFFFFF !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .primary-50[disabled] {
  background-color: rgba(255, 255, 255, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .primary-50-bg {
  background-color: #FFFFFF !important;
}
.theme-default-light .primary-50-fg {
  color: #FFFFFF !important;
}
.theme-default-light .primary-100 {
  background-color: #E2E7E9 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .primary-100[disabled] {
  background-color: rgba(226, 231, 233, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .primary-100-bg {
  background-color: #E2E7E9 !important;
}
.theme-default-light .primary-100-fg {
  color: #E2E7E9 !important;
}
.theme-default-light .primary-200 {
  background-color: #C4CFD4 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .primary-200[disabled] {
  background-color: rgba(196, 207, 212, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .primary-200-bg {
  background-color: #C4CFD4 !important;
}
.theme-default-light .primary-200-fg {
  color: #C4CFD4 !important;
}
.theme-default-light .primary-300 {
  background-color: #A7B6BE !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .primary-300[disabled] {
  background-color: rgba(167, 182, 190, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .primary-300-bg {
  background-color: #A7B6BE !important;
}
.theme-default-light .primary-300-fg {
  color: #A7B6BE !important;
}
.theme-default-light .primary-400 {
  background-color: #8A9EA8 !important;
  color: white !important;
}
.theme-default-light .primary-400[disabled] {
  background-color: rgba(138, 158, 168, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .primary-400-bg {
  background-color: #8A9EA8 !important;
}
.theme-default-light .primary-400-fg {
  color: #8A9EA8 !important;
}
.theme-default-light .primary-500 {
  background-color: #7E8E95 !important;
  color: white !important;
}
.theme-default-light .primary-500[disabled] {
  background-color: rgba(126, 142, 149, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .primary-500-bg {
  background-color: #7E8E95 !important;
}
.theme-default-light .primary-500-fg {
  color: #7E8E95 !important;
}
.theme-default-light .primary-bg {
  background-color: #7E8E95 !important;
}
.theme-default-light .primary-fg {
  color: #7E8E95 !important;
}
.theme-default-light .primary-600 {
  background-color: #5A6A72 !important;
  color: white !important;
}
.theme-default-light .primary-600[disabled] {
  background-color: rgba(90, 106, 114, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .primary-600-bg {
  background-color: #5A6A72 !important;
}
.theme-default-light .primary-600-fg {
  color: #5A6A72 !important;
}
.theme-default-light .primary-700 {
  background-color: #435056 !important;
  color: white !important;
}
.theme-default-light .primary-700[disabled] {
  background-color: rgba(67, 80, 86, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .primary-700-bg {
  background-color: #435056 !important;
}
.theme-default-light .primary-700-fg {
  color: #435056 !important;
}
.theme-default-light .primary-800 {
  background-color: #2B363B !important;
  color: white !important;
}
.theme-default-light .primary-800[disabled] {
  background-color: rgba(43, 54, 59, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .primary-800-bg {
  background-color: #2B363B !important;
}
.theme-default-light .primary-800-fg {
  color: #2B363B !important;
}
.theme-default-light .primary-900 {
  background-color: #21282C !important;
  color: white !important;
}
.theme-default-light .primary-900[disabled] {
  background-color: rgba(33, 40, 44, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .primary-900-bg {
  background-color: #21282C !important;
}
.theme-default-light .primary-900-fg {
  color: #21282C !important;
}
.theme-default-light .primary-A100 {
  background-color: #E2E7E9 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .primary-A100[disabled] {
  background-color: rgba(226, 231, 233, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .primary-A100-bg {
  background-color: #E2E7E9 !important;
}
.theme-default-light .primary-A100-fg {
  color: #E2E7E9 !important;
}
.theme-default-light .primary-A200 {
  background-color: #C4CFD4 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .primary-A200[disabled] {
  background-color: rgba(196, 207, 212, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .primary-A200-bg {
  background-color: #C4CFD4 !important;
}
.theme-default-light .primary-A200-fg {
  color: #C4CFD4 !important;
}
.theme-default-light .primary-A400 {
  background-color: #8A9EA8 !important;
  color: white !important;
}
.theme-default-light .primary-A400[disabled] {
  background-color: rgba(138, 158, 168, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .primary-A400-bg {
  background-color: #8A9EA8 !important;
}
.theme-default-light .primary-A400-fg {
  color: #8A9EA8 !important;
}
.theme-default-light .primary-A700 {
  background-color: #435056 !important;
  color: white !important;
}
.theme-default-light .primary-A700[disabled] {
  background-color: rgba(67, 80, 86, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .primary-A700-bg {
  background-color: #435056 !important;
}
.theme-default-light .primary-A700-fg {
  color: #435056 !important;
}
.theme-default-light .accent-50 {
  background-color: #e4ebfb !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .accent-50[disabled] {
  background-color: rgba(228, 235, 251, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .accent-50-bg {
  background-color: #e4ebfb !important;
}
.theme-default-light .accent-50-fg {
  color: #e4ebfb !important;
}
.theme-default-light .accent-100 {
  background-color: #bccef4 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .accent-100[disabled] {
  background-color: rgba(188, 206, 244, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .accent-100-bg {
  background-color: #bccef4 !important;
}
.theme-default-light .accent-100-fg {
  color: #bccef4 !important;
}
.theme-default-light .accent-200 {
  background-color: #8faded !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .accent-200[disabled] {
  background-color: rgba(143, 173, 237, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .accent-200-bg {
  background-color: #8faded !important;
}
.theme-default-light .accent-200-fg {
  color: #8faded !important;
}
.theme-default-light .accent-300 {
  background-color: #628ce5 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .accent-300[disabled] {
  background-color: rgba(98, 140, 229, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .accent-300-bg {
  background-color: #628ce5 !important;
}
.theme-default-light .accent-300-fg {
  color: #628ce5 !important;
}
.theme-default-light .accent-400 {
  background-color: #4074e0 !important;
  color: white !important;
}
.theme-default-light .accent-400[disabled] {
  background-color: rgba(64, 116, 224, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .accent-400-bg {
  background-color: #4074e0 !important;
}
.theme-default-light .accent-400-fg {
  color: #4074e0 !important;
}
.theme-default-light .accent-500 {
  background-color: #1e5bda !important;
  color: white !important;
}
.theme-default-light .accent-500[disabled] {
  background-color: rgba(30, 91, 218, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .accent-500-bg {
  background-color: #1e5bda !important;
}
.theme-default-light .accent-500-fg {
  color: #1e5bda !important;
}
.theme-default-light .accent-bg {
  background-color: #1e5bda !important;
}
.theme-default-light .accent-fg {
  color: #1e5bda !important;
}
.theme-default-light .accent-600 {
  background-color: #1a53d6 !important;
  color: white !important;
}
.theme-default-light .accent-600[disabled] {
  background-color: rgba(26, 83, 214, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .accent-600-bg {
  background-color: #1a53d6 !important;
}
.theme-default-light .accent-600-fg {
  color: #1a53d6 !important;
}
.theme-default-light .accent-700 {
  background-color: #1649d0 !important;
  color: white !important;
}
.theme-default-light .accent-700[disabled] {
  background-color: rgba(22, 73, 208, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .accent-700-bg {
  background-color: #1649d0 !important;
}
.theme-default-light .accent-700-fg {
  color: #1649d0 !important;
}
.theme-default-light .accent-800 {
  background-color: #1240cb !important;
  color: white !important;
}
.theme-default-light .accent-800[disabled] {
  background-color: rgba(18, 64, 203, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .accent-800-bg {
  background-color: #1240cb !important;
}
.theme-default-light .accent-800-fg {
  color: #1240cb !important;
}
.theme-default-light .accent-900 {
  background-color: #0a2fc2 !important;
  color: white !important;
}
.theme-default-light .accent-900[disabled] {
  background-color: rgba(10, 47, 194, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .accent-900-bg {
  background-color: #0a2fc2 !important;
}
.theme-default-light .accent-900-fg {
  color: #0a2fc2 !important;
}
.theme-default-light .accent-A100 {
  background-color: #82b1ff !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .accent-A100[disabled] {
  background-color: rgba(130, 177, 255, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .accent-A100-bg {
  background-color: #82b1ff !important;
}
.theme-default-light .accent-A100-fg {
  color: #82b1ff !important;
}
.theme-default-light .accent-A200 {
  background-color: #448aff !important;
  color: white !important;
}
.theme-default-light .accent-A200[disabled] {
  background-color: rgba(68, 138, 255, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .accent-A200-bg {
  background-color: #448aff !important;
}
.theme-default-light .accent-A200-fg {
  color: #448aff !important;
}
.theme-default-light .accent-A400 {
  background-color: #2979ff !important;
  color: white !important;
}
.theme-default-light .accent-A400[disabled] {
  background-color: rgba(41, 121, 255, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .accent-A400-bg {
  background-color: #2979ff !important;
}
.theme-default-light .accent-A400-fg {
  color: #2979ff !important;
}
.theme-default-light .accent-A700 {
  background-color: #2962ff !important;
  color: white !important;
}
.theme-default-light .accent-A700[disabled] {
  background-color: rgba(41, 98, 255, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .accent-A700-bg {
  background-color: #2962ff !important;
}
.theme-default-light .accent-A700-fg {
  color: #2962ff !important;
}
.theme-default-light .warn-50 {
  background-color: #fce7e7 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .warn-50[disabled] {
  background-color: rgba(252, 231, 231, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .warn-50-bg {
  background-color: #fce7e7 !important;
}
.theme-default-light .warn-50-fg {
  color: #fce7e7 !important;
}
.theme-default-light .warn-100 {
  background-color: #f7c4c4 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .warn-100[disabled] {
  background-color: rgba(247, 196, 196, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .warn-100-bg {
  background-color: #f7c4c4 !important;
}
.theme-default-light .warn-100-fg {
  color: #f7c4c4 !important;
}
.theme-default-light .warn-200 {
  background-color: #f29d9d !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .warn-200[disabled] {
  background-color: rgba(242, 157, 157, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .warn-200-bg {
  background-color: #f29d9d !important;
}
.theme-default-light .warn-200-fg {
  color: #f29d9d !important;
}
.theme-default-light .warn-300 {
  background-color: #ed7575 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .warn-300[disabled] {
  background-color: rgba(237, 117, 117, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .warn-300-bg {
  background-color: #ed7575 !important;
}
.theme-default-light .warn-300-fg {
  color: #ed7575 !important;
}
.theme-default-light .warn-400 {
  background-color: #e95858 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .warn-400[disabled] {
  background-color: rgba(233, 88, 88, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .warn-400-bg {
  background-color: #e95858 !important;
}
.theme-default-light .warn-400-fg {
  color: #e95858 !important;
}
.theme-default-light .warn-500 {
  background-color: #e53a3a !important;
  color: white !important;
}
.theme-default-light .warn-500[disabled] {
  background-color: rgba(229, 58, 58, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .warn-500-bg {
  background-color: #e53a3a !important;
}
.theme-default-light .warn-500-fg {
  color: #e53a3a !important;
}
.theme-default-light .warn-bg {
  background-color: #e53a3a !important;
}
.theme-default-light .warn-fg {
  color: #e53a3a !important;
}
.theme-default-light .warn-600 {
  background-color: #e23434 !important;
  color: white !important;
}
.theme-default-light .warn-600[disabled] {
  background-color: rgba(226, 52, 52, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .warn-600-bg {
  background-color: #e23434 !important;
}
.theme-default-light .warn-600-fg {
  color: #e23434 !important;
}
.theme-default-light .warn-700 {
  background-color: #de2c2c !important;
  color: white !important;
}
.theme-default-light .warn-700[disabled] {
  background-color: rgba(222, 44, 44, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .warn-700-bg {
  background-color: #de2c2c !important;
}
.theme-default-light .warn-700-fg {
  color: #de2c2c !important;
}
.theme-default-light .warn-800 {
  background-color: #da2525 !important;
  color: white !important;
}
.theme-default-light .warn-800[disabled] {
  background-color: rgba(218, 37, 37, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .warn-800-bg {
  background-color: #da2525 !important;
}
.theme-default-light .warn-800-fg {
  color: #da2525 !important;
}
.theme-default-light .warn-900 {
  background-color: #d31818 !important;
  color: white !important;
}
.theme-default-light .warn-900[disabled] {
  background-color: rgba(211, 24, 24, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .warn-900-bg {
  background-color: #d31818 !important;
}
.theme-default-light .warn-900-fg {
  color: #d31818 !important;
}
.theme-default-light .warn-A100 {
  background-color: #ff8a80 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-light .warn-A100[disabled] {
  background-color: rgba(255, 138, 128, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-light .warn-A100-bg {
  background-color: #ff8a80 !important;
}
.theme-default-light .warn-A100-fg {
  color: #ff8a80 !important;
}
.theme-default-light .warn-A200 {
  background-color: #ff5252 !important;
  color: white !important;
}
.theme-default-light .warn-A200[disabled] {
  background-color: rgba(255, 82, 82, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .warn-A200-bg {
  background-color: #ff5252 !important;
}
.theme-default-light .warn-A200-fg {
  color: #ff5252 !important;
}
.theme-default-light .warn-A400 {
  background-color: #ff1744 !important;
  color: white !important;
}
.theme-default-light .warn-A400[disabled] {
  background-color: rgba(255, 23, 68, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .warn-A400-bg {
  background-color: #ff1744 !important;
}
.theme-default-light .warn-A400-fg {
  color: #ff1744 !important;
}
.theme-default-light .warn-A700 {
  background-color: #d50000 !important;
  color: white !important;
}
.theme-default-light .warn-A700[disabled] {
  background-color: rgba(213, 0, 0, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-light .warn-A700-bg {
  background-color: #d50000 !important;
}
.theme-default-light .warn-A700-fg {
  color: #d50000 !important;
}
.theme-default-light .red-50.secondary-text,
.theme-default-light .red-50 .secondary-text, .theme-default-light .red-100.secondary-text,
.theme-default-light .red-100 .secondary-text, .theme-default-light .red-200.secondary-text,
.theme-default-light .red-200 .secondary-text, .theme-default-light .red-300.secondary-text,
.theme-default-light .red-300 .secondary-text, .theme-default-light .red-400.secondary-text,
.theme-default-light .red-400 .secondary-text, .theme-default-light .red-A100.secondary-text,
.theme-default-light .red-A100 .secondary-text, .theme-default-light .pink-50.secondary-text,
.theme-default-light .pink-50 .secondary-text, .theme-default-light .pink-100.secondary-text,
.theme-default-light .pink-100 .secondary-text, .theme-default-light .pink-200.secondary-text,
.theme-default-light .pink-200 .secondary-text, .theme-default-light .pink-300.secondary-text,
.theme-default-light .pink-300 .secondary-text, .theme-default-light .pink-400.secondary-text,
.theme-default-light .pink-400 .secondary-text, .theme-default-light .pink-A100.secondary-text,
.theme-default-light .pink-A100 .secondary-text, .theme-default-light .purple-50.secondary-text,
.theme-default-light .purple-50 .secondary-text, .theme-default-light .purple-100.secondary-text,
.theme-default-light .purple-100 .secondary-text, .theme-default-light .purple-200.secondary-text,
.theme-default-light .purple-200 .secondary-text, .theme-default-light .purple-A100.secondary-text,
.theme-default-light .purple-A100 .secondary-text, .theme-default-light .deep-purple-50.secondary-text,
.theme-default-light .deep-purple-50 .secondary-text, .theme-default-light .deep-purple-100.secondary-text,
.theme-default-light .deep-purple-100 .secondary-text, .theme-default-light .deep-purple-200.secondary-text,
.theme-default-light .deep-purple-200 .secondary-text, .theme-default-light .deep-purple-A100.secondary-text,
.theme-default-light .deep-purple-A100 .secondary-text, .theme-default-light .indigo-50.secondary-text,
.theme-default-light .indigo-50 .secondary-text, .theme-default-light .indigo-100.secondary-text,
.theme-default-light .indigo-100 .secondary-text, .theme-default-light .indigo-200.secondary-text,
.theme-default-light .indigo-200 .secondary-text, .theme-default-light .indigo-A100.secondary-text,
.theme-default-light .indigo-A100 .secondary-text, .theme-default-light .blue-50.secondary-text,
.theme-default-light .blue-50 .secondary-text, .theme-default-light .blue-100.secondary-text,
.theme-default-light .blue-100 .secondary-text, .theme-default-light .blue-200.secondary-text,
.theme-default-light .blue-200 .secondary-text, .theme-default-light .blue-300.secondary-text,
.theme-default-light .blue-300 .secondary-text, .theme-default-light .blue-A100.secondary-text,
.theme-default-light .blue-A100 .secondary-text, .theme-default-light .light-blue-50.secondary-text,
.theme-default-light .light-blue-50 .secondary-text, .theme-default-light .light-blue-100.secondary-text,
.theme-default-light .light-blue-100 .secondary-text, .theme-default-light .light-blue-200.secondary-text,
.theme-default-light .light-blue-200 .secondary-text, .theme-default-light .light-blue-300.secondary-text,
.theme-default-light .light-blue-300 .secondary-text, .theme-default-light .light-blue-400.secondary-text,
.theme-default-light .light-blue-400 .secondary-text, .theme-default-light .light-blue-A100.secondary-text,
.theme-default-light .light-blue-A100 .secondary-text, .theme-default-light .light-blue-A200.secondary-text,
.theme-default-light .light-blue-A200 .secondary-text, .theme-default-light .light-blue-A400.secondary-text,
.theme-default-light .light-blue-A400 .secondary-text, .theme-default-light .cyan-50.secondary-text,
.theme-default-light .cyan-50 .secondary-text, .theme-default-light .cyan-100.secondary-text,
.theme-default-light .cyan-100 .secondary-text, .theme-default-light .cyan-200.secondary-text,
.theme-default-light .cyan-200 .secondary-text, .theme-default-light .cyan-300.secondary-text,
.theme-default-light .cyan-300 .secondary-text, .theme-default-light .cyan-400.secondary-text,
.theme-default-light .cyan-400 .secondary-text, .theme-default-light .cyan-A100.secondary-text,
.theme-default-light .cyan-A100 .secondary-text, .theme-default-light .cyan-A200.secondary-text,
.theme-default-light .cyan-A200 .secondary-text, .theme-default-light .cyan-A400.secondary-text,
.theme-default-light .cyan-A400 .secondary-text, .theme-default-light .cyan-A700.secondary-text,
.theme-default-light .cyan-A700 .secondary-text, .theme-default-light .teal-50.secondary-text,
.theme-default-light .teal-50 .secondary-text, .theme-default-light .teal-100.secondary-text,
.theme-default-light .teal-100 .secondary-text, .theme-default-light .teal-200.secondary-text,
.theme-default-light .teal-200 .secondary-text, .theme-default-light .teal-300.secondary-text,
.theme-default-light .teal-300 .secondary-text, .theme-default-light .teal-400.secondary-text,
.theme-default-light .teal-400 .secondary-text, .theme-default-light .teal-A100.secondary-text,
.theme-default-light .teal-A100 .secondary-text, .theme-default-light .teal-A200.secondary-text,
.theme-default-light .teal-A200 .secondary-text, .theme-default-light .teal-A400.secondary-text,
.theme-default-light .teal-A400 .secondary-text, .theme-default-light .teal-A700.secondary-text,
.theme-default-light .teal-A700 .secondary-text, .theme-default-light .green-50.secondary-text,
.theme-default-light .green-50 .secondary-text, .theme-default-light .green-100.secondary-text,
.theme-default-light .green-100 .secondary-text, .theme-default-light .green-200.secondary-text,
.theme-default-light .green-200 .secondary-text, .theme-default-light .green-300.secondary-text,
.theme-default-light .green-300 .secondary-text, .theme-default-light .green-400.secondary-text,
.theme-default-light .green-400 .secondary-text, .theme-default-light .green-A100.secondary-text,
.theme-default-light .green-A100 .secondary-text, .theme-default-light .green-A200.secondary-text,
.theme-default-light .green-A200 .secondary-text, .theme-default-light .green-A400.secondary-text,
.theme-default-light .green-A400 .secondary-text, .theme-default-light .green-A700.secondary-text,
.theme-default-light .green-A700 .secondary-text, .theme-default-light .light-green-50.secondary-text,
.theme-default-light .light-green-50 .secondary-text, .theme-default-light .light-green-100.secondary-text,
.theme-default-light .light-green-100 .secondary-text, .theme-default-light .light-green-200.secondary-text,
.theme-default-light .light-green-200 .secondary-text, .theme-default-light .light-green-300.secondary-text,
.theme-default-light .light-green-300 .secondary-text, .theme-default-light .light-green-400.secondary-text,
.theme-default-light .light-green-400 .secondary-text, .theme-default-light .light-green-500.secondary-text,
.theme-default-light .light-green-500 .secondary-text, .theme-default-light .light-green-A100.secondary-text,
.theme-default-light .light-green-A100 .secondary-text, .theme-default-light .light-green-A200.secondary-text,
.theme-default-light .light-green-A200 .secondary-text, .theme-default-light .light-green-A400.secondary-text,
.theme-default-light .light-green-A400 .secondary-text, .theme-default-light .light-green-A700.secondary-text,
.theme-default-light .light-green-A700 .secondary-text, .theme-default-light .lime-50.secondary-text,
.theme-default-light .lime-50 .secondary-text, .theme-default-light .lime-100.secondary-text,
.theme-default-light .lime-100 .secondary-text, .theme-default-light .lime-200.secondary-text,
.theme-default-light .lime-200 .secondary-text, .theme-default-light .lime-300.secondary-text,
.theme-default-light .lime-300 .secondary-text, .theme-default-light .lime-400.secondary-text,
.theme-default-light .lime-400 .secondary-text, .theme-default-light .lime-A100.secondary-text,
.theme-default-light .lime-A100 .secondary-text, .theme-default-light .lime-A200.secondary-text,
.theme-default-light .lime-A200 .secondary-text, .theme-default-light .lime-A400.secondary-text,
.theme-default-light .lime-A400 .secondary-text, .theme-default-light .lime-A700.secondary-text,
.theme-default-light .lime-A700 .secondary-text, .theme-default-light .yellow-50.secondary-text,
.theme-default-light .yellow-50 .secondary-text, .theme-default-light .yellow-100.secondary-text,
.theme-default-light .yellow-100 .secondary-text, .theme-default-light .yellow-200.secondary-text,
.theme-default-light .yellow-200 .secondary-text, .theme-default-light .yellow-300.secondary-text,
.theme-default-light .yellow-300 .secondary-text, .theme-default-light .yellow-400.secondary-text,
.theme-default-light .yellow-400 .secondary-text, .theme-default-light .yellow-500.secondary-text,
.theme-default-light .yellow-500 .secondary-text, .theme-default-light .yellow-600.secondary-text,
.theme-default-light .yellow-600 .secondary-text, .theme-default-light .yellow-700.secondary-text,
.theme-default-light .yellow-700 .secondary-text, .theme-default-light .yellow-800.secondary-text,
.theme-default-light .yellow-800 .secondary-text, .theme-default-light .yellow-900.secondary-text,
.theme-default-light .yellow-900 .secondary-text, .theme-default-light .yellow-A100.secondary-text,
.theme-default-light .yellow-A100 .secondary-text, .theme-default-light .yellow-A200.secondary-text,
.theme-default-light .yellow-A200 .secondary-text, .theme-default-light .yellow-A400.secondary-text,
.theme-default-light .yellow-A400 .secondary-text, .theme-default-light .yellow-A700.secondary-text,
.theme-default-light .yellow-A700 .secondary-text, .theme-default-light .amber-50.secondary-text,
.theme-default-light .amber-50 .secondary-text, .theme-default-light .amber-100.secondary-text,
.theme-default-light .amber-100 .secondary-text, .theme-default-light .amber-200.secondary-text,
.theme-default-light .amber-200 .secondary-text, .theme-default-light .amber-300.secondary-text,
.theme-default-light .amber-300 .secondary-text, .theme-default-light .amber-400.secondary-text,
.theme-default-light .amber-400 .secondary-text, .theme-default-light .amber-500.secondary-text,
.theme-default-light .amber-500 .secondary-text, .theme-default-light .amber-600.secondary-text,
.theme-default-light .amber-600 .secondary-text, .theme-default-light .amber-700.secondary-text,
.theme-default-light .amber-700 .secondary-text, .theme-default-light .amber-800.secondary-text,
.theme-default-light .amber-800 .secondary-text, .theme-default-light .amber-900.secondary-text,
.theme-default-light .amber-900 .secondary-text, .theme-default-light .amber-A100.secondary-text,
.theme-default-light .amber-A100 .secondary-text, .theme-default-light .amber-A200.secondary-text,
.theme-default-light .amber-A200 .secondary-text, .theme-default-light .amber-A400.secondary-text,
.theme-default-light .amber-A400 .secondary-text, .theme-default-light .amber-A700.secondary-text,
.theme-default-light .amber-A700 .secondary-text, .theme-default-light .orange-50.secondary-text,
.theme-default-light .orange-50 .secondary-text, .theme-default-light .orange-100.secondary-text,
.theme-default-light .orange-100 .secondary-text, .theme-default-light .orange-200.secondary-text,
.theme-default-light .orange-200 .secondary-text, .theme-default-light .orange-300.secondary-text,
.theme-default-light .orange-300 .secondary-text, .theme-default-light .orange-400.secondary-text,
.theme-default-light .orange-400 .secondary-text, .theme-default-light .orange-500.secondary-text,
.theme-default-light .orange-500 .secondary-text, .theme-default-light .orange-600.secondary-text,
.theme-default-light .orange-600 .secondary-text, .theme-default-light .orange-700.secondary-text,
.theme-default-light .orange-700 .secondary-text, .theme-default-light .orange-A100.secondary-text,
.theme-default-light .orange-A100 .secondary-text, .theme-default-light .orange-A200.secondary-text,
.theme-default-light .orange-A200 .secondary-text, .theme-default-light .orange-A400.secondary-text,
.theme-default-light .orange-A400 .secondary-text, .theme-default-light .orange-A700.secondary-text,
.theme-default-light .orange-A700 .secondary-text, .theme-default-light .deep-orange-50.secondary-text,
.theme-default-light .deep-orange-50 .secondary-text, .theme-default-light .deep-orange-100.secondary-text,
.theme-default-light .deep-orange-100 .secondary-text, .theme-default-light .deep-orange-200.secondary-text,
.theme-default-light .deep-orange-200 .secondary-text, .theme-default-light .deep-orange-300.secondary-text,
.theme-default-light .deep-orange-300 .secondary-text, .theme-default-light .deep-orange-400.secondary-text,
.theme-default-light .deep-orange-400 .secondary-text, .theme-default-light .deep-orange-A100.secondary-text,
.theme-default-light .deep-orange-A100 .secondary-text, .theme-default-light .deep-orange-A200.secondary-text,
.theme-default-light .deep-orange-A200 .secondary-text, .theme-default-light .brown-50.secondary-text,
.theme-default-light .brown-50 .secondary-text, .theme-default-light .brown-100.secondary-text,
.theme-default-light .brown-100 .secondary-text, .theme-default-light .brown-200.secondary-text,
.theme-default-light .brown-200 .secondary-text, .theme-default-light .brown-A100.secondary-text,
.theme-default-light .brown-A100 .secondary-text, .theme-default-light .brown-A200.secondary-text,
.theme-default-light .brown-A200 .secondary-text, .theme-default-light .grey-50.secondary-text,
.theme-default-light .grey-50 .secondary-text, .theme-default-light .grey-100.secondary-text,
.theme-default-light .grey-100 .secondary-text, .theme-default-light .grey-200.secondary-text,
.theme-default-light .grey-200 .secondary-text, .theme-default-light .grey-300.secondary-text,
.theme-default-light .grey-300 .secondary-text, .theme-default-light .grey-400.secondary-text,
.theme-default-light .grey-400 .secondary-text, .theme-default-light .grey-A100.secondary-text,
.theme-default-light .grey-A100 .secondary-text, .theme-default-light .grey-A200.secondary-text,
.theme-default-light .grey-A200 .secondary-text, .theme-default-light .grey-A400.secondary-text,
.theme-default-light .grey-A400 .secondary-text, .theme-default-light .grey-A700.secondary-text,
.theme-default-light .grey-A700 .secondary-text, .theme-default-light .blue-grey-50.secondary-text,
.theme-default-light .blue-grey-50 .secondary-text, .theme-default-light .blue-grey-100.secondary-text,
.theme-default-light .blue-grey-100 .secondary-text, .theme-default-light .blue-grey-200.secondary-text,
.theme-default-light .blue-grey-200 .secondary-text, .theme-default-light .blue-grey-300.secondary-text,
.theme-default-light .blue-grey-300 .secondary-text, .theme-default-light .blue-grey-A100.secondary-text,
.theme-default-light .blue-grey-A100 .secondary-text, .theme-default-light .blue-grey-A200.secondary-text,
.theme-default-light .blue-grey-A200 .secondary-text, .theme-default-light .light-grey-50.secondary-text,
.theme-default-light .light-grey-50 .secondary-text, .theme-default-light .light-grey-100.secondary-text,
.theme-default-light .light-grey-100 .secondary-text, .theme-default-light .light-grey-200.secondary-text,
.theme-default-light .light-grey-200 .secondary-text, .theme-default-light .light-grey-300.secondary-text,
.theme-default-light .light-grey-300 .secondary-text, .theme-default-light .light-grey-400.secondary-text,
.theme-default-light .light-grey-400 .secondary-text, .theme-default-light .light-grey-500.secondary-text,
.theme-default-light .light-grey-500 .secondary-text, .theme-default-light .light-grey-600.secondary-text,
.theme-default-light .light-grey-600 .secondary-text, .theme-default-light .light-grey-700.secondary-text,
.theme-default-light .light-grey-700 .secondary-text, .theme-default-light .light-grey-800.secondary-text,
.theme-default-light .light-grey-800 .secondary-text, .theme-default-light .light-grey-900.secondary-text,
.theme-default-light .light-grey-900 .secondary-text, .theme-default-light .light-grey-A100.secondary-text,
.theme-default-light .light-grey-A100 .secondary-text, .theme-default-light .light-grey-A200.secondary-text,
.theme-default-light .light-grey-A200 .secondary-text, .theme-default-light .light-grey-A400.secondary-text,
.theme-default-light .light-grey-A400 .secondary-text, .theme-default-light .light-grey-A700.secondary-text,
.theme-default-light .light-grey-A700 .secondary-text, .theme-default-light .primary-50.secondary-text,
.theme-default-light .primary-50 .secondary-text, .theme-default-light .primary-100.secondary-text,
.theme-default-light .primary-100 .secondary-text, .theme-default-light .primary-200.secondary-text,
.theme-default-light .primary-200 .secondary-text, .theme-default-light .primary-300.secondary-text,
.theme-default-light .primary-300 .secondary-text, .theme-default-light .primary-A100.secondary-text,
.theme-default-light .primary-A100 .secondary-text, .theme-default-light .primary-A200.secondary-text,
.theme-default-light .primary-A200 .secondary-text, .theme-default-light .accent-50.secondary-text,
.theme-default-light .accent-50 .secondary-text, .theme-default-light .accent-100.secondary-text,
.theme-default-light .accent-100 .secondary-text, .theme-default-light .accent-200.secondary-text,
.theme-default-light .accent-200 .secondary-text, .theme-default-light .accent-300.secondary-text,
.theme-default-light .accent-300 .secondary-text, .theme-default-light .accent-A100.secondary-text,
.theme-default-light .accent-A100 .secondary-text, .theme-default-light .warn-50.secondary-text,
.theme-default-light .warn-50 .secondary-text, .theme-default-light .warn-100.secondary-text,
.theme-default-light .warn-100 .secondary-text, .theme-default-light .warn-200.secondary-text,
.theme-default-light .warn-200 .secondary-text, .theme-default-light .warn-300.secondary-text,
.theme-default-light .warn-300 .secondary-text, .theme-default-light .warn-400.secondary-text,
.theme-default-light .warn-400 .secondary-text, .theme-default-light .warn-A100.secondary-text,
.theme-default-light .warn-A100 .secondary-text {
  color: rgba(0, 0, 0, 0.54) !important;
}
.theme-default-light .red-50.hint-text,
.theme-default-light .red-50 .hint-text, .theme-default-light .red-50.disabled-text,
.theme-default-light .red-50 .disabled-text, .theme-default-light .red-100.hint-text,
.theme-default-light .red-100 .hint-text, .theme-default-light .red-100.disabled-text,
.theme-default-light .red-100 .disabled-text, .theme-default-light .red-200.hint-text,
.theme-default-light .red-200 .hint-text, .theme-default-light .red-200.disabled-text,
.theme-default-light .red-200 .disabled-text, .theme-default-light .red-300.hint-text,
.theme-default-light .red-300 .hint-text, .theme-default-light .red-300.disabled-text,
.theme-default-light .red-300 .disabled-text, .theme-default-light .red-400.hint-text,
.theme-default-light .red-400 .hint-text, .theme-default-light .red-400.disabled-text,
.theme-default-light .red-400 .disabled-text, .theme-default-light .red-A100.hint-text,
.theme-default-light .red-A100 .hint-text, .theme-default-light .red-A100.disabled-text,
.theme-default-light .red-A100 .disabled-text, .theme-default-light .pink-50.hint-text,
.theme-default-light .pink-50 .hint-text, .theme-default-light .pink-50.disabled-text,
.theme-default-light .pink-50 .disabled-text, .theme-default-light .pink-100.hint-text,
.theme-default-light .pink-100 .hint-text, .theme-default-light .pink-100.disabled-text,
.theme-default-light .pink-100 .disabled-text, .theme-default-light .pink-200.hint-text,
.theme-default-light .pink-200 .hint-text, .theme-default-light .pink-200.disabled-text,
.theme-default-light .pink-200 .disabled-text, .theme-default-light .pink-300.hint-text,
.theme-default-light .pink-300 .hint-text, .theme-default-light .pink-300.disabled-text,
.theme-default-light .pink-300 .disabled-text, .theme-default-light .pink-400.hint-text,
.theme-default-light .pink-400 .hint-text, .theme-default-light .pink-400.disabled-text,
.theme-default-light .pink-400 .disabled-text, .theme-default-light .pink-A100.hint-text,
.theme-default-light .pink-A100 .hint-text, .theme-default-light .pink-A100.disabled-text,
.theme-default-light .pink-A100 .disabled-text, .theme-default-light .purple-50.hint-text,
.theme-default-light .purple-50 .hint-text, .theme-default-light .purple-50.disabled-text,
.theme-default-light .purple-50 .disabled-text, .theme-default-light .purple-100.hint-text,
.theme-default-light .purple-100 .hint-text, .theme-default-light .purple-100.disabled-text,
.theme-default-light .purple-100 .disabled-text, .theme-default-light .purple-200.hint-text,
.theme-default-light .purple-200 .hint-text, .theme-default-light .purple-200.disabled-text,
.theme-default-light .purple-200 .disabled-text, .theme-default-light .purple-A100.hint-text,
.theme-default-light .purple-A100 .hint-text, .theme-default-light .purple-A100.disabled-text,
.theme-default-light .purple-A100 .disabled-text, .theme-default-light .deep-purple-50.hint-text,
.theme-default-light .deep-purple-50 .hint-text, .theme-default-light .deep-purple-50.disabled-text,
.theme-default-light .deep-purple-50 .disabled-text, .theme-default-light .deep-purple-100.hint-text,
.theme-default-light .deep-purple-100 .hint-text, .theme-default-light .deep-purple-100.disabled-text,
.theme-default-light .deep-purple-100 .disabled-text, .theme-default-light .deep-purple-200.hint-text,
.theme-default-light .deep-purple-200 .hint-text, .theme-default-light .deep-purple-200.disabled-text,
.theme-default-light .deep-purple-200 .disabled-text, .theme-default-light .deep-purple-A100.hint-text,
.theme-default-light .deep-purple-A100 .hint-text, .theme-default-light .deep-purple-A100.disabled-text,
.theme-default-light .deep-purple-A100 .disabled-text, .theme-default-light .indigo-50.hint-text,
.theme-default-light .indigo-50 .hint-text, .theme-default-light .indigo-50.disabled-text,
.theme-default-light .indigo-50 .disabled-text, .theme-default-light .indigo-100.hint-text,
.theme-default-light .indigo-100 .hint-text, .theme-default-light .indigo-100.disabled-text,
.theme-default-light .indigo-100 .disabled-text, .theme-default-light .indigo-200.hint-text,
.theme-default-light .indigo-200 .hint-text, .theme-default-light .indigo-200.disabled-text,
.theme-default-light .indigo-200 .disabled-text, .theme-default-light .indigo-A100.hint-text,
.theme-default-light .indigo-A100 .hint-text, .theme-default-light .indigo-A100.disabled-text,
.theme-default-light .indigo-A100 .disabled-text, .theme-default-light .blue-50.hint-text,
.theme-default-light .blue-50 .hint-text, .theme-default-light .blue-50.disabled-text,
.theme-default-light .blue-50 .disabled-text, .theme-default-light .blue-100.hint-text,
.theme-default-light .blue-100 .hint-text, .theme-default-light .blue-100.disabled-text,
.theme-default-light .blue-100 .disabled-text, .theme-default-light .blue-200.hint-text,
.theme-default-light .blue-200 .hint-text, .theme-default-light .blue-200.disabled-text,
.theme-default-light .blue-200 .disabled-text, .theme-default-light .blue-300.hint-text,
.theme-default-light .blue-300 .hint-text, .theme-default-light .blue-300.disabled-text,
.theme-default-light .blue-300 .disabled-text, .theme-default-light .blue-A100.hint-text,
.theme-default-light .blue-A100 .hint-text, .theme-default-light .blue-A100.disabled-text,
.theme-default-light .blue-A100 .disabled-text, .theme-default-light .light-blue-50.hint-text,
.theme-default-light .light-blue-50 .hint-text, .theme-default-light .light-blue-50.disabled-text,
.theme-default-light .light-blue-50 .disabled-text, .theme-default-light .light-blue-100.hint-text,
.theme-default-light .light-blue-100 .hint-text, .theme-default-light .light-blue-100.disabled-text,
.theme-default-light .light-blue-100 .disabled-text, .theme-default-light .light-blue-200.hint-text,
.theme-default-light .light-blue-200 .hint-text, .theme-default-light .light-blue-200.disabled-text,
.theme-default-light .light-blue-200 .disabled-text, .theme-default-light .light-blue-300.hint-text,
.theme-default-light .light-blue-300 .hint-text, .theme-default-light .light-blue-300.disabled-text,
.theme-default-light .light-blue-300 .disabled-text, .theme-default-light .light-blue-400.hint-text,
.theme-default-light .light-blue-400 .hint-text, .theme-default-light .light-blue-400.disabled-text,
.theme-default-light .light-blue-400 .disabled-text, .theme-default-light .light-blue-A100.hint-text,
.theme-default-light .light-blue-A100 .hint-text, .theme-default-light .light-blue-A100.disabled-text,
.theme-default-light .light-blue-A100 .disabled-text, .theme-default-light .light-blue-A200.hint-text,
.theme-default-light .light-blue-A200 .hint-text, .theme-default-light .light-blue-A200.disabled-text,
.theme-default-light .light-blue-A200 .disabled-text, .theme-default-light .light-blue-A400.hint-text,
.theme-default-light .light-blue-A400 .hint-text, .theme-default-light .light-blue-A400.disabled-text,
.theme-default-light .light-blue-A400 .disabled-text, .theme-default-light .cyan-50.hint-text,
.theme-default-light .cyan-50 .hint-text, .theme-default-light .cyan-50.disabled-text,
.theme-default-light .cyan-50 .disabled-text, .theme-default-light .cyan-100.hint-text,
.theme-default-light .cyan-100 .hint-text, .theme-default-light .cyan-100.disabled-text,
.theme-default-light .cyan-100 .disabled-text, .theme-default-light .cyan-200.hint-text,
.theme-default-light .cyan-200 .hint-text, .theme-default-light .cyan-200.disabled-text,
.theme-default-light .cyan-200 .disabled-text, .theme-default-light .cyan-300.hint-text,
.theme-default-light .cyan-300 .hint-text, .theme-default-light .cyan-300.disabled-text,
.theme-default-light .cyan-300 .disabled-text, .theme-default-light .cyan-400.hint-text,
.theme-default-light .cyan-400 .hint-text, .theme-default-light .cyan-400.disabled-text,
.theme-default-light .cyan-400 .disabled-text, .theme-default-light .cyan-A100.hint-text,
.theme-default-light .cyan-A100 .hint-text, .theme-default-light .cyan-A100.disabled-text,
.theme-default-light .cyan-A100 .disabled-text, .theme-default-light .cyan-A200.hint-text,
.theme-default-light .cyan-A200 .hint-text, .theme-default-light .cyan-A200.disabled-text,
.theme-default-light .cyan-A200 .disabled-text, .theme-default-light .cyan-A400.hint-text,
.theme-default-light .cyan-A400 .hint-text, .theme-default-light .cyan-A400.disabled-text,
.theme-default-light .cyan-A400 .disabled-text, .theme-default-light .cyan-A700.hint-text,
.theme-default-light .cyan-A700 .hint-text, .theme-default-light .cyan-A700.disabled-text,
.theme-default-light .cyan-A700 .disabled-text, .theme-default-light .teal-50.hint-text,
.theme-default-light .teal-50 .hint-text, .theme-default-light .teal-50.disabled-text,
.theme-default-light .teal-50 .disabled-text, .theme-default-light .teal-100.hint-text,
.theme-default-light .teal-100 .hint-text, .theme-default-light .teal-100.disabled-text,
.theme-default-light .teal-100 .disabled-text, .theme-default-light .teal-200.hint-text,
.theme-default-light .teal-200 .hint-text, .theme-default-light .teal-200.disabled-text,
.theme-default-light .teal-200 .disabled-text, .theme-default-light .teal-300.hint-text,
.theme-default-light .teal-300 .hint-text, .theme-default-light .teal-300.disabled-text,
.theme-default-light .teal-300 .disabled-text, .theme-default-light .teal-400.hint-text,
.theme-default-light .teal-400 .hint-text, .theme-default-light .teal-400.disabled-text,
.theme-default-light .teal-400 .disabled-text, .theme-default-light .teal-A100.hint-text,
.theme-default-light .teal-A100 .hint-text, .theme-default-light .teal-A100.disabled-text,
.theme-default-light .teal-A100 .disabled-text, .theme-default-light .teal-A200.hint-text,
.theme-default-light .teal-A200 .hint-text, .theme-default-light .teal-A200.disabled-text,
.theme-default-light .teal-A200 .disabled-text, .theme-default-light .teal-A400.hint-text,
.theme-default-light .teal-A400 .hint-text, .theme-default-light .teal-A400.disabled-text,
.theme-default-light .teal-A400 .disabled-text, .theme-default-light .teal-A700.hint-text,
.theme-default-light .teal-A700 .hint-text, .theme-default-light .teal-A700.disabled-text,
.theme-default-light .teal-A700 .disabled-text, .theme-default-light .green-50.hint-text,
.theme-default-light .green-50 .hint-text, .theme-default-light .green-50.disabled-text,
.theme-default-light .green-50 .disabled-text, .theme-default-light .green-100.hint-text,
.theme-default-light .green-100 .hint-text, .theme-default-light .green-100.disabled-text,
.theme-default-light .green-100 .disabled-text, .theme-default-light .green-200.hint-text,
.theme-default-light .green-200 .hint-text, .theme-default-light .green-200.disabled-text,
.theme-default-light .green-200 .disabled-text, .theme-default-light .green-300.hint-text,
.theme-default-light .green-300 .hint-text, .theme-default-light .green-300.disabled-text,
.theme-default-light .green-300 .disabled-text, .theme-default-light .green-400.hint-text,
.theme-default-light .green-400 .hint-text, .theme-default-light .green-400.disabled-text,
.theme-default-light .green-400 .disabled-text, .theme-default-light .green-A100.hint-text,
.theme-default-light .green-A100 .hint-text, .theme-default-light .green-A100.disabled-text,
.theme-default-light .green-A100 .disabled-text, .theme-default-light .green-A200.hint-text,
.theme-default-light .green-A200 .hint-text, .theme-default-light .green-A200.disabled-text,
.theme-default-light .green-A200 .disabled-text, .theme-default-light .green-A400.hint-text,
.theme-default-light .green-A400 .hint-text, .theme-default-light .green-A400.disabled-text,
.theme-default-light .green-A400 .disabled-text, .theme-default-light .green-A700.hint-text,
.theme-default-light .green-A700 .hint-text, .theme-default-light .green-A700.disabled-text,
.theme-default-light .green-A700 .disabled-text, .theme-default-light .light-green-50.hint-text,
.theme-default-light .light-green-50 .hint-text, .theme-default-light .light-green-50.disabled-text,
.theme-default-light .light-green-50 .disabled-text, .theme-default-light .light-green-100.hint-text,
.theme-default-light .light-green-100 .hint-text, .theme-default-light .light-green-100.disabled-text,
.theme-default-light .light-green-100 .disabled-text, .theme-default-light .light-green-200.hint-text,
.theme-default-light .light-green-200 .hint-text, .theme-default-light .light-green-200.disabled-text,
.theme-default-light .light-green-200 .disabled-text, .theme-default-light .light-green-300.hint-text,
.theme-default-light .light-green-300 .hint-text, .theme-default-light .light-green-300.disabled-text,
.theme-default-light .light-green-300 .disabled-text, .theme-default-light .light-green-400.hint-text,
.theme-default-light .light-green-400 .hint-text, .theme-default-light .light-green-400.disabled-text,
.theme-default-light .light-green-400 .disabled-text, .theme-default-light .light-green-500.hint-text,
.theme-default-light .light-green-500 .hint-text, .theme-default-light .light-green-500.disabled-text,
.theme-default-light .light-green-500 .disabled-text, .theme-default-light .light-green-A100.hint-text,
.theme-default-light .light-green-A100 .hint-text, .theme-default-light .light-green-A100.disabled-text,
.theme-default-light .light-green-A100 .disabled-text, .theme-default-light .light-green-A200.hint-text,
.theme-default-light .light-green-A200 .hint-text, .theme-default-light .light-green-A200.disabled-text,
.theme-default-light .light-green-A200 .disabled-text, .theme-default-light .light-green-A400.hint-text,
.theme-default-light .light-green-A400 .hint-text, .theme-default-light .light-green-A400.disabled-text,
.theme-default-light .light-green-A400 .disabled-text, .theme-default-light .light-green-A700.hint-text,
.theme-default-light .light-green-A700 .hint-text, .theme-default-light .light-green-A700.disabled-text,
.theme-default-light .light-green-A700 .disabled-text, .theme-default-light .lime-50.hint-text,
.theme-default-light .lime-50 .hint-text, .theme-default-light .lime-50.disabled-text,
.theme-default-light .lime-50 .disabled-text, .theme-default-light .lime-100.hint-text,
.theme-default-light .lime-100 .hint-text, .theme-default-light .lime-100.disabled-text,
.theme-default-light .lime-100 .disabled-text, .theme-default-light .lime-200.hint-text,
.theme-default-light .lime-200 .hint-text, .theme-default-light .lime-200.disabled-text,
.theme-default-light .lime-200 .disabled-text, .theme-default-light .lime-300.hint-text,
.theme-default-light .lime-300 .hint-text, .theme-default-light .lime-300.disabled-text,
.theme-default-light .lime-300 .disabled-text, .theme-default-light .lime-400.hint-text,
.theme-default-light .lime-400 .hint-text, .theme-default-light .lime-400.disabled-text,
.theme-default-light .lime-400 .disabled-text, .theme-default-light .lime-A100.hint-text,
.theme-default-light .lime-A100 .hint-text, .theme-default-light .lime-A100.disabled-text,
.theme-default-light .lime-A100 .disabled-text, .theme-default-light .lime-A200.hint-text,
.theme-default-light .lime-A200 .hint-text, .theme-default-light .lime-A200.disabled-text,
.theme-default-light .lime-A200 .disabled-text, .theme-default-light .lime-A400.hint-text,
.theme-default-light .lime-A400 .hint-text, .theme-default-light .lime-A400.disabled-text,
.theme-default-light .lime-A400 .disabled-text, .theme-default-light .lime-A700.hint-text,
.theme-default-light .lime-A700 .hint-text, .theme-default-light .lime-A700.disabled-text,
.theme-default-light .lime-A700 .disabled-text, .theme-default-light .yellow-50.hint-text,
.theme-default-light .yellow-50 .hint-text, .theme-default-light .yellow-50.disabled-text,
.theme-default-light .yellow-50 .disabled-text, .theme-default-light .yellow-100.hint-text,
.theme-default-light .yellow-100 .hint-text, .theme-default-light .yellow-100.disabled-text,
.theme-default-light .yellow-100 .disabled-text, .theme-default-light .yellow-200.hint-text,
.theme-default-light .yellow-200 .hint-text, .theme-default-light .yellow-200.disabled-text,
.theme-default-light .yellow-200 .disabled-text, .theme-default-light .yellow-300.hint-text,
.theme-default-light .yellow-300 .hint-text, .theme-default-light .yellow-300.disabled-text,
.theme-default-light .yellow-300 .disabled-text, .theme-default-light .yellow-400.hint-text,
.theme-default-light .yellow-400 .hint-text, .theme-default-light .yellow-400.disabled-text,
.theme-default-light .yellow-400 .disabled-text, .theme-default-light .yellow-500.hint-text,
.theme-default-light .yellow-500 .hint-text, .theme-default-light .yellow-500.disabled-text,
.theme-default-light .yellow-500 .disabled-text, .theme-default-light .yellow-600.hint-text,
.theme-default-light .yellow-600 .hint-text, .theme-default-light .yellow-600.disabled-text,
.theme-default-light .yellow-600 .disabled-text, .theme-default-light .yellow-700.hint-text,
.theme-default-light .yellow-700 .hint-text, .theme-default-light .yellow-700.disabled-text,
.theme-default-light .yellow-700 .disabled-text, .theme-default-light .yellow-800.hint-text,
.theme-default-light .yellow-800 .hint-text, .theme-default-light .yellow-800.disabled-text,
.theme-default-light .yellow-800 .disabled-text, .theme-default-light .yellow-900.hint-text,
.theme-default-light .yellow-900 .hint-text, .theme-default-light .yellow-900.disabled-text,
.theme-default-light .yellow-900 .disabled-text, .theme-default-light .yellow-A100.hint-text,
.theme-default-light .yellow-A100 .hint-text, .theme-default-light .yellow-A100.disabled-text,
.theme-default-light .yellow-A100 .disabled-text, .theme-default-light .yellow-A200.hint-text,
.theme-default-light .yellow-A200 .hint-text, .theme-default-light .yellow-A200.disabled-text,
.theme-default-light .yellow-A200 .disabled-text, .theme-default-light .yellow-A400.hint-text,
.theme-default-light .yellow-A400 .hint-text, .theme-default-light .yellow-A400.disabled-text,
.theme-default-light .yellow-A400 .disabled-text, .theme-default-light .yellow-A700.hint-text,
.theme-default-light .yellow-A700 .hint-text, .theme-default-light .yellow-A700.disabled-text,
.theme-default-light .yellow-A700 .disabled-text, .theme-default-light .amber-50.hint-text,
.theme-default-light .amber-50 .hint-text, .theme-default-light .amber-50.disabled-text,
.theme-default-light .amber-50 .disabled-text, .theme-default-light .amber-100.hint-text,
.theme-default-light .amber-100 .hint-text, .theme-default-light .amber-100.disabled-text,
.theme-default-light .amber-100 .disabled-text, .theme-default-light .amber-200.hint-text,
.theme-default-light .amber-200 .hint-text, .theme-default-light .amber-200.disabled-text,
.theme-default-light .amber-200 .disabled-text, .theme-default-light .amber-300.hint-text,
.theme-default-light .amber-300 .hint-text, .theme-default-light .amber-300.disabled-text,
.theme-default-light .amber-300 .disabled-text, .theme-default-light .amber-400.hint-text,
.theme-default-light .amber-400 .hint-text, .theme-default-light .amber-400.disabled-text,
.theme-default-light .amber-400 .disabled-text, .theme-default-light .amber-500.hint-text,
.theme-default-light .amber-500 .hint-text, .theme-default-light .amber-500.disabled-text,
.theme-default-light .amber-500 .disabled-text, .theme-default-light .amber-600.hint-text,
.theme-default-light .amber-600 .hint-text, .theme-default-light .amber-600.disabled-text,
.theme-default-light .amber-600 .disabled-text, .theme-default-light .amber-700.hint-text,
.theme-default-light .amber-700 .hint-text, .theme-default-light .amber-700.disabled-text,
.theme-default-light .amber-700 .disabled-text, .theme-default-light .amber-800.hint-text,
.theme-default-light .amber-800 .hint-text, .theme-default-light .amber-800.disabled-text,
.theme-default-light .amber-800 .disabled-text, .theme-default-light .amber-900.hint-text,
.theme-default-light .amber-900 .hint-text, .theme-default-light .amber-900.disabled-text,
.theme-default-light .amber-900 .disabled-text, .theme-default-light .amber-A100.hint-text,
.theme-default-light .amber-A100 .hint-text, .theme-default-light .amber-A100.disabled-text,
.theme-default-light .amber-A100 .disabled-text, .theme-default-light .amber-A200.hint-text,
.theme-default-light .amber-A200 .hint-text, .theme-default-light .amber-A200.disabled-text,
.theme-default-light .amber-A200 .disabled-text, .theme-default-light .amber-A400.hint-text,
.theme-default-light .amber-A400 .hint-text, .theme-default-light .amber-A400.disabled-text,
.theme-default-light .amber-A400 .disabled-text, .theme-default-light .amber-A700.hint-text,
.theme-default-light .amber-A700 .hint-text, .theme-default-light .amber-A700.disabled-text,
.theme-default-light .amber-A700 .disabled-text, .theme-default-light .orange-50.hint-text,
.theme-default-light .orange-50 .hint-text, .theme-default-light .orange-50.disabled-text,
.theme-default-light .orange-50 .disabled-text, .theme-default-light .orange-100.hint-text,
.theme-default-light .orange-100 .hint-text, .theme-default-light .orange-100.disabled-text,
.theme-default-light .orange-100 .disabled-text, .theme-default-light .orange-200.hint-text,
.theme-default-light .orange-200 .hint-text, .theme-default-light .orange-200.disabled-text,
.theme-default-light .orange-200 .disabled-text, .theme-default-light .orange-300.hint-text,
.theme-default-light .orange-300 .hint-text, .theme-default-light .orange-300.disabled-text,
.theme-default-light .orange-300 .disabled-text, .theme-default-light .orange-400.hint-text,
.theme-default-light .orange-400 .hint-text, .theme-default-light .orange-400.disabled-text,
.theme-default-light .orange-400 .disabled-text, .theme-default-light .orange-500.hint-text,
.theme-default-light .orange-500 .hint-text, .theme-default-light .orange-500.disabled-text,
.theme-default-light .orange-500 .disabled-text, .theme-default-light .orange-600.hint-text,
.theme-default-light .orange-600 .hint-text, .theme-default-light .orange-600.disabled-text,
.theme-default-light .orange-600 .disabled-text, .theme-default-light .orange-700.hint-text,
.theme-default-light .orange-700 .hint-text, .theme-default-light .orange-700.disabled-text,
.theme-default-light .orange-700 .disabled-text, .theme-default-light .orange-A100.hint-text,
.theme-default-light .orange-A100 .hint-text, .theme-default-light .orange-A100.disabled-text,
.theme-default-light .orange-A100 .disabled-text, .theme-default-light .orange-A200.hint-text,
.theme-default-light .orange-A200 .hint-text, .theme-default-light .orange-A200.disabled-text,
.theme-default-light .orange-A200 .disabled-text, .theme-default-light .orange-A400.hint-text,
.theme-default-light .orange-A400 .hint-text, .theme-default-light .orange-A400.disabled-text,
.theme-default-light .orange-A400 .disabled-text, .theme-default-light .orange-A700.hint-text,
.theme-default-light .orange-A700 .hint-text, .theme-default-light .orange-A700.disabled-text,
.theme-default-light .orange-A700 .disabled-text, .theme-default-light .deep-orange-50.hint-text,
.theme-default-light .deep-orange-50 .hint-text, .theme-default-light .deep-orange-50.disabled-text,
.theme-default-light .deep-orange-50 .disabled-text, .theme-default-light .deep-orange-100.hint-text,
.theme-default-light .deep-orange-100 .hint-text, .theme-default-light .deep-orange-100.disabled-text,
.theme-default-light .deep-orange-100 .disabled-text, .theme-default-light .deep-orange-200.hint-text,
.theme-default-light .deep-orange-200 .hint-text, .theme-default-light .deep-orange-200.disabled-text,
.theme-default-light .deep-orange-200 .disabled-text, .theme-default-light .deep-orange-300.hint-text,
.theme-default-light .deep-orange-300 .hint-text, .theme-default-light .deep-orange-300.disabled-text,
.theme-default-light .deep-orange-300 .disabled-text, .theme-default-light .deep-orange-400.hint-text,
.theme-default-light .deep-orange-400 .hint-text, .theme-default-light .deep-orange-400.disabled-text,
.theme-default-light .deep-orange-400 .disabled-text, .theme-default-light .deep-orange-A100.hint-text,
.theme-default-light .deep-orange-A100 .hint-text, .theme-default-light .deep-orange-A100.disabled-text,
.theme-default-light .deep-orange-A100 .disabled-text, .theme-default-light .deep-orange-A200.hint-text,
.theme-default-light .deep-orange-A200 .hint-text, .theme-default-light .deep-orange-A200.disabled-text,
.theme-default-light .deep-orange-A200 .disabled-text, .theme-default-light .brown-50.hint-text,
.theme-default-light .brown-50 .hint-text, .theme-default-light .brown-50.disabled-text,
.theme-default-light .brown-50 .disabled-text, .theme-default-light .brown-100.hint-text,
.theme-default-light .brown-100 .hint-text, .theme-default-light .brown-100.disabled-text,
.theme-default-light .brown-100 .disabled-text, .theme-default-light .brown-200.hint-text,
.theme-default-light .brown-200 .hint-text, .theme-default-light .brown-200.disabled-text,
.theme-default-light .brown-200 .disabled-text, .theme-default-light .brown-A100.hint-text,
.theme-default-light .brown-A100 .hint-text, .theme-default-light .brown-A100.disabled-text,
.theme-default-light .brown-A100 .disabled-text, .theme-default-light .brown-A200.hint-text,
.theme-default-light .brown-A200 .hint-text, .theme-default-light .brown-A200.disabled-text,
.theme-default-light .brown-A200 .disabled-text, .theme-default-light .grey-50.hint-text,
.theme-default-light .grey-50 .hint-text, .theme-default-light .grey-50.disabled-text,
.theme-default-light .grey-50 .disabled-text, .theme-default-light .grey-100.hint-text,
.theme-default-light .grey-100 .hint-text, .theme-default-light .grey-100.disabled-text,
.theme-default-light .grey-100 .disabled-text, .theme-default-light .grey-200.hint-text,
.theme-default-light .grey-200 .hint-text, .theme-default-light .grey-200.disabled-text,
.theme-default-light .grey-200 .disabled-text, .theme-default-light .grey-300.hint-text,
.theme-default-light .grey-300 .hint-text, .theme-default-light .grey-300.disabled-text,
.theme-default-light .grey-300 .disabled-text, .theme-default-light .grey-400.hint-text,
.theme-default-light .grey-400 .hint-text, .theme-default-light .grey-400.disabled-text,
.theme-default-light .grey-400 .disabled-text, .theme-default-light .grey-A100.hint-text,
.theme-default-light .grey-A100 .hint-text, .theme-default-light .grey-A100.disabled-text,
.theme-default-light .grey-A100 .disabled-text, .theme-default-light .grey-A200.hint-text,
.theme-default-light .grey-A200 .hint-text, .theme-default-light .grey-A200.disabled-text,
.theme-default-light .grey-A200 .disabled-text, .theme-default-light .grey-A400.hint-text,
.theme-default-light .grey-A400 .hint-text, .theme-default-light .grey-A400.disabled-text,
.theme-default-light .grey-A400 .disabled-text, .theme-default-light .grey-A700.hint-text,
.theme-default-light .grey-A700 .hint-text, .theme-default-light .grey-A700.disabled-text,
.theme-default-light .grey-A700 .disabled-text, .theme-default-light .blue-grey-50.hint-text,
.theme-default-light .blue-grey-50 .hint-text, .theme-default-light .blue-grey-50.disabled-text,
.theme-default-light .blue-grey-50 .disabled-text, .theme-default-light .blue-grey-100.hint-text,
.theme-default-light .blue-grey-100 .hint-text, .theme-default-light .blue-grey-100.disabled-text,
.theme-default-light .blue-grey-100 .disabled-text, .theme-default-light .blue-grey-200.hint-text,
.theme-default-light .blue-grey-200 .hint-text, .theme-default-light .blue-grey-200.disabled-text,
.theme-default-light .blue-grey-200 .disabled-text, .theme-default-light .blue-grey-300.hint-text,
.theme-default-light .blue-grey-300 .hint-text, .theme-default-light .blue-grey-300.disabled-text,
.theme-default-light .blue-grey-300 .disabled-text, .theme-default-light .blue-grey-A100.hint-text,
.theme-default-light .blue-grey-A100 .hint-text, .theme-default-light .blue-grey-A100.disabled-text,
.theme-default-light .blue-grey-A100 .disabled-text, .theme-default-light .blue-grey-A200.hint-text,
.theme-default-light .blue-grey-A200 .hint-text, .theme-default-light .blue-grey-A200.disabled-text,
.theme-default-light .blue-grey-A200 .disabled-text, .theme-default-light .light-grey-50.hint-text,
.theme-default-light .light-grey-50 .hint-text, .theme-default-light .light-grey-50.disabled-text,
.theme-default-light .light-grey-50 .disabled-text, .theme-default-light .light-grey-100.hint-text,
.theme-default-light .light-grey-100 .hint-text, .theme-default-light .light-grey-100.disabled-text,
.theme-default-light .light-grey-100 .disabled-text, .theme-default-light .light-grey-200.hint-text,
.theme-default-light .light-grey-200 .hint-text, .theme-default-light .light-grey-200.disabled-text,
.theme-default-light .light-grey-200 .disabled-text, .theme-default-light .light-grey-300.hint-text,
.theme-default-light .light-grey-300 .hint-text, .theme-default-light .light-grey-300.disabled-text,
.theme-default-light .light-grey-300 .disabled-text, .theme-default-light .light-grey-400.hint-text,
.theme-default-light .light-grey-400 .hint-text, .theme-default-light .light-grey-400.disabled-text,
.theme-default-light .light-grey-400 .disabled-text, .theme-default-light .light-grey-500.hint-text,
.theme-default-light .light-grey-500 .hint-text, .theme-default-light .light-grey-500.disabled-text,
.theme-default-light .light-grey-500 .disabled-text, .theme-default-light .light-grey-600.hint-text,
.theme-default-light .light-grey-600 .hint-text, .theme-default-light .light-grey-600.disabled-text,
.theme-default-light .light-grey-600 .disabled-text, .theme-default-light .light-grey-700.hint-text,
.theme-default-light .light-grey-700 .hint-text, .theme-default-light .light-grey-700.disabled-text,
.theme-default-light .light-grey-700 .disabled-text, .theme-default-light .light-grey-800.hint-text,
.theme-default-light .light-grey-800 .hint-text, .theme-default-light .light-grey-800.disabled-text,
.theme-default-light .light-grey-800 .disabled-text, .theme-default-light .light-grey-900.hint-text,
.theme-default-light .light-grey-900 .hint-text, .theme-default-light .light-grey-900.disabled-text,
.theme-default-light .light-grey-900 .disabled-text, .theme-default-light .light-grey-A100.hint-text,
.theme-default-light .light-grey-A100 .hint-text, .theme-default-light .light-grey-A100.disabled-text,
.theme-default-light .light-grey-A100 .disabled-text, .theme-default-light .light-grey-A200.hint-text,
.theme-default-light .light-grey-A200 .hint-text, .theme-default-light .light-grey-A200.disabled-text,
.theme-default-light .light-grey-A200 .disabled-text, .theme-default-light .light-grey-A400.hint-text,
.theme-default-light .light-grey-A400 .hint-text, .theme-default-light .light-grey-A400.disabled-text,
.theme-default-light .light-grey-A400 .disabled-text, .theme-default-light .light-grey-A700.hint-text,
.theme-default-light .light-grey-A700 .hint-text, .theme-default-light .light-grey-A700.disabled-text,
.theme-default-light .light-grey-A700 .disabled-text, .theme-default-light .primary-50.hint-text,
.theme-default-light .primary-50 .hint-text, .theme-default-light .primary-50.disabled-text,
.theme-default-light .primary-50 .disabled-text, .theme-default-light .primary-100.hint-text,
.theme-default-light .primary-100 .hint-text, .theme-default-light .primary-100.disabled-text,
.theme-default-light .primary-100 .disabled-text, .theme-default-light .primary-200.hint-text,
.theme-default-light .primary-200 .hint-text, .theme-default-light .primary-200.disabled-text,
.theme-default-light .primary-200 .disabled-text, .theme-default-light .primary-300.hint-text,
.theme-default-light .primary-300 .hint-text, .theme-default-light .primary-300.disabled-text,
.theme-default-light .primary-300 .disabled-text, .theme-default-light .primary-A100.hint-text,
.theme-default-light .primary-A100 .hint-text, .theme-default-light .primary-A100.disabled-text,
.theme-default-light .primary-A100 .disabled-text, .theme-default-light .primary-A200.hint-text,
.theme-default-light .primary-A200 .hint-text, .theme-default-light .primary-A200.disabled-text,
.theme-default-light .primary-A200 .disabled-text, .theme-default-light .accent-50.hint-text,
.theme-default-light .accent-50 .hint-text, .theme-default-light .accent-50.disabled-text,
.theme-default-light .accent-50 .disabled-text, .theme-default-light .accent-100.hint-text,
.theme-default-light .accent-100 .hint-text, .theme-default-light .accent-100.disabled-text,
.theme-default-light .accent-100 .disabled-text, .theme-default-light .accent-200.hint-text,
.theme-default-light .accent-200 .hint-text, .theme-default-light .accent-200.disabled-text,
.theme-default-light .accent-200 .disabled-text, .theme-default-light .accent-300.hint-text,
.theme-default-light .accent-300 .hint-text, .theme-default-light .accent-300.disabled-text,
.theme-default-light .accent-300 .disabled-text, .theme-default-light .accent-A100.hint-text,
.theme-default-light .accent-A100 .hint-text, .theme-default-light .accent-A100.disabled-text,
.theme-default-light .accent-A100 .disabled-text, .theme-default-light .warn-50.hint-text,
.theme-default-light .warn-50 .hint-text, .theme-default-light .warn-50.disabled-text,
.theme-default-light .warn-50 .disabled-text, .theme-default-light .warn-100.hint-text,
.theme-default-light .warn-100 .hint-text, .theme-default-light .warn-100.disabled-text,
.theme-default-light .warn-100 .disabled-text, .theme-default-light .warn-200.hint-text,
.theme-default-light .warn-200 .hint-text, .theme-default-light .warn-200.disabled-text,
.theme-default-light .warn-200 .disabled-text, .theme-default-light .warn-300.hint-text,
.theme-default-light .warn-300 .hint-text, .theme-default-light .warn-300.disabled-text,
.theme-default-light .warn-300 .disabled-text, .theme-default-light .warn-400.hint-text,
.theme-default-light .warn-400 .hint-text, .theme-default-light .warn-400.disabled-text,
.theme-default-light .warn-400 .disabled-text, .theme-default-light .warn-A100.hint-text,
.theme-default-light .warn-A100 .hint-text, .theme-default-light .warn-A100.disabled-text,
.theme-default-light .warn-A100 .disabled-text {
  color: rgba(0, 0, 0, 0.38) !important;
}
.theme-default-light .red-50.divider,
.theme-default-light .red-50 .divider, .theme-default-light .red-100.divider,
.theme-default-light .red-100 .divider, .theme-default-light .red-200.divider,
.theme-default-light .red-200 .divider, .theme-default-light .red-300.divider,
.theme-default-light .red-300 .divider, .theme-default-light .red-400.divider,
.theme-default-light .red-400 .divider, .theme-default-light .red-A100.divider,
.theme-default-light .red-A100 .divider, .theme-default-light .pink-50.divider,
.theme-default-light .pink-50 .divider, .theme-default-light .pink-100.divider,
.theme-default-light .pink-100 .divider, .theme-default-light .pink-200.divider,
.theme-default-light .pink-200 .divider, .theme-default-light .pink-300.divider,
.theme-default-light .pink-300 .divider, .theme-default-light .pink-400.divider,
.theme-default-light .pink-400 .divider, .theme-default-light .pink-A100.divider,
.theme-default-light .pink-A100 .divider, .theme-default-light .purple-50.divider,
.theme-default-light .purple-50 .divider, .theme-default-light .purple-100.divider,
.theme-default-light .purple-100 .divider, .theme-default-light .purple-200.divider,
.theme-default-light .purple-200 .divider, .theme-default-light .purple-A100.divider,
.theme-default-light .purple-A100 .divider, .theme-default-light .deep-purple-50.divider,
.theme-default-light .deep-purple-50 .divider, .theme-default-light .deep-purple-100.divider,
.theme-default-light .deep-purple-100 .divider, .theme-default-light .deep-purple-200.divider,
.theme-default-light .deep-purple-200 .divider, .theme-default-light .deep-purple-A100.divider,
.theme-default-light .deep-purple-A100 .divider, .theme-default-light .indigo-50.divider,
.theme-default-light .indigo-50 .divider, .theme-default-light .indigo-100.divider,
.theme-default-light .indigo-100 .divider, .theme-default-light .indigo-200.divider,
.theme-default-light .indigo-200 .divider, .theme-default-light .indigo-A100.divider,
.theme-default-light .indigo-A100 .divider, .theme-default-light .blue-50.divider,
.theme-default-light .blue-50 .divider, .theme-default-light .blue-100.divider,
.theme-default-light .blue-100 .divider, .theme-default-light .blue-200.divider,
.theme-default-light .blue-200 .divider, .theme-default-light .blue-300.divider,
.theme-default-light .blue-300 .divider, .theme-default-light .blue-A100.divider,
.theme-default-light .blue-A100 .divider, .theme-default-light .light-blue-50.divider,
.theme-default-light .light-blue-50 .divider, .theme-default-light .light-blue-100.divider,
.theme-default-light .light-blue-100 .divider, .theme-default-light .light-blue-200.divider,
.theme-default-light .light-blue-200 .divider, .theme-default-light .light-blue-300.divider,
.theme-default-light .light-blue-300 .divider, .theme-default-light .light-blue-400.divider,
.theme-default-light .light-blue-400 .divider, .theme-default-light .light-blue-A100.divider,
.theme-default-light .light-blue-A100 .divider, .theme-default-light .light-blue-A200.divider,
.theme-default-light .light-blue-A200 .divider, .theme-default-light .light-blue-A400.divider,
.theme-default-light .light-blue-A400 .divider, .theme-default-light .cyan-50.divider,
.theme-default-light .cyan-50 .divider, .theme-default-light .cyan-100.divider,
.theme-default-light .cyan-100 .divider, .theme-default-light .cyan-200.divider,
.theme-default-light .cyan-200 .divider, .theme-default-light .cyan-300.divider,
.theme-default-light .cyan-300 .divider, .theme-default-light .cyan-400.divider,
.theme-default-light .cyan-400 .divider, .theme-default-light .cyan-A100.divider,
.theme-default-light .cyan-A100 .divider, .theme-default-light .cyan-A200.divider,
.theme-default-light .cyan-A200 .divider, .theme-default-light .cyan-A400.divider,
.theme-default-light .cyan-A400 .divider, .theme-default-light .cyan-A700.divider,
.theme-default-light .cyan-A700 .divider, .theme-default-light .teal-50.divider,
.theme-default-light .teal-50 .divider, .theme-default-light .teal-100.divider,
.theme-default-light .teal-100 .divider, .theme-default-light .teal-200.divider,
.theme-default-light .teal-200 .divider, .theme-default-light .teal-300.divider,
.theme-default-light .teal-300 .divider, .theme-default-light .teal-400.divider,
.theme-default-light .teal-400 .divider, .theme-default-light .teal-A100.divider,
.theme-default-light .teal-A100 .divider, .theme-default-light .teal-A200.divider,
.theme-default-light .teal-A200 .divider, .theme-default-light .teal-A400.divider,
.theme-default-light .teal-A400 .divider, .theme-default-light .teal-A700.divider,
.theme-default-light .teal-A700 .divider, .theme-default-light .green-50.divider,
.theme-default-light .green-50 .divider, .theme-default-light .green-100.divider,
.theme-default-light .green-100 .divider, .theme-default-light .green-200.divider,
.theme-default-light .green-200 .divider, .theme-default-light .green-300.divider,
.theme-default-light .green-300 .divider, .theme-default-light .green-400.divider,
.theme-default-light .green-400 .divider, .theme-default-light .green-A100.divider,
.theme-default-light .green-A100 .divider, .theme-default-light .green-A200.divider,
.theme-default-light .green-A200 .divider, .theme-default-light .green-A400.divider,
.theme-default-light .green-A400 .divider, .theme-default-light .green-A700.divider,
.theme-default-light .green-A700 .divider, .theme-default-light .light-green-50.divider,
.theme-default-light .light-green-50 .divider, .theme-default-light .light-green-100.divider,
.theme-default-light .light-green-100 .divider, .theme-default-light .light-green-200.divider,
.theme-default-light .light-green-200 .divider, .theme-default-light .light-green-300.divider,
.theme-default-light .light-green-300 .divider, .theme-default-light .light-green-400.divider,
.theme-default-light .light-green-400 .divider, .theme-default-light .light-green-500.divider,
.theme-default-light .light-green-500 .divider, .theme-default-light .light-green-A100.divider,
.theme-default-light .light-green-A100 .divider, .theme-default-light .light-green-A200.divider,
.theme-default-light .light-green-A200 .divider, .theme-default-light .light-green-A400.divider,
.theme-default-light .light-green-A400 .divider, .theme-default-light .light-green-A700.divider,
.theme-default-light .light-green-A700 .divider, .theme-default-light .lime-50.divider,
.theme-default-light .lime-50 .divider, .theme-default-light .lime-100.divider,
.theme-default-light .lime-100 .divider, .theme-default-light .lime-200.divider,
.theme-default-light .lime-200 .divider, .theme-default-light .lime-300.divider,
.theme-default-light .lime-300 .divider, .theme-default-light .lime-400.divider,
.theme-default-light .lime-400 .divider, .theme-default-light .lime-A100.divider,
.theme-default-light .lime-A100 .divider, .theme-default-light .lime-A200.divider,
.theme-default-light .lime-A200 .divider, .theme-default-light .lime-A400.divider,
.theme-default-light .lime-A400 .divider, .theme-default-light .lime-A700.divider,
.theme-default-light .lime-A700 .divider, .theme-default-light .yellow-50.divider,
.theme-default-light .yellow-50 .divider, .theme-default-light .yellow-100.divider,
.theme-default-light .yellow-100 .divider, .theme-default-light .yellow-200.divider,
.theme-default-light .yellow-200 .divider, .theme-default-light .yellow-300.divider,
.theme-default-light .yellow-300 .divider, .theme-default-light .yellow-400.divider,
.theme-default-light .yellow-400 .divider, .theme-default-light .yellow-500.divider,
.theme-default-light .yellow-500 .divider, .theme-default-light .yellow-600.divider,
.theme-default-light .yellow-600 .divider, .theme-default-light .yellow-700.divider,
.theme-default-light .yellow-700 .divider, .theme-default-light .yellow-800.divider,
.theme-default-light .yellow-800 .divider, .theme-default-light .yellow-900.divider,
.theme-default-light .yellow-900 .divider, .theme-default-light .yellow-A100.divider,
.theme-default-light .yellow-A100 .divider, .theme-default-light .yellow-A200.divider,
.theme-default-light .yellow-A200 .divider, .theme-default-light .yellow-A400.divider,
.theme-default-light .yellow-A400 .divider, .theme-default-light .yellow-A700.divider,
.theme-default-light .yellow-A700 .divider, .theme-default-light .amber-50.divider,
.theme-default-light .amber-50 .divider, .theme-default-light .amber-100.divider,
.theme-default-light .amber-100 .divider, .theme-default-light .amber-200.divider,
.theme-default-light .amber-200 .divider, .theme-default-light .amber-300.divider,
.theme-default-light .amber-300 .divider, .theme-default-light .amber-400.divider,
.theme-default-light .amber-400 .divider, .theme-default-light .amber-500.divider,
.theme-default-light .amber-500 .divider, .theme-default-light .amber-600.divider,
.theme-default-light .amber-600 .divider, .theme-default-light .amber-700.divider,
.theme-default-light .amber-700 .divider, .theme-default-light .amber-800.divider,
.theme-default-light .amber-800 .divider, .theme-default-light .amber-900.divider,
.theme-default-light .amber-900 .divider, .theme-default-light .amber-A100.divider,
.theme-default-light .amber-A100 .divider, .theme-default-light .amber-A200.divider,
.theme-default-light .amber-A200 .divider, .theme-default-light .amber-A400.divider,
.theme-default-light .amber-A400 .divider, .theme-default-light .amber-A700.divider,
.theme-default-light .amber-A700 .divider, .theme-default-light .orange-50.divider,
.theme-default-light .orange-50 .divider, .theme-default-light .orange-100.divider,
.theme-default-light .orange-100 .divider, .theme-default-light .orange-200.divider,
.theme-default-light .orange-200 .divider, .theme-default-light .orange-300.divider,
.theme-default-light .orange-300 .divider, .theme-default-light .orange-400.divider,
.theme-default-light .orange-400 .divider, .theme-default-light .orange-500.divider,
.theme-default-light .orange-500 .divider, .theme-default-light .orange-600.divider,
.theme-default-light .orange-600 .divider, .theme-default-light .orange-700.divider,
.theme-default-light .orange-700 .divider, .theme-default-light .orange-A100.divider,
.theme-default-light .orange-A100 .divider, .theme-default-light .orange-A200.divider,
.theme-default-light .orange-A200 .divider, .theme-default-light .orange-A400.divider,
.theme-default-light .orange-A400 .divider, .theme-default-light .orange-A700.divider,
.theme-default-light .orange-A700 .divider, .theme-default-light .deep-orange-50.divider,
.theme-default-light .deep-orange-50 .divider, .theme-default-light .deep-orange-100.divider,
.theme-default-light .deep-orange-100 .divider, .theme-default-light .deep-orange-200.divider,
.theme-default-light .deep-orange-200 .divider, .theme-default-light .deep-orange-300.divider,
.theme-default-light .deep-orange-300 .divider, .theme-default-light .deep-orange-400.divider,
.theme-default-light .deep-orange-400 .divider, .theme-default-light .deep-orange-A100.divider,
.theme-default-light .deep-orange-A100 .divider, .theme-default-light .deep-orange-A200.divider,
.theme-default-light .deep-orange-A200 .divider, .theme-default-light .brown-50.divider,
.theme-default-light .brown-50 .divider, .theme-default-light .brown-100.divider,
.theme-default-light .brown-100 .divider, .theme-default-light .brown-200.divider,
.theme-default-light .brown-200 .divider, .theme-default-light .brown-A100.divider,
.theme-default-light .brown-A100 .divider, .theme-default-light .brown-A200.divider,
.theme-default-light .brown-A200 .divider, .theme-default-light .grey-50.divider,
.theme-default-light .grey-50 .divider, .theme-default-light .grey-100.divider,
.theme-default-light .grey-100 .divider, .theme-default-light .grey-200.divider,
.theme-default-light .grey-200 .divider, .theme-default-light .grey-300.divider,
.theme-default-light .grey-300 .divider, .theme-default-light .grey-400.divider,
.theme-default-light .grey-400 .divider, .theme-default-light .grey-A100.divider,
.theme-default-light .grey-A100 .divider, .theme-default-light .grey-A200.divider,
.theme-default-light .grey-A200 .divider, .theme-default-light .grey-A400.divider,
.theme-default-light .grey-A400 .divider, .theme-default-light .grey-A700.divider,
.theme-default-light .grey-A700 .divider, .theme-default-light .blue-grey-50.divider,
.theme-default-light .blue-grey-50 .divider, .theme-default-light .blue-grey-100.divider,
.theme-default-light .blue-grey-100 .divider, .theme-default-light .blue-grey-200.divider,
.theme-default-light .blue-grey-200 .divider, .theme-default-light .blue-grey-300.divider,
.theme-default-light .blue-grey-300 .divider, .theme-default-light .blue-grey-A100.divider,
.theme-default-light .blue-grey-A100 .divider, .theme-default-light .blue-grey-A200.divider,
.theme-default-light .blue-grey-A200 .divider, .theme-default-light .light-grey-50.divider,
.theme-default-light .light-grey-50 .divider, .theme-default-light .light-grey-100.divider,
.theme-default-light .light-grey-100 .divider, .theme-default-light .light-grey-200.divider,
.theme-default-light .light-grey-200 .divider, .theme-default-light .light-grey-300.divider,
.theme-default-light .light-grey-300 .divider, .theme-default-light .light-grey-400.divider,
.theme-default-light .light-grey-400 .divider, .theme-default-light .light-grey-500.divider,
.theme-default-light .light-grey-500 .divider, .theme-default-light .light-grey-600.divider,
.theme-default-light .light-grey-600 .divider, .theme-default-light .light-grey-700.divider,
.theme-default-light .light-grey-700 .divider, .theme-default-light .light-grey-800.divider,
.theme-default-light .light-grey-800 .divider, .theme-default-light .light-grey-900.divider,
.theme-default-light .light-grey-900 .divider, .theme-default-light .light-grey-A100.divider,
.theme-default-light .light-grey-A100 .divider, .theme-default-light .light-grey-A200.divider,
.theme-default-light .light-grey-A200 .divider, .theme-default-light .light-grey-A400.divider,
.theme-default-light .light-grey-A400 .divider, .theme-default-light .light-grey-A700.divider,
.theme-default-light .light-grey-A700 .divider, .theme-default-light .primary-50.divider,
.theme-default-light .primary-50 .divider, .theme-default-light .primary-100.divider,
.theme-default-light .primary-100 .divider, .theme-default-light .primary-200.divider,
.theme-default-light .primary-200 .divider, .theme-default-light .primary-300.divider,
.theme-default-light .primary-300 .divider, .theme-default-light .primary-A100.divider,
.theme-default-light .primary-A100 .divider, .theme-default-light .primary-A200.divider,
.theme-default-light .primary-A200 .divider, .theme-default-light .accent-50.divider,
.theme-default-light .accent-50 .divider, .theme-default-light .accent-100.divider,
.theme-default-light .accent-100 .divider, .theme-default-light .accent-200.divider,
.theme-default-light .accent-200 .divider, .theme-default-light .accent-300.divider,
.theme-default-light .accent-300 .divider, .theme-default-light .accent-A100.divider,
.theme-default-light .accent-A100 .divider, .theme-default-light .warn-50.divider,
.theme-default-light .warn-50 .divider, .theme-default-light .warn-100.divider,
.theme-default-light .warn-100 .divider, .theme-default-light .warn-200.divider,
.theme-default-light .warn-200 .divider, .theme-default-light .warn-300.divider,
.theme-default-light .warn-300 .divider, .theme-default-light .warn-400.divider,
.theme-default-light .warn-400 .divider, .theme-default-light .warn-A100.divider,
.theme-default-light .warn-A100 .divider {
  color: rgba(0, 0, 0, 0.12) !important;
}
.theme-default-light .red-500.secondary-text,
.theme-default-light .red-500 .secondary-text, .theme-default-light .red-600.secondary-text,
.theme-default-light .red-600 .secondary-text, .theme-default-light .red-700.secondary-text,
.theme-default-light .red-700 .secondary-text, .theme-default-light .red-800.secondary-text,
.theme-default-light .red-800 .secondary-text, .theme-default-light .red-900.secondary-text,
.theme-default-light .red-900 .secondary-text, .theme-default-light .red-A200.secondary-text,
.theme-default-light .red-A200 .secondary-text, .theme-default-light .red-A400.secondary-text,
.theme-default-light .red-A400 .secondary-text, .theme-default-light .red-A700.secondary-text,
.theme-default-light .red-A700 .secondary-text, .theme-default-light .pink-500.secondary-text,
.theme-default-light .pink-500 .secondary-text, .theme-default-light .pink-600.secondary-text,
.theme-default-light .pink-600 .secondary-text, .theme-default-light .pink-700.secondary-text,
.theme-default-light .pink-700 .secondary-text, .theme-default-light .pink-800.secondary-text,
.theme-default-light .pink-800 .secondary-text, .theme-default-light .pink-900.secondary-text,
.theme-default-light .pink-900 .secondary-text, .theme-default-light .pink-A200.secondary-text,
.theme-default-light .pink-A200 .secondary-text, .theme-default-light .pink-A400.secondary-text,
.theme-default-light .pink-A400 .secondary-text, .theme-default-light .pink-A700.secondary-text,
.theme-default-light .pink-A700 .secondary-text, .theme-default-light .purple-300.secondary-text,
.theme-default-light .purple-300 .secondary-text, .theme-default-light .purple-400.secondary-text,
.theme-default-light .purple-400 .secondary-text, .theme-default-light .purple-500.secondary-text,
.theme-default-light .purple-500 .secondary-text, .theme-default-light .purple-600.secondary-text,
.theme-default-light .purple-600 .secondary-text, .theme-default-light .purple-700.secondary-text,
.theme-default-light .purple-700 .secondary-text, .theme-default-light .purple-800.secondary-text,
.theme-default-light .purple-800 .secondary-text, .theme-default-light .purple-900.secondary-text,
.theme-default-light .purple-900 .secondary-text, .theme-default-light .purple-A200.secondary-text,
.theme-default-light .purple-A200 .secondary-text, .theme-default-light .purple-A400.secondary-text,
.theme-default-light .purple-A400 .secondary-text, .theme-default-light .purple-A700.secondary-text,
.theme-default-light .purple-A700 .secondary-text, .theme-default-light .deep-purple-300.secondary-text,
.theme-default-light .deep-purple-300 .secondary-text, .theme-default-light .deep-purple-400.secondary-text,
.theme-default-light .deep-purple-400 .secondary-text, .theme-default-light .deep-purple-500.secondary-text,
.theme-default-light .deep-purple-500 .secondary-text, .theme-default-light .deep-purple-600.secondary-text,
.theme-default-light .deep-purple-600 .secondary-text, .theme-default-light .deep-purple-700.secondary-text,
.theme-default-light .deep-purple-700 .secondary-text, .theme-default-light .deep-purple-800.secondary-text,
.theme-default-light .deep-purple-800 .secondary-text, .theme-default-light .deep-purple-900.secondary-text,
.theme-default-light .deep-purple-900 .secondary-text, .theme-default-light .deep-purple-A200.secondary-text,
.theme-default-light .deep-purple-A200 .secondary-text, .theme-default-light .deep-purple-A400.secondary-text,
.theme-default-light .deep-purple-A400 .secondary-text, .theme-default-light .deep-purple-A700.secondary-text,
.theme-default-light .deep-purple-A700 .secondary-text, .theme-default-light .indigo-300.secondary-text,
.theme-default-light .indigo-300 .secondary-text, .theme-default-light .indigo-400.secondary-text,
.theme-default-light .indigo-400 .secondary-text, .theme-default-light .indigo-500.secondary-text,
.theme-default-light .indigo-500 .secondary-text, .theme-default-light .indigo-600.secondary-text,
.theme-default-light .indigo-600 .secondary-text, .theme-default-light .indigo-700.secondary-text,
.theme-default-light .indigo-700 .secondary-text, .theme-default-light .indigo-800.secondary-text,
.theme-default-light .indigo-800 .secondary-text, .theme-default-light .indigo-900.secondary-text,
.theme-default-light .indigo-900 .secondary-text, .theme-default-light .indigo-A200.secondary-text,
.theme-default-light .indigo-A200 .secondary-text, .theme-default-light .indigo-A400.secondary-text,
.theme-default-light .indigo-A400 .secondary-text, .theme-default-light .indigo-A700.secondary-text,
.theme-default-light .indigo-A700 .secondary-text, .theme-default-light .blue-400.secondary-text,
.theme-default-light .blue-400 .secondary-text, .theme-default-light .blue-500.secondary-text,
.theme-default-light .blue-500 .secondary-text, .theme-default-light .blue-600.secondary-text,
.theme-default-light .blue-600 .secondary-text, .theme-default-light .blue-700.secondary-text,
.theme-default-light .blue-700 .secondary-text, .theme-default-light .blue-800.secondary-text,
.theme-default-light .blue-800 .secondary-text, .theme-default-light .blue-900.secondary-text,
.theme-default-light .blue-900 .secondary-text, .theme-default-light .blue-A200.secondary-text,
.theme-default-light .blue-A200 .secondary-text, .theme-default-light .blue-A400.secondary-text,
.theme-default-light .blue-A400 .secondary-text, .theme-default-light .blue-A700.secondary-text,
.theme-default-light .blue-A700 .secondary-text, .theme-default-light .light-blue-500.secondary-text,
.theme-default-light .light-blue-500 .secondary-text, .theme-default-light .light-blue-600.secondary-text,
.theme-default-light .light-blue-600 .secondary-text, .theme-default-light .light-blue-700.secondary-text,
.theme-default-light .light-blue-700 .secondary-text, .theme-default-light .light-blue-800.secondary-text,
.theme-default-light .light-blue-800 .secondary-text, .theme-default-light .light-blue-900.secondary-text,
.theme-default-light .light-blue-900 .secondary-text, .theme-default-light .light-blue-A700.secondary-text,
.theme-default-light .light-blue-A700 .secondary-text, .theme-default-light .cyan-500.secondary-text,
.theme-default-light .cyan-500 .secondary-text, .theme-default-light .cyan-600.secondary-text,
.theme-default-light .cyan-600 .secondary-text, .theme-default-light .cyan-700.secondary-text,
.theme-default-light .cyan-700 .secondary-text, .theme-default-light .cyan-800.secondary-text,
.theme-default-light .cyan-800 .secondary-text, .theme-default-light .cyan-900.secondary-text,
.theme-default-light .cyan-900 .secondary-text, .theme-default-light .teal-500.secondary-text,
.theme-default-light .teal-500 .secondary-text, .theme-default-light .teal-600.secondary-text,
.theme-default-light .teal-600 .secondary-text, .theme-default-light .teal-700.secondary-text,
.theme-default-light .teal-700 .secondary-text, .theme-default-light .teal-800.secondary-text,
.theme-default-light .teal-800 .secondary-text, .theme-default-light .teal-900.secondary-text,
.theme-default-light .teal-900 .secondary-text, .theme-default-light .green-500.secondary-text,
.theme-default-light .green-500 .secondary-text, .theme-default-light .green-600.secondary-text,
.theme-default-light .green-600 .secondary-text, .theme-default-light .green-700.secondary-text,
.theme-default-light .green-700 .secondary-text, .theme-default-light .green-800.secondary-text,
.theme-default-light .green-800 .secondary-text, .theme-default-light .green-900.secondary-text,
.theme-default-light .green-900 .secondary-text, .theme-default-light .light-green-600.secondary-text,
.theme-default-light .light-green-600 .secondary-text, .theme-default-light .light-green-700.secondary-text,
.theme-default-light .light-green-700 .secondary-text, .theme-default-light .light-green-800.secondary-text,
.theme-default-light .light-green-800 .secondary-text, .theme-default-light .light-green-900.secondary-text,
.theme-default-light .light-green-900 .secondary-text, .theme-default-light .lime-500.secondary-text,
.theme-default-light .lime-500 .secondary-text, .theme-default-light .lime-600.secondary-text,
.theme-default-light .lime-600 .secondary-text, .theme-default-light .lime-700.secondary-text,
.theme-default-light .lime-700 .secondary-text, .theme-default-light .lime-800.secondary-text,
.theme-default-light .lime-800 .secondary-text, .theme-default-light .lime-900.secondary-text,
.theme-default-light .lime-900 .secondary-text, .theme-default-light .orange-800.secondary-text,
.theme-default-light .orange-800 .secondary-text, .theme-default-light .orange-900.secondary-text,
.theme-default-light .orange-900 .secondary-text, .theme-default-light .deep-orange-500.secondary-text,
.theme-default-light .deep-orange-500 .secondary-text, .theme-default-light .deep-orange-600.secondary-text,
.theme-default-light .deep-orange-600 .secondary-text, .theme-default-light .deep-orange-700.secondary-text,
.theme-default-light .deep-orange-700 .secondary-text, .theme-default-light .deep-orange-800.secondary-text,
.theme-default-light .deep-orange-800 .secondary-text, .theme-default-light .deep-orange-900.secondary-text,
.theme-default-light .deep-orange-900 .secondary-text, .theme-default-light .deep-orange-A400.secondary-text,
.theme-default-light .deep-orange-A400 .secondary-text, .theme-default-light .deep-orange-A700.secondary-text,
.theme-default-light .deep-orange-A700 .secondary-text, .theme-default-light .brown-300.secondary-text,
.theme-default-light .brown-300 .secondary-text, .theme-default-light .brown-400.secondary-text,
.theme-default-light .brown-400 .secondary-text, .theme-default-light .brown-500.secondary-text,
.theme-default-light .brown-500 .secondary-text, .theme-default-light .brown-600.secondary-text,
.theme-default-light .brown-600 .secondary-text, .theme-default-light .brown-700.secondary-text,
.theme-default-light .brown-700 .secondary-text, .theme-default-light .brown-800.secondary-text,
.theme-default-light .brown-800 .secondary-text, .theme-default-light .brown-900.secondary-text,
.theme-default-light .brown-900 .secondary-text, .theme-default-light .brown-A400.secondary-text,
.theme-default-light .brown-A400 .secondary-text, .theme-default-light .brown-A700.secondary-text,
.theme-default-light .brown-A700 .secondary-text, .theme-default-light .grey-500.secondary-text,
.theme-default-light .grey-500 .secondary-text, .theme-default-light .grey-600.secondary-text,
.theme-default-light .grey-600 .secondary-text, .theme-default-light .grey-700.secondary-text,
.theme-default-light .grey-700 .secondary-text, .theme-default-light .grey-800.secondary-text,
.theme-default-light .grey-800 .secondary-text, .theme-default-light .grey-900.secondary-text,
.theme-default-light .grey-900 .secondary-text, .theme-default-light .blue-grey-400.secondary-text,
.theme-default-light .blue-grey-400 .secondary-text, .theme-default-light .blue-grey-500.secondary-text,
.theme-default-light .blue-grey-500 .secondary-text, .theme-default-light .blue-grey-600.secondary-text,
.theme-default-light .blue-grey-600 .secondary-text, .theme-default-light .blue-grey-700.secondary-text,
.theme-default-light .blue-grey-700 .secondary-text, .theme-default-light .blue-grey-800.secondary-text,
.theme-default-light .blue-grey-800 .secondary-text, .theme-default-light .blue-grey-900.secondary-text,
.theme-default-light .blue-grey-900 .secondary-text, .theme-default-light .blue-grey-A400.secondary-text,
.theme-default-light .blue-grey-A400 .secondary-text, .theme-default-light .blue-grey-A700.secondary-text,
.theme-default-light .blue-grey-A700 .secondary-text, .theme-default-light .dark-grey-50.secondary-text,
.theme-default-light .dark-grey-50 .secondary-text, .theme-default-light .dark-grey-100.secondary-text,
.theme-default-light .dark-grey-100 .secondary-text, .theme-default-light .dark-grey-200.secondary-text,
.theme-default-light .dark-grey-200 .secondary-text, .theme-default-light .dark-grey-300.secondary-text,
.theme-default-light .dark-grey-300 .secondary-text, .theme-default-light .dark-grey-400.secondary-text,
.theme-default-light .dark-grey-400 .secondary-text, .theme-default-light .dark-grey-500.secondary-text,
.theme-default-light .dark-grey-500 .secondary-text, .theme-default-light .dark-grey-600.secondary-text,
.theme-default-light .dark-grey-600 .secondary-text, .theme-default-light .dark-grey-700.secondary-text,
.theme-default-light .dark-grey-700 .secondary-text, .theme-default-light .dark-grey-800.secondary-text,
.theme-default-light .dark-grey-800 .secondary-text, .theme-default-light .dark-grey-900.secondary-text,
.theme-default-light .dark-grey-900 .secondary-text, .theme-default-light .dark-grey-A100.secondary-text,
.theme-default-light .dark-grey-A100 .secondary-text, .theme-default-light .dark-grey-A200.secondary-text,
.theme-default-light .dark-grey-A200 .secondary-text, .theme-default-light .dark-grey-A400.secondary-text,
.theme-default-light .dark-grey-A400 .secondary-text, .theme-default-light .dark-grey-A700.secondary-text,
.theme-default-light .dark-grey-A700 .secondary-text, .theme-default-light .primary-400.secondary-text,
.theme-default-light .primary-400 .secondary-text, .theme-default-light .primary-500.secondary-text,
.theme-default-light .primary-500 .secondary-text, .theme-default-light .primary-600.secondary-text,
.theme-default-light .primary-600 .secondary-text, .theme-default-light .primary-700.secondary-text,
.theme-default-light .primary-700 .secondary-text, .theme-default-light .primary-800.secondary-text,
.theme-default-light .primary-800 .secondary-text, .theme-default-light .primary-900.secondary-text,
.theme-default-light .primary-900 .secondary-text, .theme-default-light .primary-A400.secondary-text,
.theme-default-light .primary-A400 .secondary-text, .theme-default-light .primary-A700.secondary-text,
.theme-default-light .primary-A700 .secondary-text, .theme-default-light .accent-400.secondary-text,
.theme-default-light .accent-400 .secondary-text, .theme-default-light .accent-500.secondary-text,
.theme-default-light .accent-500 .secondary-text, .theme-default-light .accent-600.secondary-text,
.theme-default-light .accent-600 .secondary-text, .theme-default-light .accent-700.secondary-text,
.theme-default-light .accent-700 .secondary-text, .theme-default-light .accent-800.secondary-text,
.theme-default-light .accent-800 .secondary-text, .theme-default-light .accent-900.secondary-text,
.theme-default-light .accent-900 .secondary-text, .theme-default-light .accent-A200.secondary-text,
.theme-default-light .accent-A200 .secondary-text, .theme-default-light .accent-A400.secondary-text,
.theme-default-light .accent-A400 .secondary-text, .theme-default-light .accent-A700.secondary-text,
.theme-default-light .accent-A700 .secondary-text, .theme-default-light .warn-500.secondary-text,
.theme-default-light .warn-500 .secondary-text, .theme-default-light .warn-600.secondary-text,
.theme-default-light .warn-600 .secondary-text, .theme-default-light .warn-700.secondary-text,
.theme-default-light .warn-700 .secondary-text, .theme-default-light .warn-800.secondary-text,
.theme-default-light .warn-800 .secondary-text, .theme-default-light .warn-900.secondary-text,
.theme-default-light .warn-900 .secondary-text, .theme-default-light .warn-A200.secondary-text,
.theme-default-light .warn-A200 .secondary-text, .theme-default-light .warn-A400.secondary-text,
.theme-default-light .warn-A400 .secondary-text, .theme-default-light .warn-A700.secondary-text,
.theme-default-light .warn-A700 .secondary-text {
  color: rgba(255, 255, 255, 0.7) !important;
}
.theme-default-light .red-500.hint-text,
.theme-default-light .red-500 .hint-text, .theme-default-light .red-500.disabled-text,
.theme-default-light .red-500 .disabled-text, .theme-default-light .red-600.hint-text,
.theme-default-light .red-600 .hint-text, .theme-default-light .red-600.disabled-text,
.theme-default-light .red-600 .disabled-text, .theme-default-light .red-700.hint-text,
.theme-default-light .red-700 .hint-text, .theme-default-light .red-700.disabled-text,
.theme-default-light .red-700 .disabled-text, .theme-default-light .red-800.hint-text,
.theme-default-light .red-800 .hint-text, .theme-default-light .red-800.disabled-text,
.theme-default-light .red-800 .disabled-text, .theme-default-light .red-900.hint-text,
.theme-default-light .red-900 .hint-text, .theme-default-light .red-900.disabled-text,
.theme-default-light .red-900 .disabled-text, .theme-default-light .red-A200.hint-text,
.theme-default-light .red-A200 .hint-text, .theme-default-light .red-A200.disabled-text,
.theme-default-light .red-A200 .disabled-text, .theme-default-light .red-A400.hint-text,
.theme-default-light .red-A400 .hint-text, .theme-default-light .red-A400.disabled-text,
.theme-default-light .red-A400 .disabled-text, .theme-default-light .red-A700.hint-text,
.theme-default-light .red-A700 .hint-text, .theme-default-light .red-A700.disabled-text,
.theme-default-light .red-A700 .disabled-text, .theme-default-light .pink-500.hint-text,
.theme-default-light .pink-500 .hint-text, .theme-default-light .pink-500.disabled-text,
.theme-default-light .pink-500 .disabled-text, .theme-default-light .pink-600.hint-text,
.theme-default-light .pink-600 .hint-text, .theme-default-light .pink-600.disabled-text,
.theme-default-light .pink-600 .disabled-text, .theme-default-light .pink-700.hint-text,
.theme-default-light .pink-700 .hint-text, .theme-default-light .pink-700.disabled-text,
.theme-default-light .pink-700 .disabled-text, .theme-default-light .pink-800.hint-text,
.theme-default-light .pink-800 .hint-text, .theme-default-light .pink-800.disabled-text,
.theme-default-light .pink-800 .disabled-text, .theme-default-light .pink-900.hint-text,
.theme-default-light .pink-900 .hint-text, .theme-default-light .pink-900.disabled-text,
.theme-default-light .pink-900 .disabled-text, .theme-default-light .pink-A200.hint-text,
.theme-default-light .pink-A200 .hint-text, .theme-default-light .pink-A200.disabled-text,
.theme-default-light .pink-A200 .disabled-text, .theme-default-light .pink-A400.hint-text,
.theme-default-light .pink-A400 .hint-text, .theme-default-light .pink-A400.disabled-text,
.theme-default-light .pink-A400 .disabled-text, .theme-default-light .pink-A700.hint-text,
.theme-default-light .pink-A700 .hint-text, .theme-default-light .pink-A700.disabled-text,
.theme-default-light .pink-A700 .disabled-text, .theme-default-light .purple-300.hint-text,
.theme-default-light .purple-300 .hint-text, .theme-default-light .purple-300.disabled-text,
.theme-default-light .purple-300 .disabled-text, .theme-default-light .purple-400.hint-text,
.theme-default-light .purple-400 .hint-text, .theme-default-light .purple-400.disabled-text,
.theme-default-light .purple-400 .disabled-text, .theme-default-light .purple-500.hint-text,
.theme-default-light .purple-500 .hint-text, .theme-default-light .purple-500.disabled-text,
.theme-default-light .purple-500 .disabled-text, .theme-default-light .purple-600.hint-text,
.theme-default-light .purple-600 .hint-text, .theme-default-light .purple-600.disabled-text,
.theme-default-light .purple-600 .disabled-text, .theme-default-light .purple-700.hint-text,
.theme-default-light .purple-700 .hint-text, .theme-default-light .purple-700.disabled-text,
.theme-default-light .purple-700 .disabled-text, .theme-default-light .purple-800.hint-text,
.theme-default-light .purple-800 .hint-text, .theme-default-light .purple-800.disabled-text,
.theme-default-light .purple-800 .disabled-text, .theme-default-light .purple-900.hint-text,
.theme-default-light .purple-900 .hint-text, .theme-default-light .purple-900.disabled-text,
.theme-default-light .purple-900 .disabled-text, .theme-default-light .purple-A200.hint-text,
.theme-default-light .purple-A200 .hint-text, .theme-default-light .purple-A200.disabled-text,
.theme-default-light .purple-A200 .disabled-text, .theme-default-light .purple-A400.hint-text,
.theme-default-light .purple-A400 .hint-text, .theme-default-light .purple-A400.disabled-text,
.theme-default-light .purple-A400 .disabled-text, .theme-default-light .purple-A700.hint-text,
.theme-default-light .purple-A700 .hint-text, .theme-default-light .purple-A700.disabled-text,
.theme-default-light .purple-A700 .disabled-text, .theme-default-light .deep-purple-300.hint-text,
.theme-default-light .deep-purple-300 .hint-text, .theme-default-light .deep-purple-300.disabled-text,
.theme-default-light .deep-purple-300 .disabled-text, .theme-default-light .deep-purple-400.hint-text,
.theme-default-light .deep-purple-400 .hint-text, .theme-default-light .deep-purple-400.disabled-text,
.theme-default-light .deep-purple-400 .disabled-text, .theme-default-light .deep-purple-500.hint-text,
.theme-default-light .deep-purple-500 .hint-text, .theme-default-light .deep-purple-500.disabled-text,
.theme-default-light .deep-purple-500 .disabled-text, .theme-default-light .deep-purple-600.hint-text,
.theme-default-light .deep-purple-600 .hint-text, .theme-default-light .deep-purple-600.disabled-text,
.theme-default-light .deep-purple-600 .disabled-text, .theme-default-light .deep-purple-700.hint-text,
.theme-default-light .deep-purple-700 .hint-text, .theme-default-light .deep-purple-700.disabled-text,
.theme-default-light .deep-purple-700 .disabled-text, .theme-default-light .deep-purple-800.hint-text,
.theme-default-light .deep-purple-800 .hint-text, .theme-default-light .deep-purple-800.disabled-text,
.theme-default-light .deep-purple-800 .disabled-text, .theme-default-light .deep-purple-900.hint-text,
.theme-default-light .deep-purple-900 .hint-text, .theme-default-light .deep-purple-900.disabled-text,
.theme-default-light .deep-purple-900 .disabled-text, .theme-default-light .deep-purple-A200.hint-text,
.theme-default-light .deep-purple-A200 .hint-text, .theme-default-light .deep-purple-A200.disabled-text,
.theme-default-light .deep-purple-A200 .disabled-text, .theme-default-light .deep-purple-A400.hint-text,
.theme-default-light .deep-purple-A400 .hint-text, .theme-default-light .deep-purple-A400.disabled-text,
.theme-default-light .deep-purple-A400 .disabled-text, .theme-default-light .deep-purple-A700.hint-text,
.theme-default-light .deep-purple-A700 .hint-text, .theme-default-light .deep-purple-A700.disabled-text,
.theme-default-light .deep-purple-A700 .disabled-text, .theme-default-light .indigo-300.hint-text,
.theme-default-light .indigo-300 .hint-text, .theme-default-light .indigo-300.disabled-text,
.theme-default-light .indigo-300 .disabled-text, .theme-default-light .indigo-400.hint-text,
.theme-default-light .indigo-400 .hint-text, .theme-default-light .indigo-400.disabled-text,
.theme-default-light .indigo-400 .disabled-text, .theme-default-light .indigo-500.hint-text,
.theme-default-light .indigo-500 .hint-text, .theme-default-light .indigo-500.disabled-text,
.theme-default-light .indigo-500 .disabled-text, .theme-default-light .indigo-600.hint-text,
.theme-default-light .indigo-600 .hint-text, .theme-default-light .indigo-600.disabled-text,
.theme-default-light .indigo-600 .disabled-text, .theme-default-light .indigo-700.hint-text,
.theme-default-light .indigo-700 .hint-text, .theme-default-light .indigo-700.disabled-text,
.theme-default-light .indigo-700 .disabled-text, .theme-default-light .indigo-800.hint-text,
.theme-default-light .indigo-800 .hint-text, .theme-default-light .indigo-800.disabled-text,
.theme-default-light .indigo-800 .disabled-text, .theme-default-light .indigo-900.hint-text,
.theme-default-light .indigo-900 .hint-text, .theme-default-light .indigo-900.disabled-text,
.theme-default-light .indigo-900 .disabled-text, .theme-default-light .indigo-A200.hint-text,
.theme-default-light .indigo-A200 .hint-text, .theme-default-light .indigo-A200.disabled-text,
.theme-default-light .indigo-A200 .disabled-text, .theme-default-light .indigo-A400.hint-text,
.theme-default-light .indigo-A400 .hint-text, .theme-default-light .indigo-A400.disabled-text,
.theme-default-light .indigo-A400 .disabled-text, .theme-default-light .indigo-A700.hint-text,
.theme-default-light .indigo-A700 .hint-text, .theme-default-light .indigo-A700.disabled-text,
.theme-default-light .indigo-A700 .disabled-text, .theme-default-light .blue-400.hint-text,
.theme-default-light .blue-400 .hint-text, .theme-default-light .blue-400.disabled-text,
.theme-default-light .blue-400 .disabled-text, .theme-default-light .blue-500.hint-text,
.theme-default-light .blue-500 .hint-text, .theme-default-light .blue-500.disabled-text,
.theme-default-light .blue-500 .disabled-text, .theme-default-light .blue-600.hint-text,
.theme-default-light .blue-600 .hint-text, .theme-default-light .blue-600.disabled-text,
.theme-default-light .blue-600 .disabled-text, .theme-default-light .blue-700.hint-text,
.theme-default-light .blue-700 .hint-text, .theme-default-light .blue-700.disabled-text,
.theme-default-light .blue-700 .disabled-text, .theme-default-light .blue-800.hint-text,
.theme-default-light .blue-800 .hint-text, .theme-default-light .blue-800.disabled-text,
.theme-default-light .blue-800 .disabled-text, .theme-default-light .blue-900.hint-text,
.theme-default-light .blue-900 .hint-text, .theme-default-light .blue-900.disabled-text,
.theme-default-light .blue-900 .disabled-text, .theme-default-light .blue-A200.hint-text,
.theme-default-light .blue-A200 .hint-text, .theme-default-light .blue-A200.disabled-text,
.theme-default-light .blue-A200 .disabled-text, .theme-default-light .blue-A400.hint-text,
.theme-default-light .blue-A400 .hint-text, .theme-default-light .blue-A400.disabled-text,
.theme-default-light .blue-A400 .disabled-text, .theme-default-light .blue-A700.hint-text,
.theme-default-light .blue-A700 .hint-text, .theme-default-light .blue-A700.disabled-text,
.theme-default-light .blue-A700 .disabled-text, .theme-default-light .light-blue-500.hint-text,
.theme-default-light .light-blue-500 .hint-text, .theme-default-light .light-blue-500.disabled-text,
.theme-default-light .light-blue-500 .disabled-text, .theme-default-light .light-blue-600.hint-text,
.theme-default-light .light-blue-600 .hint-text, .theme-default-light .light-blue-600.disabled-text,
.theme-default-light .light-blue-600 .disabled-text, .theme-default-light .light-blue-700.hint-text,
.theme-default-light .light-blue-700 .hint-text, .theme-default-light .light-blue-700.disabled-text,
.theme-default-light .light-blue-700 .disabled-text, .theme-default-light .light-blue-800.hint-text,
.theme-default-light .light-blue-800 .hint-text, .theme-default-light .light-blue-800.disabled-text,
.theme-default-light .light-blue-800 .disabled-text, .theme-default-light .light-blue-900.hint-text,
.theme-default-light .light-blue-900 .hint-text, .theme-default-light .light-blue-900.disabled-text,
.theme-default-light .light-blue-900 .disabled-text, .theme-default-light .light-blue-A700.hint-text,
.theme-default-light .light-blue-A700 .hint-text, .theme-default-light .light-blue-A700.disabled-text,
.theme-default-light .light-blue-A700 .disabled-text, .theme-default-light .cyan-500.hint-text,
.theme-default-light .cyan-500 .hint-text, .theme-default-light .cyan-500.disabled-text,
.theme-default-light .cyan-500 .disabled-text, .theme-default-light .cyan-600.hint-text,
.theme-default-light .cyan-600 .hint-text, .theme-default-light .cyan-600.disabled-text,
.theme-default-light .cyan-600 .disabled-text, .theme-default-light .cyan-700.hint-text,
.theme-default-light .cyan-700 .hint-text, .theme-default-light .cyan-700.disabled-text,
.theme-default-light .cyan-700 .disabled-text, .theme-default-light .cyan-800.hint-text,
.theme-default-light .cyan-800 .hint-text, .theme-default-light .cyan-800.disabled-text,
.theme-default-light .cyan-800 .disabled-text, .theme-default-light .cyan-900.hint-text,
.theme-default-light .cyan-900 .hint-text, .theme-default-light .cyan-900.disabled-text,
.theme-default-light .cyan-900 .disabled-text, .theme-default-light .teal-500.hint-text,
.theme-default-light .teal-500 .hint-text, .theme-default-light .teal-500.disabled-text,
.theme-default-light .teal-500 .disabled-text, .theme-default-light .teal-600.hint-text,
.theme-default-light .teal-600 .hint-text, .theme-default-light .teal-600.disabled-text,
.theme-default-light .teal-600 .disabled-text, .theme-default-light .teal-700.hint-text,
.theme-default-light .teal-700 .hint-text, .theme-default-light .teal-700.disabled-text,
.theme-default-light .teal-700 .disabled-text, .theme-default-light .teal-800.hint-text,
.theme-default-light .teal-800 .hint-text, .theme-default-light .teal-800.disabled-text,
.theme-default-light .teal-800 .disabled-text, .theme-default-light .teal-900.hint-text,
.theme-default-light .teal-900 .hint-text, .theme-default-light .teal-900.disabled-text,
.theme-default-light .teal-900 .disabled-text, .theme-default-light .green-500.hint-text,
.theme-default-light .green-500 .hint-text, .theme-default-light .green-500.disabled-text,
.theme-default-light .green-500 .disabled-text, .theme-default-light .green-600.hint-text,
.theme-default-light .green-600 .hint-text, .theme-default-light .green-600.disabled-text,
.theme-default-light .green-600 .disabled-text, .theme-default-light .green-700.hint-text,
.theme-default-light .green-700 .hint-text, .theme-default-light .green-700.disabled-text,
.theme-default-light .green-700 .disabled-text, .theme-default-light .green-800.hint-text,
.theme-default-light .green-800 .hint-text, .theme-default-light .green-800.disabled-text,
.theme-default-light .green-800 .disabled-text, .theme-default-light .green-900.hint-text,
.theme-default-light .green-900 .hint-text, .theme-default-light .green-900.disabled-text,
.theme-default-light .green-900 .disabled-text, .theme-default-light .light-green-600.hint-text,
.theme-default-light .light-green-600 .hint-text, .theme-default-light .light-green-600.disabled-text,
.theme-default-light .light-green-600 .disabled-text, .theme-default-light .light-green-700.hint-text,
.theme-default-light .light-green-700 .hint-text, .theme-default-light .light-green-700.disabled-text,
.theme-default-light .light-green-700 .disabled-text, .theme-default-light .light-green-800.hint-text,
.theme-default-light .light-green-800 .hint-text, .theme-default-light .light-green-800.disabled-text,
.theme-default-light .light-green-800 .disabled-text, .theme-default-light .light-green-900.hint-text,
.theme-default-light .light-green-900 .hint-text, .theme-default-light .light-green-900.disabled-text,
.theme-default-light .light-green-900 .disabled-text, .theme-default-light .lime-500.hint-text,
.theme-default-light .lime-500 .hint-text, .theme-default-light .lime-500.disabled-text,
.theme-default-light .lime-500 .disabled-text, .theme-default-light .lime-600.hint-text,
.theme-default-light .lime-600 .hint-text, .theme-default-light .lime-600.disabled-text,
.theme-default-light .lime-600 .disabled-text, .theme-default-light .lime-700.hint-text,
.theme-default-light .lime-700 .hint-text, .theme-default-light .lime-700.disabled-text,
.theme-default-light .lime-700 .disabled-text, .theme-default-light .lime-800.hint-text,
.theme-default-light .lime-800 .hint-text, .theme-default-light .lime-800.disabled-text,
.theme-default-light .lime-800 .disabled-text, .theme-default-light .lime-900.hint-text,
.theme-default-light .lime-900 .hint-text, .theme-default-light .lime-900.disabled-text,
.theme-default-light .lime-900 .disabled-text, .theme-default-light .orange-800.hint-text,
.theme-default-light .orange-800 .hint-text, .theme-default-light .orange-800.disabled-text,
.theme-default-light .orange-800 .disabled-text, .theme-default-light .orange-900.hint-text,
.theme-default-light .orange-900 .hint-text, .theme-default-light .orange-900.disabled-text,
.theme-default-light .orange-900 .disabled-text, .theme-default-light .deep-orange-500.hint-text,
.theme-default-light .deep-orange-500 .hint-text, .theme-default-light .deep-orange-500.disabled-text,
.theme-default-light .deep-orange-500 .disabled-text, .theme-default-light .deep-orange-600.hint-text,
.theme-default-light .deep-orange-600 .hint-text, .theme-default-light .deep-orange-600.disabled-text,
.theme-default-light .deep-orange-600 .disabled-text, .theme-default-light .deep-orange-700.hint-text,
.theme-default-light .deep-orange-700 .hint-text, .theme-default-light .deep-orange-700.disabled-text,
.theme-default-light .deep-orange-700 .disabled-text, .theme-default-light .deep-orange-800.hint-text,
.theme-default-light .deep-orange-800 .hint-text, .theme-default-light .deep-orange-800.disabled-text,
.theme-default-light .deep-orange-800 .disabled-text, .theme-default-light .deep-orange-900.hint-text,
.theme-default-light .deep-orange-900 .hint-text, .theme-default-light .deep-orange-900.disabled-text,
.theme-default-light .deep-orange-900 .disabled-text, .theme-default-light .deep-orange-A400.hint-text,
.theme-default-light .deep-orange-A400 .hint-text, .theme-default-light .deep-orange-A400.disabled-text,
.theme-default-light .deep-orange-A400 .disabled-text, .theme-default-light .deep-orange-A700.hint-text,
.theme-default-light .deep-orange-A700 .hint-text, .theme-default-light .deep-orange-A700.disabled-text,
.theme-default-light .deep-orange-A700 .disabled-text, .theme-default-light .brown-300.hint-text,
.theme-default-light .brown-300 .hint-text, .theme-default-light .brown-300.disabled-text,
.theme-default-light .brown-300 .disabled-text, .theme-default-light .brown-400.hint-text,
.theme-default-light .brown-400 .hint-text, .theme-default-light .brown-400.disabled-text,
.theme-default-light .brown-400 .disabled-text, .theme-default-light .brown-500.hint-text,
.theme-default-light .brown-500 .hint-text, .theme-default-light .brown-500.disabled-text,
.theme-default-light .brown-500 .disabled-text, .theme-default-light .brown-600.hint-text,
.theme-default-light .brown-600 .hint-text, .theme-default-light .brown-600.disabled-text,
.theme-default-light .brown-600 .disabled-text, .theme-default-light .brown-700.hint-text,
.theme-default-light .brown-700 .hint-text, .theme-default-light .brown-700.disabled-text,
.theme-default-light .brown-700 .disabled-text, .theme-default-light .brown-800.hint-text,
.theme-default-light .brown-800 .hint-text, .theme-default-light .brown-800.disabled-text,
.theme-default-light .brown-800 .disabled-text, .theme-default-light .brown-900.hint-text,
.theme-default-light .brown-900 .hint-text, .theme-default-light .brown-900.disabled-text,
.theme-default-light .brown-900 .disabled-text, .theme-default-light .brown-A400.hint-text,
.theme-default-light .brown-A400 .hint-text, .theme-default-light .brown-A400.disabled-text,
.theme-default-light .brown-A400 .disabled-text, .theme-default-light .brown-A700.hint-text,
.theme-default-light .brown-A700 .hint-text, .theme-default-light .brown-A700.disabled-text,
.theme-default-light .brown-A700 .disabled-text, .theme-default-light .grey-500.hint-text,
.theme-default-light .grey-500 .hint-text, .theme-default-light .grey-500.disabled-text,
.theme-default-light .grey-500 .disabled-text, .theme-default-light .grey-600.hint-text,
.theme-default-light .grey-600 .hint-text, .theme-default-light .grey-600.disabled-text,
.theme-default-light .grey-600 .disabled-text, .theme-default-light .grey-700.hint-text,
.theme-default-light .grey-700 .hint-text, .theme-default-light .grey-700.disabled-text,
.theme-default-light .grey-700 .disabled-text, .theme-default-light .grey-800.hint-text,
.theme-default-light .grey-800 .hint-text, .theme-default-light .grey-800.disabled-text,
.theme-default-light .grey-800 .disabled-text, .theme-default-light .grey-900.hint-text,
.theme-default-light .grey-900 .hint-text, .theme-default-light .grey-900.disabled-text,
.theme-default-light .grey-900 .disabled-text, .theme-default-light .blue-grey-400.hint-text,
.theme-default-light .blue-grey-400 .hint-text, .theme-default-light .blue-grey-400.disabled-text,
.theme-default-light .blue-grey-400 .disabled-text, .theme-default-light .blue-grey-500.hint-text,
.theme-default-light .blue-grey-500 .hint-text, .theme-default-light .blue-grey-500.disabled-text,
.theme-default-light .blue-grey-500 .disabled-text, .theme-default-light .blue-grey-600.hint-text,
.theme-default-light .blue-grey-600 .hint-text, .theme-default-light .blue-grey-600.disabled-text,
.theme-default-light .blue-grey-600 .disabled-text, .theme-default-light .blue-grey-700.hint-text,
.theme-default-light .blue-grey-700 .hint-text, .theme-default-light .blue-grey-700.disabled-text,
.theme-default-light .blue-grey-700 .disabled-text, .theme-default-light .blue-grey-800.hint-text,
.theme-default-light .blue-grey-800 .hint-text, .theme-default-light .blue-grey-800.disabled-text,
.theme-default-light .blue-grey-800 .disabled-text, .theme-default-light .blue-grey-900.hint-text,
.theme-default-light .blue-grey-900 .hint-text, .theme-default-light .blue-grey-900.disabled-text,
.theme-default-light .blue-grey-900 .disabled-text, .theme-default-light .blue-grey-A400.hint-text,
.theme-default-light .blue-grey-A400 .hint-text, .theme-default-light .blue-grey-A400.disabled-text,
.theme-default-light .blue-grey-A400 .disabled-text, .theme-default-light .blue-grey-A700.hint-text,
.theme-default-light .blue-grey-A700 .hint-text, .theme-default-light .blue-grey-A700.disabled-text,
.theme-default-light .blue-grey-A700 .disabled-text, .theme-default-light .dark-grey-50.hint-text,
.theme-default-light .dark-grey-50 .hint-text, .theme-default-light .dark-grey-50.disabled-text,
.theme-default-light .dark-grey-50 .disabled-text, .theme-default-light .dark-grey-100.hint-text,
.theme-default-light .dark-grey-100 .hint-text, .theme-default-light .dark-grey-100.disabled-text,
.theme-default-light .dark-grey-100 .disabled-text, .theme-default-light .dark-grey-200.hint-text,
.theme-default-light .dark-grey-200 .hint-text, .theme-default-light .dark-grey-200.disabled-text,
.theme-default-light .dark-grey-200 .disabled-text, .theme-default-light .dark-grey-300.hint-text,
.theme-default-light .dark-grey-300 .hint-text, .theme-default-light .dark-grey-300.disabled-text,
.theme-default-light .dark-grey-300 .disabled-text, .theme-default-light .dark-grey-400.hint-text,
.theme-default-light .dark-grey-400 .hint-text, .theme-default-light .dark-grey-400.disabled-text,
.theme-default-light .dark-grey-400 .disabled-text, .theme-default-light .dark-grey-500.hint-text,
.theme-default-light .dark-grey-500 .hint-text, .theme-default-light .dark-grey-500.disabled-text,
.theme-default-light .dark-grey-500 .disabled-text, .theme-default-light .dark-grey-600.hint-text,
.theme-default-light .dark-grey-600 .hint-text, .theme-default-light .dark-grey-600.disabled-text,
.theme-default-light .dark-grey-600 .disabled-text, .theme-default-light .dark-grey-700.hint-text,
.theme-default-light .dark-grey-700 .hint-text, .theme-default-light .dark-grey-700.disabled-text,
.theme-default-light .dark-grey-700 .disabled-text, .theme-default-light .dark-grey-800.hint-text,
.theme-default-light .dark-grey-800 .hint-text, .theme-default-light .dark-grey-800.disabled-text,
.theme-default-light .dark-grey-800 .disabled-text, .theme-default-light .dark-grey-900.hint-text,
.theme-default-light .dark-grey-900 .hint-text, .theme-default-light .dark-grey-900.disabled-text,
.theme-default-light .dark-grey-900 .disabled-text, .theme-default-light .dark-grey-A100.hint-text,
.theme-default-light .dark-grey-A100 .hint-text, .theme-default-light .dark-grey-A100.disabled-text,
.theme-default-light .dark-grey-A100 .disabled-text, .theme-default-light .dark-grey-A200.hint-text,
.theme-default-light .dark-grey-A200 .hint-text, .theme-default-light .dark-grey-A200.disabled-text,
.theme-default-light .dark-grey-A200 .disabled-text, .theme-default-light .dark-grey-A400.hint-text,
.theme-default-light .dark-grey-A400 .hint-text, .theme-default-light .dark-grey-A400.disabled-text,
.theme-default-light .dark-grey-A400 .disabled-text, .theme-default-light .dark-grey-A700.hint-text,
.theme-default-light .dark-grey-A700 .hint-text, .theme-default-light .dark-grey-A700.disabled-text,
.theme-default-light .dark-grey-A700 .disabled-text, .theme-default-light .primary-400.hint-text,
.theme-default-light .primary-400 .hint-text, .theme-default-light .primary-400.disabled-text,
.theme-default-light .primary-400 .disabled-text, .theme-default-light .primary-500.hint-text,
.theme-default-light .primary-500 .hint-text, .theme-default-light .primary-500.disabled-text,
.theme-default-light .primary-500 .disabled-text, .theme-default-light .primary-600.hint-text,
.theme-default-light .primary-600 .hint-text, .theme-default-light .primary-600.disabled-text,
.theme-default-light .primary-600 .disabled-text, .theme-default-light .primary-700.hint-text,
.theme-default-light .primary-700 .hint-text, .theme-default-light .primary-700.disabled-text,
.theme-default-light .primary-700 .disabled-text, .theme-default-light .primary-800.hint-text,
.theme-default-light .primary-800 .hint-text, .theme-default-light .primary-800.disabled-text,
.theme-default-light .primary-800 .disabled-text, .theme-default-light .primary-900.hint-text,
.theme-default-light .primary-900 .hint-text, .theme-default-light .primary-900.disabled-text,
.theme-default-light .primary-900 .disabled-text, .theme-default-light .primary-A400.hint-text,
.theme-default-light .primary-A400 .hint-text, .theme-default-light .primary-A400.disabled-text,
.theme-default-light .primary-A400 .disabled-text, .theme-default-light .primary-A700.hint-text,
.theme-default-light .primary-A700 .hint-text, .theme-default-light .primary-A700.disabled-text,
.theme-default-light .primary-A700 .disabled-text, .theme-default-light .accent-400.hint-text,
.theme-default-light .accent-400 .hint-text, .theme-default-light .accent-400.disabled-text,
.theme-default-light .accent-400 .disabled-text, .theme-default-light .accent-500.hint-text,
.theme-default-light .accent-500 .hint-text, .theme-default-light .accent-500.disabled-text,
.theme-default-light .accent-500 .disabled-text, .theme-default-light .accent-600.hint-text,
.theme-default-light .accent-600 .hint-text, .theme-default-light .accent-600.disabled-text,
.theme-default-light .accent-600 .disabled-text, .theme-default-light .accent-700.hint-text,
.theme-default-light .accent-700 .hint-text, .theme-default-light .accent-700.disabled-text,
.theme-default-light .accent-700 .disabled-text, .theme-default-light .accent-800.hint-text,
.theme-default-light .accent-800 .hint-text, .theme-default-light .accent-800.disabled-text,
.theme-default-light .accent-800 .disabled-text, .theme-default-light .accent-900.hint-text,
.theme-default-light .accent-900 .hint-text, .theme-default-light .accent-900.disabled-text,
.theme-default-light .accent-900 .disabled-text, .theme-default-light .accent-A200.hint-text,
.theme-default-light .accent-A200 .hint-text, .theme-default-light .accent-A200.disabled-text,
.theme-default-light .accent-A200 .disabled-text, .theme-default-light .accent-A400.hint-text,
.theme-default-light .accent-A400 .hint-text, .theme-default-light .accent-A400.disabled-text,
.theme-default-light .accent-A400 .disabled-text, .theme-default-light .accent-A700.hint-text,
.theme-default-light .accent-A700 .hint-text, .theme-default-light .accent-A700.disabled-text,
.theme-default-light .accent-A700 .disabled-text, .theme-default-light .warn-500.hint-text,
.theme-default-light .warn-500 .hint-text, .theme-default-light .warn-500.disabled-text,
.theme-default-light .warn-500 .disabled-text, .theme-default-light .warn-600.hint-text,
.theme-default-light .warn-600 .hint-text, .theme-default-light .warn-600.disabled-text,
.theme-default-light .warn-600 .disabled-text, .theme-default-light .warn-700.hint-text,
.theme-default-light .warn-700 .hint-text, .theme-default-light .warn-700.disabled-text,
.theme-default-light .warn-700 .disabled-text, .theme-default-light .warn-800.hint-text,
.theme-default-light .warn-800 .hint-text, .theme-default-light .warn-800.disabled-text,
.theme-default-light .warn-800 .disabled-text, .theme-default-light .warn-900.hint-text,
.theme-default-light .warn-900 .hint-text, .theme-default-light .warn-900.disabled-text,
.theme-default-light .warn-900 .disabled-text, .theme-default-light .warn-A200.hint-text,
.theme-default-light .warn-A200 .hint-text, .theme-default-light .warn-A200.disabled-text,
.theme-default-light .warn-A200 .disabled-text, .theme-default-light .warn-A400.hint-text,
.theme-default-light .warn-A400 .hint-text, .theme-default-light .warn-A400.disabled-text,
.theme-default-light .warn-A400 .disabled-text, .theme-default-light .warn-A700.hint-text,
.theme-default-light .warn-A700 .hint-text, .theme-default-light .warn-A700.disabled-text,
.theme-default-light .warn-A700 .disabled-text {
  color: rgba(255, 255, 255, 0.5) !important;
}
.theme-default-light .red-500.divider,
.theme-default-light .red-500 .divider, .theme-default-light .red-600.divider,
.theme-default-light .red-600 .divider, .theme-default-light .red-700.divider,
.theme-default-light .red-700 .divider, .theme-default-light .red-800.divider,
.theme-default-light .red-800 .divider, .theme-default-light .red-900.divider,
.theme-default-light .red-900 .divider, .theme-default-light .red-A200.divider,
.theme-default-light .red-A200 .divider, .theme-default-light .red-A400.divider,
.theme-default-light .red-A400 .divider, .theme-default-light .red-A700.divider,
.theme-default-light .red-A700 .divider, .theme-default-light .pink-500.divider,
.theme-default-light .pink-500 .divider, .theme-default-light .pink-600.divider,
.theme-default-light .pink-600 .divider, .theme-default-light .pink-700.divider,
.theme-default-light .pink-700 .divider, .theme-default-light .pink-800.divider,
.theme-default-light .pink-800 .divider, .theme-default-light .pink-900.divider,
.theme-default-light .pink-900 .divider, .theme-default-light .pink-A200.divider,
.theme-default-light .pink-A200 .divider, .theme-default-light .pink-A400.divider,
.theme-default-light .pink-A400 .divider, .theme-default-light .pink-A700.divider,
.theme-default-light .pink-A700 .divider, .theme-default-light .purple-300.divider,
.theme-default-light .purple-300 .divider, .theme-default-light .purple-400.divider,
.theme-default-light .purple-400 .divider, .theme-default-light .purple-500.divider,
.theme-default-light .purple-500 .divider, .theme-default-light .purple-600.divider,
.theme-default-light .purple-600 .divider, .theme-default-light .purple-700.divider,
.theme-default-light .purple-700 .divider, .theme-default-light .purple-800.divider,
.theme-default-light .purple-800 .divider, .theme-default-light .purple-900.divider,
.theme-default-light .purple-900 .divider, .theme-default-light .purple-A200.divider,
.theme-default-light .purple-A200 .divider, .theme-default-light .purple-A400.divider,
.theme-default-light .purple-A400 .divider, .theme-default-light .purple-A700.divider,
.theme-default-light .purple-A700 .divider, .theme-default-light .deep-purple-300.divider,
.theme-default-light .deep-purple-300 .divider, .theme-default-light .deep-purple-400.divider,
.theme-default-light .deep-purple-400 .divider, .theme-default-light .deep-purple-500.divider,
.theme-default-light .deep-purple-500 .divider, .theme-default-light .deep-purple-600.divider,
.theme-default-light .deep-purple-600 .divider, .theme-default-light .deep-purple-700.divider,
.theme-default-light .deep-purple-700 .divider, .theme-default-light .deep-purple-800.divider,
.theme-default-light .deep-purple-800 .divider, .theme-default-light .deep-purple-900.divider,
.theme-default-light .deep-purple-900 .divider, .theme-default-light .deep-purple-A200.divider,
.theme-default-light .deep-purple-A200 .divider, .theme-default-light .deep-purple-A400.divider,
.theme-default-light .deep-purple-A400 .divider, .theme-default-light .deep-purple-A700.divider,
.theme-default-light .deep-purple-A700 .divider, .theme-default-light .indigo-300.divider,
.theme-default-light .indigo-300 .divider, .theme-default-light .indigo-400.divider,
.theme-default-light .indigo-400 .divider, .theme-default-light .indigo-500.divider,
.theme-default-light .indigo-500 .divider, .theme-default-light .indigo-600.divider,
.theme-default-light .indigo-600 .divider, .theme-default-light .indigo-700.divider,
.theme-default-light .indigo-700 .divider, .theme-default-light .indigo-800.divider,
.theme-default-light .indigo-800 .divider, .theme-default-light .indigo-900.divider,
.theme-default-light .indigo-900 .divider, .theme-default-light .indigo-A200.divider,
.theme-default-light .indigo-A200 .divider, .theme-default-light .indigo-A400.divider,
.theme-default-light .indigo-A400 .divider, .theme-default-light .indigo-A700.divider,
.theme-default-light .indigo-A700 .divider, .theme-default-light .blue-400.divider,
.theme-default-light .blue-400 .divider, .theme-default-light .blue-500.divider,
.theme-default-light .blue-500 .divider, .theme-default-light .blue-600.divider,
.theme-default-light .blue-600 .divider, .theme-default-light .blue-700.divider,
.theme-default-light .blue-700 .divider, .theme-default-light .blue-800.divider,
.theme-default-light .blue-800 .divider, .theme-default-light .blue-900.divider,
.theme-default-light .blue-900 .divider, .theme-default-light .blue-A200.divider,
.theme-default-light .blue-A200 .divider, .theme-default-light .blue-A400.divider,
.theme-default-light .blue-A400 .divider, .theme-default-light .blue-A700.divider,
.theme-default-light .blue-A700 .divider, .theme-default-light .light-blue-500.divider,
.theme-default-light .light-blue-500 .divider, .theme-default-light .light-blue-600.divider,
.theme-default-light .light-blue-600 .divider, .theme-default-light .light-blue-700.divider,
.theme-default-light .light-blue-700 .divider, .theme-default-light .light-blue-800.divider,
.theme-default-light .light-blue-800 .divider, .theme-default-light .light-blue-900.divider,
.theme-default-light .light-blue-900 .divider, .theme-default-light .light-blue-A700.divider,
.theme-default-light .light-blue-A700 .divider, .theme-default-light .cyan-500.divider,
.theme-default-light .cyan-500 .divider, .theme-default-light .cyan-600.divider,
.theme-default-light .cyan-600 .divider, .theme-default-light .cyan-700.divider,
.theme-default-light .cyan-700 .divider, .theme-default-light .cyan-800.divider,
.theme-default-light .cyan-800 .divider, .theme-default-light .cyan-900.divider,
.theme-default-light .cyan-900 .divider, .theme-default-light .teal-500.divider,
.theme-default-light .teal-500 .divider, .theme-default-light .teal-600.divider,
.theme-default-light .teal-600 .divider, .theme-default-light .teal-700.divider,
.theme-default-light .teal-700 .divider, .theme-default-light .teal-800.divider,
.theme-default-light .teal-800 .divider, .theme-default-light .teal-900.divider,
.theme-default-light .teal-900 .divider, .theme-default-light .green-500.divider,
.theme-default-light .green-500 .divider, .theme-default-light .green-600.divider,
.theme-default-light .green-600 .divider, .theme-default-light .green-700.divider,
.theme-default-light .green-700 .divider, .theme-default-light .green-800.divider,
.theme-default-light .green-800 .divider, .theme-default-light .green-900.divider,
.theme-default-light .green-900 .divider, .theme-default-light .light-green-600.divider,
.theme-default-light .light-green-600 .divider, .theme-default-light .light-green-700.divider,
.theme-default-light .light-green-700 .divider, .theme-default-light .light-green-800.divider,
.theme-default-light .light-green-800 .divider, .theme-default-light .light-green-900.divider,
.theme-default-light .light-green-900 .divider, .theme-default-light .lime-500.divider,
.theme-default-light .lime-500 .divider, .theme-default-light .lime-600.divider,
.theme-default-light .lime-600 .divider, .theme-default-light .lime-700.divider,
.theme-default-light .lime-700 .divider, .theme-default-light .lime-800.divider,
.theme-default-light .lime-800 .divider, .theme-default-light .lime-900.divider,
.theme-default-light .lime-900 .divider, .theme-default-light .orange-800.divider,
.theme-default-light .orange-800 .divider, .theme-default-light .orange-900.divider,
.theme-default-light .orange-900 .divider, .theme-default-light .deep-orange-500.divider,
.theme-default-light .deep-orange-500 .divider, .theme-default-light .deep-orange-600.divider,
.theme-default-light .deep-orange-600 .divider, .theme-default-light .deep-orange-700.divider,
.theme-default-light .deep-orange-700 .divider, .theme-default-light .deep-orange-800.divider,
.theme-default-light .deep-orange-800 .divider, .theme-default-light .deep-orange-900.divider,
.theme-default-light .deep-orange-900 .divider, .theme-default-light .deep-orange-A400.divider,
.theme-default-light .deep-orange-A400 .divider, .theme-default-light .deep-orange-A700.divider,
.theme-default-light .deep-orange-A700 .divider, .theme-default-light .brown-300.divider,
.theme-default-light .brown-300 .divider, .theme-default-light .brown-400.divider,
.theme-default-light .brown-400 .divider, .theme-default-light .brown-500.divider,
.theme-default-light .brown-500 .divider, .theme-default-light .brown-600.divider,
.theme-default-light .brown-600 .divider, .theme-default-light .brown-700.divider,
.theme-default-light .brown-700 .divider, .theme-default-light .brown-800.divider,
.theme-default-light .brown-800 .divider, .theme-default-light .brown-900.divider,
.theme-default-light .brown-900 .divider, .theme-default-light .brown-A400.divider,
.theme-default-light .brown-A400 .divider, .theme-default-light .brown-A700.divider,
.theme-default-light .brown-A700 .divider, .theme-default-light .grey-500.divider,
.theme-default-light .grey-500 .divider, .theme-default-light .grey-600.divider,
.theme-default-light .grey-600 .divider, .theme-default-light .grey-700.divider,
.theme-default-light .grey-700 .divider, .theme-default-light .grey-800.divider,
.theme-default-light .grey-800 .divider, .theme-default-light .grey-900.divider,
.theme-default-light .grey-900 .divider, .theme-default-light .blue-grey-400.divider,
.theme-default-light .blue-grey-400 .divider, .theme-default-light .blue-grey-500.divider,
.theme-default-light .blue-grey-500 .divider, .theme-default-light .blue-grey-600.divider,
.theme-default-light .blue-grey-600 .divider, .theme-default-light .blue-grey-700.divider,
.theme-default-light .blue-grey-700 .divider, .theme-default-light .blue-grey-800.divider,
.theme-default-light .blue-grey-800 .divider, .theme-default-light .blue-grey-900.divider,
.theme-default-light .blue-grey-900 .divider, .theme-default-light .blue-grey-A400.divider,
.theme-default-light .blue-grey-A400 .divider, .theme-default-light .blue-grey-A700.divider,
.theme-default-light .blue-grey-A700 .divider, .theme-default-light .dark-grey-50.divider,
.theme-default-light .dark-grey-50 .divider, .theme-default-light .dark-grey-100.divider,
.theme-default-light .dark-grey-100 .divider, .theme-default-light .dark-grey-200.divider,
.theme-default-light .dark-grey-200 .divider, .theme-default-light .dark-grey-300.divider,
.theme-default-light .dark-grey-300 .divider, .theme-default-light .dark-grey-400.divider,
.theme-default-light .dark-grey-400 .divider, .theme-default-light .dark-grey-500.divider,
.theme-default-light .dark-grey-500 .divider, .theme-default-light .dark-grey-600.divider,
.theme-default-light .dark-grey-600 .divider, .theme-default-light .dark-grey-700.divider,
.theme-default-light .dark-grey-700 .divider, .theme-default-light .dark-grey-800.divider,
.theme-default-light .dark-grey-800 .divider, .theme-default-light .dark-grey-900.divider,
.theme-default-light .dark-grey-900 .divider, .theme-default-light .dark-grey-A100.divider,
.theme-default-light .dark-grey-A100 .divider, .theme-default-light .dark-grey-A200.divider,
.theme-default-light .dark-grey-A200 .divider, .theme-default-light .dark-grey-A400.divider,
.theme-default-light .dark-grey-A400 .divider, .theme-default-light .dark-grey-A700.divider,
.theme-default-light .dark-grey-A700 .divider, .theme-default-light .primary-400.divider,
.theme-default-light .primary-400 .divider, .theme-default-light .primary-500.divider,
.theme-default-light .primary-500 .divider, .theme-default-light .primary-600.divider,
.theme-default-light .primary-600 .divider, .theme-default-light .primary-700.divider,
.theme-default-light .primary-700 .divider, .theme-default-light .primary-800.divider,
.theme-default-light .primary-800 .divider, .theme-default-light .primary-900.divider,
.theme-default-light .primary-900 .divider, .theme-default-light .primary-A400.divider,
.theme-default-light .primary-A400 .divider, .theme-default-light .primary-A700.divider,
.theme-default-light .primary-A700 .divider, .theme-default-light .accent-400.divider,
.theme-default-light .accent-400 .divider, .theme-default-light .accent-500.divider,
.theme-default-light .accent-500 .divider, .theme-default-light .accent-600.divider,
.theme-default-light .accent-600 .divider, .theme-default-light .accent-700.divider,
.theme-default-light .accent-700 .divider, .theme-default-light .accent-800.divider,
.theme-default-light .accent-800 .divider, .theme-default-light .accent-900.divider,
.theme-default-light .accent-900 .divider, .theme-default-light .accent-A200.divider,
.theme-default-light .accent-A200 .divider, .theme-default-light .accent-A400.divider,
.theme-default-light .accent-A400 .divider, .theme-default-light .accent-A700.divider,
.theme-default-light .accent-A700 .divider, .theme-default-light .warn-500.divider,
.theme-default-light .warn-500 .divider, .theme-default-light .warn-600.divider,
.theme-default-light .warn-600 .divider, .theme-default-light .warn-700.divider,
.theme-default-light .warn-700 .divider, .theme-default-light .warn-800.divider,
.theme-default-light .warn-800 .divider, .theme-default-light .warn-900.divider,
.theme-default-light .warn-900 .divider, .theme-default-light .warn-A200.divider,
.theme-default-light .warn-A200 .divider, .theme-default-light .warn-A400.divider,
.theme-default-light .warn-A400 .divider, .theme-default-light .warn-A700.divider,
.theme-default-light .warn-A700 .divider {
  color: rgba(255, 255, 255, 0.12) !important;
}
.theme-default-light .elevation-z-0 {
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.033), 0px 0px 0px 0px rgba(0, 0, 0, 0.033), 0px 0px 0px 0px rgba(0, 0, 0, 0.033);
}
.theme-default-light .elevation-z-1 {
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.033), 0px 2px 2px 0px rgba(0, 0, 0, 0.033), 0px 2px 2px 0px rgba(0, 0, 0, 0.033);
}
.theme-default-light .elevation-z-2 {
  box-shadow: 0px 3px 2px -2px rgba(0, 0, 0, 0.033), 0px 2px 3px 0px rgba(0, 0, 0, 0.033), 0px 1px 5px 0px rgba(0, 0, 0, 0.033);
}
.theme-default-light .elevation-z-3 {
  box-shadow: 0px 3px 3px -2px rgba(0, 0, 0, 0.033), 0px 3px 4px 0px rgba(0, 0, 0, 0.033), 0px 1px 8px 0px rgba(0, 0, 0, 0.033);
}
.theme-default-light .elevation-z-4 {
  box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.033), 0px 4px 5px 0px rgba(0, 0, 0, 0.033), 0px 1px 10px 0px rgba(0, 0, 0, 0.033);
}
.theme-default-light .elevation-z-5 {
  box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.033), 0px 5px 8px 0px rgba(0, 0, 0, 0.033), 0px 1px 14px 0px rgba(0, 0, 0, 0.033);
}
.theme-default-light .elevation-z-6 {
  box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.033), 0px 6px 10px 0px rgba(0, 0, 0, 0.033), 0px 1px 18px 0px rgba(0, 0, 0, 0.033);
}
.theme-default-light .elevation-z-7 {
  box-shadow: 0px 4px 5px -2px rgba(0, 0, 0, 0.033), 0px 7px 10px 1px rgba(0, 0, 0, 0.033), 0px 2px 16px 1px rgba(0, 0, 0, 0.033);
}
.theme-default-light .elevation-z-8 {
  box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.033), 0px 8px 10px 1px rgba(0, 0, 0, 0.033), 0px 3px 14px 2px rgba(0, 0, 0, 0.033);
}
.theme-default-light .elevation-z-9 {
  box-shadow: 0px 5px 6px -3px rgba(0, 0, 0, 0.033), 0px 9px 12px 1px rgba(0, 0, 0, 0.033), 0px 3px 16px 2px rgba(0, 0, 0, 0.033);
}
.theme-default-light .elevation-z-10 {
  box-shadow: 0px 6px 6px -3px rgba(0, 0, 0, 0.033), 0px 10px 14px 1px rgba(0, 0, 0, 0.033), 0px 4px 18px 3px rgba(0, 0, 0, 0.033);
}
.theme-default-light .elevation-z-11 {
  box-shadow: 0px 6px 7px -4px rgba(0, 0, 0, 0.033), 0px 11px 15px 1px rgba(0, 0, 0, 0.033), 0px 4px 20px 3px rgba(0, 0, 0, 0.033);
}
.theme-default-light .elevation-z-12 {
  box-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.033), 0px 12px 17px 2px rgba(0, 0, 0, 0.033), 0px 5px 22px 4px rgba(0, 0, 0, 0.033);
}
.theme-default-light .elevation-z-13 {
  box-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.033), 0px 13px 19px 2px rgba(0, 0, 0, 0.033), 0px 5px 24px 4px rgba(0, 0, 0, 0.033);
}
.theme-default-light .elevation-z-14 {
  box-shadow: 0px 7px 9px -4px rgba(0, 0, 0, 0.033), 0px 14px 21px 2px rgba(0, 0, 0, 0.033), 0px 5px 26px 4px rgba(0, 0, 0, 0.033);
}
.theme-default-light .elevation-z-15 {
  box-shadow: 0px 8px 9px -5px rgba(0, 0, 0, 0.033), 0px 15px 22px 2px rgba(0, 0, 0, 0.033), 0px 6px 28px 5px rgba(0, 0, 0, 0.033);
}
.theme-default-light .elevation-z-16 {
  box-shadow: 0px 8px 10px -5px rgba(0, 0, 0, 0.033), 0px 16px 24px 2px rgba(0, 0, 0, 0.033), 0px 6px 30px 5px rgba(0, 0, 0, 0.033);
}
.theme-default-light .elevation-z-17 {
  box-shadow: 0px 8px 11px -5px rgba(0, 0, 0, 0.033), 0px 17px 26px 2px rgba(0, 0, 0, 0.033), 0px 6px 32px 5px rgba(0, 0, 0, 0.033);
}
.theme-default-light .elevation-z-18 {
  box-shadow: 0px 9px 11px -5px rgba(0, 0, 0, 0.033), 0px 18px 28px 2px rgba(0, 0, 0, 0.033), 0px 7px 34px 6px rgba(0, 0, 0, 0.033);
}
.theme-default-light .elevation-z-19 {
  box-shadow: 0px 9px 12px -6px rgba(0, 0, 0, 0.033), 0px 19px 29px 2px rgba(0, 0, 0, 0.033), 0px 7px 36px 6px rgba(0, 0, 0, 0.033);
}
.theme-default-light .elevation-z-20 {
  box-shadow: 0px 10px 13px -6px rgba(0, 0, 0, 0.033), 0px 20px 31px 3px rgba(0, 0, 0, 0.033), 0px 8px 38px 7px rgba(0, 0, 0, 0.033);
}
.theme-default-light .elevation-z-21 {
  box-shadow: 0px 10px 13px -6px rgba(0, 0, 0, 0.033), 0px 21px 33px 3px rgba(0, 0, 0, 0.033), 0px 8px 40px 7px rgba(0, 0, 0, 0.033);
}
.theme-default-light .elevation-z-22 {
  box-shadow: 0px 10px 14px -6px rgba(0, 0, 0, 0.033), 0px 22px 35px 3px rgba(0, 0, 0, 0.033), 0px 8px 42px 7px rgba(0, 0, 0, 0.033);
}
.theme-default-light .elevation-z-23 {
  box-shadow: 0px 11px 14px -7px rgba(0, 0, 0, 0.033), 0px 23px 36px 3px rgba(0, 0, 0, 0.033), 0px 9px 44px 8px rgba(0, 0, 0, 0.033);
}
.theme-default-light .elevation-z-24 {
  box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.033), 0px 24px 38px 3px rgba(0, 0, 0, 0.033), 0px 9px 46px 8px rgba(0, 0, 0, 0.033);
}
.theme-default-light .angular-editor .angular-editor-toolbar {
  font: 100 0.8rem/15px Roboto, Arial, sans-serif !important;
  background-color: #E2E7E9 !important;
  padding: 8px !important;
  border: 0px !important;
}
.theme-default-light .angular-editor .angular-editor-toolbar .angular-editor-toolbar-set .angular-editor-button {
  background-color: transparent !important;
  vertical-align: middle !important;
  border: 0 !important;
  padding: 8px !important;
  float: left !important;
  border-radius: 50px;
}
.theme-default-light .angular-editor .angular-editor-toolbar .angular-editor-toolbar-set .angular-editor-button:hover {
  background: rgba(255, 255, 255, 0.5) !important;
}
.theme-default-light .angular-editor .angular-editor-toolbar .angular-editor-toolbar-set .angular-editor-button.active {
  background: #FFFFFF !important;
}
.theme-default-light .angular-editor .angular-editor-toolbar .angular-editor-toolbar-set .angular-editor-button i {
  color: #21282C;
  height: 24px !important;
  width: 24px !important;
  font-size: 16px !important;
  line-height: 24px !important;
}
.theme-default-light .angular-editor .angular-editor-textarea {
  min-height: 100px !important;
  height: 30vh !important;
  padding: 16px !important;
  border: 0px !important;
  background-color: transparent !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  position: relative !important;
}
.theme-default-light .mat-mdc-unelevated-button,
.theme-default-light .mat-mdc-raised-button,
.theme-default-light .mat-mdc-fab,
.theme-default-light .mat-mdc-mini-fab {
  --mdc-filled-button-container-shape: 8px;
}
.theme-default-light .mat-mdc-unelevated-button:not([disabled=true]).mat-primary,
.theme-default-light .mat-mdc-raised-button:not([disabled=true]).mat-primary,
.theme-default-light .mat-mdc-fab:not([disabled=true]).mat-primary,
.theme-default-light .mat-mdc-mini-fab:not([disabled=true]).mat-primary {
  color: white;
}
.theme-default-light .mat-mdc-unelevated-button:not([disabled=true]).mat-accent,
.theme-default-light .mat-mdc-raised-button:not([disabled=true]).mat-accent,
.theme-default-light .mat-mdc-fab:not([disabled=true]).mat-accent,
.theme-default-light .mat-mdc-mini-fab:not([disabled=true]).mat-accent {
  color: white;
}
.theme-default-light .mat-mdc-unelevated-button:not([disabled=true]).mat-warn,
.theme-default-light .mat-mdc-raised-button:not([disabled=true]).mat-warn,
.theme-default-light .mat-mdc-fab:not([disabled=true]).mat-warn,
.theme-default-light .mat-mdc-mini-fab:not([disabled=true]).mat-warn {
  color: white;
}
.theme-default-light .mat-mdc-outlined-button {
  --mdc-outlined-button-container-shape: 8px;
  --mdc-outlined-button-outline-color: currentColor;
  --mdc-outlined-button-outline-width: 0;
  box-shadow: 0px 0px 0px 2px currentColor inset;
}
.theme-default-light .mat-mdc-raised-button {
  --mdc-protected-button-container-height: 36px;
  --mdc-protected-button-container-shape: 8px;
  --mdc-protected-button-container-elevation: 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);
}
.theme-default-light .mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-notched-outline .mdc-notched-outline__leading,
.theme-default-light .mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-notched-outline .mdc-notched-outline__notch,
.theme-default-light .mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-notched-outline .mdc-notched-outline__trailing {
  --mdc-outlined-text-field-outline-width: 2px;
}
.theme-default-light .mdc-text-field--outlined.mdc-text-field--disabled .mdc-notched-outline .mdc-notched-outline__leading,
.theme-default-light .mdc-text-field--outlined.mdc-text-field--disabled .mdc-notched-outline .mdc-notched-outline__notch,
.theme-default-light .mdc-text-field--outlined.mdc-text-field--disabled .mdc-notched-outline .mdc-notched-outline__trailing {
  --mdc-outlined-text-field-outline-width: 2px;
}
.theme-default-light .mdc-notched-outline__trailing {
  border-left: none;
  border-right: 2px solid;
}
.theme-default-light .mdc-notched-outline__leading {
  border-left: 2px solid;
  border-right: none;
  width: 12px;
}
.theme-default-light .mdc-notched-outline__notch {
  border-left: 2px solid transparent;
}
.theme-default-light .mdc-notched-outline__leading,
.theme-default-light .mdc-notched-outline__notch,
.theme-default-light .mdc-notched-outline__trailing {
  border-top: 2px solid;
  border-bottom: 2px solid;
}
.theme-default-light .mdc-text-field--outlined {
  --mdc-outlined-text-field-container-shape: 8px;
}
.theme-default-light .mat-mdc-text-field-wrapper.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above {
  --mat-mdc-form-field-label-transform: translateY(-29.75px)
      scale(var(--mat-mdc-form-field-floating-label-scale, 0.75));
}
.theme-default-light .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-floating-label {
  top: 22px;
}
.theme-default-light .mat-mdc-text-field-wrapper.mdc-text-field--outlined .mat-mdc-form-field-infix {
  padding-top: 12px;
  padding-bottom: 12px;
}
.theme-default-light .mat-mdc-form-field-infix {
  min-height: 48px;
}
.theme-default-light .mat-mdc-icon-button.mat-mdc-button-base {
  padding: 0;
}
.theme-default-light .mat-mdc-icon-button.mat-mdc-button-base {
  display: flex;
  align-content: center;
  justify-content: center;
  flex-wrap: wrap;
}
.theme-default-light .mat-stepper-vertical,
.theme-default-light .mat-stepper-horizontal {
  --mat-stepper-container-color: map-get($background, surface);
}
.theme-default-light .mat-stepper-horizontal.bullet-stepper-header-labeled .mat-horizontal-stepper-header-container {
  justify-content: end;
  margin-bottom: 0;
  margin-top: 0;
  margin-right: 0;
  padding-right: 24px;
  height: 0;
}
.theme-default-light .mat-stepper-horizontal.bullet-stepper-header-labeled, .theme-default-light .mat-stepper-horizontal.bullet-stepper-header {
  position: relative;
}
.theme-default-light .mat-stepper-horizontal.bullet-stepper-header-labeled .mat-horizontal-stepper-header-container .mat-stepper-horizontal-line, .theme-default-light .mat-stepper-horizontal.bullet-stepper-header .mat-horizontal-stepper-header-container .mat-stepper-horizontal-line {
  display: none;
}
.theme-default-light .mat-stepper-horizontal.bullet-stepper-header-labeled .mat-horizontal-stepper-header-container .mat-step-header-ripple, .theme-default-light .mat-stepper-horizontal.bullet-stepper-header .mat-horizontal-stepper-header-container .mat-step-header-ripple {
  display: none;
}
.theme-default-light .mat-stepper-horizontal.bullet-stepper-header-labeled .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header, .theme-default-light .mat-stepper-horizontal.bullet-stepper-header .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header {
  height: initial;
  overflow: initial;
}
.theme-default-light .mat-stepper-horizontal.bullet-stepper-header-labeled .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header.mat-step-header, .theme-default-light .mat-stepper-horizontal.bullet-stepper-header .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header.mat-step-header {
  padding: 0;
  border-radius: 0;
  flex-direction: column;
  position: inherit;
  width: 40px;
}
.theme-default-light .mat-stepper-horizontal.bullet-stepper-header-labeled .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header.mat-step-header.cdk-keyboard-focused, .theme-default-light .mat-stepper-horizontal.bullet-stepper-header-labeled .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header.mat-step-header.cdk-program-focused, .theme-default-light .mat-stepper-horizontal.bullet-stepper-header-labeled .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header.mat-step-header:hover, .theme-default-light .mat-stepper-horizontal.bullet-stepper-header .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header.mat-step-header.cdk-keyboard-focused, .theme-default-light .mat-stepper-horizontal.bullet-stepper-header .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header.mat-step-header.cdk-program-focused, .theme-default-light .mat-stepper-horizontal.bullet-stepper-header .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header.mat-step-header:hover {
  background-color: transparent;
}
.theme-default-light .mat-stepper-horizontal.bullet-stepper-header-labeled .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header.mat-step-header .mat-step-icon, .theme-default-light .mat-stepper-horizontal.bullet-stepper-header .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header.mat-step-header .mat-step-icon {
  margin: -32px 0 0 8px;
  border-radius: 8px;
  height: 8px;
  width: 32px;
  flex-shrink: 0;
  position: absolute;
}
.theme-default-light .mat-stepper-horizontal.bullet-stepper-header-labeled .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header .mat-step-label, .theme-default-light .mat-stepper-horizontal.bullet-stepper-header .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header .mat-step-label {
  position: absolute;
  display: none;
  right: 0;
  margin-top: -52px;
  margin-right: 24px;
  font-family: "CircularStd";
  font-weight: 700;
  color: #7E8E95;
}
.theme-default-light .mat-stepper-horizontal.bullet-stepper-header-labeled .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header .mat-step-label.mat-step-label-active, .theme-default-light .mat-stepper-horizontal.bullet-stepper-header .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header .mat-step-label.mat-step-label-active {
  display: none;
}
.theme-default-light .mat-stepper-horizontal.bullet-stepper-header-labeled .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header .mat-step-label.mat-step-label-active.mat-step-label-selected, .theme-default-light .mat-stepper-horizontal.bullet-stepper-header .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header .mat-step-label.mat-step-label-active.mat-step-label-selected {
  display: flex;
  justify-content: flex-end;
}
.theme-default-light .mat-stepper-horizontal.bullet-stepper-header-labeled .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header .mat-step-icon-state-edit, .theme-default-light .mat-stepper-horizontal.bullet-stepper-header .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header .mat-step-icon-state-edit {
  margin: 0;
}
.theme-default-light .mat-stepper-horizontal.bullet-stepper-header-labeled .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header .mat-step-icon-state-edit.mat-step-icon, .theme-default-light .mat-stepper-horizontal.bullet-stepper-header .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header .mat-step-icon-state-edit.mat-step-icon {
  background-color: #1e5bda;
}
.theme-default-light .mat-stepper-horizontal.bullet-stepper-header-labeled .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header .mat-step-icon-state-edit.mat-step-icon .mat-icon, .theme-default-light .mat-stepper-horizontal.bullet-stepper-header .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header .mat-step-icon-state-edit.mat-step-icon .mat-icon {
  display: none;
}
.theme-default-light .mat-stepper-horizontal.bullet-stepper-header-labeled .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header .mat-step-icon-state-number.mat-step-icon, .theme-default-light .mat-stepper-horizontal.bullet-stepper-header .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header .mat-step-icon-state-number.mat-step-icon {
  background-color: #E2E7E9;
}
.theme-default-light .mat-stepper-horizontal.bullet-stepper-header-labeled .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header .mat-step-icon-state-number.mat-step-icon .mat-step-icon-content, .theme-default-light .mat-stepper-horizontal.bullet-stepper-header .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header .mat-step-icon-state-number.mat-step-icon .mat-step-icon-content {
  display: none;
}
.theme-default-light .mat-stepper-horizontal.bullet-stepper-header-labeled .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header .mat-step-icon-state-number.mat-step-icon.mat-step-icon-selected, .theme-default-light .mat-stepper-horizontal.bullet-stepper-header .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header .mat-step-icon-state-number.mat-step-icon.mat-step-icon-selected {
  background-color: #1e5bda;
  order: 1;
}
.theme-default-light .mat-stepper-horizontal.bullet-stepper-header-labeled .mat-horizontal-content-container, .theme-default-light .mat-stepper-horizontal.bullet-stepper-header .mat-horizontal-content-container {
  padding: 0;
}
.theme-default-light .mat-stepper-horizontal.bullet-stepper-header-labeled .mat-horizontal-content-container .mat-dialog-content, .theme-default-light .mat-stepper-horizontal.bullet-stepper-header .mat-horizontal-content-container .mat-dialog-content {
  max-height: calc(100vh - 268px);
}
.theme-default-light .mat-stepper-horizontal.hide-stepper-header .mat-horizontal-stepper-header-container {
  display: none !important;
}
.theme-default-light .mat-stepper-horizontal.hide-stepper-header .mat-horizontal-content-container {
  overflow: hidden;
  padding: 0;
}
.theme-default-light .mat-stepper-horizontal.page-layout-stepper .mat-horizontal-stepper-header-container {
  padding-right: 24px;
}
.theme-default-light .mat-stepper-horizontal.page-layout-stepper .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header .mat-step-label {
  margin-top: -60px;
  margin-right: 24px;
}
.theme-default-light form .mat-form-field-appearance-outline .mat-form-field-subscript-wrapper,
.theme-default-light form .mat-form-field-appearance-fill .mat-form-field-subscript-wrapper {
  padding: 0;
  position: relative;
  box-sizing: border-box;
  width: 100%;
  overflow: hidden;
}
.theme-default-light form .mat-form-field-appearance-outline .mat-form-field-wrapper,
.theme-default-light form .mat-form-field-appearance-outline .mat-form-field-hint-wrapper,
.theme-default-light form .mat-form-field-appearance-fill .mat-form-field-wrapper,
.theme-default-light form .mat-form-field-appearance-fill .mat-form-field-hint-wrapper {
  margin: 0 0 -24px 0;
  padding-bottom: 16px;
}
.theme-default-light form .mat-expansion-panel.mat-expansion-panel-folder-navigation .mat-expansion-panel-content .mat-expansion-panel-body {
  max-height: 256px;
  overflow-y: auto;
  padding: 0;
}
.theme-default-light .full-calendar {
  background-color: #F2F3F8;
}
.theme-default-light .fc-day-top.active .fc-day-number {
  background-color: #1e5bda;
  color: #E2E7E9;
}
.theme-default-light .fc-day-number:hover {
  background-color: #2B363B;
  color: #E2E7E9;
}
.theme-default-light .fc-button-primary {
  background-color: #F2F3F8;
}
.theme-default-light .fc-button-primary .fc-icon {
  color: #8A9EA8;
}
.theme-default-light .fc-button-primary .fc-day-header span {
  color: #8A9EA8;
}
.theme-default-light .fc-button-primary:hover {
  background-color: #8A9EA8;
}
.theme-default-light .fc-button-primary:hover .fc-icon {
  color: #21282C;
}
.theme-default-light .fc-unthemed th,
.theme-default-light .fc-unthemed td,
.theme-default-light .fc-unthemed thead,
.theme-default-light .fc-unthemed tbody,
.theme-default-light .fc-unthemed .fc-divider,
.theme-default-light .fc-unthemed .fc-row,
.theme-default-light .fc-unthemed .fc-content,
.theme-default-light .fc-unthemed .fc-popover,
.theme-default-light .fc-unthemed .fc-list-view,
.theme-default-light .fc-unthemed .fc-list-heading td {
  border-color: #8A9EA8;
}
.theme-default-light .fc-unthemed .fc-divider,
.theme-default-light .fc-unthemed .fc-popover .fc-header,
.theme-default-light .fc-unthemed .fc-list-heading td {
  background: #8A9EA8;
}
.theme-default-light .fc-unthemed td.fc-today {
  background-color: #F2F3F8;
}
.theme-default-light .fc-unthemed .fc-disabled-day {
  background: #8A9EA8;
  opacity: 0.3;
}
.theme-default-light .fc-toolbar h2 {
  color: #7E8E95;
}
.theme-default-light .fc-day-header span {
  color: #8A9EA8;
}
.theme-default-light .fc-unthemed td.fc-today {
  background-color: transparent;
}
.theme-default-light .fc-day-top.fc-today .fc-day-number {
  background-color: #7E8E95;
  color: #E2E7E9;
}
.theme-default-light .fc-button-primary:not(:disabled):active,
.theme-default-light .fc-button-primary:not(:disabled).fc-button-active {
  background-color: transparent;
  border-color: transparent;
}
.theme-default-light .fc-button-primary {
  color: #F2F3F8;
  background-color: #FFFFFF;
  border-color: #2c3e50;
}
.theme-default-light .fc-button-primary:hover {
  color: #F2F3F8;
  background-color: rgba(255, 255, 255, 0.5);
  border-color: #E2E7E9;
}
.theme-default-light .fc-button-primary:focus {
  box-shadow: 0 0 0 2px rgba(76, 91, 106, 0.5);
}
.theme-default-light .fc-button-primary:disabled {
  color: #F2F3F8;
  background-color: #E2E7E9;
  border-color: #2c3e50;
}
.theme-default-light .fc-button-primary:not(:disabled):active,
.theme-default-light .fc-button-primary:not(:disabled).fc-button-active {
  color: #F2F3F8;
  background-color: #E2E7E9;
  border-color: #151e27;
}
.theme-default-light .fc-button-primary:not(:disabled):active:focus,
.theme-default-light .fc-button-primary:not(:disabled).fc-button-active:focus {
  box-shadow: 0 0 0 2px rgba(76, 91, 106, 0.5);
}
.theme-default-light .full-calendar {
  display: block;
  border-radius: 8px;
  padding: 16px;
}
.theme-default-light .fc-day-top.active .fc-day-number {
  border-radius: 8px;
}
.theme-default-light .fc-day-number {
  display: flex;
  padding: 0;
  margin: 0 auto;
  font-size: 16px;
  line-height: 42px;
  width: 42px;
  height: 42px;
  justify-content: center;
  text-align: center;
  cursor: pointer;
}
.theme-default-light .fc-day-number:hover {
  border-radius: 999px;
}
.theme-default-light .fc-button-primary {
  border: none;
  padding: 4px;
  border-radius: 100px;
  line-height: 20px;
  height: 40px;
  width: 40px;
}
.theme-default-light .fc-button-primary .fc-icon {
  font-size: 32px;
}
.theme-default-light .fc-button-primary .fc-day-header span {
  display: flex;
  width: 32px;
  float: none;
  padding: 0;
  line-height: 34px;
  height: 32px;
  margin: 0 auto;
  align-content: center;
  justify-content: center;
}
.theme-default-light .fc-toolbar h2 {
  font-size: 16px;
  text-transform: uppercase;
}
.theme-default-light .fc-day-header span {
  font-size: 16px;
  text-transform: capitalize;
}
.theme-default-light .fc-day-top.fc-today .fc-day-number {
  border-radius: 999px;
}
.theme-default-light .fc-button-primary:focus {
  box-shadow: none;
}
.theme-default-light .fc-button-primary:not(:disabled):active:focus,
.theme-default-light .fc-button-primary:not(:disabled).fc-button-active:focus {
  box-shadow: none;
}
.theme-default-light .fc-unthemed th,
.theme-default-light .fc-unthemed td,
.theme-default-light .fc-unthemed thead,
.theme-default-light .fc-unthemed tbody,
.theme-default-light .fc-unthemed .fc-divider,
.theme-default-light .fc-unthemed .fc-row,
.theme-default-light .fc-unthemed .fc-content,
.theme-default-light .fc-unthemed .fc-popover,
.theme-default-light .fc-unthemed .fc-list-view,
.theme-default-light .fc-unthemed .fc-list-heading td {
  border: 0 !important;
  text-align: center;
  padding-top: 6px;
}
.theme-default-light .fc-ltr .fc-dayGrid-view .fc-day-top .fc-day-number {
  float: none;
  margin: 8px auto;
}
.theme-default-light .fc-day-grid-container {
  height: auto !important;
}
.theme-default-light .fc {
  direction: ltr;
  text-align: left;
}
.theme-default-light .fc-rtl {
  text-align: right;
}
.theme-default-light body .fc {
  /* extra precedence to overcome jqui */
  font-size: 16px;
}
.theme-default-light .fc-highlight {
  /* when user is selecting cells */
  background: #bce8f1;
  opacity: 0.3;
}
.theme-default-light .fc-bgevent {
  /* default look for background events */
  background: #8fdf82;
  opacity: 0.3;
}
.theme-default-light .fc-nonbusiness {
  /* default look for non-business-hours areas */
  /* will inherit .fc-bgevent's styles */
  background: #d7d7d7;
}
.theme-default-light .fc-popover {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
.theme-default-light .fc-row .fc-highlight-skeleton td,
.theme-default-light .fc-row .fc-bgevent-skeleton td {
  border-color: transparent;
}
.theme-default-light .fc-popover {
  position: absolute;
}
.theme-default-light .fc-popover .fc-header {
  /* TODO: be more consistent with fc-head/fc-body */
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 2px 4px;
}
.theme-default-light .fc-rtl .fc-popover .fc-header {
  flex-direction: row-reverse;
}
.theme-default-light .fc-popover .fc-header .fc-title {
  margin: 0 2px;
}
.theme-default-light .fc-popover .fc-header .fc-close {
  cursor: pointer;
  opacity: 0.65;
  font-size: 1.1em;
}
.theme-default-light .fc-divider {
  border-style: solid;
  border-width: 1px;
}
.theme-default-light hr.fc-divider {
  height: 0;
  margin: 0;
  padding: 0 0 2px;
  /* height is unreliable across browsers, so use padding */
  border-width: 1px 0;
}
.theme-default-light .fc-bg,
.theme-default-light .fc-bgevent-skeleton,
.theme-default-light .fc-highlight-skeleton,
.theme-default-light .fc-mirror-skeleton {
  /* these element should always cling to top-left/right corners */
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.theme-default-light .fc-bg {
  bottom: 0;
  /* strech bg to bottom edge */
}
.theme-default-light .fc-bg table {
  height: 100%;
  /* strech bg to bottom edge */
}
.theme-default-light .fc table {
  width: 100%;
  box-sizing: border-box;
  /* fix scrollbar issue in firefox */
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 1em;
  /* normalize cross-browser */
}
.theme-default-light .fc th {
  text-align: center;
}
.theme-default-light .fc th,
.theme-default-light .fc td {
  border-style: solid;
  border-width: 1px;
  padding: 0;
  vertical-align: top;
}
.theme-default-light .fc td.fc-today {
  border-style: double;
  /* overcome neighboring borders */
}
.theme-default-light a[data-goto] {
  cursor: pointer;
}
.theme-default-light a[data-goto]:hover {
  text-decoration: underline;
}
.theme-default-light .fc .fc-row {
  /* extra precedence to overcome themes forcing a 1px border */
  /* no visible border by default. but make available if need be (scrollbar width compensation) */
  border-style: solid;
  border-width: 0;
}
.theme-default-light .fc-row table {
  /* don't put left/right border on anything within a fake row.
  the outer tbody will worry about this */
  border-left: 0 hidden transparent;
  border-right: 0 hidden transparent;
  /* no bottom borders on rows */
  border-bottom: 0 hidden transparent;
}
.theme-default-light .fc-row:first-child table {
  border-top: 0 hidden transparent;
  /* no top border on first row */
}
.theme-default-light .fc-row {
  position: relative;
}
.theme-default-light .fc-row .fc-bg {
  z-index: 1;
}
.theme-default-light .fc-row .fc-bgevent-skeleton,
.theme-default-light .fc-row .fc-highlight-skeleton {
  bottom: 0;
  /* stretch skeleton to bottom of row */
}
.theme-default-light .fc-row .fc-bgevent-skeleton table,
.theme-default-light .fc-row .fc-highlight-skeleton table {
  height: 100%;
  /* stretch skeleton to bottom of row */
}
.theme-default-light .fc-row .fc-bgevent-skeleton {
  z-index: 2;
}
.theme-default-light .fc-row .fc-highlight-skeleton {
  z-index: 3;
}
.theme-default-light .fc-row .fc-content-skeleton {
  position: relative;
  z-index: 4;
  padding-bottom: 2px;
  /* matches the space above the events */
}
.theme-default-light .fc-row .fc-mirror-skeleton {
  z-index: 5;
}
.theme-default-light .fc .fc-row .fc-content-skeleton table,
.theme-default-light .fc .fc-row .fc-content-skeleton td,
.theme-default-light .fc .fc-row .fc-mirror-skeleton td {
  /* see-through to the background below */
  /* extra precedence to prevent theme-provided backgrounds */
  background: none;
  /* in case <td>s are globally styled */
  border-color: transparent;
}
.theme-default-light .fc-row .fc-content-skeleton td,
.theme-default-light .fc-row .fc-mirror-skeleton td {
  /* don't put a border between events and/or the day number */
  border-bottom: 0;
}
.theme-default-light .fc-row .fc-content-skeleton tbody td,
.theme-default-light .fc-row .fc-mirror-skeleton tbody td {
  /* don't put a border between event cells */
  border-top: 0;
}
.theme-default-light .fc-scroller {
  -webkit-overflow-scrolling: touch;
}
.theme-default-light .fc-scroller > .fc-day-grid,
.theme-default-light .fc-scroller > .fc-time-grid {
  position: relative;
  /* re-scope all positions */
  width: 100%;
  /* hack to force re-sizing this inner element when scrollbars appear/disappear */
}
.theme-default-light .fc-event {
  position: relative;
  /* for resize handle and other inner positioning */
  display: block;
  /* make the <a> tag block */
  font-size: 0.85em;
  line-height: 1.4;
  border-radius: 3px;
  border: 1px solid #3788d8;
}
.theme-default-light .fc-event,
.theme-default-light .fc-event-dot {
  background-color: #3788d8;
  /* default BACKGROUND color */
}
.theme-default-light .fc-event,
.theme-default-light .fc-event:hover {
  color: #fff;
  /* default TEXT color */
  text-decoration: none;
  /* if <a> has an href */
}
.theme-default-light .fc-event[href],
.theme-default-light .fc-event.fc-draggable {
  cursor: pointer;
  /* give events with links and draggable events a hand mouse pointer */
}
.theme-default-light .fc-not-allowed,
.theme-default-light .fc-not-allowed .fc-event {
  /* to override an event's custom cursor */
  cursor: not-allowed;
}
.theme-default-light .fc-event .fc-content {
  position: relative;
  z-index: 2;
}
.theme-default-light .fc-event .fc-resizer {
  position: absolute;
  z-index: 4;
}
.theme-default-light .fc-event .fc-resizer {
  display: none;
}
.theme-default-light .fc-event.fc-allow-mouse-resize .fc-resizer,
.theme-default-light .fc-event.fc-selected .fc-resizer {
  /* only show when hovering or selected (with touch) */
  display: block;
}
.theme-default-light .fc-event.fc-selected .fc-resizer:before {
  /* 40x40 touch area */
  content: "";
  position: absolute;
  z-index: 9999;
  /* user of this util can scope within a lower z-index */
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  margin-left: -20px;
  margin-top: -20px;
}
.theme-default-light .fc-event.fc-selected {
  z-index: 9999 !important;
  /* overcomes inline z-index */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.theme-default-light .fc-event.fc-selected:after {
  content: "";
  position: absolute;
  z-index: 1;
  /* same z-index as fc-bg, behind text */
  /* overcome the borders */
  top: -1px;
  right: -1px;
  bottom: -1px;
  left: -1px;
  /* darkening effect */
  background: #000;
  opacity: 0.25;
}
.theme-default-light .fc-event.fc-dragging.fc-selected {
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.3);
}
.theme-default-light .fc-event.fc-dragging:not(.fc-selected) {
  opacity: 0.75;
}
.theme-default-light .fc-h-event.fc-selected:before {
  content: "";
  position: absolute;
  z-index: 3;
  /* below resizers */
  top: -10px;
  bottom: -10px;
  left: 0;
  right: 0;
}
.theme-default-light .fc-ltr .fc-h-event.fc-not-start,
.theme-default-light .fc-rtl .fc-h-event.fc-not-end {
  margin-left: 0;
  border-left-width: 0;
  padding-left: 1px;
  /* replace the border with padding */
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.theme-default-light .fc-ltr .fc-h-event.fc-not-end,
.theme-default-light .fc-rtl .fc-h-event.fc-not-start {
  margin-right: 0;
  border-right-width: 0;
  padding-right: 1px;
  /* replace the border with padding */
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.theme-default-light .fc-ltr .fc-h-event .fc-start-resizer,
.theme-default-light .fc-rtl .fc-h-event .fc-end-resizer {
  cursor: w-resize;
  left: -1px;
  /* overcome border */
}
.theme-default-light .fc-ltr .fc-h-event .fc-end-resizer,
.theme-default-light .fc-rtl .fc-h-event .fc-start-resizer {
  cursor: e-resize;
  right: -1px;
  /* overcome border */
}
.theme-default-light .fc-h-event.fc-allow-mouse-resize .fc-resizer {
  width: 7px;
  top: -1px;
  /* overcome top border */
  bottom: -1px;
  /* overcome bottom border */
}
.theme-default-light .fc-h-event.fc-selected .fc-resizer {
  /* 8x8 little dot */
  border-radius: 4px;
  border-width: 1px;
  width: 6px;
  height: 6px;
  border-style: solid;
  border-color: inherit;
  background: #fff;
  /* vertically center */
  top: 50%;
  margin-top: -4px;
}
.theme-default-light .fc-ltr .fc-h-event.fc-selected .fc-start-resizer,
.theme-default-light .fc-rtl .fc-h-event.fc-selected .fc-end-resizer {
  margin-left: -4px;
  /* centers the 8x8 dot on the left edge */
}
.theme-default-light .fc-ltr .fc-h-event.fc-selected .fc-end-resizer,
.theme-default-light .fc-rtl .fc-h-event.fc-selected .fc-start-resizer {
  margin-right: -4px;
  /* centers the 8x8 dot on the right edge */
}
.theme-default-light .fc-day-grid-event {
  margin: 1px 2px 0;
  /* spacing between events and edges */
  padding: 0 1px;
}
.theme-default-light tr:first-child > td > .fc-day-grid-event {
  margin-top: 2px;
  /* a little bit more space before the first event */
}
.theme-default-light .fc-mirror-skeleton tr:first-child > td > .fc-day-grid-event {
  margin-top: 0;
  /* except for mirror skeleton */
}
.theme-default-light .fc-day-grid-event .fc-content {
  /* force events to be one-line tall */
  white-space: nowrap;
  overflow: hidden;
}
.theme-default-light .fc-day-grid-event .fc-time {
  font-weight: bold;
}
.theme-default-light .fc-ltr .fc-day-grid-event.fc-allow-mouse-resize .fc-start-resizer,
.theme-default-light .fc-rtl .fc-day-grid-event.fc-allow-mouse-resize .fc-end-resizer {
  margin-left: -2px;
  /* to the day cell's edge */
}
.theme-default-light .fc-ltr .fc-day-grid-event.fc-allow-mouse-resize .fc-end-resizer,
.theme-default-light .fc-rtl .fc-day-grid-event.fc-allow-mouse-resize .fc-start-resizer {
  margin-right: -2px;
  /* to the day cell's edge */
}
.theme-default-light a.fc-more {
  margin: 1px 3px;
  font-size: 0.85em;
  cursor: pointer;
  text-decoration: none;
}
.theme-default-light a.fc-more:hover {
  text-decoration: underline;
}
.theme-default-light .fc-limited {
  /* rows and cells that are hidden because of a "more" link */
  display: none;
}
.theme-default-light .fc-day-grid .fc-row {
  z-index: 1;
  /* make the "more" popover one higher than this */
}
.theme-default-light .fc-more-popover {
  z-index: 2;
  width: 220px;
}
.theme-default-light .fc-more-popover .fc-event-container {
  padding: 10px;
}
.theme-default-light .fc-now-indicator {
  position: absolute;
  border: 0 solid red;
}
.theme-default-light .fc-unselectable {
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.theme-default-light .fc-icon {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "MatchaIcons" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.theme-default-light .fc-icon-chevron-left:before {
  content: "\e9b1";
}
.theme-default-light .fc-icon-chevron-right:before {
  content: "\e9e0";
}
.theme-default-light .fc-icon-chevrons-left:before {
  content: "\e902";
}
.theme-default-light .fc-icon-chevrons-right:before {
  content: "\e903";
}
.theme-default-light .fc-icon-minus-square:before {
  content: "\e904";
}
.theme-default-light .fc-icon-plus-square:before {
  content: "\e905";
}
.theme-default-light .fc-icon-x:before {
  content: "\e906";
}
.theme-default-light .fc-icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  text-align: center;
}
.theme-default-light .fc-button {
  border-radius: 0;
  overflow: visible;
  text-transform: none;
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
.theme-default-light .fc-button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}
.theme-default-light .fc-button {
  -webkit-appearance: button;
}
.theme-default-light .fc-button:not(:disabled) {
  cursor: pointer;
}
.theme-default-light .fc-button::-moz-focus-inner {
  padding: 0;
  border-style: none;
}
.theme-default-light .fc-button {
  display: flex;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 0px solid transparent;
  padding: 8px;
  font-size: 24px;
  line-height: 24px;
  border-radius: 0.25em;
}
.theme-default-light .fc-button:hover {
  color: #212529;
  text-decoration: none;
}
.theme-default-light .fc-button:focus {
  outline: 0;
  box-shadow: 0 0 0 2px rgba(44, 62, 80, 0.25);
}
.theme-default-light .fc-button:disabled {
  opacity: 0.65;
}
.theme-default-light .fc-button .fc-icon {
  vertical-align: middle;
  font-size: 24px;
}
.theme-default-light .fc-button-group {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
}
.theme-default-light .fc-button-group > .fc-button {
  position: relative;
  flex: 1 1 auto;
}
.theme-default-light .fc-button-group > .fc-button:hover {
  z-index: 1;
}
.theme-default-light .fc-button-group > .fc-button:focus,
.theme-default-light .fc-button-group > .fc-button:active,
.theme-default-light .fc-button-group > .fc-button.fc-button-active {
  z-index: 1;
}
.theme-default-light .fc-button-group > .fc-button:not(:first-child) {
  margin-left: -1px;
}
.theme-default-light .fc-button-group > .fc-button:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.theme-default-light .fc-button-group > .fc-button:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.theme-default-light .fc-unthemed .fc-popover {
  border-width: 1px;
  border-style: solid;
}
.theme-default-light .fc-unthemed .fc-list-item:hover td {
  background-color: #f5f5f5;
}
.theme-default-light .fc-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.theme-default-light .fc-toolbar.fc-header-toolbar {
  margin-bottom: 16px;
}
.theme-default-light .fc-toolbar.fc-footer-toolbar {
  margin-top: 24px;
}
.theme-default-light .fc-toolbar > * > :not(:first-child) {
  margin-left: 8px;
}
.theme-default-light .fc-toolbar h2 {
  font-size: 16px;
  margin: 0;
}
.theme-default-light .fc-view-container {
  position: relative;
}
.theme-default-light .fc-view-container *,
.theme-default-light .fc-view-container *:before,
.theme-default-light .fc-view-container *:after {
  box-sizing: content-box;
}
.theme-default-light .fc-view,
.theme-default-light .fc-view > table {
  /* so dragged elements can be above the view's main element */
  position: relative;
  z-index: 1;
}
@media print {
  .theme-default-light {
    /* Global Event Restyling
    --------------------------------------------------------------------------------------------------*/
    /* Table & Day-Row Restyling
    --------------------------------------------------------------------------------------------------*/
    /* kill the overlaid, absolutely-positioned components */
    /* common... */
    /* don't force a min-height on rows (for DayGrid) */
    /* Undo month-view event limiting. Display all events and hide the "more" links
    --------------------------------------------------------------------------------------------------*/
    /* TimeGrid Restyling
    --------------------------------------------------------------------------------------------------*/
    /* undo the min-height 100% trick used to fill the container's height */
    /* don't display the side axis at all ("all-day" and time cells) */
    /* don't display the horizontal lines */
    /* let the container that holds the events be naturally positioned and create real height */
    /* in case there are no events, we still want some height */
    /* kill the horizontal spacing made by the event container. event margins will be done below */
    /* TimeGrid *Event* Restyling
    --------------------------------------------------------------------------------------------------*/
    /* naturally position events, vertically stacking them */
    /* for events that continue to a future day, give the bottom border back */
    /* indicate the event continues via "..." text */
    /* for events that are continuations from previous days, give the top border back */
    /* indicate the event is a continuation via "..." text */
    /* time */
    /* undo a previous declaration and let the time text span to a second line */
    /* hide the the time that is normally displayed... */
    /* ...replace it with a more verbose version (includes AM/PM) stored in an html attribute */
    /* Vertical Scroller & Containers
    --------------------------------------------------------------------------------------------------*/
    /* kill the scrollbars and allow natural height */
    /* kill the horizontal border/padding used to compensate for scrollbars */
    /* Button Controls
    --------------------------------------------------------------------------------------------------*/
  }
  .theme-default-light .fc {
    max-width: 100% !important;
  }
  .theme-default-light .fc-event {
    background: #fff !important;
    color: #000 !important;
    page-break-inside: avoid;
  }
  .theme-default-light .fc-event .fc-resizer {
    display: none;
  }
  .theme-default-light .fc th,
  .theme-default-light .fc td,
  .theme-default-light .fc hr,
  .theme-default-light .fc thead,
  .theme-default-light .fc tbody,
  .theme-default-light .fc-row {
    border-color: #ccc !important;
    background: #fff !important;
  }
  .theme-default-light .fc-bg,
  .theme-default-light .fc-bgevent-skeleton,
  .theme-default-light .fc-highlight-skeleton,
  .theme-default-light .fc-mirror-skeleton,
  .theme-default-light .fc-bgevent-container,
  .theme-default-light .fc-business-container,
  .theme-default-light .fc-highlight-container,
  .theme-default-light .fc-mirror-container {
    display: none;
  }
  .theme-default-light .fc tbody .fc-row {
    height: auto !important;
    /* undo height that JS set in distributeHeight */
    min-height: 0 !important;
    /* undo the min-height from each view's specific stylesheet */
  }
  .theme-default-light .fc tbody .fc-row .fc-content-skeleton {
    position: static;
    /* undo .fc-rigid */
    padding-bottom: 0 !important;
    /* use a more border-friendly method for this... */
  }
  .theme-default-light .fc tbody .fc-row .fc-content-skeleton tbody tr:last-child td {
    /* only works in newer browsers */
    padding-bottom: 1em;
    /* ...gives space within the skeleton. also ensures min height in a way */
  }
  .theme-default-light .fc tbody .fc-row .fc-content-skeleton table {
    /* provides a min-height for the row, but only effective for IE, which exaggerates this value,
    making it look more like 3em. for other browers, it will already be this tall */
    height: 1em;
  }
  .theme-default-light .fc-more-cell,
  .theme-default-light .fc-more {
    display: none !important;
  }
  .theme-default-light .fc tr.fc-limited {
    display: table-row !important;
  }
  .theme-default-light .fc td.fc-limited {
    display: table-cell !important;
  }
  .theme-default-light .fc-popover {
    display: none;
    /* never display the "more.." popover in print mode */
  }
  .theme-default-light .fc-time-grid {
    min-height: 0 !important;
  }
  .theme-default-light .fc-timeGrid-view .fc-axis {
    display: none;
  }
  .theme-default-light .fc-slats,
  .theme-default-light .fc-time-grid hr {
    /* this hr is used when height is underused and needs to be filled */
    display: none !important;
    /* important overrides inline declaration */
  }
  .theme-default-light .fc-time-grid .fc-content-skeleton {
    position: static;
  }
  .theme-default-light .fc-time-grid .fc-content-skeleton table {
    height: 4em;
  }
  .theme-default-light .fc-time-grid .fc-event-container {
    margin: 0 !important;
  }
  .theme-default-light .fc-time-grid .fc-event {
    position: static !important;
    margin: 3px 2px !important;
  }
  .theme-default-light .fc-time-grid .fc-event.fc-not-end {
    border-bottom-width: 1px !important;
  }
  .theme-default-light .fc-time-grid .fc-event.fc-not-end:after {
    content: "...";
  }
  .theme-default-light .fc-time-grid .fc-event.fc-not-start {
    border-top-width: 1px !important;
  }
  .theme-default-light .fc-time-grid .fc-event.fc-not-start:before {
    content: "...";
  }
  .theme-default-light .fc-time-grid .fc-event .fc-time {
    white-space: normal !important;
  }
  .theme-default-light .fc-time-grid .fc-event .fc-time span {
    display: none;
  }
  .theme-default-light .fc-time-grid .fc-event .fc-time:after {
    content: attr(data-full);
  }
  .theme-default-light .fc-scroller,
  .theme-default-light .fc-day-grid-container,
  .theme-default-light .fc-time-grid-container {
    /* */
    overflow: visible !important;
    height: auto !important;
  }
  .theme-default-light .fc-row {
    border: 0 !important;
    margin: 0 !important;
  }
  .theme-default-light .fc-button-group,
  .theme-default-light .fc button {
    display: none;
    /* don't display any button-related controls */
  }
}
.theme-default-light .fc-dayGridWeek-view .fc-content-skeleton,
.theme-default-light .fc-dayGridDay-view .fc-content-skeleton {
  /* there may be week numbers in these views, so no padding-top */
  padding-bottom: 1em;
  /* ensure a space at bottom of cell for user selecting/clicking */
}
.theme-default-light .fc-dayGrid-view .fc-body .fc-row {
  min-height: 4em;
  /* ensure that all rows are at least this tall */
}
.theme-default-light .fc-row.fc-rigid {
  overflow: hidden;
}
.theme-default-light .fc-row.fc-rigid .fc-content-skeleton {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.theme-default-light .fc-day-top.fc-other-month {
  opacity: 0.3;
}
.theme-default-light .fc-dayGrid-view .fc-week-number,
.theme-default-light .fc-dayGrid-view .fc-day-number {
  padding: 2px;
}
.theme-default-light .fc-dayGrid-view th.fc-week-number,
.theme-default-light .fc-dayGrid-view th.fc-day-number {
  padding: 0 2px;
  /* column headers can't have as much v space */
}
.theme-default-light .fc-ltr .fc-dayGrid-view .fc-day-top .fc-day-number {
  border-radius: 8px;
}
.theme-default-light .fc-rtl .fc-dayGrid-view .fc-day-top .fc-day-number {
  border-radius: 8px;
}
.theme-default-light .fc-ltr .fc-dayGrid-view .fc-day-top .fc-week-number {
  border-radius: 8px;
}
.theme-default-light .fc-rtl .fc-dayGrid-view .fc-day-top .fc-week-number {
  border-radius: 8px;
}
.theme-default-light .fc-dayGrid-view .fc-day-top .fc-week-number {
  min-width: 1.5em;
  text-align: center;
  background-color: #f2f2f2;
  color: #808080;
}
.theme-default-light .fc-dayGrid-view td.fc-week-number {
  text-align: center;
}
.theme-default-light .fc-dayGrid-view td.fc-week-number > * {
  /* work around the way we do column resizing and ensure a minimum width */
  display: inline-block;
  min-width: 1.25em;
}
.theme-default-light .cal-month-view .cal-header {
  text-align: center;
  font-weight: bolder;
}
.theme-default-light .cal-month-view .cal-header .cal-cell {
  padding: 5px 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  white-space: nowrap;
}
.theme-default-light .cal-month-view .cal-days {
  border: 1px solid;
  border-bottom: 0;
}
.theme-default-light .cal-month-view .cal-cell-top {
  min-height: 78px;
  flex: 1;
}
.theme-default-light .cal-month-view .cal-cell-row {
  -js-display: flex;
  display: flex;
}
.theme-default-light .cal-month-view .cal-cell {
  float: left;
  flex: 1;
  -js-display: flex;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.theme-default-light .cal-month-view .cal-day-cell {
  min-height: 100px;
}
@media all and (-ms-high-contrast: none) {
  .theme-default-light .cal-month-view .cal-day-cell {
    display: block;
  }
}
.theme-default-light .cal-month-view .cal-day-cell:not(:last-child) {
  border-right: 1px solid;
}
.theme-default-light .cal-month-view .cal-days .cal-cell-row {
  border-bottom: 1px solid;
}
.theme-default-light .cal-month-view .cal-day-badge {
  margin-top: 18px;
  margin-left: 10px;
  display: inline-block;
  min-width: 10px;
  padding: 3px 7px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  border-radius: 10px;
}
.theme-default-light .cal-month-view .cal-day-number {
  font-size: 1.2em;
  font-weight: 400;
  opacity: 0.5;
  margin-top: 15px;
  margin-right: 15px;
  float: right;
  margin-bottom: 10px;
}
.theme-default-light .cal-month-view .cal-events {
  flex: 1;
  align-items: flex-end;
  margin: 3px;
  line-height: 10px;
  -js-display: flex;
  display: flex;
  flex-wrap: wrap;
}
.theme-default-light .cal-month-view .cal-event {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  margin: 2px;
}
.theme-default-light .cal-month-view .cal-day-cell.cal-in-month.cal-has-events {
  cursor: pointer;
}
.theme-default-light .cal-month-view .cal-day-cell.cal-out-month .cal-day-number {
  opacity: 0.1;
  cursor: default;
}
.theme-default-light .cal-month-view .cal-day-cell.cal-today .cal-day-number {
  font-size: 1.9em;
}
.theme-default-light .cal-month-view .cal-open-day-events {
  padding: 15px;
}
.theme-default-light .cal-month-view .cal-open-day-events .cal-event {
  position: relative;
  top: 2px;
}
.theme-default-light .cal-month-view .cal-out-month .cal-day-badge,
.theme-default-light .cal-month-view .cal-out-month .cal-event {
  opacity: 0.3;
}
.theme-default-light .cal-month-view .cal-draggable {
  cursor: move;
}
.theme-default-light .cal-month-view .cal-drag-active * {
  pointer-events: none;
}
.theme-default-light .cal-month-view .cal-event-title {
  cursor: pointer;
}
.theme-default-light .cal-month-view .cal-event-title:hover {
  text-decoration: underline;
}
.theme-default-light .cal-month-view {
  background-color: #fff;
}
.theme-default-light .cal-month-view .cal-cell-row:hover {
  background-color: #fafafa;
}
.theme-default-light .cal-month-view .cal-cell-row .cal-cell:hover,
.theme-default-light .cal-month-view .cal-cell.cal-has-events.cal-open {
  background-color: #ededed;
}
.theme-default-light .cal-month-view .cal-days {
  border-color: #e1e1e1;
}
.theme-default-light .cal-month-view .cal-day-cell:not(:last-child) {
  border-right-color: #e1e1e1;
}
.theme-default-light .cal-month-view .cal-days .cal-cell-row {
  border-bottom-color: #e1e1e1;
}
.theme-default-light .cal-month-view .cal-day-badge {
  background-color: #b94a48;
  color: #fff;
}
.theme-default-light .cal-month-view .cal-event {
  background-color: #1e90ff;
  border-color: #d1e8ff;
  color: #fff;
}
.theme-default-light .cal-month-view .cal-day-cell.cal-weekend .cal-day-number {
  color: #8b0000;
}
.theme-default-light .cal-month-view .cal-day-cell.cal-today {
  background-color: #e8fde7;
}
.theme-default-light .cal-month-view .cal-day-cell.cal-drag-over {
  background-color: #e0e0e0 !important;
}
.theme-default-light .cal-month-view .cal-open-day-events {
  color: #fff;
  background-color: #555;
  box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.5);
}
.theme-default-light .cal-week-view {
  /* stylelint-disable-next-line selector-type-no-unknown */
}
.theme-default-light .cal-week-view * {
  box-sizing: border-box;
}
.theme-default-light .cal-week-view .cal-day-headers {
  -js-display: flex;
  display: flex;
  padding-left: 70px;
  border: 1px solid;
}
.theme-default-light .cal-week-view .cal-day-headers .cal-header {
  flex: 1;
  text-align: center;
  padding: 5px;
}
.theme-default-light .cal-week-view .cal-day-headers .cal-header:not(:last-child) {
  border-right: 1px solid;
}
.theme-default-light .cal-week-view .cal-day-headers .cal-header:first-child {
  border-left: 1px solid;
}
.theme-default-light .cal-week-view .cal-day-headers span {
  font-weight: 400;
  opacity: 0.5;
}
.theme-default-light .cal-week-view .cal-day-column {
  flex-grow: 1;
  border-left: solid 1px;
}
.theme-default-light .cal-week-view .cal-event {
  font-size: 12px;
  border: 1px solid;
}
.theme-default-light .cal-week-view .cal-time-label-column {
  width: 70px;
  height: 100%;
}
.theme-default-light .cal-week-view .cal-all-day-events {
  border: solid 1px;
  border-top: 0;
  border-bottom-width: 3px;
  padding-top: 3px;
  position: relative;
}
.theme-default-light .cal-week-view .cal-all-day-events .cal-day-columns {
  height: 100%;
  width: 100%;
  -js-display: flex;
  display: flex;
  position: absolute;
  top: 0;
  z-index: 0;
}
.theme-default-light .cal-week-view .cal-all-day-events .cal-events-row {
  position: relative;
  height: 31px;
  margin-left: 70px;
}
.theme-default-light .cal-week-view .cal-all-day-events .cal-event-container {
  display: inline-block;
  position: absolute;
}
.theme-default-light .cal-week-view .cal-all-day-events .cal-event-container.resize-active {
  z-index: 1;
  pointer-events: none;
}
.theme-default-light .cal-week-view .cal-all-day-events .cal-event {
  padding: 0 5px;
  margin-left: 2px;
  margin-right: 2px;
  height: 28px;
  line-height: 28px;
}
.theme-default-light .cal-week-view .cal-all-day-events .cal-starts-within-week .cal-event {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.theme-default-light .cal-week-view .cal-all-day-events .cal-ends-within-week .cal-event {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
.theme-default-light .cal-week-view .cal-all-day-events .cal-time-label-column {
  -js-display: flex;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.theme-default-light .cal-week-view .cal-all-day-events .cal-resize-handle {
  width: 6px;
  height: 100%;
  cursor: col-resize;
  position: absolute;
  top: 0;
}
.theme-default-light .cal-week-view .cal-all-day-events .cal-resize-handle.cal-resize-handle-after-end {
  right: 0;
}
.theme-default-light .cal-week-view .cal-event,
.theme-default-light .cal-week-view .cal-header {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.theme-default-light .cal-week-view .cal-drag-active {
  pointer-events: none;
  z-index: 1;
}
.theme-default-light .cal-week-view .cal-drag-active * {
  pointer-events: none;
}
.theme-default-light .cal-week-view .cal-time-events {
  position: relative;
  border: solid 1px;
  border-top: 0;
  -js-display: flex;
  display: flex;
}
.theme-default-light .cal-week-view .cal-time-events .cal-day-columns {
  -js-display: flex;
  display: flex;
  flex-grow: 1;
}
.theme-default-light .cal-week-view .cal-time-events .cal-day-column {
  position: relative;
}
.theme-default-light .cal-week-view .cal-time-events .cal-event-container {
  position: absolute;
  z-index: 1;
}
.theme-default-light .cal-week-view .cal-time-events .cal-event {
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  margin: 1px;
  padding: 0 5px;
  line-height: 25px;
}
.theme-default-light .cal-week-view .cal-time-events .cal-resize-handle {
  width: 100%;
  height: 4px;
  cursor: row-resize;
  position: absolute;
}
.theme-default-light .cal-week-view .cal-time-events .cal-resize-handle.cal-resize-handle-after-end {
  bottom: 0;
}
.theme-default-light .cal-week-view .cal-hour-segment {
  position: relative;
}
.theme-default-light .cal-week-view .cal-hour-segment::after {
  content: " ";
}
.theme-default-light .cal-week-view .cal-event-container:not(.cal-draggable) {
  cursor: pointer;
}
.theme-default-light .cal-week-view .cal-draggable {
  cursor: move;
}
.theme-default-light .cal-week-view mwl-calendar-week-view-hour-segment,
.theme-default-light .cal-week-view .cal-hour-segment {
  display: block;
}
.theme-default-light .cal-week-view .cal-hour:not(:last-child) .cal-hour-segment,
.theme-default-light .cal-week-view .cal-hour:last-child :not(:last-child) .cal-hour-segment {
  border-bottom: thin dashed;
}
.theme-default-light .cal-week-view .cal-time {
  font-weight: bold;
  padding-top: 5px;
  width: 70px;
  text-align: center;
}
.theme-default-light .cal-week-view .cal-hour-segment.cal-after-hour-start .cal-time {
  display: none;
}
.theme-default-light .cal-week-view .cal-starts-within-day .cal-event {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.theme-default-light .cal-week-view .cal-ends-within-day .cal-event {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.theme-default-light .cal-week-view {
  background-color: #fff;
}
.theme-default-light .cal-week-view .cal-day-headers {
  border-color: #e1e1e1;
}
.theme-default-light .cal-week-view .cal-day-headers .cal-header:not(:last-child) {
  border-right-color: #e1e1e1;
}
.theme-default-light .cal-week-view .cal-day-headers .cal-header:first-child {
  border-left-color: #e1e1e1;
}
.theme-default-light .cal-week-view .cal-day-headers .cal-header:hover,
.theme-default-light .cal-week-view .cal-day-headers .cal-drag-over {
  background-color: #ededed;
}
.theme-default-light .cal-week-view .cal-day-column {
  border-left-color: #e1e1e1;
}
.theme-default-light .cal-week-view .cal-event {
  background-color: #d1e8ff;
  border-color: #1e90ff;
  color: #1e90ff;
}
.theme-default-light .cal-week-view .cal-all-day-events {
  border-color: #e1e1e1;
}
.theme-default-light .cal-week-view .cal-header.cal-today {
  background-color: #e8fde7;
}
.theme-default-light .cal-week-view .cal-header.cal-weekend span {
  color: #8b0000;
}
.theme-default-light .cal-week-view .cal-time-events {
  border-color: #e1e1e1;
}
.theme-default-light .cal-week-view .cal-time-events .cal-day-columns:not(.cal-resize-active) .cal-hour-segment:hover {
  background-color: #ededed;
}
.theme-default-light .cal-week-view .cal-hour-odd {
  background-color: #fafafa;
}
.theme-default-light .cal-week-view .cal-drag-over .cal-hour-segment {
  background-color: #ededed;
}
.theme-default-light .cal-week-view .cal-hour:not(:last-child) .cal-hour-segment,
.theme-default-light .cal-week-view .cal-hour:last-child :not(:last-child) .cal-hour-segment {
  border-bottom-color: #e1e1e1;
}
.theme-default-light .cal-day-view {
  /* stylelint-disable-next-line selector-type-no-unknown */
}
.theme-default-light .cal-day-view * {
  box-sizing: border-box;
}
.theme-default-light .cal-day-view .cal-hour-rows {
  width: 100%;
  border: solid 1px;
  overflow-x: auto;
  position: relative;
}
.theme-default-light .cal-day-view mwl-calendar-day-view-hour-segment,
.theme-default-light .cal-day-view .cal-hour-segment {
  display: block;
}
.theme-default-light .cal-day-view .cal-hour-segment::after {
  content: " ";
}
.theme-default-light .cal-day-view .cal-hour:not(:last-child) .cal-hour-segment,
.theme-default-light .cal-day-view .cal-hour:last-child :not(:last-child) .cal-hour-segment {
  border-bottom: thin dashed;
}
.theme-default-light .cal-day-view .cal-time {
  font-weight: bold;
  width: 70px;
  height: 100%;
  -js-display: flex;
  display: flex;
  justify-content: center;
  align-items: center;
}
.theme-default-light .cal-day-view .cal-hour-segment.cal-after-hour-start .cal-time {
  display: none;
}
.theme-default-light .cal-day-view .cal-drag-active .cal-hour-segment {
  pointer-events: none;
}
.theme-default-light .cal-day-view .cal-event-container {
  position: absolute;
  cursor: pointer;
}
.theme-default-light .cal-day-view .cal-event-container.resize-active {
  z-index: 1;
  pointer-events: none;
}
.theme-default-light .cal-day-view .cal-event {
  padding: 5px;
  font-size: 12px;
  border: 1px solid;
  box-sizing: border-box;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  height: 100%;
}
.theme-default-light .cal-day-view .cal-all-day-events > * {
  cursor: pointer;
}
.theme-default-light .cal-day-view .cal-draggable {
  cursor: move;
}
.theme-default-light .cal-day-view .cal-starts-within-day .cal-event {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.theme-default-light .cal-day-view .cal-ends-within-day .cal-event {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.theme-default-light .cal-day-view .cal-drag-active {
  z-index: 1;
}
.theme-default-light .cal-day-view .cal-drag-active * {
  pointer-events: none;
}
.theme-default-light .cal-day-view .cal-resize-handle {
  width: 100%;
  height: 4px;
  cursor: row-resize;
  position: absolute;
}
.theme-default-light .cal-day-view .cal-resize-handle.cal-resize-handle-after-end {
  bottom: 0;
}
.theme-default-light .cal-day-view {
  background-color: #fff;
}
.theme-default-light .cal-day-view .cal-hour-rows {
  border-color: #e1e1e1;
}
.theme-default-light .cal-day-view .cal-hour:nth-child(odd) {
  background-color: #fafafa;
}
.theme-default-light .cal-day-view .cal-hour:not(:last-child) .cal-hour-segment,
.theme-default-light .cal-day-view .cal-hour:last-child :not(:last-child) .cal-hour-segment {
  border-bottom-color: #e1e1e1;
}
.theme-default-light .cal-day-view .cal-hour-segment:hover,
.theme-default-light .cal-day-view .cal-drag-over .cal-hour-segment {
  background-color: #ededed;
}
.theme-default-light .cal-day-view .cal-event {
  background-color: #d1e8ff;
  border-color: #1e90ff;
  color: #1e90ff;
}
.theme-default-light .cal-tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  font-style: normal;
  font-weight: normal;
  letter-spacing: normal;
  line-break: auto;
  line-height: 1.5;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  font-size: 11px;
  word-wrap: break-word;
  opacity: 0.9;
}
.theme-default-light .cal-tooltip.cal-tooltip-top {
  padding: 5px 0;
  margin-top: -3px;
}
.theme-default-light .cal-tooltip.cal-tooltip-top .cal-tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0;
}
.theme-default-light .cal-tooltip.cal-tooltip-right {
  padding: 0 5px;
  margin-left: 3px;
}
.theme-default-light .cal-tooltip.cal-tooltip-right .cal-tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
}
.theme-default-light .cal-tooltip.cal-tooltip-bottom {
  padding: 5px 0;
  margin-top: 3px;
}
.theme-default-light .cal-tooltip.cal-tooltip-bottom .cal-tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
}
.theme-default-light .cal-tooltip.cal-tooltip-left {
  padding: 0 5px;
  margin-left: -3px;
}
.theme-default-light .cal-tooltip.cal-tooltip-left .cal-tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
}
.theme-default-light .cal-tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  text-align: center;
  border-radius: 0.25rem;
}
.theme-default-light .cal-tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.theme-default-light .cal-tooltip.cal-tooltip-top .cal-tooltip-arrow {
  border-top-color: #000;
}
.theme-default-light .cal-tooltip.cal-tooltip-right .cal-tooltip-arrow {
  border-right-color: #000;
}
.theme-default-light .cal-tooltip.cal-tooltip-bottom .cal-tooltip-arrow {
  border-bottom-color: #000;
}
.theme-default-light .cal-tooltip.cal-tooltip-left .cal-tooltip-arrow {
  border-left-color: #000;
}
.theme-default-light .cal-tooltip-inner {
  color: #fff;
  background-color: #000;
}
.theme-default-light .cal-month-view {
  background-color: transparent;
}
.theme-default-light .cal-month-view .cal-header {
  text-align: center;
  font-family: "CircularStd";
  font-weight: 700;
}
.theme-default-light .cal-month-view .cal-header .cal-cell {
  padding: 5px 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  white-space: nowrap;
}
.theme-default-light .cal-month-view .cal-days {
  border: 1px solid;
  border-bottom: 0;
}
.theme-default-light .cal-month-view .cal-cell-top {
  min-height: 78px;
  flex: 1;
}
.theme-default-light .cal-month-view .cal-cell-row {
  -js-display: flex;
  display: flex;
}
.theme-default-light .cal-month-view .cal-cell {
  float: left;
  flex: 1;
  -js-display: flex;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.theme-default-light .cal-month-view .cal-day-cell {
  min-height: 100px;
}
.theme-default-light .cal-month-view .cal-day-cell:not(:last-child) {
  border-right: 1px solid;
}
.theme-default-light .cal-month-view .cal-days .cal-cell-row {
  border-bottom: 1px solid;
}
.theme-default-light .cal-month-view .cal-day-badge {
  margin-top: 18px;
  margin-left: 10px;
  display: inline-block;
  min-width: 10px;
  padding: 3px 7px;
  font-size: 12px;
  font-family: "CircularStd";
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  border-radius: 10px;
}
.theme-default-light .cal-month-view .cal-day-number {
  color: #21282C;
  opacity: 1;
  font-size: 1.2em;
  margin-top: 15px;
  margin-right: 15px;
  float: right;
  margin-bottom: 10px;
}
.theme-default-light .cal-month-view .cal-events {
  flex: 1;
  align-items: flex-end;
  margin: 3px;
  line-height: 10px;
  -js-display: flex;
  display: flex;
  flex-wrap: wrap;
}
.theme-default-light .cal-month-view .cal-event {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  margin: 2px;
}
.theme-default-light .cal-month-view .cal-day-cell.cal-in-month.cal-has-events {
  cursor: pointer;
}
.theme-default-light .cal-month-view .cal-day-cell.cal-out-month .cal-day-number {
  opacity: 0.1;
  cursor: default;
}
.theme-default-light .cal-month-view .cal-day-cell.cal-today .cal-day-number {
  font-size: 24px;
}
.theme-default-light .cal-month-view .cal-open-day-events {
  padding: 16px;
}
.theme-default-light .cal-month-view .cal-open-day-events .cal-event {
  position: relative;
  top: 2px;
}
.theme-default-light .cal-month-view .cal-out-month .cal-day-badge,
.theme-default-light .cal-month-view .cal-out-month .cal-event {
  opacity: 0.3;
}
.theme-default-light .cal-month-view .cal-draggable {
  cursor: move;
}
.theme-default-light .cal-month-view .cal-drag-active * {
  pointer-events: none;
}
.theme-default-light .cal-month-view .cal-event-title {
  cursor: pointer;
}
.theme-default-light .cal-month-view .cal-event-title:hover {
  text-decoration: underline;
}
.theme-default-light .cal-month-view .cal-cell-row:hover {
  background-color: #E2E7E9;
}
.theme-default-light .cal-month-view .cal-cell-row .cal-cell:hover,
.theme-default-light .cal-month-view .cal-cell.cal-has-events.cal-open {
  background-color: #E2E7E9;
}
.theme-default-light .cal-month-view .cal-days {
  border-color: #E2E7E9;
}
.theme-default-light .cal-month-view .cal-day-cell:not(:last-child) {
  border-right-color: #E2E7E9;
}
.theme-default-light .cal-month-view .cal-days .cal-cell-row {
  border-bottom-color: #E2E7E9;
}
.theme-default-light .cal-month-view .cal-day-badge {
  color: #E2E7E9;
}
.theme-default-light .cal-month-view .cal-event {
  border-color: #E2E7E9;
  color: #fff;
}
.theme-default-light .cal-month-view .cal-day-cell.cal-today {
  background-color: #E2E7E9;
}
.theme-default-light .cal-month-view .cal-day-cell.cal-drag-over {
  background-color: #e0e0e0 !important;
}
.theme-default-light .cal-month-view .cal-open-day-events {
  color: #21282C;
  background-color: #E2E7E9;
  box-shadow: none;
}
@media all and (-ms-high-contrast: none) {
  .theme-default-light .cal-month-view .cal-day-cell {
    display: block;
  }
}
.theme-default-light .cal-week-view {
  /* stylelint-disable-next-line selector-type-no-unknown */
}
.theme-default-light .cal-week-view * {
  box-sizing: border-box;
}
.theme-default-light .cal-week-view .cal-day-headers {
  -js-display: flex;
  display: flex;
  padding-left: 70px;
  border: 1px solid;
}
.theme-default-light .cal-week-view .cal-day-headers .cal-header {
  flex: 1;
  text-align: center;
  padding: 5px;
}
.theme-default-light .cal-week-view .cal-day-headers .cal-header:not(:last-child) {
  border-right: 1px solid;
}
.theme-default-light .cal-week-view .cal-day-headers .cal-header:first-child {
  border-left: 1px solid;
}
.theme-default-light .cal-week-view .cal-day-headers span {
  opacity: 0.5;
}
.theme-default-light .cal-week-view .cal-day-column {
  flex-grow: 1;
  border-left: solid 1px;
}
.theme-default-light .cal-week-view .cal-event {
  font-size: 12px;
  border: 1px solid;
}
.theme-default-light .cal-week-view .cal-time-label-column {
  width: 70px;
  height: 100%;
}
.theme-default-light .cal-week-view .cal-all-day-events {
  border: solid 1px;
  border-top: 0;
  border-bottom-width: 3px;
  padding-top: 3px;
  position: relative;
}
.theme-default-light .cal-week-view .cal-all-day-events .cal-day-columns {
  height: 100%;
  width: 100%;
  -js-display: flex;
  display: flex;
  position: absolute;
  top: 0;
  z-index: 0;
}
.theme-default-light .cal-week-view .cal-all-day-events .cal-events-row {
  position: relative;
  height: 31px;
  margin-left: 70px;
}
.theme-default-light .cal-week-view .cal-all-day-events .cal-event-container {
  display: inline-block;
  position: absolute;
}
.theme-default-light .cal-week-view .cal-all-day-events .cal-event-container.resize-active {
  z-index: 1;
  pointer-events: none;
}
.theme-default-light .cal-week-view .cal-all-day-events .cal-event {
  padding: 0 5px;
  margin-left: 2px;
  margin-right: 2px;
  height: 28px;
  line-height: 28px;
}
.theme-default-light .cal-week-view .cal-all-day-events .cal-starts-within-week .cal-event {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.theme-default-light .cal-week-view .cal-all-day-events .cal-ends-within-week .cal-event {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
.theme-default-light .cal-week-view .cal-all-day-events .cal-time-label-column {
  -js-display: flex;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.theme-default-light .cal-week-view .cal-all-day-events .cal-resize-handle {
  width: 6px;
  height: 100%;
  cursor: col-resize;
  position: absolute;
  top: 0;
}
.theme-default-light .cal-week-view .cal-all-day-events .cal-resize-handle.cal-resize-handle-after-end {
  right: 0;
}
.theme-default-light .cal-week-view .cal-event,
.theme-default-light .cal-week-view .cal-header {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.theme-default-light .cal-week-view .cal-drag-active {
  pointer-events: none;
  z-index: 1;
}
.theme-default-light .cal-week-view .cal-drag-active * {
  pointer-events: none;
}
.theme-default-light .cal-week-view .cal-time-events {
  position: relative;
  border: solid 1px;
  border-top: 0;
  -js-display: flex;
  display: flex;
}
.theme-default-light .cal-week-view .cal-time-events .cal-day-columns {
  -js-display: flex;
  display: flex;
  flex-grow: 1;
}
.theme-default-light .cal-week-view .cal-time-events .cal-day-column {
  position: relative;
}
.theme-default-light .cal-week-view .cal-time-events .cal-event-container {
  position: absolute;
  z-index: 1;
}
.theme-default-light .cal-week-view .cal-time-events .cal-event {
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  margin: 1px;
  padding: 0 5px;
  line-height: 25px;
}
.theme-default-light .cal-week-view .cal-time-events .cal-resize-handle {
  width: 100%;
  height: 4px;
  cursor: row-resize;
  position: absolute;
}
.theme-default-light .cal-week-view .cal-time-events .cal-resize-handle.cal-resize-handle-after-end {
  bottom: 0;
}
.theme-default-light .cal-week-view .cal-hour-segment {
  position: relative;
}
.theme-default-light .cal-week-view .cal-hour-segment::after {
  content: " ";
}
.theme-default-light .cal-week-view .cal-event-container:not(.cal-draggable) {
  cursor: pointer;
}
.theme-default-light .cal-week-view .cal-draggable {
  cursor: move;
}
.theme-default-light .cal-week-view mwl-calendar-week-view-hour-segment,
.theme-default-light .cal-week-view .cal-hour-segment {
  display: block;
}
.theme-default-light .cal-week-view .cal-hour:not(:last-child) .cal-hour-segment,
.theme-default-light .cal-week-view .cal-hour:last-child :not(:last-child) .cal-hour-segment {
  border-bottom: thin dashed;
}
.theme-default-light .cal-week-view .cal-time {
  font-family: "CircularStd";
  font-weight: 700;
  padding-top: 5px;
  width: 70px;
  text-align: center;
}
.theme-default-light .cal-week-view .cal-hour-segment.cal-after-hour-start .cal-time {
  display: none;
}
.theme-default-light .cal-week-view .cal-starts-within-day .cal-event {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.theme-default-light .cal-week-view .cal-ends-within-day .cal-event {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.theme-default-light .cal-week-view {
  background-color: #fff;
}
.theme-default-light .cal-week-view .cal-day-headers {
  border-color: #e1e1e1;
}
.theme-default-light .cal-week-view .cal-day-headers .cal-header:not(:last-child) {
  border-right-color: #e1e1e1;
}
.theme-default-light .cal-week-view .cal-day-headers .cal-header:first-child {
  border-left-color: #e1e1e1;
}
.theme-default-light .cal-week-view .cal-day-headers .cal-header:hover,
.theme-default-light .cal-week-view .cal-day-headers .cal-drag-over {
  background-color: #ededed;
}
.theme-default-light .cal-week-view .cal-day-column {
  border-left-color: #e1e1e1;
}
.theme-default-light .cal-week-view .cal-all-day-events {
  border-color: #e1e1e1;
}
.theme-default-light .cal-week-view .cal-header.cal-today {
  background-color: #e8fde7;
}
.theme-default-light .cal-week-view .cal-header.cal-weekend span {
  color: #8b0000;
}
.theme-default-light .cal-week-view .cal-time-events {
  border-color: #e1e1e1;
}
.theme-default-light .cal-week-view .cal-time-events .cal-day-columns:not(.cal-resize-active) .cal-hour-segment:hover {
  background-color: #ededed;
}
.theme-default-light .cal-week-view .cal-hour-odd {
  background-color: #fafafa;
}
.theme-default-light .cal-week-view .cal-drag-over .cal-hour-segment {
  background-color: #ededed;
}
.theme-default-light .cal-week-view .cal-hour:not(:last-child) .cal-hour-segment,
.theme-default-light .cal-week-view .cal-hour:last-child :not(:last-child) .cal-hour-segment {
  border-bottom-color: #e1e1e1;
}
.theme-default-light .cal-day-view {
  /* stylelint-disable-next-line selector-type-no-unknown */
}
.theme-default-light .cal-day-view * {
  box-sizing: border-box;
}
.theme-default-light .cal-day-view .cal-hour-rows {
  width: 100%;
  border: solid 1px;
  overflow-x: auto;
  position: relative;
}
.theme-default-light .cal-day-view mwl-calendar-day-view-hour-segment,
.theme-default-light .cal-day-view .cal-hour-segment {
  display: block;
}
.theme-default-light .cal-day-view .cal-hour-segment::after {
  content: " ";
}
.theme-default-light .cal-day-view .cal-hour:not(:last-child) .cal-hour-segment,
.theme-default-light .cal-day-view .cal-hour:last-child :not(:last-child) .cal-hour-segment {
  border-bottom: thin dashed;
}
.theme-default-light .cal-day-view .cal-time {
  font-family: "CircularStd";
  font-weight: 700;
  width: 70px;
  height: 100%;
  -js-display: flex;
  display: flex;
  justify-content: center;
  align-items: center;
}
.theme-default-light .cal-day-view .cal-hour-segment.cal-after-hour-start .cal-time {
  display: none;
}
.theme-default-light .cal-day-view .cal-drag-active .cal-hour-segment {
  pointer-events: none;
}
.theme-default-light .cal-day-view .cal-event-container {
  position: absolute;
  cursor: pointer;
}
.theme-default-light .cal-day-view .cal-event-container.resize-active {
  z-index: 1;
  pointer-events: none;
}
.theme-default-light .cal-day-view .cal-event {
  padding: 5px;
  font-size: 12px;
  border: 1px solid;
  box-sizing: border-box;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  height: 100%;
}
.theme-default-light .cal-day-view .cal-all-day-events > * {
  cursor: pointer;
}
.theme-default-light .cal-day-view .cal-draggable {
  cursor: move;
}
.theme-default-light .cal-day-view .cal-starts-within-day .cal-event {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.theme-default-light .cal-day-view .cal-ends-within-day .cal-event {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.theme-default-light .cal-day-view .cal-drag-active {
  z-index: 1;
}
.theme-default-light .cal-day-view .cal-drag-active * {
  pointer-events: none;
}
.theme-default-light .cal-day-view .cal-resize-handle {
  width: 100%;
  height: 4px;
  cursor: row-resize;
  position: absolute;
}
.theme-default-light .cal-day-view .cal-resize-handle.cal-resize-handle-after-end {
  bottom: 0;
}
.theme-default-light .cal-day-view {
  background-color: #fff;
}
.theme-default-light .cal-day-view .cal-hour-rows {
  border-color: #e1e1e1;
}
.theme-default-light .cal-day-view .cal-hour:nth-child(odd) {
  background-color: #fafafa;
}
.theme-default-light .cal-day-view .cal-hour:not(:last-child) .cal-hour-segment,
.theme-default-light .cal-day-view .cal-hour:last-child :not(:last-child) .cal-hour-segment {
  border-bottom-color: #e1e1e1;
}
.theme-default-light .cal-day-view .cal-hour-segment:hover,
.theme-default-light .cal-day-view .cal-drag-over .cal-hour-segment {
  background-color: #ededed;
}
.theme-default-light .cal-tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  font-style: normal;
  font-weight: normal;
  letter-spacing: normal;
  line-break: auto;
  line-height: 1.5;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  font-size: 11px;
  word-wrap: break-word;
  opacity: 0.9;
}
.theme-default-light .cal-tooltip.cal-tooltip-top {
  padding: 5px 0;
  margin-top: -3px;
}
.theme-default-light .cal-tooltip.cal-tooltip-top .cal-tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0;
}
.theme-default-light .cal-tooltip.cal-tooltip-right {
  padding: 0 5px;
  margin-left: 3px;
}
.theme-default-light .cal-tooltip.cal-tooltip-right .cal-tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
}
.theme-default-light .cal-tooltip.cal-tooltip-bottom {
  padding: 5px 0;
  margin-top: 3px;
}
.theme-default-light .cal-tooltip.cal-tooltip-bottom .cal-tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
}
.theme-default-light .cal-tooltip.cal-tooltip-left {
  padding: 0 5px;
  margin-left: -3px;
}
.theme-default-light .cal-tooltip.cal-tooltip-left .cal-tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
}
.theme-default-light .cal-tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  text-align: center;
  border-radius: 0.25rem;
}
.theme-default-light .cal-tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.theme-default-light .cal-tooltip.cal-tooltip-top .cal-tooltip-arrow {
  border-top-color: #000;
}
.theme-default-light .cal-tooltip.cal-tooltip-right .cal-tooltip-arrow {
  border-right-color: #000;
}
.theme-default-light .cal-tooltip.cal-tooltip-bottom .cal-tooltip-arrow {
  border-bottom-color: #000;
}
.theme-default-light .cal-tooltip.cal-tooltip-left .cal-tooltip-arrow {
  border-left-color: #000;
}
.theme-default-light .cal-tooltip-inner {
  color: #fff;
  background-color: #000;
}
.theme-default-light .matcha-card google-chart,
.theme-default-light .matcha-card-flat google-chart,
.theme-default-light .matcha-section google-chart {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 100% !important;
  height: 100%;
}
.theme-default-light .matcha-card google-chart *,
.theme-default-light .matcha-card-flat google-chart *,
.theme-default-light .matcha-section google-chart * {
  max-width: 100% !important;
}
.theme-default-light #ngxcharts ngx-charts-chart svg {
  height: 400px;
  width: 400px;
}
.theme-default-light .chart-legend {
  background-color: transparent;
  padding: 0;
  width: 200px !important;
  min-width: 200px;
  max-width: 300px;
  display: flex;
  right: 0;
}
.theme-default-light .chart-legend div {
  width: 100% !important;
}
.theme-default-light .chart-legend .legend-labels {
  background: transparent !important;
}
.theme-default-light .chart-legend .legend-labels .active .legend-label-text {
  color: #7E8E95;
}
.theme-default-light .chart-legend .legend-label-color {
  border-radius: 12px !important;
}
.theme-default-light .chart-legend .legend-label-text {
  font-weight: normal;
  font-size: 16px !important;
  line-height: 20px;
  color: #21282C;
}
@media (min-width: 1024px) {
  .theme-default-light .chart-legend {
    margin: 0 24px 0 0;
    border-radius: 8px;
    position: absolute;
    background-color: rgba(242, 243, 248, 0.5);
    box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.033), 0px 2px 2px 0px rgba(0, 0, 0, 0.033), 0px 2px 2px 0px rgba(0, 0, 0, 0.033);
  }
}
.theme-default-light .pie-chart .pie-label {
  fill: #7E8E95;
  font-size: 16px !important;
  line-height: 20px;
  padding: 8px;
}
.theme-default-light .ng5-slider.animate .ng5-slider-pointer {
  transition: all 50ms linear !important;
}
.theme-default-light .ng5-slider .ng5-slider-bubble {
  bottom: 20px;
  padding: 0;
  margin: 0px auto;
  background: #FFFFFF;
  color: #7E8E95;
  transition: all 50ms linear !important;
}
.theme-default-light .ng5-slider .ng5-slider-bar {
  background-color: #E2E7E9;
}
.theme-default-light .ng5-slider .ng5-slider-pointer,
.theme-default-light .ng5-slider .ng5-slider-selection {
  background-color: #1e5bda;
}
.theme-default-light .ng5-slider .ng5-slider-pointer:after {
  width: 16px;
  height: 16px;
  position: absolute;
  top: 8px;
  left: 8px;
  border-radius: 8px;
  background-color: #FFFFFF;
}
.theme-default-light .ng5-slider .ng5-slider-pointer:active:after {
  background-color: #FFFFFF;
}
.theme-default-light .ng5-slider .ng5-slider-pointer.ng5-slider-active:after {
  width: 16px;
  height: 16px;
  position: absolute;
  top: 8px;
  left: 8px;
  border-radius: 8px;
  background: #F2F3F8;
  background-color: #F2F3F8;
}
.theme-default-light ngx-material-timepicker-container {
  z-index: 10000;
}
.theme-default-light ngx-material-timepicker-container .timepicker__header,
.theme-default-light ngx-material-timepicker-container .clock-face__number > span.active {
  background-color: #1e5bda !important;
}
.theme-default-light ngx-material-timepicker-container .timepicker-dial__control {
  color: rgba(226, 231, 233, 0.5) !important;
}
.theme-default-light ngx-material-timepicker-container .clock-face__number > span.active,
.theme-default-light ngx-material-timepicker-container .dial__control,
.theme-default-light ngx-material-timepicker-container .timepicker-dial__item_active,
.theme-default-light ngx-material-timepicker-container .timepicker-dial__time {
  color: #E2E7E9 !important;
}
.theme-default-light ngx-material-timepicker-container .timepicker-button {
  color: #1e5bda !important;
}
.theme-default-light ngx-material-timepicker-container .timepicker__body,
.theme-default-light ngx-material-timepicker-container .timepicker__actions {
  background-color: #FFFFFF !important;
}
.theme-default-light ngx-material-timepicker-container .clock-face__clock-hand,
.theme-default-light ngx-material-timepicker-container .clock-face__clock-hand_minute {
  background-color: #1e5bda !important;
}
.theme-default-light ngx-material-timepicker-container .clock-face__clock-hand_minute::before {
  border-color: #1e5bda !important;
  background-color: #FFFFFF !important;
}
.theme-default-light ngx-material-timepicker-container .clock-face {
  background-color: #F2F3F8 !important;
}
.theme-default-light a {
  color: #1e5bda;
}
.theme-default-light pre > code {
  color: #1e5bda;
}
.theme-default-light code:not(.highlight) {
  background-color: #FFFFFF;
}
.theme-default-light .changelog .entry {
  background-color: #FFFFFF;
}
.theme-default-light .text-boxed {
  background-color: rgba(0, 0, 0, 0.12);
  color: rgba(0, 0, 0, 0.54);
}
.theme-default-light .text-primary {
  color: #2B363B !important;
}
.theme-default-light .text-warn {
  color: #d31818 !important;
}
.theme-default-light .text-label {
  color: #7E8E95 !important;
}
.theme-default-light .text-placeholder {
  color: #8A9EA8 !important;
}
.theme-default-light .text-basic {
  color: #21282C !important;
}
.theme-default-light .matcha-message-box,
.theme-default-light .matcha-msg-box,
.theme-default-light .message-box {
  background-color: rgba(43, 54, 59, 0.2);
  border-left-color: #2B363B;
  color: #21282C;
}
.theme-default-light .matcha-message-box.error, .theme-default-light .matcha-message-box.warning, .theme-default-light .matcha-message-box.success, .theme-default-light .matcha-message-box.info, .theme-default-light .matcha-message-box--error, .theme-default-light .matcha-message-box--warning, .theme-default-light .matcha-message-box--success, .theme-default-light .matcha-message-box--info,
.theme-default-light .matcha-msg-box.error,
.theme-default-light .matcha-msg-box.warning,
.theme-default-light .matcha-msg-box.success,
.theme-default-light .matcha-msg-box.info,
.theme-default-light .matcha-msg-box--error,
.theme-default-light .matcha-msg-box--warning,
.theme-default-light .matcha-msg-box--success,
.theme-default-light .matcha-msg-box--info,
.theme-default-light .message-box.error,
.theme-default-light .message-box.warning,
.theme-default-light .message-box.success,
.theme-default-light .message-box.info,
.theme-default-light .message-box--error,
.theme-default-light .message-box--warning,
.theme-default-light .message-box--success,
.theme-default-light .message-box--info {
  color: #21282C;
}
.theme-default-light {
  color: #21282C;
  background: #F2F3F8;
}
.theme-default-light matcha-card[color=red][tint]:not([tint=false]),
.theme-default-light .matcha-card[color=red][tint]:not([tint=false]),
.theme-default-light .matcha-card-flat[color=red][tint]:not([tint=false]) {
  background: rgba(229, 58, 58, 0.2);
  color: #e53a3a;
}
.theme-default-light matcha-card[color=red][outline]:not([outline=false]), .theme-default-light matcha-card[color=red][link]:not([link=false]), .theme-default-light matcha-card[color=red][basic]:not([basic=false]),
.theme-default-light .matcha-card[color=red][outline]:not([outline=false]),
.theme-default-light .matcha-card[color=red][link]:not([link=false]),
.theme-default-light .matcha-card[color=red][basic]:not([basic=false]),
.theme-default-light .matcha-card-flat[color=red][outline]:not([outline=false]),
.theme-default-light .matcha-card-flat[color=red][link]:not([link=false]),
.theme-default-light .matcha-card-flat[color=red][basic]:not([basic=false]) {
  color: #e53a3a;
}
.theme-default-light matcha-card[color=red],
.theme-default-light .matcha-card[color=red],
.theme-default-light .matcha-card-flat[color=red] {
  background: #e53a3a;
  color: white;
}
.theme-default-light matcha-card[color=red][alpha]:not([alpha=false]),
.theme-default-light .matcha-card[color=red][alpha]:not([alpha=false]),
.theme-default-light .matcha-card-flat[color=red][alpha]:not([alpha=false]) {
  background: rgba(229, 58, 58, 0.2);
  color: #21282C;
}
.theme-default-light matcha-card[color=pink][tint]:not([tint=false]),
.theme-default-light .matcha-card[color=pink][tint]:not([tint=false]),
.theme-default-light .matcha-card-flat[color=pink][tint]:not([tint=false]) {
  background: rgba(233, 30, 99, 0.2);
  color: #e91e63;
}
.theme-default-light matcha-card[color=pink][outline]:not([outline=false]), .theme-default-light matcha-card[color=pink][link]:not([link=false]), .theme-default-light matcha-card[color=pink][basic]:not([basic=false]),
.theme-default-light .matcha-card[color=pink][outline]:not([outline=false]),
.theme-default-light .matcha-card[color=pink][link]:not([link=false]),
.theme-default-light .matcha-card[color=pink][basic]:not([basic=false]),
.theme-default-light .matcha-card-flat[color=pink][outline]:not([outline=false]),
.theme-default-light .matcha-card-flat[color=pink][link]:not([link=false]),
.theme-default-light .matcha-card-flat[color=pink][basic]:not([basic=false]) {
  color: #e91e63;
}
.theme-default-light matcha-card[color=pink],
.theme-default-light .matcha-card[color=pink],
.theme-default-light .matcha-card-flat[color=pink] {
  background: #e91e63;
  color: white;
}
.theme-default-light matcha-card[color=pink][alpha]:not([alpha=false]),
.theme-default-light .matcha-card[color=pink][alpha]:not([alpha=false]),
.theme-default-light .matcha-card-flat[color=pink][alpha]:not([alpha=false]) {
  background: rgba(233, 30, 99, 0.2);
  color: #21282C;
}
.theme-default-light matcha-card[color=purple][tint]:not([tint=false]),
.theme-default-light .matcha-card[color=purple][tint]:not([tint=false]),
.theme-default-light .matcha-card-flat[color=purple][tint]:not([tint=false]) {
  background: rgba(156, 39, 176, 0.2);
  color: #9c27b0;
}
.theme-default-light matcha-card[color=purple][outline]:not([outline=false]), .theme-default-light matcha-card[color=purple][link]:not([link=false]), .theme-default-light matcha-card[color=purple][basic]:not([basic=false]),
.theme-default-light .matcha-card[color=purple][outline]:not([outline=false]),
.theme-default-light .matcha-card[color=purple][link]:not([link=false]),
.theme-default-light .matcha-card[color=purple][basic]:not([basic=false]),
.theme-default-light .matcha-card-flat[color=purple][outline]:not([outline=false]),
.theme-default-light .matcha-card-flat[color=purple][link]:not([link=false]),
.theme-default-light .matcha-card-flat[color=purple][basic]:not([basic=false]) {
  color: #9c27b0;
}
.theme-default-light matcha-card[color=purple],
.theme-default-light .matcha-card[color=purple],
.theme-default-light .matcha-card-flat[color=purple] {
  background: #9c27b0;
  color: white;
}
.theme-default-light matcha-card[color=purple][alpha]:not([alpha=false]),
.theme-default-light .matcha-card[color=purple][alpha]:not([alpha=false]),
.theme-default-light .matcha-card-flat[color=purple][alpha]:not([alpha=false]) {
  background: rgba(156, 39, 176, 0.2);
  color: #21282C;
}
.theme-default-light matcha-card[color=deep-purple][tint]:not([tint=false]),
.theme-default-light .matcha-card[color=deep-purple][tint]:not([tint=false]),
.theme-default-light .matcha-card-flat[color=deep-purple][tint]:not([tint=false]) {
  background: rgba(103, 58, 183, 0.2);
  color: #673ab7;
}
.theme-default-light matcha-card[color=deep-purple][outline]:not([outline=false]), .theme-default-light matcha-card[color=deep-purple][link]:not([link=false]), .theme-default-light matcha-card[color=deep-purple][basic]:not([basic=false]),
.theme-default-light .matcha-card[color=deep-purple][outline]:not([outline=false]),
.theme-default-light .matcha-card[color=deep-purple][link]:not([link=false]),
.theme-default-light .matcha-card[color=deep-purple][basic]:not([basic=false]),
.theme-default-light .matcha-card-flat[color=deep-purple][outline]:not([outline=false]),
.theme-default-light .matcha-card-flat[color=deep-purple][link]:not([link=false]),
.theme-default-light .matcha-card-flat[color=deep-purple][basic]:not([basic=false]) {
  color: #673ab7;
}
.theme-default-light matcha-card[color=deep-purple],
.theme-default-light .matcha-card[color=deep-purple],
.theme-default-light .matcha-card-flat[color=deep-purple] {
  background: #673ab7;
  color: white;
}
.theme-default-light matcha-card[color=deep-purple][alpha]:not([alpha=false]),
.theme-default-light .matcha-card[color=deep-purple][alpha]:not([alpha=false]),
.theme-default-light .matcha-card-flat[color=deep-purple][alpha]:not([alpha=false]) {
  background: rgba(103, 58, 183, 0.2);
  color: #21282C;
}
.theme-default-light matcha-card[color=indigo][tint]:not([tint=false]),
.theme-default-light .matcha-card[color=indigo][tint]:not([tint=false]),
.theme-default-light .matcha-card-flat[color=indigo][tint]:not([tint=false]) {
  background: rgba(63, 81, 181, 0.2);
  color: #3f51b5;
}
.theme-default-light matcha-card[color=indigo][outline]:not([outline=false]), .theme-default-light matcha-card[color=indigo][link]:not([link=false]), .theme-default-light matcha-card[color=indigo][basic]:not([basic=false]),
.theme-default-light .matcha-card[color=indigo][outline]:not([outline=false]),
.theme-default-light .matcha-card[color=indigo][link]:not([link=false]),
.theme-default-light .matcha-card[color=indigo][basic]:not([basic=false]),
.theme-default-light .matcha-card-flat[color=indigo][outline]:not([outline=false]),
.theme-default-light .matcha-card-flat[color=indigo][link]:not([link=false]),
.theme-default-light .matcha-card-flat[color=indigo][basic]:not([basic=false]) {
  color: #3f51b5;
}
.theme-default-light matcha-card[color=indigo],
.theme-default-light .matcha-card[color=indigo],
.theme-default-light .matcha-card-flat[color=indigo] {
  background: #3f51b5;
  color: white;
}
.theme-default-light matcha-card[color=indigo][alpha]:not([alpha=false]),
.theme-default-light .matcha-card[color=indigo][alpha]:not([alpha=false]),
.theme-default-light .matcha-card-flat[color=indigo][alpha]:not([alpha=false]) {
  background: rgba(63, 81, 181, 0.2);
  color: #21282C;
}
.theme-default-light matcha-card[color=blue][tint]:not([tint=false]),
.theme-default-light .matcha-card[color=blue][tint]:not([tint=false]),
.theme-default-light .matcha-card-flat[color=blue][tint]:not([tint=false]) {
  background: rgba(30, 91, 218, 0.2);
  color: #1e5bda;
}
.theme-default-light matcha-card[color=blue][outline]:not([outline=false]), .theme-default-light matcha-card[color=blue][link]:not([link=false]), .theme-default-light matcha-card[color=blue][basic]:not([basic=false]),
.theme-default-light .matcha-card[color=blue][outline]:not([outline=false]),
.theme-default-light .matcha-card[color=blue][link]:not([link=false]),
.theme-default-light .matcha-card[color=blue][basic]:not([basic=false]),
.theme-default-light .matcha-card-flat[color=blue][outline]:not([outline=false]),
.theme-default-light .matcha-card-flat[color=blue][link]:not([link=false]),
.theme-default-light .matcha-card-flat[color=blue][basic]:not([basic=false]) {
  color: #1e5bda;
}
.theme-default-light matcha-card[color=blue],
.theme-default-light .matcha-card[color=blue],
.theme-default-light .matcha-card-flat[color=blue] {
  background: #1e5bda;
  color: white;
}
.theme-default-light matcha-card[color=blue][alpha]:not([alpha=false]),
.theme-default-light .matcha-card[color=blue][alpha]:not([alpha=false]),
.theme-default-light .matcha-card-flat[color=blue][alpha]:not([alpha=false]) {
  background: rgba(30, 91, 218, 0.2);
  color: #21282C;
}
.theme-default-light matcha-card[color=light-blue][tint]:not([tint=false]),
.theme-default-light .matcha-card[color=light-blue][tint]:not([tint=false]),
.theme-default-light .matcha-card-flat[color=light-blue][tint]:not([tint=false]) {
  background: rgba(3, 169, 244, 0.2);
  color: #03a9f4;
}
.theme-default-light matcha-card[color=light-blue][outline]:not([outline=false]), .theme-default-light matcha-card[color=light-blue][link]:not([link=false]), .theme-default-light matcha-card[color=light-blue][basic]:not([basic=false]),
.theme-default-light .matcha-card[color=light-blue][outline]:not([outline=false]),
.theme-default-light .matcha-card[color=light-blue][link]:not([link=false]),
.theme-default-light .matcha-card[color=light-blue][basic]:not([basic=false]),
.theme-default-light .matcha-card-flat[color=light-blue][outline]:not([outline=false]),
.theme-default-light .matcha-card-flat[color=light-blue][link]:not([link=false]),
.theme-default-light .matcha-card-flat[color=light-blue][basic]:not([basic=false]) {
  color: #03a9f4;
}
.theme-default-light matcha-card[color=light-blue],
.theme-default-light .matcha-card[color=light-blue],
.theme-default-light .matcha-card-flat[color=light-blue] {
  background: #03a9f4;
  color: white;
}
.theme-default-light matcha-card[color=light-blue][alpha]:not([alpha=false]),
.theme-default-light .matcha-card[color=light-blue][alpha]:not([alpha=false]),
.theme-default-light .matcha-card-flat[color=light-blue][alpha]:not([alpha=false]) {
  background: rgba(3, 169, 244, 0.2);
  color: #21282C;
}
.theme-default-light matcha-card[color=cyan][tint]:not([tint=false]),
.theme-default-light .matcha-card[color=cyan][tint]:not([tint=false]),
.theme-default-light .matcha-card-flat[color=cyan][tint]:not([tint=false]) {
  background: rgba(0, 188, 212, 0.2);
  color: #00bcd4;
}
.theme-default-light matcha-card[color=cyan][outline]:not([outline=false]), .theme-default-light matcha-card[color=cyan][link]:not([link=false]), .theme-default-light matcha-card[color=cyan][basic]:not([basic=false]),
.theme-default-light .matcha-card[color=cyan][outline]:not([outline=false]),
.theme-default-light .matcha-card[color=cyan][link]:not([link=false]),
.theme-default-light .matcha-card[color=cyan][basic]:not([basic=false]),
.theme-default-light .matcha-card-flat[color=cyan][outline]:not([outline=false]),
.theme-default-light .matcha-card-flat[color=cyan][link]:not([link=false]),
.theme-default-light .matcha-card-flat[color=cyan][basic]:not([basic=false]) {
  color: #00bcd4;
}
.theme-default-light matcha-card[color=cyan],
.theme-default-light .matcha-card[color=cyan],
.theme-default-light .matcha-card-flat[color=cyan] {
  background: #00bcd4;
  color: white;
}
.theme-default-light matcha-card[color=cyan][alpha]:not([alpha=false]),
.theme-default-light .matcha-card[color=cyan][alpha]:not([alpha=false]),
.theme-default-light .matcha-card-flat[color=cyan][alpha]:not([alpha=false]) {
  background: rgba(0, 188, 212, 0.2);
  color: #21282C;
}
.theme-default-light matcha-card[color=teal][tint]:not([tint=false]),
.theme-default-light .matcha-card[color=teal][tint]:not([tint=false]),
.theme-default-light .matcha-card-flat[color=teal][tint]:not([tint=false]) {
  background: rgba(0, 150, 136, 0.2);
  color: #009688;
}
.theme-default-light matcha-card[color=teal][outline]:not([outline=false]), .theme-default-light matcha-card[color=teal][link]:not([link=false]), .theme-default-light matcha-card[color=teal][basic]:not([basic=false]),
.theme-default-light .matcha-card[color=teal][outline]:not([outline=false]),
.theme-default-light .matcha-card[color=teal][link]:not([link=false]),
.theme-default-light .matcha-card[color=teal][basic]:not([basic=false]),
.theme-default-light .matcha-card-flat[color=teal][outline]:not([outline=false]),
.theme-default-light .matcha-card-flat[color=teal][link]:not([link=false]),
.theme-default-light .matcha-card-flat[color=teal][basic]:not([basic=false]) {
  color: #009688;
}
.theme-default-light matcha-card[color=teal],
.theme-default-light .matcha-card[color=teal],
.theme-default-light .matcha-card-flat[color=teal] {
  background: #009688;
  color: white;
}
.theme-default-light matcha-card[color=teal][alpha]:not([alpha=false]),
.theme-default-light .matcha-card[color=teal][alpha]:not([alpha=false]),
.theme-default-light .matcha-card-flat[color=teal][alpha]:not([alpha=false]) {
  background: rgba(0, 150, 136, 0.2);
  color: #21282C;
}
.theme-default-light matcha-card[color=green][tint]:not([tint=false]),
.theme-default-light .matcha-card[color=green][tint]:not([tint=false]),
.theme-default-light .matcha-card-flat[color=green][tint]:not([tint=false]) {
  background: rgba(17, 144, 70, 0.2);
  color: #119046;
}
.theme-default-light matcha-card[color=green][outline]:not([outline=false]), .theme-default-light matcha-card[color=green][link]:not([link=false]), .theme-default-light matcha-card[color=green][basic]:not([basic=false]),
.theme-default-light .matcha-card[color=green][outline]:not([outline=false]),
.theme-default-light .matcha-card[color=green][link]:not([link=false]),
.theme-default-light .matcha-card[color=green][basic]:not([basic=false]),
.theme-default-light .matcha-card-flat[color=green][outline]:not([outline=false]),
.theme-default-light .matcha-card-flat[color=green][link]:not([link=false]),
.theme-default-light .matcha-card-flat[color=green][basic]:not([basic=false]) {
  color: #119046;
}
.theme-default-light matcha-card[color=green],
.theme-default-light .matcha-card[color=green],
.theme-default-light .matcha-card-flat[color=green] {
  background: #119046;
  color: white;
}
.theme-default-light matcha-card[color=green][alpha]:not([alpha=false]),
.theme-default-light .matcha-card[color=green][alpha]:not([alpha=false]),
.theme-default-light .matcha-card-flat[color=green][alpha]:not([alpha=false]) {
  background: rgba(17, 144, 70, 0.2);
  color: #21282C;
}
.theme-default-light matcha-card[color=light-green][tint]:not([tint=false]),
.theme-default-light .matcha-card[color=light-green][tint]:not([tint=false]),
.theme-default-light .matcha-card-flat[color=light-green][tint]:not([tint=false]) {
  background: rgba(110, 218, 44, 0.2);
  color: #6EDA2C;
}
.theme-default-light matcha-card[color=light-green][outline]:not([outline=false]), .theme-default-light matcha-card[color=light-green][link]:not([link=false]), .theme-default-light matcha-card[color=light-green][basic]:not([basic=false]),
.theme-default-light .matcha-card[color=light-green][outline]:not([outline=false]),
.theme-default-light .matcha-card[color=light-green][link]:not([link=false]),
.theme-default-light .matcha-card[color=light-green][basic]:not([basic=false]),
.theme-default-light .matcha-card-flat[color=light-green][outline]:not([outline=false]),
.theme-default-light .matcha-card-flat[color=light-green][link]:not([link=false]),
.theme-default-light .matcha-card-flat[color=light-green][basic]:not([basic=false]) {
  color: #6EDA2C;
}
.theme-default-light matcha-card[color=light-green],
.theme-default-light .matcha-card[color=light-green],
.theme-default-light .matcha-card-flat[color=light-green] {
  background: #6EDA2C;
  color: rgba(0, 0, 0, 0.87);
}
.theme-default-light matcha-card[color=light-green][alpha]:not([alpha=false]),
.theme-default-light .matcha-card[color=light-green][alpha]:not([alpha=false]),
.theme-default-light .matcha-card-flat[color=light-green][alpha]:not([alpha=false]) {
  background: rgba(110, 218, 44, 0.2);
  color: #21282C;
}
.theme-default-light matcha-card[color=lime][tint]:not([tint=false]),
.theme-default-light .matcha-card[color=lime][tint]:not([tint=false]),
.theme-default-light .matcha-card-flat[color=lime][tint]:not([tint=false]) {
  background: rgba(134, 189, 0, 0.2);
  color: #86bd00;
}
.theme-default-light matcha-card[color=lime][outline]:not([outline=false]), .theme-default-light matcha-card[color=lime][link]:not([link=false]), .theme-default-light matcha-card[color=lime][basic]:not([basic=false]),
.theme-default-light .matcha-card[color=lime][outline]:not([outline=false]),
.theme-default-light .matcha-card[color=lime][link]:not([link=false]),
.theme-default-light .matcha-card[color=lime][basic]:not([basic=false]),
.theme-default-light .matcha-card-flat[color=lime][outline]:not([outline=false]),
.theme-default-light .matcha-card-flat[color=lime][link]:not([link=false]),
.theme-default-light .matcha-card-flat[color=lime][basic]:not([basic=false]) {
  color: #86bd00;
}
.theme-default-light matcha-card[color=lime],
.theme-default-light .matcha-card[color=lime],
.theme-default-light .matcha-card-flat[color=lime] {
  background: #86bd00;
  color: white;
}
.theme-default-light matcha-card[color=lime][alpha]:not([alpha=false]),
.theme-default-light .matcha-card[color=lime][alpha]:not([alpha=false]),
.theme-default-light .matcha-card-flat[color=lime][alpha]:not([alpha=false]) {
  background: rgba(134, 189, 0, 0.2);
  color: #21282C;
}
.theme-default-light matcha-card[color=yellow][tint]:not([tint=false]),
.theme-default-light .matcha-card[color=yellow][tint]:not([tint=false]),
.theme-default-light .matcha-card-flat[color=yellow][tint]:not([tint=false]) {
  background: rgba(232, 195, 0, 0.2);
  color: #e8c300;
}
.theme-default-light matcha-card[color=yellow][outline]:not([outline=false]), .theme-default-light matcha-card[color=yellow][link]:not([link=false]), .theme-default-light matcha-card[color=yellow][basic]:not([basic=false]),
.theme-default-light .matcha-card[color=yellow][outline]:not([outline=false]),
.theme-default-light .matcha-card[color=yellow][link]:not([link=false]),
.theme-default-light .matcha-card[color=yellow][basic]:not([basic=false]),
.theme-default-light .matcha-card-flat[color=yellow][outline]:not([outline=false]),
.theme-default-light .matcha-card-flat[color=yellow][link]:not([link=false]),
.theme-default-light .matcha-card-flat[color=yellow][basic]:not([basic=false]) {
  color: #e8c300;
}
.theme-default-light matcha-card[color=yellow],
.theme-default-light .matcha-card[color=yellow],
.theme-default-light .matcha-card-flat[color=yellow] {
  background: #e8c300;
  color: rgba(0, 0, 0, 0.87);
}
.theme-default-light matcha-card[color=yellow][alpha]:not([alpha=false]),
.theme-default-light .matcha-card[color=yellow][alpha]:not([alpha=false]),
.theme-default-light .matcha-card-flat[color=yellow][alpha]:not([alpha=false]) {
  background: rgba(232, 195, 0, 0.2);
  color: #21282C;
}
.theme-default-light matcha-card[color=amber][tint]:not([tint=false]),
.theme-default-light .matcha-card[color=amber][tint]:not([tint=false]),
.theme-default-light .matcha-card-flat[color=amber][tint]:not([tint=false]) {
  background: rgba(250, 166, 26, 0.2);
  color: #faa61a;
}
.theme-default-light matcha-card[color=amber][outline]:not([outline=false]), .theme-default-light matcha-card[color=amber][link]:not([link=false]), .theme-default-light matcha-card[color=amber][basic]:not([basic=false]),
.theme-default-light .matcha-card[color=amber][outline]:not([outline=false]),
.theme-default-light .matcha-card[color=amber][link]:not([link=false]),
.theme-default-light .matcha-card[color=amber][basic]:not([basic=false]),
.theme-default-light .matcha-card-flat[color=amber][outline]:not([outline=false]),
.theme-default-light .matcha-card-flat[color=amber][link]:not([link=false]),
.theme-default-light .matcha-card-flat[color=amber][basic]:not([basic=false]) {
  color: #faa61a;
}
.theme-default-light matcha-card[color=amber],
.theme-default-light .matcha-card[color=amber],
.theme-default-light .matcha-card-flat[color=amber] {
  background: #faa61a;
  color: rgba(0, 0, 0, 0.87);
}
.theme-default-light matcha-card[color=amber][alpha]:not([alpha=false]),
.theme-default-light .matcha-card[color=amber][alpha]:not([alpha=false]),
.theme-default-light .matcha-card-flat[color=amber][alpha]:not([alpha=false]) {
  background: rgba(250, 166, 26, 0.2);
  color: #21282C;
}
.theme-default-light matcha-card[color=orange][tint]:not([tint=false]),
.theme-default-light .matcha-card[color=orange][tint]:not([tint=false]),
.theme-default-light .matcha-card-flat[color=orange][tint]:not([tint=false]) {
  background: rgba(247, 120, 20, 0.2);
  color: #f77814;
}
.theme-default-light matcha-card[color=orange][outline]:not([outline=false]), .theme-default-light matcha-card[color=orange][link]:not([link=false]), .theme-default-light matcha-card[color=orange][basic]:not([basic=false]),
.theme-default-light .matcha-card[color=orange][outline]:not([outline=false]),
.theme-default-light .matcha-card[color=orange][link]:not([link=false]),
.theme-default-light .matcha-card[color=orange][basic]:not([basic=false]),
.theme-default-light .matcha-card-flat[color=orange][outline]:not([outline=false]),
.theme-default-light .matcha-card-flat[color=orange][link]:not([link=false]),
.theme-default-light .matcha-card-flat[color=orange][basic]:not([basic=false]) {
  color: #f77814;
}
.theme-default-light matcha-card[color=orange],
.theme-default-light .matcha-card[color=orange],
.theme-default-light .matcha-card-flat[color=orange] {
  background: #f77814;
  color: rgba(0, 0, 0, 0.87);
}
.theme-default-light matcha-card[color=orange][alpha]:not([alpha=false]),
.theme-default-light .matcha-card[color=orange][alpha]:not([alpha=false]),
.theme-default-light .matcha-card-flat[color=orange][alpha]:not([alpha=false]) {
  background: rgba(247, 120, 20, 0.2);
  color: #21282C;
}
.theme-default-light matcha-card[color=deep-orange][tint]:not([tint=false]),
.theme-default-light .matcha-card[color=deep-orange][tint]:not([tint=false]),
.theme-default-light .matcha-card-flat[color=deep-orange][tint]:not([tint=false]) {
  background: rgba(255, 87, 34, 0.2);
  color: #ff5722;
}
.theme-default-light matcha-card[color=deep-orange][outline]:not([outline=false]), .theme-default-light matcha-card[color=deep-orange][link]:not([link=false]), .theme-default-light matcha-card[color=deep-orange][basic]:not([basic=false]),
.theme-default-light .matcha-card[color=deep-orange][outline]:not([outline=false]),
.theme-default-light .matcha-card[color=deep-orange][link]:not([link=false]),
.theme-default-light .matcha-card[color=deep-orange][basic]:not([basic=false]),
.theme-default-light .matcha-card-flat[color=deep-orange][outline]:not([outline=false]),
.theme-default-light .matcha-card-flat[color=deep-orange][link]:not([link=false]),
.theme-default-light .matcha-card-flat[color=deep-orange][basic]:not([basic=false]) {
  color: #ff5722;
}
.theme-default-light matcha-card[color=deep-orange],
.theme-default-light .matcha-card[color=deep-orange],
.theme-default-light .matcha-card-flat[color=deep-orange] {
  background: #ff5722;
  color: white;
}
.theme-default-light matcha-card[color=deep-orange][alpha]:not([alpha=false]),
.theme-default-light .matcha-card[color=deep-orange][alpha]:not([alpha=false]),
.theme-default-light .matcha-card-flat[color=deep-orange][alpha]:not([alpha=false]) {
  background: rgba(255, 87, 34, 0.2);
  color: #21282C;
}
.theme-default-light matcha-card[color=brown][tint]:not([tint=false]),
.theme-default-light .matcha-card[color=brown][tint]:not([tint=false]),
.theme-default-light .matcha-card-flat[color=brown][tint]:not([tint=false]) {
  background: rgba(121, 85, 72, 0.2);
  color: #795548;
}
.theme-default-light matcha-card[color=brown][outline]:not([outline=false]), .theme-default-light matcha-card[color=brown][link]:not([link=false]), .theme-default-light matcha-card[color=brown][basic]:not([basic=false]),
.theme-default-light .matcha-card[color=brown][outline]:not([outline=false]),
.theme-default-light .matcha-card[color=brown][link]:not([link=false]),
.theme-default-light .matcha-card[color=brown][basic]:not([basic=false]),
.theme-default-light .matcha-card-flat[color=brown][outline]:not([outline=false]),
.theme-default-light .matcha-card-flat[color=brown][link]:not([link=false]),
.theme-default-light .matcha-card-flat[color=brown][basic]:not([basic=false]) {
  color: #795548;
}
.theme-default-light matcha-card[color=brown],
.theme-default-light .matcha-card[color=brown],
.theme-default-light .matcha-card-flat[color=brown] {
  background: #795548;
  color: white;
}
.theme-default-light matcha-card[color=brown][alpha]:not([alpha=false]),
.theme-default-light .matcha-card[color=brown][alpha]:not([alpha=false]),
.theme-default-light .matcha-card-flat[color=brown][alpha]:not([alpha=false]) {
  background: rgba(121, 85, 72, 0.2);
  color: #21282C;
}
.theme-default-light matcha-card[color=grey][tint]:not([tint=false]),
.theme-default-light .matcha-card[color=grey][tint]:not([tint=false]),
.theme-default-light .matcha-card-flat[color=grey][tint]:not([tint=false]) {
  background: rgba(145, 160, 170, 0.2);
  color: #91A0AA;
}
.theme-default-light matcha-card[color=grey][outline]:not([outline=false]), .theme-default-light matcha-card[color=grey][link]:not([link=false]), .theme-default-light matcha-card[color=grey][basic]:not([basic=false]),
.theme-default-light .matcha-card[color=grey][outline]:not([outline=false]),
.theme-default-light .matcha-card[color=grey][link]:not([link=false]),
.theme-default-light .matcha-card[color=grey][basic]:not([basic=false]),
.theme-default-light .matcha-card-flat[color=grey][outline]:not([outline=false]),
.theme-default-light .matcha-card-flat[color=grey][link]:not([link=false]),
.theme-default-light .matcha-card-flat[color=grey][basic]:not([basic=false]) {
  color: #91A0AA;
}
.theme-default-light matcha-card[color=grey],
.theme-default-light .matcha-card[color=grey],
.theme-default-light .matcha-card-flat[color=grey] {
  background: #91A0AA;
  color: white;
}
.theme-default-light matcha-card[color=grey][alpha]:not([alpha=false]),
.theme-default-light .matcha-card[color=grey][alpha]:not([alpha=false]),
.theme-default-light .matcha-card-flat[color=grey][alpha]:not([alpha=false]) {
  background: rgba(145, 160, 170, 0.2);
  color: #21282C;
}
.theme-default-light matcha-card[color=blue-grey][tint]:not([tint=false]),
.theme-default-light .matcha-card[color=blue-grey][tint]:not([tint=false]),
.theme-default-light .matcha-card-flat[color=blue-grey][tint]:not([tint=false]) {
  background: rgba(126, 142, 149, 0.2);
  color: #7E8E95;
}
.theme-default-light matcha-card[color=blue-grey][outline]:not([outline=false]), .theme-default-light matcha-card[color=blue-grey][link]:not([link=false]), .theme-default-light matcha-card[color=blue-grey][basic]:not([basic=false]),
.theme-default-light .matcha-card[color=blue-grey][outline]:not([outline=false]),
.theme-default-light .matcha-card[color=blue-grey][link]:not([link=false]),
.theme-default-light .matcha-card[color=blue-grey][basic]:not([basic=false]),
.theme-default-light .matcha-card-flat[color=blue-grey][outline]:not([outline=false]),
.theme-default-light .matcha-card-flat[color=blue-grey][link]:not([link=false]),
.theme-default-light .matcha-card-flat[color=blue-grey][basic]:not([basic=false]) {
  color: #7E8E95;
}
.theme-default-light matcha-card[color=blue-grey],
.theme-default-light .matcha-card[color=blue-grey],
.theme-default-light .matcha-card-flat[color=blue-grey] {
  background: #7E8E95;
  color: white;
}
.theme-default-light matcha-card[color=blue-grey][alpha]:not([alpha=false]),
.theme-default-light .matcha-card[color=blue-grey][alpha]:not([alpha=false]),
.theme-default-light .matcha-card-flat[color=blue-grey][alpha]:not([alpha=false]) {
  background: rgba(126, 142, 149, 0.2);
  color: #21282C;
}
.theme-default-light matcha-card[color=primary][tint]:not([tint=false]),
.theme-default-light .matcha-card[color=primary][tint]:not([tint=false]),
.theme-default-light .matcha-card-flat[color=primary][tint]:not([tint=false]) {
  background: rgba(43, 54, 59, 0.2);
  color: #2B363B;
}
.theme-default-light matcha-card[color=primary][outline]:not([outline=false]), .theme-default-light matcha-card[color=primary][link]:not([link=false]), .theme-default-light matcha-card[color=primary][basic]:not([basic=false]),
.theme-default-light .matcha-card[color=primary][outline]:not([outline=false]),
.theme-default-light .matcha-card[color=primary][link]:not([link=false]),
.theme-default-light .matcha-card[color=primary][basic]:not([basic=false]),
.theme-default-light .matcha-card-flat[color=primary][outline]:not([outline=false]),
.theme-default-light .matcha-card-flat[color=primary][link]:not([link=false]),
.theme-default-light .matcha-card-flat[color=primary][basic]:not([basic=false]) {
  color: #2B363B;
}
.theme-default-light matcha-card[color=primary],
.theme-default-light .matcha-card[color=primary],
.theme-default-light .matcha-card-flat[color=primary] {
  background: #2B363B;
  color: white;
}
.theme-default-light matcha-card[color=primary][alpha]:not([alpha=false]),
.theme-default-light .matcha-card[color=primary][alpha]:not([alpha=false]),
.theme-default-light .matcha-card-flat[color=primary][alpha]:not([alpha=false]) {
  background: rgba(43, 54, 59, 0.2);
  color: #21282C;
}
.theme-default-light matcha-card[color=accent][tint]:not([tint=false]),
.theme-default-light .matcha-card[color=accent][tint]:not([tint=false]),
.theme-default-light .matcha-card-flat[color=accent][tint]:not([tint=false]) {
  background: rgba(30, 91, 218, 0.2);
  color: #1e5bda;
}
.theme-default-light matcha-card[color=accent][outline]:not([outline=false]), .theme-default-light matcha-card[color=accent][link]:not([link=false]), .theme-default-light matcha-card[color=accent][basic]:not([basic=false]),
.theme-default-light .matcha-card[color=accent][outline]:not([outline=false]),
.theme-default-light .matcha-card[color=accent][link]:not([link=false]),
.theme-default-light .matcha-card[color=accent][basic]:not([basic=false]),
.theme-default-light .matcha-card-flat[color=accent][outline]:not([outline=false]),
.theme-default-light .matcha-card-flat[color=accent][link]:not([link=false]),
.theme-default-light .matcha-card-flat[color=accent][basic]:not([basic=false]) {
  color: #1e5bda;
}
.theme-default-light matcha-card[color=accent],
.theme-default-light .matcha-card[color=accent],
.theme-default-light .matcha-card-flat[color=accent] {
  background: #1e5bda;
  color: white;
}
.theme-default-light matcha-card[color=accent][alpha]:not([alpha=false]),
.theme-default-light .matcha-card[color=accent][alpha]:not([alpha=false]),
.theme-default-light .matcha-card-flat[color=accent][alpha]:not([alpha=false]) {
  background: rgba(30, 91, 218, 0.2);
  color: #21282C;
}
.theme-default-light matcha-card[color=warn][tint]:not([tint=false]),
.theme-default-light .matcha-card[color=warn][tint]:not([tint=false]),
.theme-default-light .matcha-card-flat[color=warn][tint]:not([tint=false]) {
  background: rgba(211, 24, 24, 0.2);
  color: #d31818;
}
.theme-default-light matcha-card[color=warn][outline]:not([outline=false]), .theme-default-light matcha-card[color=warn][link]:not([link=false]), .theme-default-light matcha-card[color=warn][basic]:not([basic=false]),
.theme-default-light .matcha-card[color=warn][outline]:not([outline=false]),
.theme-default-light .matcha-card[color=warn][link]:not([link=false]),
.theme-default-light .matcha-card[color=warn][basic]:not([basic=false]),
.theme-default-light .matcha-card-flat[color=warn][outline]:not([outline=false]),
.theme-default-light .matcha-card-flat[color=warn][link]:not([link=false]),
.theme-default-light .matcha-card-flat[color=warn][basic]:not([basic=false]) {
  color: #d31818;
}
.theme-default-light matcha-card[color=warn],
.theme-default-light .matcha-card[color=warn],
.theme-default-light .matcha-card-flat[color=warn] {
  background: #d31818;
  color: white;
}
.theme-default-light matcha-card[color=warn][alpha]:not([alpha=false]),
.theme-default-light .matcha-card[color=warn][alpha]:not([alpha=false]),
.theme-default-light .matcha-card-flat[color=warn][alpha]:not([alpha=false]) {
  background: rgba(211, 24, 24, 0.2);
  color: #21282C;
}
.theme-default-light matcha-card[color=disabled][tint]:not([tint=false]),
.theme-default-light .matcha-card[color=disabled][tint]:not([tint=false]),
.theme-default-light .matcha-card-flat[color=disabled][tint]:not([tint=false]) {
  background: rgba(226, 231, 233, 0.5);
  color: #E2E7E9;
}
.theme-default-light matcha-card[color=disabled][outline]:not([outline=false]), .theme-default-light matcha-card[color=disabled][link]:not([link=false]), .theme-default-light matcha-card[color=disabled][basic]:not([basic=false]),
.theme-default-light .matcha-card[color=disabled][outline]:not([outline=false]),
.theme-default-light .matcha-card[color=disabled][link]:not([link=false]),
.theme-default-light .matcha-card[color=disabled][basic]:not([basic=false]),
.theme-default-light .matcha-card-flat[color=disabled][outline]:not([outline=false]),
.theme-default-light .matcha-card-flat[color=disabled][link]:not([link=false]),
.theme-default-light .matcha-card-flat[color=disabled][basic]:not([basic=false]) {
  color: #E2E7E9;
}
.theme-default-light matcha-card[color=disabled],
.theme-default-light .matcha-card[color=disabled],
.theme-default-light .matcha-card-flat[color=disabled] {
  background: #E2E7E9;
  color: #E2E7E9;
}
.theme-default-light matcha-card[color=disabled][alpha]:not([alpha=false]),
.theme-default-light .matcha-card[color=disabled][alpha]:not([alpha=false]),
.theme-default-light .matcha-card-flat[color=disabled][alpha]:not([alpha=false]) {
  background: rgba(226, 231, 233, 0.5);
  color: #21282C;
}
.theme-default-light matcha-card[basic]:not([basic=false]),
.theme-default-light .matcha-card[basic]:not([basic=false]),
.theme-default-light .matcha-card-flat[basic]:not([basic=false]) {
  box-shadow: 0px 0px 0px 0px inset;
}
.theme-default-light matcha-card[link]:not([link=false]),
.theme-default-light .matcha-card[link]:not([link=false]),
.theme-default-light .matcha-card-flat[link]:not([link=false]) {
  text-transform: initial;
  letter-spacing: 0;
  text-decoration: none;
  padding: 0;
}
.theme-default-light matcha-card[basic=true]:not([icon=false]),
.theme-default-light .matcha-card[basic=true]:not([icon=false]),
.theme-default-light .matcha-card-flat[basic=true]:not([icon=false]) {
  border: 0px solid currentColor;
  background: #FFFFFF;
}
.theme-default-light matcha-card[basic=true]:not([icon=false]):not([color]),
.theme-default-light .matcha-card[basic=true]:not([icon=false]):not([color]),
.theme-default-light .matcha-card-flat[basic=true]:not([icon=false]):not([color]) {
  border-color: #21282C;
  background: transparent !important;
}
.theme-default-light matcha-card[basic=true]:not([icon=false])[color]:not([outline]),
.theme-default-light .matcha-card[basic=true]:not([icon=false])[color]:not([outline]),
.theme-default-light .matcha-card-flat[basic=true]:not([icon=false])[color]:not([outline]) {
  background: #FFFFFF !important;
}
.theme-default-light matcha-card[outline]:not([outline=false]),
.theme-default-light .matcha-card[outline]:not([outline=false]),
.theme-default-light .matcha-card-flat[outline]:not([outline=false]) {
  box-shadow: 0px 0px 0px 2px inset;
  border: 0px solid currentColor;
  background: transparent !important;
}
.theme-default-light matcha-card[outline]:not([outline=false]):not([color]),
.theme-default-light .matcha-card[outline]:not([outline=false]):not([color]),
.theme-default-light .matcha-card-flat[outline]:not([outline=false]):not([color]) {
  border-color: #21282C;
  color: #21282C;
}
.theme-default-light matcha-card:not([color]),
.theme-default-light .matcha-card:not([color]),
.theme-default-light .matcha-card-flat:not([color]) {
  background: #FFFFFF;
  color: #21282C;
}
.theme-default-light matcha-card[color=bg][alpha]:not([alpha=false]),
.theme-default-light .matcha-card[color=bg][alpha]:not([alpha=false]),
.theme-default-light .matcha-card-flat[color=bg][alpha]:not([alpha=false]) {
  background: rgba(242, 243, 248, 0.5);
  color: #21282C;
}
.theme-default-light matcha-card[color=bg][tint]:not([tint=false]),
.theme-default-light .matcha-card[color=bg][tint]:not([tint=false]),
.theme-default-light .matcha-card-flat[color=bg][tint]:not([tint=false]) {
  background: rgba(242, 243, 248, 0.5);
  color: #21282C;
}
.theme-default-light matcha-card[color=bg][outline]:not([outline=false]), .theme-default-light matcha-card[color=bg][link]:not([link=false]), .theme-default-light matcha-card[color=bg][basic]:not([basic=false]),
.theme-default-light .matcha-card[color=bg][outline]:not([outline=false]),
.theme-default-light .matcha-card[color=bg][link]:not([link=false]),
.theme-default-light .matcha-card[color=bg][basic]:not([basic=false]),
.theme-default-light .matcha-card-flat[color=bg][outline]:not([outline=false]),
.theme-default-light .matcha-card-flat[color=bg][link]:not([link=false]),
.theme-default-light .matcha-card-flat[color=bg][basic]:not([basic=false]) {
  color: #21282C;
}
.theme-default-light matcha-card[color=bg],
.theme-default-light .matcha-card[color=bg],
.theme-default-light .matcha-card-flat[color=bg] {
  background: #F2F3F8;
  color: #21282C;
}
.theme-default-light matcha-card[color=surface][alpha]:not([alpha=false]),
.theme-default-light .matcha-card[color=surface][alpha]:not([alpha=false]),
.theme-default-light .matcha-card-flat[color=surface][alpha]:not([alpha=false]) {
  background: rgba(255, 255, 255, 0.5);
  color: #21282C;
}
.theme-default-light matcha-card[color=surface][tint]:not([tint=false]),
.theme-default-light .matcha-card[color=surface][tint]:not([tint=false]),
.theme-default-light .matcha-card-flat[color=surface][tint]:not([tint=false]) {
  background: rgba(255, 255, 255, 0.5);
  color: #21282C;
}
.theme-default-light matcha-card[color=surface][outline]:not([outline=false]), .theme-default-light matcha-card[color=surface][link]:not([link=false]), .theme-default-light matcha-card[color=surface][basic]:not([basic=false]),
.theme-default-light .matcha-card[color=surface][outline]:not([outline=false]),
.theme-default-light .matcha-card[color=surface][link]:not([link=false]),
.theme-default-light .matcha-card[color=surface][basic]:not([basic=false]),
.theme-default-light .matcha-card-flat[color=surface][outline]:not([outline=false]),
.theme-default-light .matcha-card-flat[color=surface][link]:not([link=false]),
.theme-default-light .matcha-card-flat[color=surface][basic]:not([basic=false]) {
  color: #21282C;
}
.theme-default-light matcha-card[color=surface],
.theme-default-light .matcha-card[color=surface],
.theme-default-light .matcha-card-flat[color=surface] {
  background: #FFFFFF;
  color: #21282C;
}
.theme-default-light matcha-card[color=fg][alpha]:not([alpha=false]),
.theme-default-light .matcha-card[color=fg][alpha]:not([alpha=false]),
.theme-default-light .matcha-card-flat[color=fg][alpha]:not([alpha=false]) {
  background: rgba(33, 40, 44, 0.2);
  color: #21282C;
}
.theme-default-light matcha-card[color=fg][tint]:not([tint=false]),
.theme-default-light .matcha-card[color=fg][tint]:not([tint=false]),
.theme-default-light .matcha-card-flat[color=fg][tint]:not([tint=false]) {
  background: rgba(33, 40, 44, 0.2);
  color: #21282C;
}
.theme-default-light matcha-card[color=fg][outline]:not([outline=false]), .theme-default-light matcha-card[color=fg][link]:not([link=false]), .theme-default-light matcha-card[color=fg][basic]:not([basic=false]),
.theme-default-light .matcha-card[color=fg][outline]:not([outline=false]),
.theme-default-light .matcha-card[color=fg][link]:not([link=false]),
.theme-default-light .matcha-card[color=fg][basic]:not([basic=false]),
.theme-default-light .matcha-card-flat[color=fg][outline]:not([outline=false]),
.theme-default-light .matcha-card-flat[color=fg][link]:not([link=false]),
.theme-default-light .matcha-card-flat[color=fg][basic]:not([basic=false]) {
  color: #21282C;
}
.theme-default-light matcha-card[color=fg],
.theme-default-light .matcha-card[color=fg],
.theme-default-light .matcha-card-flat[color=fg] {
  background: #21282C;
  color: #E2E7E9;
}
.theme-default-light matcha-card[color=basic][alpha]:not([alpha=false]),
.theme-default-light .matcha-card[color=basic][alpha]:not([alpha=false]),
.theme-default-light .matcha-card-flat[color=basic][alpha]:not([alpha=false]) {
  background: rgba(33, 40, 44, 0.2);
  color: #21282C;
}
.theme-default-light matcha-card[color=basic][tint]:not([tint=false]),
.theme-default-light .matcha-card[color=basic][tint]:not([tint=false]),
.theme-default-light .matcha-card-flat[color=basic][tint]:not([tint=false]) {
  background: rgba(33, 40, 44, 0.2);
  color: #21282C;
}
.theme-default-light matcha-card[color=basic][outline]:not([outline=false]), .theme-default-light matcha-card[color=basic][link]:not([link=false]), .theme-default-light matcha-card[color=basic][basic]:not([basic=false]),
.theme-default-light .matcha-card[color=basic][outline]:not([outline=false]),
.theme-default-light .matcha-card[color=basic][link]:not([link=false]),
.theme-default-light .matcha-card[color=basic][basic]:not([basic=false]),
.theme-default-light .matcha-card-flat[color=basic][outline]:not([outline=false]),
.theme-default-light .matcha-card-flat[color=basic][link]:not([link=false]),
.theme-default-light .matcha-card-flat[color=basic][basic]:not([basic=false]) {
  color: #21282C;
}
.theme-default-light matcha-card[color=basic],
.theme-default-light .matcha-card[color=basic],
.theme-default-light .matcha-card-flat[color=basic] {
  background: #FFFFFF;
  color: #21282C;
}
.theme-default-light matcha-card[color=basic],
.theme-default-light .matcha-card[color=basic],
.theme-default-light .matcha-card-flat[color=basic] {
  background: #FFFFFF;
}
.theme-default-light matcha-card[color=basic]:not([color]),
.theme-default-light .matcha-card[color=basic]:not([color]),
.theme-default-light .matcha-card-flat[color=basic]:not([color]) {
  color: #21282C;
}
.theme-default-light .svg-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.theme-default-light .svg-line line {
  stroke-width: 4px;
  stroke: #8A9EA8;
}
.theme-default-light .child {
  display: flex;
  position: relative;
}
.theme-default-light .child .the-line-connect-first {
  width: 56px;
  height: 4px;
  margin: 56px -16px 56px -40px;
  display: flex;
  position: absolute;
  z-index: -1;
  background: transparent;
  box-shadow: inset 2px -2px 0px 2px #8A9EA8;
}
.theme-default-light .child .the-line-connect {
  width: 56px;
  margin: -90px -16px 56px -40px;
  height: 150px;
  display: flex;
  position: absolute;
  z-index: -1;
  background: transparent;
  border-radius: 0 0 0 40px;
  box-shadow: inset 2px -2px 0px 2px #8A9EA8;
}
.theme-default-light .child .the-line-connect-last {
  width: 56px;
  height: 136px;
  margin: -80px -16px 56px -40px;
  display: flex;
  position: absolute;
  z-index: -1;
  border-radius: 0 0 0 40px;
  background: transparent;
  box-shadow: inset 2px -2px 0px 2px #8A9EA8;
}
.theme-default-light .child .the-line-connect-first-modal {
  width: 56px;
  height: 4px;
  margin: 56px -16px 56px -40px;
  display: flex;
  position: absolute;
  z-index: -1;
  background: transparent;
  box-shadow: inset 2px -2px 0px 2px;
}
.theme-default-light .child .the-line-connect-second-modal {
  width: 56px;
  border-radius: 0 0 0 40px;
  z-index: 1;
  margin: -16px -16px 56px -40px;
  height: 72px;
  display: flex;
  position: absolute;
  background: transparent;
  box-shadow: inset 2px -2px 0px 2px;
}
.theme-default-light .child .the-line-connect-last-modal {
  width: 56px;
  height: 150px;
  margin: -90px -16px 56px -40px;
  display: flex;
  position: absolute;
  border-radius: 0 0 0 40px;
  z-index: 1;
  background: transparent;
  box-shadow: inset 2px -2px 0px 2px;
}
.theme-default-light .child .the-line-connect-start-modal {
  height: 92px;
  margin: -34px -16px 56px -40px;
  width: 56px;
  border-radius: 0 0 0 40px;
  z-index: 1;
  display: flex;
  position: absolute;
  background: transparent;
  box-shadow: inset 2px -2px 0px 2px;
}
.theme-default-light .child .the-line-connect {
  height: 92px !important;
  margin: -34px -16px 56px -40px !important;
}
.theme-default-light .child .the-line-connect-middle {
  height: 92px;
  margin: -34px -16px 56px -40px;
  width: 56px;
  border-radius: 0 0 0 40px;
  z-index: 0;
  display: flex;
  position: absolute;
  background: transparent;
  box-shadow: inset 2px -2px 0px 2px #223744;
}
.theme-default-light .tree-node {
  min-width: 264px;
  max-width: 264px;
  width: 264px;
  height: 80px;
}
.theme-default-light .tree-node-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4px;
}
.theme-default-light .tree-node-header-title {
  font-size: 12px;
  line-height: 12px;
  display: flex;
  margin: 0 0 4px 0;
  align-items: center;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: "CircularStd";
  font-weight: 700;
}
.theme-default-light .tree-node-header-title-bullet {
  height: 16px;
  width: 8px;
  margin: 0px 8px 0 0;
  display: inline-block;
  position: relative;
  border-radius: 10px;
}
.theme-default-light .tree-node-content {
  display: flex;
  justify-content: space-between;
}
.theme-default-light .tree-node-content-profile {
  display: flex;
  align-items: center;
  width: 100%;
}
.theme-default-light .tree-node-content-profile-avatar {
  border-radius: 50px;
  min-width: 24px;
  min-height: 24px;
  width: 24px;
  height: 24px;
  max-width: 24px;
  max-height: 24px;
}
.theme-default-light .tree-node-content-profile-name {
  width: calc(100% - 48px);
  display: flex;
  line-height: 20px;
  font-size: 16px;
  margin: 0 0 0 8px;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
  white-space: nowrap;
  -webkit-box-orient: vertical;
}
.theme-default-light .tree-node-content-btn-add-node {
  position: absolute;
  margin: 24px 0px 0 236px;
  width: 24px;
  height: 24px;
  background: #FFFFFF;
  box-shadow: inset 0px 0px 0px 3px #1e5bda;
}
.theme-default-light .tree-node-content-btn-add-node-i {
  line-height: 12px;
  color: #1e5bda;
  border-radius: 50px;
}
.theme-default-light .tree-first-node {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 264px;
  max-width: 264px;
  width: 264px;
  height: 80px;
  margin: 16px 16px -10px 16px;
  border-radius: 8px;
}
.theme-default-light .tree-first-node-begin {
  font-size: 16px;
  font-family: "CircularStd";
  font-weight: 700;
  line-height: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
  white-space: initial;
  -webkit-box-orient: vertical;
  text-transform: capitalize;
  text-overflow: ellipsis;
}
.theme-default-light .tree-first-node-begin-btn-add-node {
  width: 24px;
  height: 24px;
  display: block;
  margin: 0 auto;
  position: relative;
  background: #FFFFFF;
  box-shadow: inset 0px 0px 0px 3px #1e5bda;
}
.theme-default-light .tree-first-node-begin-btn-add-node-i {
  line-height: 12px;
  color: #1e5bda;
  border-radius: 50px;
}
.theme-default-light .matcha-horizontal-tree {
  overflow: auto;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  /* Konqueror HTML */
  /* Old versions of Firefox */
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently */
}
.theme-default-light .scrollbox,
.theme-default-light .scrollbox-vertical,
.theme-default-light .scrollbox-v,
.theme-default-light .scrollbox-y {
  overflow: overlay;
  background: linear-gradient(#FFFFFF 30%, rgba(255, 255, 255, 0)), linear-gradient(rgba(255, 255, 255, 0), #FFFFFF 70%) 0 100%, linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0) 50%), linear-gradient(0deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0) 50%) 0 100%;
  background-repeat: no-repeat;
  background-color: #FFFFFF;
  background-size: 100% 40px, 100% 40px, 100% 14px, 100% 14px;
  /* Opera doesn't support this in the shorthand */
  background-attachment: local, local, scroll, scroll;
}
.theme-default-light .scrollbox-horizontal,
.theme-default-light .scrollbox-h,
.theme-default-light .scrollbox-x {
  box-shadow: 0px -16px 0px 0px inset #FFFFFF, 20px 0 16px -24px inset #000000, -20px 0 16px -24px inset #000000, 0px 2px 2px 0px rgba(0, 0, 0, 0.0352941176), 0px 2px 2px 0px rgba(0, 0, 0, 0.0352941176), 0px 2px 2px 0px rgba(0, 0, 0, 0.0352941176);
  overflow: auto;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0) calc(0% + 10px), rgba(0, 0, 0, 0) calc(100% - 10px), rgba(0, 0, 0, 0.1));
  background: -webkit-linear-gradient(0deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0) calc(0% + 10px), rgba(0, 0, 0, 0) calc(100% - 10px), rgba(0, 0, 0, 0.1));
}
.theme-default-light .scrollbox-horizontal-content,
.theme-default-light .scrollbox-h-content,
.theme-default-light .scrollbox-x-content {
  background: #FFFFFF;
  background: linear-gradient(90deg, #FFFFFF 10px, #FFFFFF, rgba(255, 255, 255, 0) calc(0% + 10px), rgba(255, 255, 255, 0) calc(100% - 10px), #FFFFFF 10px, #FFFFFF);
  background: -webkit-linear-gradient(0deg, #FFFFFF 10px, #FFFFFF, rgba(255, 255, 255, 0) calc(0% + 10px), rgba(255, 255, 255, 0) calc(100% - 10px), #FFFFFF 10px, #FFFFFF);
}
.theme-default-light .scrollbox-horizontal-content-background,
.theme-default-light .scrollbox-h-content-background,
.theme-default-light .scrollbox-x-content-background {
  background: #F2F3F8;
  background: linear-gradient(90deg, #F2F3F8 10px, #F2F3F8, rgba(255, 255, 255, 0) calc(0% + 10px), rgba(255, 255, 255, 0) calc(100% - 10px), #F2F3F8 10px, #F2F3F8);
  background: -webkit-linear-gradient(0deg, #F2F3F8 10px, #F2F3F8, rgba(255, 255, 255, 0) calc(0% + 10px), rgba(255, 255, 255, 0) calc(100% - 10px), #F2F3F8 10px, #F2F3F8);
}
.theme-default-light .scrollbox-background {
  overflow: overlay;
  background: linear-gradient(#F2F3F8 30%, rgba(255, 255, 255, 0)), linear-gradient(rgba(255, 255, 255, 0), #F2F3F8 70%) 0 100%, linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0) 50%), linear-gradient(0deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0) 50%) 0 100%;
  background-repeat: no-repeat;
  background-color: #F2F3F8;
  background-size: 100% 40px, 100% 40px, 100% 14px, 100% 14px;
  /* Opera doesn't support this in the shorthand */
  background-attachment: local, local, scroll, scroll;
}
.theme-default-light :not(.is-mobile) ::-webkit-scrollbar {
  width: 16px;
  height: 16px;
  background-color: rgba(0, 0, 0, 0);
}
.theme-default-light :not(.is-mobile) ::-webkit-scrollbar:hover {
  background-color: rgba(0, 0, 0, 0.12);
}
.theme-default-light :not(.is-mobile) ::-webkit-scrollbar-thumb {
  border: 4px solid transparent;
  box-shadow: inset 0 0 0 12px rgba(136, 136, 136, 0.2);
  border-radius: 12px;
}
.theme-default-light :not(.is-mobile) ::-webkit-scrollbar-thumb:active {
  box-shadow: inset 0 0 0 12px rgba(136, 136, 136, 0.2666666667);
  border-radius: 12px;
}
.theme-default-light :not(.is-mobile) ::-webkit-scrollbar-corner {
  background: rgba(0, 0, 0, 0);
}
.theme-default-light body.is-mobile .table-container .table-container-shadow {
  overflow: auto;
  box-shadow: 0px -16px 0px 0px inset #FFFFFF, 20px 0 16px -24px inset #000000, -20px 0 16px -24px inset #000000, 0px 2px 2px 0px rgba(0, 0, 0, 0.0352941176), 0px 2px 2px 0px rgba(0, 0, 0, 0.0352941176), 0px 2px 2px 0px rgba(0, 0, 0, 0.0352941176);
}
.theme-default-light body.is-mobile .table-container .table-container-shadow .mat-table tbody,
.theme-default-light body.is-mobile .table-container .table-container-shadow .mat-sort tbody {
  background: #FFFFFF;
  background: linear-gradient(90deg, #FFFFFF 0px, #FFFFFF 0px, rgba(255, 255, 255, 0) calc(0% + 40px), rgba(255, 255, 255, 0) calc(100% - 40px), #FFFFFF calc(100% - 0px));
  background: -webkit-linear-gradient(0deg, #FFFFFF 0px, #FFFFFF 0px, rgba(255, 255, 255, 0) calc(0% + 40px), rgba(255, 255, 255, 0) calc(100% - 40px), #FFFFFF calc(100% - 0px));
}
.theme-default-light .table-container {
  width: 100%;
}
.theme-default-light .table-container .table-container-shadow {
  overflow: auto;
  background: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.0352941176), 0px 2px 2px 0px rgba(0, 0, 0, 0.0352941176), 0px 2px 2px 0px rgba(0, 0, 0, 0.0352941176);
  box-shadow: 0px -16px 0px 0px inset #FFFFFF, 20px 0 16px -24px inset #000000, -20px 0 16px -24px inset #000000, 0px 2px 2px 0px rgba(0, 0, 0, 0.0352941176), 0px 2px 2px 0px rgba(0, 0, 0, 0.0352941176), 0px 2px 2px 0px rgba(0, 0, 0, 0.0352941176);
}
.theme-default-light .table-container .table-container-shadow .mat-table tbody,
.theme-default-light .table-container .table-container-shadow .mat-sort tbody {
  background: #FFFFFF;
  background: linear-gradient(90deg, #FFFFFF 0px, #FFFFFF 0px, rgba(255, 255, 255, 0) calc(0% + 40px), rgba(255, 255, 255, 0) calc(100% - 40px), #FFFFFF calc(100% - 0px));
  background: -webkit-linear-gradient(0deg, #FFFFFF 0px, #FFFFFF 0px, rgba(255, 255, 255, 0) calc(0% + 40px), rgba(255, 255, 255, 0) calc(100% - 40px), #FFFFFF calc(100% - 0px));
}
.theme-default-light .table-container .table-container-shadow.ps--active-x {
  box-shadow: 0px -16px 0px 0px inset #FFFFFF, 20px 0 16px -24px inset #000000, -20px 0 16px -24px inset #000000, 0px 2px 2px 0px rgba(0, 0, 0, 0.0352941176), 0px 2px 2px 0px rgba(0, 0, 0, 0.0352941176), 0px 2px 2px 0px rgba(0, 0, 0, 0.0352941176);
}
.theme-default-light .table-container .table-container-shadow.ps--active-x .mat-table,
.theme-default-light .table-container .table-container-shadow.ps--active-x .mat-sort {
  background: #FFFFFF;
  background: linear-gradient(90deg, #FFFFFF 0px, #FFFFFF 0px, rgba(255, 255, 255, 0) calc(0% + 40px), rgba(255, 255, 255, 0) calc(100% - 40px), #FFFFFF calc(100% - 0px));
  background: -webkit-linear-gradient(0deg, #FFFFFF 0px, #FFFFFF 0px, rgba(255, 255, 255, 0) calc(0% + 40px), rgba(255, 255, 255, 0) calc(100% - 40px), #FFFFFF calc(100% - 0px));
}
.theme-default-light .table-container .mat-table thead,
.theme-default-light .table-container .mat-sort thead,
.theme-default-light .table-container .mat-expansion-panel thead {
  background: #FFFFFF;
}
.theme-default-light .table-container .mat-table thead th,
.theme-default-light .table-container .mat-sort thead th,
.theme-default-light .table-container .mat-expansion-panel thead th {
  height: 64px;
}
.theme-default-light .table-container .mat-table tr.mat-row:nth-child(odd),
.theme-default-light .table-container .mat-sort tr.mat-row:nth-child(odd),
.theme-default-light .table-container .mat-expansion-panel tr.mat-row:nth-child(odd) {
  background: rgba(242, 243, 248, 0.5);
}
.theme-default-light .table-container .mat-table tr td,
.theme-default-light .table-container .mat-table tr th,
.theme-default-light .table-container .mat-sort tr td,
.theme-default-light .table-container .mat-sort tr th,
.theme-default-light .table-container .mat-expansion-panel tr td,
.theme-default-light .table-container .mat-expansion-panel tr th {
  touch-action: unset !important;
  font-size: 14px;
}
.theme-default-light .table-container .mat-table tr td:first-child,
.theme-default-light .table-container .mat-table tr th:first-child,
.theme-default-light .table-container .mat-sort tr td:first-child,
.theme-default-light .table-container .mat-sort tr th:first-child,
.theme-default-light .table-container .mat-expansion-panel tr td:first-child,
.theme-default-light .table-container .mat-expansion-panel tr th:first-child {
  padding-left: 24px;
}
.theme-default-light .table-container .mat-table tr td .clickable,
.theme-default-light .table-container .mat-table tr th .clickable,
.theme-default-light .table-container .mat-sort tr td .clickable,
.theme-default-light .table-container .mat-sort tr th .clickable,
.theme-default-light .table-container .mat-expansion-panel tr td .clickable,
.theme-default-light .table-container .mat-expansion-panel tr th .clickable {
  cursor: pointer;
}
.theme-default-light .table-container .mat-table .td-duble-line,
.theme-default-light .table-container .mat-sort .td-duble-line,
.theme-default-light .table-container .mat-expansion-panel .td-duble-line {
  height: 48px;
}
.theme-default-light .table-container .mat-table .td-with-image,
.theme-default-light .table-container .mat-table .td-with-checkbox,
.theme-default-light .table-container .mat-table .td-with-icon,
.theme-default-light .table-container .mat-table .td-duble-line,
.theme-default-light .table-container .mat-sort .td-with-image,
.theme-default-light .table-container .mat-sort .td-with-checkbox,
.theme-default-light .table-container .mat-sort .td-with-icon,
.theme-default-light .table-container .mat-sort .td-duble-line,
.theme-default-light .table-container .mat-expansion-panel .td-with-image,
.theme-default-light .table-container .mat-expansion-panel .td-with-checkbox,
.theme-default-light .table-container .mat-expansion-panel .td-with-icon,
.theme-default-light .table-container .mat-expansion-panel .td-duble-line {
  display: flex;
  align-items: center;
}
.theme-default-light .table-container .mat-table .td-with-image .td-text-aside,
.theme-default-light .table-container .mat-table .td-with-checkbox .td-text-aside,
.theme-default-light .table-container .mat-table .td-with-icon .td-text-aside,
.theme-default-light .table-container .mat-table .td-duble-line .td-text-aside,
.theme-default-light .table-container .mat-sort .td-with-image .td-text-aside,
.theme-default-light .table-container .mat-sort .td-with-checkbox .td-text-aside,
.theme-default-light .table-container .mat-sort .td-with-icon .td-text-aside,
.theme-default-light .table-container .mat-sort .td-duble-line .td-text-aside,
.theme-default-light .table-container .mat-expansion-panel .td-with-image .td-text-aside,
.theme-default-light .table-container .mat-expansion-panel .td-with-checkbox .td-text-aside,
.theme-default-light .table-container .mat-expansion-panel .td-with-icon .td-text-aside,
.theme-default-light .table-container .mat-expansion-panel .td-duble-line .td-text-aside {
  display: inline-block;
  width: calc(100% - 48px);
}
.theme-default-light .table-container .mat-table .td-with-image .avatar,
.theme-default-light .table-container .mat-table .td-with-checkbox .avatar,
.theme-default-light .table-container .mat-table .td-with-icon .avatar,
.theme-default-light .table-container .mat-table .td-duble-line .avatar,
.theme-default-light .table-container .mat-sort .td-with-image .avatar,
.theme-default-light .table-container .mat-sort .td-with-checkbox .avatar,
.theme-default-light .table-container .mat-sort .td-with-icon .avatar,
.theme-default-light .table-container .mat-sort .td-duble-line .avatar,
.theme-default-light .table-container .mat-expansion-panel .td-with-image .avatar,
.theme-default-light .table-container .mat-expansion-panel .td-with-checkbox .avatar,
.theme-default-light .table-container .mat-expansion-panel .td-with-icon .avatar,
.theme-default-light .table-container .mat-expansion-panel .td-duble-line .avatar {
  width: 48px;
  min-width: 48px;
  height: 48px;
  line-height: 48px;
  border-width: 0;
  margin-right: 24px;
}
.theme-default-light .table-container .mat-table .td-with-image .thumbnail,
.theme-default-light .table-container .mat-table .td-with-checkbox .thumbnail,
.theme-default-light .table-container .mat-table .td-with-icon .thumbnail,
.theme-default-light .table-container .mat-table .td-duble-line .thumbnail,
.theme-default-light .table-container .mat-sort .td-with-image .thumbnail,
.theme-default-light .table-container .mat-sort .td-with-checkbox .thumbnail,
.theme-default-light .table-container .mat-sort .td-with-icon .thumbnail,
.theme-default-light .table-container .mat-sort .td-duble-line .thumbnail,
.theme-default-light .table-container .mat-expansion-panel .td-with-image .thumbnail,
.theme-default-light .table-container .mat-expansion-panel .td-with-checkbox .thumbnail,
.theme-default-light .table-container .mat-expansion-panel .td-with-icon .thumbnail,
.theme-default-light .table-container .mat-expansion-panel .td-duble-line .thumbnail {
  width: 72px;
  min-width: 72px;
  height: 48px;
  border-radius: 8px;
  margin: 0 8px 0 0;
}
.theme-default-light .table-container .mat-table .td-with-image .thumbnail-portrait,
.theme-default-light .table-container .mat-table .td-with-checkbox .thumbnail-portrait,
.theme-default-light .table-container .mat-table .td-with-icon .thumbnail-portrait,
.theme-default-light .table-container .mat-table .td-duble-line .thumbnail-portrait,
.theme-default-light .table-container .mat-sort .td-with-image .thumbnail-portrait,
.theme-default-light .table-container .mat-sort .td-with-checkbox .thumbnail-portrait,
.theme-default-light .table-container .mat-sort .td-with-icon .thumbnail-portrait,
.theme-default-light .table-container .mat-sort .td-duble-line .thumbnail-portrait,
.theme-default-light .table-container .mat-expansion-panel .td-with-image .thumbnail-portrait,
.theme-default-light .table-container .mat-expansion-panel .td-with-checkbox .thumbnail-portrait,
.theme-default-light .table-container .mat-expansion-panel .td-with-icon .thumbnail-portrait,
.theme-default-light .table-container .mat-expansion-panel .td-duble-line .thumbnail-portrait {
  width: 56px;
  min-width: 56px;
  height: 72px;
  border-radius: 8px;
  margin: 0 8px 0 0;
}
.theme-default-light .table-container .mat-table .mat-header-cell,
.theme-default-light .table-container .mat-sort .mat-header-cell,
.theme-default-light .table-container .mat-expansion-panel .mat-header-cell {
  color: #21282C;
  font-family: "CircularStd";
  font-weight: 700;
  font-size: 16px;
  padding-left: 8px;
  padding-right: 8px;
  border-bottom-width: 0px;
}
.theme-default-light .table-container .mat-table .mat-cell,
.theme-default-light .table-container .mat-sort .mat-cell,
.theme-default-light .table-container .mat-expansion-panel .mat-cell {
  color: #7E8E95;
  font-size: 14px;
  padding-left: 8px;
  padding-right: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: start;
  border-bottom-width: 0px;
}
.theme-default-light .table-container .mat-table .mat-cell.cdk-column-menu,
.theme-default-light .table-container .mat-sort .mat-cell.cdk-column-menu,
.theme-default-light .table-container .mat-expansion-panel .mat-cell.cdk-column-menu {
  text-align: left;
}
.theme-default-light .table-container .mat-table .last,
.theme-default-light .table-container .mat-sort .last,
.theme-default-light .table-container .mat-expansion-panel .last {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}
.theme-default-light .table-container .mat-table .last span,
.theme-default-light .table-container .mat-sort .last span,
.theme-default-light .table-container .mat-expansion-panel .last span {
  overflow: hidden;
  text-overflow: ellipsis;
}
.theme-default-light .table-container .mat-table .last mat-menu,
.theme-default-light .table-container .mat-sort .last mat-menu,
.theme-default-light .table-container .mat-expansion-panel .last mat-menu {
  display: none;
}
.theme-default-light .table-container table {
  width: 100%;
}
.theme-default-light .table-container .badge {
  border-radius: 8px;
  padding: 8px;
  color: #E2E7E9;
}
.theme-default-light .table-container .badge.live-badge {
  font-size: 14px;
}
.theme-default-light .table-container .badge.cell-badge {
  font-size: 14px;
}
.theme-default-light .table-container .badge.cult-badge {
  font-size: 14px;
}
.theme-default-light .table-container .badge.new-visitor-badge {
  background-color: #2B363B;
  color: white;
  font-size: 14px;
  line-height: 14px;
  display: inline-block;
  width: auto;
}
@media (min-width: 1440px) {
  .theme-default-light .table-container .mat-table .mat-cell,
  .theme-default-light .table-container .mat-sort .mat-cell {
    font-size: 16px;
  }
}
.theme-default-light matcha-button-toggle {
  display: flex;
}
.theme-default-light matcha-button-toggle:not([inactivetype])[inactivecolor=red] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle:not([inactivetype])[inactivecolor=red] .button-group a[matcha-button]:not([active]), .theme-default-light matcha-button-toggle[inactivetype=solid][inactivecolor=red] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=solid][inactivecolor=red] .button-group a[matcha-button]:not([active]) {
  background: #e53a3a;
  color: white;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-light matcha-button-toggle:not([inactivetype])[inactivecolor=red] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle:not([inactivetype])[inactivecolor=red] .button-group a[matcha-button]:not([active]) .ripple, .theme-default-light matcha-button-toggle[inactivetype=solid][inactivecolor=red] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=solid][inactivecolor=red] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(255, 255, 255, 0.2);
}
.theme-default-light matcha-button-toggle:not([inactivetype])[inactivecolor=pink] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle:not([inactivetype])[inactivecolor=pink] .button-group a[matcha-button]:not([active]), .theme-default-light matcha-button-toggle[inactivetype=solid][inactivecolor=pink] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=solid][inactivecolor=pink] .button-group a[matcha-button]:not([active]) {
  background: #e91e63;
  color: white;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-light matcha-button-toggle:not([inactivetype])[inactivecolor=pink] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle:not([inactivetype])[inactivecolor=pink] .button-group a[matcha-button]:not([active]) .ripple, .theme-default-light matcha-button-toggle[inactivetype=solid][inactivecolor=pink] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=solid][inactivecolor=pink] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(255, 255, 255, 0.2);
}
.theme-default-light matcha-button-toggle:not([inactivetype])[inactivecolor=purple] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle:not([inactivetype])[inactivecolor=purple] .button-group a[matcha-button]:not([active]), .theme-default-light matcha-button-toggle[inactivetype=solid][inactivecolor=purple] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=solid][inactivecolor=purple] .button-group a[matcha-button]:not([active]) {
  background: #9c27b0;
  color: white;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-light matcha-button-toggle:not([inactivetype])[inactivecolor=purple] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle:not([inactivetype])[inactivecolor=purple] .button-group a[matcha-button]:not([active]) .ripple, .theme-default-light matcha-button-toggle[inactivetype=solid][inactivecolor=purple] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=solid][inactivecolor=purple] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(255, 255, 255, 0.2);
}
.theme-default-light matcha-button-toggle:not([inactivetype])[inactivecolor=deep-purple] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle:not([inactivetype])[inactivecolor=deep-purple] .button-group a[matcha-button]:not([active]), .theme-default-light matcha-button-toggle[inactivetype=solid][inactivecolor=deep-purple] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=solid][inactivecolor=deep-purple] .button-group a[matcha-button]:not([active]) {
  background: #673ab7;
  color: white;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-light matcha-button-toggle:not([inactivetype])[inactivecolor=deep-purple] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle:not([inactivetype])[inactivecolor=deep-purple] .button-group a[matcha-button]:not([active]) .ripple, .theme-default-light matcha-button-toggle[inactivetype=solid][inactivecolor=deep-purple] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=solid][inactivecolor=deep-purple] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(255, 255, 255, 0.2);
}
.theme-default-light matcha-button-toggle:not([inactivetype])[inactivecolor=indigo] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle:not([inactivetype])[inactivecolor=indigo] .button-group a[matcha-button]:not([active]), .theme-default-light matcha-button-toggle[inactivetype=solid][inactivecolor=indigo] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=solid][inactivecolor=indigo] .button-group a[matcha-button]:not([active]) {
  background: #3f51b5;
  color: white;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-light matcha-button-toggle:not([inactivetype])[inactivecolor=indigo] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle:not([inactivetype])[inactivecolor=indigo] .button-group a[matcha-button]:not([active]) .ripple, .theme-default-light matcha-button-toggle[inactivetype=solid][inactivecolor=indigo] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=solid][inactivecolor=indigo] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(255, 255, 255, 0.2);
}
.theme-default-light matcha-button-toggle:not([inactivetype])[inactivecolor=blue] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle:not([inactivetype])[inactivecolor=blue] .button-group a[matcha-button]:not([active]), .theme-default-light matcha-button-toggle[inactivetype=solid][inactivecolor=blue] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=solid][inactivecolor=blue] .button-group a[matcha-button]:not([active]) {
  background: #1e5bda;
  color: white;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-light matcha-button-toggle:not([inactivetype])[inactivecolor=blue] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle:not([inactivetype])[inactivecolor=blue] .button-group a[matcha-button]:not([active]) .ripple, .theme-default-light matcha-button-toggle[inactivetype=solid][inactivecolor=blue] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=solid][inactivecolor=blue] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(255, 255, 255, 0.2);
}
.theme-default-light matcha-button-toggle:not([inactivetype])[inactivecolor=light-blue] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle:not([inactivetype])[inactivecolor=light-blue] .button-group a[matcha-button]:not([active]), .theme-default-light matcha-button-toggle[inactivetype=solid][inactivecolor=light-blue] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=solid][inactivecolor=light-blue] .button-group a[matcha-button]:not([active]) {
  background: #03a9f4;
  color: white;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-light matcha-button-toggle:not([inactivetype])[inactivecolor=light-blue] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle:not([inactivetype])[inactivecolor=light-blue] .button-group a[matcha-button]:not([active]) .ripple, .theme-default-light matcha-button-toggle[inactivetype=solid][inactivecolor=light-blue] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=solid][inactivecolor=light-blue] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(255, 255, 255, 0.2);
}
.theme-default-light matcha-button-toggle:not([inactivetype])[inactivecolor=cyan] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle:not([inactivetype])[inactivecolor=cyan] .button-group a[matcha-button]:not([active]), .theme-default-light matcha-button-toggle[inactivetype=solid][inactivecolor=cyan] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=solid][inactivecolor=cyan] .button-group a[matcha-button]:not([active]) {
  background: #00bcd4;
  color: white;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-light matcha-button-toggle:not([inactivetype])[inactivecolor=cyan] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle:not([inactivetype])[inactivecolor=cyan] .button-group a[matcha-button]:not([active]) .ripple, .theme-default-light matcha-button-toggle[inactivetype=solid][inactivecolor=cyan] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=solid][inactivecolor=cyan] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(255, 255, 255, 0.2);
}
.theme-default-light matcha-button-toggle:not([inactivetype])[inactivecolor=teal] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle:not([inactivetype])[inactivecolor=teal] .button-group a[matcha-button]:not([active]), .theme-default-light matcha-button-toggle[inactivetype=solid][inactivecolor=teal] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=solid][inactivecolor=teal] .button-group a[matcha-button]:not([active]) {
  background: #009688;
  color: white;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-light matcha-button-toggle:not([inactivetype])[inactivecolor=teal] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle:not([inactivetype])[inactivecolor=teal] .button-group a[matcha-button]:not([active]) .ripple, .theme-default-light matcha-button-toggle[inactivetype=solid][inactivecolor=teal] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=solid][inactivecolor=teal] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(255, 255, 255, 0.2);
}
.theme-default-light matcha-button-toggle:not([inactivetype])[inactivecolor=green] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle:not([inactivetype])[inactivecolor=green] .button-group a[matcha-button]:not([active]), .theme-default-light matcha-button-toggle[inactivetype=solid][inactivecolor=green] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=solid][inactivecolor=green] .button-group a[matcha-button]:not([active]) {
  background: #119046;
  color: white;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-light matcha-button-toggle:not([inactivetype])[inactivecolor=green] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle:not([inactivetype])[inactivecolor=green] .button-group a[matcha-button]:not([active]) .ripple, .theme-default-light matcha-button-toggle[inactivetype=solid][inactivecolor=green] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=solid][inactivecolor=green] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(255, 255, 255, 0.2);
}
.theme-default-light matcha-button-toggle:not([inactivetype])[inactivecolor=light-green] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle:not([inactivetype])[inactivecolor=light-green] .button-group a[matcha-button]:not([active]), .theme-default-light matcha-button-toggle[inactivetype=solid][inactivecolor=light-green] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=solid][inactivecolor=light-green] .button-group a[matcha-button]:not([active]) {
  background: #6EDA2C;
  color: rgba(0, 0, 0, 0.87);
  box-shadow: 0 0 0 0px inset;
}
.theme-default-light matcha-button-toggle:not([inactivetype])[inactivecolor=light-green] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle:not([inactivetype])[inactivecolor=light-green] .button-group a[matcha-button]:not([active]) .ripple, .theme-default-light matcha-button-toggle[inactivetype=solid][inactivecolor=light-green] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=solid][inactivecolor=light-green] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(0, 0, 0, 0.2);
}
.theme-default-light matcha-button-toggle:not([inactivetype])[inactivecolor=lime] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle:not([inactivetype])[inactivecolor=lime] .button-group a[matcha-button]:not([active]), .theme-default-light matcha-button-toggle[inactivetype=solid][inactivecolor=lime] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=solid][inactivecolor=lime] .button-group a[matcha-button]:not([active]) {
  background: #86bd00;
  color: white;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-light matcha-button-toggle:not([inactivetype])[inactivecolor=lime] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle:not([inactivetype])[inactivecolor=lime] .button-group a[matcha-button]:not([active]) .ripple, .theme-default-light matcha-button-toggle[inactivetype=solid][inactivecolor=lime] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=solid][inactivecolor=lime] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(255, 255, 255, 0.2);
}
.theme-default-light matcha-button-toggle:not([inactivetype])[inactivecolor=yellow] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle:not([inactivetype])[inactivecolor=yellow] .button-group a[matcha-button]:not([active]), .theme-default-light matcha-button-toggle[inactivetype=solid][inactivecolor=yellow] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=solid][inactivecolor=yellow] .button-group a[matcha-button]:not([active]) {
  background: #e8c300;
  color: rgba(0, 0, 0, 0.87);
  box-shadow: 0 0 0 0px inset;
}
.theme-default-light matcha-button-toggle:not([inactivetype])[inactivecolor=yellow] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle:not([inactivetype])[inactivecolor=yellow] .button-group a[matcha-button]:not([active]) .ripple, .theme-default-light matcha-button-toggle[inactivetype=solid][inactivecolor=yellow] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=solid][inactivecolor=yellow] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(0, 0, 0, 0.2);
}
.theme-default-light matcha-button-toggle:not([inactivetype])[inactivecolor=amber] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle:not([inactivetype])[inactivecolor=amber] .button-group a[matcha-button]:not([active]), .theme-default-light matcha-button-toggle[inactivetype=solid][inactivecolor=amber] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=solid][inactivecolor=amber] .button-group a[matcha-button]:not([active]) {
  background: #faa61a;
  color: rgba(0, 0, 0, 0.87);
  box-shadow: 0 0 0 0px inset;
}
.theme-default-light matcha-button-toggle:not([inactivetype])[inactivecolor=amber] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle:not([inactivetype])[inactivecolor=amber] .button-group a[matcha-button]:not([active]) .ripple, .theme-default-light matcha-button-toggle[inactivetype=solid][inactivecolor=amber] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=solid][inactivecolor=amber] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(0, 0, 0, 0.2);
}
.theme-default-light matcha-button-toggle:not([inactivetype])[inactivecolor=orange] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle:not([inactivetype])[inactivecolor=orange] .button-group a[matcha-button]:not([active]), .theme-default-light matcha-button-toggle[inactivetype=solid][inactivecolor=orange] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=solid][inactivecolor=orange] .button-group a[matcha-button]:not([active]) {
  background: #f77814;
  color: rgba(0, 0, 0, 0.87);
  box-shadow: 0 0 0 0px inset;
}
.theme-default-light matcha-button-toggle:not([inactivetype])[inactivecolor=orange] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle:not([inactivetype])[inactivecolor=orange] .button-group a[matcha-button]:not([active]) .ripple, .theme-default-light matcha-button-toggle[inactivetype=solid][inactivecolor=orange] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=solid][inactivecolor=orange] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(0, 0, 0, 0.2);
}
.theme-default-light matcha-button-toggle:not([inactivetype])[inactivecolor=deep-orange] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle:not([inactivetype])[inactivecolor=deep-orange] .button-group a[matcha-button]:not([active]), .theme-default-light matcha-button-toggle[inactivetype=solid][inactivecolor=deep-orange] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=solid][inactivecolor=deep-orange] .button-group a[matcha-button]:not([active]) {
  background: #ff5722;
  color: white;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-light matcha-button-toggle:not([inactivetype])[inactivecolor=deep-orange] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle:not([inactivetype])[inactivecolor=deep-orange] .button-group a[matcha-button]:not([active]) .ripple, .theme-default-light matcha-button-toggle[inactivetype=solid][inactivecolor=deep-orange] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=solid][inactivecolor=deep-orange] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(255, 255, 255, 0.2);
}
.theme-default-light matcha-button-toggle:not([inactivetype])[inactivecolor=brown] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle:not([inactivetype])[inactivecolor=brown] .button-group a[matcha-button]:not([active]), .theme-default-light matcha-button-toggle[inactivetype=solid][inactivecolor=brown] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=solid][inactivecolor=brown] .button-group a[matcha-button]:not([active]) {
  background: #795548;
  color: white;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-light matcha-button-toggle:not([inactivetype])[inactivecolor=brown] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle:not([inactivetype])[inactivecolor=brown] .button-group a[matcha-button]:not([active]) .ripple, .theme-default-light matcha-button-toggle[inactivetype=solid][inactivecolor=brown] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=solid][inactivecolor=brown] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(255, 255, 255, 0.2);
}
.theme-default-light matcha-button-toggle:not([inactivetype])[inactivecolor=grey] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle:not([inactivetype])[inactivecolor=grey] .button-group a[matcha-button]:not([active]), .theme-default-light matcha-button-toggle[inactivetype=solid][inactivecolor=grey] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=solid][inactivecolor=grey] .button-group a[matcha-button]:not([active]) {
  background: #91A0AA;
  color: white;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-light matcha-button-toggle:not([inactivetype])[inactivecolor=grey] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle:not([inactivetype])[inactivecolor=grey] .button-group a[matcha-button]:not([active]) .ripple, .theme-default-light matcha-button-toggle[inactivetype=solid][inactivecolor=grey] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=solid][inactivecolor=grey] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(255, 255, 255, 0.2);
}
.theme-default-light matcha-button-toggle:not([inactivetype])[inactivecolor=blue-grey] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle:not([inactivetype])[inactivecolor=blue-grey] .button-group a[matcha-button]:not([active]), .theme-default-light matcha-button-toggle[inactivetype=solid][inactivecolor=blue-grey] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=solid][inactivecolor=blue-grey] .button-group a[matcha-button]:not([active]) {
  background: #7E8E95;
  color: white;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-light matcha-button-toggle:not([inactivetype])[inactivecolor=blue-grey] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle:not([inactivetype])[inactivecolor=blue-grey] .button-group a[matcha-button]:not([active]) .ripple, .theme-default-light matcha-button-toggle[inactivetype=solid][inactivecolor=blue-grey] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=solid][inactivecolor=blue-grey] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(255, 255, 255, 0.2);
}
.theme-default-light matcha-button-toggle:not([inactivetype])[inactivecolor=primary] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle:not([inactivetype])[inactivecolor=primary] .button-group a[matcha-button]:not([active]), .theme-default-light matcha-button-toggle[inactivetype=solid][inactivecolor=primary] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=solid][inactivecolor=primary] .button-group a[matcha-button]:not([active]) {
  background: #2B363B;
  color: white;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-light matcha-button-toggle:not([inactivetype])[inactivecolor=primary] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle:not([inactivetype])[inactivecolor=primary] .button-group a[matcha-button]:not([active]) .ripple, .theme-default-light matcha-button-toggle[inactivetype=solid][inactivecolor=primary] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=solid][inactivecolor=primary] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(255, 255, 255, 0.2);
}
.theme-default-light matcha-button-toggle:not([inactivetype])[inactivecolor=accent] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle:not([inactivetype])[inactivecolor=accent] .button-group a[matcha-button]:not([active]), .theme-default-light matcha-button-toggle[inactivetype=solid][inactivecolor=accent] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=solid][inactivecolor=accent] .button-group a[matcha-button]:not([active]) {
  background: #1e5bda;
  color: white;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-light matcha-button-toggle:not([inactivetype])[inactivecolor=accent] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle:not([inactivetype])[inactivecolor=accent] .button-group a[matcha-button]:not([active]) .ripple, .theme-default-light matcha-button-toggle[inactivetype=solid][inactivecolor=accent] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=solid][inactivecolor=accent] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(255, 255, 255, 0.2);
}
.theme-default-light matcha-button-toggle:not([inactivetype])[inactivecolor=warn] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle:not([inactivetype])[inactivecolor=warn] .button-group a[matcha-button]:not([active]), .theme-default-light matcha-button-toggle[inactivetype=solid][inactivecolor=warn] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=solid][inactivecolor=warn] .button-group a[matcha-button]:not([active]) {
  background: #d31818;
  color: white;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-light matcha-button-toggle:not([inactivetype])[inactivecolor=warn] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle:not([inactivetype])[inactivecolor=warn] .button-group a[matcha-button]:not([active]) .ripple, .theme-default-light matcha-button-toggle[inactivetype=solid][inactivecolor=warn] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=solid][inactivecolor=warn] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(255, 255, 255, 0.2);
}
.theme-default-light matcha-button-toggle:not([inactivetype])[inactivecolor=disabled] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle:not([inactivetype])[inactivecolor=disabled] .button-group a[matcha-button]:not([active]), .theme-default-light matcha-button-toggle[inactivetype=solid][inactivecolor=disabled] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=solid][inactivecolor=disabled] .button-group a[matcha-button]:not([active]) {
  background: #E2E7E9;
  color: #E2E7E9;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-light matcha-button-toggle:not([inactivetype])[inactivecolor=disabled] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle:not([inactivetype])[inactivecolor=disabled] .button-group a[matcha-button]:not([active]) .ripple, .theme-default-light matcha-button-toggle[inactivetype=solid][inactivecolor=disabled] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=solid][inactivecolor=disabled] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(226, 231, 233, 0.5);
}
.theme-default-light matcha-button-toggle:not([inactivetype])[disabled] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle:not([inactivetype])[disabled] .button-group a[matcha-button]:not([active]), .theme-default-light matcha-button-toggle:not([inactivetype])[disabled]:not([disabled=false]) .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle:not([inactivetype])[disabled]:not([disabled=false]) .button-group a[matcha-button]:not([active]), .theme-default-light matcha-button-toggle:not([inactivetype])[disabled=true] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle:not([inactivetype])[disabled=true] .button-group a[matcha-button]:not([active]), .theme-default-light matcha-button-toggle[inactivetype=solid][disabled] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=solid][disabled] .button-group a[matcha-button]:not([active]), .theme-default-light matcha-button-toggle[inactivetype=solid][disabled]:not([disabled=false]) .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=solid][disabled]:not([disabled=false]) .button-group a[matcha-button]:not([active]), .theme-default-light matcha-button-toggle[inactivetype=solid][disabled=true] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=solid][disabled=true] .button-group a[matcha-button]:not([active]) {
  background: #E2E7E9;
  color: rgba(33, 40, 44, 0.5);
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-light matcha-button-toggle[inactivetype=basic][inactivecolor=red] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=basic][inactivecolor=red] .button-group a[matcha-button]:not([active]) {
  background: #FFFFFF;
  color: #e53a3a;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-light matcha-button-toggle[inactivetype=basic][inactivecolor=red] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=basic][inactivecolor=red] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(229, 58, 58, 0.2);
}
.theme-default-light matcha-button-toggle[inactivetype=basic][inactivecolor=pink] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=basic][inactivecolor=pink] .button-group a[matcha-button]:not([active]) {
  background: #FFFFFF;
  color: #e91e63;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-light matcha-button-toggle[inactivetype=basic][inactivecolor=pink] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=basic][inactivecolor=pink] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(233, 30, 99, 0.2);
}
.theme-default-light matcha-button-toggle[inactivetype=basic][inactivecolor=purple] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=basic][inactivecolor=purple] .button-group a[matcha-button]:not([active]) {
  background: #FFFFFF;
  color: #9c27b0;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-light matcha-button-toggle[inactivetype=basic][inactivecolor=purple] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=basic][inactivecolor=purple] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(156, 39, 176, 0.2);
}
.theme-default-light matcha-button-toggle[inactivetype=basic][inactivecolor=deep-purple] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=basic][inactivecolor=deep-purple] .button-group a[matcha-button]:not([active]) {
  background: #FFFFFF;
  color: #673ab7;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-light matcha-button-toggle[inactivetype=basic][inactivecolor=deep-purple] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=basic][inactivecolor=deep-purple] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(103, 58, 183, 0.2);
}
.theme-default-light matcha-button-toggle[inactivetype=basic][inactivecolor=indigo] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=basic][inactivecolor=indigo] .button-group a[matcha-button]:not([active]) {
  background: #FFFFFF;
  color: #3f51b5;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-light matcha-button-toggle[inactivetype=basic][inactivecolor=indigo] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=basic][inactivecolor=indigo] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(63, 81, 181, 0.2);
}
.theme-default-light matcha-button-toggle[inactivetype=basic][inactivecolor=blue] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=basic][inactivecolor=blue] .button-group a[matcha-button]:not([active]) {
  background: #FFFFFF;
  color: #1e5bda;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-light matcha-button-toggle[inactivetype=basic][inactivecolor=blue] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=basic][inactivecolor=blue] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(30, 91, 218, 0.2);
}
.theme-default-light matcha-button-toggle[inactivetype=basic][inactivecolor=light-blue] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=basic][inactivecolor=light-blue] .button-group a[matcha-button]:not([active]) {
  background: #FFFFFF;
  color: #03a9f4;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-light matcha-button-toggle[inactivetype=basic][inactivecolor=light-blue] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=basic][inactivecolor=light-blue] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(3, 169, 244, 0.2);
}
.theme-default-light matcha-button-toggle[inactivetype=basic][inactivecolor=cyan] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=basic][inactivecolor=cyan] .button-group a[matcha-button]:not([active]) {
  background: #FFFFFF;
  color: #00bcd4;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-light matcha-button-toggle[inactivetype=basic][inactivecolor=cyan] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=basic][inactivecolor=cyan] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(0, 188, 212, 0.2);
}
.theme-default-light matcha-button-toggle[inactivetype=basic][inactivecolor=teal] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=basic][inactivecolor=teal] .button-group a[matcha-button]:not([active]) {
  background: #FFFFFF;
  color: #009688;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-light matcha-button-toggle[inactivetype=basic][inactivecolor=teal] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=basic][inactivecolor=teal] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(0, 150, 136, 0.2);
}
.theme-default-light matcha-button-toggle[inactivetype=basic][inactivecolor=green] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=basic][inactivecolor=green] .button-group a[matcha-button]:not([active]) {
  background: #FFFFFF;
  color: #119046;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-light matcha-button-toggle[inactivetype=basic][inactivecolor=green] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=basic][inactivecolor=green] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(17, 144, 70, 0.2);
}
.theme-default-light matcha-button-toggle[inactivetype=basic][inactivecolor=light-green] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=basic][inactivecolor=light-green] .button-group a[matcha-button]:not([active]) {
  background: #FFFFFF;
  color: #6EDA2C;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-light matcha-button-toggle[inactivetype=basic][inactivecolor=light-green] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=basic][inactivecolor=light-green] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(110, 218, 44, 0.2);
}
.theme-default-light matcha-button-toggle[inactivetype=basic][inactivecolor=lime] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=basic][inactivecolor=lime] .button-group a[matcha-button]:not([active]) {
  background: #FFFFFF;
  color: #86bd00;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-light matcha-button-toggle[inactivetype=basic][inactivecolor=lime] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=basic][inactivecolor=lime] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(134, 189, 0, 0.2);
}
.theme-default-light matcha-button-toggle[inactivetype=basic][inactivecolor=yellow] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=basic][inactivecolor=yellow] .button-group a[matcha-button]:not([active]) {
  background: #FFFFFF;
  color: #e8c300;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-light matcha-button-toggle[inactivetype=basic][inactivecolor=yellow] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=basic][inactivecolor=yellow] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(232, 195, 0, 0.2);
}
.theme-default-light matcha-button-toggle[inactivetype=basic][inactivecolor=amber] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=basic][inactivecolor=amber] .button-group a[matcha-button]:not([active]) {
  background: #FFFFFF;
  color: #faa61a;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-light matcha-button-toggle[inactivetype=basic][inactivecolor=amber] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=basic][inactivecolor=amber] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(250, 166, 26, 0.2);
}
.theme-default-light matcha-button-toggle[inactivetype=basic][inactivecolor=orange] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=basic][inactivecolor=orange] .button-group a[matcha-button]:not([active]) {
  background: #FFFFFF;
  color: #f77814;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-light matcha-button-toggle[inactivetype=basic][inactivecolor=orange] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=basic][inactivecolor=orange] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(247, 120, 20, 0.2);
}
.theme-default-light matcha-button-toggle[inactivetype=basic][inactivecolor=deep-orange] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=basic][inactivecolor=deep-orange] .button-group a[matcha-button]:not([active]) {
  background: #FFFFFF;
  color: #ff5722;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-light matcha-button-toggle[inactivetype=basic][inactivecolor=deep-orange] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=basic][inactivecolor=deep-orange] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(255, 87, 34, 0.2);
}
.theme-default-light matcha-button-toggle[inactivetype=basic][inactivecolor=brown] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=basic][inactivecolor=brown] .button-group a[matcha-button]:not([active]) {
  background: #FFFFFF;
  color: #795548;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-light matcha-button-toggle[inactivetype=basic][inactivecolor=brown] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=basic][inactivecolor=brown] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(121, 85, 72, 0.2);
}
.theme-default-light matcha-button-toggle[inactivetype=basic][inactivecolor=grey] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=basic][inactivecolor=grey] .button-group a[matcha-button]:not([active]) {
  background: #FFFFFF;
  color: #91A0AA;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-light matcha-button-toggle[inactivetype=basic][inactivecolor=grey] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=basic][inactivecolor=grey] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(145, 160, 170, 0.2);
}
.theme-default-light matcha-button-toggle[inactivetype=basic][inactivecolor=blue-grey] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=basic][inactivecolor=blue-grey] .button-group a[matcha-button]:not([active]) {
  background: #FFFFFF;
  color: #7E8E95;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-light matcha-button-toggle[inactivetype=basic][inactivecolor=blue-grey] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=basic][inactivecolor=blue-grey] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(126, 142, 149, 0.2);
}
.theme-default-light matcha-button-toggle[inactivetype=basic][inactivecolor=primary] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=basic][inactivecolor=primary] .button-group a[matcha-button]:not([active]) {
  background: #FFFFFF;
  color: #2B363B;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-light matcha-button-toggle[inactivetype=basic][inactivecolor=primary] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=basic][inactivecolor=primary] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(43, 54, 59, 0.2);
}
.theme-default-light matcha-button-toggle[inactivetype=basic][inactivecolor=accent] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=basic][inactivecolor=accent] .button-group a[matcha-button]:not([active]) {
  background: #FFFFFF;
  color: #1e5bda;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-light matcha-button-toggle[inactivetype=basic][inactivecolor=accent] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=basic][inactivecolor=accent] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(30, 91, 218, 0.2);
}
.theme-default-light matcha-button-toggle[inactivetype=basic][inactivecolor=warn] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=basic][inactivecolor=warn] .button-group a[matcha-button]:not([active]) {
  background: #FFFFFF;
  color: #d31818;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-light matcha-button-toggle[inactivetype=basic][inactivecolor=warn] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=basic][inactivecolor=warn] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(211, 24, 24, 0.2);
}
.theme-default-light matcha-button-toggle[inactivetype=basic][inactivecolor=disabled] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=basic][inactivecolor=disabled] .button-group a[matcha-button]:not([active]) {
  background: #FFFFFF;
  color: #E2E7E9;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-light matcha-button-toggle[inactivetype=basic][inactivecolor=disabled] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=basic][inactivecolor=disabled] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(226, 231, 233, 0.5);
}
.theme-default-light matcha-button-toggle[inactivetype=basic][disabled] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=basic][disabled] .button-group a[matcha-button]:not([active]), .theme-default-light matcha-button-toggle[inactivetype=basic][disabled]:not([disabled=false]) .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=basic][disabled]:not([disabled=false]) .button-group a[matcha-button]:not([active]), .theme-default-light matcha-button-toggle[inactivetype=basic][disabled=true] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=basic][disabled=true] .button-group a[matcha-button]:not([active]) {
  background: #FFFFFF;
  color: #E2E7E9;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-light matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=red] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=red] .button-group a[matcha-button]:not([active]) {
  color: #e53a3a;
  background: transparent;
  box-shadow: 0 0 0 2px #e53a3a inset;
}
.theme-default-light matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=red] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=red] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(229, 58, 58, 0.2);
}
.theme-default-light matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=pink] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=pink] .button-group a[matcha-button]:not([active]) {
  color: #e91e63;
  background: transparent;
  box-shadow: 0 0 0 2px #e91e63 inset;
}
.theme-default-light matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=pink] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=pink] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(233, 30, 99, 0.2);
}
.theme-default-light matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=purple] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=purple] .button-group a[matcha-button]:not([active]) {
  color: #9c27b0;
  background: transparent;
  box-shadow: 0 0 0 2px #9c27b0 inset;
}
.theme-default-light matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=purple] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=purple] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(156, 39, 176, 0.2);
}
.theme-default-light matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=deep-purple] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=deep-purple] .button-group a[matcha-button]:not([active]) {
  color: #673ab7;
  background: transparent;
  box-shadow: 0 0 0 2px #673ab7 inset;
}
.theme-default-light matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=deep-purple] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=deep-purple] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(103, 58, 183, 0.2);
}
.theme-default-light matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=indigo] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=indigo] .button-group a[matcha-button]:not([active]) {
  color: #3f51b5;
  background: transparent;
  box-shadow: 0 0 0 2px #3f51b5 inset;
}
.theme-default-light matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=indigo] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=indigo] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(63, 81, 181, 0.2);
}
.theme-default-light matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=blue] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=blue] .button-group a[matcha-button]:not([active]) {
  color: #1e5bda;
  background: transparent;
  box-shadow: 0 0 0 2px #1e5bda inset;
}
.theme-default-light matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=blue] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=blue] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(30, 91, 218, 0.2);
}
.theme-default-light matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=light-blue] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=light-blue] .button-group a[matcha-button]:not([active]) {
  color: #03a9f4;
  background: transparent;
  box-shadow: 0 0 0 2px #03a9f4 inset;
}
.theme-default-light matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=light-blue] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=light-blue] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(3, 169, 244, 0.2);
}
.theme-default-light matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=cyan] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=cyan] .button-group a[matcha-button]:not([active]) {
  color: #00bcd4;
  background: transparent;
  box-shadow: 0 0 0 2px #00bcd4 inset;
}
.theme-default-light matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=cyan] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=cyan] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(0, 188, 212, 0.2);
}
.theme-default-light matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=teal] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=teal] .button-group a[matcha-button]:not([active]) {
  color: #009688;
  background: transparent;
  box-shadow: 0 0 0 2px #009688 inset;
}
.theme-default-light matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=teal] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=teal] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(0, 150, 136, 0.2);
}
.theme-default-light matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=green] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=green] .button-group a[matcha-button]:not([active]) {
  color: #119046;
  background: transparent;
  box-shadow: 0 0 0 2px #119046 inset;
}
.theme-default-light matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=green] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=green] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(17, 144, 70, 0.2);
}
.theme-default-light matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=light-green] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=light-green] .button-group a[matcha-button]:not([active]) {
  color: #6EDA2C;
  background: transparent;
  box-shadow: 0 0 0 2px #6EDA2C inset;
}
.theme-default-light matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=light-green] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=light-green] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(110, 218, 44, 0.2);
}
.theme-default-light matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=lime] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=lime] .button-group a[matcha-button]:not([active]) {
  color: #86bd00;
  background: transparent;
  box-shadow: 0 0 0 2px #86bd00 inset;
}
.theme-default-light matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=lime] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=lime] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(134, 189, 0, 0.2);
}
.theme-default-light matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=yellow] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=yellow] .button-group a[matcha-button]:not([active]) {
  color: #e8c300;
  background: transparent;
  box-shadow: 0 0 0 2px #e8c300 inset;
}
.theme-default-light matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=yellow] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=yellow] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(232, 195, 0, 0.2);
}
.theme-default-light matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=amber] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=amber] .button-group a[matcha-button]:not([active]) {
  color: #faa61a;
  background: transparent;
  box-shadow: 0 0 0 2px #faa61a inset;
}
.theme-default-light matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=amber] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=amber] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(250, 166, 26, 0.2);
}
.theme-default-light matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=orange] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=orange] .button-group a[matcha-button]:not([active]) {
  color: #f77814;
  background: transparent;
  box-shadow: 0 0 0 2px #f77814 inset;
}
.theme-default-light matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=orange] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=orange] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(247, 120, 20, 0.2);
}
.theme-default-light matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=deep-orange] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=deep-orange] .button-group a[matcha-button]:not([active]) {
  color: #ff5722;
  background: transparent;
  box-shadow: 0 0 0 2px #ff5722 inset;
}
.theme-default-light matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=deep-orange] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=deep-orange] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(255, 87, 34, 0.2);
}
.theme-default-light matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=brown] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=brown] .button-group a[matcha-button]:not([active]) {
  color: #795548;
  background: transparent;
  box-shadow: 0 0 0 2px #795548 inset;
}
.theme-default-light matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=brown] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=brown] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(121, 85, 72, 0.2);
}
.theme-default-light matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=grey] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=grey] .button-group a[matcha-button]:not([active]) {
  color: #91A0AA;
  background: transparent;
  box-shadow: 0 0 0 2px #91A0AA inset;
}
.theme-default-light matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=grey] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=grey] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(145, 160, 170, 0.2);
}
.theme-default-light matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=blue-grey] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=blue-grey] .button-group a[matcha-button]:not([active]) {
  color: #7E8E95;
  background: transparent;
  box-shadow: 0 0 0 2px #7E8E95 inset;
}
.theme-default-light matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=blue-grey] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=blue-grey] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(126, 142, 149, 0.2);
}
.theme-default-light matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=primary] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=primary] .button-group a[matcha-button]:not([active]) {
  color: #2B363B;
  background: transparent;
  box-shadow: 0 0 0 2px #2B363B inset;
}
.theme-default-light matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=primary] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=primary] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(43, 54, 59, 0.2);
}
.theme-default-light matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=accent] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=accent] .button-group a[matcha-button]:not([active]) {
  color: #1e5bda;
  background: transparent;
  box-shadow: 0 0 0 2px #1e5bda inset;
}
.theme-default-light matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=accent] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=accent] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(30, 91, 218, 0.2);
}
.theme-default-light matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=warn] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=warn] .button-group a[matcha-button]:not([active]) {
  color: #d31818;
  background: transparent;
  box-shadow: 0 0 0 2px #d31818 inset;
}
.theme-default-light matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=warn] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=warn] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(211, 24, 24, 0.2);
}
.theme-default-light matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=disabled] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=disabled] .button-group a[matcha-button]:not([active]) {
  color: #E2E7E9;
  background: transparent;
  box-shadow: 0 0 0 2px #E2E7E9 inset;
}
.theme-default-light matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=disabled] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=disabled] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(226, 231, 233, 0.5);
}
.theme-default-light matcha-button-toggle[inactivetype=outline][disabled] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=outline][disabled] .button-group a[matcha-button]:not([active]), .theme-default-light matcha-button-toggle[inactivetype=outline][disabled]:not([disabled=false]) .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=outline][disabled]:not([disabled=false]) .button-group a[matcha-button]:not([active]), .theme-default-light matcha-button-toggle[inactivetype=outline][disabled=true] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=outline][disabled=true] .button-group a[matcha-button]:not([active]) {
  background: transparent;
  color: #E2E7E9;
  box-shadow: 0 0 0 2px inset;
  pointer-events: none;
}
.theme-default-light matcha-button-toggle[inactivetype=alpha][inactivecolor=red] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=alpha][inactivecolor=red] .button-group a[matcha-button]:not([active]) {
  color: #e53a3a;
  background: rgba(229, 58, 58, 0.2);
  box-shadow: 0 0 0 0px;
}
.theme-default-light matcha-button-toggle[inactivetype=alpha][inactivecolor=red] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=alpha][inactivecolor=red] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(255, 255, 255, 0.2);
}
.theme-default-light matcha-button-toggle[inactivetype=alpha][inactivecolor=pink] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=alpha][inactivecolor=pink] .button-group a[matcha-button]:not([active]) {
  color: #e91e63;
  background: rgba(233, 30, 99, 0.2);
  box-shadow: 0 0 0 0px;
}
.theme-default-light matcha-button-toggle[inactivetype=alpha][inactivecolor=pink] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=alpha][inactivecolor=pink] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(255, 255, 255, 0.2);
}
.theme-default-light matcha-button-toggle[inactivetype=alpha][inactivecolor=purple] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=alpha][inactivecolor=purple] .button-group a[matcha-button]:not([active]) {
  color: #9c27b0;
  background: rgba(156, 39, 176, 0.2);
  box-shadow: 0 0 0 0px;
}
.theme-default-light matcha-button-toggle[inactivetype=alpha][inactivecolor=purple] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=alpha][inactivecolor=purple] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(255, 255, 255, 0.2);
}
.theme-default-light matcha-button-toggle[inactivetype=alpha][inactivecolor=deep-purple] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=alpha][inactivecolor=deep-purple] .button-group a[matcha-button]:not([active]) {
  color: #673ab7;
  background: rgba(103, 58, 183, 0.2);
  box-shadow: 0 0 0 0px;
}
.theme-default-light matcha-button-toggle[inactivetype=alpha][inactivecolor=deep-purple] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=alpha][inactivecolor=deep-purple] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(255, 255, 255, 0.2);
}
.theme-default-light matcha-button-toggle[inactivetype=alpha][inactivecolor=indigo] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=alpha][inactivecolor=indigo] .button-group a[matcha-button]:not([active]) {
  color: #3f51b5;
  background: rgba(63, 81, 181, 0.2);
  box-shadow: 0 0 0 0px;
}
.theme-default-light matcha-button-toggle[inactivetype=alpha][inactivecolor=indigo] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=alpha][inactivecolor=indigo] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(255, 255, 255, 0.2);
}
.theme-default-light matcha-button-toggle[inactivetype=alpha][inactivecolor=blue] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=alpha][inactivecolor=blue] .button-group a[matcha-button]:not([active]) {
  color: #1e5bda;
  background: rgba(30, 91, 218, 0.2);
  box-shadow: 0 0 0 0px;
}
.theme-default-light matcha-button-toggle[inactivetype=alpha][inactivecolor=blue] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=alpha][inactivecolor=blue] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(255, 255, 255, 0.2);
}
.theme-default-light matcha-button-toggle[inactivetype=alpha][inactivecolor=light-blue] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=alpha][inactivecolor=light-blue] .button-group a[matcha-button]:not([active]) {
  color: #03a9f4;
  background: rgba(3, 169, 244, 0.2);
  box-shadow: 0 0 0 0px;
}
.theme-default-light matcha-button-toggle[inactivetype=alpha][inactivecolor=light-blue] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=alpha][inactivecolor=light-blue] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(255, 255, 255, 0.2);
}
.theme-default-light matcha-button-toggle[inactivetype=alpha][inactivecolor=cyan] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=alpha][inactivecolor=cyan] .button-group a[matcha-button]:not([active]) {
  color: #00bcd4;
  background: rgba(0, 188, 212, 0.2);
  box-shadow: 0 0 0 0px;
}
.theme-default-light matcha-button-toggle[inactivetype=alpha][inactivecolor=cyan] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=alpha][inactivecolor=cyan] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(255, 255, 255, 0.2);
}
.theme-default-light matcha-button-toggle[inactivetype=alpha][inactivecolor=teal] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=alpha][inactivecolor=teal] .button-group a[matcha-button]:not([active]) {
  color: #009688;
  background: rgba(0, 150, 136, 0.2);
  box-shadow: 0 0 0 0px;
}
.theme-default-light matcha-button-toggle[inactivetype=alpha][inactivecolor=teal] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=alpha][inactivecolor=teal] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(255, 255, 255, 0.2);
}
.theme-default-light matcha-button-toggle[inactivetype=alpha][inactivecolor=green] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=alpha][inactivecolor=green] .button-group a[matcha-button]:not([active]) {
  color: #119046;
  background: rgba(17, 144, 70, 0.2);
  box-shadow: 0 0 0 0px;
}
.theme-default-light matcha-button-toggle[inactivetype=alpha][inactivecolor=green] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=alpha][inactivecolor=green] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(255, 255, 255, 0.2);
}
.theme-default-light matcha-button-toggle[inactivetype=alpha][inactivecolor=light-green] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=alpha][inactivecolor=light-green] .button-group a[matcha-button]:not([active]) {
  color: #6EDA2C;
  background: rgba(110, 218, 44, 0.2);
  box-shadow: 0 0 0 0px;
}
.theme-default-light matcha-button-toggle[inactivetype=alpha][inactivecolor=light-green] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=alpha][inactivecolor=light-green] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(0, 0, 0, 0.2);
}
.theme-default-light matcha-button-toggle[inactivetype=alpha][inactivecolor=lime] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=alpha][inactivecolor=lime] .button-group a[matcha-button]:not([active]) {
  color: #86bd00;
  background: rgba(134, 189, 0, 0.2);
  box-shadow: 0 0 0 0px;
}
.theme-default-light matcha-button-toggle[inactivetype=alpha][inactivecolor=lime] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=alpha][inactivecolor=lime] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(255, 255, 255, 0.2);
}
.theme-default-light matcha-button-toggle[inactivetype=alpha][inactivecolor=yellow] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=alpha][inactivecolor=yellow] .button-group a[matcha-button]:not([active]) {
  color: #e8c300;
  background: rgba(232, 195, 0, 0.2);
  box-shadow: 0 0 0 0px;
}
.theme-default-light matcha-button-toggle[inactivetype=alpha][inactivecolor=yellow] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=alpha][inactivecolor=yellow] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(0, 0, 0, 0.2);
}
.theme-default-light matcha-button-toggle[inactivetype=alpha][inactivecolor=amber] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=alpha][inactivecolor=amber] .button-group a[matcha-button]:not([active]) {
  color: #faa61a;
  background: rgba(250, 166, 26, 0.2);
  box-shadow: 0 0 0 0px;
}
.theme-default-light matcha-button-toggle[inactivetype=alpha][inactivecolor=amber] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=alpha][inactivecolor=amber] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(0, 0, 0, 0.2);
}
.theme-default-light matcha-button-toggle[inactivetype=alpha][inactivecolor=orange] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=alpha][inactivecolor=orange] .button-group a[matcha-button]:not([active]) {
  color: #f77814;
  background: rgba(247, 120, 20, 0.2);
  box-shadow: 0 0 0 0px;
}
.theme-default-light matcha-button-toggle[inactivetype=alpha][inactivecolor=orange] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=alpha][inactivecolor=orange] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(0, 0, 0, 0.2);
}
.theme-default-light matcha-button-toggle[inactivetype=alpha][inactivecolor=deep-orange] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=alpha][inactivecolor=deep-orange] .button-group a[matcha-button]:not([active]) {
  color: #ff5722;
  background: rgba(255, 87, 34, 0.2);
  box-shadow: 0 0 0 0px;
}
.theme-default-light matcha-button-toggle[inactivetype=alpha][inactivecolor=deep-orange] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=alpha][inactivecolor=deep-orange] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(255, 255, 255, 0.2);
}
.theme-default-light matcha-button-toggle[inactivetype=alpha][inactivecolor=brown] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=alpha][inactivecolor=brown] .button-group a[matcha-button]:not([active]) {
  color: #795548;
  background: rgba(121, 85, 72, 0.2);
  box-shadow: 0 0 0 0px;
}
.theme-default-light matcha-button-toggle[inactivetype=alpha][inactivecolor=brown] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=alpha][inactivecolor=brown] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(255, 255, 255, 0.2);
}
.theme-default-light matcha-button-toggle[inactivetype=alpha][inactivecolor=grey] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=alpha][inactivecolor=grey] .button-group a[matcha-button]:not([active]) {
  color: #91A0AA;
  background: rgba(145, 160, 170, 0.2);
  box-shadow: 0 0 0 0px;
}
.theme-default-light matcha-button-toggle[inactivetype=alpha][inactivecolor=grey] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=alpha][inactivecolor=grey] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(255, 255, 255, 0.2);
}
.theme-default-light matcha-button-toggle[inactivetype=alpha][inactivecolor=blue-grey] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=alpha][inactivecolor=blue-grey] .button-group a[matcha-button]:not([active]) {
  color: #7E8E95;
  background: rgba(126, 142, 149, 0.2);
  box-shadow: 0 0 0 0px;
}
.theme-default-light matcha-button-toggle[inactivetype=alpha][inactivecolor=blue-grey] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=alpha][inactivecolor=blue-grey] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(255, 255, 255, 0.2);
}
.theme-default-light matcha-button-toggle[inactivetype=alpha][inactivecolor=primary] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=alpha][inactivecolor=primary] .button-group a[matcha-button]:not([active]) {
  color: #2B363B;
  background: rgba(43, 54, 59, 0.2);
  box-shadow: 0 0 0 0px;
}
.theme-default-light matcha-button-toggle[inactivetype=alpha][inactivecolor=primary] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=alpha][inactivecolor=primary] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(255, 255, 255, 0.2);
}
.theme-default-light matcha-button-toggle[inactivetype=alpha][inactivecolor=accent] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=alpha][inactivecolor=accent] .button-group a[matcha-button]:not([active]) {
  color: #1e5bda;
  background: rgba(30, 91, 218, 0.2);
  box-shadow: 0 0 0 0px;
}
.theme-default-light matcha-button-toggle[inactivetype=alpha][inactivecolor=accent] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=alpha][inactivecolor=accent] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(255, 255, 255, 0.2);
}
.theme-default-light matcha-button-toggle[inactivetype=alpha][inactivecolor=warn] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=alpha][inactivecolor=warn] .button-group a[matcha-button]:not([active]) {
  color: #d31818;
  background: rgba(211, 24, 24, 0.2);
  box-shadow: 0 0 0 0px;
}
.theme-default-light matcha-button-toggle[inactivetype=alpha][inactivecolor=warn] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=alpha][inactivecolor=warn] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(255, 255, 255, 0.2);
}
.theme-default-light matcha-button-toggle[inactivetype=alpha][inactivecolor=disabled] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=alpha][inactivecolor=disabled] .button-group a[matcha-button]:not([active]) {
  color: #E2E7E9;
  background: rgba(226, 231, 233, 0.5);
  box-shadow: 0 0 0 0px;
}
.theme-default-light matcha-button-toggle[inactivetype=alpha][inactivecolor=disabled] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=alpha][inactivecolor=disabled] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(226, 231, 233, 0.5);
}
.theme-default-light matcha-button-toggle[inactivetype=alpha][disabled] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=alpha][disabled] .button-group a[matcha-button]:not([active]), .theme-default-light matcha-button-toggle[inactivetype=alpha][disabled]:not([disabled=false]) .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=alpha][disabled]:not([disabled=false]) .button-group a[matcha-button]:not([active]), .theme-default-light matcha-button-toggle[inactivetype=alpha][disabled=true] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=alpha][disabled=true] .button-group a[matcha-button]:not([active]) {
  background: rgba(226, 231, 233, 0.5);
  color: #E2E7E9;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-light matcha-button-toggle[inactivetype=link][inactivecolor=red] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=link][inactivecolor=red] .button-group a[matcha-button]:not([active]) {
  background: transparent;
  color: #e53a3a;
  box-shadow: 0 0 0 0px;
}
.theme-default-light matcha-button-toggle[inactivetype=link][inactivecolor=red] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=link][inactivecolor=red] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(229, 58, 58, 0.2);
}
.theme-default-light matcha-button-toggle[inactivetype=link][inactivecolor=pink] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=link][inactivecolor=pink] .button-group a[matcha-button]:not([active]) {
  background: transparent;
  color: #e91e63;
  box-shadow: 0 0 0 0px;
}
.theme-default-light matcha-button-toggle[inactivetype=link][inactivecolor=pink] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=link][inactivecolor=pink] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(233, 30, 99, 0.2);
}
.theme-default-light matcha-button-toggle[inactivetype=link][inactivecolor=purple] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=link][inactivecolor=purple] .button-group a[matcha-button]:not([active]) {
  background: transparent;
  color: #9c27b0;
  box-shadow: 0 0 0 0px;
}
.theme-default-light matcha-button-toggle[inactivetype=link][inactivecolor=purple] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=link][inactivecolor=purple] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(156, 39, 176, 0.2);
}
.theme-default-light matcha-button-toggle[inactivetype=link][inactivecolor=deep-purple] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=link][inactivecolor=deep-purple] .button-group a[matcha-button]:not([active]) {
  background: transparent;
  color: #673ab7;
  box-shadow: 0 0 0 0px;
}
.theme-default-light matcha-button-toggle[inactivetype=link][inactivecolor=deep-purple] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=link][inactivecolor=deep-purple] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(103, 58, 183, 0.2);
}
.theme-default-light matcha-button-toggle[inactivetype=link][inactivecolor=indigo] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=link][inactivecolor=indigo] .button-group a[matcha-button]:not([active]) {
  background: transparent;
  color: #3f51b5;
  box-shadow: 0 0 0 0px;
}
.theme-default-light matcha-button-toggle[inactivetype=link][inactivecolor=indigo] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=link][inactivecolor=indigo] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(63, 81, 181, 0.2);
}
.theme-default-light matcha-button-toggle[inactivetype=link][inactivecolor=blue] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=link][inactivecolor=blue] .button-group a[matcha-button]:not([active]) {
  background: transparent;
  color: #1e5bda;
  box-shadow: 0 0 0 0px;
}
.theme-default-light matcha-button-toggle[inactivetype=link][inactivecolor=blue] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=link][inactivecolor=blue] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(30, 91, 218, 0.2);
}
.theme-default-light matcha-button-toggle[inactivetype=link][inactivecolor=light-blue] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=link][inactivecolor=light-blue] .button-group a[matcha-button]:not([active]) {
  background: transparent;
  color: #03a9f4;
  box-shadow: 0 0 0 0px;
}
.theme-default-light matcha-button-toggle[inactivetype=link][inactivecolor=light-blue] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=link][inactivecolor=light-blue] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(3, 169, 244, 0.2);
}
.theme-default-light matcha-button-toggle[inactivetype=link][inactivecolor=cyan] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=link][inactivecolor=cyan] .button-group a[matcha-button]:not([active]) {
  background: transparent;
  color: #00bcd4;
  box-shadow: 0 0 0 0px;
}
.theme-default-light matcha-button-toggle[inactivetype=link][inactivecolor=cyan] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=link][inactivecolor=cyan] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(0, 188, 212, 0.2);
}
.theme-default-light matcha-button-toggle[inactivetype=link][inactivecolor=teal] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=link][inactivecolor=teal] .button-group a[matcha-button]:not([active]) {
  background: transparent;
  color: #009688;
  box-shadow: 0 0 0 0px;
}
.theme-default-light matcha-button-toggle[inactivetype=link][inactivecolor=teal] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=link][inactivecolor=teal] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(0, 150, 136, 0.2);
}
.theme-default-light matcha-button-toggle[inactivetype=link][inactivecolor=green] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=link][inactivecolor=green] .button-group a[matcha-button]:not([active]) {
  background: transparent;
  color: #119046;
  box-shadow: 0 0 0 0px;
}
.theme-default-light matcha-button-toggle[inactivetype=link][inactivecolor=green] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=link][inactivecolor=green] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(17, 144, 70, 0.2);
}
.theme-default-light matcha-button-toggle[inactivetype=link][inactivecolor=light-green] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=link][inactivecolor=light-green] .button-group a[matcha-button]:not([active]) {
  background: transparent;
  color: #6EDA2C;
  box-shadow: 0 0 0 0px;
}
.theme-default-light matcha-button-toggle[inactivetype=link][inactivecolor=light-green] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=link][inactivecolor=light-green] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(110, 218, 44, 0.2);
}
.theme-default-light matcha-button-toggle[inactivetype=link][inactivecolor=lime] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=link][inactivecolor=lime] .button-group a[matcha-button]:not([active]) {
  background: transparent;
  color: #86bd00;
  box-shadow: 0 0 0 0px;
}
.theme-default-light matcha-button-toggle[inactivetype=link][inactivecolor=lime] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=link][inactivecolor=lime] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(134, 189, 0, 0.2);
}
.theme-default-light matcha-button-toggle[inactivetype=link][inactivecolor=yellow] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=link][inactivecolor=yellow] .button-group a[matcha-button]:not([active]) {
  background: transparent;
  color: #e8c300;
  box-shadow: 0 0 0 0px;
}
.theme-default-light matcha-button-toggle[inactivetype=link][inactivecolor=yellow] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=link][inactivecolor=yellow] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(232, 195, 0, 0.2);
}
.theme-default-light matcha-button-toggle[inactivetype=link][inactivecolor=amber] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=link][inactivecolor=amber] .button-group a[matcha-button]:not([active]) {
  background: transparent;
  color: #faa61a;
  box-shadow: 0 0 0 0px;
}
.theme-default-light matcha-button-toggle[inactivetype=link][inactivecolor=amber] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=link][inactivecolor=amber] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(250, 166, 26, 0.2);
}
.theme-default-light matcha-button-toggle[inactivetype=link][inactivecolor=orange] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=link][inactivecolor=orange] .button-group a[matcha-button]:not([active]) {
  background: transparent;
  color: #f77814;
  box-shadow: 0 0 0 0px;
}
.theme-default-light matcha-button-toggle[inactivetype=link][inactivecolor=orange] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=link][inactivecolor=orange] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(247, 120, 20, 0.2);
}
.theme-default-light matcha-button-toggle[inactivetype=link][inactivecolor=deep-orange] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=link][inactivecolor=deep-orange] .button-group a[matcha-button]:not([active]) {
  background: transparent;
  color: #ff5722;
  box-shadow: 0 0 0 0px;
}
.theme-default-light matcha-button-toggle[inactivetype=link][inactivecolor=deep-orange] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=link][inactivecolor=deep-orange] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(255, 87, 34, 0.2);
}
.theme-default-light matcha-button-toggle[inactivetype=link][inactivecolor=brown] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=link][inactivecolor=brown] .button-group a[matcha-button]:not([active]) {
  background: transparent;
  color: #795548;
  box-shadow: 0 0 0 0px;
}
.theme-default-light matcha-button-toggle[inactivetype=link][inactivecolor=brown] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=link][inactivecolor=brown] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(121, 85, 72, 0.2);
}
.theme-default-light matcha-button-toggle[inactivetype=link][inactivecolor=grey] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=link][inactivecolor=grey] .button-group a[matcha-button]:not([active]) {
  background: transparent;
  color: #91A0AA;
  box-shadow: 0 0 0 0px;
}
.theme-default-light matcha-button-toggle[inactivetype=link][inactivecolor=grey] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=link][inactivecolor=grey] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(145, 160, 170, 0.2);
}
.theme-default-light matcha-button-toggle[inactivetype=link][inactivecolor=blue-grey] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=link][inactivecolor=blue-grey] .button-group a[matcha-button]:not([active]) {
  background: transparent;
  color: #7E8E95;
  box-shadow: 0 0 0 0px;
}
.theme-default-light matcha-button-toggle[inactivetype=link][inactivecolor=blue-grey] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=link][inactivecolor=blue-grey] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(126, 142, 149, 0.2);
}
.theme-default-light matcha-button-toggle[inactivetype=link][inactivecolor=primary] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=link][inactivecolor=primary] .button-group a[matcha-button]:not([active]) {
  background: transparent;
  color: #2B363B;
  box-shadow: 0 0 0 0px;
}
.theme-default-light matcha-button-toggle[inactivetype=link][inactivecolor=primary] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=link][inactivecolor=primary] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(43, 54, 59, 0.2);
}
.theme-default-light matcha-button-toggle[inactivetype=link][inactivecolor=accent] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=link][inactivecolor=accent] .button-group a[matcha-button]:not([active]) {
  background: transparent;
  color: #1e5bda;
  box-shadow: 0 0 0 0px;
}
.theme-default-light matcha-button-toggle[inactivetype=link][inactivecolor=accent] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=link][inactivecolor=accent] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(30, 91, 218, 0.2);
}
.theme-default-light matcha-button-toggle[inactivetype=link][inactivecolor=warn] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=link][inactivecolor=warn] .button-group a[matcha-button]:not([active]) {
  background: transparent;
  color: #d31818;
  box-shadow: 0 0 0 0px;
}
.theme-default-light matcha-button-toggle[inactivetype=link][inactivecolor=warn] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=link][inactivecolor=warn] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(211, 24, 24, 0.2);
}
.theme-default-light matcha-button-toggle[inactivetype=link][inactivecolor=disabled] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=link][inactivecolor=disabled] .button-group a[matcha-button]:not([active]) {
  background: transparent;
  color: #E2E7E9;
  box-shadow: 0 0 0 0px;
}
.theme-default-light matcha-button-toggle[inactivetype=link][inactivecolor=disabled] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-light matcha-button-toggle[inactivetype=link][inactivecolor=disabled] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(226, 231, 233, 0.5);
}
.theme-default-light matcha-button-toggle[inactivetype=link][disabled] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=link][disabled] .button-group a[matcha-button]:not([active]), .theme-default-light matcha-button-toggle[inactivetype=link][disabled]:not([disabled=false]) .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=link][disabled]:not([disabled=false]) .button-group a[matcha-button]:not([active]), .theme-default-light matcha-button-toggle[inactivetype=link][disabled=true] .button-group button[matcha-button]:not([active]),
.theme-default-light matcha-button-toggle[inactivetype=link][disabled=true] .button-group a[matcha-button]:not([active]) {
  background: transparent;
  color: #E2E7E9;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-light matcha-button-toggle[disabled] .button-group button[matcha-button][active],
.theme-default-light matcha-button-toggle[disabled] .button-group a[matcha-button][active], .theme-default-light matcha-button-toggle[disabled]:not([disabled=false]) .button-group button[matcha-button][active],
.theme-default-light matcha-button-toggle[disabled]:not([disabled=false]) .button-group a[matcha-button][active], .theme-default-light matcha-button-toggle[disabled=true] .button-group button[matcha-button][active],
.theme-default-light matcha-button-toggle[disabled=true] .button-group a[matcha-button][active] {
  background: #E2E7E9;
  color: rgba(33, 40, 44, 0.5);
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-light matcha-button-toggle[disabled] .button-group button[matcha-button][active][outline], .theme-default-light matcha-button-toggle[disabled] .button-group button[matcha-button][active][outline]:not([outline=false]), .theme-default-light matcha-button-toggle[disabled] .button-group button[matcha-button][active][outline=true],
.theme-default-light matcha-button-toggle[disabled] .button-group a[matcha-button][active][outline],
.theme-default-light matcha-button-toggle[disabled] .button-group a[matcha-button][active][outline]:not([outline=false]),
.theme-default-light matcha-button-toggle[disabled] .button-group a[matcha-button][active][outline=true], .theme-default-light matcha-button-toggle[disabled]:not([disabled=false]) .button-group button[matcha-button][active][outline], .theme-default-light matcha-button-toggle[disabled]:not([disabled=false]) .button-group button[matcha-button][active][outline]:not([outline=false]), .theme-default-light matcha-button-toggle[disabled]:not([disabled=false]) .button-group button[matcha-button][active][outline=true],
.theme-default-light matcha-button-toggle[disabled]:not([disabled=false]) .button-group a[matcha-button][active][outline],
.theme-default-light matcha-button-toggle[disabled]:not([disabled=false]) .button-group a[matcha-button][active][outline]:not([outline=false]),
.theme-default-light matcha-button-toggle[disabled]:not([disabled=false]) .button-group a[matcha-button][active][outline=true], .theme-default-light matcha-button-toggle[disabled=true] .button-group button[matcha-button][active][outline], .theme-default-light matcha-button-toggle[disabled=true] .button-group button[matcha-button][active][outline]:not([outline=false]), .theme-default-light matcha-button-toggle[disabled=true] .button-group button[matcha-button][active][outline=true],
.theme-default-light matcha-button-toggle[disabled=true] .button-group a[matcha-button][active][outline],
.theme-default-light matcha-button-toggle[disabled=true] .button-group a[matcha-button][active][outline]:not([outline=false]),
.theme-default-light matcha-button-toggle[disabled=true] .button-group a[matcha-button][active][outline=true] {
  background: transparent;
  color: #E2E7E9;
  box-shadow: 0 0 0 2px inset;
  pointer-events: none;
}
.theme-default-light matcha-button-toggle[disabled] .button-group button[matcha-button][active][basic], .theme-default-light matcha-button-toggle[disabled] .button-group button[matcha-button][active][basic]:not([basic=false]), .theme-default-light matcha-button-toggle[disabled] .button-group button[matcha-button][active][basic=true],
.theme-default-light matcha-button-toggle[disabled] .button-group a[matcha-button][active][basic],
.theme-default-light matcha-button-toggle[disabled] .button-group a[matcha-button][active][basic]:not([basic=false]),
.theme-default-light matcha-button-toggle[disabled] .button-group a[matcha-button][active][basic=true], .theme-default-light matcha-button-toggle[disabled]:not([disabled=false]) .button-group button[matcha-button][active][basic], .theme-default-light matcha-button-toggle[disabled]:not([disabled=false]) .button-group button[matcha-button][active][basic]:not([basic=false]), .theme-default-light matcha-button-toggle[disabled]:not([disabled=false]) .button-group button[matcha-button][active][basic=true],
.theme-default-light matcha-button-toggle[disabled]:not([disabled=false]) .button-group a[matcha-button][active][basic],
.theme-default-light matcha-button-toggle[disabled]:not([disabled=false]) .button-group a[matcha-button][active][basic]:not([basic=false]),
.theme-default-light matcha-button-toggle[disabled]:not([disabled=false]) .button-group a[matcha-button][active][basic=true], .theme-default-light matcha-button-toggle[disabled=true] .button-group button[matcha-button][active][basic], .theme-default-light matcha-button-toggle[disabled=true] .button-group button[matcha-button][active][basic]:not([basic=false]), .theme-default-light matcha-button-toggle[disabled=true] .button-group button[matcha-button][active][basic=true],
.theme-default-light matcha-button-toggle[disabled=true] .button-group a[matcha-button][active][basic],
.theme-default-light matcha-button-toggle[disabled=true] .button-group a[matcha-button][active][basic]:not([basic=false]),
.theme-default-light matcha-button-toggle[disabled=true] .button-group a[matcha-button][active][basic=true] {
  background: #FFFFFF;
  color: #E2E7E9;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-light matcha-button-toggle[disabled] .button-group button[matcha-button][active][alpha], .theme-default-light matcha-button-toggle[disabled] .button-group button[matcha-button][active][alpha]:not([alpha=false]), .theme-default-light matcha-button-toggle[disabled] .button-group button[matcha-button][active][alpha=true],
.theme-default-light matcha-button-toggle[disabled] .button-group a[matcha-button][active][alpha],
.theme-default-light matcha-button-toggle[disabled] .button-group a[matcha-button][active][alpha]:not([alpha=false]),
.theme-default-light matcha-button-toggle[disabled] .button-group a[matcha-button][active][alpha=true], .theme-default-light matcha-button-toggle[disabled]:not([disabled=false]) .button-group button[matcha-button][active][alpha], .theme-default-light matcha-button-toggle[disabled]:not([disabled=false]) .button-group button[matcha-button][active][alpha]:not([alpha=false]), .theme-default-light matcha-button-toggle[disabled]:not([disabled=false]) .button-group button[matcha-button][active][alpha=true],
.theme-default-light matcha-button-toggle[disabled]:not([disabled=false]) .button-group a[matcha-button][active][alpha],
.theme-default-light matcha-button-toggle[disabled]:not([disabled=false]) .button-group a[matcha-button][active][alpha]:not([alpha=false]),
.theme-default-light matcha-button-toggle[disabled]:not([disabled=false]) .button-group a[matcha-button][active][alpha=true], .theme-default-light matcha-button-toggle[disabled=true] .button-group button[matcha-button][active][alpha], .theme-default-light matcha-button-toggle[disabled=true] .button-group button[matcha-button][active][alpha]:not([alpha=false]), .theme-default-light matcha-button-toggle[disabled=true] .button-group button[matcha-button][active][alpha=true],
.theme-default-light matcha-button-toggle[disabled=true] .button-group a[matcha-button][active][alpha],
.theme-default-light matcha-button-toggle[disabled=true] .button-group a[matcha-button][active][alpha]:not([alpha=false]),
.theme-default-light matcha-button-toggle[disabled=true] .button-group a[matcha-button][active][alpha=true] {
  background: rgba(226, 231, 233, 0.5);
  color: #E2E7E9;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-light matcha-button-toggle[disabled] .button-group button[matcha-button][active][link], .theme-default-light matcha-button-toggle[disabled] .button-group button[matcha-button][active][link]:not([link=false]), .theme-default-light matcha-button-toggle[disabled] .button-group button[matcha-button][active][link=true],
.theme-default-light matcha-button-toggle[disabled] .button-group a[matcha-button][active][link],
.theme-default-light matcha-button-toggle[disabled] .button-group a[matcha-button][active][link]:not([link=false]),
.theme-default-light matcha-button-toggle[disabled] .button-group a[matcha-button][active][link=true], .theme-default-light matcha-button-toggle[disabled]:not([disabled=false]) .button-group button[matcha-button][active][link], .theme-default-light matcha-button-toggle[disabled]:not([disabled=false]) .button-group button[matcha-button][active][link]:not([link=false]), .theme-default-light matcha-button-toggle[disabled]:not([disabled=false]) .button-group button[matcha-button][active][link=true],
.theme-default-light matcha-button-toggle[disabled]:not([disabled=false]) .button-group a[matcha-button][active][link],
.theme-default-light matcha-button-toggle[disabled]:not([disabled=false]) .button-group a[matcha-button][active][link]:not([link=false]),
.theme-default-light matcha-button-toggle[disabled]:not([disabled=false]) .button-group a[matcha-button][active][link=true], .theme-default-light matcha-button-toggle[disabled=true] .button-group button[matcha-button][active][link], .theme-default-light matcha-button-toggle[disabled=true] .button-group button[matcha-button][active][link]:not([link=false]), .theme-default-light matcha-button-toggle[disabled=true] .button-group button[matcha-button][active][link=true],
.theme-default-light matcha-button-toggle[disabled=true] .button-group a[matcha-button][active][link],
.theme-default-light matcha-button-toggle[disabled=true] .button-group a[matcha-button][active][link]:not([link=false]),
.theme-default-light matcha-button-toggle[disabled=true] .button-group a[matcha-button][active][link=true] {
  background: transparent;
  color: #E2E7E9;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button]:not([color]) .ripple,
.theme-default-light a[matcha-button]:not([color]) .ripple {
  background: rgba(33, 40, 44, 0.2);
}
.theme-default-light button[matcha-button][color=red][outline]:not([outline=false]) .ripple, .theme-default-light button[matcha-button][color=red][basic]:not([basic=false]) .ripple,
.theme-default-light a[matcha-button][color=red][outline]:not([outline=false]) .ripple,
.theme-default-light a[matcha-button][color=red][basic]:not([basic=false]) .ripple {
  background: rgba(229, 58, 58, 0.2);
}
.theme-default-light button[matcha-button][color=red][alpha]:not([alpha=false]),
.theme-default-light a[matcha-button][color=red][alpha]:not([alpha=false]) {
  background: rgba(229, 58, 58, 0.2);
  color: #e53a3a;
}
.theme-default-light button[matcha-button][color=red][alpha]:not([alpha=false]) matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=red][alpha]:not([alpha=false]) matcha-divider .border-color-disabled {
  border-color: #e53a3a !important;
  opacity: 0.3 !important;
}
.theme-default-light button[matcha-button][color=red][outline]:not([outline=false]), .theme-default-light button[matcha-button][color=red][link]:not([link=false]), .theme-default-light button[matcha-button][color=red][basic]:not([basic=false]),
.theme-default-light a[matcha-button][color=red][outline]:not([outline=false]),
.theme-default-light a[matcha-button][color=red][link]:not([link=false]),
.theme-default-light a[matcha-button][color=red][basic]:not([basic=false]) {
  color: #e53a3a;
}
.theme-default-light button[matcha-button][color=red][outline]:not([outline=false]) matcha-divider .border-color-disabled, .theme-default-light button[matcha-button][color=red][link]:not([link=false]) matcha-divider .border-color-disabled, .theme-default-light button[matcha-button][color=red][basic]:not([basic=false]) matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=red][outline]:not([outline=false]) matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=red][link]:not([link=false]) matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=red][basic]:not([basic=false]) matcha-divider .border-color-disabled {
  border-color: #e53a3a !important;
  opacity: 0.3 !important;
}
.theme-default-light button[matcha-button][color=red],
.theme-default-light a[matcha-button][color=red] {
  background: #e53a3a;
  color: white;
}
.theme-default-light button[matcha-button][color=red] matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=red] matcha-divider .border-color-disabled {
  border-color: white !important;
  opacity: 0.3 !important;
}
.theme-default-light button[matcha-button][color=red] .ripple,
.theme-default-light a[matcha-button][color=red] .ripple {
  background: rgba(255, 255, 255, 0.2);
}
.theme-default-light button[matcha-button][disabled][solid], .theme-default-light button[matcha-button][disabled][solid]:not([solid=false]), .theme-default-light button[matcha-button][disabled][solid=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[solid], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[solid]:not([solid=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[solid=true], .theme-default-light button[matcha-button][disabled=true][solid], .theme-default-light button[matcha-button][disabled=true][solid]:not([solid=false]), .theme-default-light button[matcha-button][disabled=true][solid=true],
.theme-default-light a[matcha-button][disabled][solid],
.theme-default-light a[matcha-button][disabled][solid]:not([solid=false]),
.theme-default-light a[matcha-button][disabled][solid=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[solid],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[solid]:not([solid=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[solid=true],
.theme-default-light a[matcha-button][disabled=true][solid],
.theme-default-light a[matcha-button][disabled=true][solid]:not([solid=false]),
.theme-default-light a[matcha-button][disabled=true][solid=true] {
  background: #E2E7E9;
  color: rgba(33, 40, 44, 0.5);
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][disabled][outline], .theme-default-light button[matcha-button][disabled][outline]:not([outline=false]), .theme-default-light button[matcha-button][disabled][outline=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[outline], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[outline]:not([outline=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[outline=true], .theme-default-light button[matcha-button][disabled=true][outline], .theme-default-light button[matcha-button][disabled=true][outline]:not([outline=false]), .theme-default-light button[matcha-button][disabled=true][outline=true],
.theme-default-light a[matcha-button][disabled][outline],
.theme-default-light a[matcha-button][disabled][outline]:not([outline=false]),
.theme-default-light a[matcha-button][disabled][outline=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[outline],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[outline]:not([outline=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[outline=true],
.theme-default-light a[matcha-button][disabled=true][outline],
.theme-default-light a[matcha-button][disabled=true][outline]:not([outline=false]),
.theme-default-light a[matcha-button][disabled=true][outline=true] {
  background: transparent;
  color: #E2E7E9;
  box-shadow: 0 0 0 2px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][disabled][basic], .theme-default-light button[matcha-button][disabled][basic]:not([basic=false]), .theme-default-light button[matcha-button][disabled][basic=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[basic], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[basic]:not([basic=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[basic=true], .theme-default-light button[matcha-button][disabled=true][basic], .theme-default-light button[matcha-button][disabled=true][basic]:not([basic=false]), .theme-default-light button[matcha-button][disabled=true][basic=true],
.theme-default-light a[matcha-button][disabled][basic],
.theme-default-light a[matcha-button][disabled][basic]:not([basic=false]),
.theme-default-light a[matcha-button][disabled][basic=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[basic],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[basic]:not([basic=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[basic=true],
.theme-default-light a[matcha-button][disabled=true][basic],
.theme-default-light a[matcha-button][disabled=true][basic]:not([basic=false]),
.theme-default-light a[matcha-button][disabled=true][basic=true] {
  background: #FFFFFF;
  color: #E2E7E9;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][disabled][alpha], .theme-default-light button[matcha-button][disabled][alpha]:not([alpha=false]), .theme-default-light button[matcha-button][disabled][alpha=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[alpha], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[alpha]:not([alpha=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[alpha=true], .theme-default-light button[matcha-button][disabled=true][alpha], .theme-default-light button[matcha-button][disabled=true][alpha]:not([alpha=false]), .theme-default-light button[matcha-button][disabled=true][alpha=true],
.theme-default-light a[matcha-button][disabled][alpha],
.theme-default-light a[matcha-button][disabled][alpha]:not([alpha=false]),
.theme-default-light a[matcha-button][disabled][alpha=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[alpha],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[alpha]:not([alpha=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[alpha=true],
.theme-default-light a[matcha-button][disabled=true][alpha],
.theme-default-light a[matcha-button][disabled=true][alpha]:not([alpha=false]),
.theme-default-light a[matcha-button][disabled=true][alpha=true] {
  background: rgba(226, 231, 233, 0.5);
  color: #E2E7E9;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][disabled][link], .theme-default-light button[matcha-button][disabled][link]:not([link=false]), .theme-default-light button[matcha-button][disabled][link=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[link], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[link]:not([link=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[link=true], .theme-default-light button[matcha-button][disabled=true][link], .theme-default-light button[matcha-button][disabled=true][link]:not([link=false]), .theme-default-light button[matcha-button][disabled=true][link=true],
.theme-default-light a[matcha-button][disabled][link],
.theme-default-light a[matcha-button][disabled][link]:not([link=false]),
.theme-default-light a[matcha-button][disabled][link=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[link],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[link]:not([link=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[link=true],
.theme-default-light a[matcha-button][disabled=true][link],
.theme-default-light a[matcha-button][disabled=true][link]:not([link=false]),
.theme-default-light a[matcha-button][disabled=true][link=true] {
  background: transparent;
  color: #E2E7E9;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][color=pink][outline]:not([outline=false]) .ripple, .theme-default-light button[matcha-button][color=pink][basic]:not([basic=false]) .ripple,
.theme-default-light a[matcha-button][color=pink][outline]:not([outline=false]) .ripple,
.theme-default-light a[matcha-button][color=pink][basic]:not([basic=false]) .ripple {
  background: rgba(233, 30, 99, 0.2);
}
.theme-default-light button[matcha-button][color=pink][alpha]:not([alpha=false]),
.theme-default-light a[matcha-button][color=pink][alpha]:not([alpha=false]) {
  background: rgba(233, 30, 99, 0.2);
  color: #e91e63;
}
.theme-default-light button[matcha-button][color=pink][alpha]:not([alpha=false]) matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=pink][alpha]:not([alpha=false]) matcha-divider .border-color-disabled {
  border-color: #e91e63 !important;
  opacity: 0.3 !important;
}
.theme-default-light button[matcha-button][color=pink][outline]:not([outline=false]), .theme-default-light button[matcha-button][color=pink][link]:not([link=false]), .theme-default-light button[matcha-button][color=pink][basic]:not([basic=false]),
.theme-default-light a[matcha-button][color=pink][outline]:not([outline=false]),
.theme-default-light a[matcha-button][color=pink][link]:not([link=false]),
.theme-default-light a[matcha-button][color=pink][basic]:not([basic=false]) {
  color: #e91e63;
}
.theme-default-light button[matcha-button][color=pink][outline]:not([outline=false]) matcha-divider .border-color-disabled, .theme-default-light button[matcha-button][color=pink][link]:not([link=false]) matcha-divider .border-color-disabled, .theme-default-light button[matcha-button][color=pink][basic]:not([basic=false]) matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=pink][outline]:not([outline=false]) matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=pink][link]:not([link=false]) matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=pink][basic]:not([basic=false]) matcha-divider .border-color-disabled {
  border-color: #e91e63 !important;
  opacity: 0.3 !important;
}
.theme-default-light button[matcha-button][color=pink],
.theme-default-light a[matcha-button][color=pink] {
  background: #e91e63;
  color: white;
}
.theme-default-light button[matcha-button][color=pink] matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=pink] matcha-divider .border-color-disabled {
  border-color: white !important;
  opacity: 0.3 !important;
}
.theme-default-light button[matcha-button][color=pink] .ripple,
.theme-default-light a[matcha-button][color=pink] .ripple {
  background: rgba(255, 255, 255, 0.2);
}
.theme-default-light button[matcha-button][disabled][solid], .theme-default-light button[matcha-button][disabled][solid]:not([solid=false]), .theme-default-light button[matcha-button][disabled][solid=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[solid], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[solid]:not([solid=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[solid=true], .theme-default-light button[matcha-button][disabled=true][solid], .theme-default-light button[matcha-button][disabled=true][solid]:not([solid=false]), .theme-default-light button[matcha-button][disabled=true][solid=true],
.theme-default-light a[matcha-button][disabled][solid],
.theme-default-light a[matcha-button][disabled][solid]:not([solid=false]),
.theme-default-light a[matcha-button][disabled][solid=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[solid],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[solid]:not([solid=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[solid=true],
.theme-default-light a[matcha-button][disabled=true][solid],
.theme-default-light a[matcha-button][disabled=true][solid]:not([solid=false]),
.theme-default-light a[matcha-button][disabled=true][solid=true] {
  background: #E2E7E9;
  color: rgba(33, 40, 44, 0.5);
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][disabled][outline], .theme-default-light button[matcha-button][disabled][outline]:not([outline=false]), .theme-default-light button[matcha-button][disabled][outline=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[outline], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[outline]:not([outline=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[outline=true], .theme-default-light button[matcha-button][disabled=true][outline], .theme-default-light button[matcha-button][disabled=true][outline]:not([outline=false]), .theme-default-light button[matcha-button][disabled=true][outline=true],
.theme-default-light a[matcha-button][disabled][outline],
.theme-default-light a[matcha-button][disabled][outline]:not([outline=false]),
.theme-default-light a[matcha-button][disabled][outline=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[outline],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[outline]:not([outline=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[outline=true],
.theme-default-light a[matcha-button][disabled=true][outline],
.theme-default-light a[matcha-button][disabled=true][outline]:not([outline=false]),
.theme-default-light a[matcha-button][disabled=true][outline=true] {
  background: transparent;
  color: #E2E7E9;
  box-shadow: 0 0 0 2px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][disabled][basic], .theme-default-light button[matcha-button][disabled][basic]:not([basic=false]), .theme-default-light button[matcha-button][disabled][basic=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[basic], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[basic]:not([basic=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[basic=true], .theme-default-light button[matcha-button][disabled=true][basic], .theme-default-light button[matcha-button][disabled=true][basic]:not([basic=false]), .theme-default-light button[matcha-button][disabled=true][basic=true],
.theme-default-light a[matcha-button][disabled][basic],
.theme-default-light a[matcha-button][disabled][basic]:not([basic=false]),
.theme-default-light a[matcha-button][disabled][basic=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[basic],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[basic]:not([basic=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[basic=true],
.theme-default-light a[matcha-button][disabled=true][basic],
.theme-default-light a[matcha-button][disabled=true][basic]:not([basic=false]),
.theme-default-light a[matcha-button][disabled=true][basic=true] {
  background: #FFFFFF;
  color: #E2E7E9;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][disabled][alpha], .theme-default-light button[matcha-button][disabled][alpha]:not([alpha=false]), .theme-default-light button[matcha-button][disabled][alpha=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[alpha], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[alpha]:not([alpha=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[alpha=true], .theme-default-light button[matcha-button][disabled=true][alpha], .theme-default-light button[matcha-button][disabled=true][alpha]:not([alpha=false]), .theme-default-light button[matcha-button][disabled=true][alpha=true],
.theme-default-light a[matcha-button][disabled][alpha],
.theme-default-light a[matcha-button][disabled][alpha]:not([alpha=false]),
.theme-default-light a[matcha-button][disabled][alpha=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[alpha],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[alpha]:not([alpha=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[alpha=true],
.theme-default-light a[matcha-button][disabled=true][alpha],
.theme-default-light a[matcha-button][disabled=true][alpha]:not([alpha=false]),
.theme-default-light a[matcha-button][disabled=true][alpha=true] {
  background: rgba(226, 231, 233, 0.5);
  color: #E2E7E9;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][disabled][link], .theme-default-light button[matcha-button][disabled][link]:not([link=false]), .theme-default-light button[matcha-button][disabled][link=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[link], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[link]:not([link=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[link=true], .theme-default-light button[matcha-button][disabled=true][link], .theme-default-light button[matcha-button][disabled=true][link]:not([link=false]), .theme-default-light button[matcha-button][disabled=true][link=true],
.theme-default-light a[matcha-button][disabled][link],
.theme-default-light a[matcha-button][disabled][link]:not([link=false]),
.theme-default-light a[matcha-button][disabled][link=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[link],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[link]:not([link=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[link=true],
.theme-default-light a[matcha-button][disabled=true][link],
.theme-default-light a[matcha-button][disabled=true][link]:not([link=false]),
.theme-default-light a[matcha-button][disabled=true][link=true] {
  background: transparent;
  color: #E2E7E9;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][color=purple][outline]:not([outline=false]) .ripple, .theme-default-light button[matcha-button][color=purple][basic]:not([basic=false]) .ripple,
.theme-default-light a[matcha-button][color=purple][outline]:not([outline=false]) .ripple,
.theme-default-light a[matcha-button][color=purple][basic]:not([basic=false]) .ripple {
  background: rgba(156, 39, 176, 0.2);
}
.theme-default-light button[matcha-button][color=purple][alpha]:not([alpha=false]),
.theme-default-light a[matcha-button][color=purple][alpha]:not([alpha=false]) {
  background: rgba(156, 39, 176, 0.2);
  color: #9c27b0;
}
.theme-default-light button[matcha-button][color=purple][alpha]:not([alpha=false]) matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=purple][alpha]:not([alpha=false]) matcha-divider .border-color-disabled {
  border-color: #9c27b0 !important;
  opacity: 0.3 !important;
}
.theme-default-light button[matcha-button][color=purple][outline]:not([outline=false]), .theme-default-light button[matcha-button][color=purple][link]:not([link=false]), .theme-default-light button[matcha-button][color=purple][basic]:not([basic=false]),
.theme-default-light a[matcha-button][color=purple][outline]:not([outline=false]),
.theme-default-light a[matcha-button][color=purple][link]:not([link=false]),
.theme-default-light a[matcha-button][color=purple][basic]:not([basic=false]) {
  color: #9c27b0;
}
.theme-default-light button[matcha-button][color=purple][outline]:not([outline=false]) matcha-divider .border-color-disabled, .theme-default-light button[matcha-button][color=purple][link]:not([link=false]) matcha-divider .border-color-disabled, .theme-default-light button[matcha-button][color=purple][basic]:not([basic=false]) matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=purple][outline]:not([outline=false]) matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=purple][link]:not([link=false]) matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=purple][basic]:not([basic=false]) matcha-divider .border-color-disabled {
  border-color: #9c27b0 !important;
  opacity: 0.3 !important;
}
.theme-default-light button[matcha-button][color=purple],
.theme-default-light a[matcha-button][color=purple] {
  background: #9c27b0;
  color: white;
}
.theme-default-light button[matcha-button][color=purple] matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=purple] matcha-divider .border-color-disabled {
  border-color: white !important;
  opacity: 0.3 !important;
}
.theme-default-light button[matcha-button][color=purple] .ripple,
.theme-default-light a[matcha-button][color=purple] .ripple {
  background: rgba(255, 255, 255, 0.2);
}
.theme-default-light button[matcha-button][disabled][solid], .theme-default-light button[matcha-button][disabled][solid]:not([solid=false]), .theme-default-light button[matcha-button][disabled][solid=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[solid], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[solid]:not([solid=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[solid=true], .theme-default-light button[matcha-button][disabled=true][solid], .theme-default-light button[matcha-button][disabled=true][solid]:not([solid=false]), .theme-default-light button[matcha-button][disabled=true][solid=true],
.theme-default-light a[matcha-button][disabled][solid],
.theme-default-light a[matcha-button][disabled][solid]:not([solid=false]),
.theme-default-light a[matcha-button][disabled][solid=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[solid],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[solid]:not([solid=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[solid=true],
.theme-default-light a[matcha-button][disabled=true][solid],
.theme-default-light a[matcha-button][disabled=true][solid]:not([solid=false]),
.theme-default-light a[matcha-button][disabled=true][solid=true] {
  background: #E2E7E9;
  color: rgba(33, 40, 44, 0.5);
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][disabled][outline], .theme-default-light button[matcha-button][disabled][outline]:not([outline=false]), .theme-default-light button[matcha-button][disabled][outline=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[outline], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[outline]:not([outline=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[outline=true], .theme-default-light button[matcha-button][disabled=true][outline], .theme-default-light button[matcha-button][disabled=true][outline]:not([outline=false]), .theme-default-light button[matcha-button][disabled=true][outline=true],
.theme-default-light a[matcha-button][disabled][outline],
.theme-default-light a[matcha-button][disabled][outline]:not([outline=false]),
.theme-default-light a[matcha-button][disabled][outline=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[outline],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[outline]:not([outline=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[outline=true],
.theme-default-light a[matcha-button][disabled=true][outline],
.theme-default-light a[matcha-button][disabled=true][outline]:not([outline=false]),
.theme-default-light a[matcha-button][disabled=true][outline=true] {
  background: transparent;
  color: #E2E7E9;
  box-shadow: 0 0 0 2px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][disabled][basic], .theme-default-light button[matcha-button][disabled][basic]:not([basic=false]), .theme-default-light button[matcha-button][disabled][basic=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[basic], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[basic]:not([basic=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[basic=true], .theme-default-light button[matcha-button][disabled=true][basic], .theme-default-light button[matcha-button][disabled=true][basic]:not([basic=false]), .theme-default-light button[matcha-button][disabled=true][basic=true],
.theme-default-light a[matcha-button][disabled][basic],
.theme-default-light a[matcha-button][disabled][basic]:not([basic=false]),
.theme-default-light a[matcha-button][disabled][basic=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[basic],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[basic]:not([basic=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[basic=true],
.theme-default-light a[matcha-button][disabled=true][basic],
.theme-default-light a[matcha-button][disabled=true][basic]:not([basic=false]),
.theme-default-light a[matcha-button][disabled=true][basic=true] {
  background: #FFFFFF;
  color: #E2E7E9;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][disabled][alpha], .theme-default-light button[matcha-button][disabled][alpha]:not([alpha=false]), .theme-default-light button[matcha-button][disabled][alpha=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[alpha], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[alpha]:not([alpha=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[alpha=true], .theme-default-light button[matcha-button][disabled=true][alpha], .theme-default-light button[matcha-button][disabled=true][alpha]:not([alpha=false]), .theme-default-light button[matcha-button][disabled=true][alpha=true],
.theme-default-light a[matcha-button][disabled][alpha],
.theme-default-light a[matcha-button][disabled][alpha]:not([alpha=false]),
.theme-default-light a[matcha-button][disabled][alpha=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[alpha],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[alpha]:not([alpha=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[alpha=true],
.theme-default-light a[matcha-button][disabled=true][alpha],
.theme-default-light a[matcha-button][disabled=true][alpha]:not([alpha=false]),
.theme-default-light a[matcha-button][disabled=true][alpha=true] {
  background: rgba(226, 231, 233, 0.5);
  color: #E2E7E9;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][disabled][link], .theme-default-light button[matcha-button][disabled][link]:not([link=false]), .theme-default-light button[matcha-button][disabled][link=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[link], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[link]:not([link=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[link=true], .theme-default-light button[matcha-button][disabled=true][link], .theme-default-light button[matcha-button][disabled=true][link]:not([link=false]), .theme-default-light button[matcha-button][disabled=true][link=true],
.theme-default-light a[matcha-button][disabled][link],
.theme-default-light a[matcha-button][disabled][link]:not([link=false]),
.theme-default-light a[matcha-button][disabled][link=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[link],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[link]:not([link=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[link=true],
.theme-default-light a[matcha-button][disabled=true][link],
.theme-default-light a[matcha-button][disabled=true][link]:not([link=false]),
.theme-default-light a[matcha-button][disabled=true][link=true] {
  background: transparent;
  color: #E2E7E9;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][color=deep-purple][outline]:not([outline=false]) .ripple, .theme-default-light button[matcha-button][color=deep-purple][basic]:not([basic=false]) .ripple,
.theme-default-light a[matcha-button][color=deep-purple][outline]:not([outline=false]) .ripple,
.theme-default-light a[matcha-button][color=deep-purple][basic]:not([basic=false]) .ripple {
  background: rgba(103, 58, 183, 0.2);
}
.theme-default-light button[matcha-button][color=deep-purple][alpha]:not([alpha=false]),
.theme-default-light a[matcha-button][color=deep-purple][alpha]:not([alpha=false]) {
  background: rgba(103, 58, 183, 0.2);
  color: #673ab7;
}
.theme-default-light button[matcha-button][color=deep-purple][alpha]:not([alpha=false]) matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=deep-purple][alpha]:not([alpha=false]) matcha-divider .border-color-disabled {
  border-color: #673ab7 !important;
  opacity: 0.3 !important;
}
.theme-default-light button[matcha-button][color=deep-purple][outline]:not([outline=false]), .theme-default-light button[matcha-button][color=deep-purple][link]:not([link=false]), .theme-default-light button[matcha-button][color=deep-purple][basic]:not([basic=false]),
.theme-default-light a[matcha-button][color=deep-purple][outline]:not([outline=false]),
.theme-default-light a[matcha-button][color=deep-purple][link]:not([link=false]),
.theme-default-light a[matcha-button][color=deep-purple][basic]:not([basic=false]) {
  color: #673ab7;
}
.theme-default-light button[matcha-button][color=deep-purple][outline]:not([outline=false]) matcha-divider .border-color-disabled, .theme-default-light button[matcha-button][color=deep-purple][link]:not([link=false]) matcha-divider .border-color-disabled, .theme-default-light button[matcha-button][color=deep-purple][basic]:not([basic=false]) matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=deep-purple][outline]:not([outline=false]) matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=deep-purple][link]:not([link=false]) matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=deep-purple][basic]:not([basic=false]) matcha-divider .border-color-disabled {
  border-color: #673ab7 !important;
  opacity: 0.3 !important;
}
.theme-default-light button[matcha-button][color=deep-purple],
.theme-default-light a[matcha-button][color=deep-purple] {
  background: #673ab7;
  color: white;
}
.theme-default-light button[matcha-button][color=deep-purple] matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=deep-purple] matcha-divider .border-color-disabled {
  border-color: white !important;
  opacity: 0.3 !important;
}
.theme-default-light button[matcha-button][color=deep-purple] .ripple,
.theme-default-light a[matcha-button][color=deep-purple] .ripple {
  background: rgba(255, 255, 255, 0.2);
}
.theme-default-light button[matcha-button][disabled][solid], .theme-default-light button[matcha-button][disabled][solid]:not([solid=false]), .theme-default-light button[matcha-button][disabled][solid=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[solid], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[solid]:not([solid=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[solid=true], .theme-default-light button[matcha-button][disabled=true][solid], .theme-default-light button[matcha-button][disabled=true][solid]:not([solid=false]), .theme-default-light button[matcha-button][disabled=true][solid=true],
.theme-default-light a[matcha-button][disabled][solid],
.theme-default-light a[matcha-button][disabled][solid]:not([solid=false]),
.theme-default-light a[matcha-button][disabled][solid=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[solid],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[solid]:not([solid=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[solid=true],
.theme-default-light a[matcha-button][disabled=true][solid],
.theme-default-light a[matcha-button][disabled=true][solid]:not([solid=false]),
.theme-default-light a[matcha-button][disabled=true][solid=true] {
  background: #E2E7E9;
  color: rgba(33, 40, 44, 0.5);
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][disabled][outline], .theme-default-light button[matcha-button][disabled][outline]:not([outline=false]), .theme-default-light button[matcha-button][disabled][outline=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[outline], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[outline]:not([outline=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[outline=true], .theme-default-light button[matcha-button][disabled=true][outline], .theme-default-light button[matcha-button][disabled=true][outline]:not([outline=false]), .theme-default-light button[matcha-button][disabled=true][outline=true],
.theme-default-light a[matcha-button][disabled][outline],
.theme-default-light a[matcha-button][disabled][outline]:not([outline=false]),
.theme-default-light a[matcha-button][disabled][outline=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[outline],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[outline]:not([outline=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[outline=true],
.theme-default-light a[matcha-button][disabled=true][outline],
.theme-default-light a[matcha-button][disabled=true][outline]:not([outline=false]),
.theme-default-light a[matcha-button][disabled=true][outline=true] {
  background: transparent;
  color: #E2E7E9;
  box-shadow: 0 0 0 2px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][disabled][basic], .theme-default-light button[matcha-button][disabled][basic]:not([basic=false]), .theme-default-light button[matcha-button][disabled][basic=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[basic], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[basic]:not([basic=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[basic=true], .theme-default-light button[matcha-button][disabled=true][basic], .theme-default-light button[matcha-button][disabled=true][basic]:not([basic=false]), .theme-default-light button[matcha-button][disabled=true][basic=true],
.theme-default-light a[matcha-button][disabled][basic],
.theme-default-light a[matcha-button][disabled][basic]:not([basic=false]),
.theme-default-light a[matcha-button][disabled][basic=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[basic],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[basic]:not([basic=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[basic=true],
.theme-default-light a[matcha-button][disabled=true][basic],
.theme-default-light a[matcha-button][disabled=true][basic]:not([basic=false]),
.theme-default-light a[matcha-button][disabled=true][basic=true] {
  background: #FFFFFF;
  color: #E2E7E9;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][disabled][alpha], .theme-default-light button[matcha-button][disabled][alpha]:not([alpha=false]), .theme-default-light button[matcha-button][disabled][alpha=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[alpha], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[alpha]:not([alpha=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[alpha=true], .theme-default-light button[matcha-button][disabled=true][alpha], .theme-default-light button[matcha-button][disabled=true][alpha]:not([alpha=false]), .theme-default-light button[matcha-button][disabled=true][alpha=true],
.theme-default-light a[matcha-button][disabled][alpha],
.theme-default-light a[matcha-button][disabled][alpha]:not([alpha=false]),
.theme-default-light a[matcha-button][disabled][alpha=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[alpha],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[alpha]:not([alpha=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[alpha=true],
.theme-default-light a[matcha-button][disabled=true][alpha],
.theme-default-light a[matcha-button][disabled=true][alpha]:not([alpha=false]),
.theme-default-light a[matcha-button][disabled=true][alpha=true] {
  background: rgba(226, 231, 233, 0.5);
  color: #E2E7E9;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][disabled][link], .theme-default-light button[matcha-button][disabled][link]:not([link=false]), .theme-default-light button[matcha-button][disabled][link=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[link], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[link]:not([link=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[link=true], .theme-default-light button[matcha-button][disabled=true][link], .theme-default-light button[matcha-button][disabled=true][link]:not([link=false]), .theme-default-light button[matcha-button][disabled=true][link=true],
.theme-default-light a[matcha-button][disabled][link],
.theme-default-light a[matcha-button][disabled][link]:not([link=false]),
.theme-default-light a[matcha-button][disabled][link=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[link],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[link]:not([link=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[link=true],
.theme-default-light a[matcha-button][disabled=true][link],
.theme-default-light a[matcha-button][disabled=true][link]:not([link=false]),
.theme-default-light a[matcha-button][disabled=true][link=true] {
  background: transparent;
  color: #E2E7E9;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][color=indigo][outline]:not([outline=false]) .ripple, .theme-default-light button[matcha-button][color=indigo][basic]:not([basic=false]) .ripple,
.theme-default-light a[matcha-button][color=indigo][outline]:not([outline=false]) .ripple,
.theme-default-light a[matcha-button][color=indigo][basic]:not([basic=false]) .ripple {
  background: rgba(63, 81, 181, 0.2);
}
.theme-default-light button[matcha-button][color=indigo][alpha]:not([alpha=false]),
.theme-default-light a[matcha-button][color=indigo][alpha]:not([alpha=false]) {
  background: rgba(63, 81, 181, 0.2);
  color: #3f51b5;
}
.theme-default-light button[matcha-button][color=indigo][alpha]:not([alpha=false]) matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=indigo][alpha]:not([alpha=false]) matcha-divider .border-color-disabled {
  border-color: #3f51b5 !important;
  opacity: 0.3 !important;
}
.theme-default-light button[matcha-button][color=indigo][outline]:not([outline=false]), .theme-default-light button[matcha-button][color=indigo][link]:not([link=false]), .theme-default-light button[matcha-button][color=indigo][basic]:not([basic=false]),
.theme-default-light a[matcha-button][color=indigo][outline]:not([outline=false]),
.theme-default-light a[matcha-button][color=indigo][link]:not([link=false]),
.theme-default-light a[matcha-button][color=indigo][basic]:not([basic=false]) {
  color: #3f51b5;
}
.theme-default-light button[matcha-button][color=indigo][outline]:not([outline=false]) matcha-divider .border-color-disabled, .theme-default-light button[matcha-button][color=indigo][link]:not([link=false]) matcha-divider .border-color-disabled, .theme-default-light button[matcha-button][color=indigo][basic]:not([basic=false]) matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=indigo][outline]:not([outline=false]) matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=indigo][link]:not([link=false]) matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=indigo][basic]:not([basic=false]) matcha-divider .border-color-disabled {
  border-color: #3f51b5 !important;
  opacity: 0.3 !important;
}
.theme-default-light button[matcha-button][color=indigo],
.theme-default-light a[matcha-button][color=indigo] {
  background: #3f51b5;
  color: white;
}
.theme-default-light button[matcha-button][color=indigo] matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=indigo] matcha-divider .border-color-disabled {
  border-color: white !important;
  opacity: 0.3 !important;
}
.theme-default-light button[matcha-button][color=indigo] .ripple,
.theme-default-light a[matcha-button][color=indigo] .ripple {
  background: rgba(255, 255, 255, 0.2);
}
.theme-default-light button[matcha-button][disabled][solid], .theme-default-light button[matcha-button][disabled][solid]:not([solid=false]), .theme-default-light button[matcha-button][disabled][solid=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[solid], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[solid]:not([solid=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[solid=true], .theme-default-light button[matcha-button][disabled=true][solid], .theme-default-light button[matcha-button][disabled=true][solid]:not([solid=false]), .theme-default-light button[matcha-button][disabled=true][solid=true],
.theme-default-light a[matcha-button][disabled][solid],
.theme-default-light a[matcha-button][disabled][solid]:not([solid=false]),
.theme-default-light a[matcha-button][disabled][solid=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[solid],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[solid]:not([solid=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[solid=true],
.theme-default-light a[matcha-button][disabled=true][solid],
.theme-default-light a[matcha-button][disabled=true][solid]:not([solid=false]),
.theme-default-light a[matcha-button][disabled=true][solid=true] {
  background: #E2E7E9;
  color: rgba(33, 40, 44, 0.5);
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][disabled][outline], .theme-default-light button[matcha-button][disabled][outline]:not([outline=false]), .theme-default-light button[matcha-button][disabled][outline=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[outline], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[outline]:not([outline=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[outline=true], .theme-default-light button[matcha-button][disabled=true][outline], .theme-default-light button[matcha-button][disabled=true][outline]:not([outline=false]), .theme-default-light button[matcha-button][disabled=true][outline=true],
.theme-default-light a[matcha-button][disabled][outline],
.theme-default-light a[matcha-button][disabled][outline]:not([outline=false]),
.theme-default-light a[matcha-button][disabled][outline=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[outline],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[outline]:not([outline=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[outline=true],
.theme-default-light a[matcha-button][disabled=true][outline],
.theme-default-light a[matcha-button][disabled=true][outline]:not([outline=false]),
.theme-default-light a[matcha-button][disabled=true][outline=true] {
  background: transparent;
  color: #E2E7E9;
  box-shadow: 0 0 0 2px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][disabled][basic], .theme-default-light button[matcha-button][disabled][basic]:not([basic=false]), .theme-default-light button[matcha-button][disabled][basic=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[basic], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[basic]:not([basic=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[basic=true], .theme-default-light button[matcha-button][disabled=true][basic], .theme-default-light button[matcha-button][disabled=true][basic]:not([basic=false]), .theme-default-light button[matcha-button][disabled=true][basic=true],
.theme-default-light a[matcha-button][disabled][basic],
.theme-default-light a[matcha-button][disabled][basic]:not([basic=false]),
.theme-default-light a[matcha-button][disabled][basic=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[basic],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[basic]:not([basic=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[basic=true],
.theme-default-light a[matcha-button][disabled=true][basic],
.theme-default-light a[matcha-button][disabled=true][basic]:not([basic=false]),
.theme-default-light a[matcha-button][disabled=true][basic=true] {
  background: #FFFFFF;
  color: #E2E7E9;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][disabled][alpha], .theme-default-light button[matcha-button][disabled][alpha]:not([alpha=false]), .theme-default-light button[matcha-button][disabled][alpha=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[alpha], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[alpha]:not([alpha=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[alpha=true], .theme-default-light button[matcha-button][disabled=true][alpha], .theme-default-light button[matcha-button][disabled=true][alpha]:not([alpha=false]), .theme-default-light button[matcha-button][disabled=true][alpha=true],
.theme-default-light a[matcha-button][disabled][alpha],
.theme-default-light a[matcha-button][disabled][alpha]:not([alpha=false]),
.theme-default-light a[matcha-button][disabled][alpha=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[alpha],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[alpha]:not([alpha=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[alpha=true],
.theme-default-light a[matcha-button][disabled=true][alpha],
.theme-default-light a[matcha-button][disabled=true][alpha]:not([alpha=false]),
.theme-default-light a[matcha-button][disabled=true][alpha=true] {
  background: rgba(226, 231, 233, 0.5);
  color: #E2E7E9;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][disabled][link], .theme-default-light button[matcha-button][disabled][link]:not([link=false]), .theme-default-light button[matcha-button][disabled][link=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[link], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[link]:not([link=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[link=true], .theme-default-light button[matcha-button][disabled=true][link], .theme-default-light button[matcha-button][disabled=true][link]:not([link=false]), .theme-default-light button[matcha-button][disabled=true][link=true],
.theme-default-light a[matcha-button][disabled][link],
.theme-default-light a[matcha-button][disabled][link]:not([link=false]),
.theme-default-light a[matcha-button][disabled][link=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[link],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[link]:not([link=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[link=true],
.theme-default-light a[matcha-button][disabled=true][link],
.theme-default-light a[matcha-button][disabled=true][link]:not([link=false]),
.theme-default-light a[matcha-button][disabled=true][link=true] {
  background: transparent;
  color: #E2E7E9;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][color=blue][outline]:not([outline=false]) .ripple, .theme-default-light button[matcha-button][color=blue][basic]:not([basic=false]) .ripple,
.theme-default-light a[matcha-button][color=blue][outline]:not([outline=false]) .ripple,
.theme-default-light a[matcha-button][color=blue][basic]:not([basic=false]) .ripple {
  background: rgba(30, 91, 218, 0.2);
}
.theme-default-light button[matcha-button][color=blue][alpha]:not([alpha=false]),
.theme-default-light a[matcha-button][color=blue][alpha]:not([alpha=false]) {
  background: rgba(30, 91, 218, 0.2);
  color: #1e5bda;
}
.theme-default-light button[matcha-button][color=blue][alpha]:not([alpha=false]) matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=blue][alpha]:not([alpha=false]) matcha-divider .border-color-disabled {
  border-color: #1e5bda !important;
  opacity: 0.3 !important;
}
.theme-default-light button[matcha-button][color=blue][outline]:not([outline=false]), .theme-default-light button[matcha-button][color=blue][link]:not([link=false]), .theme-default-light button[matcha-button][color=blue][basic]:not([basic=false]),
.theme-default-light a[matcha-button][color=blue][outline]:not([outline=false]),
.theme-default-light a[matcha-button][color=blue][link]:not([link=false]),
.theme-default-light a[matcha-button][color=blue][basic]:not([basic=false]) {
  color: #1e5bda;
}
.theme-default-light button[matcha-button][color=blue][outline]:not([outline=false]) matcha-divider .border-color-disabled, .theme-default-light button[matcha-button][color=blue][link]:not([link=false]) matcha-divider .border-color-disabled, .theme-default-light button[matcha-button][color=blue][basic]:not([basic=false]) matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=blue][outline]:not([outline=false]) matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=blue][link]:not([link=false]) matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=blue][basic]:not([basic=false]) matcha-divider .border-color-disabled {
  border-color: #1e5bda !important;
  opacity: 0.3 !important;
}
.theme-default-light button[matcha-button][color=blue],
.theme-default-light a[matcha-button][color=blue] {
  background: #1e5bda;
  color: white;
}
.theme-default-light button[matcha-button][color=blue] matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=blue] matcha-divider .border-color-disabled {
  border-color: white !important;
  opacity: 0.3 !important;
}
.theme-default-light button[matcha-button][color=blue] .ripple,
.theme-default-light a[matcha-button][color=blue] .ripple {
  background: rgba(255, 255, 255, 0.2);
}
.theme-default-light button[matcha-button][disabled][solid], .theme-default-light button[matcha-button][disabled][solid]:not([solid=false]), .theme-default-light button[matcha-button][disabled][solid=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[solid], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[solid]:not([solid=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[solid=true], .theme-default-light button[matcha-button][disabled=true][solid], .theme-default-light button[matcha-button][disabled=true][solid]:not([solid=false]), .theme-default-light button[matcha-button][disabled=true][solid=true],
.theme-default-light a[matcha-button][disabled][solid],
.theme-default-light a[matcha-button][disabled][solid]:not([solid=false]),
.theme-default-light a[matcha-button][disabled][solid=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[solid],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[solid]:not([solid=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[solid=true],
.theme-default-light a[matcha-button][disabled=true][solid],
.theme-default-light a[matcha-button][disabled=true][solid]:not([solid=false]),
.theme-default-light a[matcha-button][disabled=true][solid=true] {
  background: #E2E7E9;
  color: rgba(33, 40, 44, 0.5);
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][disabled][outline], .theme-default-light button[matcha-button][disabled][outline]:not([outline=false]), .theme-default-light button[matcha-button][disabled][outline=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[outline], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[outline]:not([outline=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[outline=true], .theme-default-light button[matcha-button][disabled=true][outline], .theme-default-light button[matcha-button][disabled=true][outline]:not([outline=false]), .theme-default-light button[matcha-button][disabled=true][outline=true],
.theme-default-light a[matcha-button][disabled][outline],
.theme-default-light a[matcha-button][disabled][outline]:not([outline=false]),
.theme-default-light a[matcha-button][disabled][outline=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[outline],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[outline]:not([outline=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[outline=true],
.theme-default-light a[matcha-button][disabled=true][outline],
.theme-default-light a[matcha-button][disabled=true][outline]:not([outline=false]),
.theme-default-light a[matcha-button][disabled=true][outline=true] {
  background: transparent;
  color: #E2E7E9;
  box-shadow: 0 0 0 2px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][disabled][basic], .theme-default-light button[matcha-button][disabled][basic]:not([basic=false]), .theme-default-light button[matcha-button][disabled][basic=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[basic], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[basic]:not([basic=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[basic=true], .theme-default-light button[matcha-button][disabled=true][basic], .theme-default-light button[matcha-button][disabled=true][basic]:not([basic=false]), .theme-default-light button[matcha-button][disabled=true][basic=true],
.theme-default-light a[matcha-button][disabled][basic],
.theme-default-light a[matcha-button][disabled][basic]:not([basic=false]),
.theme-default-light a[matcha-button][disabled][basic=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[basic],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[basic]:not([basic=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[basic=true],
.theme-default-light a[matcha-button][disabled=true][basic],
.theme-default-light a[matcha-button][disabled=true][basic]:not([basic=false]),
.theme-default-light a[matcha-button][disabled=true][basic=true] {
  background: #FFFFFF;
  color: #E2E7E9;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][disabled][alpha], .theme-default-light button[matcha-button][disabled][alpha]:not([alpha=false]), .theme-default-light button[matcha-button][disabled][alpha=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[alpha], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[alpha]:not([alpha=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[alpha=true], .theme-default-light button[matcha-button][disabled=true][alpha], .theme-default-light button[matcha-button][disabled=true][alpha]:not([alpha=false]), .theme-default-light button[matcha-button][disabled=true][alpha=true],
.theme-default-light a[matcha-button][disabled][alpha],
.theme-default-light a[matcha-button][disabled][alpha]:not([alpha=false]),
.theme-default-light a[matcha-button][disabled][alpha=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[alpha],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[alpha]:not([alpha=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[alpha=true],
.theme-default-light a[matcha-button][disabled=true][alpha],
.theme-default-light a[matcha-button][disabled=true][alpha]:not([alpha=false]),
.theme-default-light a[matcha-button][disabled=true][alpha=true] {
  background: rgba(226, 231, 233, 0.5);
  color: #E2E7E9;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][disabled][link], .theme-default-light button[matcha-button][disabled][link]:not([link=false]), .theme-default-light button[matcha-button][disabled][link=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[link], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[link]:not([link=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[link=true], .theme-default-light button[matcha-button][disabled=true][link], .theme-default-light button[matcha-button][disabled=true][link]:not([link=false]), .theme-default-light button[matcha-button][disabled=true][link=true],
.theme-default-light a[matcha-button][disabled][link],
.theme-default-light a[matcha-button][disabled][link]:not([link=false]),
.theme-default-light a[matcha-button][disabled][link=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[link],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[link]:not([link=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[link=true],
.theme-default-light a[matcha-button][disabled=true][link],
.theme-default-light a[matcha-button][disabled=true][link]:not([link=false]),
.theme-default-light a[matcha-button][disabled=true][link=true] {
  background: transparent;
  color: #E2E7E9;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][color=light-blue][outline]:not([outline=false]) .ripple, .theme-default-light button[matcha-button][color=light-blue][basic]:not([basic=false]) .ripple,
.theme-default-light a[matcha-button][color=light-blue][outline]:not([outline=false]) .ripple,
.theme-default-light a[matcha-button][color=light-blue][basic]:not([basic=false]) .ripple {
  background: rgba(3, 169, 244, 0.2);
}
.theme-default-light button[matcha-button][color=light-blue][alpha]:not([alpha=false]),
.theme-default-light a[matcha-button][color=light-blue][alpha]:not([alpha=false]) {
  background: rgba(3, 169, 244, 0.2);
  color: #03a9f4;
}
.theme-default-light button[matcha-button][color=light-blue][alpha]:not([alpha=false]) matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=light-blue][alpha]:not([alpha=false]) matcha-divider .border-color-disabled {
  border-color: #03a9f4 !important;
  opacity: 0.3 !important;
}
.theme-default-light button[matcha-button][color=light-blue][outline]:not([outline=false]), .theme-default-light button[matcha-button][color=light-blue][link]:not([link=false]), .theme-default-light button[matcha-button][color=light-blue][basic]:not([basic=false]),
.theme-default-light a[matcha-button][color=light-blue][outline]:not([outline=false]),
.theme-default-light a[matcha-button][color=light-blue][link]:not([link=false]),
.theme-default-light a[matcha-button][color=light-blue][basic]:not([basic=false]) {
  color: #03a9f4;
}
.theme-default-light button[matcha-button][color=light-blue][outline]:not([outline=false]) matcha-divider .border-color-disabled, .theme-default-light button[matcha-button][color=light-blue][link]:not([link=false]) matcha-divider .border-color-disabled, .theme-default-light button[matcha-button][color=light-blue][basic]:not([basic=false]) matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=light-blue][outline]:not([outline=false]) matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=light-blue][link]:not([link=false]) matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=light-blue][basic]:not([basic=false]) matcha-divider .border-color-disabled {
  border-color: #03a9f4 !important;
  opacity: 0.3 !important;
}
.theme-default-light button[matcha-button][color=light-blue],
.theme-default-light a[matcha-button][color=light-blue] {
  background: #03a9f4;
  color: white;
}
.theme-default-light button[matcha-button][color=light-blue] matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=light-blue] matcha-divider .border-color-disabled {
  border-color: white !important;
  opacity: 0.3 !important;
}
.theme-default-light button[matcha-button][color=light-blue] .ripple,
.theme-default-light a[matcha-button][color=light-blue] .ripple {
  background: rgba(255, 255, 255, 0.2);
}
.theme-default-light button[matcha-button][disabled][solid], .theme-default-light button[matcha-button][disabled][solid]:not([solid=false]), .theme-default-light button[matcha-button][disabled][solid=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[solid], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[solid]:not([solid=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[solid=true], .theme-default-light button[matcha-button][disabled=true][solid], .theme-default-light button[matcha-button][disabled=true][solid]:not([solid=false]), .theme-default-light button[matcha-button][disabled=true][solid=true],
.theme-default-light a[matcha-button][disabled][solid],
.theme-default-light a[matcha-button][disabled][solid]:not([solid=false]),
.theme-default-light a[matcha-button][disabled][solid=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[solid],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[solid]:not([solid=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[solid=true],
.theme-default-light a[matcha-button][disabled=true][solid],
.theme-default-light a[matcha-button][disabled=true][solid]:not([solid=false]),
.theme-default-light a[matcha-button][disabled=true][solid=true] {
  background: #E2E7E9;
  color: rgba(33, 40, 44, 0.5);
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][disabled][outline], .theme-default-light button[matcha-button][disabled][outline]:not([outline=false]), .theme-default-light button[matcha-button][disabled][outline=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[outline], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[outline]:not([outline=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[outline=true], .theme-default-light button[matcha-button][disabled=true][outline], .theme-default-light button[matcha-button][disabled=true][outline]:not([outline=false]), .theme-default-light button[matcha-button][disabled=true][outline=true],
.theme-default-light a[matcha-button][disabled][outline],
.theme-default-light a[matcha-button][disabled][outline]:not([outline=false]),
.theme-default-light a[matcha-button][disabled][outline=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[outline],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[outline]:not([outline=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[outline=true],
.theme-default-light a[matcha-button][disabled=true][outline],
.theme-default-light a[matcha-button][disabled=true][outline]:not([outline=false]),
.theme-default-light a[matcha-button][disabled=true][outline=true] {
  background: transparent;
  color: #E2E7E9;
  box-shadow: 0 0 0 2px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][disabled][basic], .theme-default-light button[matcha-button][disabled][basic]:not([basic=false]), .theme-default-light button[matcha-button][disabled][basic=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[basic], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[basic]:not([basic=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[basic=true], .theme-default-light button[matcha-button][disabled=true][basic], .theme-default-light button[matcha-button][disabled=true][basic]:not([basic=false]), .theme-default-light button[matcha-button][disabled=true][basic=true],
.theme-default-light a[matcha-button][disabled][basic],
.theme-default-light a[matcha-button][disabled][basic]:not([basic=false]),
.theme-default-light a[matcha-button][disabled][basic=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[basic],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[basic]:not([basic=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[basic=true],
.theme-default-light a[matcha-button][disabled=true][basic],
.theme-default-light a[matcha-button][disabled=true][basic]:not([basic=false]),
.theme-default-light a[matcha-button][disabled=true][basic=true] {
  background: #FFFFFF;
  color: #E2E7E9;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][disabled][alpha], .theme-default-light button[matcha-button][disabled][alpha]:not([alpha=false]), .theme-default-light button[matcha-button][disabled][alpha=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[alpha], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[alpha]:not([alpha=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[alpha=true], .theme-default-light button[matcha-button][disabled=true][alpha], .theme-default-light button[matcha-button][disabled=true][alpha]:not([alpha=false]), .theme-default-light button[matcha-button][disabled=true][alpha=true],
.theme-default-light a[matcha-button][disabled][alpha],
.theme-default-light a[matcha-button][disabled][alpha]:not([alpha=false]),
.theme-default-light a[matcha-button][disabled][alpha=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[alpha],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[alpha]:not([alpha=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[alpha=true],
.theme-default-light a[matcha-button][disabled=true][alpha],
.theme-default-light a[matcha-button][disabled=true][alpha]:not([alpha=false]),
.theme-default-light a[matcha-button][disabled=true][alpha=true] {
  background: rgba(226, 231, 233, 0.5);
  color: #E2E7E9;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][disabled][link], .theme-default-light button[matcha-button][disabled][link]:not([link=false]), .theme-default-light button[matcha-button][disabled][link=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[link], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[link]:not([link=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[link=true], .theme-default-light button[matcha-button][disabled=true][link], .theme-default-light button[matcha-button][disabled=true][link]:not([link=false]), .theme-default-light button[matcha-button][disabled=true][link=true],
.theme-default-light a[matcha-button][disabled][link],
.theme-default-light a[matcha-button][disabled][link]:not([link=false]),
.theme-default-light a[matcha-button][disabled][link=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[link],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[link]:not([link=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[link=true],
.theme-default-light a[matcha-button][disabled=true][link],
.theme-default-light a[matcha-button][disabled=true][link]:not([link=false]),
.theme-default-light a[matcha-button][disabled=true][link=true] {
  background: transparent;
  color: #E2E7E9;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][color=cyan][outline]:not([outline=false]) .ripple, .theme-default-light button[matcha-button][color=cyan][basic]:not([basic=false]) .ripple,
.theme-default-light a[matcha-button][color=cyan][outline]:not([outline=false]) .ripple,
.theme-default-light a[matcha-button][color=cyan][basic]:not([basic=false]) .ripple {
  background: rgba(0, 188, 212, 0.2);
}
.theme-default-light button[matcha-button][color=cyan][alpha]:not([alpha=false]),
.theme-default-light a[matcha-button][color=cyan][alpha]:not([alpha=false]) {
  background: rgba(0, 188, 212, 0.2);
  color: #00bcd4;
}
.theme-default-light button[matcha-button][color=cyan][alpha]:not([alpha=false]) matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=cyan][alpha]:not([alpha=false]) matcha-divider .border-color-disabled {
  border-color: #00bcd4 !important;
  opacity: 0.3 !important;
}
.theme-default-light button[matcha-button][color=cyan][outline]:not([outline=false]), .theme-default-light button[matcha-button][color=cyan][link]:not([link=false]), .theme-default-light button[matcha-button][color=cyan][basic]:not([basic=false]),
.theme-default-light a[matcha-button][color=cyan][outline]:not([outline=false]),
.theme-default-light a[matcha-button][color=cyan][link]:not([link=false]),
.theme-default-light a[matcha-button][color=cyan][basic]:not([basic=false]) {
  color: #00bcd4;
}
.theme-default-light button[matcha-button][color=cyan][outline]:not([outline=false]) matcha-divider .border-color-disabled, .theme-default-light button[matcha-button][color=cyan][link]:not([link=false]) matcha-divider .border-color-disabled, .theme-default-light button[matcha-button][color=cyan][basic]:not([basic=false]) matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=cyan][outline]:not([outline=false]) matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=cyan][link]:not([link=false]) matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=cyan][basic]:not([basic=false]) matcha-divider .border-color-disabled {
  border-color: #00bcd4 !important;
  opacity: 0.3 !important;
}
.theme-default-light button[matcha-button][color=cyan],
.theme-default-light a[matcha-button][color=cyan] {
  background: #00bcd4;
  color: white;
}
.theme-default-light button[matcha-button][color=cyan] matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=cyan] matcha-divider .border-color-disabled {
  border-color: white !important;
  opacity: 0.3 !important;
}
.theme-default-light button[matcha-button][color=cyan] .ripple,
.theme-default-light a[matcha-button][color=cyan] .ripple {
  background: rgba(255, 255, 255, 0.2);
}
.theme-default-light button[matcha-button][disabled][solid], .theme-default-light button[matcha-button][disabled][solid]:not([solid=false]), .theme-default-light button[matcha-button][disabled][solid=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[solid], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[solid]:not([solid=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[solid=true], .theme-default-light button[matcha-button][disabled=true][solid], .theme-default-light button[matcha-button][disabled=true][solid]:not([solid=false]), .theme-default-light button[matcha-button][disabled=true][solid=true],
.theme-default-light a[matcha-button][disabled][solid],
.theme-default-light a[matcha-button][disabled][solid]:not([solid=false]),
.theme-default-light a[matcha-button][disabled][solid=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[solid],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[solid]:not([solid=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[solid=true],
.theme-default-light a[matcha-button][disabled=true][solid],
.theme-default-light a[matcha-button][disabled=true][solid]:not([solid=false]),
.theme-default-light a[matcha-button][disabled=true][solid=true] {
  background: #E2E7E9;
  color: rgba(33, 40, 44, 0.5);
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][disabled][outline], .theme-default-light button[matcha-button][disabled][outline]:not([outline=false]), .theme-default-light button[matcha-button][disabled][outline=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[outline], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[outline]:not([outline=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[outline=true], .theme-default-light button[matcha-button][disabled=true][outline], .theme-default-light button[matcha-button][disabled=true][outline]:not([outline=false]), .theme-default-light button[matcha-button][disabled=true][outline=true],
.theme-default-light a[matcha-button][disabled][outline],
.theme-default-light a[matcha-button][disabled][outline]:not([outline=false]),
.theme-default-light a[matcha-button][disabled][outline=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[outline],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[outline]:not([outline=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[outline=true],
.theme-default-light a[matcha-button][disabled=true][outline],
.theme-default-light a[matcha-button][disabled=true][outline]:not([outline=false]),
.theme-default-light a[matcha-button][disabled=true][outline=true] {
  background: transparent;
  color: #E2E7E9;
  box-shadow: 0 0 0 2px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][disabled][basic], .theme-default-light button[matcha-button][disabled][basic]:not([basic=false]), .theme-default-light button[matcha-button][disabled][basic=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[basic], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[basic]:not([basic=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[basic=true], .theme-default-light button[matcha-button][disabled=true][basic], .theme-default-light button[matcha-button][disabled=true][basic]:not([basic=false]), .theme-default-light button[matcha-button][disabled=true][basic=true],
.theme-default-light a[matcha-button][disabled][basic],
.theme-default-light a[matcha-button][disabled][basic]:not([basic=false]),
.theme-default-light a[matcha-button][disabled][basic=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[basic],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[basic]:not([basic=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[basic=true],
.theme-default-light a[matcha-button][disabled=true][basic],
.theme-default-light a[matcha-button][disabled=true][basic]:not([basic=false]),
.theme-default-light a[matcha-button][disabled=true][basic=true] {
  background: #FFFFFF;
  color: #E2E7E9;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][disabled][alpha], .theme-default-light button[matcha-button][disabled][alpha]:not([alpha=false]), .theme-default-light button[matcha-button][disabled][alpha=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[alpha], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[alpha]:not([alpha=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[alpha=true], .theme-default-light button[matcha-button][disabled=true][alpha], .theme-default-light button[matcha-button][disabled=true][alpha]:not([alpha=false]), .theme-default-light button[matcha-button][disabled=true][alpha=true],
.theme-default-light a[matcha-button][disabled][alpha],
.theme-default-light a[matcha-button][disabled][alpha]:not([alpha=false]),
.theme-default-light a[matcha-button][disabled][alpha=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[alpha],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[alpha]:not([alpha=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[alpha=true],
.theme-default-light a[matcha-button][disabled=true][alpha],
.theme-default-light a[matcha-button][disabled=true][alpha]:not([alpha=false]),
.theme-default-light a[matcha-button][disabled=true][alpha=true] {
  background: rgba(226, 231, 233, 0.5);
  color: #E2E7E9;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][disabled][link], .theme-default-light button[matcha-button][disabled][link]:not([link=false]), .theme-default-light button[matcha-button][disabled][link=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[link], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[link]:not([link=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[link=true], .theme-default-light button[matcha-button][disabled=true][link], .theme-default-light button[matcha-button][disabled=true][link]:not([link=false]), .theme-default-light button[matcha-button][disabled=true][link=true],
.theme-default-light a[matcha-button][disabled][link],
.theme-default-light a[matcha-button][disabled][link]:not([link=false]),
.theme-default-light a[matcha-button][disabled][link=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[link],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[link]:not([link=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[link=true],
.theme-default-light a[matcha-button][disabled=true][link],
.theme-default-light a[matcha-button][disabled=true][link]:not([link=false]),
.theme-default-light a[matcha-button][disabled=true][link=true] {
  background: transparent;
  color: #E2E7E9;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][color=teal][outline]:not([outline=false]) .ripple, .theme-default-light button[matcha-button][color=teal][basic]:not([basic=false]) .ripple,
.theme-default-light a[matcha-button][color=teal][outline]:not([outline=false]) .ripple,
.theme-default-light a[matcha-button][color=teal][basic]:not([basic=false]) .ripple {
  background: rgba(0, 150, 136, 0.2);
}
.theme-default-light button[matcha-button][color=teal][alpha]:not([alpha=false]),
.theme-default-light a[matcha-button][color=teal][alpha]:not([alpha=false]) {
  background: rgba(0, 150, 136, 0.2);
  color: #009688;
}
.theme-default-light button[matcha-button][color=teal][alpha]:not([alpha=false]) matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=teal][alpha]:not([alpha=false]) matcha-divider .border-color-disabled {
  border-color: #009688 !important;
  opacity: 0.3 !important;
}
.theme-default-light button[matcha-button][color=teal][outline]:not([outline=false]), .theme-default-light button[matcha-button][color=teal][link]:not([link=false]), .theme-default-light button[matcha-button][color=teal][basic]:not([basic=false]),
.theme-default-light a[matcha-button][color=teal][outline]:not([outline=false]),
.theme-default-light a[matcha-button][color=teal][link]:not([link=false]),
.theme-default-light a[matcha-button][color=teal][basic]:not([basic=false]) {
  color: #009688;
}
.theme-default-light button[matcha-button][color=teal][outline]:not([outline=false]) matcha-divider .border-color-disabled, .theme-default-light button[matcha-button][color=teal][link]:not([link=false]) matcha-divider .border-color-disabled, .theme-default-light button[matcha-button][color=teal][basic]:not([basic=false]) matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=teal][outline]:not([outline=false]) matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=teal][link]:not([link=false]) matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=teal][basic]:not([basic=false]) matcha-divider .border-color-disabled {
  border-color: #009688 !important;
  opacity: 0.3 !important;
}
.theme-default-light button[matcha-button][color=teal],
.theme-default-light a[matcha-button][color=teal] {
  background: #009688;
  color: white;
}
.theme-default-light button[matcha-button][color=teal] matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=teal] matcha-divider .border-color-disabled {
  border-color: white !important;
  opacity: 0.3 !important;
}
.theme-default-light button[matcha-button][color=teal] .ripple,
.theme-default-light a[matcha-button][color=teal] .ripple {
  background: rgba(255, 255, 255, 0.2);
}
.theme-default-light button[matcha-button][disabled][solid], .theme-default-light button[matcha-button][disabled][solid]:not([solid=false]), .theme-default-light button[matcha-button][disabled][solid=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[solid], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[solid]:not([solid=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[solid=true], .theme-default-light button[matcha-button][disabled=true][solid], .theme-default-light button[matcha-button][disabled=true][solid]:not([solid=false]), .theme-default-light button[matcha-button][disabled=true][solid=true],
.theme-default-light a[matcha-button][disabled][solid],
.theme-default-light a[matcha-button][disabled][solid]:not([solid=false]),
.theme-default-light a[matcha-button][disabled][solid=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[solid],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[solid]:not([solid=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[solid=true],
.theme-default-light a[matcha-button][disabled=true][solid],
.theme-default-light a[matcha-button][disabled=true][solid]:not([solid=false]),
.theme-default-light a[matcha-button][disabled=true][solid=true] {
  background: #E2E7E9;
  color: rgba(33, 40, 44, 0.5);
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][disabled][outline], .theme-default-light button[matcha-button][disabled][outline]:not([outline=false]), .theme-default-light button[matcha-button][disabled][outline=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[outline], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[outline]:not([outline=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[outline=true], .theme-default-light button[matcha-button][disabled=true][outline], .theme-default-light button[matcha-button][disabled=true][outline]:not([outline=false]), .theme-default-light button[matcha-button][disabled=true][outline=true],
.theme-default-light a[matcha-button][disabled][outline],
.theme-default-light a[matcha-button][disabled][outline]:not([outline=false]),
.theme-default-light a[matcha-button][disabled][outline=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[outline],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[outline]:not([outline=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[outline=true],
.theme-default-light a[matcha-button][disabled=true][outline],
.theme-default-light a[matcha-button][disabled=true][outline]:not([outline=false]),
.theme-default-light a[matcha-button][disabled=true][outline=true] {
  background: transparent;
  color: #E2E7E9;
  box-shadow: 0 0 0 2px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][disabled][basic], .theme-default-light button[matcha-button][disabled][basic]:not([basic=false]), .theme-default-light button[matcha-button][disabled][basic=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[basic], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[basic]:not([basic=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[basic=true], .theme-default-light button[matcha-button][disabled=true][basic], .theme-default-light button[matcha-button][disabled=true][basic]:not([basic=false]), .theme-default-light button[matcha-button][disabled=true][basic=true],
.theme-default-light a[matcha-button][disabled][basic],
.theme-default-light a[matcha-button][disabled][basic]:not([basic=false]),
.theme-default-light a[matcha-button][disabled][basic=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[basic],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[basic]:not([basic=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[basic=true],
.theme-default-light a[matcha-button][disabled=true][basic],
.theme-default-light a[matcha-button][disabled=true][basic]:not([basic=false]),
.theme-default-light a[matcha-button][disabled=true][basic=true] {
  background: #FFFFFF;
  color: #E2E7E9;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][disabled][alpha], .theme-default-light button[matcha-button][disabled][alpha]:not([alpha=false]), .theme-default-light button[matcha-button][disabled][alpha=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[alpha], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[alpha]:not([alpha=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[alpha=true], .theme-default-light button[matcha-button][disabled=true][alpha], .theme-default-light button[matcha-button][disabled=true][alpha]:not([alpha=false]), .theme-default-light button[matcha-button][disabled=true][alpha=true],
.theme-default-light a[matcha-button][disabled][alpha],
.theme-default-light a[matcha-button][disabled][alpha]:not([alpha=false]),
.theme-default-light a[matcha-button][disabled][alpha=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[alpha],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[alpha]:not([alpha=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[alpha=true],
.theme-default-light a[matcha-button][disabled=true][alpha],
.theme-default-light a[matcha-button][disabled=true][alpha]:not([alpha=false]),
.theme-default-light a[matcha-button][disabled=true][alpha=true] {
  background: rgba(226, 231, 233, 0.5);
  color: #E2E7E9;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][disabled][link], .theme-default-light button[matcha-button][disabled][link]:not([link=false]), .theme-default-light button[matcha-button][disabled][link=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[link], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[link]:not([link=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[link=true], .theme-default-light button[matcha-button][disabled=true][link], .theme-default-light button[matcha-button][disabled=true][link]:not([link=false]), .theme-default-light button[matcha-button][disabled=true][link=true],
.theme-default-light a[matcha-button][disabled][link],
.theme-default-light a[matcha-button][disabled][link]:not([link=false]),
.theme-default-light a[matcha-button][disabled][link=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[link],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[link]:not([link=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[link=true],
.theme-default-light a[matcha-button][disabled=true][link],
.theme-default-light a[matcha-button][disabled=true][link]:not([link=false]),
.theme-default-light a[matcha-button][disabled=true][link=true] {
  background: transparent;
  color: #E2E7E9;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][color=green][outline]:not([outline=false]) .ripple, .theme-default-light button[matcha-button][color=green][basic]:not([basic=false]) .ripple,
.theme-default-light a[matcha-button][color=green][outline]:not([outline=false]) .ripple,
.theme-default-light a[matcha-button][color=green][basic]:not([basic=false]) .ripple {
  background: rgba(17, 144, 70, 0.2);
}
.theme-default-light button[matcha-button][color=green][alpha]:not([alpha=false]),
.theme-default-light a[matcha-button][color=green][alpha]:not([alpha=false]) {
  background: rgba(17, 144, 70, 0.2);
  color: #119046;
}
.theme-default-light button[matcha-button][color=green][alpha]:not([alpha=false]) matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=green][alpha]:not([alpha=false]) matcha-divider .border-color-disabled {
  border-color: #119046 !important;
  opacity: 0.3 !important;
}
.theme-default-light button[matcha-button][color=green][outline]:not([outline=false]), .theme-default-light button[matcha-button][color=green][link]:not([link=false]), .theme-default-light button[matcha-button][color=green][basic]:not([basic=false]),
.theme-default-light a[matcha-button][color=green][outline]:not([outline=false]),
.theme-default-light a[matcha-button][color=green][link]:not([link=false]),
.theme-default-light a[matcha-button][color=green][basic]:not([basic=false]) {
  color: #119046;
}
.theme-default-light button[matcha-button][color=green][outline]:not([outline=false]) matcha-divider .border-color-disabled, .theme-default-light button[matcha-button][color=green][link]:not([link=false]) matcha-divider .border-color-disabled, .theme-default-light button[matcha-button][color=green][basic]:not([basic=false]) matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=green][outline]:not([outline=false]) matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=green][link]:not([link=false]) matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=green][basic]:not([basic=false]) matcha-divider .border-color-disabled {
  border-color: #119046 !important;
  opacity: 0.3 !important;
}
.theme-default-light button[matcha-button][color=green],
.theme-default-light a[matcha-button][color=green] {
  background: #119046;
  color: white;
}
.theme-default-light button[matcha-button][color=green] matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=green] matcha-divider .border-color-disabled {
  border-color: white !important;
  opacity: 0.3 !important;
}
.theme-default-light button[matcha-button][color=green] .ripple,
.theme-default-light a[matcha-button][color=green] .ripple {
  background: rgba(255, 255, 255, 0.2);
}
.theme-default-light button[matcha-button][disabled][solid], .theme-default-light button[matcha-button][disabled][solid]:not([solid=false]), .theme-default-light button[matcha-button][disabled][solid=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[solid], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[solid]:not([solid=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[solid=true], .theme-default-light button[matcha-button][disabled=true][solid], .theme-default-light button[matcha-button][disabled=true][solid]:not([solid=false]), .theme-default-light button[matcha-button][disabled=true][solid=true],
.theme-default-light a[matcha-button][disabled][solid],
.theme-default-light a[matcha-button][disabled][solid]:not([solid=false]),
.theme-default-light a[matcha-button][disabled][solid=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[solid],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[solid]:not([solid=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[solid=true],
.theme-default-light a[matcha-button][disabled=true][solid],
.theme-default-light a[matcha-button][disabled=true][solid]:not([solid=false]),
.theme-default-light a[matcha-button][disabled=true][solid=true] {
  background: #E2E7E9;
  color: rgba(33, 40, 44, 0.5);
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][disabled][outline], .theme-default-light button[matcha-button][disabled][outline]:not([outline=false]), .theme-default-light button[matcha-button][disabled][outline=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[outline], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[outline]:not([outline=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[outline=true], .theme-default-light button[matcha-button][disabled=true][outline], .theme-default-light button[matcha-button][disabled=true][outline]:not([outline=false]), .theme-default-light button[matcha-button][disabled=true][outline=true],
.theme-default-light a[matcha-button][disabled][outline],
.theme-default-light a[matcha-button][disabled][outline]:not([outline=false]),
.theme-default-light a[matcha-button][disabled][outline=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[outline],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[outline]:not([outline=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[outline=true],
.theme-default-light a[matcha-button][disabled=true][outline],
.theme-default-light a[matcha-button][disabled=true][outline]:not([outline=false]),
.theme-default-light a[matcha-button][disabled=true][outline=true] {
  background: transparent;
  color: #E2E7E9;
  box-shadow: 0 0 0 2px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][disabled][basic], .theme-default-light button[matcha-button][disabled][basic]:not([basic=false]), .theme-default-light button[matcha-button][disabled][basic=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[basic], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[basic]:not([basic=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[basic=true], .theme-default-light button[matcha-button][disabled=true][basic], .theme-default-light button[matcha-button][disabled=true][basic]:not([basic=false]), .theme-default-light button[matcha-button][disabled=true][basic=true],
.theme-default-light a[matcha-button][disabled][basic],
.theme-default-light a[matcha-button][disabled][basic]:not([basic=false]),
.theme-default-light a[matcha-button][disabled][basic=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[basic],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[basic]:not([basic=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[basic=true],
.theme-default-light a[matcha-button][disabled=true][basic],
.theme-default-light a[matcha-button][disabled=true][basic]:not([basic=false]),
.theme-default-light a[matcha-button][disabled=true][basic=true] {
  background: #FFFFFF;
  color: #E2E7E9;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][disabled][alpha], .theme-default-light button[matcha-button][disabled][alpha]:not([alpha=false]), .theme-default-light button[matcha-button][disabled][alpha=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[alpha], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[alpha]:not([alpha=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[alpha=true], .theme-default-light button[matcha-button][disabled=true][alpha], .theme-default-light button[matcha-button][disabled=true][alpha]:not([alpha=false]), .theme-default-light button[matcha-button][disabled=true][alpha=true],
.theme-default-light a[matcha-button][disabled][alpha],
.theme-default-light a[matcha-button][disabled][alpha]:not([alpha=false]),
.theme-default-light a[matcha-button][disabled][alpha=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[alpha],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[alpha]:not([alpha=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[alpha=true],
.theme-default-light a[matcha-button][disabled=true][alpha],
.theme-default-light a[matcha-button][disabled=true][alpha]:not([alpha=false]),
.theme-default-light a[matcha-button][disabled=true][alpha=true] {
  background: rgba(226, 231, 233, 0.5);
  color: #E2E7E9;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][disabled][link], .theme-default-light button[matcha-button][disabled][link]:not([link=false]), .theme-default-light button[matcha-button][disabled][link=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[link], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[link]:not([link=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[link=true], .theme-default-light button[matcha-button][disabled=true][link], .theme-default-light button[matcha-button][disabled=true][link]:not([link=false]), .theme-default-light button[matcha-button][disabled=true][link=true],
.theme-default-light a[matcha-button][disabled][link],
.theme-default-light a[matcha-button][disabled][link]:not([link=false]),
.theme-default-light a[matcha-button][disabled][link=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[link],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[link]:not([link=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[link=true],
.theme-default-light a[matcha-button][disabled=true][link],
.theme-default-light a[matcha-button][disabled=true][link]:not([link=false]),
.theme-default-light a[matcha-button][disabled=true][link=true] {
  background: transparent;
  color: #E2E7E9;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][color=light-green][outline]:not([outline=false]) .ripple, .theme-default-light button[matcha-button][color=light-green][basic]:not([basic=false]) .ripple,
.theme-default-light a[matcha-button][color=light-green][outline]:not([outline=false]) .ripple,
.theme-default-light a[matcha-button][color=light-green][basic]:not([basic=false]) .ripple {
  background: rgba(110, 218, 44, 0.2);
}
.theme-default-light button[matcha-button][color=light-green][alpha]:not([alpha=false]),
.theme-default-light a[matcha-button][color=light-green][alpha]:not([alpha=false]) {
  background: rgba(110, 218, 44, 0.2);
  color: #6EDA2C;
}
.theme-default-light button[matcha-button][color=light-green][alpha]:not([alpha=false]) matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=light-green][alpha]:not([alpha=false]) matcha-divider .border-color-disabled {
  border-color: #6EDA2C !important;
  opacity: 0.3 !important;
}
.theme-default-light button[matcha-button][color=light-green][outline]:not([outline=false]), .theme-default-light button[matcha-button][color=light-green][link]:not([link=false]), .theme-default-light button[matcha-button][color=light-green][basic]:not([basic=false]),
.theme-default-light a[matcha-button][color=light-green][outline]:not([outline=false]),
.theme-default-light a[matcha-button][color=light-green][link]:not([link=false]),
.theme-default-light a[matcha-button][color=light-green][basic]:not([basic=false]) {
  color: #6EDA2C;
}
.theme-default-light button[matcha-button][color=light-green][outline]:not([outline=false]) matcha-divider .border-color-disabled, .theme-default-light button[matcha-button][color=light-green][link]:not([link=false]) matcha-divider .border-color-disabled, .theme-default-light button[matcha-button][color=light-green][basic]:not([basic=false]) matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=light-green][outline]:not([outline=false]) matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=light-green][link]:not([link=false]) matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=light-green][basic]:not([basic=false]) matcha-divider .border-color-disabled {
  border-color: #6EDA2C !important;
  opacity: 0.3 !important;
}
.theme-default-light button[matcha-button][color=light-green],
.theme-default-light a[matcha-button][color=light-green] {
  background: #6EDA2C;
  color: rgba(0, 0, 0, 0.87);
}
.theme-default-light button[matcha-button][color=light-green] matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=light-green] matcha-divider .border-color-disabled {
  border-color: rgba(0, 0, 0, 0.87) !important;
  opacity: 0.3 !important;
}
.theme-default-light button[matcha-button][color=light-green] .ripple,
.theme-default-light a[matcha-button][color=light-green] .ripple {
  background: rgba(0, 0, 0, 0.2);
}
.theme-default-light button[matcha-button][disabled][solid], .theme-default-light button[matcha-button][disabled][solid]:not([solid=false]), .theme-default-light button[matcha-button][disabled][solid=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[solid], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[solid]:not([solid=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[solid=true], .theme-default-light button[matcha-button][disabled=true][solid], .theme-default-light button[matcha-button][disabled=true][solid]:not([solid=false]), .theme-default-light button[matcha-button][disabled=true][solid=true],
.theme-default-light a[matcha-button][disabled][solid],
.theme-default-light a[matcha-button][disabled][solid]:not([solid=false]),
.theme-default-light a[matcha-button][disabled][solid=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[solid],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[solid]:not([solid=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[solid=true],
.theme-default-light a[matcha-button][disabled=true][solid],
.theme-default-light a[matcha-button][disabled=true][solid]:not([solid=false]),
.theme-default-light a[matcha-button][disabled=true][solid=true] {
  background: #E2E7E9;
  color: rgba(33, 40, 44, 0.5);
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][disabled][outline], .theme-default-light button[matcha-button][disabled][outline]:not([outline=false]), .theme-default-light button[matcha-button][disabled][outline=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[outline], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[outline]:not([outline=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[outline=true], .theme-default-light button[matcha-button][disabled=true][outline], .theme-default-light button[matcha-button][disabled=true][outline]:not([outline=false]), .theme-default-light button[matcha-button][disabled=true][outline=true],
.theme-default-light a[matcha-button][disabled][outline],
.theme-default-light a[matcha-button][disabled][outline]:not([outline=false]),
.theme-default-light a[matcha-button][disabled][outline=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[outline],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[outline]:not([outline=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[outline=true],
.theme-default-light a[matcha-button][disabled=true][outline],
.theme-default-light a[matcha-button][disabled=true][outline]:not([outline=false]),
.theme-default-light a[matcha-button][disabled=true][outline=true] {
  background: transparent;
  color: #E2E7E9;
  box-shadow: 0 0 0 2px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][disabled][basic], .theme-default-light button[matcha-button][disabled][basic]:not([basic=false]), .theme-default-light button[matcha-button][disabled][basic=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[basic], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[basic]:not([basic=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[basic=true], .theme-default-light button[matcha-button][disabled=true][basic], .theme-default-light button[matcha-button][disabled=true][basic]:not([basic=false]), .theme-default-light button[matcha-button][disabled=true][basic=true],
.theme-default-light a[matcha-button][disabled][basic],
.theme-default-light a[matcha-button][disabled][basic]:not([basic=false]),
.theme-default-light a[matcha-button][disabled][basic=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[basic],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[basic]:not([basic=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[basic=true],
.theme-default-light a[matcha-button][disabled=true][basic],
.theme-default-light a[matcha-button][disabled=true][basic]:not([basic=false]),
.theme-default-light a[matcha-button][disabled=true][basic=true] {
  background: #FFFFFF;
  color: #E2E7E9;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][disabled][alpha], .theme-default-light button[matcha-button][disabled][alpha]:not([alpha=false]), .theme-default-light button[matcha-button][disabled][alpha=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[alpha], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[alpha]:not([alpha=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[alpha=true], .theme-default-light button[matcha-button][disabled=true][alpha], .theme-default-light button[matcha-button][disabled=true][alpha]:not([alpha=false]), .theme-default-light button[matcha-button][disabled=true][alpha=true],
.theme-default-light a[matcha-button][disabled][alpha],
.theme-default-light a[matcha-button][disabled][alpha]:not([alpha=false]),
.theme-default-light a[matcha-button][disabled][alpha=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[alpha],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[alpha]:not([alpha=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[alpha=true],
.theme-default-light a[matcha-button][disabled=true][alpha],
.theme-default-light a[matcha-button][disabled=true][alpha]:not([alpha=false]),
.theme-default-light a[matcha-button][disabled=true][alpha=true] {
  background: rgba(226, 231, 233, 0.5);
  color: #E2E7E9;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][disabled][link], .theme-default-light button[matcha-button][disabled][link]:not([link=false]), .theme-default-light button[matcha-button][disabled][link=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[link], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[link]:not([link=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[link=true], .theme-default-light button[matcha-button][disabled=true][link], .theme-default-light button[matcha-button][disabled=true][link]:not([link=false]), .theme-default-light button[matcha-button][disabled=true][link=true],
.theme-default-light a[matcha-button][disabled][link],
.theme-default-light a[matcha-button][disabled][link]:not([link=false]),
.theme-default-light a[matcha-button][disabled][link=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[link],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[link]:not([link=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[link=true],
.theme-default-light a[matcha-button][disabled=true][link],
.theme-default-light a[matcha-button][disabled=true][link]:not([link=false]),
.theme-default-light a[matcha-button][disabled=true][link=true] {
  background: transparent;
  color: #E2E7E9;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][color=lime][outline]:not([outline=false]) .ripple, .theme-default-light button[matcha-button][color=lime][basic]:not([basic=false]) .ripple,
.theme-default-light a[matcha-button][color=lime][outline]:not([outline=false]) .ripple,
.theme-default-light a[matcha-button][color=lime][basic]:not([basic=false]) .ripple {
  background: rgba(134, 189, 0, 0.2);
}
.theme-default-light button[matcha-button][color=lime][alpha]:not([alpha=false]),
.theme-default-light a[matcha-button][color=lime][alpha]:not([alpha=false]) {
  background: rgba(134, 189, 0, 0.2);
  color: #86bd00;
}
.theme-default-light button[matcha-button][color=lime][alpha]:not([alpha=false]) matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=lime][alpha]:not([alpha=false]) matcha-divider .border-color-disabled {
  border-color: #86bd00 !important;
  opacity: 0.3 !important;
}
.theme-default-light button[matcha-button][color=lime][outline]:not([outline=false]), .theme-default-light button[matcha-button][color=lime][link]:not([link=false]), .theme-default-light button[matcha-button][color=lime][basic]:not([basic=false]),
.theme-default-light a[matcha-button][color=lime][outline]:not([outline=false]),
.theme-default-light a[matcha-button][color=lime][link]:not([link=false]),
.theme-default-light a[matcha-button][color=lime][basic]:not([basic=false]) {
  color: #86bd00;
}
.theme-default-light button[matcha-button][color=lime][outline]:not([outline=false]) matcha-divider .border-color-disabled, .theme-default-light button[matcha-button][color=lime][link]:not([link=false]) matcha-divider .border-color-disabled, .theme-default-light button[matcha-button][color=lime][basic]:not([basic=false]) matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=lime][outline]:not([outline=false]) matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=lime][link]:not([link=false]) matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=lime][basic]:not([basic=false]) matcha-divider .border-color-disabled {
  border-color: #86bd00 !important;
  opacity: 0.3 !important;
}
.theme-default-light button[matcha-button][color=lime],
.theme-default-light a[matcha-button][color=lime] {
  background: #86bd00;
  color: white;
}
.theme-default-light button[matcha-button][color=lime] matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=lime] matcha-divider .border-color-disabled {
  border-color: white !important;
  opacity: 0.3 !important;
}
.theme-default-light button[matcha-button][color=lime] .ripple,
.theme-default-light a[matcha-button][color=lime] .ripple {
  background: rgba(255, 255, 255, 0.2);
}
.theme-default-light button[matcha-button][disabled][solid], .theme-default-light button[matcha-button][disabled][solid]:not([solid=false]), .theme-default-light button[matcha-button][disabled][solid=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[solid], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[solid]:not([solid=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[solid=true], .theme-default-light button[matcha-button][disabled=true][solid], .theme-default-light button[matcha-button][disabled=true][solid]:not([solid=false]), .theme-default-light button[matcha-button][disabled=true][solid=true],
.theme-default-light a[matcha-button][disabled][solid],
.theme-default-light a[matcha-button][disabled][solid]:not([solid=false]),
.theme-default-light a[matcha-button][disabled][solid=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[solid],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[solid]:not([solid=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[solid=true],
.theme-default-light a[matcha-button][disabled=true][solid],
.theme-default-light a[matcha-button][disabled=true][solid]:not([solid=false]),
.theme-default-light a[matcha-button][disabled=true][solid=true] {
  background: #E2E7E9;
  color: rgba(33, 40, 44, 0.5);
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][disabled][outline], .theme-default-light button[matcha-button][disabled][outline]:not([outline=false]), .theme-default-light button[matcha-button][disabled][outline=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[outline], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[outline]:not([outline=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[outline=true], .theme-default-light button[matcha-button][disabled=true][outline], .theme-default-light button[matcha-button][disabled=true][outline]:not([outline=false]), .theme-default-light button[matcha-button][disabled=true][outline=true],
.theme-default-light a[matcha-button][disabled][outline],
.theme-default-light a[matcha-button][disabled][outline]:not([outline=false]),
.theme-default-light a[matcha-button][disabled][outline=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[outline],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[outline]:not([outline=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[outline=true],
.theme-default-light a[matcha-button][disabled=true][outline],
.theme-default-light a[matcha-button][disabled=true][outline]:not([outline=false]),
.theme-default-light a[matcha-button][disabled=true][outline=true] {
  background: transparent;
  color: #E2E7E9;
  box-shadow: 0 0 0 2px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][disabled][basic], .theme-default-light button[matcha-button][disabled][basic]:not([basic=false]), .theme-default-light button[matcha-button][disabled][basic=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[basic], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[basic]:not([basic=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[basic=true], .theme-default-light button[matcha-button][disabled=true][basic], .theme-default-light button[matcha-button][disabled=true][basic]:not([basic=false]), .theme-default-light button[matcha-button][disabled=true][basic=true],
.theme-default-light a[matcha-button][disabled][basic],
.theme-default-light a[matcha-button][disabled][basic]:not([basic=false]),
.theme-default-light a[matcha-button][disabled][basic=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[basic],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[basic]:not([basic=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[basic=true],
.theme-default-light a[matcha-button][disabled=true][basic],
.theme-default-light a[matcha-button][disabled=true][basic]:not([basic=false]),
.theme-default-light a[matcha-button][disabled=true][basic=true] {
  background: #FFFFFF;
  color: #E2E7E9;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][disabled][alpha], .theme-default-light button[matcha-button][disabled][alpha]:not([alpha=false]), .theme-default-light button[matcha-button][disabled][alpha=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[alpha], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[alpha]:not([alpha=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[alpha=true], .theme-default-light button[matcha-button][disabled=true][alpha], .theme-default-light button[matcha-button][disabled=true][alpha]:not([alpha=false]), .theme-default-light button[matcha-button][disabled=true][alpha=true],
.theme-default-light a[matcha-button][disabled][alpha],
.theme-default-light a[matcha-button][disabled][alpha]:not([alpha=false]),
.theme-default-light a[matcha-button][disabled][alpha=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[alpha],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[alpha]:not([alpha=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[alpha=true],
.theme-default-light a[matcha-button][disabled=true][alpha],
.theme-default-light a[matcha-button][disabled=true][alpha]:not([alpha=false]),
.theme-default-light a[matcha-button][disabled=true][alpha=true] {
  background: rgba(226, 231, 233, 0.5);
  color: #E2E7E9;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][disabled][link], .theme-default-light button[matcha-button][disabled][link]:not([link=false]), .theme-default-light button[matcha-button][disabled][link=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[link], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[link]:not([link=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[link=true], .theme-default-light button[matcha-button][disabled=true][link], .theme-default-light button[matcha-button][disabled=true][link]:not([link=false]), .theme-default-light button[matcha-button][disabled=true][link=true],
.theme-default-light a[matcha-button][disabled][link],
.theme-default-light a[matcha-button][disabled][link]:not([link=false]),
.theme-default-light a[matcha-button][disabled][link=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[link],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[link]:not([link=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[link=true],
.theme-default-light a[matcha-button][disabled=true][link],
.theme-default-light a[matcha-button][disabled=true][link]:not([link=false]),
.theme-default-light a[matcha-button][disabled=true][link=true] {
  background: transparent;
  color: #E2E7E9;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][color=yellow][outline]:not([outline=false]) .ripple, .theme-default-light button[matcha-button][color=yellow][basic]:not([basic=false]) .ripple,
.theme-default-light a[matcha-button][color=yellow][outline]:not([outline=false]) .ripple,
.theme-default-light a[matcha-button][color=yellow][basic]:not([basic=false]) .ripple {
  background: rgba(232, 195, 0, 0.2);
}
.theme-default-light button[matcha-button][color=yellow][alpha]:not([alpha=false]),
.theme-default-light a[matcha-button][color=yellow][alpha]:not([alpha=false]) {
  background: rgba(232, 195, 0, 0.2);
  color: #e8c300;
}
.theme-default-light button[matcha-button][color=yellow][alpha]:not([alpha=false]) matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=yellow][alpha]:not([alpha=false]) matcha-divider .border-color-disabled {
  border-color: #e8c300 !important;
  opacity: 0.3 !important;
}
.theme-default-light button[matcha-button][color=yellow][outline]:not([outline=false]), .theme-default-light button[matcha-button][color=yellow][link]:not([link=false]), .theme-default-light button[matcha-button][color=yellow][basic]:not([basic=false]),
.theme-default-light a[matcha-button][color=yellow][outline]:not([outline=false]),
.theme-default-light a[matcha-button][color=yellow][link]:not([link=false]),
.theme-default-light a[matcha-button][color=yellow][basic]:not([basic=false]) {
  color: #e8c300;
}
.theme-default-light button[matcha-button][color=yellow][outline]:not([outline=false]) matcha-divider .border-color-disabled, .theme-default-light button[matcha-button][color=yellow][link]:not([link=false]) matcha-divider .border-color-disabled, .theme-default-light button[matcha-button][color=yellow][basic]:not([basic=false]) matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=yellow][outline]:not([outline=false]) matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=yellow][link]:not([link=false]) matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=yellow][basic]:not([basic=false]) matcha-divider .border-color-disabled {
  border-color: #e8c300 !important;
  opacity: 0.3 !important;
}
.theme-default-light button[matcha-button][color=yellow],
.theme-default-light a[matcha-button][color=yellow] {
  background: #e8c300;
  color: rgba(0, 0, 0, 0.87);
}
.theme-default-light button[matcha-button][color=yellow] matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=yellow] matcha-divider .border-color-disabled {
  border-color: rgba(0, 0, 0, 0.87) !important;
  opacity: 0.3 !important;
}
.theme-default-light button[matcha-button][color=yellow] .ripple,
.theme-default-light a[matcha-button][color=yellow] .ripple {
  background: rgba(0, 0, 0, 0.2);
}
.theme-default-light button[matcha-button][disabled][solid], .theme-default-light button[matcha-button][disabled][solid]:not([solid=false]), .theme-default-light button[matcha-button][disabled][solid=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[solid], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[solid]:not([solid=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[solid=true], .theme-default-light button[matcha-button][disabled=true][solid], .theme-default-light button[matcha-button][disabled=true][solid]:not([solid=false]), .theme-default-light button[matcha-button][disabled=true][solid=true],
.theme-default-light a[matcha-button][disabled][solid],
.theme-default-light a[matcha-button][disabled][solid]:not([solid=false]),
.theme-default-light a[matcha-button][disabled][solid=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[solid],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[solid]:not([solid=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[solid=true],
.theme-default-light a[matcha-button][disabled=true][solid],
.theme-default-light a[matcha-button][disabled=true][solid]:not([solid=false]),
.theme-default-light a[matcha-button][disabled=true][solid=true] {
  background: #E2E7E9;
  color: rgba(33, 40, 44, 0.5);
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][disabled][outline], .theme-default-light button[matcha-button][disabled][outline]:not([outline=false]), .theme-default-light button[matcha-button][disabled][outline=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[outline], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[outline]:not([outline=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[outline=true], .theme-default-light button[matcha-button][disabled=true][outline], .theme-default-light button[matcha-button][disabled=true][outline]:not([outline=false]), .theme-default-light button[matcha-button][disabled=true][outline=true],
.theme-default-light a[matcha-button][disabled][outline],
.theme-default-light a[matcha-button][disabled][outline]:not([outline=false]),
.theme-default-light a[matcha-button][disabled][outline=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[outline],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[outline]:not([outline=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[outline=true],
.theme-default-light a[matcha-button][disabled=true][outline],
.theme-default-light a[matcha-button][disabled=true][outline]:not([outline=false]),
.theme-default-light a[matcha-button][disabled=true][outline=true] {
  background: transparent;
  color: #E2E7E9;
  box-shadow: 0 0 0 2px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][disabled][basic], .theme-default-light button[matcha-button][disabled][basic]:not([basic=false]), .theme-default-light button[matcha-button][disabled][basic=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[basic], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[basic]:not([basic=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[basic=true], .theme-default-light button[matcha-button][disabled=true][basic], .theme-default-light button[matcha-button][disabled=true][basic]:not([basic=false]), .theme-default-light button[matcha-button][disabled=true][basic=true],
.theme-default-light a[matcha-button][disabled][basic],
.theme-default-light a[matcha-button][disabled][basic]:not([basic=false]),
.theme-default-light a[matcha-button][disabled][basic=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[basic],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[basic]:not([basic=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[basic=true],
.theme-default-light a[matcha-button][disabled=true][basic],
.theme-default-light a[matcha-button][disabled=true][basic]:not([basic=false]),
.theme-default-light a[matcha-button][disabled=true][basic=true] {
  background: #FFFFFF;
  color: #E2E7E9;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][disabled][alpha], .theme-default-light button[matcha-button][disabled][alpha]:not([alpha=false]), .theme-default-light button[matcha-button][disabled][alpha=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[alpha], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[alpha]:not([alpha=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[alpha=true], .theme-default-light button[matcha-button][disabled=true][alpha], .theme-default-light button[matcha-button][disabled=true][alpha]:not([alpha=false]), .theme-default-light button[matcha-button][disabled=true][alpha=true],
.theme-default-light a[matcha-button][disabled][alpha],
.theme-default-light a[matcha-button][disabled][alpha]:not([alpha=false]),
.theme-default-light a[matcha-button][disabled][alpha=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[alpha],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[alpha]:not([alpha=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[alpha=true],
.theme-default-light a[matcha-button][disabled=true][alpha],
.theme-default-light a[matcha-button][disabled=true][alpha]:not([alpha=false]),
.theme-default-light a[matcha-button][disabled=true][alpha=true] {
  background: rgba(226, 231, 233, 0.5);
  color: #E2E7E9;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][disabled][link], .theme-default-light button[matcha-button][disabled][link]:not([link=false]), .theme-default-light button[matcha-button][disabled][link=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[link], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[link]:not([link=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[link=true], .theme-default-light button[matcha-button][disabled=true][link], .theme-default-light button[matcha-button][disabled=true][link]:not([link=false]), .theme-default-light button[matcha-button][disabled=true][link=true],
.theme-default-light a[matcha-button][disabled][link],
.theme-default-light a[matcha-button][disabled][link]:not([link=false]),
.theme-default-light a[matcha-button][disabled][link=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[link],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[link]:not([link=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[link=true],
.theme-default-light a[matcha-button][disabled=true][link],
.theme-default-light a[matcha-button][disabled=true][link]:not([link=false]),
.theme-default-light a[matcha-button][disabled=true][link=true] {
  background: transparent;
  color: #E2E7E9;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][color=amber][outline]:not([outline=false]) .ripple, .theme-default-light button[matcha-button][color=amber][basic]:not([basic=false]) .ripple,
.theme-default-light a[matcha-button][color=amber][outline]:not([outline=false]) .ripple,
.theme-default-light a[matcha-button][color=amber][basic]:not([basic=false]) .ripple {
  background: rgba(250, 166, 26, 0.2);
}
.theme-default-light button[matcha-button][color=amber][alpha]:not([alpha=false]),
.theme-default-light a[matcha-button][color=amber][alpha]:not([alpha=false]) {
  background: rgba(250, 166, 26, 0.2);
  color: #faa61a;
}
.theme-default-light button[matcha-button][color=amber][alpha]:not([alpha=false]) matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=amber][alpha]:not([alpha=false]) matcha-divider .border-color-disabled {
  border-color: #faa61a !important;
  opacity: 0.3 !important;
}
.theme-default-light button[matcha-button][color=amber][outline]:not([outline=false]), .theme-default-light button[matcha-button][color=amber][link]:not([link=false]), .theme-default-light button[matcha-button][color=amber][basic]:not([basic=false]),
.theme-default-light a[matcha-button][color=amber][outline]:not([outline=false]),
.theme-default-light a[matcha-button][color=amber][link]:not([link=false]),
.theme-default-light a[matcha-button][color=amber][basic]:not([basic=false]) {
  color: #faa61a;
}
.theme-default-light button[matcha-button][color=amber][outline]:not([outline=false]) matcha-divider .border-color-disabled, .theme-default-light button[matcha-button][color=amber][link]:not([link=false]) matcha-divider .border-color-disabled, .theme-default-light button[matcha-button][color=amber][basic]:not([basic=false]) matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=amber][outline]:not([outline=false]) matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=amber][link]:not([link=false]) matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=amber][basic]:not([basic=false]) matcha-divider .border-color-disabled {
  border-color: #faa61a !important;
  opacity: 0.3 !important;
}
.theme-default-light button[matcha-button][color=amber],
.theme-default-light a[matcha-button][color=amber] {
  background: #faa61a;
  color: rgba(0, 0, 0, 0.87);
}
.theme-default-light button[matcha-button][color=amber] matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=amber] matcha-divider .border-color-disabled {
  border-color: rgba(0, 0, 0, 0.87) !important;
  opacity: 0.3 !important;
}
.theme-default-light button[matcha-button][color=amber] .ripple,
.theme-default-light a[matcha-button][color=amber] .ripple {
  background: rgba(0, 0, 0, 0.2);
}
.theme-default-light button[matcha-button][disabled][solid], .theme-default-light button[matcha-button][disabled][solid]:not([solid=false]), .theme-default-light button[matcha-button][disabled][solid=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[solid], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[solid]:not([solid=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[solid=true], .theme-default-light button[matcha-button][disabled=true][solid], .theme-default-light button[matcha-button][disabled=true][solid]:not([solid=false]), .theme-default-light button[matcha-button][disabled=true][solid=true],
.theme-default-light a[matcha-button][disabled][solid],
.theme-default-light a[matcha-button][disabled][solid]:not([solid=false]),
.theme-default-light a[matcha-button][disabled][solid=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[solid],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[solid]:not([solid=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[solid=true],
.theme-default-light a[matcha-button][disabled=true][solid],
.theme-default-light a[matcha-button][disabled=true][solid]:not([solid=false]),
.theme-default-light a[matcha-button][disabled=true][solid=true] {
  background: #E2E7E9;
  color: rgba(33, 40, 44, 0.5);
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][disabled][outline], .theme-default-light button[matcha-button][disabled][outline]:not([outline=false]), .theme-default-light button[matcha-button][disabled][outline=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[outline], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[outline]:not([outline=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[outline=true], .theme-default-light button[matcha-button][disabled=true][outline], .theme-default-light button[matcha-button][disabled=true][outline]:not([outline=false]), .theme-default-light button[matcha-button][disabled=true][outline=true],
.theme-default-light a[matcha-button][disabled][outline],
.theme-default-light a[matcha-button][disabled][outline]:not([outline=false]),
.theme-default-light a[matcha-button][disabled][outline=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[outline],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[outline]:not([outline=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[outline=true],
.theme-default-light a[matcha-button][disabled=true][outline],
.theme-default-light a[matcha-button][disabled=true][outline]:not([outline=false]),
.theme-default-light a[matcha-button][disabled=true][outline=true] {
  background: transparent;
  color: #E2E7E9;
  box-shadow: 0 0 0 2px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][disabled][basic], .theme-default-light button[matcha-button][disabled][basic]:not([basic=false]), .theme-default-light button[matcha-button][disabled][basic=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[basic], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[basic]:not([basic=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[basic=true], .theme-default-light button[matcha-button][disabled=true][basic], .theme-default-light button[matcha-button][disabled=true][basic]:not([basic=false]), .theme-default-light button[matcha-button][disabled=true][basic=true],
.theme-default-light a[matcha-button][disabled][basic],
.theme-default-light a[matcha-button][disabled][basic]:not([basic=false]),
.theme-default-light a[matcha-button][disabled][basic=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[basic],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[basic]:not([basic=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[basic=true],
.theme-default-light a[matcha-button][disabled=true][basic],
.theme-default-light a[matcha-button][disabled=true][basic]:not([basic=false]),
.theme-default-light a[matcha-button][disabled=true][basic=true] {
  background: #FFFFFF;
  color: #E2E7E9;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][disabled][alpha], .theme-default-light button[matcha-button][disabled][alpha]:not([alpha=false]), .theme-default-light button[matcha-button][disabled][alpha=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[alpha], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[alpha]:not([alpha=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[alpha=true], .theme-default-light button[matcha-button][disabled=true][alpha], .theme-default-light button[matcha-button][disabled=true][alpha]:not([alpha=false]), .theme-default-light button[matcha-button][disabled=true][alpha=true],
.theme-default-light a[matcha-button][disabled][alpha],
.theme-default-light a[matcha-button][disabled][alpha]:not([alpha=false]),
.theme-default-light a[matcha-button][disabled][alpha=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[alpha],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[alpha]:not([alpha=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[alpha=true],
.theme-default-light a[matcha-button][disabled=true][alpha],
.theme-default-light a[matcha-button][disabled=true][alpha]:not([alpha=false]),
.theme-default-light a[matcha-button][disabled=true][alpha=true] {
  background: rgba(226, 231, 233, 0.5);
  color: #E2E7E9;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][disabled][link], .theme-default-light button[matcha-button][disabled][link]:not([link=false]), .theme-default-light button[matcha-button][disabled][link=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[link], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[link]:not([link=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[link=true], .theme-default-light button[matcha-button][disabled=true][link], .theme-default-light button[matcha-button][disabled=true][link]:not([link=false]), .theme-default-light button[matcha-button][disabled=true][link=true],
.theme-default-light a[matcha-button][disabled][link],
.theme-default-light a[matcha-button][disabled][link]:not([link=false]),
.theme-default-light a[matcha-button][disabled][link=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[link],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[link]:not([link=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[link=true],
.theme-default-light a[matcha-button][disabled=true][link],
.theme-default-light a[matcha-button][disabled=true][link]:not([link=false]),
.theme-default-light a[matcha-button][disabled=true][link=true] {
  background: transparent;
  color: #E2E7E9;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][color=orange][outline]:not([outline=false]) .ripple, .theme-default-light button[matcha-button][color=orange][basic]:not([basic=false]) .ripple,
.theme-default-light a[matcha-button][color=orange][outline]:not([outline=false]) .ripple,
.theme-default-light a[matcha-button][color=orange][basic]:not([basic=false]) .ripple {
  background: rgba(247, 120, 20, 0.2);
}
.theme-default-light button[matcha-button][color=orange][alpha]:not([alpha=false]),
.theme-default-light a[matcha-button][color=orange][alpha]:not([alpha=false]) {
  background: rgba(247, 120, 20, 0.2);
  color: #f77814;
}
.theme-default-light button[matcha-button][color=orange][alpha]:not([alpha=false]) matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=orange][alpha]:not([alpha=false]) matcha-divider .border-color-disabled {
  border-color: #f77814 !important;
  opacity: 0.3 !important;
}
.theme-default-light button[matcha-button][color=orange][outline]:not([outline=false]), .theme-default-light button[matcha-button][color=orange][link]:not([link=false]), .theme-default-light button[matcha-button][color=orange][basic]:not([basic=false]),
.theme-default-light a[matcha-button][color=orange][outline]:not([outline=false]),
.theme-default-light a[matcha-button][color=orange][link]:not([link=false]),
.theme-default-light a[matcha-button][color=orange][basic]:not([basic=false]) {
  color: #f77814;
}
.theme-default-light button[matcha-button][color=orange][outline]:not([outline=false]) matcha-divider .border-color-disabled, .theme-default-light button[matcha-button][color=orange][link]:not([link=false]) matcha-divider .border-color-disabled, .theme-default-light button[matcha-button][color=orange][basic]:not([basic=false]) matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=orange][outline]:not([outline=false]) matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=orange][link]:not([link=false]) matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=orange][basic]:not([basic=false]) matcha-divider .border-color-disabled {
  border-color: #f77814 !important;
  opacity: 0.3 !important;
}
.theme-default-light button[matcha-button][color=orange],
.theme-default-light a[matcha-button][color=orange] {
  background: #f77814;
  color: rgba(0, 0, 0, 0.87);
}
.theme-default-light button[matcha-button][color=orange] matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=orange] matcha-divider .border-color-disabled {
  border-color: rgba(0, 0, 0, 0.87) !important;
  opacity: 0.3 !important;
}
.theme-default-light button[matcha-button][color=orange] .ripple,
.theme-default-light a[matcha-button][color=orange] .ripple {
  background: rgba(0, 0, 0, 0.2);
}
.theme-default-light button[matcha-button][disabled][solid], .theme-default-light button[matcha-button][disabled][solid]:not([solid=false]), .theme-default-light button[matcha-button][disabled][solid=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[solid], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[solid]:not([solid=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[solid=true], .theme-default-light button[matcha-button][disabled=true][solid], .theme-default-light button[matcha-button][disabled=true][solid]:not([solid=false]), .theme-default-light button[matcha-button][disabled=true][solid=true],
.theme-default-light a[matcha-button][disabled][solid],
.theme-default-light a[matcha-button][disabled][solid]:not([solid=false]),
.theme-default-light a[matcha-button][disabled][solid=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[solid],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[solid]:not([solid=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[solid=true],
.theme-default-light a[matcha-button][disabled=true][solid],
.theme-default-light a[matcha-button][disabled=true][solid]:not([solid=false]),
.theme-default-light a[matcha-button][disabled=true][solid=true] {
  background: #E2E7E9;
  color: rgba(33, 40, 44, 0.5);
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][disabled][outline], .theme-default-light button[matcha-button][disabled][outline]:not([outline=false]), .theme-default-light button[matcha-button][disabled][outline=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[outline], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[outline]:not([outline=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[outline=true], .theme-default-light button[matcha-button][disabled=true][outline], .theme-default-light button[matcha-button][disabled=true][outline]:not([outline=false]), .theme-default-light button[matcha-button][disabled=true][outline=true],
.theme-default-light a[matcha-button][disabled][outline],
.theme-default-light a[matcha-button][disabled][outline]:not([outline=false]),
.theme-default-light a[matcha-button][disabled][outline=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[outline],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[outline]:not([outline=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[outline=true],
.theme-default-light a[matcha-button][disabled=true][outline],
.theme-default-light a[matcha-button][disabled=true][outline]:not([outline=false]),
.theme-default-light a[matcha-button][disabled=true][outline=true] {
  background: transparent;
  color: #E2E7E9;
  box-shadow: 0 0 0 2px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][disabled][basic], .theme-default-light button[matcha-button][disabled][basic]:not([basic=false]), .theme-default-light button[matcha-button][disabled][basic=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[basic], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[basic]:not([basic=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[basic=true], .theme-default-light button[matcha-button][disabled=true][basic], .theme-default-light button[matcha-button][disabled=true][basic]:not([basic=false]), .theme-default-light button[matcha-button][disabled=true][basic=true],
.theme-default-light a[matcha-button][disabled][basic],
.theme-default-light a[matcha-button][disabled][basic]:not([basic=false]),
.theme-default-light a[matcha-button][disabled][basic=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[basic],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[basic]:not([basic=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[basic=true],
.theme-default-light a[matcha-button][disabled=true][basic],
.theme-default-light a[matcha-button][disabled=true][basic]:not([basic=false]),
.theme-default-light a[matcha-button][disabled=true][basic=true] {
  background: #FFFFFF;
  color: #E2E7E9;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][disabled][alpha], .theme-default-light button[matcha-button][disabled][alpha]:not([alpha=false]), .theme-default-light button[matcha-button][disabled][alpha=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[alpha], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[alpha]:not([alpha=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[alpha=true], .theme-default-light button[matcha-button][disabled=true][alpha], .theme-default-light button[matcha-button][disabled=true][alpha]:not([alpha=false]), .theme-default-light button[matcha-button][disabled=true][alpha=true],
.theme-default-light a[matcha-button][disabled][alpha],
.theme-default-light a[matcha-button][disabled][alpha]:not([alpha=false]),
.theme-default-light a[matcha-button][disabled][alpha=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[alpha],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[alpha]:not([alpha=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[alpha=true],
.theme-default-light a[matcha-button][disabled=true][alpha],
.theme-default-light a[matcha-button][disabled=true][alpha]:not([alpha=false]),
.theme-default-light a[matcha-button][disabled=true][alpha=true] {
  background: rgba(226, 231, 233, 0.5);
  color: #E2E7E9;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][disabled][link], .theme-default-light button[matcha-button][disabled][link]:not([link=false]), .theme-default-light button[matcha-button][disabled][link=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[link], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[link]:not([link=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[link=true], .theme-default-light button[matcha-button][disabled=true][link], .theme-default-light button[matcha-button][disabled=true][link]:not([link=false]), .theme-default-light button[matcha-button][disabled=true][link=true],
.theme-default-light a[matcha-button][disabled][link],
.theme-default-light a[matcha-button][disabled][link]:not([link=false]),
.theme-default-light a[matcha-button][disabled][link=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[link],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[link]:not([link=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[link=true],
.theme-default-light a[matcha-button][disabled=true][link],
.theme-default-light a[matcha-button][disabled=true][link]:not([link=false]),
.theme-default-light a[matcha-button][disabled=true][link=true] {
  background: transparent;
  color: #E2E7E9;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][color=deep-orange][outline]:not([outline=false]) .ripple, .theme-default-light button[matcha-button][color=deep-orange][basic]:not([basic=false]) .ripple,
.theme-default-light a[matcha-button][color=deep-orange][outline]:not([outline=false]) .ripple,
.theme-default-light a[matcha-button][color=deep-orange][basic]:not([basic=false]) .ripple {
  background: rgba(255, 87, 34, 0.2);
}
.theme-default-light button[matcha-button][color=deep-orange][alpha]:not([alpha=false]),
.theme-default-light a[matcha-button][color=deep-orange][alpha]:not([alpha=false]) {
  background: rgba(255, 87, 34, 0.2);
  color: #ff5722;
}
.theme-default-light button[matcha-button][color=deep-orange][alpha]:not([alpha=false]) matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=deep-orange][alpha]:not([alpha=false]) matcha-divider .border-color-disabled {
  border-color: #ff5722 !important;
  opacity: 0.3 !important;
}
.theme-default-light button[matcha-button][color=deep-orange][outline]:not([outline=false]), .theme-default-light button[matcha-button][color=deep-orange][link]:not([link=false]), .theme-default-light button[matcha-button][color=deep-orange][basic]:not([basic=false]),
.theme-default-light a[matcha-button][color=deep-orange][outline]:not([outline=false]),
.theme-default-light a[matcha-button][color=deep-orange][link]:not([link=false]),
.theme-default-light a[matcha-button][color=deep-orange][basic]:not([basic=false]) {
  color: #ff5722;
}
.theme-default-light button[matcha-button][color=deep-orange][outline]:not([outline=false]) matcha-divider .border-color-disabled, .theme-default-light button[matcha-button][color=deep-orange][link]:not([link=false]) matcha-divider .border-color-disabled, .theme-default-light button[matcha-button][color=deep-orange][basic]:not([basic=false]) matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=deep-orange][outline]:not([outline=false]) matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=deep-orange][link]:not([link=false]) matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=deep-orange][basic]:not([basic=false]) matcha-divider .border-color-disabled {
  border-color: #ff5722 !important;
  opacity: 0.3 !important;
}
.theme-default-light button[matcha-button][color=deep-orange],
.theme-default-light a[matcha-button][color=deep-orange] {
  background: #ff5722;
  color: white;
}
.theme-default-light button[matcha-button][color=deep-orange] matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=deep-orange] matcha-divider .border-color-disabled {
  border-color: white !important;
  opacity: 0.3 !important;
}
.theme-default-light button[matcha-button][color=deep-orange] .ripple,
.theme-default-light a[matcha-button][color=deep-orange] .ripple {
  background: rgba(255, 255, 255, 0.2);
}
.theme-default-light button[matcha-button][disabled][solid], .theme-default-light button[matcha-button][disabled][solid]:not([solid=false]), .theme-default-light button[matcha-button][disabled][solid=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[solid], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[solid]:not([solid=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[solid=true], .theme-default-light button[matcha-button][disabled=true][solid], .theme-default-light button[matcha-button][disabled=true][solid]:not([solid=false]), .theme-default-light button[matcha-button][disabled=true][solid=true],
.theme-default-light a[matcha-button][disabled][solid],
.theme-default-light a[matcha-button][disabled][solid]:not([solid=false]),
.theme-default-light a[matcha-button][disabled][solid=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[solid],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[solid]:not([solid=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[solid=true],
.theme-default-light a[matcha-button][disabled=true][solid],
.theme-default-light a[matcha-button][disabled=true][solid]:not([solid=false]),
.theme-default-light a[matcha-button][disabled=true][solid=true] {
  background: #E2E7E9;
  color: rgba(33, 40, 44, 0.5);
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][disabled][outline], .theme-default-light button[matcha-button][disabled][outline]:not([outline=false]), .theme-default-light button[matcha-button][disabled][outline=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[outline], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[outline]:not([outline=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[outline=true], .theme-default-light button[matcha-button][disabled=true][outline], .theme-default-light button[matcha-button][disabled=true][outline]:not([outline=false]), .theme-default-light button[matcha-button][disabled=true][outline=true],
.theme-default-light a[matcha-button][disabled][outline],
.theme-default-light a[matcha-button][disabled][outline]:not([outline=false]),
.theme-default-light a[matcha-button][disabled][outline=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[outline],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[outline]:not([outline=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[outline=true],
.theme-default-light a[matcha-button][disabled=true][outline],
.theme-default-light a[matcha-button][disabled=true][outline]:not([outline=false]),
.theme-default-light a[matcha-button][disabled=true][outline=true] {
  background: transparent;
  color: #E2E7E9;
  box-shadow: 0 0 0 2px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][disabled][basic], .theme-default-light button[matcha-button][disabled][basic]:not([basic=false]), .theme-default-light button[matcha-button][disabled][basic=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[basic], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[basic]:not([basic=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[basic=true], .theme-default-light button[matcha-button][disabled=true][basic], .theme-default-light button[matcha-button][disabled=true][basic]:not([basic=false]), .theme-default-light button[matcha-button][disabled=true][basic=true],
.theme-default-light a[matcha-button][disabled][basic],
.theme-default-light a[matcha-button][disabled][basic]:not([basic=false]),
.theme-default-light a[matcha-button][disabled][basic=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[basic],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[basic]:not([basic=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[basic=true],
.theme-default-light a[matcha-button][disabled=true][basic],
.theme-default-light a[matcha-button][disabled=true][basic]:not([basic=false]),
.theme-default-light a[matcha-button][disabled=true][basic=true] {
  background: #FFFFFF;
  color: #E2E7E9;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][disabled][alpha], .theme-default-light button[matcha-button][disabled][alpha]:not([alpha=false]), .theme-default-light button[matcha-button][disabled][alpha=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[alpha], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[alpha]:not([alpha=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[alpha=true], .theme-default-light button[matcha-button][disabled=true][alpha], .theme-default-light button[matcha-button][disabled=true][alpha]:not([alpha=false]), .theme-default-light button[matcha-button][disabled=true][alpha=true],
.theme-default-light a[matcha-button][disabled][alpha],
.theme-default-light a[matcha-button][disabled][alpha]:not([alpha=false]),
.theme-default-light a[matcha-button][disabled][alpha=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[alpha],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[alpha]:not([alpha=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[alpha=true],
.theme-default-light a[matcha-button][disabled=true][alpha],
.theme-default-light a[matcha-button][disabled=true][alpha]:not([alpha=false]),
.theme-default-light a[matcha-button][disabled=true][alpha=true] {
  background: rgba(226, 231, 233, 0.5);
  color: #E2E7E9;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][disabled][link], .theme-default-light button[matcha-button][disabled][link]:not([link=false]), .theme-default-light button[matcha-button][disabled][link=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[link], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[link]:not([link=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[link=true], .theme-default-light button[matcha-button][disabled=true][link], .theme-default-light button[matcha-button][disabled=true][link]:not([link=false]), .theme-default-light button[matcha-button][disabled=true][link=true],
.theme-default-light a[matcha-button][disabled][link],
.theme-default-light a[matcha-button][disabled][link]:not([link=false]),
.theme-default-light a[matcha-button][disabled][link=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[link],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[link]:not([link=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[link=true],
.theme-default-light a[matcha-button][disabled=true][link],
.theme-default-light a[matcha-button][disabled=true][link]:not([link=false]),
.theme-default-light a[matcha-button][disabled=true][link=true] {
  background: transparent;
  color: #E2E7E9;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][color=brown][outline]:not([outline=false]) .ripple, .theme-default-light button[matcha-button][color=brown][basic]:not([basic=false]) .ripple,
.theme-default-light a[matcha-button][color=brown][outline]:not([outline=false]) .ripple,
.theme-default-light a[matcha-button][color=brown][basic]:not([basic=false]) .ripple {
  background: rgba(121, 85, 72, 0.2);
}
.theme-default-light button[matcha-button][color=brown][alpha]:not([alpha=false]),
.theme-default-light a[matcha-button][color=brown][alpha]:not([alpha=false]) {
  background: rgba(121, 85, 72, 0.2);
  color: #795548;
}
.theme-default-light button[matcha-button][color=brown][alpha]:not([alpha=false]) matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=brown][alpha]:not([alpha=false]) matcha-divider .border-color-disabled {
  border-color: #795548 !important;
  opacity: 0.3 !important;
}
.theme-default-light button[matcha-button][color=brown][outline]:not([outline=false]), .theme-default-light button[matcha-button][color=brown][link]:not([link=false]), .theme-default-light button[matcha-button][color=brown][basic]:not([basic=false]),
.theme-default-light a[matcha-button][color=brown][outline]:not([outline=false]),
.theme-default-light a[matcha-button][color=brown][link]:not([link=false]),
.theme-default-light a[matcha-button][color=brown][basic]:not([basic=false]) {
  color: #795548;
}
.theme-default-light button[matcha-button][color=brown][outline]:not([outline=false]) matcha-divider .border-color-disabled, .theme-default-light button[matcha-button][color=brown][link]:not([link=false]) matcha-divider .border-color-disabled, .theme-default-light button[matcha-button][color=brown][basic]:not([basic=false]) matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=brown][outline]:not([outline=false]) matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=brown][link]:not([link=false]) matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=brown][basic]:not([basic=false]) matcha-divider .border-color-disabled {
  border-color: #795548 !important;
  opacity: 0.3 !important;
}
.theme-default-light button[matcha-button][color=brown],
.theme-default-light a[matcha-button][color=brown] {
  background: #795548;
  color: white;
}
.theme-default-light button[matcha-button][color=brown] matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=brown] matcha-divider .border-color-disabled {
  border-color: white !important;
  opacity: 0.3 !important;
}
.theme-default-light button[matcha-button][color=brown] .ripple,
.theme-default-light a[matcha-button][color=brown] .ripple {
  background: rgba(255, 255, 255, 0.2);
}
.theme-default-light button[matcha-button][disabled][solid], .theme-default-light button[matcha-button][disabled][solid]:not([solid=false]), .theme-default-light button[matcha-button][disabled][solid=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[solid], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[solid]:not([solid=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[solid=true], .theme-default-light button[matcha-button][disabled=true][solid], .theme-default-light button[matcha-button][disabled=true][solid]:not([solid=false]), .theme-default-light button[matcha-button][disabled=true][solid=true],
.theme-default-light a[matcha-button][disabled][solid],
.theme-default-light a[matcha-button][disabled][solid]:not([solid=false]),
.theme-default-light a[matcha-button][disabled][solid=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[solid],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[solid]:not([solid=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[solid=true],
.theme-default-light a[matcha-button][disabled=true][solid],
.theme-default-light a[matcha-button][disabled=true][solid]:not([solid=false]),
.theme-default-light a[matcha-button][disabled=true][solid=true] {
  background: #E2E7E9;
  color: rgba(33, 40, 44, 0.5);
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][disabled][outline], .theme-default-light button[matcha-button][disabled][outline]:not([outline=false]), .theme-default-light button[matcha-button][disabled][outline=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[outline], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[outline]:not([outline=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[outline=true], .theme-default-light button[matcha-button][disabled=true][outline], .theme-default-light button[matcha-button][disabled=true][outline]:not([outline=false]), .theme-default-light button[matcha-button][disabled=true][outline=true],
.theme-default-light a[matcha-button][disabled][outline],
.theme-default-light a[matcha-button][disabled][outline]:not([outline=false]),
.theme-default-light a[matcha-button][disabled][outline=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[outline],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[outline]:not([outline=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[outline=true],
.theme-default-light a[matcha-button][disabled=true][outline],
.theme-default-light a[matcha-button][disabled=true][outline]:not([outline=false]),
.theme-default-light a[matcha-button][disabled=true][outline=true] {
  background: transparent;
  color: #E2E7E9;
  box-shadow: 0 0 0 2px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][disabled][basic], .theme-default-light button[matcha-button][disabled][basic]:not([basic=false]), .theme-default-light button[matcha-button][disabled][basic=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[basic], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[basic]:not([basic=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[basic=true], .theme-default-light button[matcha-button][disabled=true][basic], .theme-default-light button[matcha-button][disabled=true][basic]:not([basic=false]), .theme-default-light button[matcha-button][disabled=true][basic=true],
.theme-default-light a[matcha-button][disabled][basic],
.theme-default-light a[matcha-button][disabled][basic]:not([basic=false]),
.theme-default-light a[matcha-button][disabled][basic=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[basic],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[basic]:not([basic=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[basic=true],
.theme-default-light a[matcha-button][disabled=true][basic],
.theme-default-light a[matcha-button][disabled=true][basic]:not([basic=false]),
.theme-default-light a[matcha-button][disabled=true][basic=true] {
  background: #FFFFFF;
  color: #E2E7E9;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][disabled][alpha], .theme-default-light button[matcha-button][disabled][alpha]:not([alpha=false]), .theme-default-light button[matcha-button][disabled][alpha=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[alpha], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[alpha]:not([alpha=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[alpha=true], .theme-default-light button[matcha-button][disabled=true][alpha], .theme-default-light button[matcha-button][disabled=true][alpha]:not([alpha=false]), .theme-default-light button[matcha-button][disabled=true][alpha=true],
.theme-default-light a[matcha-button][disabled][alpha],
.theme-default-light a[matcha-button][disabled][alpha]:not([alpha=false]),
.theme-default-light a[matcha-button][disabled][alpha=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[alpha],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[alpha]:not([alpha=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[alpha=true],
.theme-default-light a[matcha-button][disabled=true][alpha],
.theme-default-light a[matcha-button][disabled=true][alpha]:not([alpha=false]),
.theme-default-light a[matcha-button][disabled=true][alpha=true] {
  background: rgba(226, 231, 233, 0.5);
  color: #E2E7E9;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][disabled][link], .theme-default-light button[matcha-button][disabled][link]:not([link=false]), .theme-default-light button[matcha-button][disabled][link=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[link], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[link]:not([link=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[link=true], .theme-default-light button[matcha-button][disabled=true][link], .theme-default-light button[matcha-button][disabled=true][link]:not([link=false]), .theme-default-light button[matcha-button][disabled=true][link=true],
.theme-default-light a[matcha-button][disabled][link],
.theme-default-light a[matcha-button][disabled][link]:not([link=false]),
.theme-default-light a[matcha-button][disabled][link=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[link],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[link]:not([link=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[link=true],
.theme-default-light a[matcha-button][disabled=true][link],
.theme-default-light a[matcha-button][disabled=true][link]:not([link=false]),
.theme-default-light a[matcha-button][disabled=true][link=true] {
  background: transparent;
  color: #E2E7E9;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][color=grey][outline]:not([outline=false]) .ripple, .theme-default-light button[matcha-button][color=grey][basic]:not([basic=false]) .ripple,
.theme-default-light a[matcha-button][color=grey][outline]:not([outline=false]) .ripple,
.theme-default-light a[matcha-button][color=grey][basic]:not([basic=false]) .ripple {
  background: rgba(145, 160, 170, 0.2);
}
.theme-default-light button[matcha-button][color=grey][alpha]:not([alpha=false]),
.theme-default-light a[matcha-button][color=grey][alpha]:not([alpha=false]) {
  background: rgba(145, 160, 170, 0.2);
  color: #91A0AA;
}
.theme-default-light button[matcha-button][color=grey][alpha]:not([alpha=false]) matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=grey][alpha]:not([alpha=false]) matcha-divider .border-color-disabled {
  border-color: #91A0AA !important;
  opacity: 0.3 !important;
}
.theme-default-light button[matcha-button][color=grey][outline]:not([outline=false]), .theme-default-light button[matcha-button][color=grey][link]:not([link=false]), .theme-default-light button[matcha-button][color=grey][basic]:not([basic=false]),
.theme-default-light a[matcha-button][color=grey][outline]:not([outline=false]),
.theme-default-light a[matcha-button][color=grey][link]:not([link=false]),
.theme-default-light a[matcha-button][color=grey][basic]:not([basic=false]) {
  color: #91A0AA;
}
.theme-default-light button[matcha-button][color=grey][outline]:not([outline=false]) matcha-divider .border-color-disabled, .theme-default-light button[matcha-button][color=grey][link]:not([link=false]) matcha-divider .border-color-disabled, .theme-default-light button[matcha-button][color=grey][basic]:not([basic=false]) matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=grey][outline]:not([outline=false]) matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=grey][link]:not([link=false]) matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=grey][basic]:not([basic=false]) matcha-divider .border-color-disabled {
  border-color: #91A0AA !important;
  opacity: 0.3 !important;
}
.theme-default-light button[matcha-button][color=grey],
.theme-default-light a[matcha-button][color=grey] {
  background: #91A0AA;
  color: white;
}
.theme-default-light button[matcha-button][color=grey] matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=grey] matcha-divider .border-color-disabled {
  border-color: white !important;
  opacity: 0.3 !important;
}
.theme-default-light button[matcha-button][color=grey] .ripple,
.theme-default-light a[matcha-button][color=grey] .ripple {
  background: rgba(255, 255, 255, 0.2);
}
.theme-default-light button[matcha-button][disabled][solid], .theme-default-light button[matcha-button][disabled][solid]:not([solid=false]), .theme-default-light button[matcha-button][disabled][solid=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[solid], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[solid]:not([solid=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[solid=true], .theme-default-light button[matcha-button][disabled=true][solid], .theme-default-light button[matcha-button][disabled=true][solid]:not([solid=false]), .theme-default-light button[matcha-button][disabled=true][solid=true],
.theme-default-light a[matcha-button][disabled][solid],
.theme-default-light a[matcha-button][disabled][solid]:not([solid=false]),
.theme-default-light a[matcha-button][disabled][solid=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[solid],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[solid]:not([solid=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[solid=true],
.theme-default-light a[matcha-button][disabled=true][solid],
.theme-default-light a[matcha-button][disabled=true][solid]:not([solid=false]),
.theme-default-light a[matcha-button][disabled=true][solid=true] {
  background: #E2E7E9;
  color: rgba(33, 40, 44, 0.5);
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][disabled][outline], .theme-default-light button[matcha-button][disabled][outline]:not([outline=false]), .theme-default-light button[matcha-button][disabled][outline=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[outline], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[outline]:not([outline=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[outline=true], .theme-default-light button[matcha-button][disabled=true][outline], .theme-default-light button[matcha-button][disabled=true][outline]:not([outline=false]), .theme-default-light button[matcha-button][disabled=true][outline=true],
.theme-default-light a[matcha-button][disabled][outline],
.theme-default-light a[matcha-button][disabled][outline]:not([outline=false]),
.theme-default-light a[matcha-button][disabled][outline=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[outline],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[outline]:not([outline=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[outline=true],
.theme-default-light a[matcha-button][disabled=true][outline],
.theme-default-light a[matcha-button][disabled=true][outline]:not([outline=false]),
.theme-default-light a[matcha-button][disabled=true][outline=true] {
  background: transparent;
  color: #E2E7E9;
  box-shadow: 0 0 0 2px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][disabled][basic], .theme-default-light button[matcha-button][disabled][basic]:not([basic=false]), .theme-default-light button[matcha-button][disabled][basic=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[basic], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[basic]:not([basic=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[basic=true], .theme-default-light button[matcha-button][disabled=true][basic], .theme-default-light button[matcha-button][disabled=true][basic]:not([basic=false]), .theme-default-light button[matcha-button][disabled=true][basic=true],
.theme-default-light a[matcha-button][disabled][basic],
.theme-default-light a[matcha-button][disabled][basic]:not([basic=false]),
.theme-default-light a[matcha-button][disabled][basic=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[basic],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[basic]:not([basic=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[basic=true],
.theme-default-light a[matcha-button][disabled=true][basic],
.theme-default-light a[matcha-button][disabled=true][basic]:not([basic=false]),
.theme-default-light a[matcha-button][disabled=true][basic=true] {
  background: #FFFFFF;
  color: #E2E7E9;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][disabled][alpha], .theme-default-light button[matcha-button][disabled][alpha]:not([alpha=false]), .theme-default-light button[matcha-button][disabled][alpha=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[alpha], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[alpha]:not([alpha=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[alpha=true], .theme-default-light button[matcha-button][disabled=true][alpha], .theme-default-light button[matcha-button][disabled=true][alpha]:not([alpha=false]), .theme-default-light button[matcha-button][disabled=true][alpha=true],
.theme-default-light a[matcha-button][disabled][alpha],
.theme-default-light a[matcha-button][disabled][alpha]:not([alpha=false]),
.theme-default-light a[matcha-button][disabled][alpha=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[alpha],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[alpha]:not([alpha=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[alpha=true],
.theme-default-light a[matcha-button][disabled=true][alpha],
.theme-default-light a[matcha-button][disabled=true][alpha]:not([alpha=false]),
.theme-default-light a[matcha-button][disabled=true][alpha=true] {
  background: rgba(226, 231, 233, 0.5);
  color: #E2E7E9;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][disabled][link], .theme-default-light button[matcha-button][disabled][link]:not([link=false]), .theme-default-light button[matcha-button][disabled][link=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[link], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[link]:not([link=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[link=true], .theme-default-light button[matcha-button][disabled=true][link], .theme-default-light button[matcha-button][disabled=true][link]:not([link=false]), .theme-default-light button[matcha-button][disabled=true][link=true],
.theme-default-light a[matcha-button][disabled][link],
.theme-default-light a[matcha-button][disabled][link]:not([link=false]),
.theme-default-light a[matcha-button][disabled][link=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[link],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[link]:not([link=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[link=true],
.theme-default-light a[matcha-button][disabled=true][link],
.theme-default-light a[matcha-button][disabled=true][link]:not([link=false]),
.theme-default-light a[matcha-button][disabled=true][link=true] {
  background: transparent;
  color: #E2E7E9;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][color=blue-grey][outline]:not([outline=false]) .ripple, .theme-default-light button[matcha-button][color=blue-grey][basic]:not([basic=false]) .ripple,
.theme-default-light a[matcha-button][color=blue-grey][outline]:not([outline=false]) .ripple,
.theme-default-light a[matcha-button][color=blue-grey][basic]:not([basic=false]) .ripple {
  background: rgba(126, 142, 149, 0.2);
}
.theme-default-light button[matcha-button][color=blue-grey][alpha]:not([alpha=false]),
.theme-default-light a[matcha-button][color=blue-grey][alpha]:not([alpha=false]) {
  background: rgba(126, 142, 149, 0.2);
  color: #7E8E95;
}
.theme-default-light button[matcha-button][color=blue-grey][alpha]:not([alpha=false]) matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=blue-grey][alpha]:not([alpha=false]) matcha-divider .border-color-disabled {
  border-color: #7E8E95 !important;
  opacity: 0.3 !important;
}
.theme-default-light button[matcha-button][color=blue-grey][outline]:not([outline=false]), .theme-default-light button[matcha-button][color=blue-grey][link]:not([link=false]), .theme-default-light button[matcha-button][color=blue-grey][basic]:not([basic=false]),
.theme-default-light a[matcha-button][color=blue-grey][outline]:not([outline=false]),
.theme-default-light a[matcha-button][color=blue-grey][link]:not([link=false]),
.theme-default-light a[matcha-button][color=blue-grey][basic]:not([basic=false]) {
  color: #7E8E95;
}
.theme-default-light button[matcha-button][color=blue-grey][outline]:not([outline=false]) matcha-divider .border-color-disabled, .theme-default-light button[matcha-button][color=blue-grey][link]:not([link=false]) matcha-divider .border-color-disabled, .theme-default-light button[matcha-button][color=blue-grey][basic]:not([basic=false]) matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=blue-grey][outline]:not([outline=false]) matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=blue-grey][link]:not([link=false]) matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=blue-grey][basic]:not([basic=false]) matcha-divider .border-color-disabled {
  border-color: #7E8E95 !important;
  opacity: 0.3 !important;
}
.theme-default-light button[matcha-button][color=blue-grey],
.theme-default-light a[matcha-button][color=blue-grey] {
  background: #7E8E95;
  color: white;
}
.theme-default-light button[matcha-button][color=blue-grey] matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=blue-grey] matcha-divider .border-color-disabled {
  border-color: white !important;
  opacity: 0.3 !important;
}
.theme-default-light button[matcha-button][color=blue-grey] .ripple,
.theme-default-light a[matcha-button][color=blue-grey] .ripple {
  background: rgba(255, 255, 255, 0.2);
}
.theme-default-light button[matcha-button][disabled][solid], .theme-default-light button[matcha-button][disabled][solid]:not([solid=false]), .theme-default-light button[matcha-button][disabled][solid=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[solid], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[solid]:not([solid=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[solid=true], .theme-default-light button[matcha-button][disabled=true][solid], .theme-default-light button[matcha-button][disabled=true][solid]:not([solid=false]), .theme-default-light button[matcha-button][disabled=true][solid=true],
.theme-default-light a[matcha-button][disabled][solid],
.theme-default-light a[matcha-button][disabled][solid]:not([solid=false]),
.theme-default-light a[matcha-button][disabled][solid=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[solid],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[solid]:not([solid=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[solid=true],
.theme-default-light a[matcha-button][disabled=true][solid],
.theme-default-light a[matcha-button][disabled=true][solid]:not([solid=false]),
.theme-default-light a[matcha-button][disabled=true][solid=true] {
  background: #E2E7E9;
  color: rgba(33, 40, 44, 0.5);
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][disabled][outline], .theme-default-light button[matcha-button][disabled][outline]:not([outline=false]), .theme-default-light button[matcha-button][disabled][outline=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[outline], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[outline]:not([outline=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[outline=true], .theme-default-light button[matcha-button][disabled=true][outline], .theme-default-light button[matcha-button][disabled=true][outline]:not([outline=false]), .theme-default-light button[matcha-button][disabled=true][outline=true],
.theme-default-light a[matcha-button][disabled][outline],
.theme-default-light a[matcha-button][disabled][outline]:not([outline=false]),
.theme-default-light a[matcha-button][disabled][outline=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[outline],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[outline]:not([outline=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[outline=true],
.theme-default-light a[matcha-button][disabled=true][outline],
.theme-default-light a[matcha-button][disabled=true][outline]:not([outline=false]),
.theme-default-light a[matcha-button][disabled=true][outline=true] {
  background: transparent;
  color: #E2E7E9;
  box-shadow: 0 0 0 2px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][disabled][basic], .theme-default-light button[matcha-button][disabled][basic]:not([basic=false]), .theme-default-light button[matcha-button][disabled][basic=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[basic], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[basic]:not([basic=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[basic=true], .theme-default-light button[matcha-button][disabled=true][basic], .theme-default-light button[matcha-button][disabled=true][basic]:not([basic=false]), .theme-default-light button[matcha-button][disabled=true][basic=true],
.theme-default-light a[matcha-button][disabled][basic],
.theme-default-light a[matcha-button][disabled][basic]:not([basic=false]),
.theme-default-light a[matcha-button][disabled][basic=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[basic],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[basic]:not([basic=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[basic=true],
.theme-default-light a[matcha-button][disabled=true][basic],
.theme-default-light a[matcha-button][disabled=true][basic]:not([basic=false]),
.theme-default-light a[matcha-button][disabled=true][basic=true] {
  background: #FFFFFF;
  color: #E2E7E9;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][disabled][alpha], .theme-default-light button[matcha-button][disabled][alpha]:not([alpha=false]), .theme-default-light button[matcha-button][disabled][alpha=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[alpha], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[alpha]:not([alpha=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[alpha=true], .theme-default-light button[matcha-button][disabled=true][alpha], .theme-default-light button[matcha-button][disabled=true][alpha]:not([alpha=false]), .theme-default-light button[matcha-button][disabled=true][alpha=true],
.theme-default-light a[matcha-button][disabled][alpha],
.theme-default-light a[matcha-button][disabled][alpha]:not([alpha=false]),
.theme-default-light a[matcha-button][disabled][alpha=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[alpha],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[alpha]:not([alpha=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[alpha=true],
.theme-default-light a[matcha-button][disabled=true][alpha],
.theme-default-light a[matcha-button][disabled=true][alpha]:not([alpha=false]),
.theme-default-light a[matcha-button][disabled=true][alpha=true] {
  background: rgba(226, 231, 233, 0.5);
  color: #E2E7E9;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][disabled][link], .theme-default-light button[matcha-button][disabled][link]:not([link=false]), .theme-default-light button[matcha-button][disabled][link=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[link], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[link]:not([link=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[link=true], .theme-default-light button[matcha-button][disabled=true][link], .theme-default-light button[matcha-button][disabled=true][link]:not([link=false]), .theme-default-light button[matcha-button][disabled=true][link=true],
.theme-default-light a[matcha-button][disabled][link],
.theme-default-light a[matcha-button][disabled][link]:not([link=false]),
.theme-default-light a[matcha-button][disabled][link=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[link],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[link]:not([link=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[link=true],
.theme-default-light a[matcha-button][disabled=true][link],
.theme-default-light a[matcha-button][disabled=true][link]:not([link=false]),
.theme-default-light a[matcha-button][disabled=true][link=true] {
  background: transparent;
  color: #E2E7E9;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][color=primary][outline]:not([outline=false]) .ripple, .theme-default-light button[matcha-button][color=primary][basic]:not([basic=false]) .ripple,
.theme-default-light a[matcha-button][color=primary][outline]:not([outline=false]) .ripple,
.theme-default-light a[matcha-button][color=primary][basic]:not([basic=false]) .ripple {
  background: rgba(43, 54, 59, 0.2);
}
.theme-default-light button[matcha-button][color=primary][alpha]:not([alpha=false]),
.theme-default-light a[matcha-button][color=primary][alpha]:not([alpha=false]) {
  background: rgba(43, 54, 59, 0.2);
  color: #2B363B;
}
.theme-default-light button[matcha-button][color=primary][alpha]:not([alpha=false]) matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=primary][alpha]:not([alpha=false]) matcha-divider .border-color-disabled {
  border-color: #2B363B !important;
  opacity: 0.3 !important;
}
.theme-default-light button[matcha-button][color=primary][outline]:not([outline=false]), .theme-default-light button[matcha-button][color=primary][link]:not([link=false]), .theme-default-light button[matcha-button][color=primary][basic]:not([basic=false]),
.theme-default-light a[matcha-button][color=primary][outline]:not([outline=false]),
.theme-default-light a[matcha-button][color=primary][link]:not([link=false]),
.theme-default-light a[matcha-button][color=primary][basic]:not([basic=false]) {
  color: #2B363B;
}
.theme-default-light button[matcha-button][color=primary][outline]:not([outline=false]) matcha-divider .border-color-disabled, .theme-default-light button[matcha-button][color=primary][link]:not([link=false]) matcha-divider .border-color-disabled, .theme-default-light button[matcha-button][color=primary][basic]:not([basic=false]) matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=primary][outline]:not([outline=false]) matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=primary][link]:not([link=false]) matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=primary][basic]:not([basic=false]) matcha-divider .border-color-disabled {
  border-color: #2B363B !important;
  opacity: 0.3 !important;
}
.theme-default-light button[matcha-button][color=primary],
.theme-default-light a[matcha-button][color=primary] {
  background: #2B363B;
  color: white;
}
.theme-default-light button[matcha-button][color=primary] matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=primary] matcha-divider .border-color-disabled {
  border-color: white !important;
  opacity: 0.3 !important;
}
.theme-default-light button[matcha-button][color=primary] .ripple,
.theme-default-light a[matcha-button][color=primary] .ripple {
  background: rgba(255, 255, 255, 0.2);
}
.theme-default-light button[matcha-button][disabled][solid], .theme-default-light button[matcha-button][disabled][solid]:not([solid=false]), .theme-default-light button[matcha-button][disabled][solid=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[solid], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[solid]:not([solid=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[solid=true], .theme-default-light button[matcha-button][disabled=true][solid], .theme-default-light button[matcha-button][disabled=true][solid]:not([solid=false]), .theme-default-light button[matcha-button][disabled=true][solid=true],
.theme-default-light a[matcha-button][disabled][solid],
.theme-default-light a[matcha-button][disabled][solid]:not([solid=false]),
.theme-default-light a[matcha-button][disabled][solid=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[solid],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[solid]:not([solid=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[solid=true],
.theme-default-light a[matcha-button][disabled=true][solid],
.theme-default-light a[matcha-button][disabled=true][solid]:not([solid=false]),
.theme-default-light a[matcha-button][disabled=true][solid=true] {
  background: #E2E7E9;
  color: rgba(33, 40, 44, 0.5);
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][disabled][outline], .theme-default-light button[matcha-button][disabled][outline]:not([outline=false]), .theme-default-light button[matcha-button][disabled][outline=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[outline], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[outline]:not([outline=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[outline=true], .theme-default-light button[matcha-button][disabled=true][outline], .theme-default-light button[matcha-button][disabled=true][outline]:not([outline=false]), .theme-default-light button[matcha-button][disabled=true][outline=true],
.theme-default-light a[matcha-button][disabled][outline],
.theme-default-light a[matcha-button][disabled][outline]:not([outline=false]),
.theme-default-light a[matcha-button][disabled][outline=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[outline],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[outline]:not([outline=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[outline=true],
.theme-default-light a[matcha-button][disabled=true][outline],
.theme-default-light a[matcha-button][disabled=true][outline]:not([outline=false]),
.theme-default-light a[matcha-button][disabled=true][outline=true] {
  background: transparent;
  color: #E2E7E9;
  box-shadow: 0 0 0 2px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][disabled][basic], .theme-default-light button[matcha-button][disabled][basic]:not([basic=false]), .theme-default-light button[matcha-button][disabled][basic=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[basic], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[basic]:not([basic=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[basic=true], .theme-default-light button[matcha-button][disabled=true][basic], .theme-default-light button[matcha-button][disabled=true][basic]:not([basic=false]), .theme-default-light button[matcha-button][disabled=true][basic=true],
.theme-default-light a[matcha-button][disabled][basic],
.theme-default-light a[matcha-button][disabled][basic]:not([basic=false]),
.theme-default-light a[matcha-button][disabled][basic=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[basic],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[basic]:not([basic=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[basic=true],
.theme-default-light a[matcha-button][disabled=true][basic],
.theme-default-light a[matcha-button][disabled=true][basic]:not([basic=false]),
.theme-default-light a[matcha-button][disabled=true][basic=true] {
  background: #FFFFFF;
  color: #E2E7E9;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][disabled][alpha], .theme-default-light button[matcha-button][disabled][alpha]:not([alpha=false]), .theme-default-light button[matcha-button][disabled][alpha=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[alpha], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[alpha]:not([alpha=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[alpha=true], .theme-default-light button[matcha-button][disabled=true][alpha], .theme-default-light button[matcha-button][disabled=true][alpha]:not([alpha=false]), .theme-default-light button[matcha-button][disabled=true][alpha=true],
.theme-default-light a[matcha-button][disabled][alpha],
.theme-default-light a[matcha-button][disabled][alpha]:not([alpha=false]),
.theme-default-light a[matcha-button][disabled][alpha=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[alpha],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[alpha]:not([alpha=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[alpha=true],
.theme-default-light a[matcha-button][disabled=true][alpha],
.theme-default-light a[matcha-button][disabled=true][alpha]:not([alpha=false]),
.theme-default-light a[matcha-button][disabled=true][alpha=true] {
  background: rgba(226, 231, 233, 0.5);
  color: #E2E7E9;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][disabled][link], .theme-default-light button[matcha-button][disabled][link]:not([link=false]), .theme-default-light button[matcha-button][disabled][link=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[link], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[link]:not([link=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[link=true], .theme-default-light button[matcha-button][disabled=true][link], .theme-default-light button[matcha-button][disabled=true][link]:not([link=false]), .theme-default-light button[matcha-button][disabled=true][link=true],
.theme-default-light a[matcha-button][disabled][link],
.theme-default-light a[matcha-button][disabled][link]:not([link=false]),
.theme-default-light a[matcha-button][disabled][link=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[link],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[link]:not([link=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[link=true],
.theme-default-light a[matcha-button][disabled=true][link],
.theme-default-light a[matcha-button][disabled=true][link]:not([link=false]),
.theme-default-light a[matcha-button][disabled=true][link=true] {
  background: transparent;
  color: #E2E7E9;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][color=accent][outline]:not([outline=false]) .ripple, .theme-default-light button[matcha-button][color=accent][basic]:not([basic=false]) .ripple,
.theme-default-light a[matcha-button][color=accent][outline]:not([outline=false]) .ripple,
.theme-default-light a[matcha-button][color=accent][basic]:not([basic=false]) .ripple {
  background: rgba(30, 91, 218, 0.2);
}
.theme-default-light button[matcha-button][color=accent][alpha]:not([alpha=false]),
.theme-default-light a[matcha-button][color=accent][alpha]:not([alpha=false]) {
  background: rgba(30, 91, 218, 0.2);
  color: #1e5bda;
}
.theme-default-light button[matcha-button][color=accent][alpha]:not([alpha=false]) matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=accent][alpha]:not([alpha=false]) matcha-divider .border-color-disabled {
  border-color: #1e5bda !important;
  opacity: 0.3 !important;
}
.theme-default-light button[matcha-button][color=accent][outline]:not([outline=false]), .theme-default-light button[matcha-button][color=accent][link]:not([link=false]), .theme-default-light button[matcha-button][color=accent][basic]:not([basic=false]),
.theme-default-light a[matcha-button][color=accent][outline]:not([outline=false]),
.theme-default-light a[matcha-button][color=accent][link]:not([link=false]),
.theme-default-light a[matcha-button][color=accent][basic]:not([basic=false]) {
  color: #1e5bda;
}
.theme-default-light button[matcha-button][color=accent][outline]:not([outline=false]) matcha-divider .border-color-disabled, .theme-default-light button[matcha-button][color=accent][link]:not([link=false]) matcha-divider .border-color-disabled, .theme-default-light button[matcha-button][color=accent][basic]:not([basic=false]) matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=accent][outline]:not([outline=false]) matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=accent][link]:not([link=false]) matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=accent][basic]:not([basic=false]) matcha-divider .border-color-disabled {
  border-color: #1e5bda !important;
  opacity: 0.3 !important;
}
.theme-default-light button[matcha-button][color=accent],
.theme-default-light a[matcha-button][color=accent] {
  background: #1e5bda;
  color: white;
}
.theme-default-light button[matcha-button][color=accent] matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=accent] matcha-divider .border-color-disabled {
  border-color: white !important;
  opacity: 0.3 !important;
}
.theme-default-light button[matcha-button][color=accent] .ripple,
.theme-default-light a[matcha-button][color=accent] .ripple {
  background: rgba(255, 255, 255, 0.2);
}
.theme-default-light button[matcha-button][disabled][solid], .theme-default-light button[matcha-button][disabled][solid]:not([solid=false]), .theme-default-light button[matcha-button][disabled][solid=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[solid], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[solid]:not([solid=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[solid=true], .theme-default-light button[matcha-button][disabled=true][solid], .theme-default-light button[matcha-button][disabled=true][solid]:not([solid=false]), .theme-default-light button[matcha-button][disabled=true][solid=true],
.theme-default-light a[matcha-button][disabled][solid],
.theme-default-light a[matcha-button][disabled][solid]:not([solid=false]),
.theme-default-light a[matcha-button][disabled][solid=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[solid],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[solid]:not([solid=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[solid=true],
.theme-default-light a[matcha-button][disabled=true][solid],
.theme-default-light a[matcha-button][disabled=true][solid]:not([solid=false]),
.theme-default-light a[matcha-button][disabled=true][solid=true] {
  background: #E2E7E9;
  color: rgba(33, 40, 44, 0.5);
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][disabled][outline], .theme-default-light button[matcha-button][disabled][outline]:not([outline=false]), .theme-default-light button[matcha-button][disabled][outline=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[outline], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[outline]:not([outline=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[outline=true], .theme-default-light button[matcha-button][disabled=true][outline], .theme-default-light button[matcha-button][disabled=true][outline]:not([outline=false]), .theme-default-light button[matcha-button][disabled=true][outline=true],
.theme-default-light a[matcha-button][disabled][outline],
.theme-default-light a[matcha-button][disabled][outline]:not([outline=false]),
.theme-default-light a[matcha-button][disabled][outline=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[outline],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[outline]:not([outline=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[outline=true],
.theme-default-light a[matcha-button][disabled=true][outline],
.theme-default-light a[matcha-button][disabled=true][outline]:not([outline=false]),
.theme-default-light a[matcha-button][disabled=true][outline=true] {
  background: transparent;
  color: #E2E7E9;
  box-shadow: 0 0 0 2px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][disabled][basic], .theme-default-light button[matcha-button][disabled][basic]:not([basic=false]), .theme-default-light button[matcha-button][disabled][basic=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[basic], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[basic]:not([basic=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[basic=true], .theme-default-light button[matcha-button][disabled=true][basic], .theme-default-light button[matcha-button][disabled=true][basic]:not([basic=false]), .theme-default-light button[matcha-button][disabled=true][basic=true],
.theme-default-light a[matcha-button][disabled][basic],
.theme-default-light a[matcha-button][disabled][basic]:not([basic=false]),
.theme-default-light a[matcha-button][disabled][basic=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[basic],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[basic]:not([basic=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[basic=true],
.theme-default-light a[matcha-button][disabled=true][basic],
.theme-default-light a[matcha-button][disabled=true][basic]:not([basic=false]),
.theme-default-light a[matcha-button][disabled=true][basic=true] {
  background: #FFFFFF;
  color: #E2E7E9;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][disabled][alpha], .theme-default-light button[matcha-button][disabled][alpha]:not([alpha=false]), .theme-default-light button[matcha-button][disabled][alpha=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[alpha], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[alpha]:not([alpha=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[alpha=true], .theme-default-light button[matcha-button][disabled=true][alpha], .theme-default-light button[matcha-button][disabled=true][alpha]:not([alpha=false]), .theme-default-light button[matcha-button][disabled=true][alpha=true],
.theme-default-light a[matcha-button][disabled][alpha],
.theme-default-light a[matcha-button][disabled][alpha]:not([alpha=false]),
.theme-default-light a[matcha-button][disabled][alpha=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[alpha],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[alpha]:not([alpha=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[alpha=true],
.theme-default-light a[matcha-button][disabled=true][alpha],
.theme-default-light a[matcha-button][disabled=true][alpha]:not([alpha=false]),
.theme-default-light a[matcha-button][disabled=true][alpha=true] {
  background: rgba(226, 231, 233, 0.5);
  color: #E2E7E9;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][disabled][link], .theme-default-light button[matcha-button][disabled][link]:not([link=false]), .theme-default-light button[matcha-button][disabled][link=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[link], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[link]:not([link=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[link=true], .theme-default-light button[matcha-button][disabled=true][link], .theme-default-light button[matcha-button][disabled=true][link]:not([link=false]), .theme-default-light button[matcha-button][disabled=true][link=true],
.theme-default-light a[matcha-button][disabled][link],
.theme-default-light a[matcha-button][disabled][link]:not([link=false]),
.theme-default-light a[matcha-button][disabled][link=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[link],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[link]:not([link=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[link=true],
.theme-default-light a[matcha-button][disabled=true][link],
.theme-default-light a[matcha-button][disabled=true][link]:not([link=false]),
.theme-default-light a[matcha-button][disabled=true][link=true] {
  background: transparent;
  color: #E2E7E9;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][color=warn][outline]:not([outline=false]) .ripple, .theme-default-light button[matcha-button][color=warn][basic]:not([basic=false]) .ripple,
.theme-default-light a[matcha-button][color=warn][outline]:not([outline=false]) .ripple,
.theme-default-light a[matcha-button][color=warn][basic]:not([basic=false]) .ripple {
  background: rgba(211, 24, 24, 0.2);
}
.theme-default-light button[matcha-button][color=warn][alpha]:not([alpha=false]),
.theme-default-light a[matcha-button][color=warn][alpha]:not([alpha=false]) {
  background: rgba(211, 24, 24, 0.2);
  color: #d31818;
}
.theme-default-light button[matcha-button][color=warn][alpha]:not([alpha=false]) matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=warn][alpha]:not([alpha=false]) matcha-divider .border-color-disabled {
  border-color: #d31818 !important;
  opacity: 0.3 !important;
}
.theme-default-light button[matcha-button][color=warn][outline]:not([outline=false]), .theme-default-light button[matcha-button][color=warn][link]:not([link=false]), .theme-default-light button[matcha-button][color=warn][basic]:not([basic=false]),
.theme-default-light a[matcha-button][color=warn][outline]:not([outline=false]),
.theme-default-light a[matcha-button][color=warn][link]:not([link=false]),
.theme-default-light a[matcha-button][color=warn][basic]:not([basic=false]) {
  color: #d31818;
}
.theme-default-light button[matcha-button][color=warn][outline]:not([outline=false]) matcha-divider .border-color-disabled, .theme-default-light button[matcha-button][color=warn][link]:not([link=false]) matcha-divider .border-color-disabled, .theme-default-light button[matcha-button][color=warn][basic]:not([basic=false]) matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=warn][outline]:not([outline=false]) matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=warn][link]:not([link=false]) matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=warn][basic]:not([basic=false]) matcha-divider .border-color-disabled {
  border-color: #d31818 !important;
  opacity: 0.3 !important;
}
.theme-default-light button[matcha-button][color=warn],
.theme-default-light a[matcha-button][color=warn] {
  background: #d31818;
  color: white;
}
.theme-default-light button[matcha-button][color=warn] matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=warn] matcha-divider .border-color-disabled {
  border-color: white !important;
  opacity: 0.3 !important;
}
.theme-default-light button[matcha-button][color=warn] .ripple,
.theme-default-light a[matcha-button][color=warn] .ripple {
  background: rgba(255, 255, 255, 0.2);
}
.theme-default-light button[matcha-button][disabled][solid], .theme-default-light button[matcha-button][disabled][solid]:not([solid=false]), .theme-default-light button[matcha-button][disabled][solid=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[solid], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[solid]:not([solid=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[solid=true], .theme-default-light button[matcha-button][disabled=true][solid], .theme-default-light button[matcha-button][disabled=true][solid]:not([solid=false]), .theme-default-light button[matcha-button][disabled=true][solid=true],
.theme-default-light a[matcha-button][disabled][solid],
.theme-default-light a[matcha-button][disabled][solid]:not([solid=false]),
.theme-default-light a[matcha-button][disabled][solid=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[solid],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[solid]:not([solid=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[solid=true],
.theme-default-light a[matcha-button][disabled=true][solid],
.theme-default-light a[matcha-button][disabled=true][solid]:not([solid=false]),
.theme-default-light a[matcha-button][disabled=true][solid=true] {
  background: #E2E7E9;
  color: rgba(33, 40, 44, 0.5);
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][disabled][outline], .theme-default-light button[matcha-button][disabled][outline]:not([outline=false]), .theme-default-light button[matcha-button][disabled][outline=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[outline], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[outline]:not([outline=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[outline=true], .theme-default-light button[matcha-button][disabled=true][outline], .theme-default-light button[matcha-button][disabled=true][outline]:not([outline=false]), .theme-default-light button[matcha-button][disabled=true][outline=true],
.theme-default-light a[matcha-button][disabled][outline],
.theme-default-light a[matcha-button][disabled][outline]:not([outline=false]),
.theme-default-light a[matcha-button][disabled][outline=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[outline],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[outline]:not([outline=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[outline=true],
.theme-default-light a[matcha-button][disabled=true][outline],
.theme-default-light a[matcha-button][disabled=true][outline]:not([outline=false]),
.theme-default-light a[matcha-button][disabled=true][outline=true] {
  background: transparent;
  color: #E2E7E9;
  box-shadow: 0 0 0 2px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][disabled][basic], .theme-default-light button[matcha-button][disabled][basic]:not([basic=false]), .theme-default-light button[matcha-button][disabled][basic=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[basic], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[basic]:not([basic=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[basic=true], .theme-default-light button[matcha-button][disabled=true][basic], .theme-default-light button[matcha-button][disabled=true][basic]:not([basic=false]), .theme-default-light button[matcha-button][disabled=true][basic=true],
.theme-default-light a[matcha-button][disabled][basic],
.theme-default-light a[matcha-button][disabled][basic]:not([basic=false]),
.theme-default-light a[matcha-button][disabled][basic=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[basic],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[basic]:not([basic=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[basic=true],
.theme-default-light a[matcha-button][disabled=true][basic],
.theme-default-light a[matcha-button][disabled=true][basic]:not([basic=false]),
.theme-default-light a[matcha-button][disabled=true][basic=true] {
  background: #FFFFFF;
  color: #E2E7E9;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][disabled][alpha], .theme-default-light button[matcha-button][disabled][alpha]:not([alpha=false]), .theme-default-light button[matcha-button][disabled][alpha=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[alpha], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[alpha]:not([alpha=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[alpha=true], .theme-default-light button[matcha-button][disabled=true][alpha], .theme-default-light button[matcha-button][disabled=true][alpha]:not([alpha=false]), .theme-default-light button[matcha-button][disabled=true][alpha=true],
.theme-default-light a[matcha-button][disabled][alpha],
.theme-default-light a[matcha-button][disabled][alpha]:not([alpha=false]),
.theme-default-light a[matcha-button][disabled][alpha=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[alpha],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[alpha]:not([alpha=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[alpha=true],
.theme-default-light a[matcha-button][disabled=true][alpha],
.theme-default-light a[matcha-button][disabled=true][alpha]:not([alpha=false]),
.theme-default-light a[matcha-button][disabled=true][alpha=true] {
  background: rgba(226, 231, 233, 0.5);
  color: #E2E7E9;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][disabled][link], .theme-default-light button[matcha-button][disabled][link]:not([link=false]), .theme-default-light button[matcha-button][disabled][link=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[link], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[link]:not([link=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[link=true], .theme-default-light button[matcha-button][disabled=true][link], .theme-default-light button[matcha-button][disabled=true][link]:not([link=false]), .theme-default-light button[matcha-button][disabled=true][link=true],
.theme-default-light a[matcha-button][disabled][link],
.theme-default-light a[matcha-button][disabled][link]:not([link=false]),
.theme-default-light a[matcha-button][disabled][link=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[link],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[link]:not([link=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[link=true],
.theme-default-light a[matcha-button][disabled=true][link],
.theme-default-light a[matcha-button][disabled=true][link]:not([link=false]),
.theme-default-light a[matcha-button][disabled=true][link=true] {
  background: transparent;
  color: #E2E7E9;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][color=disabled][outline]:not([outline=false]) .ripple, .theme-default-light button[matcha-button][color=disabled][basic]:not([basic=false]) .ripple,
.theme-default-light a[matcha-button][color=disabled][outline]:not([outline=false]) .ripple,
.theme-default-light a[matcha-button][color=disabled][basic]:not([basic=false]) .ripple {
  background: rgba(226, 231, 233, 0.5);
}
.theme-default-light button[matcha-button][color=disabled][alpha]:not([alpha=false]),
.theme-default-light a[matcha-button][color=disabled][alpha]:not([alpha=false]) {
  background: rgba(226, 231, 233, 0.5);
  color: #E2E7E9;
}
.theme-default-light button[matcha-button][color=disabled][alpha]:not([alpha=false]) matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=disabled][alpha]:not([alpha=false]) matcha-divider .border-color-disabled {
  border-color: #E2E7E9 !important;
  opacity: 0.3 !important;
}
.theme-default-light button[matcha-button][color=disabled][outline]:not([outline=false]), .theme-default-light button[matcha-button][color=disabled][link]:not([link=false]), .theme-default-light button[matcha-button][color=disabled][basic]:not([basic=false]),
.theme-default-light a[matcha-button][color=disabled][outline]:not([outline=false]),
.theme-default-light a[matcha-button][color=disabled][link]:not([link=false]),
.theme-default-light a[matcha-button][color=disabled][basic]:not([basic=false]) {
  color: #E2E7E9;
}
.theme-default-light button[matcha-button][color=disabled][outline]:not([outline=false]) matcha-divider .border-color-disabled, .theme-default-light button[matcha-button][color=disabled][link]:not([link=false]) matcha-divider .border-color-disabled, .theme-default-light button[matcha-button][color=disabled][basic]:not([basic=false]) matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=disabled][outline]:not([outline=false]) matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=disabled][link]:not([link=false]) matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=disabled][basic]:not([basic=false]) matcha-divider .border-color-disabled {
  border-color: #E2E7E9 !important;
  opacity: 0.3 !important;
}
.theme-default-light button[matcha-button][color=disabled],
.theme-default-light a[matcha-button][color=disabled] {
  background: #E2E7E9;
  color: #E2E7E9;
}
.theme-default-light button[matcha-button][color=disabled] matcha-divider .border-color-disabled,
.theme-default-light a[matcha-button][color=disabled] matcha-divider .border-color-disabled {
  border-color: #E2E7E9 !important;
  opacity: 0.3 !important;
}
.theme-default-light button[matcha-button][color=disabled] .ripple,
.theme-default-light a[matcha-button][color=disabled] .ripple {
  background: rgba(226, 231, 233, 0.5);
}
.theme-default-light button[matcha-button][disabled][solid], .theme-default-light button[matcha-button][disabled][solid]:not([solid=false]), .theme-default-light button[matcha-button][disabled][solid=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[solid], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[solid]:not([solid=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[solid=true], .theme-default-light button[matcha-button][disabled=true][solid], .theme-default-light button[matcha-button][disabled=true][solid]:not([solid=false]), .theme-default-light button[matcha-button][disabled=true][solid=true],
.theme-default-light a[matcha-button][disabled][solid],
.theme-default-light a[matcha-button][disabled][solid]:not([solid=false]),
.theme-default-light a[matcha-button][disabled][solid=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[solid],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[solid]:not([solid=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[solid=true],
.theme-default-light a[matcha-button][disabled=true][solid],
.theme-default-light a[matcha-button][disabled=true][solid]:not([solid=false]),
.theme-default-light a[matcha-button][disabled=true][solid=true] {
  background: #E2E7E9;
  color: rgba(33, 40, 44, 0.5);
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][disabled][outline], .theme-default-light button[matcha-button][disabled][outline]:not([outline=false]), .theme-default-light button[matcha-button][disabled][outline=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[outline], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[outline]:not([outline=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[outline=true], .theme-default-light button[matcha-button][disabled=true][outline], .theme-default-light button[matcha-button][disabled=true][outline]:not([outline=false]), .theme-default-light button[matcha-button][disabled=true][outline=true],
.theme-default-light a[matcha-button][disabled][outline],
.theme-default-light a[matcha-button][disabled][outline]:not([outline=false]),
.theme-default-light a[matcha-button][disabled][outline=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[outline],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[outline]:not([outline=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[outline=true],
.theme-default-light a[matcha-button][disabled=true][outline],
.theme-default-light a[matcha-button][disabled=true][outline]:not([outline=false]),
.theme-default-light a[matcha-button][disabled=true][outline=true] {
  background: transparent;
  color: #E2E7E9;
  box-shadow: 0 0 0 2px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][disabled][basic], .theme-default-light button[matcha-button][disabled][basic]:not([basic=false]), .theme-default-light button[matcha-button][disabled][basic=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[basic], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[basic]:not([basic=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[basic=true], .theme-default-light button[matcha-button][disabled=true][basic], .theme-default-light button[matcha-button][disabled=true][basic]:not([basic=false]), .theme-default-light button[matcha-button][disabled=true][basic=true],
.theme-default-light a[matcha-button][disabled][basic],
.theme-default-light a[matcha-button][disabled][basic]:not([basic=false]),
.theme-default-light a[matcha-button][disabled][basic=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[basic],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[basic]:not([basic=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[basic=true],
.theme-default-light a[matcha-button][disabled=true][basic],
.theme-default-light a[matcha-button][disabled=true][basic]:not([basic=false]),
.theme-default-light a[matcha-button][disabled=true][basic=true] {
  background: #FFFFFF;
  color: #E2E7E9;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][disabled][alpha], .theme-default-light button[matcha-button][disabled][alpha]:not([alpha=false]), .theme-default-light button[matcha-button][disabled][alpha=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[alpha], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[alpha]:not([alpha=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[alpha=true], .theme-default-light button[matcha-button][disabled=true][alpha], .theme-default-light button[matcha-button][disabled=true][alpha]:not([alpha=false]), .theme-default-light button[matcha-button][disabled=true][alpha=true],
.theme-default-light a[matcha-button][disabled][alpha],
.theme-default-light a[matcha-button][disabled][alpha]:not([alpha=false]),
.theme-default-light a[matcha-button][disabled][alpha=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[alpha],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[alpha]:not([alpha=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[alpha=true],
.theme-default-light a[matcha-button][disabled=true][alpha],
.theme-default-light a[matcha-button][disabled=true][alpha]:not([alpha=false]),
.theme-default-light a[matcha-button][disabled=true][alpha=true] {
  background: rgba(226, 231, 233, 0.5);
  color: #E2E7E9;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button][disabled][link], .theme-default-light button[matcha-button][disabled][link]:not([link=false]), .theme-default-light button[matcha-button][disabled][link=true], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[link], .theme-default-light button[matcha-button][disabled]:not([disabled=false])[link]:not([link=false]), .theme-default-light button[matcha-button][disabled]:not([disabled=false])[link=true], .theme-default-light button[matcha-button][disabled=true][link], .theme-default-light button[matcha-button][disabled=true][link]:not([link=false]), .theme-default-light button[matcha-button][disabled=true][link=true],
.theme-default-light a[matcha-button][disabled][link],
.theme-default-light a[matcha-button][disabled][link]:not([link=false]),
.theme-default-light a[matcha-button][disabled][link=true],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[link],
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[link]:not([link=false]),
.theme-default-light a[matcha-button][disabled]:not([disabled=false])[link=true],
.theme-default-light a[matcha-button][disabled=true][link],
.theme-default-light a[matcha-button][disabled=true][link]:not([link=false]),
.theme-default-light a[matcha-button][disabled=true][link=true] {
  background: transparent;
  color: #E2E7E9;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-light button[matcha-button],
.theme-default-light a[matcha-button] {
  border: 0px solid currentColor;
}
.theme-default-light button[matcha-button][disabled],
.theme-default-light a[matcha-button][disabled] {
  background-color: #E2E7E9;
  color: rgba(33, 40, 44, 0.5);
  border-color: #E2E7E9;
}
.theme-default-light button[matcha-button][outline]:not([outline=false]),
.theme-default-light a[matcha-button][outline]:not([outline=false]) {
  border: 0px solid currentColor;
  background: transparent;
}
.theme-default-light button[matcha-button][outline]:not([outline=false]):not([color]),
.theme-default-light a[matcha-button][outline]:not([outline=false]):not([color]) {
  border-color: #21282C;
  color: #21282C;
}
.theme-default-light button[matcha-button][outline]:not([outline=false])[disabled],
.theme-default-light a[matcha-button][outline]:not([outline=false])[disabled] {
  box-shadow: 0 0 0 2px #E2E7E9;
  color: #E2E7E9 !important;
}
.theme-default-light button[matcha-button][basic]:not([basic=false]),
.theme-default-light a[matcha-button][basic]:not([basic=false]) {
  background: #FFFFFF;
}
.theme-default-light button[matcha-button][basic]:not([basic=false]):not([color]),
.theme-default-light a[matcha-button][basic]:not([basic=false]):not([color]) {
  color: #21282C;
}
.theme-default-light button[matcha-button][basic]:not([basic=false])[disabled],
.theme-default-light a[matcha-button][basic]:not([basic=false])[disabled] {
  color: #E2E7E9 !important;
}
.theme-default-light button[matcha-button][basic]:not([basic=false])[alpha]:not([alpha=false]),
.theme-default-light a[matcha-button][basic]:not([basic=false])[alpha]:not([alpha=false]) {
  background: transparent;
}
.theme-default-light button[matcha-button][alpha]:not([alpha=false]):not([color]),
.theme-default-light a[matcha-button][alpha]:not([alpha=false]):not([color]) {
  background: rgba(33, 40, 44, 0.2);
  border-color: #21282C;
  color: #21282C;
}
.theme-default-light button[matcha-button][alpha]:not([alpha=false])[disabled],
.theme-default-light a[matcha-button][alpha]:not([alpha=false])[disabled] {
  background: rgba(226, 231, 233, 0.5);
}
.theme-default-light button[matcha-button][link]:not([link=false]),
.theme-default-light a[matcha-button][link]:not([link=false]) {
  background-color: transparent;
}
.theme-default-light button[matcha-button][link]:not([link=false]):not([color]),
.theme-default-light a[matcha-button][link]:not([link=false]):not([color]) {
  color: #21282C;
}
.theme-default-light [matchaRipple] .ripple {
  transform-origin: center;
  pointer-events: none;
}
.theme-default-light .matcha-tooltip-content {
  background-color: #21282C;
  color: #E2E7E9;
}
.theme-default-light .matcha-tooltip-content:not(.matcha-tooltip-content_below):not(.matcha-tooltip-content_left):not(.matcha-tooltip-content_right)::after {
  border-color: #21282C transparent transparent transparent;
}
.theme-default-light .matcha-tooltip-content_below::before {
  border-color: transparent transparent #21282C transparent;
}
.theme-default-light .matcha-tooltip-content_left::after {
  border-color: transparent transparent transparent #21282C;
}
.theme-default-light .matcha-tooltip-content_right::after {
  border-color: transparent #21282C transparent transparent;
}
.theme-default-light .matcha-header__content__title__icon {
  color: #7E8E95;
}
.theme-default-light .matcha-header__content__options {
  background: #FFFFFF;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.033), 0px 2px 2px 0px rgba(0, 0, 0, 0.033), 0px 2px 2px 0px rgba(0, 0, 0, 0.033);
}
@media screen and (min-width: 1024px) {
  .theme-default-light .matcha-header__content {
    background: #FFFFFF;
    box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.033), 0px 2px 2px 0px rgba(0, 0, 0, 0.033), 0px 2px 2px 0px rgba(0, 0, 0, 0.033);
  }
  .theme-default-light .matcha-header__content__title__icon {
    color: #7E8E95;
  }
  .theme-default-light .matcha-header__content__options {
    background: transparent;
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.033), 0px 0px 0px 0px rgba(0, 0, 0, 0.033), 0px 0px 0px 0px rgba(0, 0, 0, 0.033);
  }
}
.theme-default-light .matcha-menu {
  position: relative;
}
.theme-default-light .matcha-menu .matcha-menu-trigger {
  line-height: 48px;
}
.theme-default-light .matcha-menu .menu {
  position: absolute;
  background: white;
  display: none;
  flex-direction: column;
  z-index: 1000;
}
.theme-default-light .matcha-menu .menu.show {
  display: flex;
  left: 100%;
}
.theme-default-light .matcha-menu .menu-item {
  position: relative;
}
.theme-default-light .matcha-menu .menu-item button {
  background: white;
  border: none;
  padding: 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  height: 48px;
  appearance: auto;
  text-rendering: auto;
  letter-spacing: normal;
  word-spacing: normal;
  line-height: normal;
  text-transform: none;
  text-indent: 0px;
  text-shadow: none;
  display: inline-block;
  text-align: center;
  align-items: flex-start;
  cursor: default;
  box-sizing: border-box;
}
.theme-default-light .matcha-menu .menu-item button * {
  pointer-events: none;
}
.theme-default-light .matcha-menu .submenu {
  position: absolute;
  display: none;
}
.theme-default-light .matcha-menu .menu-item:hover > .submenu {
  display: block;
  z-index: 1001; /* Ensure submenus appear above other content */
  position: relative;
  top: -48px;
}
.theme-default-light .matcha-drop-list {
  display: block;
  position: relative;
}
.theme-default-light .matcha-drop-list-container {
  position: relative;
  min-height: 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0px;
  border-radius: 8px;
  border-width: 0px;
  transition: all 0.2s ease;
}
.theme-default-light .matcha-drop-list-container.matcha-drop-list-receiving {
  background-color: rgba(43, 54, 59, 0.2);
  border-color: #2B363B;
  border-width: 2px;
  border-style: dashed;
  border-radius: 8px;
  padding: 8px;
  transition: all 0.2s ease;
}
.theme-default-light .matcha-drop-list-container.matcha-drop-list-receiving::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 25%, rgba(43, 54, 59, 0.2) 25%, rgba(43, 54, 59, 0.2) 50%, transparent 50%, transparent 75%, rgba(43, 54, 59, 0.2) 75%, rgba(43, 54, 59, 0.2));
  background-size: 16px 16px;
  animation: drop-zone-animation 2s linear infinite;
  border-radius: 6px;
  opacity: 0.4;
}
.theme-default-light .matcha-drop-list-container.matcha-drop-list-can-accept {
  background-color: rgba(17, 144, 70, 0.2);
  border-color: #119046;
  cursor: copy;
}
.theme-default-light .matcha-drop-list-container.matcha-drop-list-can-accept::before {
  background: linear-gradient(45deg, transparent 25%, rgba(17, 144, 70, 0.2) 25%, rgba(17, 144, 70, 0.2) 50%, transparent 50%, transparent 75%, rgba(17, 144, 70, 0.2) 75%, rgba(17, 144, 70, 0.2));
  background-size: 16px 16px;
  animation: drop-zone-animation 1.5s linear infinite;
  opacity: 0.5;
}
.theme-default-light .matcha-drop-list-container.matcha-drop-list-cannot-accept {
  background-color: rgba(229, 58, 58, 0.2);
  border-color: #e53a3a;
  cursor: not-allowed;
}
.theme-default-light .matcha-drop-list-container.matcha-drop-list-cannot-accept::before {
  background: linear-gradient(45deg, transparent 25%, rgba(229, 58, 58, 0.2) 25%, rgba(229, 58, 58, 0.2) 50%, transparent 50%, transparent 75%, rgba(229, 58, 58, 0.2) 75%, rgba(229, 58, 58, 0.2));
  background-size: 16px 16px;
  animation: drop-zone-animation 0.8s linear infinite;
  opacity: 0.6;
}
.theme-default-light .matcha-drop-list-container.matcha-drop-list-disabled {
  opacity: 0.6;
  pointer-events: none;
}
.theme-default-light .matcha-drag-item {
  position: relative;
  display: flex;
  padding: 12px;
  border-radius: 6px;
  transition: all 0.2s ease;
  -webkit-user-select: none;
          user-select: none;
  background-color: #FFFFFF;
  color: #21282C;
}
.theme-default-light .matcha-drag-item:last-child {
  margin-bottom: 0;
}
.theme-default-light .matcha-drag-item.matcha-drag-dragging {
  z-index: 1000;
  cursor: grabbing;
  position: relative;
  box-shadow: 0 8px 25px rgba(226, 231, 233, 0.5);
  background-color: #FFFFFF;
  transform: scale(1.02);
  opacity: 0.95;
}
.theme-default-light .matcha-drag-item.matcha-drag-dragging::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  border-radius: 8px;
  z-index: -1;
  opacity: 0.1;
  background: linear-gradient(45deg, #FFFFFF, #2B363B);
  animation: drag-glow 1s ease-in-out infinite alternate;
}
.theme-default-light .matcha-drag-item.matcha-drag-disabled {
  cursor: not-allowed;
  opacity: 0.7;
}
.theme-default-light .matcha-drag-item.disabled-item {
  cursor: not-allowed;
  opacity: 0.7;
}
.theme-default-light .matcha-drag-handle {
  cursor: grab;
  touch-action: none;
}
.theme-default-light .matcha-drag-handle:active {
  cursor: grabbing;
}
.theme-default-light .matcha-drag-handle.disabled {
  cursor: not-allowed;
}
.theme-default-light .item-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.theme-default-light .item-content .item-title {
  font-weight: 500;
  color: #21282C;
}
.theme-default-light .item-content .item-title.completed {
  text-decoration: line-through;
  opacity: 0.7;
}
.theme-default-light .item-content .item-id {
  font-size: 12px;
  font-family: monospace;
  color: rgba(226, 231, 233, 0.5);
}
.theme-default-light .item-content small {
  font-size: 11px;
  font-style: italic;
  color: rgba(33, 40, 44, 0.2);
}
.theme-default-light .item-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.theme-default-light .item-actions i {
  font-size: 18px;
}
.theme-default-light .matcha-drop-indicator {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  opacity: 0;
  transition: opacity 0.2s ease;
  transform: translateY(-8px);
  z-index: 1000;
  pointer-events: none;
  margin: 0;
  border-radius: 1px;
  background-color: #1e5bda;
}
.theme-default-light .matcha-drop-indicator.active {
  opacity: 1;
}
.theme-default-light .matcha-drop-list-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
.theme-default-light .matcha-drop-list-placeholder .matcha-drop-list-empty-placeholder {
  font-style: italic;
  padding: 20px;
  text-align: center;
  font-size: 14px;
  border-radius: 4px;
  transition: all 0.2s ease;
  color: rgba(226, 231, 233, 0.5);
  border-color: rgba(33, 40, 44, 0.2);
}
.theme-default-light .matcha-drop-list-placeholder .matcha-drop-list-empty-placeholder.can-accept {
  color: #119046;
  border-color: #119046;
  background-color: rgba(17, 144, 70, 0.2);
}
.theme-default-light .matcha-drop-list-placeholder .matcha-drop-list-empty-placeholder.cannot-accept {
  color: #e53a3a;
  border-color: #e53a3a;
  background-color: rgba(229, 58, 58, 0.2);
  animation: shake 0.5s ease-in-out;
}
@media (prefers-contrast: high) {
  .theme-default-light .matcha-drop-list-container.matcha-drop-list-receiving {
    border-color: #21282C;
    background-color: rgba(33, 40, 44, 0.2);
  }
  .theme-default-light .matcha-drag-item.matcha-drag-dragging {
    border: 2px solid #21282C;
  }
}
.theme-default-light .matcha-form-field input[type=text],
.theme-default-light .matcha-form-field input[type=email],
.theme-default-light .matcha-form-field input[type=tel],
.theme-default-light .matcha-form-field input[type=url],
.theme-default-light .matcha-form-field input[type=password],
.theme-default-light .matcha-form-field input[type=number],
.theme-default-light .matcha-form-field input[type=search],
.theme-default-light .matcha-form-field input[type=date],
.theme-default-light .matcha-form-field input[type=time],
.theme-default-light .matcha-form-field textarea {
  background-color: unset;
  color: #91A0AA;
  border: 0px solid #ccc;
}
.theme-default-light .matcha-form-field input[type=text]:focus,
.theme-default-light .matcha-form-field input[type=email]:focus,
.theme-default-light .matcha-form-field input[type=tel]:focus,
.theme-default-light .matcha-form-field input[type=url]:focus,
.theme-default-light .matcha-form-field input[type=password]:focus,
.theme-default-light .matcha-form-field input[type=number]:focus,
.theme-default-light .matcha-form-field input[type=search]:focus,
.theme-default-light .matcha-form-field input[type=date]:focus,
.theme-default-light .matcha-form-field input[type=time]:focus,
.theme-default-light .matcha-form-field textarea:focus {
  outline: none;
}
.theme-default-light matcha-form-field[size=tiny] .matcha-form-field input[type=text],
.theme-default-light matcha-form-field[size=tiny] .matcha-form-field input[type=email],
.theme-default-light matcha-form-field[size=tiny] .matcha-form-field input[type=tel],
.theme-default-light matcha-form-field[size=tiny] .matcha-form-field input[type=url],
.theme-default-light matcha-form-field[size=tiny] .matcha-form-field input[type=password],
.theme-default-light matcha-form-field[size=tiny] .matcha-form-field input[type=number],
.theme-default-light matcha-form-field[size=tiny] .matcha-form-field input[type=search],
.theme-default-light matcha-form-field[size=tiny] .matcha-form-field input[type=date],
.theme-default-light matcha-form-field[size=tiny] .matcha-form-field input[type=time],
.theme-default-light matcha-form-field[size=tiny] .matcha-form-field textarea {
  min-height: 1.25rem; /* Mantém a altura dos inputs de texto */
  line-height: 1.5rem;
  padding: 0;
}
.theme-default-light matcha-form-field[size=small] .matcha-form-field input[type=text],
.theme-default-light matcha-form-field[size=small] .matcha-form-field input[type=email],
.theme-default-light matcha-form-field[size=small] .matcha-form-field input[type=tel],
.theme-default-light matcha-form-field[size=small] .matcha-form-field input[type=url],
.theme-default-light matcha-form-field[size=small] .matcha-form-field input[type=password],
.theme-default-light matcha-form-field[size=small] .matcha-form-field input[type=number],
.theme-default-light matcha-form-field[size=small] .matcha-form-field input[type=search],
.theme-default-light matcha-form-field[size=small] .matcha-form-field input[type=date],
.theme-default-light matcha-form-field[size=small] .matcha-form-field input[type=time],
.theme-default-light matcha-form-field[size=small] .matcha-form-field textarea {
  min-height: 1.25rem; /* Mantém a altura dos inputs de texto */
  line-height: 1.5rem;
  padding: 0;
}
.theme-default-light matcha-form-field[size=medium] .matcha-form-field input[type=text],
.theme-default-light matcha-form-field[size=medium] .matcha-form-field input[type=email],
.theme-default-light matcha-form-field[size=medium] .matcha-form-field input[type=tel],
.theme-default-light matcha-form-field[size=medium] .matcha-form-field input[type=url],
.theme-default-light matcha-form-field[size=medium] .matcha-form-field input[type=password],
.theme-default-light matcha-form-field[size=medium] .matcha-form-field input[type=number],
.theme-default-light matcha-form-field[size=medium] .matcha-form-field input[type=search],
.theme-default-light matcha-form-field[size=medium] .matcha-form-field input[type=date],
.theme-default-light matcha-form-field[size=medium] .matcha-form-field input[type=time],
.theme-default-light matcha-form-field[size=medium] .matcha-form-field textarea {
  min-height: 1.25rem; /* Mantém a altura dos inputs de texto */
  line-height: 2rem;
  padding: 0;
}
.theme-default-light matcha-form-field[size=large] .matcha-form-field input[type=text],
.theme-default-light matcha-form-field[size=large] .matcha-form-field input[type=email],
.theme-default-light matcha-form-field[size=large] .matcha-form-field input[type=tel],
.theme-default-light matcha-form-field[size=large] .matcha-form-field input[type=url],
.theme-default-light matcha-form-field[size=large] .matcha-form-field input[type=password],
.theme-default-light matcha-form-field[size=large] .matcha-form-field input[type=number],
.theme-default-light matcha-form-field[size=large] .matcha-form-field input[type=search],
.theme-default-light matcha-form-field[size=large] .matcha-form-field input[type=date],
.theme-default-light matcha-form-field[size=large] .matcha-form-field input[type=time],
.theme-default-light matcha-form-field[size=large] .matcha-form-field textarea {
  min-height: 1.25rem; /* Mantém a altura dos inputs de texto */
  line-height: 2.5rem;
  padding: 0;
}
.theme-default-light matcha-form-field[size=huge] .matcha-form-field input[type=text],
.theme-default-light matcha-form-field[size=huge] .matcha-form-field input[type=email],
.theme-default-light matcha-form-field[size=huge] .matcha-form-field input[type=tel],
.theme-default-light matcha-form-field[size=huge] .matcha-form-field input[type=url],
.theme-default-light matcha-form-field[size=huge] .matcha-form-field input[type=password],
.theme-default-light matcha-form-field[size=huge] .matcha-form-field input[type=number],
.theme-default-light matcha-form-field[size=huge] .matcha-form-field input[type=search],
.theme-default-light matcha-form-field[size=huge] .matcha-form-field input[type=date],
.theme-default-light matcha-form-field[size=huge] .matcha-form-field input[type=time],
.theme-default-light matcha-form-field[size=huge] .matcha-form-field textarea {
  min-height: 1.25rem; /* Mantém a altura dos inputs de texto */
  line-height: 2.5rem;
  padding: 0;
}
@media screen and (max-width: 599px) {
  .theme-default-light matcha-form-field[size-xs=tiny] .matcha-form-field input[type=text],
  .theme-default-light matcha-form-field[size-xs=tiny] .matcha-form-field input[type=email],
  .theme-default-light matcha-form-field[size-xs=tiny] .matcha-form-field input[type=tel],
  .theme-default-light matcha-form-field[size-xs=tiny] .matcha-form-field input[type=url],
  .theme-default-light matcha-form-field[size-xs=tiny] .matcha-form-field input[type=password],
  .theme-default-light matcha-form-field[size-xs=tiny] .matcha-form-field input[type=number],
  .theme-default-light matcha-form-field[size-xs=tiny] .matcha-form-field input[type=search],
  .theme-default-light matcha-form-field[size-xs=tiny] .matcha-form-field input[type=date],
  .theme-default-light matcha-form-field[size-xs=tiny] .matcha-form-field input[type=time],
  .theme-default-light matcha-form-field[size-xs=tiny] .matcha-form-field textarea {
    min-height: 1.25rem; /* Mantém a altura dos inputs de texto */
    line-height: 1.5rem;
    padding: 0;
  }
  .theme-default-light matcha-form-field[size-xs=small] .matcha-form-field input[type=text],
  .theme-default-light matcha-form-field[size-xs=small] .matcha-form-field input[type=email],
  .theme-default-light matcha-form-field[size-xs=small] .matcha-form-field input[type=tel],
  .theme-default-light matcha-form-field[size-xs=small] .matcha-form-field input[type=url],
  .theme-default-light matcha-form-field[size-xs=small] .matcha-form-field input[type=password],
  .theme-default-light matcha-form-field[size-xs=small] .matcha-form-field input[type=number],
  .theme-default-light matcha-form-field[size-xs=small] .matcha-form-field input[type=search],
  .theme-default-light matcha-form-field[size-xs=small] .matcha-form-field input[type=date],
  .theme-default-light matcha-form-field[size-xs=small] .matcha-form-field input[type=time],
  .theme-default-light matcha-form-field[size-xs=small] .matcha-form-field textarea {
    min-height: 1.25rem; /* Mantém a altura dos inputs de texto */
    line-height: 1.5rem;
    padding: 0;
  }
  .theme-default-light matcha-form-field[size-xs=medium] .matcha-form-field input[type=text],
  .theme-default-light matcha-form-field[size-xs=medium] .matcha-form-field input[type=email],
  .theme-default-light matcha-form-field[size-xs=medium] .matcha-form-field input[type=tel],
  .theme-default-light matcha-form-field[size-xs=medium] .matcha-form-field input[type=url],
  .theme-default-light matcha-form-field[size-xs=medium] .matcha-form-field input[type=password],
  .theme-default-light matcha-form-field[size-xs=medium] .matcha-form-field input[type=number],
  .theme-default-light matcha-form-field[size-xs=medium] .matcha-form-field input[type=search],
  .theme-default-light matcha-form-field[size-xs=medium] .matcha-form-field input[type=date],
  .theme-default-light matcha-form-field[size-xs=medium] .matcha-form-field input[type=time],
  .theme-default-light matcha-form-field[size-xs=medium] .matcha-form-field textarea {
    min-height: 1.25rem; /* Mantém a altura dos inputs de texto */
    line-height: 2rem;
    padding: 0;
  }
  .theme-default-light matcha-form-field[size-xs=large] .matcha-form-field input[type=text],
  .theme-default-light matcha-form-field[size-xs=large] .matcha-form-field input[type=email],
  .theme-default-light matcha-form-field[size-xs=large] .matcha-form-field input[type=tel],
  .theme-default-light matcha-form-field[size-xs=large] .matcha-form-field input[type=url],
  .theme-default-light matcha-form-field[size-xs=large] .matcha-form-field input[type=password],
  .theme-default-light matcha-form-field[size-xs=large] .matcha-form-field input[type=number],
  .theme-default-light matcha-form-field[size-xs=large] .matcha-form-field input[type=search],
  .theme-default-light matcha-form-field[size-xs=large] .matcha-form-field input[type=date],
  .theme-default-light matcha-form-field[size-xs=large] .matcha-form-field input[type=time],
  .theme-default-light matcha-form-field[size-xs=large] .matcha-form-field textarea {
    min-height: 1.25rem; /* Mantém a altura dos inputs de texto */
    line-height: 2.5rem;
    padding: 0;
  }
  .theme-default-light matcha-form-field[size-xs=huge] .matcha-form-field input[type=text],
  .theme-default-light matcha-form-field[size-xs=huge] .matcha-form-field input[type=email],
  .theme-default-light matcha-form-field[size-xs=huge] .matcha-form-field input[type=tel],
  .theme-default-light matcha-form-field[size-xs=huge] .matcha-form-field input[type=url],
  .theme-default-light matcha-form-field[size-xs=huge] .matcha-form-field input[type=password],
  .theme-default-light matcha-form-field[size-xs=huge] .matcha-form-field input[type=number],
  .theme-default-light matcha-form-field[size-xs=huge] .matcha-form-field input[type=search],
  .theme-default-light matcha-form-field[size-xs=huge] .matcha-form-field input[type=date],
  .theme-default-light matcha-form-field[size-xs=huge] .matcha-form-field input[type=time],
  .theme-default-light matcha-form-field[size-xs=huge] .matcha-form-field textarea {
    min-height: 1.25rem; /* Mantém a altura dos inputs de texto */
    line-height: 2.5rem;
    padding: 0;
  }
}
@media screen and (min-width: 600px) {
  .theme-default-light matcha-form-field[size-sm=tiny] .matcha-form-field input[type=text],
  .theme-default-light matcha-form-field[size-sm=tiny] .matcha-form-field input[type=email],
  .theme-default-light matcha-form-field[size-sm=tiny] .matcha-form-field input[type=tel],
  .theme-default-light matcha-form-field[size-sm=tiny] .matcha-form-field input[type=url],
  .theme-default-light matcha-form-field[size-sm=tiny] .matcha-form-field input[type=password],
  .theme-default-light matcha-form-field[size-sm=tiny] .matcha-form-field input[type=number],
  .theme-default-light matcha-form-field[size-sm=tiny] .matcha-form-field input[type=search],
  .theme-default-light matcha-form-field[size-sm=tiny] .matcha-form-field input[type=date],
  .theme-default-light matcha-form-field[size-sm=tiny] .matcha-form-field input[type=time],
  .theme-default-light matcha-form-field[size-sm=tiny] .matcha-form-field textarea {
    min-height: 1.25rem; /* Mantém a altura dos inputs de texto */
    line-height: 1.5rem;
    padding: 0;
  }
  .theme-default-light matcha-form-field[size-sm=small] .matcha-form-field input[type=text],
  .theme-default-light matcha-form-field[size-sm=small] .matcha-form-field input[type=email],
  .theme-default-light matcha-form-field[size-sm=small] .matcha-form-field input[type=tel],
  .theme-default-light matcha-form-field[size-sm=small] .matcha-form-field input[type=url],
  .theme-default-light matcha-form-field[size-sm=small] .matcha-form-field input[type=password],
  .theme-default-light matcha-form-field[size-sm=small] .matcha-form-field input[type=number],
  .theme-default-light matcha-form-field[size-sm=small] .matcha-form-field input[type=search],
  .theme-default-light matcha-form-field[size-sm=small] .matcha-form-field input[type=date],
  .theme-default-light matcha-form-field[size-sm=small] .matcha-form-field input[type=time],
  .theme-default-light matcha-form-field[size-sm=small] .matcha-form-field textarea {
    min-height: 1.25rem; /* Mantém a altura dos inputs de texto */
    line-height: 1.5rem;
    padding: 0;
  }
  .theme-default-light matcha-form-field[size-sm=medium] .matcha-form-field input[type=text],
  .theme-default-light matcha-form-field[size-sm=medium] .matcha-form-field input[type=email],
  .theme-default-light matcha-form-field[size-sm=medium] .matcha-form-field input[type=tel],
  .theme-default-light matcha-form-field[size-sm=medium] .matcha-form-field input[type=url],
  .theme-default-light matcha-form-field[size-sm=medium] .matcha-form-field input[type=password],
  .theme-default-light matcha-form-field[size-sm=medium] .matcha-form-field input[type=number],
  .theme-default-light matcha-form-field[size-sm=medium] .matcha-form-field input[type=search],
  .theme-default-light matcha-form-field[size-sm=medium] .matcha-form-field input[type=date],
  .theme-default-light matcha-form-field[size-sm=medium] .matcha-form-field input[type=time],
  .theme-default-light matcha-form-field[size-sm=medium] .matcha-form-field textarea {
    min-height: 1.25rem; /* Mantém a altura dos inputs de texto */
    line-height: 2rem;
    padding: 0;
  }
  .theme-default-light matcha-form-field[size-sm=large] .matcha-form-field input[type=text],
  .theme-default-light matcha-form-field[size-sm=large] .matcha-form-field input[type=email],
  .theme-default-light matcha-form-field[size-sm=large] .matcha-form-field input[type=tel],
  .theme-default-light matcha-form-field[size-sm=large] .matcha-form-field input[type=url],
  .theme-default-light matcha-form-field[size-sm=large] .matcha-form-field input[type=password],
  .theme-default-light matcha-form-field[size-sm=large] .matcha-form-field input[type=number],
  .theme-default-light matcha-form-field[size-sm=large] .matcha-form-field input[type=search],
  .theme-default-light matcha-form-field[size-sm=large] .matcha-form-field input[type=date],
  .theme-default-light matcha-form-field[size-sm=large] .matcha-form-field input[type=time],
  .theme-default-light matcha-form-field[size-sm=large] .matcha-form-field textarea {
    min-height: 1.25rem; /* Mantém a altura dos inputs de texto */
    line-height: 2.5rem;
    padding: 0;
  }
  .theme-default-light matcha-form-field[size-sm=huge] .matcha-form-field input[type=text],
  .theme-default-light matcha-form-field[size-sm=huge] .matcha-form-field input[type=email],
  .theme-default-light matcha-form-field[size-sm=huge] .matcha-form-field input[type=tel],
  .theme-default-light matcha-form-field[size-sm=huge] .matcha-form-field input[type=url],
  .theme-default-light matcha-form-field[size-sm=huge] .matcha-form-field input[type=password],
  .theme-default-light matcha-form-field[size-sm=huge] .matcha-form-field input[type=number],
  .theme-default-light matcha-form-field[size-sm=huge] .matcha-form-field input[type=search],
  .theme-default-light matcha-form-field[size-sm=huge] .matcha-form-field input[type=date],
  .theme-default-light matcha-form-field[size-sm=huge] .matcha-form-field input[type=time],
  .theme-default-light matcha-form-field[size-sm=huge] .matcha-form-field textarea {
    min-height: 1.25rem; /* Mantém a altura dos inputs de texto */
    line-height: 2.5rem;
    padding: 0;
  }
}
@media screen and (min-width: 1024px) {
  .theme-default-light matcha-form-field[size-md=tiny] .matcha-form-field input[type=text],
  .theme-default-light matcha-form-field[size-md=tiny] .matcha-form-field input[type=email],
  .theme-default-light matcha-form-field[size-md=tiny] .matcha-form-field input[type=tel],
  .theme-default-light matcha-form-field[size-md=tiny] .matcha-form-field input[type=url],
  .theme-default-light matcha-form-field[size-md=tiny] .matcha-form-field input[type=password],
  .theme-default-light matcha-form-field[size-md=tiny] .matcha-form-field input[type=number],
  .theme-default-light matcha-form-field[size-md=tiny] .matcha-form-field input[type=search],
  .theme-default-light matcha-form-field[size-md=tiny] .matcha-form-field input[type=date],
  .theme-default-light matcha-form-field[size-md=tiny] .matcha-form-field input[type=time],
  .theme-default-light matcha-form-field[size-md=tiny] .matcha-form-field textarea {
    min-height: 1.25rem; /* Mantém a altura dos inputs de texto */
    line-height: 1.5rem;
    padding: 0;
  }
  .theme-default-light matcha-form-field[size-md=small] .matcha-form-field input[type=text],
  .theme-default-light matcha-form-field[size-md=small] .matcha-form-field input[type=email],
  .theme-default-light matcha-form-field[size-md=small] .matcha-form-field input[type=tel],
  .theme-default-light matcha-form-field[size-md=small] .matcha-form-field input[type=url],
  .theme-default-light matcha-form-field[size-md=small] .matcha-form-field input[type=password],
  .theme-default-light matcha-form-field[size-md=small] .matcha-form-field input[type=number],
  .theme-default-light matcha-form-field[size-md=small] .matcha-form-field input[type=search],
  .theme-default-light matcha-form-field[size-md=small] .matcha-form-field input[type=date],
  .theme-default-light matcha-form-field[size-md=small] .matcha-form-field input[type=time],
  .theme-default-light matcha-form-field[size-md=small] .matcha-form-field textarea {
    min-height: 1.25rem; /* Mantém a altura dos inputs de texto */
    line-height: 1.5rem;
    padding: 0;
  }
  .theme-default-light matcha-form-field[size-md=medium] .matcha-form-field input[type=text],
  .theme-default-light matcha-form-field[size-md=medium] .matcha-form-field input[type=email],
  .theme-default-light matcha-form-field[size-md=medium] .matcha-form-field input[type=tel],
  .theme-default-light matcha-form-field[size-md=medium] .matcha-form-field input[type=url],
  .theme-default-light matcha-form-field[size-md=medium] .matcha-form-field input[type=password],
  .theme-default-light matcha-form-field[size-md=medium] .matcha-form-field input[type=number],
  .theme-default-light matcha-form-field[size-md=medium] .matcha-form-field input[type=search],
  .theme-default-light matcha-form-field[size-md=medium] .matcha-form-field input[type=date],
  .theme-default-light matcha-form-field[size-md=medium] .matcha-form-field input[type=time],
  .theme-default-light matcha-form-field[size-md=medium] .matcha-form-field textarea {
    min-height: 1.25rem; /* Mantém a altura dos inputs de texto */
    line-height: 2rem;
    padding: 0;
  }
  .theme-default-light matcha-form-field[size-md=large] .matcha-form-field input[type=text],
  .theme-default-light matcha-form-field[size-md=large] .matcha-form-field input[type=email],
  .theme-default-light matcha-form-field[size-md=large] .matcha-form-field input[type=tel],
  .theme-default-light matcha-form-field[size-md=large] .matcha-form-field input[type=url],
  .theme-default-light matcha-form-field[size-md=large] .matcha-form-field input[type=password],
  .theme-default-light matcha-form-field[size-md=large] .matcha-form-field input[type=number],
  .theme-default-light matcha-form-field[size-md=large] .matcha-form-field input[type=search],
  .theme-default-light matcha-form-field[size-md=large] .matcha-form-field input[type=date],
  .theme-default-light matcha-form-field[size-md=large] .matcha-form-field input[type=time],
  .theme-default-light matcha-form-field[size-md=large] .matcha-form-field textarea {
    min-height: 1.25rem; /* Mantém a altura dos inputs de texto */
    line-height: 2.5rem;
    padding: 0;
  }
  .theme-default-light matcha-form-field[size-md=huge] .matcha-form-field input[type=text],
  .theme-default-light matcha-form-field[size-md=huge] .matcha-form-field input[type=email],
  .theme-default-light matcha-form-field[size-md=huge] .matcha-form-field input[type=tel],
  .theme-default-light matcha-form-field[size-md=huge] .matcha-form-field input[type=url],
  .theme-default-light matcha-form-field[size-md=huge] .matcha-form-field input[type=password],
  .theme-default-light matcha-form-field[size-md=huge] .matcha-form-field input[type=number],
  .theme-default-light matcha-form-field[size-md=huge] .matcha-form-field input[type=search],
  .theme-default-light matcha-form-field[size-md=huge] .matcha-form-field input[type=date],
  .theme-default-light matcha-form-field[size-md=huge] .matcha-form-field input[type=time],
  .theme-default-light matcha-form-field[size-md=huge] .matcha-form-field textarea {
    min-height: 1.25rem; /* Mantém a altura dos inputs de texto */
    line-height: 2.5rem;
    padding: 0;
  }
}
@media screen and (min-width: 1440px) {
  .theme-default-light matcha-form-field[size-lg=tiny] .matcha-form-field input[type=text],
  .theme-default-light matcha-form-field[size-lg=tiny] .matcha-form-field input[type=email],
  .theme-default-light matcha-form-field[size-lg=tiny] .matcha-form-field input[type=tel],
  .theme-default-light matcha-form-field[size-lg=tiny] .matcha-form-field input[type=url],
  .theme-default-light matcha-form-field[size-lg=tiny] .matcha-form-field input[type=password],
  .theme-default-light matcha-form-field[size-lg=tiny] .matcha-form-field input[type=number],
  .theme-default-light matcha-form-field[size-lg=tiny] .matcha-form-field input[type=search],
  .theme-default-light matcha-form-field[size-lg=tiny] .matcha-form-field input[type=date],
  .theme-default-light matcha-form-field[size-lg=tiny] .matcha-form-field input[type=time],
  .theme-default-light matcha-form-field[size-lg=tiny] .matcha-form-field textarea {
    min-height: 1.25rem; /* Mantém a altura dos inputs de texto */
    line-height: 1.5rem;
    padding: 0;
  }
  .theme-default-light matcha-form-field[size-lg=small] .matcha-form-field input[type=text],
  .theme-default-light matcha-form-field[size-lg=small] .matcha-form-field input[type=email],
  .theme-default-light matcha-form-field[size-lg=small] .matcha-form-field input[type=tel],
  .theme-default-light matcha-form-field[size-lg=small] .matcha-form-field input[type=url],
  .theme-default-light matcha-form-field[size-lg=small] .matcha-form-field input[type=password],
  .theme-default-light matcha-form-field[size-lg=small] .matcha-form-field input[type=number],
  .theme-default-light matcha-form-field[size-lg=small] .matcha-form-field input[type=search],
  .theme-default-light matcha-form-field[size-lg=small] .matcha-form-field input[type=date],
  .theme-default-light matcha-form-field[size-lg=small] .matcha-form-field input[type=time],
  .theme-default-light matcha-form-field[size-lg=small] .matcha-form-field textarea {
    min-height: 1.25rem; /* Mantém a altura dos inputs de texto */
    line-height: 1.5rem;
    padding: 0;
  }
  .theme-default-light matcha-form-field[size-lg=medium] .matcha-form-field input[type=text],
  .theme-default-light matcha-form-field[size-lg=medium] .matcha-form-field input[type=email],
  .theme-default-light matcha-form-field[size-lg=medium] .matcha-form-field input[type=tel],
  .theme-default-light matcha-form-field[size-lg=medium] .matcha-form-field input[type=url],
  .theme-default-light matcha-form-field[size-lg=medium] .matcha-form-field input[type=password],
  .theme-default-light matcha-form-field[size-lg=medium] .matcha-form-field input[type=number],
  .theme-default-light matcha-form-field[size-lg=medium] .matcha-form-field input[type=search],
  .theme-default-light matcha-form-field[size-lg=medium] .matcha-form-field input[type=date],
  .theme-default-light matcha-form-field[size-lg=medium] .matcha-form-field input[type=time],
  .theme-default-light matcha-form-field[size-lg=medium] .matcha-form-field textarea {
    min-height: 1.25rem; /* Mantém a altura dos inputs de texto */
    line-height: 2rem;
    padding: 0;
  }
  .theme-default-light matcha-form-field[size-lg=large] .matcha-form-field input[type=text],
  .theme-default-light matcha-form-field[size-lg=large] .matcha-form-field input[type=email],
  .theme-default-light matcha-form-field[size-lg=large] .matcha-form-field input[type=tel],
  .theme-default-light matcha-form-field[size-lg=large] .matcha-form-field input[type=url],
  .theme-default-light matcha-form-field[size-lg=large] .matcha-form-field input[type=password],
  .theme-default-light matcha-form-field[size-lg=large] .matcha-form-field input[type=number],
  .theme-default-light matcha-form-field[size-lg=large] .matcha-form-field input[type=search],
  .theme-default-light matcha-form-field[size-lg=large] .matcha-form-field input[type=date],
  .theme-default-light matcha-form-field[size-lg=large] .matcha-form-field input[type=time],
  .theme-default-light matcha-form-field[size-lg=large] .matcha-form-field textarea {
    min-height: 1.25rem; /* Mantém a altura dos inputs de texto */
    line-height: 2.5rem;
    padding: 0;
  }
  .theme-default-light matcha-form-field[size-lg=huge] .matcha-form-field input[type=text],
  .theme-default-light matcha-form-field[size-lg=huge] .matcha-form-field input[type=email],
  .theme-default-light matcha-form-field[size-lg=huge] .matcha-form-field input[type=tel],
  .theme-default-light matcha-form-field[size-lg=huge] .matcha-form-field input[type=url],
  .theme-default-light matcha-form-field[size-lg=huge] .matcha-form-field input[type=password],
  .theme-default-light matcha-form-field[size-lg=huge] .matcha-form-field input[type=number],
  .theme-default-light matcha-form-field[size-lg=huge] .matcha-form-field input[type=search],
  .theme-default-light matcha-form-field[size-lg=huge] .matcha-form-field input[type=date],
  .theme-default-light matcha-form-field[size-lg=huge] .matcha-form-field input[type=time],
  .theme-default-light matcha-form-field[size-lg=huge] .matcha-form-field textarea {
    min-height: 1.25rem; /* Mantém a altura dos inputs de texto */
    line-height: 2.5rem;
    padding: 0;
  }
}
@media screen and (min-width: 1920px) {
  .theme-default-light matcha-form-field[size-xl=tiny] .matcha-form-field input[type=text],
  .theme-default-light matcha-form-field[size-xl=tiny] .matcha-form-field input[type=email],
  .theme-default-light matcha-form-field[size-xl=tiny] .matcha-form-field input[type=tel],
  .theme-default-light matcha-form-field[size-xl=tiny] .matcha-form-field input[type=url],
  .theme-default-light matcha-form-field[size-xl=tiny] .matcha-form-field input[type=password],
  .theme-default-light matcha-form-field[size-xl=tiny] .matcha-form-field input[type=number],
  .theme-default-light matcha-form-field[size-xl=tiny] .matcha-form-field input[type=search],
  .theme-default-light matcha-form-field[size-xl=tiny] .matcha-form-field input[type=date],
  .theme-default-light matcha-form-field[size-xl=tiny] .matcha-form-field input[type=time],
  .theme-default-light matcha-form-field[size-xl=tiny] .matcha-form-field textarea {
    min-height: 1.25rem; /* Mantém a altura dos inputs de texto */
    line-height: 1.5rem;
    padding: 0;
  }
  .theme-default-light matcha-form-field[size-xl=small] .matcha-form-field input[type=text],
  .theme-default-light matcha-form-field[size-xl=small] .matcha-form-field input[type=email],
  .theme-default-light matcha-form-field[size-xl=small] .matcha-form-field input[type=tel],
  .theme-default-light matcha-form-field[size-xl=small] .matcha-form-field input[type=url],
  .theme-default-light matcha-form-field[size-xl=small] .matcha-form-field input[type=password],
  .theme-default-light matcha-form-field[size-xl=small] .matcha-form-field input[type=number],
  .theme-default-light matcha-form-field[size-xl=small] .matcha-form-field input[type=search],
  .theme-default-light matcha-form-field[size-xl=small] .matcha-form-field input[type=date],
  .theme-default-light matcha-form-field[size-xl=small] .matcha-form-field input[type=time],
  .theme-default-light matcha-form-field[size-xl=small] .matcha-form-field textarea {
    min-height: 1.25rem; /* Mantém a altura dos inputs de texto */
    line-height: 1.5rem;
    padding: 0;
  }
  .theme-default-light matcha-form-field[size-xl=medium] .matcha-form-field input[type=text],
  .theme-default-light matcha-form-field[size-xl=medium] .matcha-form-field input[type=email],
  .theme-default-light matcha-form-field[size-xl=medium] .matcha-form-field input[type=tel],
  .theme-default-light matcha-form-field[size-xl=medium] .matcha-form-field input[type=url],
  .theme-default-light matcha-form-field[size-xl=medium] .matcha-form-field input[type=password],
  .theme-default-light matcha-form-field[size-xl=medium] .matcha-form-field input[type=number],
  .theme-default-light matcha-form-field[size-xl=medium] .matcha-form-field input[type=search],
  .theme-default-light matcha-form-field[size-xl=medium] .matcha-form-field input[type=date],
  .theme-default-light matcha-form-field[size-xl=medium] .matcha-form-field input[type=time],
  .theme-default-light matcha-form-field[size-xl=medium] .matcha-form-field textarea {
    min-height: 1.25rem; /* Mantém a altura dos inputs de texto */
    line-height: 2rem;
    padding: 0;
  }
  .theme-default-light matcha-form-field[size-xl=large] .matcha-form-field input[type=text],
  .theme-default-light matcha-form-field[size-xl=large] .matcha-form-field input[type=email],
  .theme-default-light matcha-form-field[size-xl=large] .matcha-form-field input[type=tel],
  .theme-default-light matcha-form-field[size-xl=large] .matcha-form-field input[type=url],
  .theme-default-light matcha-form-field[size-xl=large] .matcha-form-field input[type=password],
  .theme-default-light matcha-form-field[size-xl=large] .matcha-form-field input[type=number],
  .theme-default-light matcha-form-field[size-xl=large] .matcha-form-field input[type=search],
  .theme-default-light matcha-form-field[size-xl=large] .matcha-form-field input[type=date],
  .theme-default-light matcha-form-field[size-xl=large] .matcha-form-field input[type=time],
  .theme-default-light matcha-form-field[size-xl=large] .matcha-form-field textarea {
    min-height: 1.25rem; /* Mantém a altura dos inputs de texto */
    line-height: 2.5rem;
    padding: 0;
  }
  .theme-default-light matcha-form-field[size-xl=huge] .matcha-form-field input[type=text],
  .theme-default-light matcha-form-field[size-xl=huge] .matcha-form-field input[type=email],
  .theme-default-light matcha-form-field[size-xl=huge] .matcha-form-field input[type=tel],
  .theme-default-light matcha-form-field[size-xl=huge] .matcha-form-field input[type=url],
  .theme-default-light matcha-form-field[size-xl=huge] .matcha-form-field input[type=password],
  .theme-default-light matcha-form-field[size-xl=huge] .matcha-form-field input[type=number],
  .theme-default-light matcha-form-field[size-xl=huge] .matcha-form-field input[type=search],
  .theme-default-light matcha-form-field[size-xl=huge] .matcha-form-field input[type=date],
  .theme-default-light matcha-form-field[size-xl=huge] .matcha-form-field input[type=time],
  .theme-default-light matcha-form-field[size-xl=huge] .matcha-form-field textarea {
    min-height: 1.25rem; /* Mantém a altura dos inputs de texto */
    line-height: 2.5rem;
    padding: 0;
  }
}
.theme-default-light matcha-checkbox:not([color]) input[type=checkbox] {
  border-color: #7E8E95;
}
.theme-default-light matcha-checkbox:not([color]) input[type=checkbox]:active {
  border-color: #1e5bda;
}
.theme-default-light matcha-checkbox:not([color]) input[type=checkbox]:checked {
  background-color: #1e5bda;
  border-color: #1e5bda;
}
.theme-default-light matcha-checkbox:not([color]) input[type=checkbox]:checked::after {
  border-color: white;
}
.theme-default-light matcha-checkbox:not([color]) input[type=checkbox]:indeterminate {
  background-color: #91A0AA;
  border-color: #91A0AA;
}
.theme-default-light matcha-checkbox:not([color]) input[type=checkbox]:indeterminate::after {
  background-color: white;
}
.theme-default-light matcha-checkbox:not([color]) .matcha-checkbox-container:hover {
  background-color: rgba(30, 91, 218, 0.1);
}
.theme-default-light matcha-checkbox:not([color]) .matcha-checkbox-container .ripple {
  background: rgba(30, 91, 218, 0.2) !important;
}
.theme-default-light matcha-checkbox[color] input[type=checkbox] {
  border-color: #7E8E95;
}
.theme-default-light matcha-checkbox[color] input[type=checkbox]:indeterminate {
  background-color: #91A0AA;
  border-color: #91A0AA;
}
.theme-default-light matcha-checkbox[color] input[type=checkbox]:indeterminate::after {
  background-color: white;
}
.theme-default-light matcha-checkbox[color=red] input[type=checkbox]:active {
  border-color: #e53a3a;
}
.theme-default-light matcha-checkbox[color=red] input[type=checkbox]:checked {
  background-color: #e53a3a;
  border-color: #e53a3a;
}
.theme-default-light matcha-checkbox[color=red] input[type=checkbox]:checked::after {
  border-color: white;
}
.theme-default-light matcha-checkbox[color=red] .matcha-checkbox-container:hover {
  background-color: rgba(229, 58, 58, 0.1);
}
.theme-default-light matcha-checkbox[color=red] .matcha-checkbox-container .ripple {
  background: rgba(255, 255, 255, 0.2) !important;
}
.theme-default-light matcha-checkbox[color=pink] input[type=checkbox]:active {
  border-color: #e91e63;
}
.theme-default-light matcha-checkbox[color=pink] input[type=checkbox]:checked {
  background-color: #e91e63;
  border-color: #e91e63;
}
.theme-default-light matcha-checkbox[color=pink] input[type=checkbox]:checked::after {
  border-color: white;
}
.theme-default-light matcha-checkbox[color=pink] .matcha-checkbox-container:hover {
  background-color: rgba(233, 30, 99, 0.1);
}
.theme-default-light matcha-checkbox[color=pink] .matcha-checkbox-container .ripple {
  background: rgba(255, 255, 255, 0.2) !important;
}
.theme-default-light matcha-checkbox[color=purple] input[type=checkbox]:active {
  border-color: #9c27b0;
}
.theme-default-light matcha-checkbox[color=purple] input[type=checkbox]:checked {
  background-color: #9c27b0;
  border-color: #9c27b0;
}
.theme-default-light matcha-checkbox[color=purple] input[type=checkbox]:checked::after {
  border-color: white;
}
.theme-default-light matcha-checkbox[color=purple] .matcha-checkbox-container:hover {
  background-color: rgba(156, 39, 176, 0.1);
}
.theme-default-light matcha-checkbox[color=purple] .matcha-checkbox-container .ripple {
  background: rgba(255, 255, 255, 0.2) !important;
}
.theme-default-light matcha-checkbox[color=deep-purple] input[type=checkbox]:active {
  border-color: #673ab7;
}
.theme-default-light matcha-checkbox[color=deep-purple] input[type=checkbox]:checked {
  background-color: #673ab7;
  border-color: #673ab7;
}
.theme-default-light matcha-checkbox[color=deep-purple] input[type=checkbox]:checked::after {
  border-color: white;
}
.theme-default-light matcha-checkbox[color=deep-purple] .matcha-checkbox-container:hover {
  background-color: rgba(103, 58, 183, 0.1);
}
.theme-default-light matcha-checkbox[color=deep-purple] .matcha-checkbox-container .ripple {
  background: rgba(255, 255, 255, 0.2) !important;
}
.theme-default-light matcha-checkbox[color=indigo] input[type=checkbox]:active {
  border-color: #3f51b5;
}
.theme-default-light matcha-checkbox[color=indigo] input[type=checkbox]:checked {
  background-color: #3f51b5;
  border-color: #3f51b5;
}
.theme-default-light matcha-checkbox[color=indigo] input[type=checkbox]:checked::after {
  border-color: white;
}
.theme-default-light matcha-checkbox[color=indigo] .matcha-checkbox-container:hover {
  background-color: rgba(63, 81, 181, 0.1);
}
.theme-default-light matcha-checkbox[color=indigo] .matcha-checkbox-container .ripple {
  background: rgba(255, 255, 255, 0.2) !important;
}
.theme-default-light matcha-checkbox[color=blue] input[type=checkbox]:active {
  border-color: #1e5bda;
}
.theme-default-light matcha-checkbox[color=blue] input[type=checkbox]:checked {
  background-color: #1e5bda;
  border-color: #1e5bda;
}
.theme-default-light matcha-checkbox[color=blue] input[type=checkbox]:checked::after {
  border-color: white;
}
.theme-default-light matcha-checkbox[color=blue] .matcha-checkbox-container:hover {
  background-color: rgba(30, 91, 218, 0.1);
}
.theme-default-light matcha-checkbox[color=blue] .matcha-checkbox-container .ripple {
  background: rgba(255, 255, 255, 0.2) !important;
}
.theme-default-light matcha-checkbox[color=light-blue] input[type=checkbox]:active {
  border-color: #03a9f4;
}
.theme-default-light matcha-checkbox[color=light-blue] input[type=checkbox]:checked {
  background-color: #03a9f4;
  border-color: #03a9f4;
}
.theme-default-light matcha-checkbox[color=light-blue] input[type=checkbox]:checked::after {
  border-color: white;
}
.theme-default-light matcha-checkbox[color=light-blue] .matcha-checkbox-container:hover {
  background-color: rgba(3, 169, 244, 0.1);
}
.theme-default-light matcha-checkbox[color=light-blue] .matcha-checkbox-container .ripple {
  background: rgba(255, 255, 255, 0.2) !important;
}
.theme-default-light matcha-checkbox[color=cyan] input[type=checkbox]:active {
  border-color: #00bcd4;
}
.theme-default-light matcha-checkbox[color=cyan] input[type=checkbox]:checked {
  background-color: #00bcd4;
  border-color: #00bcd4;
}
.theme-default-light matcha-checkbox[color=cyan] input[type=checkbox]:checked::after {
  border-color: white;
}
.theme-default-light matcha-checkbox[color=cyan] .matcha-checkbox-container:hover {
  background-color: rgba(0, 188, 212, 0.1);
}
.theme-default-light matcha-checkbox[color=cyan] .matcha-checkbox-container .ripple {
  background: rgba(255, 255, 255, 0.2) !important;
}
.theme-default-light matcha-checkbox[color=teal] input[type=checkbox]:active {
  border-color: #009688;
}
.theme-default-light matcha-checkbox[color=teal] input[type=checkbox]:checked {
  background-color: #009688;
  border-color: #009688;
}
.theme-default-light matcha-checkbox[color=teal] input[type=checkbox]:checked::after {
  border-color: white;
}
.theme-default-light matcha-checkbox[color=teal] .matcha-checkbox-container:hover {
  background-color: rgba(0, 150, 136, 0.1);
}
.theme-default-light matcha-checkbox[color=teal] .matcha-checkbox-container .ripple {
  background: rgba(255, 255, 255, 0.2) !important;
}
.theme-default-light matcha-checkbox[color=green] input[type=checkbox]:active {
  border-color: #119046;
}
.theme-default-light matcha-checkbox[color=green] input[type=checkbox]:checked {
  background-color: #119046;
  border-color: #119046;
}
.theme-default-light matcha-checkbox[color=green] input[type=checkbox]:checked::after {
  border-color: white;
}
.theme-default-light matcha-checkbox[color=green] .matcha-checkbox-container:hover {
  background-color: rgba(17, 144, 70, 0.1);
}
.theme-default-light matcha-checkbox[color=green] .matcha-checkbox-container .ripple {
  background: rgba(255, 255, 255, 0.2) !important;
}
.theme-default-light matcha-checkbox[color=light-green] input[type=checkbox]:active {
  border-color: #6EDA2C;
}
.theme-default-light matcha-checkbox[color=light-green] input[type=checkbox]:checked {
  background-color: #6EDA2C;
  border-color: #6EDA2C;
}
.theme-default-light matcha-checkbox[color=light-green] input[type=checkbox]:checked::after {
  border-color: rgba(0, 0, 0, 0.87);
}
.theme-default-light matcha-checkbox[color=light-green] .matcha-checkbox-container:hover {
  background-color: rgba(110, 218, 44, 0.1);
}
.theme-default-light matcha-checkbox[color=light-green] .matcha-checkbox-container .ripple {
  background: rgba(0, 0, 0, 0.2) !important;
}
.theme-default-light matcha-checkbox[color=lime] input[type=checkbox]:active {
  border-color: #86bd00;
}
.theme-default-light matcha-checkbox[color=lime] input[type=checkbox]:checked {
  background-color: #86bd00;
  border-color: #86bd00;
}
.theme-default-light matcha-checkbox[color=lime] input[type=checkbox]:checked::after {
  border-color: white;
}
.theme-default-light matcha-checkbox[color=lime] .matcha-checkbox-container:hover {
  background-color: rgba(134, 189, 0, 0.1);
}
.theme-default-light matcha-checkbox[color=lime] .matcha-checkbox-container .ripple {
  background: rgba(255, 255, 255, 0.2) !important;
}
.theme-default-light matcha-checkbox[color=yellow] input[type=checkbox]:active {
  border-color: #e8c300;
}
.theme-default-light matcha-checkbox[color=yellow] input[type=checkbox]:checked {
  background-color: #e8c300;
  border-color: #e8c300;
}
.theme-default-light matcha-checkbox[color=yellow] input[type=checkbox]:checked::after {
  border-color: rgba(0, 0, 0, 0.87);
}
.theme-default-light matcha-checkbox[color=yellow] .matcha-checkbox-container:hover {
  background-color: rgba(232, 195, 0, 0.1);
}
.theme-default-light matcha-checkbox[color=yellow] .matcha-checkbox-container .ripple {
  background: rgba(0, 0, 0, 0.2) !important;
}
.theme-default-light matcha-checkbox[color=amber] input[type=checkbox]:active {
  border-color: #faa61a;
}
.theme-default-light matcha-checkbox[color=amber] input[type=checkbox]:checked {
  background-color: #faa61a;
  border-color: #faa61a;
}
.theme-default-light matcha-checkbox[color=amber] input[type=checkbox]:checked::after {
  border-color: rgba(0, 0, 0, 0.87);
}
.theme-default-light matcha-checkbox[color=amber] .matcha-checkbox-container:hover {
  background-color: rgba(250, 166, 26, 0.1);
}
.theme-default-light matcha-checkbox[color=amber] .matcha-checkbox-container .ripple {
  background: rgba(0, 0, 0, 0.2) !important;
}
.theme-default-light matcha-checkbox[color=orange] input[type=checkbox]:active {
  border-color: #f77814;
}
.theme-default-light matcha-checkbox[color=orange] input[type=checkbox]:checked {
  background-color: #f77814;
  border-color: #f77814;
}
.theme-default-light matcha-checkbox[color=orange] input[type=checkbox]:checked::after {
  border-color: rgba(0, 0, 0, 0.87);
}
.theme-default-light matcha-checkbox[color=orange] .matcha-checkbox-container:hover {
  background-color: rgba(247, 120, 20, 0.1);
}
.theme-default-light matcha-checkbox[color=orange] .matcha-checkbox-container .ripple {
  background: rgba(0, 0, 0, 0.2) !important;
}
.theme-default-light matcha-checkbox[color=deep-orange] input[type=checkbox]:active {
  border-color: #ff5722;
}
.theme-default-light matcha-checkbox[color=deep-orange] input[type=checkbox]:checked {
  background-color: #ff5722;
  border-color: #ff5722;
}
.theme-default-light matcha-checkbox[color=deep-orange] input[type=checkbox]:checked::after {
  border-color: white;
}
.theme-default-light matcha-checkbox[color=deep-orange] .matcha-checkbox-container:hover {
  background-color: rgba(255, 87, 34, 0.1);
}
.theme-default-light matcha-checkbox[color=deep-orange] .matcha-checkbox-container .ripple {
  background: rgba(255, 255, 255, 0.2) !important;
}
.theme-default-light matcha-checkbox[color=brown] input[type=checkbox]:active {
  border-color: #795548;
}
.theme-default-light matcha-checkbox[color=brown] input[type=checkbox]:checked {
  background-color: #795548;
  border-color: #795548;
}
.theme-default-light matcha-checkbox[color=brown] input[type=checkbox]:checked::after {
  border-color: white;
}
.theme-default-light matcha-checkbox[color=brown] .matcha-checkbox-container:hover {
  background-color: rgba(121, 85, 72, 0.1);
}
.theme-default-light matcha-checkbox[color=brown] .matcha-checkbox-container .ripple {
  background: rgba(255, 255, 255, 0.2) !important;
}
.theme-default-light matcha-checkbox[color=grey] input[type=checkbox]:active {
  border-color: #91A0AA;
}
.theme-default-light matcha-checkbox[color=grey] input[type=checkbox]:checked {
  background-color: #91A0AA;
  border-color: #91A0AA;
}
.theme-default-light matcha-checkbox[color=grey] input[type=checkbox]:checked::after {
  border-color: white;
}
.theme-default-light matcha-checkbox[color=grey] .matcha-checkbox-container:hover {
  background-color: rgba(145, 160, 170, 0.1);
}
.theme-default-light matcha-checkbox[color=grey] .matcha-checkbox-container .ripple {
  background: rgba(255, 255, 255, 0.2) !important;
}
.theme-default-light matcha-checkbox[color=blue-grey] input[type=checkbox]:active {
  border-color: #7E8E95;
}
.theme-default-light matcha-checkbox[color=blue-grey] input[type=checkbox]:checked {
  background-color: #7E8E95;
  border-color: #7E8E95;
}
.theme-default-light matcha-checkbox[color=blue-grey] input[type=checkbox]:checked::after {
  border-color: white;
}
.theme-default-light matcha-checkbox[color=blue-grey] .matcha-checkbox-container:hover {
  background-color: rgba(126, 142, 149, 0.1);
}
.theme-default-light matcha-checkbox[color=blue-grey] .matcha-checkbox-container .ripple {
  background: rgba(255, 255, 255, 0.2) !important;
}
.theme-default-light matcha-checkbox[color=primary] input[type=checkbox]:active {
  border-color: #2B363B;
}
.theme-default-light matcha-checkbox[color=primary] input[type=checkbox]:checked {
  background-color: #2B363B;
  border-color: #2B363B;
}
.theme-default-light matcha-checkbox[color=primary] input[type=checkbox]:checked::after {
  border-color: white;
}
.theme-default-light matcha-checkbox[color=primary] .matcha-checkbox-container:hover {
  background-color: rgba(43, 54, 59, 0.1);
}
.theme-default-light matcha-checkbox[color=primary] .matcha-checkbox-container .ripple {
  background: rgba(255, 255, 255, 0.2) !important;
}
.theme-default-light matcha-checkbox[color=accent] input[type=checkbox]:active {
  border-color: #1e5bda;
}
.theme-default-light matcha-checkbox[color=accent] input[type=checkbox]:checked {
  background-color: #1e5bda;
  border-color: #1e5bda;
}
.theme-default-light matcha-checkbox[color=accent] input[type=checkbox]:checked::after {
  border-color: white;
}
.theme-default-light matcha-checkbox[color=accent] .matcha-checkbox-container:hover {
  background-color: rgba(30, 91, 218, 0.1);
}
.theme-default-light matcha-checkbox[color=accent] .matcha-checkbox-container .ripple {
  background: rgba(255, 255, 255, 0.2) !important;
}
.theme-default-light matcha-checkbox[color=warn] input[type=checkbox]:active {
  border-color: #d31818;
}
.theme-default-light matcha-checkbox[color=warn] input[type=checkbox]:checked {
  background-color: #d31818;
  border-color: #d31818;
}
.theme-default-light matcha-checkbox[color=warn] input[type=checkbox]:checked::after {
  border-color: white;
}
.theme-default-light matcha-checkbox[color=warn] .matcha-checkbox-container:hover {
  background-color: rgba(211, 24, 24, 0.1);
}
.theme-default-light matcha-checkbox[color=warn] .matcha-checkbox-container .ripple {
  background: rgba(255, 255, 255, 0.2) !important;
}
.theme-default-light matcha-checkbox[disabled] input[type=checkbox] {
  border-color: #91A0AA;
}
.theme-default-light matcha-checkbox .matcha-checkbox-label {
  color: #91A0AA;
}
.theme-default-light matcha-spin:not([color]) .spin-progress {
  stroke: #1e5bda;
}
.theme-default-light matcha-spin[color=red] .spin-progress {
  stroke: #e53a3a;
}
.theme-default-light matcha-spin[color=pink] .spin-progress {
  stroke: #e91e63;
}
.theme-default-light matcha-spin[color=purple] .spin-progress {
  stroke: #9c27b0;
}
.theme-default-light matcha-spin[color=deep-purple] .spin-progress {
  stroke: #673ab7;
}
.theme-default-light matcha-spin[color=indigo] .spin-progress {
  stroke: #3f51b5;
}
.theme-default-light matcha-spin[color=blue] .spin-progress {
  stroke: #1e5bda;
}
.theme-default-light matcha-spin[color=light-blue] .spin-progress {
  stroke: #03a9f4;
}
.theme-default-light matcha-spin[color=cyan] .spin-progress {
  stroke: #00bcd4;
}
.theme-default-light matcha-spin[color=teal] .spin-progress {
  stroke: #009688;
}
.theme-default-light matcha-spin[color=green] .spin-progress {
  stroke: #119046;
}
.theme-default-light matcha-spin[color=light-green] .spin-progress {
  stroke: #6EDA2C;
}
.theme-default-light matcha-spin[color=lime] .spin-progress {
  stroke: #86bd00;
}
.theme-default-light matcha-spin[color=yellow] .spin-progress {
  stroke: #e8c300;
}
.theme-default-light matcha-spin[color=amber] .spin-progress {
  stroke: #faa61a;
}
.theme-default-light matcha-spin[color=orange] .spin-progress {
  stroke: #f77814;
}
.theme-default-light matcha-spin[color=deep-orange] .spin-progress {
  stroke: #ff5722;
}
.theme-default-light matcha-spin[color=brown] .spin-progress {
  stroke: #795548;
}
.theme-default-light matcha-spin[color=grey] .spin-progress {
  stroke: #91A0AA;
}
.theme-default-light matcha-spin[color=blue-grey] .spin-progress {
  stroke: #7E8E95;
}
.theme-default-light matcha-spin[color=accent] .spin-progress {
  stroke: #1e5bda;
}
.theme-default-light matcha-spin[color=primary] .spin-progress {
  stroke: #2B363B;
}
.theme-default-light matcha-spin[color=warn] .spin-progress {
  stroke: #d31818;
}
.theme-default-light matcha-spin .spin-placeholder {
  stroke: #E2E7E9;
}
.theme-default-light matcha-spin:not([size]) {
  width: 2.5rem;
  height: 2.5rem;
}
.theme-default-light matcha-spin[size=tiny] {
  width: 1.5rem;
  height: 1.5rem;
}
.theme-default-light matcha-spin[size=small] {
  width: 2rem;
  height: 2rem;
}
.theme-default-light matcha-spin[size=medium] {
  width: 2.5rem;
  height: 2.5rem;
}
.theme-default-light matcha-spin[size=large] {
  width: 3rem;
  height: 3rem;
}
.theme-default-light matcha-spin[size=huge] {
  width: 3.5rem;
  height: 3.5rem;
}
@media screen and (max-width: 599px) {
  .theme-default-light matcha-spin[size-xs=tiny] {
    width: 1.5rem;
    height: 1.5rem;
  }
  .theme-default-light matcha-spin[size-xs=small] {
    width: 2rem;
    height: 2rem;
  }
  .theme-default-light matcha-spin[size-xs=medium] {
    width: 2.5rem;
    height: 2.5rem;
  }
  .theme-default-light matcha-spin[size-xs=large] {
    width: 3rem;
    height: 3rem;
  }
  .theme-default-light matcha-spin[size-xs=huge] {
    width: 3.5rem;
    height: 3.5rem;
  }
}
@media screen and (min-width: 600px) {
  .theme-default-light matcha-spin[size-sm=tiny] {
    width: 1.5rem;
    height: 1.5rem;
  }
  .theme-default-light matcha-spin[size-sm=small] {
    width: 2rem;
    height: 2rem;
  }
  .theme-default-light matcha-spin[size-sm=medium] {
    width: 2.5rem;
    height: 2.5rem;
  }
  .theme-default-light matcha-spin[size-sm=large] {
    width: 3rem;
    height: 3rem;
  }
  .theme-default-light matcha-spin[size-sm=huge] {
    width: 3.5rem;
    height: 3.5rem;
  }
}
@media screen and (min-width: 1024px) {
  .theme-default-light matcha-spin[size-md=tiny] {
    width: 1.5rem;
    height: 1.5rem;
  }
  .theme-default-light matcha-spin[size-md=small] {
    width: 2rem;
    height: 2rem;
  }
  .theme-default-light matcha-spin[size-md=medium] {
    width: 2.5rem;
    height: 2.5rem;
  }
  .theme-default-light matcha-spin[size-md=large] {
    width: 3rem;
    height: 3rem;
  }
  .theme-default-light matcha-spin[size-md=huge] {
    width: 3.5rem;
    height: 3.5rem;
  }
}
@media screen and (min-width: 1440px) {
  .theme-default-light matcha-spin[size-lg=tiny] {
    width: 1.5rem;
    height: 1.5rem;
  }
  .theme-default-light matcha-spin[size-lg=small] {
    width: 2rem;
    height: 2rem;
  }
  .theme-default-light matcha-spin[size-lg=medium] {
    width: 2.5rem;
    height: 2.5rem;
  }
  .theme-default-light matcha-spin[size-lg=large] {
    width: 3rem;
    height: 3rem;
  }
  .theme-default-light matcha-spin[size-lg=huge] {
    width: 3.5rem;
    height: 3.5rem;
  }
}
@media screen and (min-width: 1920px) {
  .theme-default-light matcha-spin[size-xl=tiny] {
    width: 1.5rem;
    height: 1.5rem;
  }
  .theme-default-light matcha-spin[size-xl=small] {
    width: 2rem;
    height: 2rem;
  }
  .theme-default-light matcha-spin[size-xl=medium] {
    width: 2.5rem;
    height: 2.5rem;
  }
  .theme-default-light matcha-spin[size-xl=large] {
    width: 3rem;
    height: 3rem;
  }
  .theme-default-light matcha-spin[size-xl=huge] {
    width: 3.5rem;
    height: 3.5rem;
  }
}
.theme-default-light matcha-spinner:not([color]) .spinner-progress {
  stroke: #1e5bda;
}
.theme-default-light matcha-spinner[color=red] .spinner-progress {
  stroke: #e53a3a;
}
.theme-default-light matcha-spinner[color=pink] .spinner-progress {
  stroke: #e91e63;
}
.theme-default-light matcha-spinner[color=purple] .spinner-progress {
  stroke: #9c27b0;
}
.theme-default-light matcha-spinner[color=deep-purple] .spinner-progress {
  stroke: #673ab7;
}
.theme-default-light matcha-spinner[color=indigo] .spinner-progress {
  stroke: #3f51b5;
}
.theme-default-light matcha-spinner[color=blue] .spinner-progress {
  stroke: #1e5bda;
}
.theme-default-light matcha-spinner[color=light-blue] .spinner-progress {
  stroke: #03a9f4;
}
.theme-default-light matcha-spinner[color=cyan] .spinner-progress {
  stroke: #00bcd4;
}
.theme-default-light matcha-spinner[color=teal] .spinner-progress {
  stroke: #009688;
}
.theme-default-light matcha-spinner[color=green] .spinner-progress {
  stroke: #119046;
}
.theme-default-light matcha-spinner[color=light-green] .spinner-progress {
  stroke: #6EDA2C;
}
.theme-default-light matcha-spinner[color=lime] .spinner-progress {
  stroke: #86bd00;
}
.theme-default-light matcha-spinner[color=yellow] .spinner-progress {
  stroke: #e8c300;
}
.theme-default-light matcha-spinner[color=amber] .spinner-progress {
  stroke: #faa61a;
}
.theme-default-light matcha-spinner[color=orange] .spinner-progress {
  stroke: #f77814;
}
.theme-default-light matcha-spinner[color=deep-orange] .spinner-progress {
  stroke: #ff5722;
}
.theme-default-light matcha-spinner[color=brown] .spinner-progress {
  stroke: #795548;
}
.theme-default-light matcha-spinner[color=grey] .spinner-progress {
  stroke: #91A0AA;
}
.theme-default-light matcha-spinner[color=blue-grey] .spinner-progress {
  stroke: #7E8E95;
}
.theme-default-light matcha-spinner[color=accent] .spinner-progress {
  stroke: #1e5bda;
}
.theme-default-light matcha-spinner[color=primary] .spinner-progress {
  stroke: #2B363B;
}
.theme-default-light matcha-spinner[color=warn] .spinner-progress {
  stroke: #d31818;
}
.theme-default-light matcha-spinner .spinner-placeholder {
  stroke: #E2E7E9;
  fill: none;
}
.theme-default-light matcha-spinner .spinner-progress {
  fill: none;
}
.theme-default-light matcha-spinner[size=tiny] svg {
  width: 1.5rem;
  height: 1.5rem;
}
.theme-default-light matcha-spinner[size=small] svg {
  width: 2rem;
  height: 2rem;
}
.theme-default-light matcha-spinner[size=medium] svg {
  width: 2.5rem;
  height: 2.5rem;
}
.theme-default-light matcha-spinner[size=large] svg {
  width: 3rem;
  height: 3rem;
}
.theme-default-light matcha-spinner[size=huge] svg {
  width: 3.5rem;
  height: 3.5rem;
}
@media screen and (max-width: 599px) {
  .theme-default-light matcha-spinner[size-xs=tiny] svg {
    width: 1.5rem;
    height: 1.5rem;
  }
  .theme-default-light matcha-spinner[size-xs=small] svg {
    width: 2rem;
    height: 2rem;
  }
  .theme-default-light matcha-spinner[size-xs=medium] svg {
    width: 2.5rem;
    height: 2.5rem;
  }
  .theme-default-light matcha-spinner[size-xs=large] svg {
    width: 3rem;
    height: 3rem;
  }
  .theme-default-light matcha-spinner[size-xs=huge] svg {
    width: 3.5rem;
    height: 3.5rem;
  }
}
@media screen and (min-width: 600px) {
  .theme-default-light matcha-spinner[size-sm=tiny] svg {
    width: 1.5rem;
    height: 1.5rem;
  }
  .theme-default-light matcha-spinner[size-sm=small] svg {
    width: 2rem;
    height: 2rem;
  }
  .theme-default-light matcha-spinner[size-sm=medium] svg {
    width: 2.5rem;
    height: 2.5rem;
  }
  .theme-default-light matcha-spinner[size-sm=large] svg {
    width: 3rem;
    height: 3rem;
  }
  .theme-default-light matcha-spinner[size-sm=huge] svg {
    width: 3.5rem;
    height: 3.5rem;
  }
}
@media screen and (min-width: 1024px) {
  .theme-default-light matcha-spinner[size-md=tiny] svg {
    width: 1.5rem;
    height: 1.5rem;
  }
  .theme-default-light matcha-spinner[size-md=small] svg {
    width: 2rem;
    height: 2rem;
  }
  .theme-default-light matcha-spinner[size-md=medium] svg {
    width: 2.5rem;
    height: 2.5rem;
  }
  .theme-default-light matcha-spinner[size-md=large] svg {
    width: 3rem;
    height: 3rem;
  }
  .theme-default-light matcha-spinner[size-md=huge] svg {
    width: 3.5rem;
    height: 3.5rem;
  }
}
@media screen and (min-width: 1440px) {
  .theme-default-light matcha-spinner[size-lg=tiny] svg {
    width: 1.5rem;
    height: 1.5rem;
  }
  .theme-default-light matcha-spinner[size-lg=small] svg {
    width: 2rem;
    height: 2rem;
  }
  .theme-default-light matcha-spinner[size-lg=medium] svg {
    width: 2.5rem;
    height: 2.5rem;
  }
  .theme-default-light matcha-spinner[size-lg=large] svg {
    width: 3rem;
    height: 3rem;
  }
  .theme-default-light matcha-spinner[size-lg=huge] svg {
    width: 3.5rem;
    height: 3.5rem;
  }
}
@media screen and (min-width: 1920px) {
  .theme-default-light matcha-spinner[size-xl=tiny] svg {
    width: 1.5rem;
    height: 1.5rem;
  }
  .theme-default-light matcha-spinner[size-xl=small] svg {
    width: 2rem;
    height: 2rem;
  }
  .theme-default-light matcha-spinner[size-xl=medium] svg {
    width: 2.5rem;
    height: 2.5rem;
  }
  .theme-default-light matcha-spinner[size-xl=large] svg {
    width: 3rem;
    height: 3rem;
  }
  .theme-default-light matcha-spinner[size-xl=huge] svg {
    width: 3.5rem;
    height: 3.5rem;
  }
}
.theme-default-light matcha-spinner:not([size]) svg {
  width: 2.5rem;
  height: 2.5rem;
}
.theme-default-light matcha-hint-text {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin: 0;
  padding: 0.25rem 0;
}
.theme-default-light matcha-hint-text[type=error] {
  color: #e53a3a;
}
.theme-default-light matcha-hint-text[type=warning] {
  color: #e8c300;
}
.theme-default-light matcha-hint-text[type=info] {
  color: #1e5bda;
}
.theme-default-light matcha-hint-text[type=success] {
  color: #119046;
}
.theme-default-light matcha-hint-text:not([size]) {
  font-size: 0.75rem;
  line-height: 1rem;
}
.theme-default-light matcha-hint-text:not([size]) matcha-icon,
.theme-default-light matcha-hint-text:not([size]) matcha-icon span {
  display: flex;
  width: 1rem;
  height: 1rem;
  font-size: 1rem;
  line-height: 1rem;
}
.theme-default-light matcha-hint-text[size=tiny] {
  font-size: 0.75rem;
  line-height: 1rem;
}
.theme-default-light matcha-hint-text[size=tiny] matcha-icon span {
  width: 1rem;
  height: 1rem;
  font-size: 1rem;
  line-height: 1rem;
}
.theme-default-light matcha-hint-text[size=medium] {
  font-size: 0.875rem;
  line-height: 1.5rem;
}
.theme-default-light matcha-hint-text[size=medium] matcha-icon,
.theme-default-light matcha-hint-text[size=medium] matcha-icon span {
  width: 1.5rem;
  height: 1.5rem;
  font-size: 1.5rem;
  line-height: 1.5rem;
}
@media screen and (max-width: 599px) {
  .theme-default-light matcha-hint-text[size-xs=tiny] {
    font-size: 0.75rem;
    line-height: 1rem;
  }
  .theme-default-light matcha-hint-text[size-xs=tiny] matcha-icon span {
    width: 1rem;
    height: 1rem;
    font-size: 1rem;
    line-height: 1rem;
  }
  .theme-default-light matcha-hint-text[size-xs=medium] {
    font-size: 0.875rem;
    line-height: 1.5rem;
  }
  .theme-default-light matcha-hint-text[size-xs=medium] matcha-icon,
  .theme-default-light matcha-hint-text[size-xs=medium] matcha-icon span {
    width: 1.5rem;
    height: 1.5rem;
    font-size: 1.5rem;
    line-height: 1.5rem;
  }
}
@media screen and (min-width: 600px) {
  .theme-default-light matcha-hint-text[size-sm=tiny] {
    font-size: 0.75rem;
    line-height: 1rem;
  }
  .theme-default-light matcha-hint-text[size-sm=tiny] matcha-icon span {
    width: 1rem;
    height: 1rem;
    font-size: 1rem;
    line-height: 1rem;
  }
  .theme-default-light matcha-hint-text[size-sm=medium] {
    font-size: 0.875rem;
    line-height: 1.5rem;
  }
  .theme-default-light matcha-hint-text[size-sm=medium] matcha-icon,
  .theme-default-light matcha-hint-text[size-sm=medium] matcha-icon span {
    width: 1.5rem;
    height: 1.5rem;
    font-size: 1.5rem;
    line-height: 1.5rem;
  }
}
@media screen and (min-width: 1024px) {
  .theme-default-light matcha-hint-text[size-md=tiny] {
    font-size: 0.75rem;
    line-height: 1rem;
  }
  .theme-default-light matcha-hint-text[size-md=tiny] matcha-icon span {
    width: 1rem;
    height: 1rem;
    font-size: 1rem;
    line-height: 1rem;
  }
  .theme-default-light matcha-hint-text[size-md=medium] {
    font-size: 0.875rem;
    line-height: 1.5rem;
  }
  .theme-default-light matcha-hint-text[size-md=medium] matcha-icon,
  .theme-default-light matcha-hint-text[size-md=medium] matcha-icon span {
    width: 1.5rem;
    height: 1.5rem;
    font-size: 1.5rem;
    line-height: 1.5rem;
  }
}
@media screen and (min-width: 1440px) {
  .theme-default-light matcha-hint-text[size-lg=tiny] {
    font-size: 0.75rem;
    line-height: 1rem;
  }
  .theme-default-light matcha-hint-text[size-lg=tiny] matcha-icon span {
    width: 1rem;
    height: 1rem;
    font-size: 1rem;
    line-height: 1rem;
  }
  .theme-default-light matcha-hint-text[size-lg=medium] {
    font-size: 0.875rem;
    line-height: 1.5rem;
  }
  .theme-default-light matcha-hint-text[size-lg=medium] matcha-icon,
  .theme-default-light matcha-hint-text[size-lg=medium] matcha-icon span {
    width: 1.5rem;
    height: 1.5rem;
    font-size: 1.5rem;
    line-height: 1.5rem;
  }
}
@media screen and (min-width: 1920px) {
  .theme-default-light matcha-hint-text[size-xl=tiny] {
    font-size: 0.75rem;
    line-height: 1rem;
  }
  .theme-default-light matcha-hint-text[size-xl=tiny] matcha-icon span {
    width: 1rem;
    height: 1rem;
    font-size: 1rem;
    line-height: 1rem;
  }
  .theme-default-light matcha-hint-text[size-xl=medium] {
    font-size: 0.875rem;
    line-height: 1.5rem;
  }
  .theme-default-light matcha-hint-text[size-xl=medium] matcha-icon,
  .theme-default-light matcha-hint-text[size-xl=medium] matcha-icon span {
    width: 1.5rem;
    height: 1.5rem;
    font-size: 1.5rem;
    line-height: 1.5rem;
  }
}
.theme-default-light matcha-slide-toggle input[type=checkbox]::before {
  background-color: #FFFFFF;
  border-color: #2B363B;
}
.theme-default-light matcha-slide-toggle input[type=checkbox]::after {
  box-shadow: #E2E7E9;
  background-color: #2B363B;
}
.theme-default-light matcha-slide-toggle:not([color]) input[type=checkbox]:checked::before, .theme-default-light matcha-slide-toggle[color=accent] input[type=checkbox]:checked::before {
  background-color: #1e5bda;
  border-color: #1e5bda;
}
.theme-default-light matcha-slide-toggle:not([color]) input[type=checkbox]:checked::after, .theme-default-light matcha-slide-toggle[color=accent] input[type=checkbox]:checked::after {
  background-color: white;
}
.theme-default-light matcha-slide-toggle[color=red] input[type=checkbox]:checked::before {
  background-color: #e53a3a;
  border-color: #e53a3a;
}
.theme-default-light matcha-slide-toggle[color=red] input[type=checkbox]:checked::after {
  background-color: white;
}
.theme-default-light matcha-slide-toggle[color=pink] input[type=checkbox]:checked::before {
  background-color: #e91e63;
  border-color: #e91e63;
}
.theme-default-light matcha-slide-toggle[color=pink] input[type=checkbox]:checked::after {
  background-color: white;
}
.theme-default-light matcha-slide-toggle[color=purple] input[type=checkbox]:checked::before {
  background-color: #9c27b0;
  border-color: #9c27b0;
}
.theme-default-light matcha-slide-toggle[color=purple] input[type=checkbox]:checked::after {
  background-color: white;
}
.theme-default-light matcha-slide-toggle[color=deep-purple] input[type=checkbox]:checked::before {
  background-color: #673ab7;
  border-color: #673ab7;
}
.theme-default-light matcha-slide-toggle[color=deep-purple] input[type=checkbox]:checked::after {
  background-color: white;
}
.theme-default-light matcha-slide-toggle[color=indigo] input[type=checkbox]:checked::before {
  background-color: #3f51b5;
  border-color: #3f51b5;
}
.theme-default-light matcha-slide-toggle[color=indigo] input[type=checkbox]:checked::after {
  background-color: white;
}
.theme-default-light matcha-slide-toggle[color=blue] input[type=checkbox]:checked::before {
  background-color: #1e5bda;
  border-color: #1e5bda;
}
.theme-default-light matcha-slide-toggle[color=blue] input[type=checkbox]:checked::after {
  background-color: white;
}
.theme-default-light matcha-slide-toggle[color=light-blue] input[type=checkbox]:checked::before {
  background-color: #03a9f4;
  border-color: #03a9f4;
}
.theme-default-light matcha-slide-toggle[color=light-blue] input[type=checkbox]:checked::after {
  background-color: white;
}
.theme-default-light matcha-slide-toggle[color=cyan] input[type=checkbox]:checked::before {
  background-color: #00bcd4;
  border-color: #00bcd4;
}
.theme-default-light matcha-slide-toggle[color=cyan] input[type=checkbox]:checked::after {
  background-color: white;
}
.theme-default-light matcha-slide-toggle[color=teal] input[type=checkbox]:checked::before {
  background-color: #009688;
  border-color: #009688;
}
.theme-default-light matcha-slide-toggle[color=teal] input[type=checkbox]:checked::after {
  background-color: white;
}
.theme-default-light matcha-slide-toggle[color=green] input[type=checkbox]:checked::before {
  background-color: #119046;
  border-color: #119046;
}
.theme-default-light matcha-slide-toggle[color=green] input[type=checkbox]:checked::after {
  background-color: white;
}
.theme-default-light matcha-slide-toggle[color=light-green] input[type=checkbox]:checked::before {
  background-color: #6EDA2C;
  border-color: #6EDA2C;
}
.theme-default-light matcha-slide-toggle[color=light-green] input[type=checkbox]:checked::after {
  background-color: rgba(0, 0, 0, 0.87);
}
.theme-default-light matcha-slide-toggle[color=lime] input[type=checkbox]:checked::before {
  background-color: #86bd00;
  border-color: #86bd00;
}
.theme-default-light matcha-slide-toggle[color=lime] input[type=checkbox]:checked::after {
  background-color: white;
}
.theme-default-light matcha-slide-toggle[color=yellow] input[type=checkbox]:checked::before {
  background-color: #e8c300;
  border-color: #e8c300;
}
.theme-default-light matcha-slide-toggle[color=yellow] input[type=checkbox]:checked::after {
  background-color: rgba(0, 0, 0, 0.87);
}
.theme-default-light matcha-slide-toggle[color=amber] input[type=checkbox]:checked::before {
  background-color: #faa61a;
  border-color: #faa61a;
}
.theme-default-light matcha-slide-toggle[color=amber] input[type=checkbox]:checked::after {
  background-color: rgba(0, 0, 0, 0.87);
}
.theme-default-light matcha-slide-toggle[color=orange] input[type=checkbox]:checked::before {
  background-color: #f77814;
  border-color: #f77814;
}
.theme-default-light matcha-slide-toggle[color=orange] input[type=checkbox]:checked::after {
  background-color: rgba(0, 0, 0, 0.87);
}
.theme-default-light matcha-slide-toggle[color=deep-orange] input[type=checkbox]:checked::before {
  background-color: #ff5722;
  border-color: #ff5722;
}
.theme-default-light matcha-slide-toggle[color=deep-orange] input[type=checkbox]:checked::after {
  background-color: white;
}
.theme-default-light matcha-slide-toggle[color=brown] input[type=checkbox]:checked::before {
  background-color: #795548;
  border-color: #795548;
}
.theme-default-light matcha-slide-toggle[color=brown] input[type=checkbox]:checked::after {
  background-color: white;
}
.theme-default-light matcha-slide-toggle[color=grey] input[type=checkbox]:checked::before {
  background-color: #91A0AA;
  border-color: #91A0AA;
}
.theme-default-light matcha-slide-toggle[color=grey] input[type=checkbox]:checked::after {
  background-color: white;
}
.theme-default-light matcha-slide-toggle[color=blue-grey] input[type=checkbox]:checked::before {
  background-color: #7E8E95;
  border-color: #7E8E95;
}
.theme-default-light matcha-slide-toggle[color=blue-grey] input[type=checkbox]:checked::after {
  background-color: white;
}
.theme-default-light matcha-slide-toggle[color=primary] input[type=checkbox]:checked::before {
  background-color: #2B363B;
  border-color: #2B363B;
}
.theme-default-light matcha-slide-toggle[color=primary] input[type=checkbox]:checked::after {
  background-color: white;
}
.theme-default-light matcha-slide-toggle[color=warn] input[type=checkbox]:checked::before {
  background-color: #d31818;
  border-color: #d31818;
}
.theme-default-light matcha-slide-toggle[color=warn] input[type=checkbox]:checked::after {
  background-color: white;
}
.theme-default-light matcha-slide-toggle .matcha-slide-toggle-label {
  color: #91A0AA;
}
.theme-default-light matcha-slide-toggle label {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  vertical-align: middle;
  position: relative;
}
.theme-default-light matcha-slide-toggle label .matcha-slide-toggle-label {
  font-size: 14px;
  -webkit-user-select: none;
          user-select: none;
}
.theme-default-light matcha-slide-toggle label.matcha-slide-toggle-disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.theme-default-light matcha-slide-toggle label.matcha-slide-toggle-disabled input[type=checkbox] {
  cursor: not-allowed;
}
.theme-default-light matcha-slide-toggle input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  position: relative;
  display: inline-block;
  width: 36px;
  height: 20px;
  margin: 0;
  outline: none;
  cursor: pointer;
  vertical-align: middle;
}
.theme-default-light matcha-slide-toggle input[type=checkbox]::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 20px;
  border-width: 2px;
  border-style: solid;
  border-radius: 12px;
  box-sizing: border-box;
  transition: background-color 0.15s linear;
}
.theme-default-light matcha-slide-toggle input[type=checkbox]::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 3px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.15s linear, outline 0.1s ease-out;
}
.theme-default-light matcha-slide-toggle input[type=checkbox]:checked::after {
  top: 2px;
  left: 1px;
  width: 16px;
  height: 16px;
  transform: translateX(17px);
}
.theme-default-light matcha-slide-toggle input[type=checkbox]:focus-visible::after {
  outline-offset: 2px;
}
.theme-default-light matcha-tabs {
  display: flex;
}
.theme-default-light matcha-tabs[inactivetype=basic][inactivecolor=red] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-light matcha-tabs[inactivetype=basic][inactivecolor=red] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  background: #FFFFFF;
  color: #e53a3a;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-light matcha-tabs[inactivetype=basic][inactivecolor=red] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-light matcha-tabs[inactivetype=basic][inactivecolor=red] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(229, 58, 58, 0.2);
}
.theme-default-light matcha-tabs[inactivetype=basic][inactivecolor=pink] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-light matcha-tabs[inactivetype=basic][inactivecolor=pink] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  background: #FFFFFF;
  color: #e91e63;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-light matcha-tabs[inactivetype=basic][inactivecolor=pink] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-light matcha-tabs[inactivetype=basic][inactivecolor=pink] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(233, 30, 99, 0.2);
}
.theme-default-light matcha-tabs[inactivetype=basic][inactivecolor=purple] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-light matcha-tabs[inactivetype=basic][inactivecolor=purple] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  background: #FFFFFF;
  color: #9c27b0;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-light matcha-tabs[inactivetype=basic][inactivecolor=purple] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-light matcha-tabs[inactivetype=basic][inactivecolor=purple] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(156, 39, 176, 0.2);
}
.theme-default-light matcha-tabs[inactivetype=basic][inactivecolor=deep-purple] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-light matcha-tabs[inactivetype=basic][inactivecolor=deep-purple] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  background: #FFFFFF;
  color: #673ab7;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-light matcha-tabs[inactivetype=basic][inactivecolor=deep-purple] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-light matcha-tabs[inactivetype=basic][inactivecolor=deep-purple] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(103, 58, 183, 0.2);
}
.theme-default-light matcha-tabs[inactivetype=basic][inactivecolor=indigo] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-light matcha-tabs[inactivetype=basic][inactivecolor=indigo] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  background: #FFFFFF;
  color: #3f51b5;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-light matcha-tabs[inactivetype=basic][inactivecolor=indigo] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-light matcha-tabs[inactivetype=basic][inactivecolor=indigo] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(63, 81, 181, 0.2);
}
.theme-default-light matcha-tabs[inactivetype=basic][inactivecolor=blue] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-light matcha-tabs[inactivetype=basic][inactivecolor=blue] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  background: #FFFFFF;
  color: #1e5bda;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-light matcha-tabs[inactivetype=basic][inactivecolor=blue] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-light matcha-tabs[inactivetype=basic][inactivecolor=blue] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(30, 91, 218, 0.2);
}
.theme-default-light matcha-tabs[inactivetype=basic][inactivecolor=light-blue] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-light matcha-tabs[inactivetype=basic][inactivecolor=light-blue] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  background: #FFFFFF;
  color: #03a9f4;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-light matcha-tabs[inactivetype=basic][inactivecolor=light-blue] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-light matcha-tabs[inactivetype=basic][inactivecolor=light-blue] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(3, 169, 244, 0.2);
}
.theme-default-light matcha-tabs[inactivetype=basic][inactivecolor=cyan] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-light matcha-tabs[inactivetype=basic][inactivecolor=cyan] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  background: #FFFFFF;
  color: #00bcd4;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-light matcha-tabs[inactivetype=basic][inactivecolor=cyan] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-light matcha-tabs[inactivetype=basic][inactivecolor=cyan] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(0, 188, 212, 0.2);
}
.theme-default-light matcha-tabs[inactivetype=basic][inactivecolor=teal] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-light matcha-tabs[inactivetype=basic][inactivecolor=teal] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  background: #FFFFFF;
  color: #009688;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-light matcha-tabs[inactivetype=basic][inactivecolor=teal] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-light matcha-tabs[inactivetype=basic][inactivecolor=teal] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(0, 150, 136, 0.2);
}
.theme-default-light matcha-tabs[inactivetype=basic][inactivecolor=green] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-light matcha-tabs[inactivetype=basic][inactivecolor=green] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  background: #FFFFFF;
  color: #119046;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-light matcha-tabs[inactivetype=basic][inactivecolor=green] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-light matcha-tabs[inactivetype=basic][inactivecolor=green] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(17, 144, 70, 0.2);
}
.theme-default-light matcha-tabs[inactivetype=basic][inactivecolor=light-green] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-light matcha-tabs[inactivetype=basic][inactivecolor=light-green] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  background: #FFFFFF;
  color: #6EDA2C;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-light matcha-tabs[inactivetype=basic][inactivecolor=light-green] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-light matcha-tabs[inactivetype=basic][inactivecolor=light-green] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(110, 218, 44, 0.2);
}
.theme-default-light matcha-tabs[inactivetype=basic][inactivecolor=lime] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-light matcha-tabs[inactivetype=basic][inactivecolor=lime] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  background: #FFFFFF;
  color: #86bd00;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-light matcha-tabs[inactivetype=basic][inactivecolor=lime] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-light matcha-tabs[inactivetype=basic][inactivecolor=lime] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(134, 189, 0, 0.2);
}
.theme-default-light matcha-tabs[inactivetype=basic][inactivecolor=yellow] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-light matcha-tabs[inactivetype=basic][inactivecolor=yellow] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  background: #FFFFFF;
  color: #e8c300;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-light matcha-tabs[inactivetype=basic][inactivecolor=yellow] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-light matcha-tabs[inactivetype=basic][inactivecolor=yellow] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(232, 195, 0, 0.2);
}
.theme-default-light matcha-tabs[inactivetype=basic][inactivecolor=amber] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-light matcha-tabs[inactivetype=basic][inactivecolor=amber] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  background: #FFFFFF;
  color: #faa61a;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-light matcha-tabs[inactivetype=basic][inactivecolor=amber] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-light matcha-tabs[inactivetype=basic][inactivecolor=amber] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(250, 166, 26, 0.2);
}
.theme-default-light matcha-tabs[inactivetype=basic][inactivecolor=orange] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-light matcha-tabs[inactivetype=basic][inactivecolor=orange] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  background: #FFFFFF;
  color: #f77814;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-light matcha-tabs[inactivetype=basic][inactivecolor=orange] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-light matcha-tabs[inactivetype=basic][inactivecolor=orange] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(247, 120, 20, 0.2);
}
.theme-default-light matcha-tabs[inactivetype=basic][inactivecolor=deep-orange] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-light matcha-tabs[inactivetype=basic][inactivecolor=deep-orange] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  background: #FFFFFF;
  color: #ff5722;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-light matcha-tabs[inactivetype=basic][inactivecolor=deep-orange] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-light matcha-tabs[inactivetype=basic][inactivecolor=deep-orange] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(255, 87, 34, 0.2);
}
.theme-default-light matcha-tabs[inactivetype=basic][inactivecolor=brown] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-light matcha-tabs[inactivetype=basic][inactivecolor=brown] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  background: #FFFFFF;
  color: #795548;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-light matcha-tabs[inactivetype=basic][inactivecolor=brown] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-light matcha-tabs[inactivetype=basic][inactivecolor=brown] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(121, 85, 72, 0.2);
}
.theme-default-light matcha-tabs[inactivetype=basic][inactivecolor=grey] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-light matcha-tabs[inactivetype=basic][inactivecolor=grey] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  background: #FFFFFF;
  color: #91A0AA;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-light matcha-tabs[inactivetype=basic][inactivecolor=grey] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-light matcha-tabs[inactivetype=basic][inactivecolor=grey] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(145, 160, 170, 0.2);
}
.theme-default-light matcha-tabs[inactivetype=basic][inactivecolor=blue-grey] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-light matcha-tabs[inactivetype=basic][inactivecolor=blue-grey] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  background: #FFFFFF;
  color: #7E8E95;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-light matcha-tabs[inactivetype=basic][inactivecolor=blue-grey] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-light matcha-tabs[inactivetype=basic][inactivecolor=blue-grey] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(126, 142, 149, 0.2);
}
.theme-default-light matcha-tabs[inactivetype=basic][inactivecolor=primary] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-light matcha-tabs[inactivetype=basic][inactivecolor=primary] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  background: #FFFFFF;
  color: #2B363B;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-light matcha-tabs[inactivetype=basic][inactivecolor=primary] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-light matcha-tabs[inactivetype=basic][inactivecolor=primary] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(43, 54, 59, 0.2);
}
.theme-default-light matcha-tabs[inactivetype=basic][inactivecolor=accent] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-light matcha-tabs[inactivetype=basic][inactivecolor=accent] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  background: #FFFFFF;
  color: #1e5bda;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-light matcha-tabs[inactivetype=basic][inactivecolor=accent] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-light matcha-tabs[inactivetype=basic][inactivecolor=accent] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(30, 91, 218, 0.2);
}
.theme-default-light matcha-tabs[inactivetype=basic][inactivecolor=warn] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-light matcha-tabs[inactivetype=basic][inactivecolor=warn] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  background: #FFFFFF;
  color: #d31818;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-light matcha-tabs[inactivetype=basic][inactivecolor=warn] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-light matcha-tabs[inactivetype=basic][inactivecolor=warn] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(211, 24, 24, 0.2);
}
.theme-default-light matcha-tabs[inactivetype=basic][inactivecolor=disabled] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-light matcha-tabs[inactivetype=basic][inactivecolor=disabled] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  background: #FFFFFF;
  color: #E2E7E9;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-light matcha-tabs[inactivetype=basic][inactivecolor=disabled] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-light matcha-tabs[inactivetype=basic][inactivecolor=disabled] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(226, 231, 233, 0.5);
}
.theme-default-light matcha-tabs[inactivetype=basic][disabled]:not([active-item=true]) .button-group matcha-tab-item button[matcha-button],
.theme-default-light matcha-tabs[inactivetype=basic][disabled]:not([active-item=true]) .button-group matcha-tab-item a[matcha-button], .theme-default-light matcha-tabs[inactivetype=basic][disabled]:not([disabled=false]):not([active-item=true]) .button-group matcha-tab-item button[matcha-button],
.theme-default-light matcha-tabs[inactivetype=basic][disabled]:not([disabled=false]):not([active-item=true]) .button-group matcha-tab-item a[matcha-button], .theme-default-light matcha-tabs[inactivetype=basic][disabled=true]:not([active-item=true]) .button-group matcha-tab-item button[matcha-button],
.theme-default-light matcha-tabs[inactivetype=basic][disabled=true]:not([active-item=true]) .button-group matcha-tab-item a[matcha-button] {
  background: #FFFFFF;
  color: #E2E7E9;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-light matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=red] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-light matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=red] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  color: #e53a3a;
  background: transparent;
  box-shadow: 0 0 0 2px #e53a3a inset;
}
.theme-default-light matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=red] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-light matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=red] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(229, 58, 58, 0.2);
}
.theme-default-light matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=pink] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-light matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=pink] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  color: #e91e63;
  background: transparent;
  box-shadow: 0 0 0 2px #e91e63 inset;
}
.theme-default-light matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=pink] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-light matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=pink] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(233, 30, 99, 0.2);
}
.theme-default-light matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=purple] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-light matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=purple] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  color: #9c27b0;
  background: transparent;
  box-shadow: 0 0 0 2px #9c27b0 inset;
}
.theme-default-light matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=purple] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-light matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=purple] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(156, 39, 176, 0.2);
}
.theme-default-light matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=deep-purple] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-light matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=deep-purple] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  color: #673ab7;
  background: transparent;
  box-shadow: 0 0 0 2px #673ab7 inset;
}
.theme-default-light matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=deep-purple] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-light matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=deep-purple] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(103, 58, 183, 0.2);
}
.theme-default-light matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=indigo] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-light matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=indigo] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  color: #3f51b5;
  background: transparent;
  box-shadow: 0 0 0 2px #3f51b5 inset;
}
.theme-default-light matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=indigo] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-light matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=indigo] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(63, 81, 181, 0.2);
}
.theme-default-light matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=blue] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-light matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=blue] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  color: #1e5bda;
  background: transparent;
  box-shadow: 0 0 0 2px #1e5bda inset;
}
.theme-default-light matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=blue] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-light matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=blue] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(30, 91, 218, 0.2);
}
.theme-default-light matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=light-blue] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-light matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=light-blue] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  color: #03a9f4;
  background: transparent;
  box-shadow: 0 0 0 2px #03a9f4 inset;
}
.theme-default-light matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=light-blue] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-light matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=light-blue] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(3, 169, 244, 0.2);
}
.theme-default-light matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=cyan] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-light matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=cyan] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  color: #00bcd4;
  background: transparent;
  box-shadow: 0 0 0 2px #00bcd4 inset;
}
.theme-default-light matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=cyan] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-light matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=cyan] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(0, 188, 212, 0.2);
}
.theme-default-light matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=teal] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-light matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=teal] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  color: #009688;
  background: transparent;
  box-shadow: 0 0 0 2px #009688 inset;
}
.theme-default-light matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=teal] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-light matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=teal] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(0, 150, 136, 0.2);
}
.theme-default-light matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=green] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-light matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=green] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  color: #119046;
  background: transparent;
  box-shadow: 0 0 0 2px #119046 inset;
}
.theme-default-light matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=green] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-light matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=green] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(17, 144, 70, 0.2);
}
.theme-default-light matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=light-green] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-light matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=light-green] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  color: #6EDA2C;
  background: transparent;
  box-shadow: 0 0 0 2px #6EDA2C inset;
}
.theme-default-light matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=light-green] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-light matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=light-green] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(110, 218, 44, 0.2);
}
.theme-default-light matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=lime] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-light matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=lime] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  color: #86bd00;
  background: transparent;
  box-shadow: 0 0 0 2px #86bd00 inset;
}
.theme-default-light matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=lime] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-light matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=lime] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(134, 189, 0, 0.2);
}
.theme-default-light matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=yellow] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-light matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=yellow] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  color: #e8c300;
  background: transparent;
  box-shadow: 0 0 0 2px #e8c300 inset;
}
.theme-default-light matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=yellow] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-light matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=yellow] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(232, 195, 0, 0.2);
}
.theme-default-light matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=amber] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-light matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=amber] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  color: #faa61a;
  background: transparent;
  box-shadow: 0 0 0 2px #faa61a inset;
}
.theme-default-light matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=amber] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-light matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=amber] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(250, 166, 26, 0.2);
}
.theme-default-light matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=orange] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-light matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=orange] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  color: #f77814;
  background: transparent;
  box-shadow: 0 0 0 2px #f77814 inset;
}
.theme-default-light matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=orange] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-light matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=orange] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(247, 120, 20, 0.2);
}
.theme-default-light matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=deep-orange] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-light matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=deep-orange] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  color: #ff5722;
  background: transparent;
  box-shadow: 0 0 0 2px #ff5722 inset;
}
.theme-default-light matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=deep-orange] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-light matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=deep-orange] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(255, 87, 34, 0.2);
}
.theme-default-light matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=brown] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-light matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=brown] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  color: #795548;
  background: transparent;
  box-shadow: 0 0 0 2px #795548 inset;
}
.theme-default-light matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=brown] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-light matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=brown] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(121, 85, 72, 0.2);
}
.theme-default-light matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=grey] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-light matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=grey] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  color: #91A0AA;
  background: transparent;
  box-shadow: 0 0 0 2px #91A0AA inset;
}
.theme-default-light matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=grey] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-light matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=grey] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(145, 160, 170, 0.2);
}
.theme-default-light matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=blue-grey] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-light matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=blue-grey] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  color: #7E8E95;
  background: transparent;
  box-shadow: 0 0 0 2px #7E8E95 inset;
}
.theme-default-light matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=blue-grey] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-light matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=blue-grey] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(126, 142, 149, 0.2);
}
.theme-default-light matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=primary] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-light matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=primary] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  color: #2B363B;
  background: transparent;
  box-shadow: 0 0 0 2px #2B363B inset;
}
.theme-default-light matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=primary] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-light matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=primary] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(43, 54, 59, 0.2);
}
.theme-default-light matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=accent] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-light matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=accent] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  color: #1e5bda;
  background: transparent;
  box-shadow: 0 0 0 2px #1e5bda inset;
}
.theme-default-light matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=accent] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-light matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=accent] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(30, 91, 218, 0.2);
}
.theme-default-light matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=warn] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-light matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=warn] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  color: #d31818;
  background: transparent;
  box-shadow: 0 0 0 2px #d31818 inset;
}
.theme-default-light matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=warn] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-light matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=warn] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(211, 24, 24, 0.2);
}
.theme-default-light matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=disabled] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-light matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=disabled] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  color: #E2E7E9;
  background: transparent;
  box-shadow: 0 0 0 2px #E2E7E9 inset;
}
.theme-default-light matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=disabled] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-light matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=disabled] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(226, 231, 233, 0.5);
}
.theme-default-light matcha-tabs[inactivetype=outline][disabled] > .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-light matcha-tabs[inactivetype=outline][disabled] > .button-group matcha-tab-item a[matcha-button]:not([active-item=true]), .theme-default-light matcha-tabs[inactivetype=outline][disabled]:not([disabled=false]) > .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-light matcha-tabs[inactivetype=outline][disabled]:not([disabled=false]) > .button-group matcha-tab-item a[matcha-button]:not([active-item=true]), .theme-default-light matcha-tabs[inactivetype=outline][disabled=true] > .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-light matcha-tabs[inactivetype=outline][disabled=true] > .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  background: transparent;
  color: #E2E7E9;
  box-shadow: 0 0 0 2px inset;
  pointer-events: none;
}
.theme-default-light matcha-tabs[inactivetype=alpha][inactivecolor=red] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-light matcha-tabs[inactivetype=alpha][inactivecolor=red] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  color: #e53a3a;
  background: rgba(229, 58, 58, 0.2);
  box-shadow: 0 0 0 0px;
}
.theme-default-light matcha-tabs[inactivetype=alpha][inactivecolor=red] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-light matcha-tabs[inactivetype=alpha][inactivecolor=red] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(255, 255, 255, 0.2);
}
.theme-default-light matcha-tabs[inactivetype=alpha][inactivecolor=pink] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-light matcha-tabs[inactivetype=alpha][inactivecolor=pink] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  color: #e91e63;
  background: rgba(233, 30, 99, 0.2);
  box-shadow: 0 0 0 0px;
}
.theme-default-light matcha-tabs[inactivetype=alpha][inactivecolor=pink] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-light matcha-tabs[inactivetype=alpha][inactivecolor=pink] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(255, 255, 255, 0.2);
}
.theme-default-light matcha-tabs[inactivetype=alpha][inactivecolor=purple] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-light matcha-tabs[inactivetype=alpha][inactivecolor=purple] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  color: #9c27b0;
  background: rgba(156, 39, 176, 0.2);
  box-shadow: 0 0 0 0px;
}
.theme-default-light matcha-tabs[inactivetype=alpha][inactivecolor=purple] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-light matcha-tabs[inactivetype=alpha][inactivecolor=purple] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(255, 255, 255, 0.2);
}
.theme-default-light matcha-tabs[inactivetype=alpha][inactivecolor=deep-purple] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-light matcha-tabs[inactivetype=alpha][inactivecolor=deep-purple] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  color: #673ab7;
  background: rgba(103, 58, 183, 0.2);
  box-shadow: 0 0 0 0px;
}
.theme-default-light matcha-tabs[inactivetype=alpha][inactivecolor=deep-purple] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-light matcha-tabs[inactivetype=alpha][inactivecolor=deep-purple] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(255, 255, 255, 0.2);
}
.theme-default-light matcha-tabs[inactivetype=alpha][inactivecolor=indigo] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-light matcha-tabs[inactivetype=alpha][inactivecolor=indigo] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  color: #3f51b5;
  background: rgba(63, 81, 181, 0.2);
  box-shadow: 0 0 0 0px;
}
.theme-default-light matcha-tabs[inactivetype=alpha][inactivecolor=indigo] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-light matcha-tabs[inactivetype=alpha][inactivecolor=indigo] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(255, 255, 255, 0.2);
}
.theme-default-light matcha-tabs[inactivetype=alpha][inactivecolor=blue] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-light matcha-tabs[inactivetype=alpha][inactivecolor=blue] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  color: #1e5bda;
  background: rgba(30, 91, 218, 0.2);
  box-shadow: 0 0 0 0px;
}
.theme-default-light matcha-tabs[inactivetype=alpha][inactivecolor=blue] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-light matcha-tabs[inactivetype=alpha][inactivecolor=blue] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(255, 255, 255, 0.2);
}
.theme-default-light matcha-tabs[inactivetype=alpha][inactivecolor=light-blue] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-light matcha-tabs[inactivetype=alpha][inactivecolor=light-blue] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  color: #03a9f4;
  background: rgba(3, 169, 244, 0.2);
  box-shadow: 0 0 0 0px;
}
.theme-default-light matcha-tabs[inactivetype=alpha][inactivecolor=light-blue] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-light matcha-tabs[inactivetype=alpha][inactivecolor=light-blue] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(255, 255, 255, 0.2);
}
.theme-default-light matcha-tabs[inactivetype=alpha][inactivecolor=cyan] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-light matcha-tabs[inactivetype=alpha][inactivecolor=cyan] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  color: #00bcd4;
  background: rgba(0, 188, 212, 0.2);
  box-shadow: 0 0 0 0px;
}
.theme-default-light matcha-tabs[inactivetype=alpha][inactivecolor=cyan] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-light matcha-tabs[inactivetype=alpha][inactivecolor=cyan] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(255, 255, 255, 0.2);
}
.theme-default-light matcha-tabs[inactivetype=alpha][inactivecolor=teal] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-light matcha-tabs[inactivetype=alpha][inactivecolor=teal] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  color: #009688;
  background: rgba(0, 150, 136, 0.2);
  box-shadow: 0 0 0 0px;
}
.theme-default-light matcha-tabs[inactivetype=alpha][inactivecolor=teal] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-light matcha-tabs[inactivetype=alpha][inactivecolor=teal] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(255, 255, 255, 0.2);
}
.theme-default-light matcha-tabs[inactivetype=alpha][inactivecolor=green] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-light matcha-tabs[inactivetype=alpha][inactivecolor=green] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  color: #119046;
  background: rgba(17, 144, 70, 0.2);
  box-shadow: 0 0 0 0px;
}
.theme-default-light matcha-tabs[inactivetype=alpha][inactivecolor=green] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-light matcha-tabs[inactivetype=alpha][inactivecolor=green] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(255, 255, 255, 0.2);
}
.theme-default-light matcha-tabs[inactivetype=alpha][inactivecolor=light-green] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-light matcha-tabs[inactivetype=alpha][inactivecolor=light-green] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  color: #6EDA2C;
  background: rgba(110, 218, 44, 0.2);
  box-shadow: 0 0 0 0px;
}
.theme-default-light matcha-tabs[inactivetype=alpha][inactivecolor=light-green] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-light matcha-tabs[inactivetype=alpha][inactivecolor=light-green] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(0, 0, 0, 0.2);
}
.theme-default-light matcha-tabs[inactivetype=alpha][inactivecolor=lime] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-light matcha-tabs[inactivetype=alpha][inactivecolor=lime] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  color: #86bd00;
  background: rgba(134, 189, 0, 0.2);
  box-shadow: 0 0 0 0px;
}
.theme-default-light matcha-tabs[inactivetype=alpha][inactivecolor=lime] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-light matcha-tabs[inactivetype=alpha][inactivecolor=lime] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(255, 255, 255, 0.2);
}
.theme-default-light matcha-tabs[inactivetype=alpha][inactivecolor=yellow] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-light matcha-tabs[inactivetype=alpha][inactivecolor=yellow] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  color: #e8c300;
  background: rgba(232, 195, 0, 0.2);
  box-shadow: 0 0 0 0px;
}
.theme-default-light matcha-tabs[inactivetype=alpha][inactivecolor=yellow] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-light matcha-tabs[inactivetype=alpha][inactivecolor=yellow] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(0, 0, 0, 0.2);
}
.theme-default-light matcha-tabs[inactivetype=alpha][inactivecolor=amber] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-light matcha-tabs[inactivetype=alpha][inactivecolor=amber] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  color: #faa61a;
  background: rgba(250, 166, 26, 0.2);
  box-shadow: 0 0 0 0px;
}
.theme-default-light matcha-tabs[inactivetype=alpha][inactivecolor=amber] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-light matcha-tabs[inactivetype=alpha][inactivecolor=amber] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(0, 0, 0, 0.2);
}
.theme-default-light matcha-tabs[inactivetype=alpha][inactivecolor=orange] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-light matcha-tabs[inactivetype=alpha][inactivecolor=orange] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  color: #f77814;
  background: rgba(247, 120, 20, 0.2);
  box-shadow: 0 0 0 0px;
}
.theme-default-light matcha-tabs[inactivetype=alpha][inactivecolor=orange] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-light matcha-tabs[inactivetype=alpha][inactivecolor=orange] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(0, 0, 0, 0.2);
}
.theme-default-light matcha-tabs[inactivetype=alpha][inactivecolor=deep-orange] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-light matcha-tabs[inactivetype=alpha][inactivecolor=deep-orange] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  color: #ff5722;
  background: rgba(255, 87, 34, 0.2);
  box-shadow: 0 0 0 0px;
}
.theme-default-light matcha-tabs[inactivetype=alpha][inactivecolor=deep-orange] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-light matcha-tabs[inactivetype=alpha][inactivecolor=deep-orange] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(255, 255, 255, 0.2);
}
.theme-default-light matcha-tabs[inactivetype=alpha][inactivecolor=brown] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-light matcha-tabs[inactivetype=alpha][inactivecolor=brown] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  color: #795548;
  background: rgba(121, 85, 72, 0.2);
  box-shadow: 0 0 0 0px;
}
.theme-default-light matcha-tabs[inactivetype=alpha][inactivecolor=brown] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-light matcha-tabs[inactivetype=alpha][inactivecolor=brown] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(255, 255, 255, 0.2);
}
.theme-default-light matcha-tabs[inactivetype=alpha][inactivecolor=grey] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-light matcha-tabs[inactivetype=alpha][inactivecolor=grey] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  color: #91A0AA;
  background: rgba(145, 160, 170, 0.2);
  box-shadow: 0 0 0 0px;
}
.theme-default-light matcha-tabs[inactivetype=alpha][inactivecolor=grey] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-light matcha-tabs[inactivetype=alpha][inactivecolor=grey] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(255, 255, 255, 0.2);
}
.theme-default-light matcha-tabs[inactivetype=alpha][inactivecolor=blue-grey] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-light matcha-tabs[inactivetype=alpha][inactivecolor=blue-grey] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  color: #7E8E95;
  background: rgba(126, 142, 149, 0.2);
  box-shadow: 0 0 0 0px;
}
.theme-default-light matcha-tabs[inactivetype=alpha][inactivecolor=blue-grey] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-light matcha-tabs[inactivetype=alpha][inactivecolor=blue-grey] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(255, 255, 255, 0.2);
}
.theme-default-light matcha-tabs[inactivetype=alpha][inactivecolor=primary] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-light matcha-tabs[inactivetype=alpha][inactivecolor=primary] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  color: #2B363B;
  background: rgba(43, 54, 59, 0.2);
  box-shadow: 0 0 0 0px;
}
.theme-default-light matcha-tabs[inactivetype=alpha][inactivecolor=primary] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-light matcha-tabs[inactivetype=alpha][inactivecolor=primary] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(255, 255, 255, 0.2);
}
.theme-default-light matcha-tabs[inactivetype=alpha][inactivecolor=accent] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-light matcha-tabs[inactivetype=alpha][inactivecolor=accent] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  color: #1e5bda;
  background: rgba(30, 91, 218, 0.2);
  box-shadow: 0 0 0 0px;
}
.theme-default-light matcha-tabs[inactivetype=alpha][inactivecolor=accent] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-light matcha-tabs[inactivetype=alpha][inactivecolor=accent] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(255, 255, 255, 0.2);
}
.theme-default-light matcha-tabs[inactivetype=alpha][inactivecolor=warn] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-light matcha-tabs[inactivetype=alpha][inactivecolor=warn] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  color: #d31818;
  background: rgba(211, 24, 24, 0.2);
  box-shadow: 0 0 0 0px;
}
.theme-default-light matcha-tabs[inactivetype=alpha][inactivecolor=warn] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-light matcha-tabs[inactivetype=alpha][inactivecolor=warn] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(255, 255, 255, 0.2);
}
.theme-default-light matcha-tabs[inactivetype=alpha][inactivecolor=disabled] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-light matcha-tabs[inactivetype=alpha][inactivecolor=disabled] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  color: #E2E7E9;
  background: rgba(226, 231, 233, 0.5);
  box-shadow: 0 0 0 0px;
}
.theme-default-light matcha-tabs[inactivetype=alpha][inactivecolor=disabled] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-light matcha-tabs[inactivetype=alpha][inactivecolor=disabled] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(226, 231, 233, 0.5);
}
.theme-default-light matcha-tabs[inactivetype=alpha][disabled] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-light matcha-tabs[inactivetype=alpha][disabled] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]), .theme-default-light matcha-tabs[inactivetype=alpha][disabled]:not([disabled=false]) .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-light matcha-tabs[inactivetype=alpha][disabled]:not([disabled=false]) .button-group matcha-tab-item a[matcha-button]:not([active-item=true]), .theme-default-light matcha-tabs[inactivetype=alpha][disabled=true] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-light matcha-tabs[inactivetype=alpha][disabled=true] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  background: rgba(226, 231, 233, 0.5);
  color: #E2E7E9;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-light matcha-tabs[inactivetype=link][inactivecolor=red] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-light matcha-tabs[inactivetype=link][inactivecolor=red] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  background: transparent;
  color: #e53a3a;
  box-shadow: 0 0 0 0px;
}
.theme-default-light matcha-tabs[inactivetype=link][inactivecolor=red] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-light matcha-tabs[inactivetype=link][inactivecolor=red] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(229, 58, 58, 0.2);
}
.theme-default-light matcha-tabs[inactivetype=link][inactivecolor=pink] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-light matcha-tabs[inactivetype=link][inactivecolor=pink] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  background: transparent;
  color: #e91e63;
  box-shadow: 0 0 0 0px;
}
.theme-default-light matcha-tabs[inactivetype=link][inactivecolor=pink] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-light matcha-tabs[inactivetype=link][inactivecolor=pink] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(233, 30, 99, 0.2);
}
.theme-default-light matcha-tabs[inactivetype=link][inactivecolor=purple] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-light matcha-tabs[inactivetype=link][inactivecolor=purple] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  background: transparent;
  color: #9c27b0;
  box-shadow: 0 0 0 0px;
}
.theme-default-light matcha-tabs[inactivetype=link][inactivecolor=purple] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-light matcha-tabs[inactivetype=link][inactivecolor=purple] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(156, 39, 176, 0.2);
}
.theme-default-light matcha-tabs[inactivetype=link][inactivecolor=deep-purple] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-light matcha-tabs[inactivetype=link][inactivecolor=deep-purple] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  background: transparent;
  color: #673ab7;
  box-shadow: 0 0 0 0px;
}
.theme-default-light matcha-tabs[inactivetype=link][inactivecolor=deep-purple] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-light matcha-tabs[inactivetype=link][inactivecolor=deep-purple] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(103, 58, 183, 0.2);
}
.theme-default-light matcha-tabs[inactivetype=link][inactivecolor=indigo] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-light matcha-tabs[inactivetype=link][inactivecolor=indigo] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  background: transparent;
  color: #3f51b5;
  box-shadow: 0 0 0 0px;
}
.theme-default-light matcha-tabs[inactivetype=link][inactivecolor=indigo] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-light matcha-tabs[inactivetype=link][inactivecolor=indigo] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(63, 81, 181, 0.2);
}
.theme-default-light matcha-tabs[inactivetype=link][inactivecolor=blue] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-light matcha-tabs[inactivetype=link][inactivecolor=blue] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  background: transparent;
  color: #1e5bda;
  box-shadow: 0 0 0 0px;
}
.theme-default-light matcha-tabs[inactivetype=link][inactivecolor=blue] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-light matcha-tabs[inactivetype=link][inactivecolor=blue] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(30, 91, 218, 0.2);
}
.theme-default-light matcha-tabs[inactivetype=link][inactivecolor=light-blue] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-light matcha-tabs[inactivetype=link][inactivecolor=light-blue] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  background: transparent;
  color: #03a9f4;
  box-shadow: 0 0 0 0px;
}
.theme-default-light matcha-tabs[inactivetype=link][inactivecolor=light-blue] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-light matcha-tabs[inactivetype=link][inactivecolor=light-blue] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(3, 169, 244, 0.2);
}
.theme-default-light matcha-tabs[inactivetype=link][inactivecolor=cyan] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-light matcha-tabs[inactivetype=link][inactivecolor=cyan] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  background: transparent;
  color: #00bcd4;
  box-shadow: 0 0 0 0px;
}
.theme-default-light matcha-tabs[inactivetype=link][inactivecolor=cyan] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-light matcha-tabs[inactivetype=link][inactivecolor=cyan] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(0, 188, 212, 0.2);
}
.theme-default-light matcha-tabs[inactivetype=link][inactivecolor=teal] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-light matcha-tabs[inactivetype=link][inactivecolor=teal] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  background: transparent;
  color: #009688;
  box-shadow: 0 0 0 0px;
}
.theme-default-light matcha-tabs[inactivetype=link][inactivecolor=teal] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-light matcha-tabs[inactivetype=link][inactivecolor=teal] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(0, 150, 136, 0.2);
}
.theme-default-light matcha-tabs[inactivetype=link][inactivecolor=green] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-light matcha-tabs[inactivetype=link][inactivecolor=green] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  background: transparent;
  color: #119046;
  box-shadow: 0 0 0 0px;
}
.theme-default-light matcha-tabs[inactivetype=link][inactivecolor=green] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-light matcha-tabs[inactivetype=link][inactivecolor=green] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(17, 144, 70, 0.2);
}
.theme-default-light matcha-tabs[inactivetype=link][inactivecolor=light-green] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-light matcha-tabs[inactivetype=link][inactivecolor=light-green] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  background: transparent;
  color: #6EDA2C;
  box-shadow: 0 0 0 0px;
}
.theme-default-light matcha-tabs[inactivetype=link][inactivecolor=light-green] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-light matcha-tabs[inactivetype=link][inactivecolor=light-green] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(110, 218, 44, 0.2);
}
.theme-default-light matcha-tabs[inactivetype=link][inactivecolor=lime] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-light matcha-tabs[inactivetype=link][inactivecolor=lime] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  background: transparent;
  color: #86bd00;
  box-shadow: 0 0 0 0px;
}
.theme-default-light matcha-tabs[inactivetype=link][inactivecolor=lime] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-light matcha-tabs[inactivetype=link][inactivecolor=lime] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(134, 189, 0, 0.2);
}
.theme-default-light matcha-tabs[inactivetype=link][inactivecolor=yellow] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-light matcha-tabs[inactivetype=link][inactivecolor=yellow] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  background: transparent;
  color: #e8c300;
  box-shadow: 0 0 0 0px;
}
.theme-default-light matcha-tabs[inactivetype=link][inactivecolor=yellow] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-light matcha-tabs[inactivetype=link][inactivecolor=yellow] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(232, 195, 0, 0.2);
}
.theme-default-light matcha-tabs[inactivetype=link][inactivecolor=amber] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-light matcha-tabs[inactivetype=link][inactivecolor=amber] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  background: transparent;
  color: #faa61a;
  box-shadow: 0 0 0 0px;
}
.theme-default-light matcha-tabs[inactivetype=link][inactivecolor=amber] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-light matcha-tabs[inactivetype=link][inactivecolor=amber] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(250, 166, 26, 0.2);
}
.theme-default-light matcha-tabs[inactivetype=link][inactivecolor=orange] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-light matcha-tabs[inactivetype=link][inactivecolor=orange] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  background: transparent;
  color: #f77814;
  box-shadow: 0 0 0 0px;
}
.theme-default-light matcha-tabs[inactivetype=link][inactivecolor=orange] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-light matcha-tabs[inactivetype=link][inactivecolor=orange] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(247, 120, 20, 0.2);
}
.theme-default-light matcha-tabs[inactivetype=link][inactivecolor=deep-orange] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-light matcha-tabs[inactivetype=link][inactivecolor=deep-orange] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  background: transparent;
  color: #ff5722;
  box-shadow: 0 0 0 0px;
}
.theme-default-light matcha-tabs[inactivetype=link][inactivecolor=deep-orange] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-light matcha-tabs[inactivetype=link][inactivecolor=deep-orange] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(255, 87, 34, 0.2);
}
.theme-default-light matcha-tabs[inactivetype=link][inactivecolor=brown] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-light matcha-tabs[inactivetype=link][inactivecolor=brown] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  background: transparent;
  color: #795548;
  box-shadow: 0 0 0 0px;
}
.theme-default-light matcha-tabs[inactivetype=link][inactivecolor=brown] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-light matcha-tabs[inactivetype=link][inactivecolor=brown] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(121, 85, 72, 0.2);
}
.theme-default-light matcha-tabs[inactivetype=link][inactivecolor=grey] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-light matcha-tabs[inactivetype=link][inactivecolor=grey] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  background: transparent;
  color: #91A0AA;
  box-shadow: 0 0 0 0px;
}
.theme-default-light matcha-tabs[inactivetype=link][inactivecolor=grey] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-light matcha-tabs[inactivetype=link][inactivecolor=grey] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(145, 160, 170, 0.2);
}
.theme-default-light matcha-tabs[inactivetype=link][inactivecolor=blue-grey] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-light matcha-tabs[inactivetype=link][inactivecolor=blue-grey] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  background: transparent;
  color: #7E8E95;
  box-shadow: 0 0 0 0px;
}
.theme-default-light matcha-tabs[inactivetype=link][inactivecolor=blue-grey] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-light matcha-tabs[inactivetype=link][inactivecolor=blue-grey] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(126, 142, 149, 0.2);
}
.theme-default-light matcha-tabs[inactivetype=link][inactivecolor=primary] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-light matcha-tabs[inactivetype=link][inactivecolor=primary] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  background: transparent;
  color: #2B363B;
  box-shadow: 0 0 0 0px;
}
.theme-default-light matcha-tabs[inactivetype=link][inactivecolor=primary] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-light matcha-tabs[inactivetype=link][inactivecolor=primary] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(43, 54, 59, 0.2);
}
.theme-default-light matcha-tabs[inactivetype=link][inactivecolor=accent] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-light matcha-tabs[inactivetype=link][inactivecolor=accent] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  background: transparent;
  color: #1e5bda;
  box-shadow: 0 0 0 0px;
}
.theme-default-light matcha-tabs[inactivetype=link][inactivecolor=accent] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-light matcha-tabs[inactivetype=link][inactivecolor=accent] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(30, 91, 218, 0.2);
}
.theme-default-light matcha-tabs[inactivetype=link][inactivecolor=warn] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-light matcha-tabs[inactivetype=link][inactivecolor=warn] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  background: transparent;
  color: #d31818;
  box-shadow: 0 0 0 0px;
}
.theme-default-light matcha-tabs[inactivetype=link][inactivecolor=warn] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-light matcha-tabs[inactivetype=link][inactivecolor=warn] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(211, 24, 24, 0.2);
}
.theme-default-light matcha-tabs[inactivetype=link][inactivecolor=disabled] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-light matcha-tabs[inactivetype=link][inactivecolor=disabled] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  background: transparent;
  color: #E2E7E9;
  box-shadow: 0 0 0 0px;
}
.theme-default-light matcha-tabs[inactivetype=link][inactivecolor=disabled] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-light matcha-tabs[inactivetype=link][inactivecolor=disabled] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(226, 231, 233, 0.5);
}
.theme-default-light matcha-tabs[inactivetype=link][disabled] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-light matcha-tabs[inactivetype=link][disabled] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]), .theme-default-light matcha-tabs[inactivetype=link][disabled]:not([disabled=false]) .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-light matcha-tabs[inactivetype=link][disabled]:not([disabled=false]) .button-group matcha-tab-item a[matcha-button]:not([active-item=true]), .theme-default-light matcha-tabs[inactivetype=link][disabled=true] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-light matcha-tabs[inactivetype=link][disabled=true] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  background: transparent;
  color: #E2E7E9;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-light matcha-tabs[disabled] .button-group matcha-tab-item button[matcha-button][active-item=true][outline], .theme-default-light matcha-tabs[disabled] .button-group matcha-tab-item button[matcha-button][active-item=true][outline]:not([outline=false]), .theme-default-light matcha-tabs[disabled] .button-group matcha-tab-item button[matcha-button][active-item=true][outline=true],
.theme-default-light matcha-tabs[disabled] .button-group matcha-tab-item a[matcha-button][active-item=true][outline],
.theme-default-light matcha-tabs[disabled] .button-group matcha-tab-item a[matcha-button][active-item=true][outline]:not([outline=false]),
.theme-default-light matcha-tabs[disabled] .button-group matcha-tab-item a[matcha-button][active-item=true][outline=true], .theme-default-light matcha-tabs[disabled]:not([disabled=false]) .button-group matcha-tab-item button[matcha-button][active-item=true][outline], .theme-default-light matcha-tabs[disabled]:not([disabled=false]) .button-group matcha-tab-item button[matcha-button][active-item=true][outline]:not([outline=false]), .theme-default-light matcha-tabs[disabled]:not([disabled=false]) .button-group matcha-tab-item button[matcha-button][active-item=true][outline=true],
.theme-default-light matcha-tabs[disabled]:not([disabled=false]) .button-group matcha-tab-item a[matcha-button][active-item=true][outline],
.theme-default-light matcha-tabs[disabled]:not([disabled=false]) .button-group matcha-tab-item a[matcha-button][active-item=true][outline]:not([outline=false]),
.theme-default-light matcha-tabs[disabled]:not([disabled=false]) .button-group matcha-tab-item a[matcha-button][active-item=true][outline=true], .theme-default-light matcha-tabs[disabled=true] .button-group matcha-tab-item button[matcha-button][active-item=true][outline], .theme-default-light matcha-tabs[disabled=true] .button-group matcha-tab-item button[matcha-button][active-item=true][outline]:not([outline=false]), .theme-default-light matcha-tabs[disabled=true] .button-group matcha-tab-item button[matcha-button][active-item=true][outline=true],
.theme-default-light matcha-tabs[disabled=true] .button-group matcha-tab-item a[matcha-button][active-item=true][outline],
.theme-default-light matcha-tabs[disabled=true] .button-group matcha-tab-item a[matcha-button][active-item=true][outline]:not([outline=false]),
.theme-default-light matcha-tabs[disabled=true] .button-group matcha-tab-item a[matcha-button][active-item=true][outline=true] {
  background: transparent;
  color: #E2E7E9;
  box-shadow: 0 0 0 2px inset;
  pointer-events: none;
}
.theme-default-light matcha-tabs[disabled] .button-group matcha-tab-item button[matcha-button][active-item=true][basic], .theme-default-light matcha-tabs[disabled] .button-group matcha-tab-item button[matcha-button][active-item=true][basic]:not([basic=false]), .theme-default-light matcha-tabs[disabled] .button-group matcha-tab-item button[matcha-button][active-item=true][basic=true],
.theme-default-light matcha-tabs[disabled] .button-group matcha-tab-item a[matcha-button][active-item=true][basic],
.theme-default-light matcha-tabs[disabled] .button-group matcha-tab-item a[matcha-button][active-item=true][basic]:not([basic=false]),
.theme-default-light matcha-tabs[disabled] .button-group matcha-tab-item a[matcha-button][active-item=true][basic=true], .theme-default-light matcha-tabs[disabled]:not([disabled=false]) .button-group matcha-tab-item button[matcha-button][active-item=true][basic], .theme-default-light matcha-tabs[disabled]:not([disabled=false]) .button-group matcha-tab-item button[matcha-button][active-item=true][basic]:not([basic=false]), .theme-default-light matcha-tabs[disabled]:not([disabled=false]) .button-group matcha-tab-item button[matcha-button][active-item=true][basic=true],
.theme-default-light matcha-tabs[disabled]:not([disabled=false]) .button-group matcha-tab-item a[matcha-button][active-item=true][basic],
.theme-default-light matcha-tabs[disabled]:not([disabled=false]) .button-group matcha-tab-item a[matcha-button][active-item=true][basic]:not([basic=false]),
.theme-default-light matcha-tabs[disabled]:not([disabled=false]) .button-group matcha-tab-item a[matcha-button][active-item=true][basic=true], .theme-default-light matcha-tabs[disabled=true] .button-group matcha-tab-item button[matcha-button][active-item=true][basic], .theme-default-light matcha-tabs[disabled=true] .button-group matcha-tab-item button[matcha-button][active-item=true][basic]:not([basic=false]), .theme-default-light matcha-tabs[disabled=true] .button-group matcha-tab-item button[matcha-button][active-item=true][basic=true],
.theme-default-light matcha-tabs[disabled=true] .button-group matcha-tab-item a[matcha-button][active-item=true][basic],
.theme-default-light matcha-tabs[disabled=true] .button-group matcha-tab-item a[matcha-button][active-item=true][basic]:not([basic=false]),
.theme-default-light matcha-tabs[disabled=true] .button-group matcha-tab-item a[matcha-button][active-item=true][basic=true] {
  background: #FFFFFF;
  color: #E2E7E9;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-light matcha-tabs[disabled] .button-group matcha-tab-item button[matcha-button][active-item=true][alpha], .theme-default-light matcha-tabs[disabled] .button-group matcha-tab-item button[matcha-button][active-item=true][alpha]:not([alpha=false]), .theme-default-light matcha-tabs[disabled] .button-group matcha-tab-item button[matcha-button][active-item=true][alpha=true],
.theme-default-light matcha-tabs[disabled] .button-group matcha-tab-item a[matcha-button][active-item=true][alpha],
.theme-default-light matcha-tabs[disabled] .button-group matcha-tab-item a[matcha-button][active-item=true][alpha]:not([alpha=false]),
.theme-default-light matcha-tabs[disabled] .button-group matcha-tab-item a[matcha-button][active-item=true][alpha=true], .theme-default-light matcha-tabs[disabled]:not([disabled=false]) .button-group matcha-tab-item button[matcha-button][active-item=true][alpha], .theme-default-light matcha-tabs[disabled]:not([disabled=false]) .button-group matcha-tab-item button[matcha-button][active-item=true][alpha]:not([alpha=false]), .theme-default-light matcha-tabs[disabled]:not([disabled=false]) .button-group matcha-tab-item button[matcha-button][active-item=true][alpha=true],
.theme-default-light matcha-tabs[disabled]:not([disabled=false]) .button-group matcha-tab-item a[matcha-button][active-item=true][alpha],
.theme-default-light matcha-tabs[disabled]:not([disabled=false]) .button-group matcha-tab-item a[matcha-button][active-item=true][alpha]:not([alpha=false]),
.theme-default-light matcha-tabs[disabled]:not([disabled=false]) .button-group matcha-tab-item a[matcha-button][active-item=true][alpha=true], .theme-default-light matcha-tabs[disabled=true] .button-group matcha-tab-item button[matcha-button][active-item=true][alpha], .theme-default-light matcha-tabs[disabled=true] .button-group matcha-tab-item button[matcha-button][active-item=true][alpha]:not([alpha=false]), .theme-default-light matcha-tabs[disabled=true] .button-group matcha-tab-item button[matcha-button][active-item=true][alpha=true],
.theme-default-light matcha-tabs[disabled=true] .button-group matcha-tab-item a[matcha-button][active-item=true][alpha],
.theme-default-light matcha-tabs[disabled=true] .button-group matcha-tab-item a[matcha-button][active-item=true][alpha]:not([alpha=false]),
.theme-default-light matcha-tabs[disabled=true] .button-group matcha-tab-item a[matcha-button][active-item=true][alpha=true] {
  background: rgba(226, 231, 233, 0.5);
  color: #E2E7E9;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-light matcha-tabs[disabled] .button-group matcha-tab-item button[matcha-button][active-item=true][link], .theme-default-light matcha-tabs[disabled] .button-group matcha-tab-item button[matcha-button][active-item=true][link]:not([link=false]), .theme-default-light matcha-tabs[disabled] .button-group matcha-tab-item button[matcha-button][active-item=true][link=true],
.theme-default-light matcha-tabs[disabled] .button-group matcha-tab-item a[matcha-button][active-item=true][link],
.theme-default-light matcha-tabs[disabled] .button-group matcha-tab-item a[matcha-button][active-item=true][link]:not([link=false]),
.theme-default-light matcha-tabs[disabled] .button-group matcha-tab-item a[matcha-button][active-item=true][link=true], .theme-default-light matcha-tabs[disabled]:not([disabled=false]) .button-group matcha-tab-item button[matcha-button][active-item=true][link], .theme-default-light matcha-tabs[disabled]:not([disabled=false]) .button-group matcha-tab-item button[matcha-button][active-item=true][link]:not([link=false]), .theme-default-light matcha-tabs[disabled]:not([disabled=false]) .button-group matcha-tab-item button[matcha-button][active-item=true][link=true],
.theme-default-light matcha-tabs[disabled]:not([disabled=false]) .button-group matcha-tab-item a[matcha-button][active-item=true][link],
.theme-default-light matcha-tabs[disabled]:not([disabled=false]) .button-group matcha-tab-item a[matcha-button][active-item=true][link]:not([link=false]),
.theme-default-light matcha-tabs[disabled]:not([disabled=false]) .button-group matcha-tab-item a[matcha-button][active-item=true][link=true], .theme-default-light matcha-tabs[disabled=true] .button-group matcha-tab-item button[matcha-button][active-item=true][link], .theme-default-light matcha-tabs[disabled=true] .button-group matcha-tab-item button[matcha-button][active-item=true][link]:not([link=false]), .theme-default-light matcha-tabs[disabled=true] .button-group matcha-tab-item button[matcha-button][active-item=true][link=true],
.theme-default-light matcha-tabs[disabled=true] .button-group matcha-tab-item a[matcha-button][active-item=true][link],
.theme-default-light matcha-tabs[disabled=true] .button-group matcha-tab-item a[matcha-button][active-item=true][link]:not([link=false]),
.theme-default-light matcha-tabs[disabled=true] .button-group matcha-tab-item a[matcha-button][active-item=true][link=true] {
  background: transparent;
  color: #E2E7E9;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-light matcha-modal {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.theme-default-light matcha-modal[size=tiny] .matcha-modal {
  width: 100%;
  max-width: 20rem;
}
.theme-default-light matcha-modal[size=small] .matcha-modal {
  width: 100%;
  max-width: 25rem;
}
.theme-default-light matcha-modal[size=medium] .matcha-modal {
  width: 100%;
  max-width: 30rem;
}
.theme-default-light matcha-modal[size=large] .matcha-modal {
  width: 100%;
  max-width: 35rem;
}
.theme-default-light matcha-modal[size=huge] .matcha-modal {
  width: 100%;
  max-width: 40rem;
}
@media screen and (max-width: 599px) {
  .theme-default-light matcha-modal[size-xs=tiny] .matcha-modal {
    width: 100%;
    max-width: 20rem;
  }
  .theme-default-light matcha-modal[size-xs=small] .matcha-modal {
    width: 100%;
    max-width: 25rem;
  }
  .theme-default-light matcha-modal[size-xs=medium] .matcha-modal {
    width: 100%;
    max-width: 30rem;
  }
  .theme-default-light matcha-modal[size-xs=large] .matcha-modal {
    width: 100%;
    max-width: 35rem;
  }
  .theme-default-light matcha-modal[size-xs=huge] .matcha-modal {
    width: 100%;
    max-width: 40rem;
  }
}
@media screen and (min-width: 600px) {
  .theme-default-light matcha-modal[size-sm=tiny] .matcha-modal {
    width: 100%;
    max-width: 20rem;
  }
  .theme-default-light matcha-modal[size-sm=small] .matcha-modal {
    width: 100%;
    max-width: 25rem;
  }
  .theme-default-light matcha-modal[size-sm=medium] .matcha-modal {
    width: 100%;
    max-width: 30rem;
  }
  .theme-default-light matcha-modal[size-sm=large] .matcha-modal {
    width: 100%;
    max-width: 35rem;
  }
  .theme-default-light matcha-modal[size-sm=huge] .matcha-modal {
    width: 100%;
    max-width: 40rem;
  }
}
@media screen and (min-width: 1024px) {
  .theme-default-light matcha-modal[size-md=tiny] .matcha-modal {
    width: 100%;
    max-width: 20rem;
  }
  .theme-default-light matcha-modal[size-md=small] .matcha-modal {
    width: 100%;
    max-width: 25rem;
  }
  .theme-default-light matcha-modal[size-md=medium] .matcha-modal {
    width: 100%;
    max-width: 30rem;
  }
  .theme-default-light matcha-modal[size-md=large] .matcha-modal {
    width: 100%;
    max-width: 35rem;
  }
  .theme-default-light matcha-modal[size-md=huge] .matcha-modal {
    width: 100%;
    max-width: 40rem;
  }
}
@media screen and (min-width: 1440px) {
  .theme-default-light matcha-modal[size-lg=tiny] .matcha-modal {
    width: 100%;
    max-width: 20rem;
  }
  .theme-default-light matcha-modal[size-lg=small] .matcha-modal {
    width: 100%;
    max-width: 25rem;
  }
  .theme-default-light matcha-modal[size-lg=medium] .matcha-modal {
    width: 100%;
    max-width: 30rem;
  }
  .theme-default-light matcha-modal[size-lg=large] .matcha-modal {
    width: 100%;
    max-width: 35rem;
  }
  .theme-default-light matcha-modal[size-lg=huge] .matcha-modal {
    width: 100%;
    max-width: 40rem;
  }
}
@media screen and (min-width: 1920px) {
  .theme-default-light matcha-modal[size-xl=tiny] .matcha-modal {
    width: 100%;
    max-width: 20rem;
  }
  .theme-default-light matcha-modal[size-xl=small] .matcha-modal {
    width: 100%;
    max-width: 25rem;
  }
  .theme-default-light matcha-modal[size-xl=medium] .matcha-modal {
    width: 100%;
    max-width: 30rem;
  }
  .theme-default-light matcha-modal[size-xl=large] .matcha-modal {
    width: 100%;
    max-width: 35rem;
  }
  .theme-default-light matcha-modal[size-xl=huge] .matcha-modal {
    width: 100%;
    max-width: 40rem;
  }
}
.theme-default-light .matcha-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #21282C;
  backdrop-filter: blur(6px);
  mix-blend-mode: multiply;
  z-index: 998;
}
.theme-default-light .matcha-overlay-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  pointer-events: none;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.theme-default-light .matcha-overlay-container > * {
  pointer-events: auto;
}
.theme-default-light .skeleton-animated-background {
  background: linear-gradient(to right, #E2E7E9, rgba(255, 255, 255, 0.0666666667), #E2E7E9);
  background-size: 200% 100%;
  animation: gradientAnimation 1s linear infinite;
}
@keyframes gradientAnimation {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: -100% 0;
  }
}
.theme-default-light matcha-radio:not([color]) input[type=radio] {
  border-color: #7E8E95;
}
.theme-default-light matcha-radio:not([color]) input[type=radio]:active {
  border-color: #1e5bda;
}
.theme-default-light matcha-radio:not([color]) input[type=radio]:checked {
  border-color: #1e5bda;
}
.theme-default-light matcha-radio:not([color]) input[type=radio]:checked::after {
  background-color: #1e5bda;
}
.theme-default-light matcha-radio:not([color]) .matcha-radio-container:hover {
  background-color: rgba(30, 91, 218, 0.1);
}
.theme-default-light matcha-radio:not([color]) .matcha-radio-container .ripple {
  background: rgba(30, 91, 218, 0.2) !important;
}
.theme-default-light matcha-radio[color] input[type=radio] {
  border-color: #7E8E95;
}
.theme-default-light matcha-radio[color=red] input[type=radio]:active {
  border-color: #e53a3a;
}
.theme-default-light matcha-radio[color=red] input[type=radio]:checked {
  border-color: #e53a3a;
}
.theme-default-light matcha-radio[color=red] input[type=radio]:checked::after {
  background-color: #e53a3a;
}
.theme-default-light matcha-radio[color=red] .matcha-radio-container:hover {
  background-color: rgba(229, 58, 58, 0.1);
}
.theme-default-light matcha-radio[color=red] .matcha-radio-container .ripple {
  background: rgba(255, 255, 255, 0.2) !important;
}
.theme-default-light matcha-radio[color=pink] input[type=radio]:active {
  border-color: #e91e63;
}
.theme-default-light matcha-radio[color=pink] input[type=radio]:checked {
  border-color: #e91e63;
}
.theme-default-light matcha-radio[color=pink] input[type=radio]:checked::after {
  background-color: #e91e63;
}
.theme-default-light matcha-radio[color=pink] .matcha-radio-container:hover {
  background-color: rgba(233, 30, 99, 0.1);
}
.theme-default-light matcha-radio[color=pink] .matcha-radio-container .ripple {
  background: rgba(255, 255, 255, 0.2) !important;
}
.theme-default-light matcha-radio[color=purple] input[type=radio]:active {
  border-color: #9c27b0;
}
.theme-default-light matcha-radio[color=purple] input[type=radio]:checked {
  border-color: #9c27b0;
}
.theme-default-light matcha-radio[color=purple] input[type=radio]:checked::after {
  background-color: #9c27b0;
}
.theme-default-light matcha-radio[color=purple] .matcha-radio-container:hover {
  background-color: rgba(156, 39, 176, 0.1);
}
.theme-default-light matcha-radio[color=purple] .matcha-radio-container .ripple {
  background: rgba(255, 255, 255, 0.2) !important;
}
.theme-default-light matcha-radio[color=deep-purple] input[type=radio]:active {
  border-color: #673ab7;
}
.theme-default-light matcha-radio[color=deep-purple] input[type=radio]:checked {
  border-color: #673ab7;
}
.theme-default-light matcha-radio[color=deep-purple] input[type=radio]:checked::after {
  background-color: #673ab7;
}
.theme-default-light matcha-radio[color=deep-purple] .matcha-radio-container:hover {
  background-color: rgba(103, 58, 183, 0.1);
}
.theme-default-light matcha-radio[color=deep-purple] .matcha-radio-container .ripple {
  background: rgba(255, 255, 255, 0.2) !important;
}
.theme-default-light matcha-radio[color=indigo] input[type=radio]:active {
  border-color: #3f51b5;
}
.theme-default-light matcha-radio[color=indigo] input[type=radio]:checked {
  border-color: #3f51b5;
}
.theme-default-light matcha-radio[color=indigo] input[type=radio]:checked::after {
  background-color: #3f51b5;
}
.theme-default-light matcha-radio[color=indigo] .matcha-radio-container:hover {
  background-color: rgba(63, 81, 181, 0.1);
}
.theme-default-light matcha-radio[color=indigo] .matcha-radio-container .ripple {
  background: rgba(255, 255, 255, 0.2) !important;
}
.theme-default-light matcha-radio[color=blue] input[type=radio]:active {
  border-color: #1e5bda;
}
.theme-default-light matcha-radio[color=blue] input[type=radio]:checked {
  border-color: #1e5bda;
}
.theme-default-light matcha-radio[color=blue] input[type=radio]:checked::after {
  background-color: #1e5bda;
}
.theme-default-light matcha-radio[color=blue] .matcha-radio-container:hover {
  background-color: rgba(30, 91, 218, 0.1);
}
.theme-default-light matcha-radio[color=blue] .matcha-radio-container .ripple {
  background: rgba(255, 255, 255, 0.2) !important;
}
.theme-default-light matcha-radio[color=light-blue] input[type=radio]:active {
  border-color: #03a9f4;
}
.theme-default-light matcha-radio[color=light-blue] input[type=radio]:checked {
  border-color: #03a9f4;
}
.theme-default-light matcha-radio[color=light-blue] input[type=radio]:checked::after {
  background-color: #03a9f4;
}
.theme-default-light matcha-radio[color=light-blue] .matcha-radio-container:hover {
  background-color: rgba(3, 169, 244, 0.1);
}
.theme-default-light matcha-radio[color=light-blue] .matcha-radio-container .ripple {
  background: rgba(255, 255, 255, 0.2) !important;
}
.theme-default-light matcha-radio[color=cyan] input[type=radio]:active {
  border-color: #00bcd4;
}
.theme-default-light matcha-radio[color=cyan] input[type=radio]:checked {
  border-color: #00bcd4;
}
.theme-default-light matcha-radio[color=cyan] input[type=radio]:checked::after {
  background-color: #00bcd4;
}
.theme-default-light matcha-radio[color=cyan] .matcha-radio-container:hover {
  background-color: rgba(0, 188, 212, 0.1);
}
.theme-default-light matcha-radio[color=cyan] .matcha-radio-container .ripple {
  background: rgba(255, 255, 255, 0.2) !important;
}
.theme-default-light matcha-radio[color=teal] input[type=radio]:active {
  border-color: #009688;
}
.theme-default-light matcha-radio[color=teal] input[type=radio]:checked {
  border-color: #009688;
}
.theme-default-light matcha-radio[color=teal] input[type=radio]:checked::after {
  background-color: #009688;
}
.theme-default-light matcha-radio[color=teal] .matcha-radio-container:hover {
  background-color: rgba(0, 150, 136, 0.1);
}
.theme-default-light matcha-radio[color=teal] .matcha-radio-container .ripple {
  background: rgba(255, 255, 255, 0.2) !important;
}
.theme-default-light matcha-radio[color=green] input[type=radio]:active {
  border-color: #119046;
}
.theme-default-light matcha-radio[color=green] input[type=radio]:checked {
  border-color: #119046;
}
.theme-default-light matcha-radio[color=green] input[type=radio]:checked::after {
  background-color: #119046;
}
.theme-default-light matcha-radio[color=green] .matcha-radio-container:hover {
  background-color: rgba(17, 144, 70, 0.1);
}
.theme-default-light matcha-radio[color=green] .matcha-radio-container .ripple {
  background: rgba(255, 255, 255, 0.2) !important;
}
.theme-default-light matcha-radio[color=light-green] input[type=radio]:active {
  border-color: #6EDA2C;
}
.theme-default-light matcha-radio[color=light-green] input[type=radio]:checked {
  border-color: #6EDA2C;
}
.theme-default-light matcha-radio[color=light-green] input[type=radio]:checked::after {
  background-color: #6EDA2C;
}
.theme-default-light matcha-radio[color=light-green] .matcha-radio-container:hover {
  background-color: rgba(110, 218, 44, 0.1);
}
.theme-default-light matcha-radio[color=light-green] .matcha-radio-container .ripple {
  background: rgba(0, 0, 0, 0.2) !important;
}
.theme-default-light matcha-radio[color=lime] input[type=radio]:active {
  border-color: #86bd00;
}
.theme-default-light matcha-radio[color=lime] input[type=radio]:checked {
  border-color: #86bd00;
}
.theme-default-light matcha-radio[color=lime] input[type=radio]:checked::after {
  background-color: #86bd00;
}
.theme-default-light matcha-radio[color=lime] .matcha-radio-container:hover {
  background-color: rgba(134, 189, 0, 0.1);
}
.theme-default-light matcha-radio[color=lime] .matcha-radio-container .ripple {
  background: rgba(255, 255, 255, 0.2) !important;
}
.theme-default-light matcha-radio[color=yellow] input[type=radio]:active {
  border-color: #e8c300;
}
.theme-default-light matcha-radio[color=yellow] input[type=radio]:checked {
  border-color: #e8c300;
}
.theme-default-light matcha-radio[color=yellow] input[type=radio]:checked::after {
  background-color: #e8c300;
}
.theme-default-light matcha-radio[color=yellow] .matcha-radio-container:hover {
  background-color: rgba(232, 195, 0, 0.1);
}
.theme-default-light matcha-radio[color=yellow] .matcha-radio-container .ripple {
  background: rgba(0, 0, 0, 0.2) !important;
}
.theme-default-light matcha-radio[color=amber] input[type=radio]:active {
  border-color: #faa61a;
}
.theme-default-light matcha-radio[color=amber] input[type=radio]:checked {
  border-color: #faa61a;
}
.theme-default-light matcha-radio[color=amber] input[type=radio]:checked::after {
  background-color: #faa61a;
}
.theme-default-light matcha-radio[color=amber] .matcha-radio-container:hover {
  background-color: rgba(250, 166, 26, 0.1);
}
.theme-default-light matcha-radio[color=amber] .matcha-radio-container .ripple {
  background: rgba(0, 0, 0, 0.2) !important;
}
.theme-default-light matcha-radio[color=orange] input[type=radio]:active {
  border-color: #f77814;
}
.theme-default-light matcha-radio[color=orange] input[type=radio]:checked {
  border-color: #f77814;
}
.theme-default-light matcha-radio[color=orange] input[type=radio]:checked::after {
  background-color: #f77814;
}
.theme-default-light matcha-radio[color=orange] .matcha-radio-container:hover {
  background-color: rgba(247, 120, 20, 0.1);
}
.theme-default-light matcha-radio[color=orange] .matcha-radio-container .ripple {
  background: rgba(0, 0, 0, 0.2) !important;
}
.theme-default-light matcha-radio[color=deep-orange] input[type=radio]:active {
  border-color: #ff5722;
}
.theme-default-light matcha-radio[color=deep-orange] input[type=radio]:checked {
  border-color: #ff5722;
}
.theme-default-light matcha-radio[color=deep-orange] input[type=radio]:checked::after {
  background-color: #ff5722;
}
.theme-default-light matcha-radio[color=deep-orange] .matcha-radio-container:hover {
  background-color: rgba(255, 87, 34, 0.1);
}
.theme-default-light matcha-radio[color=deep-orange] .matcha-radio-container .ripple {
  background: rgba(255, 255, 255, 0.2) !important;
}
.theme-default-light matcha-radio[color=brown] input[type=radio]:active {
  border-color: #795548;
}
.theme-default-light matcha-radio[color=brown] input[type=radio]:checked {
  border-color: #795548;
}
.theme-default-light matcha-radio[color=brown] input[type=radio]:checked::after {
  background-color: #795548;
}
.theme-default-light matcha-radio[color=brown] .matcha-radio-container:hover {
  background-color: rgba(121, 85, 72, 0.1);
}
.theme-default-light matcha-radio[color=brown] .matcha-radio-container .ripple {
  background: rgba(255, 255, 255, 0.2) !important;
}
.theme-default-light matcha-radio[color=grey] input[type=radio]:active {
  border-color: #91A0AA;
}
.theme-default-light matcha-radio[color=grey] input[type=radio]:checked {
  border-color: #91A0AA;
}
.theme-default-light matcha-radio[color=grey] input[type=radio]:checked::after {
  background-color: #91A0AA;
}
.theme-default-light matcha-radio[color=grey] .matcha-radio-container:hover {
  background-color: rgba(145, 160, 170, 0.1);
}
.theme-default-light matcha-radio[color=grey] .matcha-radio-container .ripple {
  background: rgba(255, 255, 255, 0.2) !important;
}
.theme-default-light matcha-radio[color=blue-grey] input[type=radio]:active {
  border-color: #7E8E95;
}
.theme-default-light matcha-radio[color=blue-grey] input[type=radio]:checked {
  border-color: #7E8E95;
}
.theme-default-light matcha-radio[color=blue-grey] input[type=radio]:checked::after {
  background-color: #7E8E95;
}
.theme-default-light matcha-radio[color=blue-grey] .matcha-radio-container:hover {
  background-color: rgba(126, 142, 149, 0.1);
}
.theme-default-light matcha-radio[color=blue-grey] .matcha-radio-container .ripple {
  background: rgba(255, 255, 255, 0.2) !important;
}
.theme-default-light matcha-radio[color=primary] input[type=radio]:active {
  border-color: #2B363B;
}
.theme-default-light matcha-radio[color=primary] input[type=radio]:checked {
  border-color: #2B363B;
}
.theme-default-light matcha-radio[color=primary] input[type=radio]:checked::after {
  background-color: #2B363B;
}
.theme-default-light matcha-radio[color=primary] .matcha-radio-container:hover {
  background-color: rgba(43, 54, 59, 0.1);
}
.theme-default-light matcha-radio[color=primary] .matcha-radio-container .ripple {
  background: rgba(255, 255, 255, 0.2) !important;
}
.theme-default-light matcha-radio[color=accent] input[type=radio]:active {
  border-color: #1e5bda;
}
.theme-default-light matcha-radio[color=accent] input[type=radio]:checked {
  border-color: #1e5bda;
}
.theme-default-light matcha-radio[color=accent] input[type=radio]:checked::after {
  background-color: #1e5bda;
}
.theme-default-light matcha-radio[color=accent] .matcha-radio-container:hover {
  background-color: rgba(30, 91, 218, 0.1);
}
.theme-default-light matcha-radio[color=accent] .matcha-radio-container .ripple {
  background: rgba(255, 255, 255, 0.2) !important;
}
.theme-default-light matcha-radio[color=warn] input[type=radio]:active {
  border-color: #d31818;
}
.theme-default-light matcha-radio[color=warn] input[type=radio]:checked {
  border-color: #d31818;
}
.theme-default-light matcha-radio[color=warn] input[type=radio]:checked::after {
  background-color: #d31818;
}
.theme-default-light matcha-radio[color=warn] .matcha-radio-container:hover {
  background-color: rgba(211, 24, 24, 0.1);
}
.theme-default-light matcha-radio[color=warn] .matcha-radio-container .ripple {
  background: rgba(255, 255, 255, 0.2) !important;
}
.theme-default-light matcha-radio[disabled] input[type=radio] {
  border-color: #91A0AA;
}
.theme-default-light matcha-radio .matcha-radio-label {
  color: #91A0AA;
}
.theme-default-light .matcha-avatar .matcha-avatar-icon {
  color: rgba(0, 0, 0, 0.38);
}
.theme-default-light .matcha-avatar.color-disabled {
  background-color: #E2E7E9;
  color: rgba(0, 0, 0, 0.38) !important;
}
.theme-default-light .matcha-avatar.color-disabled .matcha-avatar-icon {
  color: rgba(0, 0, 0, 0.38);
}
.theme-default-light matcha-drawer-container {
  display: block;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
  overflow: hidden;
  background-color: #F2F3F8;
  color: #21282C;
}
.theme-default-light matcha-drawer-container .matcha-drawer-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  z-index: 3;
  visibility: hidden;
  background-color: rgba(242, 243, 248, 0.5);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 400ms cubic-bezier(0.25, 0.8, 0.25, 1), visibility 400ms cubic-bezier(0.25, 0.8, 0.25, 1);
}
.theme-default-light matcha-drawer-container.matcha-drawer-container-has-open .matcha-drawer-backdrop {
  visibility: visible;
  opacity: 1;
}
.theme-default-light matcha-drawer-container .matcha-drawer-content-container {
  position: relative;
  z-index: 0;
  display: block;
  height: 100%;
  overflow: auto;
}
.theme-default-light matcha-drawer {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 10;
  outline: 0;
  box-sizing: border-box;
  overflow-y: auto;
  overflow-x: hidden;
  transform: translate3d(-100%, 0, 0);
  visibility: hidden;
  transition: transform 400ms cubic-bezier(0.25, 0.8, 0.25, 1), visibility 400ms cubic-bezier(0.25, 0.8, 0.25, 1);
  background-color: #F2F3F8;
  color: #21282C;
  box-shadow: 0 8px 10px -5px rgba(0, 0, 0, 0.2), 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12);
  pointer-events: auto;
}
.theme-default-light matcha-drawer.matcha-drawer-end {
  right: 0;
  transform: translate3d(100%, 0, 0);
}
.theme-default-light matcha-drawer.matcha-drawer-opened {
  transform: translate3d(0, 0, 0);
  visibility: visible;
}
.theme-default-light matcha-drawer.matcha-drawer-over {
  z-index: 15;
  border-right: 1px solid #E2E7E9;
}
.theme-default-light matcha-drawer.matcha-drawer-over.matcha-drawer-end {
  border-right: none;
  border-left: 1px solid #E2E7E9;
}
.theme-default-light matcha-drawer.matcha-drawer-side {
  z-index: 10;
  border-right: 1px solid #E2E7E9;
  box-shadow: none;
}
.theme-default-light matcha-drawer.matcha-drawer-side.matcha-drawer-end {
  border-right: none;
  border-left: 1px solid #E2E7E9;
}
.theme-default-light matcha-drawer.matcha-drawer-push {
  border-right: 1px solid #E2E7E9;
  box-shadow: none;
}
.theme-default-light matcha-drawer.matcha-drawer-push.matcha-drawer-end {
  border-right: none;
  border-left: 1px solid #E2E7E9;
}
.theme-default-light matcha-drawer .matcha-drawer-inner-container {
  width: 100%;
  height: 100%;
  -webkit-overflow-scrolling: touch;
  display: flex;
  flex-direction: column;
  position: relative;
  pointer-events: auto;
}
.theme-default-light matcha-drawer-content {
  position: relative;
  z-index: 1;
  display: block;
  height: 100%;
  overflow: auto;
  transition: margin 400ms cubic-bezier(0.25, 0.8, 0.25, 1);
}
.theme-default-light .matcha-autocomplete-panel {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
  z-index: 1;
  border-radius: 8px;
  max-height: 280px;
  overflow: auto;
  min-width: 160px;
  display: flex;
  flex-direction: column;
}
.theme-default-light .matcha-panel {
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-height: 280px;
  min-width: 160px;
  opacity: 0;
  transform: scale(0.95) translateY(-8px);
  transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  position: absolute;
  z-index: 1003;
}
.theme-default-light .matcha-panel.matcha-panel-open {
  opacity: 1;
  transform: scale(1) translateY(0);
}
.theme-default-light .matcha-panel:not([aria-hidden=true]) {
  opacity: 1;
  transform: scale(1) translateY(0);
}
.theme-default-light .matcha-panel.matcha-panel-top {
  transform-origin: bottom center;
}
.theme-default-light .matcha-panel.matcha-panel-bottom {
  transform-origin: top center;
}
.theme-default-light .matcha-panel-content {
  overflow-y: auto;
  flex: 1;
}
.theme-default-light .matcha-panel-content::-webkit-scrollbar {
  width: 6px;
}
.theme-default-light .matcha-panel-content::-webkit-scrollbar-track {
  background: transparent;
}
.theme-default-light .matcha-panel-content::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 3px;
}
.theme-default-light .matcha-panel-content::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.3);
}
.theme-default-light .matcha-panel:focus-within {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
  .theme-default-light .matcha-panel {
    max-height: 200px;
    min-width: 120px;
    border-radius: 6px;
  }
}
@media (prefers-color-scheme: dark) {
  .theme-default-light .matcha-panel {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.1);
  }
}
.theme-default-light .matcha-option {
  padding: 8px 12px;
  cursor: pointer;
  background: #FFFFFF;
}
.theme-default-light .matcha-option[aria-selected=true] {
  background: #F2F3F8;
}
.theme-default-light .matcha-option[disabled] {
  opacity: 0.5;
  cursor: default;
}
.theme-default-light matcha-select {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.theme-default-light .matcha-select-container {
  position: relative;
  display: inline-block;
  width: 100%;
}
.theme-default-light .matcha-select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  border: 0px solid;
  border-radius: 0px;
  background-color: transparent;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
}
.theme-default-light .matcha-select-trigger:hover {
  border-color: #b0b0b0;
}
.theme-default-light .matcha-select-trigger:focus {
  outline: none;
}
.theme-default-light .matcha-select-trigger.matcha-select-disabled {
  background-color: #f5f5f5;
  color: #9e9e9e;
  cursor: not-allowed;
  border-color: #e0e0e0;
}
.theme-default-light .matcha-select-trigger.matcha-select-disabled:hover {
  border-color: #e0e0e0;
}
.theme-default-light .matcha-select-value {
  flex: 1;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #21282C;
}
.theme-default-light .matcha-select-value.matcha-select-placeholder {
  color: #9e9e9e;
}
.theme-default-light .matcha-select-arrow {
  margin-left: 8px;
  transition: transform 0.2s ease;
  color: #666;
  font-size: 12px;
}
.theme-default-light .matcha-select-arrow.matcha-select-arrow-open {
  transform: rotate(180deg);
}
.theme-default-light .matcha-select-disabled .matcha-select-trigger {
  background-color: #f5f5f5;
  color: #9e9e9e;
  cursor: not-allowed;
  border-color: #e0e0e0;
}
.theme-default-light .matcha-select-disabled .matcha-select-trigger:hover {
  border-color: #e0e0e0;
}
.theme-default-light .matcha-select-disabled .matcha-select-arrow {
  color: #9e9e9e;
}
.theme-default-light .matcha-paginator .page-button.active.accent {
  background-color: #1e5bda !important;
  color: white !important;
  border-color: #1e5bda !important;
}
.theme-default-light .matcha-paginator .page-button.active.orange {
  background-color: #f77814 !important;
  color: white !important;
  border-color: #f77814 !important;
}
.theme-default-light .matcha-paginator .page-button.active.blue {
  background-color: #1e5bda !important;
  color: white !important;
  border-color: #1e5bda !important;
}
.theme-default-light .matcha-paginator .page-button.active.green {
  background-color: #119046 !important;
  color: white !important;
  border-color: #119046 !important;
}
.theme-default-light .matcha-paginator .page-button.active.purple {
  background-color: #9c27b0 !important;
  color: white !important;
  border-color: #9c27b0 !important;
}
.theme-default-light .matcha-paginator .page-button.active.primary {
  background-color: #2B363B !important;
  color: white !important;
  border-color: #2B363B !important;
}
.theme-default-light .matcha-paginator .page-button.active.warn {
  background-color: #d31818 !important;
  color: white !important;
  border-color: #d31818 !important;
}
.theme-default-light .matcha-paginator .page-button.active.red {
  background-color: #e53a3a !important;
  color: white !important;
  border-color: #e53a3a !important;
}
.theme-default-light .matcha-slider[data-color=accent] .selection-bar {
  background-color: #1e5bda;
}
.theme-default-light .matcha-slider[data-color=accent] .pointer {
  background-color: #1e5bda;
}
.theme-default-light .matcha-slider[data-color=accent] .pointer.focused {
  box-shadow: 0 0 0 4px #1e5bda;
}
.theme-default-light .matcha-slider[data-color=accent] .pointer:hover {
  box-shadow: 0 0 0 4px rgba(30, 91, 218, 0.24);
}
.theme-default-light .matcha-slider[data-color=accent] .pointer:active {
  box-shadow: 0 0 0 4px rgba(30, 91, 218, 0.24);
}
.theme-default-light .matcha-slider .slider-track {
  background-color: #E2E7E9;
}
.theme-default-light .matcha-slider[data-color=red] .selection-bar {
  background-color: #e53a3a;
}
.theme-default-light .matcha-slider[data-color=red] .pointer {
  background-color: #e53a3a;
}
.theme-default-light .matcha-slider[data-color=red] .pointer.focused {
  box-shadow: 0 0 0 4px #e53a3a;
}
.theme-default-light .matcha-slider[data-color=red] .pointer:hover {
  box-shadow: 0 0 0 4px rgba(229, 58, 58, 0.24);
}
.theme-default-light .matcha-slider[data-color=red] .pointer:active {
  box-shadow: 0 0 0 4px rgba(229, 58, 58, 0.24);
}
.theme-default-light .matcha-slider[data-color=pink] .selection-bar {
  background-color: #e91e63;
}
.theme-default-light .matcha-slider[data-color=pink] .pointer {
  background-color: #e91e63;
}
.theme-default-light .matcha-slider[data-color=pink] .pointer.focused {
  box-shadow: 0 0 0 4px #e91e63;
}
.theme-default-light .matcha-slider[data-color=pink] .pointer:hover {
  box-shadow: 0 0 0 4px rgba(233, 30, 99, 0.24);
}
.theme-default-light .matcha-slider[data-color=pink] .pointer:active {
  box-shadow: 0 0 0 4px rgba(233, 30, 99, 0.24);
}
.theme-default-light .matcha-slider[data-color=purple] .selection-bar {
  background-color: #9c27b0;
}
.theme-default-light .matcha-slider[data-color=purple] .pointer {
  background-color: #9c27b0;
}
.theme-default-light .matcha-slider[data-color=purple] .pointer.focused {
  box-shadow: 0 0 0 4px #9c27b0;
}
.theme-default-light .matcha-slider[data-color=purple] .pointer:hover {
  box-shadow: 0 0 0 4px rgba(156, 39, 176, 0.24);
}
.theme-default-light .matcha-slider[data-color=purple] .pointer:active {
  box-shadow: 0 0 0 4px rgba(156, 39, 176, 0.24);
}
.theme-default-light .matcha-slider[data-color=deep-purple] .selection-bar {
  background-color: #673ab7;
}
.theme-default-light .matcha-slider[data-color=deep-purple] .pointer {
  background-color: #673ab7;
}
.theme-default-light .matcha-slider[data-color=deep-purple] .pointer.focused {
  box-shadow: 0 0 0 4px #673ab7;
}
.theme-default-light .matcha-slider[data-color=deep-purple] .pointer:hover {
  box-shadow: 0 0 0 4px rgba(103, 58, 183, 0.24);
}
.theme-default-light .matcha-slider[data-color=deep-purple] .pointer:active {
  box-shadow: 0 0 0 4px rgba(103, 58, 183, 0.24);
}
.theme-default-light .matcha-slider[data-color=indigo] .selection-bar {
  background-color: #3f51b5;
}
.theme-default-light .matcha-slider[data-color=indigo] .pointer {
  background-color: #3f51b5;
}
.theme-default-light .matcha-slider[data-color=indigo] .pointer.focused {
  box-shadow: 0 0 0 4px #3f51b5;
}
.theme-default-light .matcha-slider[data-color=indigo] .pointer:hover {
  box-shadow: 0 0 0 4px rgba(63, 81, 181, 0.24);
}
.theme-default-light .matcha-slider[data-color=indigo] .pointer:active {
  box-shadow: 0 0 0 4px rgba(63, 81, 181, 0.24);
}
.theme-default-light .matcha-slider[data-color=blue] .selection-bar {
  background-color: #1e5bda;
}
.theme-default-light .matcha-slider[data-color=blue] .pointer {
  background-color: #1e5bda;
}
.theme-default-light .matcha-slider[data-color=blue] .pointer.focused {
  box-shadow: 0 0 0 4px #1e5bda;
}
.theme-default-light .matcha-slider[data-color=blue] .pointer:hover {
  box-shadow: 0 0 0 4px rgba(30, 91, 218, 0.24);
}
.theme-default-light .matcha-slider[data-color=blue] .pointer:active {
  box-shadow: 0 0 0 4px rgba(30, 91, 218, 0.24);
}
.theme-default-light .matcha-slider[data-color=light-blue] .selection-bar {
  background-color: #03a9f4;
}
.theme-default-light .matcha-slider[data-color=light-blue] .pointer {
  background-color: #03a9f4;
}
.theme-default-light .matcha-slider[data-color=light-blue] .pointer.focused {
  box-shadow: 0 0 0 4px #03a9f4;
}
.theme-default-light .matcha-slider[data-color=light-blue] .pointer:hover {
  box-shadow: 0 0 0 4px rgba(3, 169, 244, 0.24);
}
.theme-default-light .matcha-slider[data-color=light-blue] .pointer:active {
  box-shadow: 0 0 0 4px rgba(3, 169, 244, 0.24);
}
.theme-default-light .matcha-slider[data-color=cyan] .selection-bar {
  background-color: #00bcd4;
}
.theme-default-light .matcha-slider[data-color=cyan] .pointer {
  background-color: #00bcd4;
}
.theme-default-light .matcha-slider[data-color=cyan] .pointer.focused {
  box-shadow: 0 0 0 4px #00bcd4;
}
.theme-default-light .matcha-slider[data-color=cyan] .pointer:hover {
  box-shadow: 0 0 0 4px rgba(0, 188, 212, 0.24);
}
.theme-default-light .matcha-slider[data-color=cyan] .pointer:active {
  box-shadow: 0 0 0 4px rgba(0, 188, 212, 0.24);
}
.theme-default-light .matcha-slider[data-color=teal] .selection-bar {
  background-color: #009688;
}
.theme-default-light .matcha-slider[data-color=teal] .pointer {
  background-color: #009688;
}
.theme-default-light .matcha-slider[data-color=teal] .pointer.focused {
  box-shadow: 0 0 0 4px #009688;
}
.theme-default-light .matcha-slider[data-color=teal] .pointer:hover {
  box-shadow: 0 0 0 4px rgba(0, 150, 136, 0.24);
}
.theme-default-light .matcha-slider[data-color=teal] .pointer:active {
  box-shadow: 0 0 0 4px rgba(0, 150, 136, 0.24);
}
.theme-default-light .matcha-slider[data-color=green] .selection-bar {
  background-color: #119046;
}
.theme-default-light .matcha-slider[data-color=green] .pointer {
  background-color: #119046;
}
.theme-default-light .matcha-slider[data-color=green] .pointer.focused {
  box-shadow: 0 0 0 4px #119046;
}
.theme-default-light .matcha-slider[data-color=green] .pointer:hover {
  box-shadow: 0 0 0 4px rgba(17, 144, 70, 0.24);
}
.theme-default-light .matcha-slider[data-color=green] .pointer:active {
  box-shadow: 0 0 0 4px rgba(17, 144, 70, 0.24);
}
.theme-default-light .matcha-slider[data-color=light-green] .selection-bar {
  background-color: #6EDA2C;
}
.theme-default-light .matcha-slider[data-color=light-green] .pointer {
  background-color: #6EDA2C;
}
.theme-default-light .matcha-slider[data-color=light-green] .pointer.focused {
  box-shadow: 0 0 0 4px #6EDA2C;
}
.theme-default-light .matcha-slider[data-color=light-green] .pointer:hover {
  box-shadow: 0 0 0 4px rgba(110, 218, 44, 0.24);
}
.theme-default-light .matcha-slider[data-color=light-green] .pointer:active {
  box-shadow: 0 0 0 4px rgba(110, 218, 44, 0.24);
}
.theme-default-light .matcha-slider[data-color=lime] .selection-bar {
  background-color: #86bd00;
}
.theme-default-light .matcha-slider[data-color=lime] .pointer {
  background-color: #86bd00;
}
.theme-default-light .matcha-slider[data-color=lime] .pointer.focused {
  box-shadow: 0 0 0 4px #86bd00;
}
.theme-default-light .matcha-slider[data-color=lime] .pointer:hover {
  box-shadow: 0 0 0 4px rgba(134, 189, 0, 0.24);
}
.theme-default-light .matcha-slider[data-color=lime] .pointer:active {
  box-shadow: 0 0 0 4px rgba(134, 189, 0, 0.24);
}
.theme-default-light .matcha-slider[data-color=yellow] .selection-bar {
  background-color: #e8c300;
}
.theme-default-light .matcha-slider[data-color=yellow] .pointer {
  background-color: #e8c300;
}
.theme-default-light .matcha-slider[data-color=yellow] .pointer.focused {
  box-shadow: 0 0 0 4px #e8c300;
}
.theme-default-light .matcha-slider[data-color=yellow] .pointer:hover {
  box-shadow: 0 0 0 4px rgba(232, 195, 0, 0.24);
}
.theme-default-light .matcha-slider[data-color=yellow] .pointer:active {
  box-shadow: 0 0 0 4px rgba(232, 195, 0, 0.24);
}
.theme-default-light .matcha-slider[data-color=amber] .selection-bar {
  background-color: #faa61a;
}
.theme-default-light .matcha-slider[data-color=amber] .pointer {
  background-color: #faa61a;
}
.theme-default-light .matcha-slider[data-color=amber] .pointer.focused {
  box-shadow: 0 0 0 4px #faa61a;
}
.theme-default-light .matcha-slider[data-color=amber] .pointer:hover {
  box-shadow: 0 0 0 4px rgba(250, 166, 26, 0.24);
}
.theme-default-light .matcha-slider[data-color=amber] .pointer:active {
  box-shadow: 0 0 0 4px rgba(250, 166, 26, 0.24);
}
.theme-default-light .matcha-slider[data-color=orange] .selection-bar {
  background-color: #f77814;
}
.theme-default-light .matcha-slider[data-color=orange] .pointer {
  background-color: #f77814;
}
.theme-default-light .matcha-slider[data-color=orange] .pointer.focused {
  box-shadow: 0 0 0 4px #f77814;
}
.theme-default-light .matcha-slider[data-color=orange] .pointer:hover {
  box-shadow: 0 0 0 4px rgba(247, 120, 20, 0.24);
}
.theme-default-light .matcha-slider[data-color=orange] .pointer:active {
  box-shadow: 0 0 0 4px rgba(247, 120, 20, 0.24);
}
.theme-default-light .matcha-slider[data-color=deep-orange] .selection-bar {
  background-color: #ff5722;
}
.theme-default-light .matcha-slider[data-color=deep-orange] .pointer {
  background-color: #ff5722;
}
.theme-default-light .matcha-slider[data-color=deep-orange] .pointer.focused {
  box-shadow: 0 0 0 4px #ff5722;
}
.theme-default-light .matcha-slider[data-color=deep-orange] .pointer:hover {
  box-shadow: 0 0 0 4px rgba(255, 87, 34, 0.24);
}
.theme-default-light .matcha-slider[data-color=deep-orange] .pointer:active {
  box-shadow: 0 0 0 4px rgba(255, 87, 34, 0.24);
}
.theme-default-light .matcha-slider[data-color=brown] .selection-bar {
  background-color: #795548;
}
.theme-default-light .matcha-slider[data-color=brown] .pointer {
  background-color: #795548;
}
.theme-default-light .matcha-slider[data-color=brown] .pointer.focused {
  box-shadow: 0 0 0 4px #795548;
}
.theme-default-light .matcha-slider[data-color=brown] .pointer:hover {
  box-shadow: 0 0 0 4px rgba(121, 85, 72, 0.24);
}
.theme-default-light .matcha-slider[data-color=brown] .pointer:active {
  box-shadow: 0 0 0 4px rgba(121, 85, 72, 0.24);
}
.theme-default-light .matcha-slider[data-color=grey] .selection-bar {
  background-color: #91A0AA;
}
.theme-default-light .matcha-slider[data-color=grey] .pointer {
  background-color: #91A0AA;
}
.theme-default-light .matcha-slider[data-color=grey] .pointer.focused {
  box-shadow: 0 0 0 4px #91A0AA;
}
.theme-default-light .matcha-slider[data-color=grey] .pointer:hover {
  box-shadow: 0 0 0 4px rgba(145, 160, 170, 0.24);
}
.theme-default-light .matcha-slider[data-color=grey] .pointer:active {
  box-shadow: 0 0 0 4px rgba(145, 160, 170, 0.24);
}
.theme-default-light .matcha-slider[data-color=blue-grey] .selection-bar {
  background-color: #7E8E95;
}
.theme-default-light .matcha-slider[data-color=blue-grey] .pointer {
  background-color: #7E8E95;
}
.theme-default-light .matcha-slider[data-color=blue-grey] .pointer.focused {
  box-shadow: 0 0 0 4px #7E8E95;
}
.theme-default-light .matcha-slider[data-color=blue-grey] .pointer:hover {
  box-shadow: 0 0 0 4px rgba(126, 142, 149, 0.24);
}
.theme-default-light .matcha-slider[data-color=blue-grey] .pointer:active {
  box-shadow: 0 0 0 4px rgba(126, 142, 149, 0.24);
}
.theme-default-light .matcha-slider[data-color=primary] .selection-bar {
  background-color: #2B363B;
}
.theme-default-light .matcha-slider[data-color=primary] .pointer {
  background-color: #2B363B;
}
.theme-default-light .matcha-slider[data-color=primary] .pointer.focused {
  box-shadow: 0 0 0 4px #2B363B;
}
.theme-default-light .matcha-slider[data-color=primary] .pointer:hover {
  box-shadow: 0 0 0 4px rgba(43, 54, 59, 0.24);
}
.theme-default-light .matcha-slider[data-color=primary] .pointer:active {
  box-shadow: 0 0 0 4px rgba(43, 54, 59, 0.24);
}
.theme-default-light .matcha-slider[data-color=accent] .selection-bar {
  background-color: #1e5bda;
}
.theme-default-light .matcha-slider[data-color=accent] .pointer {
  background-color: #1e5bda;
}
.theme-default-light .matcha-slider[data-color=accent] .pointer.focused {
  box-shadow: 0 0 0 4px #1e5bda;
}
.theme-default-light .matcha-slider[data-color=accent] .pointer:hover {
  box-shadow: 0 0 0 4px rgba(30, 91, 218, 0.24);
}
.theme-default-light .matcha-slider[data-color=accent] .pointer:active {
  box-shadow: 0 0 0 4px rgba(30, 91, 218, 0.24);
}
.theme-default-light .matcha-slider[data-color=warn] .selection-bar {
  background-color: #d31818;
}
.theme-default-light .matcha-slider[data-color=warn] .pointer {
  background-color: #d31818;
}
.theme-default-light .matcha-slider[data-color=warn] .pointer.focused {
  box-shadow: 0 0 0 4px #d31818;
}
.theme-default-light .matcha-slider[data-color=warn] .pointer:hover {
  box-shadow: 0 0 0 4px rgba(211, 24, 24, 0.24);
}
.theme-default-light .matcha-slider[data-color=warn] .pointer:active {
  box-shadow: 0 0 0 4px rgba(211, 24, 24, 0.24);
}
.theme-default-light .matcha-slider[data-color=disabled] .selection-bar {
  background-color: #E2E7E9;
}
.theme-default-light .matcha-slider[data-color=disabled] .pointer {
  background-color: #E2E7E9;
}
.theme-default-light .matcha-slider[data-color=disabled] .pointer.focused {
  box-shadow: 0 0 0 4px #E2E7E9;
}
.theme-default-light .matcha-slider[data-color=disabled] .pointer:hover {
  box-shadow: 0 0 0 4px rgba(226, 231, 233, 0.24);
}
.theme-default-light .matcha-slider[data-color=disabled] .pointer:active {
  box-shadow: 0 0 0 4px rgba(226, 231, 233, 0.24);
}
.theme-default-light .matcha-slider.disabled {
  background-color: transparent !important;
}
.theme-default-light .matcha-slider.disabled .selection-bar {
  background-color: #E2E7E9;
}
.theme-default-light .matcha-slider.disabled .pointer {
  background-color: #E2E7E9;
}
.theme-default-light .matcha-slider.disabled .tick-value,
.theme-default-light .matcha-slider.disabled .pointer-label,
.theme-default-light .matcha-slider.disabled .floor-label,
.theme-default-light .matcha-slider.disabled .ceil-label {
  color: #E2E7E9;
}
.theme-default-light matcha-highlight {
  padding: 16px;
  border-radius: 8px;
  display: flex;
  overflow: auto;
  position: relative;
  min-height: 56px;
  --prism-bg: transparent;
  --prism-text: #1e5bda;
  --prism-comment: #1e5bda;
  --prism-keyword: #1e5bda;
  --prism-string: #1e5bda;
  --prism-number: #1e5bda;
  --prism-function: #1e5bda;
  --prism-variable: #1e5bda;
  --prism-type: #1e5bda;
  --prism-operator: #1e5bda;
  --prism-punctuation: #1e5bda;
  --prism-property: #1e5bda;
  --prism-tag: #1e5bda;
  --prism-attribute: #1e5bda;
  --prism-class: #1e5bda;
  --prism-constant: #1e5bda;
  --prism-regex: #1e5bda;
  --prism-important: #1e5bda;
  --code-font-family: Consolas, Menlo, Monaco, "Andale Mono WT", "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Liberation Mono", "Nimbus Mono L", "Courier New", Courier, monospace;
  --code-font-size: 14px;
  --code-line-height: 1.6;
  background: var(--prism-bg);
}
.theme-default-light matcha-highlight[theme=vs-code-light] {
  --prism-bg: #ffffff;
  --prism-text: #000000;
  --prism-comment: #6a9955;
  --prism-keyword: #0000ff;
  --prism-string: #a31515;
  --prism-number: #098658;
  --prism-function: #795e26;
  --prism-variable: #001080;
  --prism-type: #267f99;
  --prism-operator: #000000;
  --prism-punctuation: #000000;
  --prism-property: #0451a5;
  --prism-tag: #800000;
  --prism-attribute: #ff0000;
  --prism-class: #267f99;
  --prism-constant: #0070c1;
  --prism-regex: #811f3f;
  --prism-important: #e50000;
}
.theme-default-light matcha-highlight[theme=vs-code-dark] {
  --prism-bg: #1e1e1e;
  --prism-text: #d4d4d4;
  --prism-comment: #6a9955;
  --prism-keyword: #569cd6;
  --prism-string: #ce9178;
  --prism-number: #b5cea8;
  --prism-function: #dcdcaa;
  --prism-variable: #9cdcfe;
  --prism-type: #4ec9b0;
  --prism-operator: #d4d4d4;
  --prism-punctuation: #d4d4d4;
  --prism-property: #92c5f8;
  --prism-tag: #f44747;
  --prism-attribute: #92c5f8;
  --prism-class: #4ec9b0;
  --prism-constant: #4fc1ff;
  --prism-regex: #d16969;
  --prism-important: #ff6b6b;
}
.theme-default-light matcha-highlight[theme=dracula] {
  --prism-bg: #282a36;
  --prism-text: #f8f8f2;
  --prism-comment: #6272a4;
  --prism-keyword: #ff79c6;
  --prism-string: #f1fa8c;
  --prism-number: #bd93f9;
  --prism-function: #50fa7b;
  --prism-variable: #8be9fd;
  --prism-type: #8be9fd;
  --prism-operator: #ff79c6;
  --prism-punctuation: #f8f8f2;
  --prism-property: #66d9ef;
  --prism-tag: #ff79c6;
  --prism-attribute: #50fa7b;
  --prism-class: #bd93f9;
  --prism-constant: #bd93f9;
  --prism-regex: #ffb86c;
  --prism-important: #ff5555;
}
.theme-default-light matcha-highlight[theme=matcha] {
  --prism-bg: #1a2420;
  --prism-text: #e6f4ea;
  --prism-comment: #5c7f6e;
  --prism-keyword: #7fffd4;
  --prism-string: #b7f774;
  --prism-number: #6ee7b7;
  --prism-function: #4ade80;
  --prism-variable: #a7ffeb;
  --prism-type: #34d399;
  --prism-operator: #7fffd4;
  --prism-punctuation: #e6f4ea;
  --prism-property: #5eead4;
  --prism-tag: #2dd4bf;
  --prism-attribute: #bbf7d0;
  --prism-class: #6ee7b7;
  --prism-constant: #99f6e4;
  --prism-regex: #bef264;
  --prism-important: #22d3ee;
}
.theme-default-light matcha-highlight[theme=none] {
  --prism-bg: transparent;
  --prism-text: inherit;
  --prism-comment: inherit;
  --prism-keyword: inherit;
  --prism-string: inherit;
  --prism-number: inherit;
  --prism-function: inherit;
  --prism-variable: inherit;
  --prism-type: inherit;
  --prism-operator: inherit;
  --prism-punctuation: inherit;
  --prism-property: inherit;
  --prism-tag: inherit;
  --prism-attribute: inherit;
  --prism-class: inherit;
  --prism-constant: inherit;
  --prism-regex: inherit;
  --prism-important: inherit;
}
.theme-default-light matcha-highlight pre, .theme-default-light matcha-highlight code {
  margin: 0;
  padding: 0;
}
.theme-default-light matcha-highlight code[class*=language-],
.theme-default-light matcha-highlight pre[class*=language-] {
  color: var(--prism-text);
  background: var(--prism-bg);
  text-shadow: none;
  font-family: var(--code-font-family);
  font-size: var(--code-font-size);
  text-align: left;
  white-space: pre;
  word-spacing: normal;
  word-break: normal;
  word-wrap: normal;
  line-height: var(--code-line-height);
  tab-size: 4;
  hyphens: none;
  margin: 0;
  padding: 0;
}
.theme-default-light matcha-highlight pre[class*=language-] {
  padding: 0;
  margin: 0;
  overflow: auto;
  border-radius: 8px;
}
.theme-default-light matcha-highlight code[class*=language-] {
  padding: 0;
  background: transparent;
}
.theme-default-light matcha-highlight .token.comment,
.theme-default-light matcha-highlight .token.prolog,
.theme-default-light matcha-highlight .token.doctype,
.theme-default-light matcha-highlight .token.cdata {
  color: var(--prism-comment);
  font-style: italic;
}
.theme-default-light matcha-highlight .token.punctuation {
  color: var(--prism-punctuation);
}
.theme-default-light matcha-highlight .token.property,
.theme-default-light matcha-highlight .token.tag,
.theme-default-light matcha-highlight .token.constant,
.theme-default-light matcha-highlight .token.symbol,
.theme-default-light matcha-highlight .token.deleted {
  color: var(--prism-tag);
}
.theme-default-light matcha-highlight .token.boolean,
.theme-default-light matcha-highlight .token.number {
  color: var(--prism-number);
}
.theme-default-light matcha-highlight .token.selector,
.theme-default-light matcha-highlight .token.attr-name,
.theme-default-light matcha-highlight .token.string,
.theme-default-light matcha-highlight .token.char,
.theme-default-light matcha-highlight .token.builtin,
.theme-default-light matcha-highlight .token.inserted {
  color: var(--prism-string);
}
.theme-default-light matcha-highlight .token.operator,
.theme-default-light matcha-highlight .token.entity,
.theme-default-light matcha-highlight .token.url,
.theme-default-light matcha-highlight .language-css .token.string,
.theme-default-light matcha-highlight .style .token.string,
.theme-default-light matcha-highlight .token.variable {
  color: var(--prism-operator);
}
.theme-default-light matcha-highlight .token.atrule,
.theme-default-light matcha-highlight .token.attr-value,
.theme-default-light matcha-highlight .token.function,
.theme-default-light matcha-highlight .token.class-name {
  color: var(--prism-function);
}
.theme-default-light matcha-highlight .token.keyword {
  color: var(--prism-keyword);
}
.theme-default-light matcha-highlight .token.regex,
.theme-default-light matcha-highlight .token.important {
  color: var(--prism-regex);
}
.theme-default-light matcha-highlight .token.important,
.theme-default-light matcha-highlight .token.bold {
  font-weight: bold;
}
.theme-default-light matcha-highlight .token.italic {
  font-style: italic;
}
.theme-default-light matcha-highlight .token.entity {
  cursor: help;
}
.theme-default-light matcha-highlight .matcha-highlight-container {
  position: relative;
  border-radius: 8px;
}
.theme-default-light matcha-highlight .copy-button {
  opacity: 0;
  transition: opacity 0.2s ease;
}
.theme-default-light matcha-highlight:hover .copy-button {
  opacity: 1;
}
.theme-default-light matcha-highlight .highlight-content {
  position: relative;
}
.theme-default-light matcha-divider {
  box-sizing: border-box;
}
.theme-default-light matcha-divider[direction=vertical] {
  display: flex;
  flex-direction: column;
  align-self: stretch;
}
.theme-default-light matcha-divider[direction=horizontal] {
  display: flex;
  flex-direction: row;
  width: 100%;
}
.theme-default-light .h1,
.theme-default-light h1 {
  font-size: 2.5rem;
  font-family: CircularStd, sans-serif, arial;
}
.theme-default-light .h2,
.theme-default-light h2 {
  font-size: 2rem;
  font-family: CircularStd, sans-serif, arial;
}
.theme-default-light .h3,
.theme-default-light h3 {
  font-size: 1.5rem;
  font-family: CircularStd, sans-serif, arial;
}
.theme-default-light .h4,
.theme-default-light h4 {
  font-size: 1.25rem;
  font-family: CircularStd, sans-serif, arial;
}
.theme-default-light .h5,
.theme-default-light h5 {
  font-size: 1rem;
  font-family: CircularStd, sans-serif, arial;
}
.theme-default-light .h6,
.theme-default-light h6 {
  font-size: 0.75rem;
  font-family: CircularStd, sans-serif, arial;
}
.theme-default-light .text-bold,
.theme-default-light strong,
.theme-default-light b {
  font-family: CircularStd, sans-serif, arial;
  font-weight: 700;
}
.theme-default-light {
  font-family: CircularStd, sans-serif, arial;
}
.theme-default-light button {
  font-family: CircularStd, sans-serif, arial;
}
.theme-default-light input[type=text],
.theme-default-light input[type=email],
.theme-default-light input[type=tel],
.theme-default-light input[type=url],
.theme-default-light input[type=password],
.theme-default-light input[type=number],
.theme-default-light input[type=search],
.theme-default-light textarea {
  font-family: CircularStd, sans-serif, arial;
  font-weight: 400;
  font-size: 1rem;
}
.theme-default-light .mat-stepper-horizontal.bullet-stepper-header-labeled .mat-horizontal-stepper-header-container {
  justify-content: end;
  margin-bottom: 0;
  margin-top: 0;
  margin-right: 0;
  padding-right: 24px;
  height: 0;
}
.theme-default-light .mat-stepper-horizontal.bullet-stepper-header-labeled, .theme-default-light .mat-stepper-horizontal.bullet-stepper-header {
  position: relative;
}
.theme-default-light .mat-stepper-horizontal.bullet-stepper-header-labeled .mat-horizontal-stepper-header-container .mat-stepper-horizontal-line, .theme-default-light .mat-stepper-horizontal.bullet-stepper-header .mat-horizontal-stepper-header-container .mat-stepper-horizontal-line {
  display: none;
}
.theme-default-light .mat-stepper-horizontal.bullet-stepper-header-labeled .mat-horizontal-stepper-header-container .mat-step-header-ripple, .theme-default-light .mat-stepper-horizontal.bullet-stepper-header .mat-horizontal-stepper-header-container .mat-step-header-ripple {
  display: none;
}
.theme-default-light .mat-stepper-horizontal.bullet-stepper-header-labeled .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header, .theme-default-light .mat-stepper-horizontal.bullet-stepper-header .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header {
  height: initial;
  overflow: initial;
}
.theme-default-light .mat-stepper-horizontal.bullet-stepper-header-labeled .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header.mat-step-header, .theme-default-light .mat-stepper-horizontal.bullet-stepper-header .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header.mat-step-header {
  padding: 0;
  border-radius: 0;
  flex-direction: column;
  position: inherit;
  width: 40px;
}
.theme-default-light .mat-stepper-horizontal.bullet-stepper-header-labeled .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header.mat-step-header.cdk-keyboard-focused, .theme-default-light .mat-stepper-horizontal.bullet-stepper-header-labeled .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header.mat-step-header.cdk-program-focused, .theme-default-light .mat-stepper-horizontal.bullet-stepper-header-labeled .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header.mat-step-header:hover, .theme-default-light .mat-stepper-horizontal.bullet-stepper-header .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header.mat-step-header.cdk-keyboard-focused, .theme-default-light .mat-stepper-horizontal.bullet-stepper-header .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header.mat-step-header.cdk-program-focused, .theme-default-light .mat-stepper-horizontal.bullet-stepper-header .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header.mat-step-header:hover {
  background-color: transparent;
}
.theme-default-light .mat-stepper-horizontal.bullet-stepper-header-labeled .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header.mat-step-header .mat-step-icon, .theme-default-light .mat-stepper-horizontal.bullet-stepper-header .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header.mat-step-header .mat-step-icon {
  margin: -32px 0 0 8px;
  border-radius: 8px;
  height: 8px;
  width: 32px;
  flex-shrink: 0;
  position: absolute;
}
.theme-default-light .mat-stepper-horizontal.bullet-stepper-header-labeled .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header .mat-step-label, .theme-default-light .mat-stepper-horizontal.bullet-stepper-header .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header .mat-step-label {
  position: absolute;
  display: none;
  right: 0;
  margin-top: -52px;
  margin-right: 24px;
  font-weight: 700;
  color: #7E8E95;
}
.theme-default-light .mat-stepper-horizontal.bullet-stepper-header-labeled .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header .mat-step-label.mat-step-label-active, .theme-default-light .mat-stepper-horizontal.bullet-stepper-header .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header .mat-step-label.mat-step-label-active {
  display: none;
}
.theme-default-light .mat-stepper-horizontal.bullet-stepper-header-labeled .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header .mat-step-label.mat-step-label-active.mat-step-label-selected, .theme-default-light .mat-stepper-horizontal.bullet-stepper-header .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header .mat-step-label.mat-step-label-active.mat-step-label-selected {
  display: flex;
  justify-content: flex-end;
}
.theme-default-light .mat-stepper-horizontal.bullet-stepper-header-labeled .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header .mat-step-icon-state-edit, .theme-default-light .mat-stepper-horizontal.bullet-stepper-header .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header .mat-step-icon-state-edit {
  margin: 0;
}
.theme-default-light .mat-stepper-horizontal.bullet-stepper-header-labeled .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header .mat-step-icon-state-edit.mat-step-icon, .theme-default-light .mat-stepper-horizontal.bullet-stepper-header .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header .mat-step-icon-state-edit.mat-step-icon {
  background-color: #2B363B;
}
.theme-default-light .mat-stepper-horizontal.bullet-stepper-header-labeled .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header .mat-step-icon-state-edit.mat-step-icon .mat-icon, .theme-default-light .mat-stepper-horizontal.bullet-stepper-header .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header .mat-step-icon-state-edit.mat-step-icon .mat-icon {
  display: none;
}
.theme-default-light .mat-stepper-horizontal.bullet-stepper-header-labeled .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header .mat-step-icon-state-number.mat-step-icon, .theme-default-light .mat-stepper-horizontal.bullet-stepper-header .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header .mat-step-icon-state-number.mat-step-icon {
  background-color: #E2E7E9;
}
.theme-default-light .mat-stepper-horizontal.bullet-stepper-header-labeled .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header .mat-step-icon-state-number.mat-step-icon .mat-step-icon-content, .theme-default-light .mat-stepper-horizontal.bullet-stepper-header .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header .mat-step-icon-state-number.mat-step-icon .mat-step-icon-content {
  display: none;
}
.theme-default-light .mat-stepper-horizontal.bullet-stepper-header-labeled .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header .mat-step-icon-state-number.mat-step-icon.mat-step-icon-selected, .theme-default-light .mat-stepper-horizontal.bullet-stepper-header .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header .mat-step-icon-state-number.mat-step-icon.mat-step-icon-selected {
  background-color: #2B363B;
  order: 1;
}
.theme-default-light .mat-stepper-horizontal.bullet-stepper-header-labeled .mat-horizontal-content-container, .theme-default-light .mat-stepper-horizontal.bullet-stepper-header .mat-horizontal-content-container {
  padding: 0;
}
.theme-default-light .mat-stepper-horizontal.bullet-stepper-header-labeled .mat-horizontal-content-container .mat-dialog-content, .theme-default-light .mat-stepper-horizontal.bullet-stepper-header .mat-horizontal-content-container .mat-dialog-content {
  max-height: calc(100vh - 268px);
}
.theme-default-light .mat-stepper-horizontal.hide-stepper-header .mat-horizontal-stepper-header-container {
  display: none !important;
}
.theme-default-light .mat-stepper-horizontal.hide-stepper-header .mat-horizontal-content-container {
  overflow: hidden;
  padding: 0;
}
.theme-default-light .mat-stepper-horizontal.page-layout-stepper .mat-horizontal-stepper-header-container {
  padding-right: 24px;
}
.theme-default-light .mat-stepper-horizontal.page-layout-stepper .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header .mat-step-label {
  margin-top: -60px;
  margin-right: 24px;
}
@media screen and (min-width: 1024px) {
  .theme-default-light .mat-stepper-horizontal.bullet-stepper-header-labeled .mat-horizontal-stepper-header-container {
    padding-right: 72px;
  }
  .theme-default-light .mat-stepper-horizontal.bullet-stepper-header-labeled .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header .mat-step-label {
    margin-right: 72px;
  }
}
.theme-default-light .animated-background {
  background: linear-gradient(to right, #E2E7E9, rgba(255, 255, 255, 0.0666666667), #E2E7E9);
  background-size: 200% 100%;
  animation: gradientAnimation 1s linear infinite;
}
@keyframes gradientAnimation {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: -100% 0;
  }
}
.theme-default-light .iti__country-list {
  background: #FFFFFF;
}

.theme-default-dark {
  --mat-table-background-color: #424242;
  --mat-table-header-headline-color: white;
  --mat-table-row-item-label-text-color: white;
  --mat-table-row-item-outline-color: rgba(255, 255, 255, 0.12);
  --mat-table-header-container-height: 56px;
  --mat-table-footer-container-height: 52px;
  --mat-table-row-item-container-height: 52px;
  --mat-table-header-headline-font: CircularStd, sans-serif, arial;
  --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: CircularStd, sans-serif, arial;
  --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: CircularStd, sans-serif, arial;
  --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;
  --mdc-typography-button-letter-spacing: 0;
  /* reduce the input height fom 56px to 48px */
  /* align icons inside of buttons */
  /* Colors
  --------------------------------------------------------------------------------------------------*/
  /* COMPONENT STYLE
  --------------------------------------------------------------------------------------------------*/
  /*!
  FullCalendar Core Package v4.2.0
  Docs & License: https://fullcalendar.io/
  (c) 2019 Adam Shaw
  */
  /* Colors
  --------------------------------------------------------------------------------------------------*/
  /* Popover
  --------------------------------------------------------------------------------------------------*/
  /* Misc Reusable Components
  --------------------------------------------------------------------------------------------------*/
  /* Tables
  --------------------------------------------------------------------------------------------------*/
  /* Internal Nav Links
  --------------------------------------------------------------------------------------------------*/
  /* Fake Table Rows
  --------------------------------------------------------------------------------------------------*/
  /* Day Row (used within the header and the DayGrid)
  --------------------------------------------------------------------------------------------------*/
  /* highlighting cells & background event skeleton */
  /*
  row content (which contains day/week numbers and events) as well as "mirror" (which contains
  temporary rendered events).
  */
  /* Scrolling Container
  --------------------------------------------------------------------------------------------------*/
  /* TODO: move to timegrid/daygrid */
  /* Global Event Styles
  --------------------------------------------------------------------------------------------------*/
  /* resizer (cursor AND touch devices) */
  /* resizer (touch devices) */
  /* hit area */
  /* Event Selection (only for touch devices)
  --------------------------------------------------------------------------------------------------*/
  /* Event Dragging
  --------------------------------------------------------------------------------------------------*/
  /* Horizontal Events
  --------------------------------------------------------------------------------------------------*/
  /* bigger touch area when selected */
  /* events that are continuing to/from another week. kill rounded corners and butt up against edge */
  /* resizer (cursor AND touch devices) */
  /* left resizer  */
  /* right resizer */
  /* resizer (mouse devices) */
  /* resizer (touch devices) */
  /* left resizer  */
  /* right resizer */
  /* DayGrid events
  ----------------------------------------------------------------------------------------------------
  We use the full "fc-day-grid-event" class instead of using descendants because the event won't
  be a descendant of the grid when it is being dragged.
  */
  /* resizer (cursor devices) */
  /* left resizer  */
  /* right resizer */
  /* Event Limiting
  --------------------------------------------------------------------------------------------------*/
  /* "more" link that represents hidden events */
  /* popover that appears when "more" link is clicked */
  /* Now Indicator
  --------------------------------------------------------------------------------------------------*/
  /* Utilities
  --------------------------------------------------------------------------------------------------*/
  /* Buttons
  --------------------------------------------------------------------------------------------------
  Lots taken from Flatly (MIT): https://bootswatch.com/4/flatly/bootstrap.css
  */
  /* reset */
  /* theme */
  /* icons within buttons */
  /* Buttons Groups
  --------------------------------------------------------------------------------------------------*/
  /* Popover
  --------------------------------------------------------------------------------------------------*/
  /* List View
  --------------------------------------------------------------------------------------------------*/
  /* Toolbar
  --------------------------------------------------------------------------------------------------*/
  /* inner content */
  /* View Structure
  --------------------------------------------------------------------------------------------------*/
  /* undo twitter bootstrap's box-sizing rules. normalizes positioning techniques */
  /* don't do this for the toolbar because we'll want bootstrap to style those buttons as some pt */
  /*!
  FullCalendar Day Grid Plugin v4.2.0
  Docs & License: https://fullcalendar.io/
  (c) 2019 Adam Shaw
  */
  /* DayGridView
  --------------------------------------------------------------------------------------------------*/
  /* day row structure */
  /* a "rigid" row will take up a constant amount of height because content-skeleton is absolute */
  /* week and day number styling */
  /* when week/day number have own column */
}
.theme-default-dark .mat-ripple-element {
  background-color: rgba(255, 255, 255, 0.1);
}
.theme-default-dark {
  --mat-option-selected-state-label-text-color: #8a9ea8;
  --mat-option-label-text-color: white;
  --mat-option-hover-state-layer-color: rgba(255, 255, 255, 0.08);
  --mat-option-focus-state-layer-color: rgba(255, 255, 255, 0.08);
  --mat-option-selected-state-layer-color: rgba(255, 255, 255, 0.08);
}

.theme-default-dark .mat-accent {
  --mat-option-selected-state-label-text-color: #2979ff;
}
.theme-default-dark .mat-warn {
  --mat-option-selected-state-label-text-color: #f29d9d;
}
.theme-default-dark {
  --mat-optgroup-label-text-color: white;
}

.theme-default-dark .mat-pseudo-checkbox-full {
  color: rgba(255, 255, 255, 0.7);
}
.theme-default-dark .mat-pseudo-checkbox-full.mat-pseudo-checkbox-disabled {
  color: #686868;
}
.theme-default-dark .mat-primary .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-minimal::after,
.theme-default-dark .mat-primary .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-minimal::after {
  color: #8a9ea8;
}
.theme-default-dark .mat-primary .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full,
.theme-default-dark .mat-primary .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full {
  background: #8a9ea8;
}
.theme-default-dark .mat-primary .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full::after,
.theme-default-dark .mat-primary .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full::after {
  color: #303030;
}
.theme-default-dark .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-minimal::after,
.theme-default-dark .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-minimal::after {
  color: #2979ff;
}
.theme-default-dark .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full,
.theme-default-dark .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full {
  background: #2979ff;
}
.theme-default-dark .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full::after,
.theme-default-dark .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full::after {
  color: #303030;
}
.theme-default-dark .mat-accent .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-minimal::after,
.theme-default-dark .mat-accent .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-minimal::after {
  color: #2979ff;
}
.theme-default-dark .mat-accent .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full,
.theme-default-dark .mat-accent .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full {
  background: #2979ff;
}
.theme-default-dark .mat-accent .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full::after,
.theme-default-dark .mat-accent .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full::after {
  color: #303030;
}
.theme-default-dark .mat-warn .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-minimal::after,
.theme-default-dark .mat-warn .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-minimal::after {
  color: #f29d9d;
}
.theme-default-dark .mat-warn .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full,
.theme-default-dark .mat-warn .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full {
  background: #f29d9d;
}
.theme-default-dark .mat-warn .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full::after,
.theme-default-dark .mat-warn .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full::after {
  color: #303030;
}
.theme-default-dark .mat-pseudo-checkbox-disabled.mat-pseudo-checkbox-checked.mat-pseudo-checkbox-minimal::after,
.theme-default-dark .mat-pseudo-checkbox-disabled.mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-minimal::after {
  color: #686868;
}
.theme-default-dark .mat-pseudo-checkbox-disabled.mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full,
.theme-default-dark .mat-pseudo-checkbox-disabled.mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full {
  background: #686868;
}
.theme-default-dark .mat-app-background, .theme-default-dark.mat-app-background {
  background-color: #303030;
  color: white;
}
.theme-default-dark .mat-elevation-z0, .theme-default-dark .mat-mdc-elevation-specific.mat-elevation-z0 {
  box-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);
}
.theme-default-dark .mat-elevation-z1, .theme-default-dark .mat-mdc-elevation-specific.mat-elevation-z1 {
  box-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);
}
.theme-default-dark .mat-elevation-z2, .theme-default-dark .mat-mdc-elevation-specific.mat-elevation-z2 {
  box-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);
}
.theme-default-dark .mat-elevation-z3, .theme-default-dark .mat-mdc-elevation-specific.mat-elevation-z3 {
  box-shadow: 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);
}
.theme-default-dark .mat-elevation-z4, .theme-default-dark .mat-mdc-elevation-specific.mat-elevation-z4 {
  box-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);
}
.theme-default-dark .mat-elevation-z5, .theme-default-dark .mat-mdc-elevation-specific.mat-elevation-z5 {
  box-shadow: 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);
}
.theme-default-dark .mat-elevation-z6, .theme-default-dark .mat-mdc-elevation-specific.mat-elevation-z6 {
  box-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);
}
.theme-default-dark .mat-elevation-z7, .theme-default-dark .mat-mdc-elevation-specific.mat-elevation-z7 {
  box-shadow: 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);
}
.theme-default-dark .mat-elevation-z8, .theme-default-dark .mat-mdc-elevation-specific.mat-elevation-z8 {
  box-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);
}
.theme-default-dark .mat-elevation-z9, .theme-default-dark .mat-mdc-elevation-specific.mat-elevation-z9 {
  box-shadow: 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);
}
.theme-default-dark .mat-elevation-z10, .theme-default-dark .mat-mdc-elevation-specific.mat-elevation-z10 {
  box-shadow: 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);
}
.theme-default-dark .mat-elevation-z11, .theme-default-dark .mat-mdc-elevation-specific.mat-elevation-z11 {
  box-shadow: 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);
}
.theme-default-dark .mat-elevation-z12, .theme-default-dark .mat-mdc-elevation-specific.mat-elevation-z12 {
  box-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);
}
.theme-default-dark .mat-elevation-z13, .theme-default-dark .mat-mdc-elevation-specific.mat-elevation-z13 {
  box-shadow: 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);
}
.theme-default-dark .mat-elevation-z14, .theme-default-dark .mat-mdc-elevation-specific.mat-elevation-z14 {
  box-shadow: 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);
}
.theme-default-dark .mat-elevation-z15, .theme-default-dark .mat-mdc-elevation-specific.mat-elevation-z15 {
  box-shadow: 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);
}
.theme-default-dark .mat-elevation-z16, .theme-default-dark .mat-mdc-elevation-specific.mat-elevation-z16 {
  box-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);
}
.theme-default-dark .mat-elevation-z17, .theme-default-dark .mat-mdc-elevation-specific.mat-elevation-z17 {
  box-shadow: 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);
}
.theme-default-dark .mat-elevation-z18, .theme-default-dark .mat-mdc-elevation-specific.mat-elevation-z18 {
  box-shadow: 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);
}
.theme-default-dark .mat-elevation-z19, .theme-default-dark .mat-mdc-elevation-specific.mat-elevation-z19 {
  box-shadow: 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);
}
.theme-default-dark .mat-elevation-z20, .theme-default-dark .mat-mdc-elevation-specific.mat-elevation-z20 {
  box-shadow: 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);
}
.theme-default-dark .mat-elevation-z21, .theme-default-dark .mat-mdc-elevation-specific.mat-elevation-z21 {
  box-shadow: 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);
}
.theme-default-dark .mat-elevation-z22, .theme-default-dark .mat-mdc-elevation-specific.mat-elevation-z22 {
  box-shadow: 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);
}
.theme-default-dark .mat-elevation-z23, .theme-default-dark .mat-mdc-elevation-specific.mat-elevation-z23 {
  box-shadow: 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);
}
.theme-default-dark .mat-elevation-z24, .theme-default-dark .mat-mdc-elevation-specific.mat-elevation-z24 {
  box-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-theme-loaded-marker {
  display: none;
}

.theme-default-dark {
  --mat-option-label-text-font: CircularStd, sans-serif, arial;
  --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;
}

.theme-default-dark {
  --mat-optgroup-label-text-font: CircularStd, sans-serif, arial;
  --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;
}

.theme-default-dark .mat-mdc-card {
  --mdc-elevated-card-container-color: #424242;
  --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);
  --mdc-outlined-card-container-color: #424242;
  --mdc-outlined-card-outline-color: rgba(255, 255, 255, 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);
  --mat-card-subtitle-text-color: rgba(255, 255, 255, 0.7);
}
.theme-default-dark .mat-mdc-card {
  --mat-card-title-text-font: CircularStd, sans-serif, arial;
  --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: CircularStd, sans-serif, arial;
  --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;
}
.theme-default-dark .mat-mdc-progress-bar {
  --mdc-linear-progress-active-indicator-color: #8a9ea8;
  --mdc-linear-progress-track-color: rgba(138, 158, 168, 0.25);
}
@keyframes mdc-linear-progress-buffering {
  from {
    /* @noflip */ /*rtl:ignore*/
  }
}
.theme-default-dark .mat-mdc-progress-bar .mdc-linear-progress__buffer-dots {
  background-color: rgba(138, 158, 168, 0.25);
  /* @alternate */
  background-color: var(--mdc-linear-progress-track-color, rgba(138, 158, 168, 0.25));
}
@media (forced-colors: active) {
  .theme-default-dark .mat-mdc-progress-bar .mdc-linear-progress__buffer-dots {
    background-color: ButtonBorder;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .theme-default-dark .mat-mdc-progress-bar .mdc-linear-progress__buffer-dots {
    background-color: transparent;
    background-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' enable-background='new 0 0 5 2' xml:space='preserve' viewBox='0 0 5 2' preserveAspectRatio='none slice'%3E%3Ccircle cx='1' cy='1' r='1' fill='rgba(138, 158, 168, 0.25)'/%3E%3C/svg%3E");
  }
}
.theme-default-dark .mat-mdc-progress-bar .mdc-linear-progress__buffer-bar {
  background-color: rgba(138, 158, 168, 0.25);
  /* @alternate */
  background-color: var(--mdc-linear-progress-track-color, rgba(138, 158, 168, 0.25));
}
.theme-default-dark .mat-mdc-progress-bar.mat-accent {
  --mdc-linear-progress-active-indicator-color: #2979ff;
  --mdc-linear-progress-track-color: rgba(41, 121, 255, 0.25);
}
@keyframes mdc-linear-progress-buffering {
  from {
    /* @noflip */ /*rtl:ignore*/
  }
}
.theme-default-dark .mat-mdc-progress-bar.mat-accent .mdc-linear-progress__buffer-dots {
  background-color: rgba(41, 121, 255, 0.25);
  /* @alternate */
  background-color: var(--mdc-linear-progress-track-color, rgba(41, 121, 255, 0.25));
}
@media (forced-colors: active) {
  .theme-default-dark .mat-mdc-progress-bar.mat-accent .mdc-linear-progress__buffer-dots {
    background-color: ButtonBorder;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .theme-default-dark .mat-mdc-progress-bar.mat-accent .mdc-linear-progress__buffer-dots {
    background-color: transparent;
    background-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' enable-background='new 0 0 5 2' xml:space='preserve' viewBox='0 0 5 2' preserveAspectRatio='none slice'%3E%3Ccircle cx='1' cy='1' r='1' fill='rgba(41, 121, 255, 0.25)'/%3E%3C/svg%3E");
  }
}
.theme-default-dark .mat-mdc-progress-bar.mat-accent .mdc-linear-progress__buffer-bar {
  background-color: rgba(41, 121, 255, 0.25);
  /* @alternate */
  background-color: var(--mdc-linear-progress-track-color, rgba(41, 121, 255, 0.25));
}
.theme-default-dark .mat-mdc-progress-bar.mat-warn {
  --mdc-linear-progress-active-indicator-color: #f29d9d;
  --mdc-linear-progress-track-color: rgba(242, 157, 157, 0.25);
}
@keyframes mdc-linear-progress-buffering {
  from {
    /* @noflip */ /*rtl:ignore*/
  }
}
.theme-default-dark .mat-mdc-progress-bar.mat-warn .mdc-linear-progress__buffer-dots {
  background-color: rgba(242, 157, 157, 0.25);
  /* @alternate */
  background-color: var(--mdc-linear-progress-track-color, rgba(242, 157, 157, 0.25));
}
@media (forced-colors: active) {
  .theme-default-dark .mat-mdc-progress-bar.mat-warn .mdc-linear-progress__buffer-dots {
    background-color: ButtonBorder;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .theme-default-dark .mat-mdc-progress-bar.mat-warn .mdc-linear-progress__buffer-dots {
    background-color: transparent;
    background-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' enable-background='new 0 0 5 2' xml:space='preserve' viewBox='0 0 5 2' preserveAspectRatio='none slice'%3E%3Ccircle cx='1' cy='1' r='1' fill='rgba(242, 157, 157, 0.25)'/%3E%3C/svg%3E");
  }
}
.theme-default-dark .mat-mdc-progress-bar.mat-warn .mdc-linear-progress__buffer-bar {
  background-color: rgba(242, 157, 157, 0.25);
  /* @alternate */
  background-color: var(--mdc-linear-progress-track-color, rgba(242, 157, 157, 0.25));
}
.theme-default-dark .mat-mdc-tooltip {
  --mdc-plain-tooltip-container-color: #616161;
  --mdc-plain-tooltip-supporting-text-color: #fff;
}
.theme-default-dark .mat-mdc-tooltip {
  --mdc-plain-tooltip-supporting-text-font: CircularStd, sans-serif, arial;
  --mdc-plain-tooltip-supporting-text-size: 12px;
  --mdc-plain-tooltip-supporting-text-weight: 400;
  --mdc-plain-tooltip-supporting-text-tracking: 0.0333333333em;
}
.theme-default-dark {
  --mdc-filled-text-field-caret-color: #8a9ea8;
  --mdc-filled-text-field-focus-active-indicator-color: #8a9ea8;
  --mdc-filled-text-field-focus-label-text-color: rgba(138, 158, 168, 0.87);
  --mdc-filled-text-field-container-color: #4a4a4a;
  --mdc-filled-text-field-disabled-container-color: #464646;
  --mdc-filled-text-field-label-text-color: rgba(255, 255, 255, 0.6);
  --mdc-filled-text-field-disabled-label-text-color: rgba(255, 255, 255, 0.38);
  --mdc-filled-text-field-input-text-color: rgba(255, 255, 255, 0.87);
  --mdc-filled-text-field-disabled-input-text-color: rgba(255, 255, 255, 0.38);
  --mdc-filled-text-field-input-text-placeholder-color: rgba(255, 255, 255, 0.6);
  --mdc-filled-text-field-error-focus-label-text-color: #f29d9d;
  --mdc-filled-text-field-error-label-text-color: #f29d9d;
  --mdc-filled-text-field-error-caret-color: #f29d9d;
  --mdc-filled-text-field-active-indicator-color: rgba(255, 255, 255, 0.42);
  --mdc-filled-text-field-disabled-active-indicator-color: rgba(255, 255, 255, 0.06);
  --mdc-filled-text-field-hover-active-indicator-color: rgba(255, 255, 255, 0.87);
  --mdc-filled-text-field-error-active-indicator-color: #f29d9d;
  --mdc-filled-text-field-error-focus-active-indicator-color: #f29d9d;
  --mdc-filled-text-field-error-hover-active-indicator-color: #f29d9d;
  --mdc-outlined-text-field-caret-color: #8a9ea8;
  --mdc-outlined-text-field-focus-outline-color: #8a9ea8;
  --mdc-outlined-text-field-focus-label-text-color: rgba(138, 158, 168, 0.87);
  --mdc-outlined-text-field-label-text-color: rgba(255, 255, 255, 0.6);
  --mdc-outlined-text-field-disabled-label-text-color: rgba(255, 255, 255, 0.38);
  --mdc-outlined-text-field-input-text-color: rgba(255, 255, 255, 0.87);
  --mdc-outlined-text-field-disabled-input-text-color: rgba(255, 255, 255, 0.38);
  --mdc-outlined-text-field-input-text-placeholder-color: rgba(255, 255, 255, 0.6);
  --mdc-outlined-text-field-error-caret-color: #f29d9d;
  --mdc-outlined-text-field-error-focus-label-text-color: #f29d9d;
  --mdc-outlined-text-field-error-label-text-color: #f29d9d;
  --mdc-outlined-text-field-outline-color: rgba(255, 255, 255, 0.38);
  --mdc-outlined-text-field-disabled-outline-color: rgba(255, 255, 255, 0.06);
  --mdc-outlined-text-field-hover-outline-color: rgba(255, 255, 255, 0.87);
  --mdc-outlined-text-field-error-focus-outline-color: #f29d9d;
  --mdc-outlined-text-field-error-hover-outline-color: #f29d9d;
  --mdc-outlined-text-field-error-outline-color: #f29d9d;
  --mat-form-field-disabled-input-text-placeholder-color: rgba(255, 255, 255, 0.38);
}

.theme-default-dark .mat-mdc-form-field-error {
  color: var(--mdc-theme-error, #f29d9d);
}
.theme-default-dark .mat-mdc-form-field-subscript-wrapper,
.theme-default-dark .mat-mdc-form-field-bottom-align::before {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: var(--mat-form-field-subscript-text-font);
  line-height: var(--mat-form-field-subscript-text-line-height);
  font-size: var(--mat-form-field-subscript-text-size);
  letter-spacing: var(--mat-form-field-subscript-text-tracking);
  font-weight: var(--mat-form-field-subscript-text-weight);
}
.theme-default-dark .mat-mdc-form-field-focus-overlay {
  background-color: rgba(255, 255, 255, 0.87);
}
.theme-default-dark .mat-mdc-form-field:hover .mat-mdc-form-field-focus-overlay {
  opacity: 0.08;
}
.theme-default-dark .mat-mdc-form-field.mat-focused .mat-mdc-form-field-focus-overlay {
  opacity: 0.24;
}
.theme-default-dark select.mat-mdc-form-field-input-control:not(.mat-mdc-native-select-inline) option {
  color: rgba(0, 0, 0, 0.87);
}
.theme-default-dark select.mat-mdc-form-field-input-control:not(.mat-mdc-native-select-inline) option:disabled {
  color: rgba(0, 0, 0, 0.38);
}
.theme-default-dark .mat-mdc-form-field-type-mat-native-select .mat-mdc-form-field-infix::after {
  color: rgba(255, 255, 255, 0.54);
}
.theme-default-dark .mat-mdc-form-field-type-mat-native-select.mat-focused.mat-primary .mat-mdc-form-field-infix::after {
  color: rgba(138, 158, 168, 0.87);
}
.theme-default-dark .mat-mdc-form-field-type-mat-native-select.mat-focused.mat-accent .mat-mdc-form-field-infix::after {
  color: rgba(41, 121, 255, 0.87);
}
.theme-default-dark .mat-mdc-form-field-type-mat-native-select.mat-focused.mat-warn .mat-mdc-form-field-infix::after {
  color: rgba(242, 157, 157, 0.87);
}
.theme-default-dark .mat-mdc-form-field-type-mat-native-select.mat-form-field-disabled .mat-mdc-form-field-infix::after {
  color: rgba(255, 255, 255, 0.38);
}
.theme-default-dark .mat-mdc-form-field.mat-accent {
  --mdc-filled-text-field-caret-color: #2979ff;
  --mdc-filled-text-field-focus-active-indicator-color: #2979ff;
  --mdc-filled-text-field-focus-label-text-color: rgba(41, 121, 255, 0.87);
  --mdc-outlined-text-field-caret-color: #2979ff;
  --mdc-outlined-text-field-focus-outline-color: #2979ff;
  --mdc-outlined-text-field-focus-label-text-color: rgba(41, 121, 255, 0.87);
}
.theme-default-dark .mat-mdc-form-field.mat-warn {
  --mdc-filled-text-field-caret-color: #f29d9d;
  --mdc-filled-text-field-focus-active-indicator-color: #f29d9d;
  --mdc-filled-text-field-focus-label-text-color: rgba(242, 157, 157, 0.87);
  --mdc-outlined-text-field-caret-color: #f29d9d;
  --mdc-outlined-text-field-focus-outline-color: #f29d9d;
  --mdc-outlined-text-field-focus-label-text-color: rgba(242, 157, 157, 0.87);
}
.theme-default-dark .mat-mdc-form-field.mat-mdc-form-field.mat-mdc-form-field.mat-mdc-form-field.mat-mdc-form-field.mat-mdc-form-field .mdc-notched-outline__notch {
  border-left: 1px solid transparent;
}
.theme-default-dark [dir=rtl] .mat-mdc-form-field.mat-mdc-form-field.mat-mdc-form-field.mat-mdc-form-field.mat-mdc-form-field.mat-mdc-form-field .mdc-notched-outline__notch {
  border-left: none;
  border-right: 1px solid transparent;
}
.theme-default-dark .mat-mdc-form-field-infix {
  min-height: 56px;
}
.theme-default-dark .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-floating-label {
  top: 28px;
}
.theme-default-dark .mat-mdc-text-field-wrapper.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above {
  --mat-mdc-form-field-label-transform: translateY(
          -34.75px)
          scale(var(--mat-mdc-form-field-floating-label-scale, 0.75));
  transform: var(--mat-mdc-form-field-label-transform);
}
.theme-default-dark .mat-mdc-text-field-wrapper.mdc-text-field--outlined .mat-mdc-form-field-infix {
  padding-top: 16px;
  padding-bottom: 16px;
}
.theme-default-dark .mat-mdc-text-field-wrapper:not(.mdc-text-field--outlined) .mat-mdc-form-field-infix {
  padding-top: 24px;
  padding-bottom: 8px;
}
.theme-default-dark .mdc-text-field--no-label:not(.mdc-text-field--outlined):not(.mdc-text-field--textarea) .mat-mdc-form-field-infix {
  padding-top: 16px;
  padding-bottom: 16px;
}
.theme-default-dark {
  --mdc-filled-text-field-label-text-font: CircularStd, sans-serif, arial;
  --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;
  --mdc-outlined-text-field-label-text-font: CircularStd, sans-serif, arial;
  --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;
  --mat-form-field-container-text-font: CircularStd, sans-serif, arial;
  --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: CircularStd, sans-serif, arial;
  --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;
}

.theme-default-dark {
  --mat-select-panel-background-color: #424242;
  --mat-select-enabled-trigger-text-color: rgba(255, 255, 255, 0.87);
  --mat-select-disabled-trigger-text-color: rgba(255, 255, 255, 0.38);
  --mat-select-placeholder-text-color: rgba(255, 255, 255, 0.6);
  --mat-select-enabled-arrow-color: rgba(255, 255, 255, 0.54);
  --mat-select-disabled-arrow-color: rgba(255, 255, 255, 0.38);
  --mat-select-focused-arrow-color: rgba(138, 158, 168, 0.87);
  --mat-select-invalid-arrow-color: rgba(242, 157, 157, 0.87);
}
.theme-default-dark .mat-mdc-form-field.mat-accent {
  --mat-select-panel-background-color: #424242;
  --mat-select-enabled-trigger-text-color: rgba(255, 255, 255, 0.87);
  --mat-select-disabled-trigger-text-color: rgba(255, 255, 255, 0.38);
  --mat-select-placeholder-text-color: rgba(255, 255, 255, 0.6);
  --mat-select-enabled-arrow-color: rgba(255, 255, 255, 0.54);
  --mat-select-disabled-arrow-color: rgba(255, 255, 255, 0.38);
  --mat-select-focused-arrow-color: rgba(41, 121, 255, 0.87);
  --mat-select-invalid-arrow-color: rgba(242, 157, 157, 0.87);
}
.theme-default-dark .mat-mdc-form-field.mat-warn {
  --mat-select-panel-background-color: #424242;
  --mat-select-enabled-trigger-text-color: rgba(255, 255, 255, 0.87);
  --mat-select-disabled-trigger-text-color: rgba(255, 255, 255, 0.38);
  --mat-select-placeholder-text-color: rgba(255, 255, 255, 0.6);
  --mat-select-enabled-arrow-color: rgba(255, 255, 255, 0.54);
  --mat-select-disabled-arrow-color: rgba(255, 255, 255, 0.38);
  --mat-select-focused-arrow-color: rgba(242, 157, 157, 0.87);
  --mat-select-invalid-arrow-color: rgba(242, 157, 157, 0.87);
}

.theme-default-dark {
  --mat-select-trigger-text-font: CircularStd, sans-serif, arial;
  --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;
}

.theme-default-dark {
  --mat-autocomplete-background-color: #424242;
}

.theme-default-dark .mat-mdc-dialog-container {
  --mdc-dialog-container-color: #424242;
  --mdc-dialog-subhead-color: rgba(255, 255, 255, 0.87);
  --mdc-dialog-supporting-text-color: rgba(255, 255, 255, 0.6);
}
.theme-default-dark .mat-mdc-dialog-container {
  --mdc-dialog-subhead-font: CircularStd, sans-serif, arial;
  --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: CircularStd, sans-serif, arial;
  --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;
}
.theme-default-dark .mat-mdc-standard-chip {
  --mdc-chip-disabled-label-text-color: #fafafa;
  --mdc-chip-elevated-container-color: #595959;
  --mdc-chip-elevated-disabled-container-color: #595959;
  --mdc-chip-focus-state-layer-color: white;
  --mdc-chip-focus-state-layer-opacity: 0.12;
  --mdc-chip-label-text-color: #fafafa;
  --mdc-chip-with-icon-icon-color: #fafafa;
  --mdc-chip-with-icon-disabled-icon-color: #fafafa;
  --mdc-chip-with-icon-selected-icon-color: #fafafa;
  --mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #fafafa;
  --mdc-chip-with-trailing-icon-trailing-icon-color: #fafafa;
}
.theme-default-dark .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary, .theme-default-dark .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary {
  --mdc-chip-disabled-label-text-color: white;
  --mdc-chip-elevated-container-color: #8a9ea8;
  --mdc-chip-elevated-disabled-container-color: #8a9ea8;
  --mdc-chip-focus-state-layer-color: white;
  --mdc-chip-focus-state-layer-opacity: 0.12;
  --mdc-chip-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;
}
.theme-default-dark .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent, .theme-default-dark .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent {
  --mdc-chip-disabled-label-text-color: white;
  --mdc-chip-elevated-container-color: #2979ff;
  --mdc-chip-elevated-disabled-container-color: #2979ff;
  --mdc-chip-focus-state-layer-color: white;
  --mdc-chip-focus-state-layer-opacity: 0.12;
  --mdc-chip-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;
}
.theme-default-dark .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn, .theme-default-dark .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn {
  --mdc-chip-disabled-label-text-color: rgba(0, 0, 0, 0.87);
  --mdc-chip-elevated-container-color: #f29d9d;
  --mdc-chip-elevated-disabled-container-color: #f29d9d;
  --mdc-chip-focus-state-layer-color: white;
  --mdc-chip-focus-state-layer-opacity: 0.12;
  --mdc-chip-label-text-color: rgba(0, 0, 0, 0.87);
  --mdc-chip-with-icon-icon-color: rgba(0, 0, 0, 0.87);
  --mdc-chip-with-icon-disabled-icon-color: rgba(0, 0, 0, 0.87);
  --mdc-chip-with-icon-selected-icon-color: rgba(0, 0, 0, 0.87);
  --mdc-chip-with-trailing-icon-disabled-trailing-icon-color: rgba(0, 0, 0, 0.87);
  --mdc-chip-with-trailing-icon-trailing-icon-color: rgba(0, 0, 0, 0.87);
}
.theme-default-dark .mat-mdc-chip.mat-mdc-standard-chip {
  --mdc-chip-container-height: 32px;
}
.theme-default-dark .mat-mdc-standard-chip {
  --mdc-chip-label-text-font: CircularStd, sans-serif, arial;
  --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;
}
.theme-default-dark .mat-mdc-slide-toggle {
  --mdc-switch-selected-focus-state-layer-color: #a7b6be;
  --mdc-switch-selected-handle-color: #a7b6be;
  --mdc-switch-selected-hover-state-layer-color: #a7b6be;
  --mdc-switch-selected-pressed-state-layer-color: #a7b6be;
  --mdc-switch-selected-focus-handle-color: #c4cfd4;
  --mdc-switch-selected-hover-handle-color: #c4cfd4;
  --mdc-switch-selected-pressed-handle-color: #c4cfd4;
  --mdc-switch-selected-focus-track-color: #5a6a72;
  --mdc-switch-selected-hover-track-color: #5a6a72;
  --mdc-switch-selected-pressed-track-color: #5a6a72;
  --mdc-switch-selected-track-color: #5a6a72;
  --mdc-switch-disabled-selected-handle-color: #000;
  --mdc-switch-disabled-selected-icon-color: #212121;
  --mdc-switch-disabled-selected-track-color: #f5f5f5;
  --mdc-switch-disabled-unselected-handle-color: #000;
  --mdc-switch-disabled-unselected-icon-color: #212121;
  --mdc-switch-disabled-unselected-track-color: #f5f5f5;
  --mdc-switch-handle-surface-color: var(--mdc-theme-surface, #fff);
  --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-handle-shadow-color: black;
  --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);
  --mdc-switch-selected-icon-color: #212121;
  --mdc-switch-unselected-focus-handle-color: #fafafa;
  --mdc-switch-unselected-focus-state-layer-color: #f5f5f5;
  --mdc-switch-unselected-focus-track-color: #616161;
  --mdc-switch-unselected-handle-color: #9e9e9e;
  --mdc-switch-unselected-hover-handle-color: #fafafa;
  --mdc-switch-unselected-hover-state-layer-color: #f5f5f5;
  --mdc-switch-unselected-hover-track-color: #616161;
  --mdc-switch-unselected-icon-color: #212121;
  --mdc-switch-unselected-pressed-handle-color: #fafafa;
  --mdc-switch-unselected-pressed-state-layer-color: #f5f5f5;
  --mdc-switch-unselected-pressed-track-color: #616161;
  --mdc-switch-unselected-track-color: #616161;
}
.theme-default-dark .mat-mdc-slide-toggle .mdc-form-field {
  color: var(--mdc-theme-text-primary-on-background, white);
}
.theme-default-dark .mat-mdc-slide-toggle .mdc-switch--disabled + label {
  color: rgba(255, 255, 255, 0.5);
}
.theme-default-dark .mat-mdc-slide-toggle.mat-accent {
  --mdc-switch-selected-focus-state-layer-color: #628ce5;
  --mdc-switch-selected-handle-color: #628ce5;
  --mdc-switch-selected-hover-state-layer-color: #628ce5;
  --mdc-switch-selected-pressed-state-layer-color: #628ce5;
  --mdc-switch-selected-focus-handle-color: #8faded;
  --mdc-switch-selected-hover-handle-color: #8faded;
  --mdc-switch-selected-pressed-handle-color: #8faded;
  --mdc-switch-selected-focus-track-color: #1a53d6;
  --mdc-switch-selected-hover-track-color: #1a53d6;
  --mdc-switch-selected-pressed-track-color: #1a53d6;
  --mdc-switch-selected-track-color: #1a53d6;
}
.theme-default-dark .mat-mdc-slide-toggle.mat-warn {
  --mdc-switch-selected-focus-state-layer-color: #ed7575;
  --mdc-switch-selected-handle-color: #ed7575;
  --mdc-switch-selected-hover-state-layer-color: #ed7575;
  --mdc-switch-selected-pressed-state-layer-color: #ed7575;
  --mdc-switch-selected-focus-handle-color: #f29d9d;
  --mdc-switch-selected-hover-handle-color: #f29d9d;
  --mdc-switch-selected-pressed-handle-color: #f29d9d;
  --mdc-switch-selected-focus-track-color: #e23434;
  --mdc-switch-selected-hover-track-color: #e23434;
  --mdc-switch-selected-pressed-track-color: #e23434;
  --mdc-switch-selected-track-color: #e23434;
}
.theme-default-dark .mat-mdc-slide-toggle {
  --mdc-switch-state-layer-size: 48px;
}
.theme-default-dark .mat-mdc-slide-toggle {
  --mat-slide-toggle-label-text-font: CircularStd, sans-serif, arial;
  --mat-slide-toggle-label-text-size: 14px;
  --mat-slide-toggle-label-text-tracking: 0.0178571429em;
  --mat-slide-toggle-label-text-line-height: 20px;
  --mat-slide-toggle-label-text-weight: 400;
}
.theme-default-dark .mat-mdc-slide-toggle .mdc-form-field {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: Roboto, sans-serif;
  /* @alternate */
  font-family: var(--mdc-typography-body2-font-family, var(--mdc-typography-font-family, Roboto, sans-serif));
  font-size: 0.875rem;
  /* @alternate */
  font-size: var(--mdc-typography-body2-font-size, 0.875rem);
  line-height: 1.25rem;
  /* @alternate */
  line-height: var(--mdc-typography-body2-line-height, 1.25rem);
  font-weight: 400;
  /* @alternate */
  font-weight: var(--mdc-typography-body2-font-weight, 400);
  letter-spacing: 0.0178571429em;
  /* @alternate */
  letter-spacing: var(--mdc-typography-body2-letter-spacing, 0.0178571429em);
  text-decoration: inherit;
  /* @alternate */
  -webkit-text-decoration: var(--mdc-typography-body2-text-decoration, inherit);
          text-decoration: var(--mdc-typography-body2-text-decoration, inherit);
  text-transform: inherit;
  /* @alternate */
  text-transform: var(--mdc-typography-body2-text-transform, inherit);
}
.theme-default-dark .mat-mdc-radio-button .mdc-form-field {
  color: var(--mdc-theme-text-primary-on-background, white);
}
.theme-default-dark .mat-mdc-radio-button.mat-primary {
  --mdc-radio-disabled-selected-icon-color: #fff;
  --mdc-radio-disabled-unselected-icon-color: #fff;
  --mdc-radio-unselected-hover-icon-color: #eeeeee;
  --mdc-radio-unselected-icon-color: rgba(255, 255, 255, 0.54);
  --mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, 0.54);
  --mdc-radio-selected-focus-icon-color: #8a9ea8;
  --mdc-radio-selected-hover-icon-color: #8a9ea8;
  --mdc-radio-selected-icon-color: #8a9ea8;
  --mdc-radio-selected-pressed-icon-color: #8a9ea8;
  --mat-radio-ripple-color: #fff;
  --mat-radio-checked-ripple-color: #8a9ea8;
  --mat-radio-disabled-label-color: rgba(255, 255, 255, 0.5);
}
.theme-default-dark .mat-mdc-radio-button.mat-accent {
  --mdc-radio-disabled-selected-icon-color: #fff;
  --mdc-radio-disabled-unselected-icon-color: #fff;
  --mdc-radio-unselected-hover-icon-color: #eeeeee;
  --mdc-radio-unselected-icon-color: rgba(255, 255, 255, 0.54);
  --mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, 0.54);
  --mdc-radio-selected-focus-icon-color: #2979ff;
  --mdc-radio-selected-hover-icon-color: #2979ff;
  --mdc-radio-selected-icon-color: #2979ff;
  --mdc-radio-selected-pressed-icon-color: #2979ff;
  --mat-radio-ripple-color: #fff;
  --mat-radio-checked-ripple-color: #2979ff;
  --mat-radio-disabled-label-color: rgba(255, 255, 255, 0.5);
}
.theme-default-dark .mat-mdc-radio-button.mat-warn {
  --mdc-radio-disabled-selected-icon-color: #fff;
  --mdc-radio-disabled-unselected-icon-color: #fff;
  --mdc-radio-unselected-hover-icon-color: #eeeeee;
  --mdc-radio-unselected-icon-color: rgba(255, 255, 255, 0.54);
  --mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, 0.54);
  --mdc-radio-selected-focus-icon-color: #f29d9d;
  --mdc-radio-selected-hover-icon-color: #f29d9d;
  --mdc-radio-selected-icon-color: #f29d9d;
  --mdc-radio-selected-pressed-icon-color: #f29d9d;
  --mat-radio-ripple-color: #fff;
  --mat-radio-checked-ripple-color: #f29d9d;
  --mat-radio-disabled-label-color: rgba(255, 255, 255, 0.5);
}
.theme-default-dark .mat-mdc-radio-button .mdc-radio {
  --mdc-radio-state-layer-size: 40px;
}
.theme-default-dark .mat-mdc-radio-button .mdc-form-field {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: var(--mdc-typography-body2-font-family, var(--mdc-typography-font-family, CircularStd, sans-serif, arial));
  font-size: var(--mdc-typography-body2-font-size, 14px);
  line-height: var(--mdc-typography-body2-line-height, 20px);
  font-weight: var(--mdc-typography-body2-font-weight, 400);
  letter-spacing: var(--mdc-typography-body2-letter-spacing, 0.0178571429em);
  -webkit-text-decoration: var(--mdc-typography-body2-text-decoration, inherit);
          text-decoration: var(--mdc-typography-body2-text-decoration, inherit);
  text-transform: var(--mdc-typography-body2-text-transform, none);
}
.theme-default-dark .mat-mdc-slider {
  --mdc-slider-label-container-color: white;
  --mdc-slider-label-label-text-color: black;
  --mdc-slider-disabled-handle-color: #fff;
  --mdc-slider-disabled-active-track-color: #fff;
  --mdc-slider-disabled-inactive-track-color: #fff;
  --mdc-slider-with-tick-marks-disabled-container-color: #fff;
  --mat-mdc-slider-value-indicator-opacity: 0.9;
}
.theme-default-dark .mat-mdc-slider.mat-primary {
  --mdc-slider-handle-color: #8a9ea8;
  --mdc-slider-focus-handle-color: #8a9ea8;
  --mdc-slider-hover-handle-color: #8a9ea8;
  --mdc-slider-active-track-color: #8a9ea8;
  --mdc-slider-inactive-track-color: #8a9ea8;
  --mdc-slider-with-tick-marks-active-container-color: #000;
  --mdc-slider-with-tick-marks-inactive-container-color: #8a9ea8;
  --mat-mdc-slider-ripple-color: #8a9ea8;
  --mat-mdc-slider-hover-ripple-color: rgba(138, 158, 168, 0.05);
  --mat-mdc-slider-focus-ripple-color: rgba(138, 158, 168, 0.2);
}
.theme-default-dark .mat-mdc-slider.mat-accent {
  --mdc-slider-handle-color: #2979ff;
  --mdc-slider-focus-handle-color: #2979ff;
  --mdc-slider-hover-handle-color: #2979ff;
  --mdc-slider-active-track-color: #2979ff;
  --mdc-slider-inactive-track-color: #2979ff;
  --mdc-slider-with-tick-marks-active-container-color: #fff;
  --mdc-slider-with-tick-marks-inactive-container-color: #2979ff;
  --mat-mdc-slider-ripple-color: #2979ff;
  --mat-mdc-slider-hover-ripple-color: rgba(41, 121, 255, 0.05);
  --mat-mdc-slider-focus-ripple-color: rgba(41, 121, 255, 0.2);
}
.theme-default-dark .mat-mdc-slider.mat-warn {
  --mdc-slider-handle-color: #f29d9d;
  --mdc-slider-focus-handle-color: #f29d9d;
  --mdc-slider-hover-handle-color: #f29d9d;
  --mdc-slider-active-track-color: #f29d9d;
  --mdc-slider-inactive-track-color: #f29d9d;
  --mdc-slider-with-tick-marks-active-container-color: #000;
  --mdc-slider-with-tick-marks-inactive-container-color: #f29d9d;
  --mat-mdc-slider-ripple-color: #f29d9d;
  --mat-mdc-slider-hover-ripple-color: rgba(242, 157, 157, 0.05);
  --mat-mdc-slider-focus-ripple-color: rgba(242, 157, 157, 0.2);
}
.theme-default-dark .mat-mdc-slider {
  --mdc-slider-label-label-text-font: CircularStd, sans-serif, arial;
  --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;
}
.theme-default-dark {
  --mat-menu-item-label-text-color: white;
  --mat-menu-item-icon-color: white;
  --mat-menu-item-hover-state-layer-color: rgba(255, 255, 255, 0.08);
  --mat-menu-item-focus-state-layer-color: rgba(255, 255, 255, 0.08);
  --mat-menu-container-color: #424242;
}

.theme-default-dark {
  --mat-menu-item-label-text-font: CircularStd, sans-serif, arial;
  --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;
}

.theme-default-dark .mat-mdc-list-base {
  --mdc-list-list-item-label-text-color: white;
  --mdc-list-list-item-supporting-text-color: rgba(255, 255, 255, 0.7);
  --mdc-list-list-item-leading-icon-color: rgba(255, 255, 255, 0.5);
  --mdc-list-list-item-trailing-supporting-text-color: rgba(255, 255, 255, 0.5);
  --mdc-list-list-item-trailing-icon-color: rgba(255, 255, 255, 0.5);
  --mdc-list-list-item-selected-trailing-icon-color: rgba(255, 255, 255, 0.5);
  --mdc-list-list-item-disabled-label-text-color: white;
  --mdc-list-list-item-disabled-leading-icon-color: white;
  --mdc-list-list-item-disabled-trailing-icon-color: white;
  --mdc-list-list-item-hover-label-text-color: white;
  --mdc-list-list-item-hover-leading-icon-color: rgba(255, 255, 255, 0.5);
  --mdc-list-list-item-hover-trailing-icon-color: rgba(255, 255, 255, 0.5);
  --mdc-list-list-item-focus-label-text-color: white;
  --mdc-list-list-item-hover-state-layer-color: white;
  --mdc-list-list-item-hover-state-layer-opacity: 0.08;
  --mdc-list-list-item-focus-state-layer-color: white;
  --mdc-list-list-item-focus-state-layer-opacity: 0.24;
}
.theme-default-dark .mdc-list-item__start,
.theme-default-dark .mdc-list-item__end {
  --mdc-radio-disabled-selected-icon-color: #fff;
  --mdc-radio-disabled-unselected-icon-color: #fff;
  --mdc-radio-unselected-hover-icon-color: #eeeeee;
  --mdc-radio-unselected-icon-color: rgba(255, 255, 255, 0.54);
  --mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, 0.54);
  --mdc-radio-selected-focus-icon-color: #8a9ea8;
  --mdc-radio-selected-hover-icon-color: #8a9ea8;
  --mdc-radio-selected-icon-color: #8a9ea8;
  --mdc-radio-selected-pressed-icon-color: #8a9ea8;
}
.theme-default-dark .mat-accent .mdc-list-item__start,
.theme-default-dark .mat-accent .mdc-list-item__end {
  --mdc-radio-disabled-selected-icon-color: #fff;
  --mdc-radio-disabled-unselected-icon-color: #fff;
  --mdc-radio-unselected-hover-icon-color: #eeeeee;
  --mdc-radio-unselected-icon-color: rgba(255, 255, 255, 0.54);
  --mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, 0.54);
  --mdc-radio-selected-focus-icon-color: #2979ff;
  --mdc-radio-selected-hover-icon-color: #2979ff;
  --mdc-radio-selected-icon-color: #2979ff;
  --mdc-radio-selected-pressed-icon-color: #2979ff;
}
.theme-default-dark .mat-warn .mdc-list-item__start,
.theme-default-dark .mat-warn .mdc-list-item__end {
  --mdc-radio-disabled-selected-icon-color: #fff;
  --mdc-radio-disabled-unselected-icon-color: #fff;
  --mdc-radio-unselected-hover-icon-color: #eeeeee;
  --mdc-radio-unselected-icon-color: rgba(255, 255, 255, 0.54);
  --mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, 0.54);
  --mdc-radio-selected-focus-icon-color: #f29d9d;
  --mdc-radio-selected-hover-icon-color: #f29d9d;
  --mdc-radio-selected-icon-color: #f29d9d;
  --mdc-radio-selected-pressed-icon-color: #f29d9d;
}
.theme-default-dark .mat-mdc-list-option {
  --mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, 0.38);
  --mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, 0.38);
  --mdc-checkbox-selected-checkmark-color: #000;
  --mdc-checkbox-selected-focus-icon-color: #8a9ea8;
  --mdc-checkbox-selected-hover-icon-color: #8a9ea8;
  --mdc-checkbox-selected-icon-color: #8a9ea8;
  --mdc-checkbox-selected-pressed-icon-color: #8a9ea8;
  --mdc-checkbox-unselected-focus-icon-color: #eeeeee;
  --mdc-checkbox-unselected-hover-icon-color: #eeeeee;
  --mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, 0.54);
  --mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, 0.54);
  --mdc-checkbox-selected-focus-state-layer-color: #8a9ea8;
  --mdc-checkbox-selected-hover-state-layer-color: #8a9ea8;
  --mdc-checkbox-selected-pressed-state-layer-color: #8a9ea8;
  --mdc-checkbox-unselected-focus-state-layer-color: white;
  --mdc-checkbox-unselected-hover-state-layer-color: white;
  --mdc-checkbox-unselected-pressed-state-layer-color: white;
}
.theme-default-dark .mat-mdc-list-option.mat-accent {
  --mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, 0.38);
  --mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, 0.38);
  --mdc-checkbox-selected-checkmark-color: #fff;
  --mdc-checkbox-selected-focus-icon-color: #2979ff;
  --mdc-checkbox-selected-hover-icon-color: #2979ff;
  --mdc-checkbox-selected-icon-color: #2979ff;
  --mdc-checkbox-selected-pressed-icon-color: #2979ff;
  --mdc-checkbox-unselected-focus-icon-color: #eeeeee;
  --mdc-checkbox-unselected-hover-icon-color: #eeeeee;
  --mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, 0.54);
  --mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, 0.54);
  --mdc-checkbox-selected-focus-state-layer-color: #2979ff;
  --mdc-checkbox-selected-hover-state-layer-color: #2979ff;
  --mdc-checkbox-selected-pressed-state-layer-color: #2979ff;
  --mdc-checkbox-unselected-focus-state-layer-color: white;
  --mdc-checkbox-unselected-hover-state-layer-color: white;
  --mdc-checkbox-unselected-pressed-state-layer-color: white;
}
.theme-default-dark .mat-mdc-list-option.mat-warn {
  --mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, 0.38);
  --mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, 0.38);
  --mdc-checkbox-selected-checkmark-color: #000;
  --mdc-checkbox-selected-focus-icon-color: #f29d9d;
  --mdc-checkbox-selected-hover-icon-color: #f29d9d;
  --mdc-checkbox-selected-icon-color: #f29d9d;
  --mdc-checkbox-selected-pressed-icon-color: #f29d9d;
  --mdc-checkbox-unselected-focus-icon-color: #eeeeee;
  --mdc-checkbox-unselected-hover-icon-color: #eeeeee;
  --mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, 0.54);
  --mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, 0.54);
  --mdc-checkbox-selected-focus-state-layer-color: #f29d9d;
  --mdc-checkbox-selected-hover-state-layer-color: #f29d9d;
  --mdc-checkbox-selected-pressed-state-layer-color: #f29d9d;
  --mdc-checkbox-unselected-focus-state-layer-color: white;
  --mdc-checkbox-unselected-hover-state-layer-color: white;
  --mdc-checkbox-unselected-pressed-state-layer-color: white;
}
.theme-default-dark .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text,
.theme-default-dark .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text {
  color: #8a9ea8;
}
.theme-default-dark .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected.mdc-list-item--with-leading-icon .mdc-list-item__start,
.theme-default-dark .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated.mdc-list-item--with-leading-icon .mdc-list-item__start {
  color: #8a9ea8;
}
.theme-default-dark .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__start,
.theme-default-dark .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__content,
.theme-default-dark .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__end {
  opacity: 1;
}
.theme-default-dark .mat-mdc-list-base {
  --mdc-list-list-item-one-line-container-height: 48px;
  --mdc-list-list-item-two-line-container-height: 64px;
  --mdc-list-list-item-three-line-container-height: 88px;
}
.theme-default-dark .mat-mdc-list-item.mdc-list-item--with-leading-avatar.mdc-list-item--with-one-line, .theme-default-dark .mat-mdc-list-item.mdc-list-item--with-leading-checkbox.mdc-list-item--with-one-line, .theme-default-dark .mat-mdc-list-item.mdc-list-item--with-leading-icon.mdc-list-item--with-one-line {
  height: 56px;
}
.theme-default-dark .mat-mdc-list-item.mdc-list-item--with-leading-avatar.mdc-list-item--with-two-lines, .theme-default-dark .mat-mdc-list-item.mdc-list-item--with-leading-checkbox.mdc-list-item--with-two-lines, .theme-default-dark .mat-mdc-list-item.mdc-list-item--with-leading-icon.mdc-list-item--with-two-lines {
  height: 72px;
}
.theme-default-dark .mat-mdc-list-base {
  --mdc-list-list-item-label-text-font: CircularStd, sans-serif, arial;
  --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: CircularStd, sans-serif, arial;
  --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: CircularStd, sans-serif, arial;
  --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;
}
.theme-default-dark .mdc-list-group__subheader {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  font-family: CircularStd, sans-serif, arial;
  letter-spacing: 0.009375em;
}
.theme-default-dark {
  --mat-paginator-container-text-color: rgba(255, 255, 255, 0.87);
  --mat-paginator-container-background-color: #424242;
  --mat-paginator-enabled-icon-color: rgba(255, 255, 255, 0.54);
  --mat-paginator-disabled-icon-color: rgba(255, 255, 255, 0.12);
}

.theme-default-dark {
  --mat-paginator-container-size: 56px;
}

.theme-default-dark .mat-mdc-paginator .mat-mdc-form-field-infix {
  min-height: 40px;
}
.theme-default-dark .mat-mdc-paginator .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-floating-label {
  top: 20px;
}
.theme-default-dark .mat-mdc-paginator .mat-mdc-text-field-wrapper.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above {
  --mat-mdc-form-field-label-transform: translateY(
          -26.75px)
          scale(var(--mat-mdc-form-field-floating-label-scale, 0.75));
  transform: var(--mat-mdc-form-field-label-transform);
}
.theme-default-dark .mat-mdc-paginator .mat-mdc-text-field-wrapper.mdc-text-field--outlined .mat-mdc-form-field-infix {
  padding-top: 8px;
  padding-bottom: 8px;
}
.theme-default-dark .mat-mdc-paginator .mat-mdc-text-field-wrapper:not(.mdc-text-field--outlined) .mat-mdc-form-field-infix {
  padding-top: 8px;
  padding-bottom: 8px;
}
.theme-default-dark .mat-mdc-paginator .mdc-text-field--no-label:not(.mdc-text-field--outlined):not(.mdc-text-field--textarea) .mat-mdc-form-field-infix {
  padding-top: 8px;
  padding-bottom: 8px;
}
.theme-default-dark .mat-mdc-paginator .mat-mdc-text-field-wrapper:not(.mdc-text-field--outlined) .mat-mdc-floating-label {
  display: none;
}
.theme-default-dark {
  --mat-paginator-container-text-font: CircularStd, sans-serif, arial;
  --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;
}

.theme-default-dark .mat-mdc-tab-group, .theme-default-dark .mat-mdc-tab-nav-bar {
  --mdc-tab-indicator-active-indicator-color: #8a9ea8;
  --mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, 0.5);
  --mat-tab-header-pagination-icon-color: #fff;
  --mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, 0.6);
  --mat-tab-header-active-label-text-color: #8a9ea8;
  --mat-tab-header-active-ripple-color: #8a9ea8;
  --mat-tab-header-inactive-ripple-color: #8a9ea8;
  --mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, 0.6);
  --mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, 0.6);
  --mat-tab-header-active-focus-label-text-color: #8a9ea8;
  --mat-tab-header-active-hover-label-text-color: #8a9ea8;
  --mat-tab-header-active-focus-indicator-color: #8a9ea8;
  --mat-tab-header-active-hover-indicator-color: #8a9ea8;
}
.theme-default-dark .mat-mdc-tab-group.mat-accent, .theme-default-dark .mat-mdc-tab-nav-bar.mat-accent {
  --mdc-tab-indicator-active-indicator-color: #2979ff;
  --mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, 0.5);
  --mat-tab-header-pagination-icon-color: #fff;
  --mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, 0.6);
  --mat-tab-header-active-label-text-color: #2979ff;
  --mat-tab-header-active-ripple-color: #2979ff;
  --mat-tab-header-inactive-ripple-color: #2979ff;
  --mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, 0.6);
  --mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, 0.6);
  --mat-tab-header-active-focus-label-text-color: #2979ff;
  --mat-tab-header-active-hover-label-text-color: #2979ff;
  --mat-tab-header-active-focus-indicator-color: #2979ff;
  --mat-tab-header-active-hover-indicator-color: #2979ff;
}
.theme-default-dark .mat-mdc-tab-group.mat-warn, .theme-default-dark .mat-mdc-tab-nav-bar.mat-warn {
  --mdc-tab-indicator-active-indicator-color: #f29d9d;
  --mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, 0.5);
  --mat-tab-header-pagination-icon-color: #fff;
  --mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, 0.6);
  --mat-tab-header-active-label-text-color: #f29d9d;
  --mat-tab-header-active-ripple-color: #f29d9d;
  --mat-tab-header-inactive-ripple-color: #f29d9d;
  --mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, 0.6);
  --mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, 0.6);
  --mat-tab-header-active-focus-label-text-color: #f29d9d;
  --mat-tab-header-active-hover-label-text-color: #f29d9d;
  --mat-tab-header-active-focus-indicator-color: #f29d9d;
  --mat-tab-header-active-hover-indicator-color: #f29d9d;
}
.theme-default-dark .mat-mdc-tab-group.mat-background-primary, .theme-default-dark .mat-mdc-tab-nav-bar.mat-background-primary {
  --mat-tab-header-with-background-background-color: #8a9ea8;
  --mat-tab-header-with-background-foreground-color: white;
}
.theme-default-dark .mat-mdc-tab-group.mat-background-accent, .theme-default-dark .mat-mdc-tab-nav-bar.mat-background-accent {
  --mat-tab-header-with-background-background-color: #2979ff;
  --mat-tab-header-with-background-foreground-color: white;
}
.theme-default-dark .mat-mdc-tab-group.mat-background-warn, .theme-default-dark .mat-mdc-tab-nav-bar.mat-background-warn {
  --mat-tab-header-with-background-background-color: #f29d9d;
  --mat-tab-header-with-background-foreground-color: rgba(0, 0, 0, 0.87);
}
.theme-default-dark .mat-mdc-tab-header {
  --mdc-secondary-navigation-tab-container-height: 48px;
}
.theme-default-dark .mat-mdc-tab-header {
  --mat-tab-header-label-text-font: CircularStd, sans-serif, arial;
  --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;
}
.theme-default-dark {
  --mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, 0.38);
  --mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, 0.38);
  --mdc-checkbox-selected-checkmark-color: #fff;
  --mdc-checkbox-selected-focus-icon-color: #2979ff;
  --mdc-checkbox-selected-hover-icon-color: #2979ff;
  --mdc-checkbox-selected-icon-color: #2979ff;
  --mdc-checkbox-selected-pressed-icon-color: #2979ff;
  --mdc-checkbox-unselected-focus-icon-color: #eeeeee;
  --mdc-checkbox-unselected-hover-icon-color: #eeeeee;
  --mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, 0.54);
  --mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, 0.54);
  --mdc-checkbox-selected-focus-state-layer-color: #2979ff;
  --mdc-checkbox-selected-hover-state-layer-color: #2979ff;
  --mdc-checkbox-selected-pressed-state-layer-color: #2979ff;
  --mdc-checkbox-unselected-focus-state-layer-color: white;
  --mdc-checkbox-unselected-hover-state-layer-color: white;
  --mdc-checkbox-unselected-pressed-state-layer-color: white;
}

.theme-default-dark .mat-mdc-checkbox.mat-primary {
  --mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, 0.38);
  --mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, 0.38);
  --mdc-checkbox-selected-checkmark-color: #000;
  --mdc-checkbox-selected-focus-icon-color: #8a9ea8;
  --mdc-checkbox-selected-hover-icon-color: #8a9ea8;
  --mdc-checkbox-selected-icon-color: #8a9ea8;
  --mdc-checkbox-selected-pressed-icon-color: #8a9ea8;
  --mdc-checkbox-unselected-focus-icon-color: #eeeeee;
  --mdc-checkbox-unselected-hover-icon-color: #eeeeee;
  --mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, 0.54);
  --mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, 0.54);
  --mdc-checkbox-selected-focus-state-layer-color: #8a9ea8;
  --mdc-checkbox-selected-hover-state-layer-color: #8a9ea8;
  --mdc-checkbox-selected-pressed-state-layer-color: #8a9ea8;
  --mdc-checkbox-unselected-focus-state-layer-color: white;
  --mdc-checkbox-unselected-hover-state-layer-color: white;
  --mdc-checkbox-unselected-pressed-state-layer-color: white;
}
.theme-default-dark .mat-mdc-checkbox.mat-warn {
  --mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, 0.38);
  --mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, 0.38);
  --mdc-checkbox-selected-checkmark-color: #000;
  --mdc-checkbox-selected-focus-icon-color: #f29d9d;
  --mdc-checkbox-selected-hover-icon-color: #f29d9d;
  --mdc-checkbox-selected-icon-color: #f29d9d;
  --mdc-checkbox-selected-pressed-icon-color: #f29d9d;
  --mdc-checkbox-unselected-focus-icon-color: #eeeeee;
  --mdc-checkbox-unselected-hover-icon-color: #eeeeee;
  --mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, 0.54);
  --mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, 0.54);
  --mdc-checkbox-selected-focus-state-layer-color: #f29d9d;
  --mdc-checkbox-selected-hover-state-layer-color: #f29d9d;
  --mdc-checkbox-selected-pressed-state-layer-color: #f29d9d;
  --mdc-checkbox-unselected-focus-state-layer-color: white;
  --mdc-checkbox-unselected-hover-state-layer-color: white;
  --mdc-checkbox-unselected-pressed-state-layer-color: white;
}
.theme-default-dark .mat-mdc-checkbox .mdc-form-field {
  color: var(--mdc-theme-text-primary-on-background, white);
}
.theme-default-dark .mat-mdc-checkbox.mat-mdc-checkbox-disabled label {
  color: rgba(255, 255, 255, 0.5);
}
.theme-default-dark {
  --mdc-checkbox-state-layer-size: 40px;
}

.theme-default-dark .mat-mdc-checkbox .mdc-form-field {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: var(--mdc-typography-body2-font-family, var(--mdc-typography-font-family, CircularStd, sans-serif, arial));
  font-size: var(--mdc-typography-body2-font-size, 14px);
  line-height: var(--mdc-typography-body2-line-height, 20px);
  font-weight: var(--mdc-typography-body2-font-weight, 400);
  letter-spacing: var(--mdc-typography-body2-letter-spacing, 0.0178571429em);
  -webkit-text-decoration: var(--mdc-typography-body2-text-decoration, inherit);
          text-decoration: var(--mdc-typography-body2-text-decoration, inherit);
  text-transform: var(--mdc-typography-body2-text-transform, none);
}
.theme-default-dark .mat-mdc-button.mat-unthemed {
  --mdc-text-button-label-text-color: #fff;
}
.theme-default-dark .mat-mdc-button.mat-primary {
  --mdc-text-button-label-text-color: #8a9ea8;
}
.theme-default-dark .mat-mdc-button.mat-accent {
  --mdc-text-button-label-text-color: #2979ff;
}
.theme-default-dark .mat-mdc-button.mat-warn {
  --mdc-text-button-label-text-color: #f29d9d;
}
.theme-default-dark .mat-mdc-button[disabled][disabled] {
  --mdc-text-button-disabled-label-text-color: rgba(255, 255, 255, 0.5);
  --mdc-text-button-label-text-color: rgba(255, 255, 255, 0.5);
}
.theme-default-dark .mat-mdc-unelevated-button.mat-unthemed {
  --mdc-filled-button-container-color: #424242;
  --mdc-filled-button-label-text-color: #fff;
}
.theme-default-dark .mat-mdc-unelevated-button.mat-primary {
  --mdc-filled-button-container-color: #8a9ea8;
  --mdc-filled-button-label-text-color: #000;
}
.theme-default-dark .mat-mdc-unelevated-button.mat-accent {
  --mdc-filled-button-container-color: #2979ff;
  --mdc-filled-button-label-text-color: #fff;
}
.theme-default-dark .mat-mdc-unelevated-button.mat-warn {
  --mdc-filled-button-container-color: #f29d9d;
  --mdc-filled-button-label-text-color: #000;
}
.theme-default-dark .mat-mdc-unelevated-button[disabled][disabled] {
  --mdc-filled-button-disabled-container-color: rgba(255, 255, 255, 0.12);
  --mdc-filled-button-disabled-label-text-color: rgba(255, 255, 255, 0.5);
  --mdc-filled-button-container-color: rgba(255, 255, 255, 0.12);
  --mdc-filled-button-label-text-color: rgba(255, 255, 255, 0.5);
}
.theme-default-dark .mat-mdc-raised-button.mat-unthemed {
  --mdc-protected-button-container-color: #424242;
  --mdc-protected-button-label-text-color: #fff;
}
.theme-default-dark .mat-mdc-raised-button.mat-primary {
  --mdc-protected-button-container-color: #8a9ea8;
  --mdc-protected-button-label-text-color: #000;
}
.theme-default-dark .mat-mdc-raised-button.mat-accent {
  --mdc-protected-button-container-color: #2979ff;
  --mdc-protected-button-label-text-color: #fff;
}
.theme-default-dark .mat-mdc-raised-button.mat-warn {
  --mdc-protected-button-container-color: #f29d9d;
  --mdc-protected-button-label-text-color: #000;
}
.theme-default-dark .mat-mdc-raised-button[disabled][disabled] {
  --mdc-protected-button-disabled-container-color: rgba(255, 255, 255, 0.12);
  --mdc-protected-button-disabled-label-text-color: rgba(255, 255, 255, 0.5);
  --mdc-protected-button-container-color: rgba(255, 255, 255, 0.12);
  --mdc-protected-button-label-text-color: rgba(255, 255, 255, 0.5);
  --mdc-protected-button-container-elevation: 0;
}
.theme-default-dark .mat-mdc-outlined-button {
  --mdc-outlined-button-outline-color: rgba(255, 255, 255, 0.12);
}
.theme-default-dark .mat-mdc-outlined-button.mat-unthemed {
  --mdc-outlined-button-label-text-color: #fff;
}
.theme-default-dark .mat-mdc-outlined-button.mat-primary {
  --mdc-outlined-button-label-text-color: #8a9ea8;
}
.theme-default-dark .mat-mdc-outlined-button.mat-accent {
  --mdc-outlined-button-label-text-color: #2979ff;
}
.theme-default-dark .mat-mdc-outlined-button.mat-warn {
  --mdc-outlined-button-label-text-color: #f29d9d;
}
.theme-default-dark .mat-mdc-outlined-button[disabled][disabled] {
  --mdc-outlined-button-label-text-color: rgba(255, 255, 255, 0.5);
  --mdc-outlined-button-disabled-label-text-color: rgba(255, 255, 255, 0.5);
  --mdc-outlined-button-outline-color: rgba(255, 255, 255, 0.12);
  --mdc-outlined-button-disabled-outline-color: rgba(255, 255, 255, 0.12);
}
.theme-default-dark .mat-mdc-button, .theme-default-dark .mat-mdc-outlined-button {
  --mat-mdc-button-persistent-ripple-color: #fff;
  --mat-mdc-button-ripple-color: rgba(255, 255, 255, 0.1);
}
.theme-default-dark .mat-mdc-button:hover .mat-mdc-button-persistent-ripple::before, .theme-default-dark .mat-mdc-outlined-button:hover .mat-mdc-button-persistent-ripple::before {
  opacity: 0.08;
}
.theme-default-dark .mat-mdc-button.cdk-program-focused .mat-mdc-button-persistent-ripple::before, .theme-default-dark .mat-mdc-button.cdk-keyboard-focused .mat-mdc-button-persistent-ripple::before, .theme-default-dark .mat-mdc-outlined-button.cdk-program-focused .mat-mdc-button-persistent-ripple::before, .theme-default-dark .mat-mdc-outlined-button.cdk-keyboard-focused .mat-mdc-button-persistent-ripple::before {
  opacity: 0.24;
}
.theme-default-dark .mat-mdc-button:active .mat-mdc-button-persistent-ripple::before, .theme-default-dark .mat-mdc-outlined-button:active .mat-mdc-button-persistent-ripple::before {
  opacity: 0.24;
}
.theme-default-dark .mat-mdc-button.mat-primary, .theme-default-dark .mat-mdc-outlined-button.mat-primary {
  --mat-mdc-button-persistent-ripple-color: #8a9ea8;
  --mat-mdc-button-ripple-color: rgba(138, 158, 168, 0.1);
}
.theme-default-dark .mat-mdc-button.mat-accent, .theme-default-dark .mat-mdc-outlined-button.mat-accent {
  --mat-mdc-button-persistent-ripple-color: #2979ff;
  --mat-mdc-button-ripple-color: rgba(41, 121, 255, 0.1);
}
.theme-default-dark .mat-mdc-button.mat-warn, .theme-default-dark .mat-mdc-outlined-button.mat-warn {
  --mat-mdc-button-persistent-ripple-color: #f29d9d;
  --mat-mdc-button-ripple-color: rgba(242, 157, 157, 0.1);
}
.theme-default-dark .mat-mdc-raised-button, .theme-default-dark .mat-mdc-unelevated-button {
  --mat-mdc-button-persistent-ripple-color: #fff;
  --mat-mdc-button-ripple-color: rgba(255, 255, 255, 0.1);
}
.theme-default-dark .mat-mdc-raised-button:hover .mat-mdc-button-persistent-ripple::before, .theme-default-dark .mat-mdc-unelevated-button:hover .mat-mdc-button-persistent-ripple::before {
  opacity: 0.08;
}
.theme-default-dark .mat-mdc-raised-button.cdk-program-focused .mat-mdc-button-persistent-ripple::before, .theme-default-dark .mat-mdc-raised-button.cdk-keyboard-focused .mat-mdc-button-persistent-ripple::before, .theme-default-dark .mat-mdc-unelevated-button.cdk-program-focused .mat-mdc-button-persistent-ripple::before, .theme-default-dark .mat-mdc-unelevated-button.cdk-keyboard-focused .mat-mdc-button-persistent-ripple::before {
  opacity: 0.24;
}
.theme-default-dark .mat-mdc-raised-button:active .mat-mdc-button-persistent-ripple::before, .theme-default-dark .mat-mdc-unelevated-button:active .mat-mdc-button-persistent-ripple::before {
  opacity: 0.24;
}
.theme-default-dark .mat-mdc-raised-button.mat-primary, .theme-default-dark .mat-mdc-unelevated-button.mat-primary {
  --mat-mdc-button-persistent-ripple-color: #000;
  --mat-mdc-button-ripple-color: rgba(0, 0, 0, 0.1);
}
.theme-default-dark .mat-mdc-raised-button.mat-accent, .theme-default-dark .mat-mdc-unelevated-button.mat-accent {
  --mat-mdc-button-persistent-ripple-color: #fff;
  --mat-mdc-button-ripple-color: rgba(255, 255, 255, 0.1);
}
.theme-default-dark .mat-mdc-raised-button.mat-warn, .theme-default-dark .mat-mdc-unelevated-button.mat-warn {
  --mat-mdc-button-persistent-ripple-color: #000;
  --mat-mdc-button-ripple-color: rgba(0, 0, 0, 0.1);
}
.theme-default-dark .mat-mdc-button.mat-mdc-button-base,
.theme-default-dark .mat-mdc-raised-button.mat-mdc-button-base,
.theme-default-dark .mat-mdc-unelevated-button.mat-mdc-button-base,
.theme-default-dark .mat-mdc-outlined-button.mat-mdc-button-base {
  height: 36px;
}
.theme-default-dark .mdc-button {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: var(--mdc-typography-button-font-family, var(--mdc-typography-font-family, CircularStd, sans-serif, arial));
  font-size: var(--mdc-typography-button-font-size, 14px);
  line-height: var(--mdc-typography-button-line-height, 36px);
  font-weight: var(--mdc-typography-button-font-weight, 500);
  letter-spacing: var(--mdc-typography-button-letter-spacing, 0.0892857143em);
  -webkit-text-decoration: var(--mdc-typography-button-text-decoration, none);
          text-decoration: var(--mdc-typography-button-text-decoration, none);
  text-transform: var(--mdc-typography-button-text-transform, none);
}
.theme-default-dark .mat-mdc-icon-button {
  --mat-mdc-button-persistent-ripple-color: #000;
  --mat-mdc-button-ripple-color: rgba(0, 0, 0, 0.1);
  --mdc-icon-button-icon-color: inherit;
  --mat-mdc-button-persistent-ripple-color: #fff;
  --mat-mdc-button-ripple-color: rgba(255, 255, 255, 0.1);
}
.theme-default-dark .mat-mdc-icon-button:hover .mat-mdc-button-persistent-ripple::before {
  opacity: 0.08;
}
.theme-default-dark .mat-mdc-icon-button.cdk-program-focused .mat-mdc-button-persistent-ripple::before, .theme-default-dark .mat-mdc-icon-button.cdk-keyboard-focused .mat-mdc-button-persistent-ripple::before {
  opacity: 0.24;
}
.theme-default-dark .mat-mdc-icon-button:active .mat-mdc-button-persistent-ripple::before {
  opacity: 0.24;
}
.theme-default-dark .mat-mdc-icon-button.mat-primary {
  --mat-mdc-button-persistent-ripple-color: #6200ee;
  --mat-mdc-button-ripple-color: rgba(98, 0, 238, 0.1);
}
.theme-default-dark .mat-mdc-icon-button.mat-accent {
  --mat-mdc-button-persistent-ripple-color: #018786;
  --mat-mdc-button-ripple-color: rgba(1, 135, 134, 0.1);
}
.theme-default-dark .mat-mdc-icon-button.mat-warn {
  --mat-mdc-button-persistent-ripple-color: #b00020;
  --mat-mdc-button-ripple-color: rgba(176, 0, 32, 0.1);
}
.theme-default-dark .mat-mdc-icon-button.mat-primary {
  --mdc-icon-button-icon-color: #8a9ea8;
  --mat-mdc-button-persistent-ripple-color: #8a9ea8;
  --mat-mdc-button-ripple-color: rgba(138, 158, 168, 0.1);
}
.theme-default-dark .mat-mdc-icon-button.mat-accent {
  --mdc-icon-button-icon-color: #2979ff;
  --mat-mdc-button-persistent-ripple-color: #2979ff;
  --mat-mdc-button-ripple-color: rgba(41, 121, 255, 0.1);
}
.theme-default-dark .mat-mdc-icon-button.mat-warn {
  --mdc-icon-button-icon-color: #f29d9d;
  --mat-mdc-button-persistent-ripple-color: #f29d9d;
  --mat-mdc-button-ripple-color: rgba(242, 157, 157, 0.1);
}
.theme-default-dark .mat-mdc-icon-button[disabled][disabled] {
  --mdc-icon-button-icon-color: rgba(255, 255, 255, 0.5);
  --mdc-icon-button-disabled-icon-color: rgba(255, 255, 255, 0.5);
}
.theme-default-dark .mat-mdc-icon-button.mat-mdc-button-base {
  --mdc-icon-button-state-layer-size: 48px;
  width: var(--mdc-icon-button-state-layer-size);
  height: var(--mdc-icon-button-state-layer-size);
  padding: 12px;
}
.theme-default-dark .mat-mdc-fab,
.theme-default-dark .mat-mdc-mini-fab {
  --mat-mdc-button-persistent-ripple-color: #fff;
  --mat-mdc-button-ripple-color: rgba(255, 255, 255, 0.1);
}
.theme-default-dark .mat-mdc-fab:hover .mat-mdc-button-persistent-ripple::before,
.theme-default-dark .mat-mdc-mini-fab:hover .mat-mdc-button-persistent-ripple::before {
  opacity: 0.08;
}
.theme-default-dark .mat-mdc-fab.cdk-program-focused .mat-mdc-button-persistent-ripple::before, .theme-default-dark .mat-mdc-fab.cdk-keyboard-focused .mat-mdc-button-persistent-ripple::before,
.theme-default-dark .mat-mdc-mini-fab.cdk-program-focused .mat-mdc-button-persistent-ripple::before,
.theme-default-dark .mat-mdc-mini-fab.cdk-keyboard-focused .mat-mdc-button-persistent-ripple::before {
  opacity: 0.24;
}
.theme-default-dark .mat-mdc-fab:active .mat-mdc-button-persistent-ripple::before,
.theme-default-dark .mat-mdc-mini-fab:active .mat-mdc-button-persistent-ripple::before {
  opacity: 0.24;
}
.theme-default-dark .mat-mdc-fab.mat-primary,
.theme-default-dark .mat-mdc-mini-fab.mat-primary {
  --mat-mdc-button-persistent-ripple-color: #000;
  --mat-mdc-button-ripple-color: rgba(0, 0, 0, 0.1);
}
.theme-default-dark .mat-mdc-fab.mat-accent,
.theme-default-dark .mat-mdc-mini-fab.mat-accent {
  --mat-mdc-button-persistent-ripple-color: #fff;
  --mat-mdc-button-ripple-color: rgba(255, 255, 255, 0.1);
}
.theme-default-dark .mat-mdc-fab.mat-warn,
.theme-default-dark .mat-mdc-mini-fab.mat-warn {
  --mat-mdc-button-persistent-ripple-color: #000;
  --mat-mdc-button-ripple-color: rgba(0, 0, 0, 0.1);
}
.theme-default-dark .mat-mdc-fab[disabled][disabled],
.theme-default-dark .mat-mdc-mini-fab[disabled][disabled] {
  --mdc-fab-container-color: rgba(255, 255, 255, 0.12);
  --mdc-fab-icon-color: rgba(255, 255, 255, 0.5);
  --mat-mdc-fab-color: rgba(255, 255, 255, 0.5);
}
.theme-default-dark .mat-mdc-fab.mat-unthemed,
.theme-default-dark .mat-mdc-mini-fab.mat-unthemed {
  --mdc-fab-container-color: #424242;
  --mdc-fab-icon-color: white;
  --mat-mdc-fab-color: #fff;
}
.theme-default-dark .mat-mdc-fab.mat-primary,
.theme-default-dark .mat-mdc-mini-fab.mat-primary {
  --mdc-fab-container-color: #8a9ea8;
  --mdc-fab-icon-color: black;
  --mat-mdc-fab-color: #000;
}
.theme-default-dark .mat-mdc-fab.mat-accent,
.theme-default-dark .mat-mdc-mini-fab.mat-accent {
  --mdc-fab-container-color: #2979ff;
  --mdc-fab-icon-color: white;
  --mat-mdc-fab-color: #fff;
}
.theme-default-dark .mat-mdc-fab.mat-warn,
.theme-default-dark .mat-mdc-mini-fab.mat-warn {
  --mdc-fab-container-color: #f29d9d;
  --mdc-fab-icon-color: black;
  --mat-mdc-fab-color: #000;
}
.theme-default-dark .mdc-fab--extended {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: var(--mdc-typography-button-font-family, var(--mdc-typography-font-family, CircularStd, sans-serif, arial));
  font-size: var(--mdc-typography-button-font-size, 14px);
  line-height: var(--mdc-typography-button-line-height, 36px);
  font-weight: var(--mdc-typography-button-font-weight, 500);
  letter-spacing: var(--mdc-typography-button-letter-spacing, 0.0892857143em);
  -webkit-text-decoration: var(--mdc-typography-button-text-decoration, none);
          text-decoration: var(--mdc-typography-button-text-decoration, none);
  text-transform: var(--mdc-typography-button-text-transform, none);
}
.theme-default-dark .mat-mdc-extended-fab {
  --mdc-extended-fab-label-text-font: CircularStd, sans-serif, arial;
  --mdc-extended-fab-label-text-size: 14px;
  --mdc-extended-fab-label-text-tracking: 0.0892857143em;
  --mdc-extended-fab-label-text-weight: 500;
}
.theme-default-dark .mat-mdc-snack-bar-container {
  --mdc-snackbar-container-color: #d9d9d9;
  --mdc-snackbar-supporting-text-color: rgba(66, 66, 66, 0.87);
  --mat-snack-bar-button-color: rgba(0, 0, 0, 0.87);
}
.theme-default-dark .mat-mdc-snack-bar-container {
  --mdc-snackbar-supporting-text-font: CircularStd, sans-serif, arial;
  --mdc-snackbar-supporting-text-line-height: 20px;
  --mdc-snackbar-supporting-text-size: 14px;
  --mdc-snackbar-supporting-text-weight: 400;
}
.theme-default-dark .mat-mdc-progress-spinner {
  --mdc-circular-progress-active-indicator-color: #8a9ea8;
}
.theme-default-dark .mat-mdc-progress-spinner.mat-accent {
  --mdc-circular-progress-active-indicator-color: #2979ff;
}
.theme-default-dark .mat-mdc-progress-spinner.mat-warn {
  --mdc-circular-progress-active-indicator-color: #f29d9d;
}
.theme-default-dark .mat-badge {
  position: relative;
}
.theme-default-dark .mat-badge.mat-badge {
  overflow: visible;
}
.theme-default-dark .mat-badge-content {
  position: absolute;
  text-align: center;
  display: inline-block;
  border-radius: 50%;
  transition: transform 200ms ease-in-out;
  transform: scale(0.6);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  pointer-events: none;
  background-color: var(--mat-badge-background-color);
  color: var(--mat-badge-text-color);
  font-family: Roboto, sans-serif;
  /* @alternate */
  font-family: var(--mat-badge-text-font, Roboto, sans-serif);
  font-size: 12px;
  /* @alternate */
  font-size: var(--mat-badge-text-size, 12px);
  font-weight: 600;
  /* @alternate */
  font-weight: var(--mat-badge-text-weight, 600);
}
.cdk-high-contrast-active .theme-default-dark .mat-badge-content {
  outline: solid 1px;
  border-radius: 0;
}

.theme-default-dark .mat-badge-disabled .mat-badge-content {
  background-color: var(--mat-badge-disabled-state-background-color);
  color: var(--mat-badge-disabled-state-text-color);
}
.theme-default-dark .mat-badge-hidden .mat-badge-content {
  display: none;
}
.theme-default-dark .ng-animate-disabled .mat-badge-content,
.theme-default-dark .mat-badge-content._mat-animation-noopable {
  transition: none;
}
.theme-default-dark .mat-badge-content.mat-badge-active {
  transform: none;
}
.theme-default-dark .mat-badge-small .mat-badge-content {
  width: 16px;
  height: 16px;
  line-height: 16px;
  font-size: 9px;
  /* @alternate */
  font-size: var(--mat-badge-small-size-text-size, 9px);
}
.theme-default-dark .mat-badge-small.mat-badge-above .mat-badge-content {
  top: -8px;
}
.theme-default-dark .mat-badge-small.mat-badge-below .mat-badge-content {
  bottom: -8px;
}
.theme-default-dark .mat-badge-small.mat-badge-before .mat-badge-content {
  left: -16px;
}
[dir=rtl] .theme-default-dark .mat-badge-small.mat-badge-before .mat-badge-content {
  left: auto;
  right: -16px;
}
.theme-default-dark .mat-badge-small.mat-badge-after .mat-badge-content {
  right: -16px;
}
[dir=rtl] .theme-default-dark .mat-badge-small.mat-badge-after .mat-badge-content {
  right: auto;
  left: -16px;
}
.theme-default-dark .mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content {
  left: -8px;
}
[dir=rtl] .theme-default-dark .mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content {
  left: auto;
  right: -8px;
}
.theme-default-dark .mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content {
  right: -8px;
}
[dir=rtl] .theme-default-dark .mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content {
  right: auto;
  left: -8px;
}
.theme-default-dark .mat-badge-medium .mat-badge-content {
  width: 22px;
  height: 22px;
  line-height: 22px;
}
.theme-default-dark .mat-badge-medium.mat-badge-above .mat-badge-content {
  top: -11px;
}
.theme-default-dark .mat-badge-medium.mat-badge-below .mat-badge-content {
  bottom: -11px;
}
.theme-default-dark .mat-badge-medium.mat-badge-before .mat-badge-content {
  left: -22px;
}
[dir=rtl] .theme-default-dark .mat-badge-medium.mat-badge-before .mat-badge-content {
  left: auto;
  right: -22px;
}
.theme-default-dark .mat-badge-medium.mat-badge-after .mat-badge-content {
  right: -22px;
}
[dir=rtl] .theme-default-dark .mat-badge-medium.mat-badge-after .mat-badge-content {
  right: auto;
  left: -22px;
}
.theme-default-dark .mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content {
  left: -11px;
}
[dir=rtl] .theme-default-dark .mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content {
  left: auto;
  right: -11px;
}
.theme-default-dark .mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content {
  right: -11px;
}
[dir=rtl] .theme-default-dark .mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content {
  right: auto;
  left: -11px;
}
.theme-default-dark .mat-badge-large .mat-badge-content {
  width: 28px;
  height: 28px;
  line-height: 28px;
  font-size: 24px;
  /* @alternate */
  font-size: var(--mat-badge-large-size-text-size, 24px);
}
.theme-default-dark .mat-badge-large.mat-badge-above .mat-badge-content {
  top: -14px;
}
.theme-default-dark .mat-badge-large.mat-badge-below .mat-badge-content {
  bottom: -14px;
}
.theme-default-dark .mat-badge-large.mat-badge-before .mat-badge-content {
  left: -28px;
}
[dir=rtl] .theme-default-dark .mat-badge-large.mat-badge-before .mat-badge-content {
  left: auto;
  right: -28px;
}
.theme-default-dark .mat-badge-large.mat-badge-after .mat-badge-content {
  right: -28px;
}
[dir=rtl] .theme-default-dark .mat-badge-large.mat-badge-after .mat-badge-content {
  right: auto;
  left: -28px;
}
.theme-default-dark .mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content {
  left: -14px;
}
[dir=rtl] .theme-default-dark .mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content {
  left: auto;
  right: -14px;
}
.theme-default-dark .mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content {
  right: -14px;
}
[dir=rtl] .theme-default-dark .mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content {
  right: auto;
  left: -14px;
}
.theme-default-dark {
  --mat-badge-background-color: #8a9ea8;
  --mat-badge-text-color: white;
  --mat-badge-disabled-state-background-color: #6e6e6e;
  --mat-badge-disabled-state-text-color: rgba(255, 255, 255, 0.5);
}

.theme-default-dark .mat-badge-accent {
  --mat-badge-background-color: #2979ff;
  --mat-badge-text-color: white;
}
.theme-default-dark .mat-badge-warn {
  --mat-badge-background-color: #f29d9d;
  --mat-badge-text-color: rgba(0, 0, 0, 0.87);
}
.theme-default-dark {
  --mat-badge-text-font: CircularStd, sans-serif, arial;
  --mat-badge-text-size: 12px;
  --mat-badge-text-weight: 600;
  --mat-badge-small-size-text-size: 9px;
  --mat-badge-large-size-text-size: 24px;
}

.theme-default-dark {
  --mat-bottom-sheet-container-text-color: white;
  --mat-bottom-sheet-container-background-color: #424242;
}

.theme-default-dark {
  --mat-bottom-sheet-container-text-font: CircularStd, sans-serif, arial;
  --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;
}

.theme-default-dark {
  --mat-legacy-button-toggle-text-color: rgba(255, 255, 255, 0.5);
  --mat-legacy-button-toggle-state-layer-color: rgba(255, 255, 255, 0.12);
  --mat-legacy-button-toggle-selected-state-text-color: rgba(255, 255, 255, 0.7);
  --mat-legacy-button-toggle-selected-state-background-color: #212121;
  --mat-legacy-button-toggle-disabled-state-text-color: rgba(255, 255, 255, 0.3);
  --mat-legacy-button-toggle-disabled-state-background-color: black;
  --mat-legacy-button-toggle-disabled-selected-state-background-color: #424242;
  --mat-standard-button-toggle-text-color: white;
  --mat-standard-button-toggle-background-color: #424242;
  --mat-standard-button-toggle-state-layer-color: white;
  --mat-standard-button-toggle-selected-state-background-color: #212121;
  --mat-standard-button-toggle-selected-state-text-color: white;
  --mat-standard-button-toggle-disabled-state-text-color: rgba(255, 255, 255, 0.3);
  --mat-standard-button-toggle-disabled-state-background-color: #424242;
  --mat-standard-button-toggle-disabled-selected-state-text-color: white;
  --mat-standard-button-toggle-disabled-selected-state-background-color: #424242;
  --mat-standard-button-toggle-divider-color: #595959;
}

.theme-default-dark {
  --mat-standard-button-toggle-height: 48px;
}

.theme-default-dark {
  --mat-legacy-button-toggle-text-font: CircularStd, sans-serif, arial;
  --mat-standard-button-toggle-text-font: CircularStd, sans-serif, arial;
}

.theme-default-dark {
  --mat-datepicker-calendar-date-selected-state-text-color: white;
  --mat-datepicker-calendar-date-selected-state-background-color: #8a9ea8;
  --mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(138, 158, 168, 0.4);
  --mat-datepicker-calendar-date-today-selected-state-outline-color: white;
  --mat-datepicker-calendar-date-focus-state-background-color: rgba(138, 158, 168, 0.3);
  --mat-datepicker-calendar-date-hover-state-background-color: rgba(138, 158, 168, 0.3);
  --mat-datepicker-calendar-date-in-range-state-background-color: rgba(138, 158, 168, 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: #46a35e;
  --mat-datepicker-toggle-icon-color: white;
  --mat-datepicker-calendar-body-label-text-color: rgba(255, 255, 255, 0.7);
  --mat-datepicker-calendar-period-button-icon-color: white;
  --mat-datepicker-calendar-navigation-button-icon-color: white;
  --mat-datepicker-calendar-header-divider-color: rgba(255, 255, 255, 0.12);
  --mat-datepicker-calendar-header-text-color: rgba(255, 255, 255, 0.7);
  --mat-datepicker-calendar-date-today-outline-color: rgba(255, 255, 255, 0.5);
  --mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(255, 255, 255, 0.3);
  --mat-datepicker-calendar-date-text-color: white;
  --mat-datepicker-calendar-date-outline-color: transparent;
  --mat-datepicker-calendar-date-disabled-state-text-color: rgba(255, 255, 255, 0.5);
  --mat-datepicker-calendar-date-preview-state-outline-color: rgba(255, 255, 255, 0.24);
  --mat-datepicker-range-input-separator-color: white;
  --mat-datepicker-range-input-disabled-state-separator-color: rgba(255, 255, 255, 0.5);
  --mat-datepicker-range-input-disabled-state-text-color: rgba(255, 255, 255, 0.5);
  --mat-datepicker-calendar-container-background-color: #424242;
  --mat-datepicker-calendar-container-text-color: white;
}

.theme-default-dark .mat-datepicker-content.mat-accent {
  --mat-datepicker-calendar-date-selected-state-text-color: white;
  --mat-datepicker-calendar-date-selected-state-background-color: #2979ff;
  --mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(41, 121, 255, 0.4);
  --mat-datepicker-calendar-date-today-selected-state-outline-color: white;
  --mat-datepicker-calendar-date-focus-state-background-color: rgba(41, 121, 255, 0.3);
  --mat-datepicker-calendar-date-hover-state-background-color: rgba(41, 121, 255, 0.3);
  --mat-datepicker-calendar-date-in-range-state-background-color: rgba(41, 121, 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: #46a35e;
}
.theme-default-dark .mat-datepicker-content.mat-warn {
  --mat-datepicker-calendar-date-selected-state-text-color: rgba(0, 0, 0, 0.87);
  --mat-datepicker-calendar-date-selected-state-background-color: #f29d9d;
  --mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(242, 157, 157, 0.4);
  --mat-datepicker-calendar-date-today-selected-state-outline-color: rgba(0, 0, 0, 0.87);
  --mat-datepicker-calendar-date-focus-state-background-color: rgba(242, 157, 157, 0.3);
  --mat-datepicker-calendar-date-hover-state-background-color: rgba(242, 157, 157, 0.3);
  --mat-datepicker-calendar-date-in-range-state-background-color: rgba(242, 157, 157, 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: #46a35e;
}
.theme-default-dark .mat-calendar-controls .mat-mdc-icon-button.mat-mdc-button-base {
  --mdc-icon-button-state-layer-size: 40px;
  width: var(--mdc-icon-button-state-layer-size);
  height: var(--mdc-icon-button-state-layer-size);
  padding: 8px;
}
.theme-default-dark .mat-calendar-controls .mat-mdc-icon-button.mat-mdc-button-base .mat-mdc-button-touch-target {
  display: none;
}
.theme-default-dark {
  --mat-datepicker-calendar-text-font: CircularStd, sans-serif, arial;
  --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;
}

.theme-default-dark {
  --mat-divider-color: rgba(255, 255, 255, 0.12);
}

.theme-default-dark {
  --mat-expansion-container-background-color: #424242;
  --mat-expansion-container-text-color: white;
  --mat-expansion-actions-divider-color: rgba(255, 255, 255, 0.12);
  --mat-expansion-header-hover-state-layer-color: rgba(255, 255, 255, 0.04);
  --mat-expansion-header-focus-state-layer-color: rgba(255, 255, 255, 0.04);
  --mat-expansion-header-disabled-state-text-color: rgba(255, 255, 255, 0.3);
  --mat-expansion-header-text-color: white;
  --mat-expansion-header-description-color: rgba(255, 255, 255, 0.7);
  --mat-expansion-header-indicator-color: rgba(255, 255, 255, 0.7);
}

.theme-default-dark {
  --mat-expansion-header-collapsed-state-height: 48px;
  --mat-expansion-header-expanded-state-height: 64px;
}

.theme-default-dark {
  --mat-expansion-header-text-font: CircularStd, sans-serif, arial;
  --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: CircularStd, sans-serif, arial;
  --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;
}

.theme-default-dark {
  --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;
}

.theme-default-dark {
  --mat-icon-color: inherit;
}

.theme-default-dark {
  --mat-sidenav-container-divider-color: rgba(255, 255, 255, 0.12);
  --mat-sidenav-container-background-color: #424242;
  --mat-sidenav-container-text-color: white;
  --mat-sidenav-content-background-color: #303030;
  --mat-sidenav-content-text-color: white;
  --mat-sidenav-scrim-color: rgba(189, 189, 189, 0.6);
}

.theme-default-dark {
  --mat-stepper-header-icon-foreground-color: white;
  --mat-stepper-header-selected-state-icon-background-color: #8a9ea8;
  --mat-stepper-header-selected-state-icon-foreground-color: white;
  --mat-stepper-header-done-state-icon-background-color: #8a9ea8;
  --mat-stepper-header-done-state-icon-foreground-color: white;
  --mat-stepper-header-edit-state-icon-background-color: #8a9ea8;
  --mat-stepper-header-edit-state-icon-foreground-color: white;
  --mat-stepper-container-color: #424242;
  --mat-stepper-line-color: rgba(255, 255, 255, 0.12);
  --mat-stepper-header-hover-state-layer-color: rgba(255, 255, 255, 0.04);
  --mat-stepper-header-focus-state-layer-color: rgba(255, 255, 255, 0.04);
  --mat-stepper-header-label-text-color: rgba(255, 255, 255, 0.7);
  --mat-stepper-header-optional-label-text-color: rgba(255, 255, 255, 0.7);
  --mat-stepper-header-selected-state-label-text-color: white;
  --mat-stepper-header-icon-background-color: rgba(255, 255, 255, 0.7);
  --mat-stepper-header-error-state-icon-background-color: transparent;
}
.theme-default-dark .mat-step-header.mat-accent {
  --mat-stepper-header-icon-foreground-color: white;
  --mat-stepper-header-selected-state-icon-background-color: #2979ff;
  --mat-stepper-header-selected-state-icon-foreground-color: white;
  --mat-stepper-header-done-state-icon-background-color: #2979ff;
  --mat-stepper-header-done-state-icon-foreground-color: white;
  --mat-stepper-header-edit-state-icon-background-color: #2979ff;
  --mat-stepper-header-edit-state-icon-foreground-color: white;
}
.theme-default-dark .mat-step-header.mat-warn {
  --mat-stepper-header-icon-foreground-color: rgba(0, 0, 0, 0.87);
  --mat-stepper-header-selected-state-icon-background-color: #f29d9d;
  --mat-stepper-header-selected-state-icon-foreground-color: rgba(0, 0, 0, 0.87);
  --mat-stepper-header-done-state-icon-background-color: #f29d9d;
  --mat-stepper-header-done-state-icon-foreground-color: rgba(0, 0, 0, 0.87);
  --mat-stepper-header-edit-state-icon-background-color: #f29d9d;
  --mat-stepper-header-edit-state-icon-foreground-color: rgba(0, 0, 0, 0.87);
}

.theme-default-dark {
  --mat-stepper-header-height: 72px;
}

.theme-default-dark {
  --mat-stepper-container-text-font: CircularStd, sans-serif, arial;
  --mat-stepper-header-label-text-font: CircularStd, sans-serif, arial;
  --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;
}

.theme-default-dark .mat-sort-header-arrow {
  color: #c6c6c6;
}
.theme-default-dark {
  --mat-toolbar-container-background-color: #212121;
  --mat-toolbar-container-text-color: white;
}

.theme-default-dark .mat-toolbar.mat-primary {
  --mat-toolbar-container-background-color: #8a9ea8;
  --mat-toolbar-container-text-color: white;
}
.theme-default-dark .mat-toolbar.mat-accent {
  --mat-toolbar-container-background-color: #2979ff;
  --mat-toolbar-container-text-color: white;
}
.theme-default-dark .mat-toolbar.mat-warn {
  --mat-toolbar-container-background-color: #f29d9d;
  --mat-toolbar-container-text-color: rgba(0, 0, 0, 0.87);
}
.theme-default-dark {
  --mat-toolbar-standard-height: 64px;
  --mat-toolbar-mobile-height: 56px;
}

.theme-default-dark {
  --mat-toolbar-title-text-font: CircularStd, sans-serif, arial;
  --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;
}

.theme-default-dark .mat-tree {
  background: #424242;
}
.theme-default-dark .mat-tree-node,
.theme-default-dark .mat-nested-tree-node {
  color: white;
}
.theme-default-dark .mat-tree-node {
  min-height: 48px;
}
.theme-default-dark .mat-tree {
  font-family: CircularStd, sans-serif, arial;
}
.theme-default-dark .mat-tree-node,
.theme-default-dark .mat-nested-tree-node {
  font-weight: 400;
  font-size: 14px;
}
.theme-default-dark .red-50 {
  background-color: #fce7e7 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .red-50[disabled] {
  background-color: rgba(252, 231, 231, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .red-50-bg {
  background-color: #fce7e7 !important;
}
.theme-default-dark .red-50-fg {
  color: #fce7e7 !important;
}
.theme-default-dark .red-100 {
  background-color: #f7c4c4 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .red-100[disabled] {
  background-color: rgba(247, 196, 196, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .red-100-bg {
  background-color: #f7c4c4 !important;
}
.theme-default-dark .red-100-fg {
  color: #f7c4c4 !important;
}
.theme-default-dark .red-200 {
  background-color: #f29d9d !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .red-200[disabled] {
  background-color: rgba(242, 157, 157, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .red-200-bg {
  background-color: #f29d9d !important;
}
.theme-default-dark .red-200-fg {
  color: #f29d9d !important;
}
.theme-default-dark .red-300 {
  background-color: #ed7575 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .red-300[disabled] {
  background-color: rgba(237, 117, 117, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .red-300-bg {
  background-color: #ed7575 !important;
}
.theme-default-dark .red-300-fg {
  color: #ed7575 !important;
}
.theme-default-dark .red-400 {
  background-color: #e95858 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .red-400[disabled] {
  background-color: rgba(233, 88, 88, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .red-400-bg {
  background-color: #e95858 !important;
}
.theme-default-dark .red-400-fg {
  color: #e95858 !important;
}
.theme-default-dark .red-500 {
  background-color: #e53a3a !important;
  color: white !important;
}
.theme-default-dark .red-500[disabled] {
  background-color: rgba(229, 58, 58, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .red-500-bg {
  background-color: #e53a3a !important;
}
.theme-default-dark .red-500-fg {
  color: #e53a3a !important;
}
.theme-default-dark .red-bg {
  background-color: #e53a3a !important;
}
.theme-default-dark .red-fg {
  color: #e53a3a !important;
}
.theme-default-dark .red-600 {
  background-color: #e23434 !important;
  color: white !important;
}
.theme-default-dark .red-600[disabled] {
  background-color: rgba(226, 52, 52, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .red-600-bg {
  background-color: #e23434 !important;
}
.theme-default-dark .red-600-fg {
  color: #e23434 !important;
}
.theme-default-dark .red-700 {
  background-color: #de2c2c !important;
  color: white !important;
}
.theme-default-dark .red-700[disabled] {
  background-color: rgba(222, 44, 44, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .red-700-bg {
  background-color: #de2c2c !important;
}
.theme-default-dark .red-700-fg {
  color: #de2c2c !important;
}
.theme-default-dark .red-800 {
  background-color: #da2525 !important;
  color: white !important;
}
.theme-default-dark .red-800[disabled] {
  background-color: rgba(218, 37, 37, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .red-800-bg {
  background-color: #da2525 !important;
}
.theme-default-dark .red-800-fg {
  color: #da2525 !important;
}
.theme-default-dark .red-900 {
  background-color: #d31818 !important;
  color: white !important;
}
.theme-default-dark .red-900[disabled] {
  background-color: rgba(211, 24, 24, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .red-900-bg {
  background-color: #d31818 !important;
}
.theme-default-dark .red-900-fg {
  color: #d31818 !important;
}
.theme-default-dark .red-A100 {
  background-color: #ff8a80 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .red-A100[disabled] {
  background-color: rgba(255, 138, 128, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .red-A100-bg {
  background-color: #ff8a80 !important;
}
.theme-default-dark .red-A100-fg {
  color: #ff8a80 !important;
}
.theme-default-dark .red-A200 {
  background-color: #ff5252 !important;
  color: white !important;
}
.theme-default-dark .red-A200[disabled] {
  background-color: rgba(255, 82, 82, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .red-A200-bg {
  background-color: #ff5252 !important;
}
.theme-default-dark .red-A200-fg {
  color: #ff5252 !important;
}
.theme-default-dark .red-A400 {
  background-color: #ff1744 !important;
  color: white !important;
}
.theme-default-dark .red-A400[disabled] {
  background-color: rgba(255, 23, 68, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .red-A400-bg {
  background-color: #ff1744 !important;
}
.theme-default-dark .red-A400-fg {
  color: #ff1744 !important;
}
.theme-default-dark .red-A700 {
  background-color: #d50000 !important;
  color: white !important;
}
.theme-default-dark .red-A700[disabled] {
  background-color: rgba(213, 0, 0, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .red-A700-bg {
  background-color: #d50000 !important;
}
.theme-default-dark .red-A700-fg {
  color: #d50000 !important;
}
.theme-default-dark .pink-50 {
  background-color: #fce4ec !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .pink-50[disabled] {
  background-color: rgba(252, 228, 236, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .pink-50-bg {
  background-color: #fce4ec !important;
}
.theme-default-dark .pink-50-fg {
  color: #fce4ec !important;
}
.theme-default-dark .pink-100 {
  background-color: #f8bbd0 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .pink-100[disabled] {
  background-color: rgba(248, 187, 208, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .pink-100-bg {
  background-color: #f8bbd0 !important;
}
.theme-default-dark .pink-100-fg {
  color: #f8bbd0 !important;
}
.theme-default-dark .pink-200 {
  background-color: #f48fb1 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .pink-200[disabled] {
  background-color: rgba(244, 143, 177, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .pink-200-bg {
  background-color: #f48fb1 !important;
}
.theme-default-dark .pink-200-fg {
  color: #f48fb1 !important;
}
.theme-default-dark .pink-300 {
  background-color: #f06e9a !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .pink-300[disabled] {
  background-color: rgba(240, 110, 154, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .pink-300-bg {
  background-color: #f06e9a !important;
}
.theme-default-dark .pink-300-fg {
  color: #f06e9a !important;
}
.theme-default-dark .pink-400 {
  background-color: #ec407a !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .pink-400[disabled] {
  background-color: rgba(236, 64, 122, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .pink-400-bg {
  background-color: #ec407a !important;
}
.theme-default-dark .pink-400-fg {
  color: #ec407a !important;
}
.theme-default-dark .pink-500 {
  background-color: #e91e63 !important;
  color: white !important;
}
.theme-default-dark .pink-500[disabled] {
  background-color: rgba(233, 30, 99, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .pink-500-bg {
  background-color: #e91e63 !important;
}
.theme-default-dark .pink-500-fg {
  color: #e91e63 !important;
}
.theme-default-dark .pink-bg {
  background-color: #e91e63 !important;
}
.theme-default-dark .pink-fg {
  color: #e91e63 !important;
}
.theme-default-dark .pink-600 {
  background-color: #d81b60 !important;
  color: white !important;
}
.theme-default-dark .pink-600[disabled] {
  background-color: rgba(216, 27, 96, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .pink-600-bg {
  background-color: #d81b60 !important;
}
.theme-default-dark .pink-600-fg {
  color: #d81b60 !important;
}
.theme-default-dark .pink-700 {
  background-color: #c2185b !important;
  color: white !important;
}
.theme-default-dark .pink-700[disabled] {
  background-color: rgba(194, 24, 91, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .pink-700-bg {
  background-color: #c2185b !important;
}
.theme-default-dark .pink-700-fg {
  color: #c2185b !important;
}
.theme-default-dark .pink-800 {
  background-color: #ad1457 !important;
  color: white !important;
}
.theme-default-dark .pink-800[disabled] {
  background-color: rgba(173, 20, 87, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .pink-800-bg {
  background-color: #ad1457 !important;
}
.theme-default-dark .pink-800-fg {
  color: #ad1457 !important;
}
.theme-default-dark .pink-900 {
  background-color: #880e4f !important;
  color: white !important;
}
.theme-default-dark .pink-900[disabled] {
  background-color: rgba(136, 14, 79, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .pink-900-bg {
  background-color: #880e4f !important;
}
.theme-default-dark .pink-900-fg {
  color: #880e4f !important;
}
.theme-default-dark .pink-A100 {
  background-color: #ff80ab !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .pink-A100[disabled] {
  background-color: rgba(255, 128, 171, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .pink-A100-bg {
  background-color: #ff80ab !important;
}
.theme-default-dark .pink-A100-fg {
  color: #ff80ab !important;
}
.theme-default-dark .pink-A200 {
  background-color: #ff4081 !important;
  color: white !important;
}
.theme-default-dark .pink-A200[disabled] {
  background-color: rgba(255, 64, 129, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .pink-A200-bg {
  background-color: #ff4081 !important;
}
.theme-default-dark .pink-A200-fg {
  color: #ff4081 !important;
}
.theme-default-dark .pink-A400 {
  background-color: #f50057 !important;
  color: white !important;
}
.theme-default-dark .pink-A400[disabled] {
  background-color: rgba(245, 0, 87, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .pink-A400-bg {
  background-color: #f50057 !important;
}
.theme-default-dark .pink-A400-fg {
  color: #f50057 !important;
}
.theme-default-dark .pink-A700 {
  background-color: #c51162 !important;
  color: white !important;
}
.theme-default-dark .pink-A700[disabled] {
  background-color: rgba(197, 17, 98, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .pink-A700-bg {
  background-color: #c51162 !important;
}
.theme-default-dark .pink-A700-fg {
  color: #c51162 !important;
}
.theme-default-dark .purple-50 {
  background-color: #f3e6ff !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .purple-50[disabled] {
  background-color: rgba(243, 230, 255, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .purple-50-bg {
  background-color: #f3e6ff !important;
}
.theme-default-dark .purple-50-fg {
  color: #f3e6ff !important;
}
.theme-default-dark .purple-100 {
  background-color: #e1bee7 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .purple-100[disabled] {
  background-color: rgba(225, 190, 231, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .purple-100-bg {
  background-color: #e1bee7 !important;
}
.theme-default-dark .purple-100-fg {
  color: #e1bee7 !important;
}
.theme-default-dark .purple-200 {
  background-color: #ce93d8 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .purple-200[disabled] {
  background-color: rgba(206, 147, 216, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .purple-200-bg {
  background-color: #ce93d8 !important;
}
.theme-default-dark .purple-200-fg {
  color: #ce93d8 !important;
}
.theme-default-dark .purple-300 {
  background-color: #ba68c8 !important;
  color: white !important;
}
.theme-default-dark .purple-300[disabled] {
  background-color: rgba(186, 104, 200, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .purple-300-bg {
  background-color: #ba68c8 !important;
}
.theme-default-dark .purple-300-fg {
  color: #ba68c8 !important;
}
.theme-default-dark .purple-400 {
  background-color: #ab47bc !important;
  color: white !important;
}
.theme-default-dark .purple-400[disabled] {
  background-color: rgba(171, 71, 188, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .purple-400-bg {
  background-color: #ab47bc !important;
}
.theme-default-dark .purple-400-fg {
  color: #ab47bc !important;
}
.theme-default-dark .purple-500 {
  background-color: #9c27b0 !important;
  color: white !important;
}
.theme-default-dark .purple-500[disabled] {
  background-color: rgba(156, 39, 176, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .purple-500-bg {
  background-color: #9c27b0 !important;
}
.theme-default-dark .purple-500-fg {
  color: #9c27b0 !important;
}
.theme-default-dark .purple-bg {
  background-color: #9c27b0 !important;
}
.theme-default-dark .purple-fg {
  color: #9c27b0 !important;
}
.theme-default-dark .purple-600 {
  background-color: #8e24aa !important;
  color: white !important;
}
.theme-default-dark .purple-600[disabled] {
  background-color: rgba(142, 36, 170, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .purple-600-bg {
  background-color: #8e24aa !important;
}
.theme-default-dark .purple-600-fg {
  color: #8e24aa !important;
}
.theme-default-dark .purple-700 {
  background-color: #7b1fa2 !important;
  color: white !important;
}
.theme-default-dark .purple-700[disabled] {
  background-color: rgba(123, 31, 162, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .purple-700-bg {
  background-color: #7b1fa2 !important;
}
.theme-default-dark .purple-700-fg {
  color: #7b1fa2 !important;
}
.theme-default-dark .purple-800 {
  background-color: #6a1b9a !important;
  color: white !important;
}
.theme-default-dark .purple-800[disabled] {
  background-color: rgba(106, 27, 154, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .purple-800-bg {
  background-color: #6a1b9a !important;
}
.theme-default-dark .purple-800-fg {
  color: #6a1b9a !important;
}
.theme-default-dark .purple-900 {
  background-color: #4a148c !important;
  color: white !important;
}
.theme-default-dark .purple-900[disabled] {
  background-color: rgba(74, 20, 140, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .purple-900-bg {
  background-color: #4a148c !important;
}
.theme-default-dark .purple-900-fg {
  color: #4a148c !important;
}
.theme-default-dark .purple-A100 {
  background-color: #ea80fc !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .purple-A100[disabled] {
  background-color: rgba(234, 128, 252, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .purple-A100-bg {
  background-color: #ea80fc !important;
}
.theme-default-dark .purple-A100-fg {
  color: #ea80fc !important;
}
.theme-default-dark .purple-A200 {
  background-color: #e040fb !important;
  color: white !important;
}
.theme-default-dark .purple-A200[disabled] {
  background-color: rgba(224, 64, 251, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .purple-A200-bg {
  background-color: #e040fb !important;
}
.theme-default-dark .purple-A200-fg {
  color: #e040fb !important;
}
.theme-default-dark .purple-A400 {
  background-color: #d500f9 !important;
  color: white !important;
}
.theme-default-dark .purple-A400[disabled] {
  background-color: rgba(213, 0, 249, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .purple-A400-bg {
  background-color: #d500f9 !important;
}
.theme-default-dark .purple-A400-fg {
  color: #d500f9 !important;
}
.theme-default-dark .purple-A700 {
  background-color: #aa00ff !important;
  color: white !important;
}
.theme-default-dark .purple-A700[disabled] {
  background-color: rgba(170, 0, 255, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .purple-A700-bg {
  background-color: #aa00ff !important;
}
.theme-default-dark .purple-A700-fg {
  color: #aa00ff !important;
}
.theme-default-dark .deep-purple-50 {
  background-color: #ede7f6 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .deep-purple-50[disabled] {
  background-color: rgba(237, 231, 246, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .deep-purple-50-bg {
  background-color: #ede7f6 !important;
}
.theme-default-dark .deep-purple-50-fg {
  color: #ede7f6 !important;
}
.theme-default-dark .deep-purple-100 {
  background-color: #d1c4e9 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .deep-purple-100[disabled] {
  background-color: rgba(209, 196, 233, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .deep-purple-100-bg {
  background-color: #d1c4e9 !important;
}
.theme-default-dark .deep-purple-100-fg {
  color: #d1c4e9 !important;
}
.theme-default-dark .deep-purple-200 {
  background-color: #b39ddb !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .deep-purple-200[disabled] {
  background-color: rgba(179, 157, 219, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .deep-purple-200-bg {
  background-color: #b39ddb !important;
}
.theme-default-dark .deep-purple-200-fg {
  color: #b39ddb !important;
}
.theme-default-dark .deep-purple-300 {
  background-color: #9575cd !important;
  color: white !important;
}
.theme-default-dark .deep-purple-300[disabled] {
  background-color: rgba(149, 117, 205, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .deep-purple-300-bg {
  background-color: #9575cd !important;
}
.theme-default-dark .deep-purple-300-fg {
  color: #9575cd !important;
}
.theme-default-dark .deep-purple-400 {
  background-color: #7e57c2 !important;
  color: white !important;
}
.theme-default-dark .deep-purple-400[disabled] {
  background-color: rgba(126, 87, 194, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .deep-purple-400-bg {
  background-color: #7e57c2 !important;
}
.theme-default-dark .deep-purple-400-fg {
  color: #7e57c2 !important;
}
.theme-default-dark .deep-purple-500 {
  background-color: #673ab7 !important;
  color: white !important;
}
.theme-default-dark .deep-purple-500[disabled] {
  background-color: rgba(103, 58, 183, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .deep-purple-500-bg {
  background-color: #673ab7 !important;
}
.theme-default-dark .deep-purple-500-fg {
  color: #673ab7 !important;
}
.theme-default-dark .deep-purple-bg {
  background-color: #673ab7 !important;
}
.theme-default-dark .deep-purple-fg {
  color: #673ab7 !important;
}
.theme-default-dark .deep-purple-600 {
  background-color: #5e35b1 !important;
  color: white !important;
}
.theme-default-dark .deep-purple-600[disabled] {
  background-color: rgba(94, 53, 177, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .deep-purple-600-bg {
  background-color: #5e35b1 !important;
}
.theme-default-dark .deep-purple-600-fg {
  color: #5e35b1 !important;
}
.theme-default-dark .deep-purple-700 {
  background-color: #512da8 !important;
  color: white !important;
}
.theme-default-dark .deep-purple-700[disabled] {
  background-color: rgba(81, 45, 168, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .deep-purple-700-bg {
  background-color: #512da8 !important;
}
.theme-default-dark .deep-purple-700-fg {
  color: #512da8 !important;
}
.theme-default-dark .deep-purple-800 {
  background-color: #4527a0 !important;
  color: white !important;
}
.theme-default-dark .deep-purple-800[disabled] {
  background-color: rgba(69, 39, 160, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .deep-purple-800-bg {
  background-color: #4527a0 !important;
}
.theme-default-dark .deep-purple-800-fg {
  color: #4527a0 !important;
}
.theme-default-dark .deep-purple-900 {
  background-color: #311b92 !important;
  color: white !important;
}
.theme-default-dark .deep-purple-900[disabled] {
  background-color: rgba(49, 27, 146, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .deep-purple-900-bg {
  background-color: #311b92 !important;
}
.theme-default-dark .deep-purple-900-fg {
  color: #311b92 !important;
}
.theme-default-dark .deep-purple-A100 {
  background-color: #cf97ff !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .deep-purple-A100[disabled] {
  background-color: rgba(207, 151, 255, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .deep-purple-A100-bg {
  background-color: #cf97ff !important;
}
.theme-default-dark .deep-purple-A100-fg {
  color: #cf97ff !important;
}
.theme-default-dark .deep-purple-A200 {
  background-color: #be73ff !important;
  color: white !important;
}
.theme-default-dark .deep-purple-A200[disabled] {
  background-color: rgba(190, 115, 255, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .deep-purple-A200-bg {
  background-color: #be73ff !important;
}
.theme-default-dark .deep-purple-A200-fg {
  color: #be73ff !important;
}
.theme-default-dark .deep-purple-A400 {
  background-color: #9f2eff !important;
  color: white !important;
}
.theme-default-dark .deep-purple-A400[disabled] {
  background-color: rgba(159, 46, 255, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .deep-purple-A400-bg {
  background-color: #9f2eff !important;
}
.theme-default-dark .deep-purple-A400-fg {
  color: #9f2eff !important;
}
.theme-default-dark .deep-purple-A700 {
  background-color: #7212ff !important;
  color: white !important;
}
.theme-default-dark .deep-purple-A700[disabled] {
  background-color: rgba(114, 18, 255, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .deep-purple-A700-bg {
  background-color: #7212ff !important;
}
.theme-default-dark .deep-purple-A700-fg {
  color: #7212ff !important;
}
.theme-default-dark .indigo-50 {
  background-color: #e8eaf6 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .indigo-50[disabled] {
  background-color: rgba(232, 234, 246, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .indigo-50-bg {
  background-color: #e8eaf6 !important;
}
.theme-default-dark .indigo-50-fg {
  color: #e8eaf6 !important;
}
.theme-default-dark .indigo-100 {
  background-color: #c5cae9 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .indigo-100[disabled] {
  background-color: rgba(197, 202, 233, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .indigo-100-bg {
  background-color: #c5cae9 !important;
}
.theme-default-dark .indigo-100-fg {
  color: #c5cae9 !important;
}
.theme-default-dark .indigo-200 {
  background-color: #9fa8da !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .indigo-200[disabled] {
  background-color: rgba(159, 168, 218, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .indigo-200-bg {
  background-color: #9fa8da !important;
}
.theme-default-dark .indigo-200-fg {
  color: #9fa8da !important;
}
.theme-default-dark .indigo-300 {
  background-color: #7986cb !important;
  color: white !important;
}
.theme-default-dark .indigo-300[disabled] {
  background-color: rgba(121, 134, 203, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .indigo-300-bg {
  background-color: #7986cb !important;
}
.theme-default-dark .indigo-300-fg {
  color: #7986cb !important;
}
.theme-default-dark .indigo-400 {
  background-color: #5c6bc0 !important;
  color: white !important;
}
.theme-default-dark .indigo-400[disabled] {
  background-color: rgba(92, 107, 192, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .indigo-400-bg {
  background-color: #5c6bc0 !important;
}
.theme-default-dark .indigo-400-fg {
  color: #5c6bc0 !important;
}
.theme-default-dark .indigo-500 {
  background-color: #3f51b5 !important;
  color: white !important;
}
.theme-default-dark .indigo-500[disabled] {
  background-color: rgba(63, 81, 181, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .indigo-500-bg {
  background-color: #3f51b5 !important;
}
.theme-default-dark .indigo-500-fg {
  color: #3f51b5 !important;
}
.theme-default-dark .indigo-bg {
  background-color: #3f51b5 !important;
}
.theme-default-dark .indigo-fg {
  color: #3f51b5 !important;
}
.theme-default-dark .indigo-600 {
  background-color: #3949ab !important;
  color: white !important;
}
.theme-default-dark .indigo-600[disabled] {
  background-color: rgba(57, 73, 171, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .indigo-600-bg {
  background-color: #3949ab !important;
}
.theme-default-dark .indigo-600-fg {
  color: #3949ab !important;
}
.theme-default-dark .indigo-700 {
  background-color: #303f9f !important;
  color: white !important;
}
.theme-default-dark .indigo-700[disabled] {
  background-color: rgba(48, 63, 159, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .indigo-700-bg {
  background-color: #303f9f !important;
}
.theme-default-dark .indigo-700-fg {
  color: #303f9f !important;
}
.theme-default-dark .indigo-800 {
  background-color: #283593 !important;
  color: white !important;
}
.theme-default-dark .indigo-800[disabled] {
  background-color: rgba(40, 53, 147, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .indigo-800-bg {
  background-color: #283593 !important;
}
.theme-default-dark .indigo-800-fg {
  color: #283593 !important;
}
.theme-default-dark .indigo-900 {
  background-color: #1a237e !important;
  color: white !important;
}
.theme-default-dark .indigo-900[disabled] {
  background-color: rgba(26, 35, 126, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .indigo-900-bg {
  background-color: #1a237e !important;
}
.theme-default-dark .indigo-900-fg {
  color: #1a237e !important;
}
.theme-default-dark .indigo-A100 {
  background-color: #8c9eff !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .indigo-A100[disabled] {
  background-color: rgba(140, 158, 255, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .indigo-A100-bg {
  background-color: #8c9eff !important;
}
.theme-default-dark .indigo-A100-fg {
  color: #8c9eff !important;
}
.theme-default-dark .indigo-A200 {
  background-color: #536dfe !important;
  color: white !important;
}
.theme-default-dark .indigo-A200[disabled] {
  background-color: rgba(83, 109, 254, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .indigo-A200-bg {
  background-color: #536dfe !important;
}
.theme-default-dark .indigo-A200-fg {
  color: #536dfe !important;
}
.theme-default-dark .indigo-A400 {
  background-color: #3d5afe !important;
  color: white !important;
}
.theme-default-dark .indigo-A400[disabled] {
  background-color: rgba(61, 90, 254, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .indigo-A400-bg {
  background-color: #3d5afe !important;
}
.theme-default-dark .indigo-A400-fg {
  color: #3d5afe !important;
}
.theme-default-dark .indigo-A700 {
  background-color: #304ffe !important;
  color: white !important;
}
.theme-default-dark .indigo-A700[disabled] {
  background-color: rgba(48, 79, 254, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .indigo-A700-bg {
  background-color: #304ffe !important;
}
.theme-default-dark .indigo-A700-fg {
  color: #304ffe !important;
}
.theme-default-dark .blue-50 {
  background-color: #e4ebfb !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .blue-50[disabled] {
  background-color: rgba(228, 235, 251, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .blue-50-bg {
  background-color: #e4ebfb !important;
}
.theme-default-dark .blue-50-fg {
  color: #e4ebfb !important;
}
.theme-default-dark .blue-100 {
  background-color: #bccef4 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .blue-100[disabled] {
  background-color: rgba(188, 206, 244, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .blue-100-bg {
  background-color: #bccef4 !important;
}
.theme-default-dark .blue-100-fg {
  color: #bccef4 !important;
}
.theme-default-dark .blue-200 {
  background-color: #8faded !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .blue-200[disabled] {
  background-color: rgba(143, 173, 237, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .blue-200-bg {
  background-color: #8faded !important;
}
.theme-default-dark .blue-200-fg {
  color: #8faded !important;
}
.theme-default-dark .blue-300 {
  background-color: #628ce5 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .blue-300[disabled] {
  background-color: rgba(98, 140, 229, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .blue-300-bg {
  background-color: #628ce5 !important;
}
.theme-default-dark .blue-300-fg {
  color: #628ce5 !important;
}
.theme-default-dark .blue-400 {
  background-color: #4074e0 !important;
  color: white !important;
}
.theme-default-dark .blue-400[disabled] {
  background-color: rgba(64, 116, 224, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .blue-400-bg {
  background-color: #4074e0 !important;
}
.theme-default-dark .blue-400-fg {
  color: #4074e0 !important;
}
.theme-default-dark .blue-500 {
  background-color: #1e5bda !important;
  color: white !important;
}
.theme-default-dark .blue-500[disabled] {
  background-color: rgba(30, 91, 218, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .blue-500-bg {
  background-color: #1e5bda !important;
}
.theme-default-dark .blue-500-fg {
  color: #1e5bda !important;
}
.theme-default-dark .blue-bg {
  background-color: #1e5bda !important;
}
.theme-default-dark .blue-fg {
  color: #1e5bda !important;
}
.theme-default-dark .blue-600 {
  background-color: #1a53d6 !important;
  color: white !important;
}
.theme-default-dark .blue-600[disabled] {
  background-color: rgba(26, 83, 214, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .blue-600-bg {
  background-color: #1a53d6 !important;
}
.theme-default-dark .blue-600-fg {
  color: #1a53d6 !important;
}
.theme-default-dark .blue-700 {
  background-color: #1649d0 !important;
  color: white !important;
}
.theme-default-dark .blue-700[disabled] {
  background-color: rgba(22, 73, 208, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .blue-700-bg {
  background-color: #1649d0 !important;
}
.theme-default-dark .blue-700-fg {
  color: #1649d0 !important;
}
.theme-default-dark .blue-800 {
  background-color: #1240cb !important;
  color: white !important;
}
.theme-default-dark .blue-800[disabled] {
  background-color: rgba(18, 64, 203, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .blue-800-bg {
  background-color: #1240cb !important;
}
.theme-default-dark .blue-800-fg {
  color: #1240cb !important;
}
.theme-default-dark .blue-900 {
  background-color: #0a2fc2 !important;
  color: white !important;
}
.theme-default-dark .blue-900[disabled] {
  background-color: rgba(10, 47, 194, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .blue-900-bg {
  background-color: #0a2fc2 !important;
}
.theme-default-dark .blue-900-fg {
  color: #0a2fc2 !important;
}
.theme-default-dark .blue-A100 {
  background-color: #82b1ff !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .blue-A100[disabled] {
  background-color: rgba(130, 177, 255, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .blue-A100-bg {
  background-color: #82b1ff !important;
}
.theme-default-dark .blue-A100-fg {
  color: #82b1ff !important;
}
.theme-default-dark .blue-A200 {
  background-color: #448aff !important;
  color: white !important;
}
.theme-default-dark .blue-A200[disabled] {
  background-color: rgba(68, 138, 255, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .blue-A200-bg {
  background-color: #448aff !important;
}
.theme-default-dark .blue-A200-fg {
  color: #448aff !important;
}
.theme-default-dark .blue-A400 {
  background-color: #2979ff !important;
  color: white !important;
}
.theme-default-dark .blue-A400[disabled] {
  background-color: rgba(41, 121, 255, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .blue-A400-bg {
  background-color: #2979ff !important;
}
.theme-default-dark .blue-A400-fg {
  color: #2979ff !important;
}
.theme-default-dark .blue-A700 {
  background-color: #2962ff !important;
  color: white !important;
}
.theme-default-dark .blue-A700[disabled] {
  background-color: rgba(41, 98, 255, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .blue-A700-bg {
  background-color: #2962ff !important;
}
.theme-default-dark .blue-A700-fg {
  color: #2962ff !important;
}
.theme-default-dark .light-blue-50 {
  background-color: #e1f5fe !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .light-blue-50[disabled] {
  background-color: rgba(225, 245, 254, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .light-blue-50-bg {
  background-color: #e1f5fe !important;
}
.theme-default-dark .light-blue-50-fg {
  color: #e1f5fe !important;
}
.theme-default-dark .light-blue-100 {
  background-color: #b3e5fc !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .light-blue-100[disabled] {
  background-color: rgba(179, 229, 252, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .light-blue-100-bg {
  background-color: #b3e5fc !important;
}
.theme-default-dark .light-blue-100-fg {
  color: #b3e5fc !important;
}
.theme-default-dark .light-blue-200 {
  background-color: #81d4fa !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .light-blue-200[disabled] {
  background-color: rgba(129, 212, 250, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .light-blue-200-bg {
  background-color: #81d4fa !important;
}
.theme-default-dark .light-blue-200-fg {
  color: #81d4fa !important;
}
.theme-default-dark .light-blue-300 {
  background-color: #4fc3f7 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .light-blue-300[disabled] {
  background-color: rgba(79, 195, 247, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .light-blue-300-bg {
  background-color: #4fc3f7 !important;
}
.theme-default-dark .light-blue-300-fg {
  color: #4fc3f7 !important;
}
.theme-default-dark .light-blue-400 {
  background-color: #29b6f6 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .light-blue-400[disabled] {
  background-color: rgba(41, 182, 246, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .light-blue-400-bg {
  background-color: #29b6f6 !important;
}
.theme-default-dark .light-blue-400-fg {
  color: #29b6f6 !important;
}
.theme-default-dark .light-blue-500 {
  background-color: #03a9f4 !important;
  color: white !important;
}
.theme-default-dark .light-blue-500[disabled] {
  background-color: rgba(3, 169, 244, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .light-blue-500-bg {
  background-color: #03a9f4 !important;
}
.theme-default-dark .light-blue-500-fg {
  color: #03a9f4 !important;
}
.theme-default-dark .light-blue-bg {
  background-color: #03a9f4 !important;
}
.theme-default-dark .light-blue-fg {
  color: #03a9f4 !important;
}
.theme-default-dark .light-blue-600 {
  background-color: #039be5 !important;
  color: white !important;
}
.theme-default-dark .light-blue-600[disabled] {
  background-color: rgba(3, 155, 229, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .light-blue-600-bg {
  background-color: #039be5 !important;
}
.theme-default-dark .light-blue-600-fg {
  color: #039be5 !important;
}
.theme-default-dark .light-blue-700 {
  background-color: #0288d1 !important;
  color: white !important;
}
.theme-default-dark .light-blue-700[disabled] {
  background-color: rgba(2, 136, 209, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .light-blue-700-bg {
  background-color: #0288d1 !important;
}
.theme-default-dark .light-blue-700-fg {
  color: #0288d1 !important;
}
.theme-default-dark .light-blue-800 {
  background-color: #0277bd !important;
  color: white !important;
}
.theme-default-dark .light-blue-800[disabled] {
  background-color: rgba(2, 119, 189, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .light-blue-800-bg {
  background-color: #0277bd !important;
}
.theme-default-dark .light-blue-800-fg {
  color: #0277bd !important;
}
.theme-default-dark .light-blue-900 {
  background-color: #01579b !important;
  color: white !important;
}
.theme-default-dark .light-blue-900[disabled] {
  background-color: rgba(1, 87, 155, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .light-blue-900-bg {
  background-color: #01579b !important;
}
.theme-default-dark .light-blue-900-fg {
  color: #01579b !important;
}
.theme-default-dark .light-blue-A100 {
  background-color: #80d8ff !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .light-blue-A100[disabled] {
  background-color: rgba(128, 216, 255, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .light-blue-A100-bg {
  background-color: #80d8ff !important;
}
.theme-default-dark .light-blue-A100-fg {
  color: #80d8ff !important;
}
.theme-default-dark .light-blue-A200 {
  background-color: #40c4ff !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .light-blue-A200[disabled] {
  background-color: rgba(64, 196, 255, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .light-blue-A200-bg {
  background-color: #40c4ff !important;
}
.theme-default-dark .light-blue-A200-fg {
  color: #40c4ff !important;
}
.theme-default-dark .light-blue-A400 {
  background-color: #33b6ff !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .light-blue-A400[disabled] {
  background-color: rgba(51, 182, 255, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .light-blue-A400-bg {
  background-color: #33b6ff !important;
}
.theme-default-dark .light-blue-A400-fg {
  color: #33b6ff !important;
}
.theme-default-dark .light-blue-A700 {
  background-color: #0091ea !important;
  color: white !important;
}
.theme-default-dark .light-blue-A700[disabled] {
  background-color: rgba(0, 145, 234, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .light-blue-A700-bg {
  background-color: #0091ea !important;
}
.theme-default-dark .light-blue-A700-fg {
  color: #0091ea !important;
}
.theme-default-dark .cyan-50 {
  background-color: #e0f7fa !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .cyan-50[disabled] {
  background-color: rgba(224, 247, 250, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .cyan-50-bg {
  background-color: #e0f7fa !important;
}
.theme-default-dark .cyan-50-fg {
  color: #e0f7fa !important;
}
.theme-default-dark .cyan-100 {
  background-color: #b2ebf2 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .cyan-100[disabled] {
  background-color: rgba(178, 235, 242, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .cyan-100-bg {
  background-color: #b2ebf2 !important;
}
.theme-default-dark .cyan-100-fg {
  color: #b2ebf2 !important;
}
.theme-default-dark .cyan-200 {
  background-color: #84e1eb !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .cyan-200[disabled] {
  background-color: rgba(132, 225, 235, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .cyan-200-bg {
  background-color: #84e1eb !important;
}
.theme-default-dark .cyan-200-fg {
  color: #84e1eb !important;
}
.theme-default-dark .cyan-300 {
  background-color: #4dd0e1 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .cyan-300[disabled] {
  background-color: rgba(77, 208, 225, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .cyan-300-bg {
  background-color: #4dd0e1 !important;
}
.theme-default-dark .cyan-300-fg {
  color: #4dd0e1 !important;
}
.theme-default-dark .cyan-400 {
  background-color: #08c3d6 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .cyan-400[disabled] {
  background-color: rgba(8, 195, 214, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .cyan-400-bg {
  background-color: #08c3d6 !important;
}
.theme-default-dark .cyan-400-fg {
  color: #08c3d6 !important;
}
.theme-default-dark .cyan-500 {
  background-color: #00bcd4 !important;
  color: white !important;
}
.theme-default-dark .cyan-500[disabled] {
  background-color: rgba(0, 188, 212, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .cyan-500-bg {
  background-color: #00bcd4 !important;
}
.theme-default-dark .cyan-500-fg {
  color: #00bcd4 !important;
}
.theme-default-dark .cyan-bg {
  background-color: #00bcd4 !important;
}
.theme-default-dark .cyan-fg {
  color: #00bcd4 !important;
}
.theme-default-dark .cyan-600 {
  background-color: #00acc1 !important;
  color: white !important;
}
.theme-default-dark .cyan-600[disabled] {
  background-color: rgba(0, 172, 193, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .cyan-600-bg {
  background-color: #00acc1 !important;
}
.theme-default-dark .cyan-600-fg {
  color: #00acc1 !important;
}
.theme-default-dark .cyan-700 {
  background-color: #02a1bc !important;
  color: white !important;
}
.theme-default-dark .cyan-700[disabled] {
  background-color: rgba(2, 161, 188, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .cyan-700-bg {
  background-color: #02a1bc !important;
}
.theme-default-dark .cyan-700-fg {
  color: #02a1bc !important;
}
.theme-default-dark .cyan-800 {
  background-color: #00838f !important;
  color: white !important;
}
.theme-default-dark .cyan-800[disabled] {
  background-color: rgba(0, 131, 143, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .cyan-800-bg {
  background-color: #00838f !important;
}
.theme-default-dark .cyan-800-fg {
  color: #00838f !important;
}
.theme-default-dark .cyan-900 {
  background-color: #006064 !important;
  color: white !important;
}
.theme-default-dark .cyan-900[disabled] {
  background-color: rgba(0, 96, 100, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .cyan-900-bg {
  background-color: #006064 !important;
}
.theme-default-dark .cyan-900-fg {
  color: #006064 !important;
}
.theme-default-dark .cyan-A100 {
  background-color: #84ffff !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .cyan-A100[disabled] {
  background-color: rgba(132, 255, 255, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .cyan-A100-bg {
  background-color: #84ffff !important;
}
.theme-default-dark .cyan-A100-fg {
  color: #84ffff !important;
}
.theme-default-dark .cyan-A200 {
  background-color: #18ffff !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .cyan-A200[disabled] {
  background-color: rgba(24, 255, 255, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .cyan-A200-bg {
  background-color: #18ffff !important;
}
.theme-default-dark .cyan-A200-fg {
  color: #18ffff !important;
}
.theme-default-dark .cyan-A400 {
  background-color: #00e5ff !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .cyan-A400[disabled] {
  background-color: rgba(0, 229, 255, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .cyan-A400-bg {
  background-color: #00e5ff !important;
}
.theme-default-dark .cyan-A400-fg {
  color: #00e5ff !important;
}
.theme-default-dark .cyan-A700 {
  background-color: #00b8d4 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .cyan-A700[disabled] {
  background-color: rgba(0, 184, 212, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .cyan-A700-bg {
  background-color: #00b8d4 !important;
}
.theme-default-dark .cyan-A700-fg {
  color: #00b8d4 !important;
}
.theme-default-dark .teal-50 {
  background-color: #e0f2f1 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .teal-50[disabled] {
  background-color: rgba(224, 242, 241, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .teal-50-bg {
  background-color: #e0f2f1 !important;
}
.theme-default-dark .teal-50-fg {
  color: #e0f2f1 !important;
}
.theme-default-dark .teal-100 {
  background-color: #b2dfdb !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .teal-100[disabled] {
  background-color: rgba(178, 223, 219, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .teal-100-bg {
  background-color: #b2dfdb !important;
}
.theme-default-dark .teal-100-fg {
  color: #b2dfdb !important;
}
.theme-default-dark .teal-200 {
  background-color: #80cbc4 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .teal-200[disabled] {
  background-color: rgba(128, 203, 196, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .teal-200-bg {
  background-color: #80cbc4 !important;
}
.theme-default-dark .teal-200-fg {
  color: #80cbc4 !important;
}
.theme-default-dark .teal-300 {
  background-color: #4db6ac !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .teal-300[disabled] {
  background-color: rgba(77, 182, 172, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .teal-300-bg {
  background-color: #4db6ac !important;
}
.theme-default-dark .teal-300-fg {
  color: #4db6ac !important;
}
.theme-default-dark .teal-400 {
  background-color: #26a69a !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .teal-400[disabled] {
  background-color: rgba(38, 166, 154, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .teal-400-bg {
  background-color: #26a69a !important;
}
.theme-default-dark .teal-400-fg {
  color: #26a69a !important;
}
.theme-default-dark .teal-500 {
  background-color: #009688 !important;
  color: white !important;
}
.theme-default-dark .teal-500[disabled] {
  background-color: rgba(0, 150, 136, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .teal-500-bg {
  background-color: #009688 !important;
}
.theme-default-dark .teal-500-fg {
  color: #009688 !important;
}
.theme-default-dark .teal-bg {
  background-color: #009688 !important;
}
.theme-default-dark .teal-fg {
  color: #009688 !important;
}
.theme-default-dark .teal-600 {
  background-color: #00897b !important;
  color: white !important;
}
.theme-default-dark .teal-600[disabled] {
  background-color: rgba(0, 137, 123, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .teal-600-bg {
  background-color: #00897b !important;
}
.theme-default-dark .teal-600-fg {
  color: #00897b !important;
}
.theme-default-dark .teal-700 {
  background-color: #00796b !important;
  color: white !important;
}
.theme-default-dark .teal-700[disabled] {
  background-color: rgba(0, 121, 107, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .teal-700-bg {
  background-color: #00796b !important;
}
.theme-default-dark .teal-700-fg {
  color: #00796b !important;
}
.theme-default-dark .teal-800 {
  background-color: #00695c !important;
  color: white !important;
}
.theme-default-dark .teal-800[disabled] {
  background-color: rgba(0, 105, 92, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .teal-800-bg {
  background-color: #00695c !important;
}
.theme-default-dark .teal-800-fg {
  color: #00695c !important;
}
.theme-default-dark .teal-900 {
  background-color: #004d40 !important;
  color: white !important;
}
.theme-default-dark .teal-900[disabled] {
  background-color: rgba(0, 77, 64, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .teal-900-bg {
  background-color: #004d40 !important;
}
.theme-default-dark .teal-900-fg {
  color: #004d40 !important;
}
.theme-default-dark .teal-A100 {
  background-color: #a7ffeb !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .teal-A100[disabled] {
  background-color: rgba(167, 255, 235, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .teal-A100-bg {
  background-color: #a7ffeb !important;
}
.theme-default-dark .teal-A100-fg {
  color: #a7ffeb !important;
}
.theme-default-dark .teal-A200 {
  background-color: #64ffda !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .teal-A200[disabled] {
  background-color: rgba(100, 255, 218, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .teal-A200-bg {
  background-color: #64ffda !important;
}
.theme-default-dark .teal-A200-fg {
  color: #64ffda !important;
}
.theme-default-dark .teal-A400 {
  background-color: #1de9b6 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .teal-A400[disabled] {
  background-color: rgba(29, 233, 182, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .teal-A400-bg {
  background-color: #1de9b6 !important;
}
.theme-default-dark .teal-A400-fg {
  color: #1de9b6 !important;
}
.theme-default-dark .teal-A700 {
  background-color: #00bfa5 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .teal-A700[disabled] {
  background-color: rgba(0, 191, 165, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .teal-A700-bg {
  background-color: #00bfa5 !important;
}
.theme-default-dark .teal-A700-fg {
  color: #00bfa5 !important;
}
.theme-default-dark .green-50 {
  background-color: #e2f2e9 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .green-50[disabled] {
  background-color: rgba(226, 242, 233, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .green-50-bg {
  background-color: #e2f2e9 !important;
}
.theme-default-dark .green-50-fg {
  color: #e2f2e9 !important;
}
.theme-default-dark .green-100 {
  background-color: #b8dec8 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .green-100[disabled] {
  background-color: rgba(184, 222, 200, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .green-100-bg {
  background-color: #b8dec8 !important;
}
.theme-default-dark .green-100-fg {
  color: #b8dec8 !important;
}
.theme-default-dark .green-200 {
  background-color: #88c8a3 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .green-200[disabled] {
  background-color: rgba(136, 200, 163, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .green-200-bg {
  background-color: #88c8a3 !important;
}
.theme-default-dark .green-200-fg {
  color: #88c8a3 !important;
}
.theme-default-dark .green-300 {
  background-color: #58b17e !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .green-300[disabled] {
  background-color: rgba(88, 177, 126, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .green-300-bg {
  background-color: #58b17e !important;
}
.theme-default-dark .green-300-fg {
  color: #58b17e !important;
}
.theme-default-dark .green-400 {
  background-color: #35a162 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .green-400[disabled] {
  background-color: rgba(53, 161, 98, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .green-400-bg {
  background-color: #35a162 !important;
}
.theme-default-dark .green-400-fg {
  color: #35a162 !important;
}
.theme-default-dark .green-500 {
  background-color: #119046 !important;
  color: white !important;
}
.theme-default-dark .green-500[disabled] {
  background-color: rgba(17, 144, 70, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .green-500-bg {
  background-color: #119046 !important;
}
.theme-default-dark .green-500-fg {
  color: #119046 !important;
}
.theme-default-dark .green-bg {
  background-color: #119046 !important;
}
.theme-default-dark .green-fg {
  color: #119046 !important;
}
.theme-default-dark .green-600 {
  background-color: #0f883f !important;
  color: white !important;
}
.theme-default-dark .green-600[disabled] {
  background-color: rgba(15, 136, 63, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .green-600-bg {
  background-color: #0f883f !important;
}
.theme-default-dark .green-600-fg {
  color: #0f883f !important;
}
.theme-default-dark .green-700 {
  background-color: #0c7d37 !important;
  color: white !important;
}
.theme-default-dark .green-700[disabled] {
  background-color: rgba(12, 125, 55, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .green-700-bg {
  background-color: #0c7d37 !important;
}
.theme-default-dark .green-700-fg {
  color: #0c7d37 !important;
}
.theme-default-dark .green-800 {
  background-color: #0a732f !important;
  color: white !important;
}
.theme-default-dark .green-800[disabled] {
  background-color: rgba(10, 115, 47, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .green-800-bg {
  background-color: #0a732f !important;
}
.theme-default-dark .green-800-fg {
  color: #0a732f !important;
}
.theme-default-dark .green-900 {
  background-color: #056120 !important;
  color: white !important;
}
.theme-default-dark .green-900[disabled] {
  background-color: rgba(5, 97, 32, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .green-900-bg {
  background-color: #056120 !important;
}
.theme-default-dark .green-900-fg {
  color: #056120 !important;
}
.theme-default-dark .green-A100 {
  background-color: #b9f6ca !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .green-A100[disabled] {
  background-color: rgba(185, 246, 202, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .green-A100-bg {
  background-color: #b9f6ca !important;
}
.theme-default-dark .green-A100-fg {
  color: #b9f6ca !important;
}
.theme-default-dark .green-A200 {
  background-color: #69f0ae !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .green-A200[disabled] {
  background-color: rgba(105, 240, 174, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .green-A200-bg {
  background-color: #69f0ae !important;
}
.theme-default-dark .green-A200-fg {
  color: #69f0ae !important;
}
.theme-default-dark .green-A400 {
  background-color: #2cff5b !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .green-A400[disabled] {
  background-color: rgba(44, 255, 91, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .green-A400-bg {
  background-color: #2cff5b !important;
}
.theme-default-dark .green-A400-fg {
  color: #2cff5b !important;
}
.theme-default-dark .green-A700 {
  background-color: #13ff48 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .green-A700[disabled] {
  background-color: rgba(19, 255, 72, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .green-A700-bg {
  background-color: #13ff48 !important;
}
.theme-default-dark .green-A700-fg {
  color: #13ff48 !important;
}
.theme-default-dark .light-green-50 {
  background-color: #E9F9DF !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .light-green-50[disabled] {
  background-color: rgba(233, 249, 223, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .light-green-50-bg {
  background-color: #E9F9DF !important;
}
.theme-default-dark .light-green-50-fg {
  color: #E9F9DF !important;
}
.theme-default-dark .light-green-100 {
  background-color: #D4F4C0 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .light-green-100[disabled] {
  background-color: rgba(212, 244, 192, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .light-green-100-bg {
  background-color: #D4F4C0 !important;
}
.theme-default-dark .light-green-100-fg {
  color: #D4F4C0 !important;
}
.theme-default-dark .light-green-200 {
  background-color: #B7ED96 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .light-green-200[disabled] {
  background-color: rgba(183, 237, 150, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .light-green-200-bg {
  background-color: #B7ED96 !important;
}
.theme-default-dark .light-green-200-fg {
  color: #B7ED96 !important;
}
.theme-default-dark .light-green-300 {
  background-color: #9AE56B !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .light-green-300[disabled] {
  background-color: rgba(154, 229, 107, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .light-green-300-bg {
  background-color: #9AE56B !important;
}
.theme-default-dark .light-green-300-fg {
  color: #9AE56B !important;
}
.theme-default-dark .light-green-400 {
  background-color: #84E04C !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .light-green-400[disabled] {
  background-color: rgba(132, 224, 76, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .light-green-400-bg {
  background-color: #84E04C !important;
}
.theme-default-dark .light-green-400-fg {
  color: #84E04C !important;
}
.theme-default-dark .light-green-500 {
  background-color: #6EDA2C !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .light-green-500[disabled] {
  background-color: rgba(110, 218, 44, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .light-green-500-bg {
  background-color: #6EDA2C !important;
}
.theme-default-dark .light-green-500-fg {
  color: #6EDA2C !important;
}
.theme-default-dark .light-green-bg {
  background-color: #6EDA2C !important;
}
.theme-default-dark .light-green-fg {
  color: #6EDA2C !important;
}
.theme-default-dark .light-green-600 {
  background-color: #5EB925 !important;
  color: white !important;
}
.theme-default-dark .light-green-600[disabled] {
  background-color: rgba(94, 185, 37, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .light-green-600-bg {
  background-color: #5EB925 !important;
}
.theme-default-dark .light-green-600-fg {
  color: #5EB925 !important;
}
.theme-default-dark .light-green-700 {
  background-color: #4D991F !important;
  color: white !important;
}
.theme-default-dark .light-green-700[disabled] {
  background-color: rgba(77, 153, 31, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .light-green-700-bg {
  background-color: #4D991F !important;
}
.theme-default-dark .light-green-700-fg {
  color: #4D991F !important;
}
.theme-default-dark .light-green-800 {
  background-color: #376D16 !important;
  color: white !important;
}
.theme-default-dark .light-green-800[disabled] {
  background-color: rgba(55, 109, 22, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .light-green-800-bg {
  background-color: #376D16 !important;
}
.theme-default-dark .light-green-800-fg {
  color: #376D16 !important;
}
.theme-default-dark .light-green-900 {
  background-color: #274C0F !important;
  color: white !important;
}
.theme-default-dark .light-green-900[disabled] {
  background-color: rgba(39, 76, 15, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .light-green-900-bg {
  background-color: #274C0F !important;
}
.theme-default-dark .light-green-900-fg {
  color: #274C0F !important;
}
.theme-default-dark .light-green-A100 {
  background-color: #D4FFBE !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .light-green-A100[disabled] {
  background-color: rgba(212, 255, 190, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .light-green-A100-bg {
  background-color: #D4FFBE !important;
}
.theme-default-dark .light-green-A100-fg {
  color: #D4FFBE !important;
}
.theme-default-dark .light-green-A200 {
  background-color: #B1FF8A !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .light-green-A200[disabled] {
  background-color: rgba(177, 255, 138, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .light-green-A200-bg {
  background-color: #B1FF8A !important;
}
.theme-default-dark .light-green-A200-fg {
  color: #B1FF8A !important;
}
.theme-default-dark .light-green-A400 {
  background-color: #8DFF56 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .light-green-A400[disabled] {
  background-color: rgba(141, 255, 86, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .light-green-A400-bg {
  background-color: #8DFF56 !important;
}
.theme-default-dark .light-green-A400-fg {
  color: #8DFF56 !important;
}
.theme-default-dark .light-green-A700 {
  background-color: #6AFF21 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .light-green-A700[disabled] {
  background-color: rgba(106, 255, 33, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .light-green-A700-bg {
  background-color: #6AFF21 !important;
}
.theme-default-dark .light-green-A700-fg {
  color: #6AFF21 !important;
}
.theme-default-dark .lime-50 {
  background-color: #f0f7e0 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .lime-50[disabled] {
  background-color: rgba(240, 247, 224, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .lime-50-bg {
  background-color: #f0f7e0 !important;
}
.theme-default-dark .lime-50-fg {
  color: #f0f7e0 !important;
}
.theme-default-dark .lime-100 {
  background-color: #dbebb3 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .lime-100[disabled] {
  background-color: rgba(219, 235, 179, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .lime-100-bg {
  background-color: #dbebb3 !important;
}
.theme-default-dark .lime-100-fg {
  color: #dbebb3 !important;
}
.theme-default-dark .lime-200 {
  background-color: #c3de80 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .lime-200[disabled] {
  background-color: rgba(195, 222, 128, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .lime-200-bg {
  background-color: #c3de80 !important;
}
.theme-default-dark .lime-200-fg {
  color: #c3de80 !important;
}
.theme-default-dark .lime-300 {
  background-color: #aad14d !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .lime-300[disabled] {
  background-color: rgba(170, 209, 77, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .lime-300-bg {
  background-color: #aad14d !important;
}
.theme-default-dark .lime-300-fg {
  color: #aad14d !important;
}
.theme-default-dark .lime-400 {
  background-color: #98c726 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .lime-400[disabled] {
  background-color: rgba(152, 199, 38, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .lime-400-bg {
  background-color: #98c726 !important;
}
.theme-default-dark .lime-400-fg {
  color: #98c726 !important;
}
.theme-default-dark .lime-500 {
  background-color: #86bd00 !important;
  color: white !important;
}
.theme-default-dark .lime-500[disabled] {
  background-color: rgba(134, 189, 0, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .lime-500-bg {
  background-color: #86bd00 !important;
}
.theme-default-dark .lime-500-fg {
  color: #86bd00 !important;
}
.theme-default-dark .lime-bg {
  background-color: #86bd00 !important;
}
.theme-default-dark .lime-fg {
  color: #86bd00 !important;
}
.theme-default-dark .lime-600 {
  background-color: #7eb700 !important;
  color: white !important;
}
.theme-default-dark .lime-600[disabled] {
  background-color: rgba(126, 183, 0, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .lime-600-bg {
  background-color: #7eb700 !important;
}
.theme-default-dark .lime-600-fg {
  color: #7eb700 !important;
}
.theme-default-dark .lime-700 {
  background-color: #73ae00 !important;
  color: white !important;
}
.theme-default-dark .lime-700[disabled] {
  background-color: rgba(115, 174, 0, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .lime-700-bg {
  background-color: #73ae00 !important;
}
.theme-default-dark .lime-700-fg {
  color: #73ae00 !important;
}
.theme-default-dark .lime-800 {
  background-color: #69a600 !important;
  color: white !important;
}
.theme-default-dark .lime-800[disabled] {
  background-color: rgba(105, 166, 0, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .lime-800-bg {
  background-color: #69a600 !important;
}
.theme-default-dark .lime-800-fg {
  color: #69a600 !important;
}
.theme-default-dark .lime-900 {
  background-color: #569800 !important;
  color: white !important;
}
.theme-default-dark .lime-900[disabled] {
  background-color: rgba(86, 152, 0, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .lime-900-bg {
  background-color: #569800 !important;
}
.theme-default-dark .lime-900-fg {
  color: #569800 !important;
}
.theme-default-dark .lime-A100 {
  background-color: #f4ff81 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .lime-A100[disabled] {
  background-color: rgba(244, 255, 129, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .lime-A100-bg {
  background-color: #f4ff81 !important;
}
.theme-default-dark .lime-A100-fg {
  color: #f4ff81 !important;
}
.theme-default-dark .lime-A200 {
  background-color: #eeff41 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .lime-A200[disabled] {
  background-color: rgba(238, 255, 65, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .lime-A200-bg {
  background-color: #eeff41 !important;
}
.theme-default-dark .lime-A200-fg {
  color: #eeff41 !important;
}
.theme-default-dark .lime-A400 {
  background-color: #c6ff00 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .lime-A400[disabled] {
  background-color: rgba(198, 255, 0, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .lime-A400-bg {
  background-color: #c6ff00 !important;
}
.theme-default-dark .lime-A400-fg {
  color: #c6ff00 !important;
}
.theme-default-dark .lime-A700 {
  background-color: #aeea00 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .lime-A700[disabled] {
  background-color: rgba(174, 234, 0, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .lime-A700-bg {
  background-color: #aeea00 !important;
}
.theme-default-dark .lime-A700-fg {
  color: #aeea00 !important;
}
.theme-default-dark .yellow-50 {
  background-color: #fcf8e0 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .yellow-50[disabled] {
  background-color: rgba(252, 248, 224, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .yellow-50-bg {
  background-color: #fcf8e0 !important;
}
.theme-default-dark .yellow-50-fg {
  color: #fcf8e0 !important;
}
.theme-default-dark .yellow-100 {
  background-color: #f8edb3 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .yellow-100[disabled] {
  background-color: rgba(248, 237, 179, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .yellow-100-bg {
  background-color: #f8edb3 !important;
}
.theme-default-dark .yellow-100-fg {
  color: #f8edb3 !important;
}
.theme-default-dark .yellow-200 {
  background-color: #f4e180 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .yellow-200[disabled] {
  background-color: rgba(244, 225, 128, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .yellow-200-bg {
  background-color: #f4e180 !important;
}
.theme-default-dark .yellow-200-fg {
  color: #f4e180 !important;
}
.theme-default-dark .yellow-300 {
  background-color: #efd54d !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .yellow-300[disabled] {
  background-color: rgba(239, 213, 77, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .yellow-300-bg {
  background-color: #efd54d !important;
}
.theme-default-dark .yellow-300-fg {
  color: #efd54d !important;
}
.theme-default-dark .yellow-400 {
  background-color: #ebcc26 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .yellow-400[disabled] {
  background-color: rgba(235, 204, 38, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .yellow-400-bg {
  background-color: #ebcc26 !important;
}
.theme-default-dark .yellow-400-fg {
  color: #ebcc26 !important;
}
.theme-default-dark .yellow-500 {
  background-color: #e8c300 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .yellow-500[disabled] {
  background-color: rgba(232, 195, 0, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .yellow-500-bg {
  background-color: #e8c300 !important;
}
.theme-default-dark .yellow-500-fg {
  color: #e8c300 !important;
}
.theme-default-dark .yellow-bg {
  background-color: #e8c300 !important;
}
.theme-default-dark .yellow-fg {
  color: #e8c300 !important;
}
.theme-default-dark .yellow-600 {
  background-color: #e5bd00 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .yellow-600[disabled] {
  background-color: rgba(229, 189, 0, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .yellow-600-bg {
  background-color: #e5bd00 !important;
}
.theme-default-dark .yellow-600-fg {
  color: #e5bd00 !important;
}
.theme-default-dark .yellow-700 {
  background-color: #e2b500 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .yellow-700[disabled] {
  background-color: rgba(226, 181, 0, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .yellow-700-bg {
  background-color: #e2b500 !important;
}
.theme-default-dark .yellow-700-fg {
  color: #e2b500 !important;
}
.theme-default-dark .yellow-800 {
  background-color: #deae00 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .yellow-800[disabled] {
  background-color: rgba(222, 174, 0, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .yellow-800-bg {
  background-color: #deae00 !important;
}
.theme-default-dark .yellow-800-fg {
  color: #deae00 !important;
}
.theme-default-dark .yellow-900 {
  background-color: #d8a100 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .yellow-900[disabled] {
  background-color: rgba(216, 161, 0, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .yellow-900-bg {
  background-color: #d8a100 !important;
}
.theme-default-dark .yellow-900-fg {
  color: #d8a100 !important;
}
.theme-default-dark .yellow-A100 {
  background-color: #ffff8d !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .yellow-A100[disabled] {
  background-color: rgba(255, 255, 141, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .yellow-A100-bg {
  background-color: #ffff8d !important;
}
.theme-default-dark .yellow-A100-fg {
  color: #ffff8d !important;
}
.theme-default-dark .yellow-A200 {
  background-color: #ffff00 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .yellow-A200[disabled] {
  background-color: rgba(255, 255, 0, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .yellow-A200-bg {
  background-color: #ffff00 !important;
}
.theme-default-dark .yellow-A200-fg {
  color: #ffff00 !important;
}
.theme-default-dark .yellow-A400 {
  background-color: #ffea00 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .yellow-A400[disabled] {
  background-color: rgba(255, 234, 0, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .yellow-A400-bg {
  background-color: #ffea00 !important;
}
.theme-default-dark .yellow-A400-fg {
  color: #ffea00 !important;
}
.theme-default-dark .yellow-A700 {
  background-color: #ffd600 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .yellow-A700[disabled] {
  background-color: rgba(255, 214, 0, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .yellow-A700-bg {
  background-color: #ffd600 !important;
}
.theme-default-dark .yellow-A700-fg {
  color: #ffd600 !important;
}
.theme-default-dark .amber-50 {
  background-color: #fef4e4 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .amber-50[disabled] {
  background-color: rgba(254, 244, 228, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .amber-50-bg {
  background-color: #fef4e4 !important;
}
.theme-default-dark .amber-50-fg {
  color: #fef4e4 !important;
}
.theme-default-dark .amber-100 {
  background-color: #fee4ba !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .amber-100[disabled] {
  background-color: rgba(254, 228, 186, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .amber-100-bg {
  background-color: #fee4ba !important;
}
.theme-default-dark .amber-100-fg {
  color: #fee4ba !important;
}
.theme-default-dark .amber-200 {
  background-color: #fdd38d !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .amber-200[disabled] {
  background-color: rgba(253, 211, 141, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .amber-200-bg {
  background-color: #fdd38d !important;
}
.theme-default-dark .amber-200-fg {
  color: #fdd38d !important;
}
.theme-default-dark .amber-300 {
  background-color: #fcc15f !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .amber-300[disabled] {
  background-color: rgba(252, 193, 95, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .amber-300-bg {
  background-color: #fcc15f !important;
}
.theme-default-dark .amber-300-fg {
  color: #fcc15f !important;
}
.theme-default-dark .amber-400 {
  background-color: #fbb33c !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .amber-400[disabled] {
  background-color: rgba(251, 179, 60, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .amber-400-bg {
  background-color: #fbb33c !important;
}
.theme-default-dark .amber-400-fg {
  color: #fbb33c !important;
}
.theme-default-dark .amber-500 {
  background-color: #faa61a !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .amber-500[disabled] {
  background-color: rgba(250, 166, 26, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .amber-500-bg {
  background-color: #faa61a !important;
}
.theme-default-dark .amber-500-fg {
  color: #faa61a !important;
}
.theme-default-dark .amber-bg {
  background-color: #faa61a !important;
}
.theme-default-dark .amber-fg {
  color: #faa61a !important;
}
.theme-default-dark .amber-600 {
  background-color: #f99e17 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .amber-600[disabled] {
  background-color: rgba(249, 158, 23, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .amber-600-bg {
  background-color: #f99e17 !important;
}
.theme-default-dark .amber-600-fg {
  color: #f99e17 !important;
}
.theme-default-dark .amber-700 {
  background-color: #f99513 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .amber-700[disabled] {
  background-color: rgba(249, 149, 19, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .amber-700-bg {
  background-color: #f99513 !important;
}
.theme-default-dark .amber-700-fg {
  color: #f99513 !important;
}
.theme-default-dark .amber-800 {
  background-color: #f88b0f !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .amber-800[disabled] {
  background-color: rgba(248, 139, 15, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .amber-800-bg {
  background-color: #f88b0f !important;
}
.theme-default-dark .amber-800-fg {
  color: #f88b0f !important;
}
.theme-default-dark .amber-900 {
  background-color: #f67b08 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .amber-900[disabled] {
  background-color: rgba(246, 123, 8, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .amber-900-bg {
  background-color: #f67b08 !important;
}
.theme-default-dark .amber-900-fg {
  color: #f67b08 !important;
}
.theme-default-dark .amber-A100 {
  background-color: #ffe57f !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .amber-A100[disabled] {
  background-color: rgba(255, 229, 127, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .amber-A100-bg {
  background-color: #ffe57f !important;
}
.theme-default-dark .amber-A100-fg {
  color: #ffe57f !important;
}
.theme-default-dark .amber-A200 {
  background-color: #ffd740 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .amber-A200[disabled] {
  background-color: rgba(255, 215, 64, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .amber-A200-bg {
  background-color: #ffd740 !important;
}
.theme-default-dark .amber-A200-fg {
  color: #ffd740 !important;
}
.theme-default-dark .amber-A400 {
  background-color: #ffc400 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .amber-A400[disabled] {
  background-color: rgba(255, 196, 0, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .amber-A400-bg {
  background-color: #ffc400 !important;
}
.theme-default-dark .amber-A400-fg {
  color: #ffc400 !important;
}
.theme-default-dark .amber-A700 {
  background-color: #ffab00 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .amber-A700[disabled] {
  background-color: rgba(255, 171, 0, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .amber-A700-bg {
  background-color: #ffab00 !important;
}
.theme-default-dark .amber-A700-fg {
  color: #ffab00 !important;
}
.theme-default-dark .orange-50 {
  background-color: #feefe3 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .orange-50[disabled] {
  background-color: rgba(254, 239, 227, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .orange-50-bg {
  background-color: #feefe3 !important;
}
.theme-default-dark .orange-50-fg {
  color: #feefe3 !important;
}
.theme-default-dark .orange-100 {
  background-color: #fdd7b9 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .orange-100[disabled] {
  background-color: rgba(253, 215, 185, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .orange-100-bg {
  background-color: #fdd7b9 !important;
}
.theme-default-dark .orange-100-fg {
  color: #fdd7b9 !important;
}
.theme-default-dark .orange-200 {
  background-color: #fbbc8a !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .orange-200[disabled] {
  background-color: rgba(251, 188, 138, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .orange-200-bg {
  background-color: #fbbc8a !important;
}
.theme-default-dark .orange-200-fg {
  color: #fbbc8a !important;
}
.theme-default-dark .orange-300 {
  background-color: #f9a15b !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .orange-300[disabled] {
  background-color: rgba(249, 161, 91, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .orange-300-bg {
  background-color: #f9a15b !important;
}
.theme-default-dark .orange-300-fg {
  color: #f9a15b !important;
}
.theme-default-dark .orange-400 {
  background-color: #f88c37 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .orange-400[disabled] {
  background-color: rgba(248, 140, 55, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .orange-400-bg {
  background-color: #f88c37 !important;
}
.theme-default-dark .orange-400-fg {
  color: #f88c37 !important;
}
.theme-default-dark .orange-500 {
  background-color: #f77814 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .orange-500[disabled] {
  background-color: rgba(247, 120, 20, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .orange-500-bg {
  background-color: #f77814 !important;
}
.theme-default-dark .orange-500-fg {
  color: #f77814 !important;
}
.theme-default-dark .orange-bg {
  background-color: #f77814 !important;
}
.theme-default-dark .orange-fg {
  color: #f77814 !important;
}
.theme-default-dark .orange-600 {
  background-color: #f67012 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .orange-600[disabled] {
  background-color: rgba(246, 112, 18, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .orange-600-bg {
  background-color: #f67012 !important;
}
.theme-default-dark .orange-600-fg {
  color: #f67012 !important;
}
.theme-default-dark .orange-700 {
  background-color: #f5650e !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .orange-700[disabled] {
  background-color: rgba(245, 101, 14, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .orange-700-bg {
  background-color: #f5650e !important;
}
.theme-default-dark .orange-700-fg {
  color: #f5650e !important;
}
.theme-default-dark .orange-800 {
  background-color: #f35b0b !important;
  color: white !important;
}
.theme-default-dark .orange-800[disabled] {
  background-color: rgba(243, 91, 11, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .orange-800-bg {
  background-color: #f35b0b !important;
}
.theme-default-dark .orange-800-fg {
  color: #f35b0b !important;
}
.theme-default-dark .orange-900 {
  background-color: #f14806 !important;
  color: white !important;
}
.theme-default-dark .orange-900[disabled] {
  background-color: rgba(241, 72, 6, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .orange-900-bg {
  background-color: #f14806 !important;
}
.theme-default-dark .orange-900-fg {
  color: #f14806 !important;
}
.theme-default-dark .orange-A100 {
  background-color: #ffd180 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .orange-A100[disabled] {
  background-color: rgba(255, 209, 128, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .orange-A100-bg {
  background-color: #ffd180 !important;
}
.theme-default-dark .orange-A100-fg {
  color: #ffd180 !important;
}
.theme-default-dark .orange-A200 {
  background-color: #ffab40 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .orange-A200[disabled] {
  background-color: rgba(255, 171, 64, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .orange-A200-bg {
  background-color: #ffab40 !important;
}
.theme-default-dark .orange-A200-fg {
  color: #ffab40 !important;
}
.theme-default-dark .orange-A400 {
  background-color: #ff9100 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .orange-A400[disabled] {
  background-color: rgba(255, 145, 0, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .orange-A400-bg {
  background-color: #ff9100 !important;
}
.theme-default-dark .orange-A400-fg {
  color: #ff9100 !important;
}
.theme-default-dark .orange-A700 {
  background-color: #ff6d00 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .orange-A700[disabled] {
  background-color: rgba(255, 109, 0, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .orange-A700-bg {
  background-color: #ff6d00 !important;
}
.theme-default-dark .orange-A700-fg {
  color: #ff6d00 !important;
}
.theme-default-dark .deep-orange-50 {
  background-color: #fbe9e7 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .deep-orange-50[disabled] {
  background-color: rgba(251, 233, 231, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .deep-orange-50-bg {
  background-color: #fbe9e7 !important;
}
.theme-default-dark .deep-orange-50-fg {
  color: #fbe9e7 !important;
}
.theme-default-dark .deep-orange-100 {
  background-color: #ffccbc !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .deep-orange-100[disabled] {
  background-color: rgba(255, 204, 188, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .deep-orange-100-bg {
  background-color: #ffccbc !important;
}
.theme-default-dark .deep-orange-100-fg {
  color: #ffccbc !important;
}
.theme-default-dark .deep-orange-200 {
  background-color: #ffab91 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .deep-orange-200[disabled] {
  background-color: rgba(255, 171, 145, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .deep-orange-200-bg {
  background-color: #ffab91 !important;
}
.theme-default-dark .deep-orange-200-fg {
  color: #ffab91 !important;
}
.theme-default-dark .deep-orange-300 {
  background-color: #ff8a65 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .deep-orange-300[disabled] {
  background-color: rgba(255, 138, 101, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .deep-orange-300-bg {
  background-color: #ff8a65 !important;
}
.theme-default-dark .deep-orange-300-fg {
  color: #ff8a65 !important;
}
.theme-default-dark .deep-orange-400 {
  background-color: #ff7043 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .deep-orange-400[disabled] {
  background-color: rgba(255, 112, 67, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .deep-orange-400-bg {
  background-color: #ff7043 !important;
}
.theme-default-dark .deep-orange-400-fg {
  color: #ff7043 !important;
}
.theme-default-dark .deep-orange-500 {
  background-color: #ff5722 !important;
  color: white !important;
}
.theme-default-dark .deep-orange-500[disabled] {
  background-color: rgba(255, 87, 34, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .deep-orange-500-bg {
  background-color: #ff5722 !important;
}
.theme-default-dark .deep-orange-500-fg {
  color: #ff5722 !important;
}
.theme-default-dark .deep-orange-bg {
  background-color: #ff5722 !important;
}
.theme-default-dark .deep-orange-fg {
  color: #ff5722 !important;
}
.theme-default-dark .deep-orange-600 {
  background-color: #f4511e !important;
  color: white !important;
}
.theme-default-dark .deep-orange-600[disabled] {
  background-color: rgba(244, 81, 30, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .deep-orange-600-bg {
  background-color: #f4511e !important;
}
.theme-default-dark .deep-orange-600-fg {
  color: #f4511e !important;
}
.theme-default-dark .deep-orange-700 {
  background-color: #e64a19 !important;
  color: white !important;
}
.theme-default-dark .deep-orange-700[disabled] {
  background-color: rgba(230, 74, 25, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .deep-orange-700-bg {
  background-color: #e64a19 !important;
}
.theme-default-dark .deep-orange-700-fg {
  color: #e64a19 !important;
}
.theme-default-dark .deep-orange-800 {
  background-color: #d84315 !important;
  color: white !important;
}
.theme-default-dark .deep-orange-800[disabled] {
  background-color: rgba(216, 67, 21, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .deep-orange-800-bg {
  background-color: #d84315 !important;
}
.theme-default-dark .deep-orange-800-fg {
  color: #d84315 !important;
}
.theme-default-dark .deep-orange-900 {
  background-color: #bf360c !important;
  color: white !important;
}
.theme-default-dark .deep-orange-900[disabled] {
  background-color: rgba(191, 54, 12, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .deep-orange-900-bg {
  background-color: #bf360c !important;
}
.theme-default-dark .deep-orange-900-fg {
  color: #bf360c !important;
}
.theme-default-dark .deep-orange-A100 {
  background-color: #ff9e80 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .deep-orange-A100[disabled] {
  background-color: rgba(255, 158, 128, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .deep-orange-A100-bg {
  background-color: #ff9e80 !important;
}
.theme-default-dark .deep-orange-A100-fg {
  color: #ff9e80 !important;
}
.theme-default-dark .deep-orange-A200 {
  background-color: #ff6e40 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .deep-orange-A200[disabled] {
  background-color: rgba(255, 110, 64, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .deep-orange-A200-bg {
  background-color: #ff6e40 !important;
}
.theme-default-dark .deep-orange-A200-fg {
  color: #ff6e40 !important;
}
.theme-default-dark .deep-orange-A400 {
  background-color: #ff3d00 !important;
  color: white !important;
}
.theme-default-dark .deep-orange-A400[disabled] {
  background-color: rgba(255, 61, 0, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .deep-orange-A400-bg {
  background-color: #ff3d00 !important;
}
.theme-default-dark .deep-orange-A400-fg {
  color: #ff3d00 !important;
}
.theme-default-dark .deep-orange-A700 {
  background-color: #dd2c00 !important;
  color: white !important;
}
.theme-default-dark .deep-orange-A700[disabled] {
  background-color: rgba(221, 44, 0, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .deep-orange-A700-bg {
  background-color: #dd2c00 !important;
}
.theme-default-dark .deep-orange-A700-fg {
  color: #dd2c00 !important;
}
.theme-default-dark .brown-50 {
  background-color: #efebe9 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .brown-50[disabled] {
  background-color: rgba(239, 235, 233, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .brown-50-bg {
  background-color: #efebe9 !important;
}
.theme-default-dark .brown-50-fg {
  color: #efebe9 !important;
}
.theme-default-dark .brown-100 {
  background-color: #d7ccc8 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .brown-100[disabled] {
  background-color: rgba(215, 204, 200, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .brown-100-bg {
  background-color: #d7ccc8 !important;
}
.theme-default-dark .brown-100-fg {
  color: #d7ccc8 !important;
}
.theme-default-dark .brown-200 {
  background-color: #bcaaa4 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .brown-200[disabled] {
  background-color: rgba(188, 170, 164, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .brown-200-bg {
  background-color: #bcaaa4 !important;
}
.theme-default-dark .brown-200-fg {
  color: #bcaaa4 !important;
}
.theme-default-dark .brown-300 {
  background-color: #a1887f !important;
  color: white !important;
}
.theme-default-dark .brown-300[disabled] {
  background-color: rgba(161, 136, 127, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .brown-300-bg {
  background-color: #a1887f !important;
}
.theme-default-dark .brown-300-fg {
  color: #a1887f !important;
}
.theme-default-dark .brown-400 {
  background-color: #8d6e63 !important;
  color: white !important;
}
.theme-default-dark .brown-400[disabled] {
  background-color: rgba(141, 110, 99, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .brown-400-bg {
  background-color: #8d6e63 !important;
}
.theme-default-dark .brown-400-fg {
  color: #8d6e63 !important;
}
.theme-default-dark .brown-500 {
  background-color: #795548 !important;
  color: white !important;
}
.theme-default-dark .brown-500[disabled] {
  background-color: rgba(121, 85, 72, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .brown-500-bg {
  background-color: #795548 !important;
}
.theme-default-dark .brown-500-fg {
  color: #795548 !important;
}
.theme-default-dark .brown-bg {
  background-color: #795548 !important;
}
.theme-default-dark .brown-fg {
  color: #795548 !important;
}
.theme-default-dark .brown-600 {
  background-color: #6d4c41 !important;
  color: white !important;
}
.theme-default-dark .brown-600[disabled] {
  background-color: rgba(109, 76, 65, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .brown-600-bg {
  background-color: #6d4c41 !important;
}
.theme-default-dark .brown-600-fg {
  color: #6d4c41 !important;
}
.theme-default-dark .brown-700 {
  background-color: #5d4037 !important;
  color: white !important;
}
.theme-default-dark .brown-700[disabled] {
  background-color: rgba(93, 64, 55, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .brown-700-bg {
  background-color: #5d4037 !important;
}
.theme-default-dark .brown-700-fg {
  color: #5d4037 !important;
}
.theme-default-dark .brown-800 {
  background-color: #4e342e !important;
  color: white !important;
}
.theme-default-dark .brown-800[disabled] {
  background-color: rgba(78, 52, 46, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .brown-800-bg {
  background-color: #4e342e !important;
}
.theme-default-dark .brown-800-fg {
  color: #4e342e !important;
}
.theme-default-dark .brown-900 {
  background-color: #3e2723 !important;
  color: white !important;
}
.theme-default-dark .brown-900[disabled] {
  background-color: rgba(62, 39, 35, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .brown-900-bg {
  background-color: #3e2723 !important;
}
.theme-default-dark .brown-900-fg {
  color: #3e2723 !important;
}
.theme-default-dark .brown-A100 {
  background-color: #d7ccc8 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .brown-A100[disabled] {
  background-color: rgba(215, 204, 200, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .brown-A100-bg {
  background-color: #d7ccc8 !important;
}
.theme-default-dark .brown-A100-fg {
  color: #d7ccc8 !important;
}
.theme-default-dark .brown-A200 {
  background-color: #bcaaa4 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .brown-A200[disabled] {
  background-color: rgba(188, 170, 164, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .brown-A200-bg {
  background-color: #bcaaa4 !important;
}
.theme-default-dark .brown-A200-fg {
  color: #bcaaa4 !important;
}
.theme-default-dark .brown-A400 {
  background-color: #8d6e63 !important;
  color: white !important;
}
.theme-default-dark .brown-A400[disabled] {
  background-color: rgba(141, 110, 99, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .brown-A400-bg {
  background-color: #8d6e63 !important;
}
.theme-default-dark .brown-A400-fg {
  color: #8d6e63 !important;
}
.theme-default-dark .brown-A700 {
  background-color: #5d4037 !important;
  color: white !important;
}
.theme-default-dark .brown-A700[disabled] {
  background-color: rgba(93, 64, 55, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .brown-A700-bg {
  background-color: #5d4037 !important;
}
.theme-default-dark .brown-A700-fg {
  color: #5d4037 !important;
}
.theme-default-dark .grey-50 {
  background-color: #EFF1F2 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .grey-50[disabled] {
  background-color: rgba(239, 241, 242, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .grey-50-bg {
  background-color: #EFF1F2 !important;
}
.theme-default-dark .grey-50-fg {
  color: #EFF1F2 !important;
}
.theme-default-dark .grey-100 {
  background-color: #DEE3E6 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .grey-100[disabled] {
  background-color: rgba(222, 227, 230, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .grey-100-bg {
  background-color: #DEE3E6 !important;
}
.theme-default-dark .grey-100-fg {
  color: #DEE3E6 !important;
}
.theme-default-dark .grey-200 {
  background-color: #C8D0D5 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .grey-200[disabled] {
  background-color: rgba(200, 208, 213, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .grey-200-bg {
  background-color: #C8D0D5 !important;
}
.theme-default-dark .grey-200-fg {
  color: #C8D0D5 !important;
}
.theme-default-dark .grey-300 {
  background-color: #B2BDC4 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .grey-300[disabled] {
  background-color: rgba(178, 189, 196, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .grey-300-bg {
  background-color: #B2BDC4 !important;
}
.theme-default-dark .grey-300-fg {
  color: #B2BDC4 !important;
}
.theme-default-dark .grey-400 {
  background-color: #A2AEB7 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .grey-400[disabled] {
  background-color: rgba(162, 174, 183, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .grey-400-bg {
  background-color: #A2AEB7 !important;
}
.theme-default-dark .grey-400-fg {
  color: #A2AEB7 !important;
}
.theme-default-dark .grey-500 {
  background-color: #91A0AA !important;
  color: white !important;
}
.theme-default-dark .grey-500[disabled] {
  background-color: rgba(145, 160, 170, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .grey-500-bg {
  background-color: #91A0AA !important;
}
.theme-default-dark .grey-500-fg {
  color: #91A0AA !important;
}
.theme-default-dark .grey-bg {
  background-color: #91A0AA !important;
}
.theme-default-dark .grey-fg {
  color: #91A0AA !important;
}
.theme-default-dark .grey-600 {
  background-color: #7B8891 !important;
  color: white !important;
}
.theme-default-dark .grey-600[disabled] {
  background-color: rgba(123, 136, 145, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .grey-600-bg {
  background-color: #7B8891 !important;
}
.theme-default-dark .grey-600-fg {
  color: #7B8891 !important;
}
.theme-default-dark .grey-700 {
  background-color: #667077 !important;
  color: white !important;
}
.theme-default-dark .grey-700[disabled] {
  background-color: rgba(102, 112, 119, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .grey-700-bg {
  background-color: #667077 !important;
}
.theme-default-dark .grey-700-fg {
  color: #667077 !important;
}
.theme-default-dark .grey-800 {
  background-color: #495055 !important;
  color: white !important;
}
.theme-default-dark .grey-800[disabled] {
  background-color: rgba(73, 80, 85, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .grey-800-bg {
  background-color: #495055 !important;
}
.theme-default-dark .grey-800-fg {
  color: #495055 !important;
}
.theme-default-dark .grey-900 {
  background-color: #33383B !important;
  color: white !important;
}
.theme-default-dark .grey-900[disabled] {
  background-color: rgba(51, 56, 59, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .grey-900-bg {
  background-color: #33383B !important;
}
.theme-default-dark .grey-900-fg {
  color: #33383B !important;
}
.theme-default-dark .grey-A100 {
  background-color: #FFFFFF !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .grey-A100[disabled] {
  background-color: rgba(255, 255, 255, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .grey-A100-bg {
  background-color: #FFFFFF !important;
}
.theme-default-dark .grey-A100-fg {
  color: #FFFFFF !important;
}
.theme-default-dark .grey-A200 {
  background-color: #E7EDF1 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .grey-A200[disabled] {
  background-color: rgba(231, 237, 241, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .grey-A200-bg {
  background-color: #E7EDF1 !important;
}
.theme-default-dark .grey-A200-fg {
  color: #E7EDF1 !important;
}
.theme-default-dark .grey-A400 {
  background-color: #C0CEDA !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .grey-A400[disabled] {
  background-color: rgba(192, 206, 218, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .grey-A400-bg {
  background-color: #C0CEDA !important;
}
.theme-default-dark .grey-A400-fg {
  color: #C0CEDA !important;
}
.theme-default-dark .grey-A700 {
  background-color: #98AFC2 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .grey-A700[disabled] {
  background-color: rgba(152, 175, 194, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .grey-A700-bg {
  background-color: #98AFC2 !important;
}
.theme-default-dark .grey-A700-fg {
  color: #98AFC2 !important;
}
.theme-default-dark .blue-grey-50 {
  background-color: #FFFFFF !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .blue-grey-50[disabled] {
  background-color: rgba(255, 255, 255, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .blue-grey-50-bg {
  background-color: #FFFFFF !important;
}
.theme-default-dark .blue-grey-50-fg {
  color: #FFFFFF !important;
}
.theme-default-dark .blue-grey-100 {
  background-color: #E2E7E9 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .blue-grey-100[disabled] {
  background-color: rgba(226, 231, 233, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .blue-grey-100-bg {
  background-color: #E2E7E9 !important;
}
.theme-default-dark .blue-grey-100-fg {
  color: #E2E7E9 !important;
}
.theme-default-dark .blue-grey-200 {
  background-color: #C4CFD4 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .blue-grey-200[disabled] {
  background-color: rgba(196, 207, 212, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .blue-grey-200-bg {
  background-color: #C4CFD4 !important;
}
.theme-default-dark .blue-grey-200-fg {
  color: #C4CFD4 !important;
}
.theme-default-dark .blue-grey-300 {
  background-color: #A7B6BE !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .blue-grey-300[disabled] {
  background-color: rgba(167, 182, 190, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .blue-grey-300-bg {
  background-color: #A7B6BE !important;
}
.theme-default-dark .blue-grey-300-fg {
  color: #A7B6BE !important;
}
.theme-default-dark .blue-grey-400 {
  background-color: #8A9EA8 !important;
  color: white !important;
}
.theme-default-dark .blue-grey-400[disabled] {
  background-color: rgba(138, 158, 168, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .blue-grey-400-bg {
  background-color: #8A9EA8 !important;
}
.theme-default-dark .blue-grey-400-fg {
  color: #8A9EA8 !important;
}
.theme-default-dark .blue-grey-500 {
  background-color: #7E8E95 !important;
  color: white !important;
}
.theme-default-dark .blue-grey-500[disabled] {
  background-color: rgba(126, 142, 149, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .blue-grey-500-bg {
  background-color: #7E8E95 !important;
}
.theme-default-dark .blue-grey-500-fg {
  color: #7E8E95 !important;
}
.theme-default-dark .blue-grey-bg {
  background-color: #7E8E95 !important;
}
.theme-default-dark .blue-grey-fg {
  color: #7E8E95 !important;
}
.theme-default-dark .blue-grey-600 {
  background-color: #5A6A72 !important;
  color: white !important;
}
.theme-default-dark .blue-grey-600[disabled] {
  background-color: rgba(90, 106, 114, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .blue-grey-600-bg {
  background-color: #5A6A72 !important;
}
.theme-default-dark .blue-grey-600-fg {
  color: #5A6A72 !important;
}
.theme-default-dark .blue-grey-700 {
  background-color: #435056 !important;
  color: white !important;
}
.theme-default-dark .blue-grey-700[disabled] {
  background-color: rgba(67, 80, 86, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .blue-grey-700-bg {
  background-color: #435056 !important;
}
.theme-default-dark .blue-grey-700-fg {
  color: #435056 !important;
}
.theme-default-dark .blue-grey-800 {
  background-color: #2B363B !important;
  color: white !important;
}
.theme-default-dark .blue-grey-800[disabled] {
  background-color: rgba(43, 54, 59, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .blue-grey-800-bg {
  background-color: #2B363B !important;
}
.theme-default-dark .blue-grey-800-fg {
  color: #2B363B !important;
}
.theme-default-dark .blue-grey-900 {
  background-color: #21282C !important;
  color: white !important;
}
.theme-default-dark .blue-grey-900[disabled] {
  background-color: rgba(33, 40, 44, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .blue-grey-900-bg {
  background-color: #21282C !important;
}
.theme-default-dark .blue-grey-900-fg {
  color: #21282C !important;
}
.theme-default-dark .blue-grey-A100 {
  background-color: #E2E7E9 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .blue-grey-A100[disabled] {
  background-color: rgba(226, 231, 233, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .blue-grey-A100-bg {
  background-color: #E2E7E9 !important;
}
.theme-default-dark .blue-grey-A100-fg {
  color: #E2E7E9 !important;
}
.theme-default-dark .blue-grey-A200 {
  background-color: #C4CFD4 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .blue-grey-A200[disabled] {
  background-color: rgba(196, 207, 212, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .blue-grey-A200-bg {
  background-color: #C4CFD4 !important;
}
.theme-default-dark .blue-grey-A200-fg {
  color: #C4CFD4 !important;
}
.theme-default-dark .blue-grey-A400 {
  background-color: #8A9EA8 !important;
  color: white !important;
}
.theme-default-dark .blue-grey-A400[disabled] {
  background-color: rgba(138, 158, 168, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .blue-grey-A400-bg {
  background-color: #8A9EA8 !important;
}
.theme-default-dark .blue-grey-A400-fg {
  color: #8A9EA8 !important;
}
.theme-default-dark .blue-grey-A700 {
  background-color: #435056 !important;
  color: white !important;
}
.theme-default-dark .blue-grey-A700[disabled] {
  background-color: rgba(67, 80, 86, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .blue-grey-A700-bg {
  background-color: #435056 !important;
}
.theme-default-dark .blue-grey-A700-fg {
  color: #435056 !important;
}
.theme-default-dark .light-grey-50 {
  background-color: #FFFFFF !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .light-grey-50[disabled] {
  background-color: rgba(255, 255, 255, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .light-grey-50-bg {
  background-color: #FFFFFF !important;
}
.theme-default-dark .light-grey-50-fg {
  color: #FFFFFF !important;
}
.theme-default-dark .light-grey-100 {
  background-color: #F8F9FC !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .light-grey-100[disabled] {
  background-color: rgba(248, 249, 252, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .light-grey-100-bg {
  background-color: #F8F9FC !important;
}
.theme-default-dark .light-grey-100-fg {
  color: #F8F9FC !important;
}
.theme-default-dark .light-grey-200 {
  background-color: #F2F3F8 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .light-grey-200[disabled] {
  background-color: rgba(242, 243, 248, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .light-grey-200-bg {
  background-color: #F2F3F8 !important;
}
.theme-default-dark .light-grey-200-fg {
  color: #F2F3F8 !important;
}
.theme-default-dark .light-grey-300 {
  background-color: #EAECF6 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .light-grey-300[disabled] {
  background-color: rgba(234, 236, 246, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .light-grey-300-bg {
  background-color: #EAECF6 !important;
}
.theme-default-dark .light-grey-300-fg {
  color: #EAECF6 !important;
}
.theme-default-dark .light-grey-400 {
  background-color: #E2E5F3 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .light-grey-400[disabled] {
  background-color: rgba(226, 229, 243, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .light-grey-400-bg {
  background-color: #E2E5F3 !important;
}
.theme-default-dark .light-grey-400-fg {
  color: #E2E5F3 !important;
}
.theme-default-dark .light-grey-500 {
  background-color: #DBDFF0 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .light-grey-500[disabled] {
  background-color: rgba(219, 223, 240, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .light-grey-500-bg {
  background-color: #DBDFF0 !important;
}
.theme-default-dark .light-grey-500-fg {
  color: #DBDFF0 !important;
}
.theme-default-dark .light-grey-bg {
  background-color: #DBDFF0 !important;
}
.theme-default-dark .light-grey-fg {
  color: #DBDFF0 !important;
}
.theme-default-dark .light-grey-600 {
  background-color: #D4D8ED !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .light-grey-600[disabled] {
  background-color: rgba(212, 216, 237, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .light-grey-600-bg {
  background-color: #D4D8ED !important;
}
.theme-default-dark .light-grey-600-fg {
  color: #D4D8ED !important;
}
.theme-default-dark .light-grey-700 {
  background-color: #CDD2EA !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .light-grey-700[disabled] {
  background-color: rgba(205, 210, 234, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .light-grey-700-bg {
  background-color: #CDD2EA !important;
}
.theme-default-dark .light-grey-700-fg {
  color: #CDD2EA !important;
}
.theme-default-dark .light-grey-800 {
  background-color: #C6CBE7 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .light-grey-800[disabled] {
  background-color: rgba(198, 203, 231, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .light-grey-800-bg {
  background-color: #C6CBE7 !important;
}
.theme-default-dark .light-grey-800-fg {
  color: #C6CBE7 !important;
}
.theme-default-dark .light-grey-900 {
  background-color: #BFC5E3 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .light-grey-900[disabled] {
  background-color: rgba(191, 197, 227, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .light-grey-900-bg {
  background-color: #BFC5E3 !important;
}
.theme-default-dark .light-grey-900-fg {
  color: #BFC5E3 !important;
}
.theme-default-dark .light-grey-A100 {
  background-color: #F8F9FC !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .light-grey-A100[disabled] {
  background-color: rgba(248, 249, 252, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .light-grey-A100-bg {
  background-color: #F8F9FC !important;
}
.theme-default-dark .light-grey-A100-fg {
  color: #F8F9FC !important;
}
.theme-default-dark .light-grey-A200 {
  background-color: #F2F3F8 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .light-grey-A200[disabled] {
  background-color: rgba(242, 243, 248, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .light-grey-A200-bg {
  background-color: #F2F3F8 !important;
}
.theme-default-dark .light-grey-A200-fg {
  color: #F2F3F8 !important;
}
.theme-default-dark .light-grey-A400 {
  background-color: #E2E5F3 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .light-grey-A400[disabled] {
  background-color: rgba(226, 229, 243, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .light-grey-A400-bg {
  background-color: #E2E5F3 !important;
}
.theme-default-dark .light-grey-A400-fg {
  color: #E2E5F3 !important;
}
.theme-default-dark .light-grey-A700 {
  background-color: #CDD2EA !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .light-grey-A700[disabled] {
  background-color: rgba(205, 210, 234, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .light-grey-A700-bg {
  background-color: #CDD2EA !important;
}
.theme-default-dark .light-grey-A700-fg {
  color: #CDD2EA !important;
}
.theme-default-dark .dark-grey-50 {
  background-color: #2E2E2E !important;
  color: white !important;
}
.theme-default-dark .dark-grey-50[disabled] {
  background-color: rgba(46, 46, 46, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .dark-grey-50-bg {
  background-color: #2E2E2E !important;
}
.theme-default-dark .dark-grey-50-fg {
  color: #2E2E2E !important;
}
.theme-default-dark .dark-grey-100 {
  background-color: #292929 !important;
  color: white !important;
}
.theme-default-dark .dark-grey-100[disabled] {
  background-color: rgba(41, 41, 41, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .dark-grey-100-bg {
  background-color: #292929 !important;
}
.theme-default-dark .dark-grey-100-fg {
  color: #292929 !important;
}
.theme-default-dark .dark-grey-200 {
  background-color: #242424 !important;
  color: white !important;
}
.theme-default-dark .dark-grey-200[disabled] {
  background-color: rgba(36, 36, 36, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .dark-grey-200-bg {
  background-color: #242424 !important;
}
.theme-default-dark .dark-grey-200-fg {
  color: #242424 !important;
}
.theme-default-dark .dark-grey-300 {
  background-color: #1F1F1F !important;
  color: white !important;
}
.theme-default-dark .dark-grey-300[disabled] {
  background-color: rgba(31, 31, 31, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .dark-grey-300-bg {
  background-color: #1F1F1F !important;
}
.theme-default-dark .dark-grey-300-fg {
  color: #1F1F1F !important;
}
.theme-default-dark .dark-grey-400 {
  background-color: #1A1A1A !important;
  color: white !important;
}
.theme-default-dark .dark-grey-400[disabled] {
  background-color: rgba(26, 26, 26, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .dark-grey-400-bg {
  background-color: #1A1A1A !important;
}
.theme-default-dark .dark-grey-400-fg {
  color: #1A1A1A !important;
}
.theme-default-dark .dark-grey-500 {
  background-color: #141414 !important;
  color: white !important;
}
.theme-default-dark .dark-grey-500[disabled] {
  background-color: rgba(20, 20, 20, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .dark-grey-500-bg {
  background-color: #141414 !important;
}
.theme-default-dark .dark-grey-500-fg {
  color: #141414 !important;
}
.theme-default-dark .dark-grey-bg {
  background-color: #141414 !important;
}
.theme-default-dark .dark-grey-fg {
  color: #141414 !important;
}
.theme-default-dark .dark-grey-600 {
  background-color: #0F0F0F !important;
  color: white !important;
}
.theme-default-dark .dark-grey-600[disabled] {
  background-color: rgba(15, 15, 15, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .dark-grey-600-bg {
  background-color: #0F0F0F !important;
}
.theme-default-dark .dark-grey-600-fg {
  color: #0F0F0F !important;
}
.theme-default-dark .dark-grey-700 {
  background-color: #0A0A0A !important;
  color: white !important;
}
.theme-default-dark .dark-grey-700[disabled] {
  background-color: rgba(10, 10, 10, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .dark-grey-700-bg {
  background-color: #0A0A0A !important;
}
.theme-default-dark .dark-grey-700-fg {
  color: #0A0A0A !important;
}
.theme-default-dark .dark-grey-800 {
  background-color: #050505 !important;
  color: white !important;
}
.theme-default-dark .dark-grey-800[disabled] {
  background-color: rgba(5, 5, 5, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .dark-grey-800-bg {
  background-color: #050505 !important;
}
.theme-default-dark .dark-grey-800-fg {
  color: #050505 !important;
}
.theme-default-dark .dark-grey-900 {
  background-color: #000000 !important;
  color: white !important;
}
.theme-default-dark .dark-grey-900[disabled] {
  background-color: rgba(0, 0, 0, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .dark-grey-900-bg {
  background-color: #000000 !important;
}
.theme-default-dark .dark-grey-900-fg {
  color: #000000 !important;
}
.theme-default-dark .dark-grey-A100 {
  background-color: #292929 !important;
  color: white !important;
}
.theme-default-dark .dark-grey-A100[disabled] {
  background-color: rgba(41, 41, 41, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .dark-grey-A100-bg {
  background-color: #292929 !important;
}
.theme-default-dark .dark-grey-A100-fg {
  color: #292929 !important;
}
.theme-default-dark .dark-grey-A200 {
  background-color: #242424 !important;
  color: white !important;
}
.theme-default-dark .dark-grey-A200[disabled] {
  background-color: rgba(36, 36, 36, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .dark-grey-A200-bg {
  background-color: #242424 !important;
}
.theme-default-dark .dark-grey-A200-fg {
  color: #242424 !important;
}
.theme-default-dark .dark-grey-A400 {
  background-color: #1A1A1A !important;
  color: white !important;
}
.theme-default-dark .dark-grey-A400[disabled] {
  background-color: rgba(26, 26, 26, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .dark-grey-A400-bg {
  background-color: #1A1A1A !important;
}
.theme-default-dark .dark-grey-A400-fg {
  color: #1A1A1A !important;
}
.theme-default-dark .dark-grey-A700 {
  background-color: #0A0A0A !important;
  color: white !important;
}
.theme-default-dark .dark-grey-A700[disabled] {
  background-color: rgba(10, 10, 10, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .dark-grey-A700-bg {
  background-color: #0A0A0A !important;
}
.theme-default-dark .dark-grey-A700-fg {
  color: #0A0A0A !important;
}
.theme-default-dark .primary-50 {
  background-color: #FFFFFF !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .primary-50[disabled] {
  background-color: rgba(255, 255, 255, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .primary-50-bg {
  background-color: #FFFFFF !important;
}
.theme-default-dark .primary-50-fg {
  color: #FFFFFF !important;
}
.theme-default-dark .primary-100 {
  background-color: #E2E7E9 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .primary-100[disabled] {
  background-color: rgba(226, 231, 233, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .primary-100-bg {
  background-color: #E2E7E9 !important;
}
.theme-default-dark .primary-100-fg {
  color: #E2E7E9 !important;
}
.theme-default-dark .primary-200 {
  background-color: #C4CFD4 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .primary-200[disabled] {
  background-color: rgba(196, 207, 212, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .primary-200-bg {
  background-color: #C4CFD4 !important;
}
.theme-default-dark .primary-200-fg {
  color: #C4CFD4 !important;
}
.theme-default-dark .primary-300 {
  background-color: #A7B6BE !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .primary-300[disabled] {
  background-color: rgba(167, 182, 190, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .primary-300-bg {
  background-color: #A7B6BE !important;
}
.theme-default-dark .primary-300-fg {
  color: #A7B6BE !important;
}
.theme-default-dark .primary-400 {
  background-color: #8A9EA8 !important;
  color: white !important;
}
.theme-default-dark .primary-400[disabled] {
  background-color: rgba(138, 158, 168, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .primary-400-bg {
  background-color: #8A9EA8 !important;
}
.theme-default-dark .primary-400-fg {
  color: #8A9EA8 !important;
}
.theme-default-dark .primary-500 {
  background-color: #7E8E95 !important;
  color: white !important;
}
.theme-default-dark .primary-500[disabled] {
  background-color: rgba(126, 142, 149, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .primary-500-bg {
  background-color: #7E8E95 !important;
}
.theme-default-dark .primary-500-fg {
  color: #7E8E95 !important;
}
.theme-default-dark .primary-bg {
  background-color: #7E8E95 !important;
}
.theme-default-dark .primary-fg {
  color: #7E8E95 !important;
}
.theme-default-dark .primary-600 {
  background-color: #5A6A72 !important;
  color: white !important;
}
.theme-default-dark .primary-600[disabled] {
  background-color: rgba(90, 106, 114, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .primary-600-bg {
  background-color: #5A6A72 !important;
}
.theme-default-dark .primary-600-fg {
  color: #5A6A72 !important;
}
.theme-default-dark .primary-700 {
  background-color: #435056 !important;
  color: white !important;
}
.theme-default-dark .primary-700[disabled] {
  background-color: rgba(67, 80, 86, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .primary-700-bg {
  background-color: #435056 !important;
}
.theme-default-dark .primary-700-fg {
  color: #435056 !important;
}
.theme-default-dark .primary-800 {
  background-color: #2B363B !important;
  color: white !important;
}
.theme-default-dark .primary-800[disabled] {
  background-color: rgba(43, 54, 59, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .primary-800-bg {
  background-color: #2B363B !important;
}
.theme-default-dark .primary-800-fg {
  color: #2B363B !important;
}
.theme-default-dark .primary-900 {
  background-color: #21282C !important;
  color: white !important;
}
.theme-default-dark .primary-900[disabled] {
  background-color: rgba(33, 40, 44, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .primary-900-bg {
  background-color: #21282C !important;
}
.theme-default-dark .primary-900-fg {
  color: #21282C !important;
}
.theme-default-dark .primary-A100 {
  background-color: #E2E7E9 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .primary-A100[disabled] {
  background-color: rgba(226, 231, 233, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .primary-A100-bg {
  background-color: #E2E7E9 !important;
}
.theme-default-dark .primary-A100-fg {
  color: #E2E7E9 !important;
}
.theme-default-dark .primary-A200 {
  background-color: #C4CFD4 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .primary-A200[disabled] {
  background-color: rgba(196, 207, 212, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .primary-A200-bg {
  background-color: #C4CFD4 !important;
}
.theme-default-dark .primary-A200-fg {
  color: #C4CFD4 !important;
}
.theme-default-dark .primary-A400 {
  background-color: #8A9EA8 !important;
  color: white !important;
}
.theme-default-dark .primary-A400[disabled] {
  background-color: rgba(138, 158, 168, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .primary-A400-bg {
  background-color: #8A9EA8 !important;
}
.theme-default-dark .primary-A400-fg {
  color: #8A9EA8 !important;
}
.theme-default-dark .primary-A700 {
  background-color: #435056 !important;
  color: white !important;
}
.theme-default-dark .primary-A700[disabled] {
  background-color: rgba(67, 80, 86, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .primary-A700-bg {
  background-color: #435056 !important;
}
.theme-default-dark .primary-A700-fg {
  color: #435056 !important;
}
.theme-default-dark .accent-50 {
  background-color: #e4ebfb !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .accent-50[disabled] {
  background-color: rgba(228, 235, 251, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .accent-50-bg {
  background-color: #e4ebfb !important;
}
.theme-default-dark .accent-50-fg {
  color: #e4ebfb !important;
}
.theme-default-dark .accent-100 {
  background-color: #bccef4 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .accent-100[disabled] {
  background-color: rgba(188, 206, 244, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .accent-100-bg {
  background-color: #bccef4 !important;
}
.theme-default-dark .accent-100-fg {
  color: #bccef4 !important;
}
.theme-default-dark .accent-200 {
  background-color: #8faded !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .accent-200[disabled] {
  background-color: rgba(143, 173, 237, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .accent-200-bg {
  background-color: #8faded !important;
}
.theme-default-dark .accent-200-fg {
  color: #8faded !important;
}
.theme-default-dark .accent-300 {
  background-color: #628ce5 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .accent-300[disabled] {
  background-color: rgba(98, 140, 229, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .accent-300-bg {
  background-color: #628ce5 !important;
}
.theme-default-dark .accent-300-fg {
  color: #628ce5 !important;
}
.theme-default-dark .accent-400 {
  background-color: #4074e0 !important;
  color: white !important;
}
.theme-default-dark .accent-400[disabled] {
  background-color: rgba(64, 116, 224, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .accent-400-bg {
  background-color: #4074e0 !important;
}
.theme-default-dark .accent-400-fg {
  color: #4074e0 !important;
}
.theme-default-dark .accent-500 {
  background-color: #1e5bda !important;
  color: white !important;
}
.theme-default-dark .accent-500[disabled] {
  background-color: rgba(30, 91, 218, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .accent-500-bg {
  background-color: #1e5bda !important;
}
.theme-default-dark .accent-500-fg {
  color: #1e5bda !important;
}
.theme-default-dark .accent-bg {
  background-color: #1e5bda !important;
}
.theme-default-dark .accent-fg {
  color: #1e5bda !important;
}
.theme-default-dark .accent-600 {
  background-color: #1a53d6 !important;
  color: white !important;
}
.theme-default-dark .accent-600[disabled] {
  background-color: rgba(26, 83, 214, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .accent-600-bg {
  background-color: #1a53d6 !important;
}
.theme-default-dark .accent-600-fg {
  color: #1a53d6 !important;
}
.theme-default-dark .accent-700 {
  background-color: #1649d0 !important;
  color: white !important;
}
.theme-default-dark .accent-700[disabled] {
  background-color: rgba(22, 73, 208, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .accent-700-bg {
  background-color: #1649d0 !important;
}
.theme-default-dark .accent-700-fg {
  color: #1649d0 !important;
}
.theme-default-dark .accent-800 {
  background-color: #1240cb !important;
  color: white !important;
}
.theme-default-dark .accent-800[disabled] {
  background-color: rgba(18, 64, 203, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .accent-800-bg {
  background-color: #1240cb !important;
}
.theme-default-dark .accent-800-fg {
  color: #1240cb !important;
}
.theme-default-dark .accent-900 {
  background-color: #0a2fc2 !important;
  color: white !important;
}
.theme-default-dark .accent-900[disabled] {
  background-color: rgba(10, 47, 194, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .accent-900-bg {
  background-color: #0a2fc2 !important;
}
.theme-default-dark .accent-900-fg {
  color: #0a2fc2 !important;
}
.theme-default-dark .accent-A100 {
  background-color: #82b1ff !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .accent-A100[disabled] {
  background-color: rgba(130, 177, 255, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .accent-A100-bg {
  background-color: #82b1ff !important;
}
.theme-default-dark .accent-A100-fg {
  color: #82b1ff !important;
}
.theme-default-dark .accent-A200 {
  background-color: #448aff !important;
  color: white !important;
}
.theme-default-dark .accent-A200[disabled] {
  background-color: rgba(68, 138, 255, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .accent-A200-bg {
  background-color: #448aff !important;
}
.theme-default-dark .accent-A200-fg {
  color: #448aff !important;
}
.theme-default-dark .accent-A400 {
  background-color: #2979ff !important;
  color: white !important;
}
.theme-default-dark .accent-A400[disabled] {
  background-color: rgba(41, 121, 255, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .accent-A400-bg {
  background-color: #2979ff !important;
}
.theme-default-dark .accent-A400-fg {
  color: #2979ff !important;
}
.theme-default-dark .accent-A700 {
  background-color: #2962ff !important;
  color: white !important;
}
.theme-default-dark .accent-A700[disabled] {
  background-color: rgba(41, 98, 255, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .accent-A700-bg {
  background-color: #2962ff !important;
}
.theme-default-dark .accent-A700-fg {
  color: #2962ff !important;
}
.theme-default-dark .warn-50 {
  background-color: #fce7e7 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .warn-50[disabled] {
  background-color: rgba(252, 231, 231, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .warn-50-bg {
  background-color: #fce7e7 !important;
}
.theme-default-dark .warn-50-fg {
  color: #fce7e7 !important;
}
.theme-default-dark .warn-100 {
  background-color: #f7c4c4 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .warn-100[disabled] {
  background-color: rgba(247, 196, 196, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .warn-100-bg {
  background-color: #f7c4c4 !important;
}
.theme-default-dark .warn-100-fg {
  color: #f7c4c4 !important;
}
.theme-default-dark .warn-200 {
  background-color: #f29d9d !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .warn-200[disabled] {
  background-color: rgba(242, 157, 157, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .warn-200-bg {
  background-color: #f29d9d !important;
}
.theme-default-dark .warn-200-fg {
  color: #f29d9d !important;
}
.theme-default-dark .warn-300 {
  background-color: #ed7575 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .warn-300[disabled] {
  background-color: rgba(237, 117, 117, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .warn-300-bg {
  background-color: #ed7575 !important;
}
.theme-default-dark .warn-300-fg {
  color: #ed7575 !important;
}
.theme-default-dark .warn-400 {
  background-color: #e95858 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .warn-400[disabled] {
  background-color: rgba(233, 88, 88, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .warn-400-bg {
  background-color: #e95858 !important;
}
.theme-default-dark .warn-400-fg {
  color: #e95858 !important;
}
.theme-default-dark .warn-500 {
  background-color: #e53a3a !important;
  color: white !important;
}
.theme-default-dark .warn-500[disabled] {
  background-color: rgba(229, 58, 58, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .warn-500-bg {
  background-color: #e53a3a !important;
}
.theme-default-dark .warn-500-fg {
  color: #e53a3a !important;
}
.theme-default-dark .warn-bg {
  background-color: #e53a3a !important;
}
.theme-default-dark .warn-fg {
  color: #e53a3a !important;
}
.theme-default-dark .warn-600 {
  background-color: #e23434 !important;
  color: white !important;
}
.theme-default-dark .warn-600[disabled] {
  background-color: rgba(226, 52, 52, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .warn-600-bg {
  background-color: #e23434 !important;
}
.theme-default-dark .warn-600-fg {
  color: #e23434 !important;
}
.theme-default-dark .warn-700 {
  background-color: #de2c2c !important;
  color: white !important;
}
.theme-default-dark .warn-700[disabled] {
  background-color: rgba(222, 44, 44, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .warn-700-bg {
  background-color: #de2c2c !important;
}
.theme-default-dark .warn-700-fg {
  color: #de2c2c !important;
}
.theme-default-dark .warn-800 {
  background-color: #da2525 !important;
  color: white !important;
}
.theme-default-dark .warn-800[disabled] {
  background-color: rgba(218, 37, 37, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .warn-800-bg {
  background-color: #da2525 !important;
}
.theme-default-dark .warn-800-fg {
  color: #da2525 !important;
}
.theme-default-dark .warn-900 {
  background-color: #d31818 !important;
  color: white !important;
}
.theme-default-dark .warn-900[disabled] {
  background-color: rgba(211, 24, 24, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .warn-900-bg {
  background-color: #d31818 !important;
}
.theme-default-dark .warn-900-fg {
  color: #d31818 !important;
}
.theme-default-dark .warn-A100 {
  background-color: #ff8a80 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .warn-A100[disabled] {
  background-color: rgba(255, 138, 128, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .warn-A100-bg {
  background-color: #ff8a80 !important;
}
.theme-default-dark .warn-A100-fg {
  color: #ff8a80 !important;
}
.theme-default-dark .warn-A200 {
  background-color: #ff5252 !important;
  color: white !important;
}
.theme-default-dark .warn-A200[disabled] {
  background-color: rgba(255, 82, 82, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .warn-A200-bg {
  background-color: #ff5252 !important;
}
.theme-default-dark .warn-A200-fg {
  color: #ff5252 !important;
}
.theme-default-dark .warn-A400 {
  background-color: #ff1744 !important;
  color: white !important;
}
.theme-default-dark .warn-A400[disabled] {
  background-color: rgba(255, 23, 68, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .warn-A400-bg {
  background-color: #ff1744 !important;
}
.theme-default-dark .warn-A400-fg {
  color: #ff1744 !important;
}
.theme-default-dark .warn-A700 {
  background-color: #d50000 !important;
  color: white !important;
}
.theme-default-dark .warn-A700[disabled] {
  background-color: rgba(213, 0, 0, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .warn-A700-bg {
  background-color: #d50000 !important;
}
.theme-default-dark .warn-A700-fg {
  color: #d50000 !important;
}
.theme-default-dark .red-50.secondary-text,
.theme-default-dark .red-50 .secondary-text, .theme-default-dark .red-100.secondary-text,
.theme-default-dark .red-100 .secondary-text, .theme-default-dark .red-200.secondary-text,
.theme-default-dark .red-200 .secondary-text, .theme-default-dark .red-300.secondary-text,
.theme-default-dark .red-300 .secondary-text, .theme-default-dark .red-400.secondary-text,
.theme-default-dark .red-400 .secondary-text, .theme-default-dark .red-A100.secondary-text,
.theme-default-dark .red-A100 .secondary-text, .theme-default-dark .pink-50.secondary-text,
.theme-default-dark .pink-50 .secondary-text, .theme-default-dark .pink-100.secondary-text,
.theme-default-dark .pink-100 .secondary-text, .theme-default-dark .pink-200.secondary-text,
.theme-default-dark .pink-200 .secondary-text, .theme-default-dark .pink-300.secondary-text,
.theme-default-dark .pink-300 .secondary-text, .theme-default-dark .pink-400.secondary-text,
.theme-default-dark .pink-400 .secondary-text, .theme-default-dark .pink-A100.secondary-text,
.theme-default-dark .pink-A100 .secondary-text, .theme-default-dark .purple-50.secondary-text,
.theme-default-dark .purple-50 .secondary-text, .theme-default-dark .purple-100.secondary-text,
.theme-default-dark .purple-100 .secondary-text, .theme-default-dark .purple-200.secondary-text,
.theme-default-dark .purple-200 .secondary-text, .theme-default-dark .purple-A100.secondary-text,
.theme-default-dark .purple-A100 .secondary-text, .theme-default-dark .deep-purple-50.secondary-text,
.theme-default-dark .deep-purple-50 .secondary-text, .theme-default-dark .deep-purple-100.secondary-text,
.theme-default-dark .deep-purple-100 .secondary-text, .theme-default-dark .deep-purple-200.secondary-text,
.theme-default-dark .deep-purple-200 .secondary-text, .theme-default-dark .deep-purple-A100.secondary-text,
.theme-default-dark .deep-purple-A100 .secondary-text, .theme-default-dark .indigo-50.secondary-text,
.theme-default-dark .indigo-50 .secondary-text, .theme-default-dark .indigo-100.secondary-text,
.theme-default-dark .indigo-100 .secondary-text, .theme-default-dark .indigo-200.secondary-text,
.theme-default-dark .indigo-200 .secondary-text, .theme-default-dark .indigo-A100.secondary-text,
.theme-default-dark .indigo-A100 .secondary-text, .theme-default-dark .blue-50.secondary-text,
.theme-default-dark .blue-50 .secondary-text, .theme-default-dark .blue-100.secondary-text,
.theme-default-dark .blue-100 .secondary-text, .theme-default-dark .blue-200.secondary-text,
.theme-default-dark .blue-200 .secondary-text, .theme-default-dark .blue-300.secondary-text,
.theme-default-dark .blue-300 .secondary-text, .theme-default-dark .blue-A100.secondary-text,
.theme-default-dark .blue-A100 .secondary-text, .theme-default-dark .light-blue-50.secondary-text,
.theme-default-dark .light-blue-50 .secondary-text, .theme-default-dark .light-blue-100.secondary-text,
.theme-default-dark .light-blue-100 .secondary-text, .theme-default-dark .light-blue-200.secondary-text,
.theme-default-dark .light-blue-200 .secondary-text, .theme-default-dark .light-blue-300.secondary-text,
.theme-default-dark .light-blue-300 .secondary-text, .theme-default-dark .light-blue-400.secondary-text,
.theme-default-dark .light-blue-400 .secondary-text, .theme-default-dark .light-blue-A100.secondary-text,
.theme-default-dark .light-blue-A100 .secondary-text, .theme-default-dark .light-blue-A200.secondary-text,
.theme-default-dark .light-blue-A200 .secondary-text, .theme-default-dark .light-blue-A400.secondary-text,
.theme-default-dark .light-blue-A400 .secondary-text, .theme-default-dark .cyan-50.secondary-text,
.theme-default-dark .cyan-50 .secondary-text, .theme-default-dark .cyan-100.secondary-text,
.theme-default-dark .cyan-100 .secondary-text, .theme-default-dark .cyan-200.secondary-text,
.theme-default-dark .cyan-200 .secondary-text, .theme-default-dark .cyan-300.secondary-text,
.theme-default-dark .cyan-300 .secondary-text, .theme-default-dark .cyan-400.secondary-text,
.theme-default-dark .cyan-400 .secondary-text, .theme-default-dark .cyan-A100.secondary-text,
.theme-default-dark .cyan-A100 .secondary-text, .theme-default-dark .cyan-A200.secondary-text,
.theme-default-dark .cyan-A200 .secondary-text, .theme-default-dark .cyan-A400.secondary-text,
.theme-default-dark .cyan-A400 .secondary-text, .theme-default-dark .cyan-A700.secondary-text,
.theme-default-dark .cyan-A700 .secondary-text, .theme-default-dark .teal-50.secondary-text,
.theme-default-dark .teal-50 .secondary-text, .theme-default-dark .teal-100.secondary-text,
.theme-default-dark .teal-100 .secondary-text, .theme-default-dark .teal-200.secondary-text,
.theme-default-dark .teal-200 .secondary-text, .theme-default-dark .teal-300.secondary-text,
.theme-default-dark .teal-300 .secondary-text, .theme-default-dark .teal-400.secondary-text,
.theme-default-dark .teal-400 .secondary-text, .theme-default-dark .teal-A100.secondary-text,
.theme-default-dark .teal-A100 .secondary-text, .theme-default-dark .teal-A200.secondary-text,
.theme-default-dark .teal-A200 .secondary-text, .theme-default-dark .teal-A400.secondary-text,
.theme-default-dark .teal-A400 .secondary-text, .theme-default-dark .teal-A700.secondary-text,
.theme-default-dark .teal-A700 .secondary-text, .theme-default-dark .green-50.secondary-text,
.theme-default-dark .green-50 .secondary-text, .theme-default-dark .green-100.secondary-text,
.theme-default-dark .green-100 .secondary-text, .theme-default-dark .green-200.secondary-text,
.theme-default-dark .green-200 .secondary-text, .theme-default-dark .green-300.secondary-text,
.theme-default-dark .green-300 .secondary-text, .theme-default-dark .green-400.secondary-text,
.theme-default-dark .green-400 .secondary-text, .theme-default-dark .green-A100.secondary-text,
.theme-default-dark .green-A100 .secondary-text, .theme-default-dark .green-A200.secondary-text,
.theme-default-dark .green-A200 .secondary-text, .theme-default-dark .green-A400.secondary-text,
.theme-default-dark .green-A400 .secondary-text, .theme-default-dark .green-A700.secondary-text,
.theme-default-dark .green-A700 .secondary-text, .theme-default-dark .light-green-50.secondary-text,
.theme-default-dark .light-green-50 .secondary-text, .theme-default-dark .light-green-100.secondary-text,
.theme-default-dark .light-green-100 .secondary-text, .theme-default-dark .light-green-200.secondary-text,
.theme-default-dark .light-green-200 .secondary-text, .theme-default-dark .light-green-300.secondary-text,
.theme-default-dark .light-green-300 .secondary-text, .theme-default-dark .light-green-400.secondary-text,
.theme-default-dark .light-green-400 .secondary-text, .theme-default-dark .light-green-500.secondary-text,
.theme-default-dark .light-green-500 .secondary-text, .theme-default-dark .light-green-A100.secondary-text,
.theme-default-dark .light-green-A100 .secondary-text, .theme-default-dark .light-green-A200.secondary-text,
.theme-default-dark .light-green-A200 .secondary-text, .theme-default-dark .light-green-A400.secondary-text,
.theme-default-dark .light-green-A400 .secondary-text, .theme-default-dark .light-green-A700.secondary-text,
.theme-default-dark .light-green-A700 .secondary-text, .theme-default-dark .lime-50.secondary-text,
.theme-default-dark .lime-50 .secondary-text, .theme-default-dark .lime-100.secondary-text,
.theme-default-dark .lime-100 .secondary-text, .theme-default-dark .lime-200.secondary-text,
.theme-default-dark .lime-200 .secondary-text, .theme-default-dark .lime-300.secondary-text,
.theme-default-dark .lime-300 .secondary-text, .theme-default-dark .lime-400.secondary-text,
.theme-default-dark .lime-400 .secondary-text, .theme-default-dark .lime-A100.secondary-text,
.theme-default-dark .lime-A100 .secondary-text, .theme-default-dark .lime-A200.secondary-text,
.theme-default-dark .lime-A200 .secondary-text, .theme-default-dark .lime-A400.secondary-text,
.theme-default-dark .lime-A400 .secondary-text, .theme-default-dark .lime-A700.secondary-text,
.theme-default-dark .lime-A700 .secondary-text, .theme-default-dark .yellow-50.secondary-text,
.theme-default-dark .yellow-50 .secondary-text, .theme-default-dark .yellow-100.secondary-text,
.theme-default-dark .yellow-100 .secondary-text, .theme-default-dark .yellow-200.secondary-text,
.theme-default-dark .yellow-200 .secondary-text, .theme-default-dark .yellow-300.secondary-text,
.theme-default-dark .yellow-300 .secondary-text, .theme-default-dark .yellow-400.secondary-text,
.theme-default-dark .yellow-400 .secondary-text, .theme-default-dark .yellow-500.secondary-text,
.theme-default-dark .yellow-500 .secondary-text, .theme-default-dark .yellow-600.secondary-text,
.theme-default-dark .yellow-600 .secondary-text, .theme-default-dark .yellow-700.secondary-text,
.theme-default-dark .yellow-700 .secondary-text, .theme-default-dark .yellow-800.secondary-text,
.theme-default-dark .yellow-800 .secondary-text, .theme-default-dark .yellow-900.secondary-text,
.theme-default-dark .yellow-900 .secondary-text, .theme-default-dark .yellow-A100.secondary-text,
.theme-default-dark .yellow-A100 .secondary-text, .theme-default-dark .yellow-A200.secondary-text,
.theme-default-dark .yellow-A200 .secondary-text, .theme-default-dark .yellow-A400.secondary-text,
.theme-default-dark .yellow-A400 .secondary-text, .theme-default-dark .yellow-A700.secondary-text,
.theme-default-dark .yellow-A700 .secondary-text, .theme-default-dark .amber-50.secondary-text,
.theme-default-dark .amber-50 .secondary-text, .theme-default-dark .amber-100.secondary-text,
.theme-default-dark .amber-100 .secondary-text, .theme-default-dark .amber-200.secondary-text,
.theme-default-dark .amber-200 .secondary-text, .theme-default-dark .amber-300.secondary-text,
.theme-default-dark .amber-300 .secondary-text, .theme-default-dark .amber-400.secondary-text,
.theme-default-dark .amber-400 .secondary-text, .theme-default-dark .amber-500.secondary-text,
.theme-default-dark .amber-500 .secondary-text, .theme-default-dark .amber-600.secondary-text,
.theme-default-dark .amber-600 .secondary-text, .theme-default-dark .amber-700.secondary-text,
.theme-default-dark .amber-700 .secondary-text, .theme-default-dark .amber-800.secondary-text,
.theme-default-dark .amber-800 .secondary-text, .theme-default-dark .amber-900.secondary-text,
.theme-default-dark .amber-900 .secondary-text, .theme-default-dark .amber-A100.secondary-text,
.theme-default-dark .amber-A100 .secondary-text, .theme-default-dark .amber-A200.secondary-text,
.theme-default-dark .amber-A200 .secondary-text, .theme-default-dark .amber-A400.secondary-text,
.theme-default-dark .amber-A400 .secondary-text, .theme-default-dark .amber-A700.secondary-text,
.theme-default-dark .amber-A700 .secondary-text, .theme-default-dark .orange-50.secondary-text,
.theme-default-dark .orange-50 .secondary-text, .theme-default-dark .orange-100.secondary-text,
.theme-default-dark .orange-100 .secondary-text, .theme-default-dark .orange-200.secondary-text,
.theme-default-dark .orange-200 .secondary-text, .theme-default-dark .orange-300.secondary-text,
.theme-default-dark .orange-300 .secondary-text, .theme-default-dark .orange-400.secondary-text,
.theme-default-dark .orange-400 .secondary-text, .theme-default-dark .orange-500.secondary-text,
.theme-default-dark .orange-500 .secondary-text, .theme-default-dark .orange-600.secondary-text,
.theme-default-dark .orange-600 .secondary-text, .theme-default-dark .orange-700.secondary-text,
.theme-default-dark .orange-700 .secondary-text, .theme-default-dark .orange-A100.secondary-text,
.theme-default-dark .orange-A100 .secondary-text, .theme-default-dark .orange-A200.secondary-text,
.theme-default-dark .orange-A200 .secondary-text, .theme-default-dark .orange-A400.secondary-text,
.theme-default-dark .orange-A400 .secondary-text, .theme-default-dark .orange-A700.secondary-text,
.theme-default-dark .orange-A700 .secondary-text, .theme-default-dark .deep-orange-50.secondary-text,
.theme-default-dark .deep-orange-50 .secondary-text, .theme-default-dark .deep-orange-100.secondary-text,
.theme-default-dark .deep-orange-100 .secondary-text, .theme-default-dark .deep-orange-200.secondary-text,
.theme-default-dark .deep-orange-200 .secondary-text, .theme-default-dark .deep-orange-300.secondary-text,
.theme-default-dark .deep-orange-300 .secondary-text, .theme-default-dark .deep-orange-400.secondary-text,
.theme-default-dark .deep-orange-400 .secondary-text, .theme-default-dark .deep-orange-A100.secondary-text,
.theme-default-dark .deep-orange-A100 .secondary-text, .theme-default-dark .deep-orange-A200.secondary-text,
.theme-default-dark .deep-orange-A200 .secondary-text, .theme-default-dark .brown-50.secondary-text,
.theme-default-dark .brown-50 .secondary-text, .theme-default-dark .brown-100.secondary-text,
.theme-default-dark .brown-100 .secondary-text, .theme-default-dark .brown-200.secondary-text,
.theme-default-dark .brown-200 .secondary-text, .theme-default-dark .brown-A100.secondary-text,
.theme-default-dark .brown-A100 .secondary-text, .theme-default-dark .brown-A200.secondary-text,
.theme-default-dark .brown-A200 .secondary-text, .theme-default-dark .grey-50.secondary-text,
.theme-default-dark .grey-50 .secondary-text, .theme-default-dark .grey-100.secondary-text,
.theme-default-dark .grey-100 .secondary-text, .theme-default-dark .grey-200.secondary-text,
.theme-default-dark .grey-200 .secondary-text, .theme-default-dark .grey-300.secondary-text,
.theme-default-dark .grey-300 .secondary-text, .theme-default-dark .grey-400.secondary-text,
.theme-default-dark .grey-400 .secondary-text, .theme-default-dark .grey-A100.secondary-text,
.theme-default-dark .grey-A100 .secondary-text, .theme-default-dark .grey-A200.secondary-text,
.theme-default-dark .grey-A200 .secondary-text, .theme-default-dark .grey-A400.secondary-text,
.theme-default-dark .grey-A400 .secondary-text, .theme-default-dark .grey-A700.secondary-text,
.theme-default-dark .grey-A700 .secondary-text, .theme-default-dark .blue-grey-50.secondary-text,
.theme-default-dark .blue-grey-50 .secondary-text, .theme-default-dark .blue-grey-100.secondary-text,
.theme-default-dark .blue-grey-100 .secondary-text, .theme-default-dark .blue-grey-200.secondary-text,
.theme-default-dark .blue-grey-200 .secondary-text, .theme-default-dark .blue-grey-300.secondary-text,
.theme-default-dark .blue-grey-300 .secondary-text, .theme-default-dark .blue-grey-A100.secondary-text,
.theme-default-dark .blue-grey-A100 .secondary-text, .theme-default-dark .blue-grey-A200.secondary-text,
.theme-default-dark .blue-grey-A200 .secondary-text, .theme-default-dark .light-grey-50.secondary-text,
.theme-default-dark .light-grey-50 .secondary-text, .theme-default-dark .light-grey-100.secondary-text,
.theme-default-dark .light-grey-100 .secondary-text, .theme-default-dark .light-grey-200.secondary-text,
.theme-default-dark .light-grey-200 .secondary-text, .theme-default-dark .light-grey-300.secondary-text,
.theme-default-dark .light-grey-300 .secondary-text, .theme-default-dark .light-grey-400.secondary-text,
.theme-default-dark .light-grey-400 .secondary-text, .theme-default-dark .light-grey-500.secondary-text,
.theme-default-dark .light-grey-500 .secondary-text, .theme-default-dark .light-grey-600.secondary-text,
.theme-default-dark .light-grey-600 .secondary-text, .theme-default-dark .light-grey-700.secondary-text,
.theme-default-dark .light-grey-700 .secondary-text, .theme-default-dark .light-grey-800.secondary-text,
.theme-default-dark .light-grey-800 .secondary-text, .theme-default-dark .light-grey-900.secondary-text,
.theme-default-dark .light-grey-900 .secondary-text, .theme-default-dark .light-grey-A100.secondary-text,
.theme-default-dark .light-grey-A100 .secondary-text, .theme-default-dark .light-grey-A200.secondary-text,
.theme-default-dark .light-grey-A200 .secondary-text, .theme-default-dark .light-grey-A400.secondary-text,
.theme-default-dark .light-grey-A400 .secondary-text, .theme-default-dark .light-grey-A700.secondary-text,
.theme-default-dark .light-grey-A700 .secondary-text, .theme-default-dark .primary-50.secondary-text,
.theme-default-dark .primary-50 .secondary-text, .theme-default-dark .primary-100.secondary-text,
.theme-default-dark .primary-100 .secondary-text, .theme-default-dark .primary-200.secondary-text,
.theme-default-dark .primary-200 .secondary-text, .theme-default-dark .primary-300.secondary-text,
.theme-default-dark .primary-300 .secondary-text, .theme-default-dark .primary-A100.secondary-text,
.theme-default-dark .primary-A100 .secondary-text, .theme-default-dark .primary-A200.secondary-text,
.theme-default-dark .primary-A200 .secondary-text, .theme-default-dark .accent-50.secondary-text,
.theme-default-dark .accent-50 .secondary-text, .theme-default-dark .accent-100.secondary-text,
.theme-default-dark .accent-100 .secondary-text, .theme-default-dark .accent-200.secondary-text,
.theme-default-dark .accent-200 .secondary-text, .theme-default-dark .accent-300.secondary-text,
.theme-default-dark .accent-300 .secondary-text, .theme-default-dark .accent-A100.secondary-text,
.theme-default-dark .accent-A100 .secondary-text, .theme-default-dark .warn-50.secondary-text,
.theme-default-dark .warn-50 .secondary-text, .theme-default-dark .warn-100.secondary-text,
.theme-default-dark .warn-100 .secondary-text, .theme-default-dark .warn-200.secondary-text,
.theme-default-dark .warn-200 .secondary-text, .theme-default-dark .warn-300.secondary-text,
.theme-default-dark .warn-300 .secondary-text, .theme-default-dark .warn-400.secondary-text,
.theme-default-dark .warn-400 .secondary-text, .theme-default-dark .warn-A100.secondary-text,
.theme-default-dark .warn-A100 .secondary-text {
  color: rgba(0, 0, 0, 0.54) !important;
}
.theme-default-dark .red-50.hint-text,
.theme-default-dark .red-50 .hint-text, .theme-default-dark .red-50.disabled-text,
.theme-default-dark .red-50 .disabled-text, .theme-default-dark .red-100.hint-text,
.theme-default-dark .red-100 .hint-text, .theme-default-dark .red-100.disabled-text,
.theme-default-dark .red-100 .disabled-text, .theme-default-dark .red-200.hint-text,
.theme-default-dark .red-200 .hint-text, .theme-default-dark .red-200.disabled-text,
.theme-default-dark .red-200 .disabled-text, .theme-default-dark .red-300.hint-text,
.theme-default-dark .red-300 .hint-text, .theme-default-dark .red-300.disabled-text,
.theme-default-dark .red-300 .disabled-text, .theme-default-dark .red-400.hint-text,
.theme-default-dark .red-400 .hint-text, .theme-default-dark .red-400.disabled-text,
.theme-default-dark .red-400 .disabled-text, .theme-default-dark .red-A100.hint-text,
.theme-default-dark .red-A100 .hint-text, .theme-default-dark .red-A100.disabled-text,
.theme-default-dark .red-A100 .disabled-text, .theme-default-dark .pink-50.hint-text,
.theme-default-dark .pink-50 .hint-text, .theme-default-dark .pink-50.disabled-text,
.theme-default-dark .pink-50 .disabled-text, .theme-default-dark .pink-100.hint-text,
.theme-default-dark .pink-100 .hint-text, .theme-default-dark .pink-100.disabled-text,
.theme-default-dark .pink-100 .disabled-text, .theme-default-dark .pink-200.hint-text,
.theme-default-dark .pink-200 .hint-text, .theme-default-dark .pink-200.disabled-text,
.theme-default-dark .pink-200 .disabled-text, .theme-default-dark .pink-300.hint-text,
.theme-default-dark .pink-300 .hint-text, .theme-default-dark .pink-300.disabled-text,
.theme-default-dark .pink-300 .disabled-text, .theme-default-dark .pink-400.hint-text,
.theme-default-dark .pink-400 .hint-text, .theme-default-dark .pink-400.disabled-text,
.theme-default-dark .pink-400 .disabled-text, .theme-default-dark .pink-A100.hint-text,
.theme-default-dark .pink-A100 .hint-text, .theme-default-dark .pink-A100.disabled-text,
.theme-default-dark .pink-A100 .disabled-text, .theme-default-dark .purple-50.hint-text,
.theme-default-dark .purple-50 .hint-text, .theme-default-dark .purple-50.disabled-text,
.theme-default-dark .purple-50 .disabled-text, .theme-default-dark .purple-100.hint-text,
.theme-default-dark .purple-100 .hint-text, .theme-default-dark .purple-100.disabled-text,
.theme-default-dark .purple-100 .disabled-text, .theme-default-dark .purple-200.hint-text,
.theme-default-dark .purple-200 .hint-text, .theme-default-dark .purple-200.disabled-text,
.theme-default-dark .purple-200 .disabled-text, .theme-default-dark .purple-A100.hint-text,
.theme-default-dark .purple-A100 .hint-text, .theme-default-dark .purple-A100.disabled-text,
.theme-default-dark .purple-A100 .disabled-text, .theme-default-dark .deep-purple-50.hint-text,
.theme-default-dark .deep-purple-50 .hint-text, .theme-default-dark .deep-purple-50.disabled-text,
.theme-default-dark .deep-purple-50 .disabled-text, .theme-default-dark .deep-purple-100.hint-text,
.theme-default-dark .deep-purple-100 .hint-text, .theme-default-dark .deep-purple-100.disabled-text,
.theme-default-dark .deep-purple-100 .disabled-text, .theme-default-dark .deep-purple-200.hint-text,
.theme-default-dark .deep-purple-200 .hint-text, .theme-default-dark .deep-purple-200.disabled-text,
.theme-default-dark .deep-purple-200 .disabled-text, .theme-default-dark .deep-purple-A100.hint-text,
.theme-default-dark .deep-purple-A100 .hint-text, .theme-default-dark .deep-purple-A100.disabled-text,
.theme-default-dark .deep-purple-A100 .disabled-text, .theme-default-dark .indigo-50.hint-text,
.theme-default-dark .indigo-50 .hint-text, .theme-default-dark .indigo-50.disabled-text,
.theme-default-dark .indigo-50 .disabled-text, .theme-default-dark .indigo-100.hint-text,
.theme-default-dark .indigo-100 .hint-text, .theme-default-dark .indigo-100.disabled-text,
.theme-default-dark .indigo-100 .disabled-text, .theme-default-dark .indigo-200.hint-text,
.theme-default-dark .indigo-200 .hint-text, .theme-default-dark .indigo-200.disabled-text,
.theme-default-dark .indigo-200 .disabled-text, .theme-default-dark .indigo-A100.hint-text,
.theme-default-dark .indigo-A100 .hint-text, .theme-default-dark .indigo-A100.disabled-text,
.theme-default-dark .indigo-A100 .disabled-text, .theme-default-dark .blue-50.hint-text,
.theme-default-dark .blue-50 .hint-text, .theme-default-dark .blue-50.disabled-text,
.theme-default-dark .blue-50 .disabled-text, .theme-default-dark .blue-100.hint-text,
.theme-default-dark .blue-100 .hint-text, .theme-default-dark .blue-100.disabled-text,
.theme-default-dark .blue-100 .disabled-text, .theme-default-dark .blue-200.hint-text,
.theme-default-dark .blue-200 .hint-text, .theme-default-dark .blue-200.disabled-text,
.theme-default-dark .blue-200 .disabled-text, .theme-default-dark .blue-300.hint-text,
.theme-default-dark .blue-300 .hint-text, .theme-default-dark .blue-300.disabled-text,
.theme-default-dark .blue-300 .disabled-text, .theme-default-dark .blue-A100.hint-text,
.theme-default-dark .blue-A100 .hint-text, .theme-default-dark .blue-A100.disabled-text,
.theme-default-dark .blue-A100 .disabled-text, .theme-default-dark .light-blue-50.hint-text,
.theme-default-dark .light-blue-50 .hint-text, .theme-default-dark .light-blue-50.disabled-text,
.theme-default-dark .light-blue-50 .disabled-text, .theme-default-dark .light-blue-100.hint-text,
.theme-default-dark .light-blue-100 .hint-text, .theme-default-dark .light-blue-100.disabled-text,
.theme-default-dark .light-blue-100 .disabled-text, .theme-default-dark .light-blue-200.hint-text,
.theme-default-dark .light-blue-200 .hint-text, .theme-default-dark .light-blue-200.disabled-text,
.theme-default-dark .light-blue-200 .disabled-text, .theme-default-dark .light-blue-300.hint-text,
.theme-default-dark .light-blue-300 .hint-text, .theme-default-dark .light-blue-300.disabled-text,
.theme-default-dark .light-blue-300 .disabled-text, .theme-default-dark .light-blue-400.hint-text,
.theme-default-dark .light-blue-400 .hint-text, .theme-default-dark .light-blue-400.disabled-text,
.theme-default-dark .light-blue-400 .disabled-text, .theme-default-dark .light-blue-A100.hint-text,
.theme-default-dark .light-blue-A100 .hint-text, .theme-default-dark .light-blue-A100.disabled-text,
.theme-default-dark .light-blue-A100 .disabled-text, .theme-default-dark .light-blue-A200.hint-text,
.theme-default-dark .light-blue-A200 .hint-text, .theme-default-dark .light-blue-A200.disabled-text,
.theme-default-dark .light-blue-A200 .disabled-text, .theme-default-dark .light-blue-A400.hint-text,
.theme-default-dark .light-blue-A400 .hint-text, .theme-default-dark .light-blue-A400.disabled-text,
.theme-default-dark .light-blue-A400 .disabled-text, .theme-default-dark .cyan-50.hint-text,
.theme-default-dark .cyan-50 .hint-text, .theme-default-dark .cyan-50.disabled-text,
.theme-default-dark .cyan-50 .disabled-text, .theme-default-dark .cyan-100.hint-text,
.theme-default-dark .cyan-100 .hint-text, .theme-default-dark .cyan-100.disabled-text,
.theme-default-dark .cyan-100 .disabled-text, .theme-default-dark .cyan-200.hint-text,
.theme-default-dark .cyan-200 .hint-text, .theme-default-dark .cyan-200.disabled-text,
.theme-default-dark .cyan-200 .disabled-text, .theme-default-dark .cyan-300.hint-text,
.theme-default-dark .cyan-300 .hint-text, .theme-default-dark .cyan-300.disabled-text,
.theme-default-dark .cyan-300 .disabled-text, .theme-default-dark .cyan-400.hint-text,
.theme-default-dark .cyan-400 .hint-text, .theme-default-dark .cyan-400.disabled-text,
.theme-default-dark .cyan-400 .disabled-text, .theme-default-dark .cyan-A100.hint-text,
.theme-default-dark .cyan-A100 .hint-text, .theme-default-dark .cyan-A100.disabled-text,
.theme-default-dark .cyan-A100 .disabled-text, .theme-default-dark .cyan-A200.hint-text,
.theme-default-dark .cyan-A200 .hint-text, .theme-default-dark .cyan-A200.disabled-text,
.theme-default-dark .cyan-A200 .disabled-text, .theme-default-dark .cyan-A400.hint-text,
.theme-default-dark .cyan-A400 .hint-text, .theme-default-dark .cyan-A400.disabled-text,
.theme-default-dark .cyan-A400 .disabled-text, .theme-default-dark .cyan-A700.hint-text,
.theme-default-dark .cyan-A700 .hint-text, .theme-default-dark .cyan-A700.disabled-text,
.theme-default-dark .cyan-A700 .disabled-text, .theme-default-dark .teal-50.hint-text,
.theme-default-dark .teal-50 .hint-text, .theme-default-dark .teal-50.disabled-text,
.theme-default-dark .teal-50 .disabled-text, .theme-default-dark .teal-100.hint-text,
.theme-default-dark .teal-100 .hint-text, .theme-default-dark .teal-100.disabled-text,
.theme-default-dark .teal-100 .disabled-text, .theme-default-dark .teal-200.hint-text,
.theme-default-dark .teal-200 .hint-text, .theme-default-dark .teal-200.disabled-text,
.theme-default-dark .teal-200 .disabled-text, .theme-default-dark .teal-300.hint-text,
.theme-default-dark .teal-300 .hint-text, .theme-default-dark .teal-300.disabled-text,
.theme-default-dark .teal-300 .disabled-text, .theme-default-dark .teal-400.hint-text,
.theme-default-dark .teal-400 .hint-text, .theme-default-dark .teal-400.disabled-text,
.theme-default-dark .teal-400 .disabled-text, .theme-default-dark .teal-A100.hint-text,
.theme-default-dark .teal-A100 .hint-text, .theme-default-dark .teal-A100.disabled-text,
.theme-default-dark .teal-A100 .disabled-text, .theme-default-dark .teal-A200.hint-text,
.theme-default-dark .teal-A200 .hint-text, .theme-default-dark .teal-A200.disabled-text,
.theme-default-dark .teal-A200 .disabled-text, .theme-default-dark .teal-A400.hint-text,
.theme-default-dark .teal-A400 .hint-text, .theme-default-dark .teal-A400.disabled-text,
.theme-default-dark .teal-A400 .disabled-text, .theme-default-dark .teal-A700.hint-text,
.theme-default-dark .teal-A700 .hint-text, .theme-default-dark .teal-A700.disabled-text,
.theme-default-dark .teal-A700 .disabled-text, .theme-default-dark .green-50.hint-text,
.theme-default-dark .green-50 .hint-text, .theme-default-dark .green-50.disabled-text,
.theme-default-dark .green-50 .disabled-text, .theme-default-dark .green-100.hint-text,
.theme-default-dark .green-100 .hint-text, .theme-default-dark .green-100.disabled-text,
.theme-default-dark .green-100 .disabled-text, .theme-default-dark .green-200.hint-text,
.theme-default-dark .green-200 .hint-text, .theme-default-dark .green-200.disabled-text,
.theme-default-dark .green-200 .disabled-text, .theme-default-dark .green-300.hint-text,
.theme-default-dark .green-300 .hint-text, .theme-default-dark .green-300.disabled-text,
.theme-default-dark .green-300 .disabled-text, .theme-default-dark .green-400.hint-text,
.theme-default-dark .green-400 .hint-text, .theme-default-dark .green-400.disabled-text,
.theme-default-dark .green-400 .disabled-text, .theme-default-dark .green-A100.hint-text,
.theme-default-dark .green-A100 .hint-text, .theme-default-dark .green-A100.disabled-text,
.theme-default-dark .green-A100 .disabled-text, .theme-default-dark .green-A200.hint-text,
.theme-default-dark .green-A200 .hint-text, .theme-default-dark .green-A200.disabled-text,
.theme-default-dark .green-A200 .disabled-text, .theme-default-dark .green-A400.hint-text,
.theme-default-dark .green-A400 .hint-text, .theme-default-dark .green-A400.disabled-text,
.theme-default-dark .green-A400 .disabled-text, .theme-default-dark .green-A700.hint-text,
.theme-default-dark .green-A700 .hint-text, .theme-default-dark .green-A700.disabled-text,
.theme-default-dark .green-A700 .disabled-text, .theme-default-dark .light-green-50.hint-text,
.theme-default-dark .light-green-50 .hint-text, .theme-default-dark .light-green-50.disabled-text,
.theme-default-dark .light-green-50 .disabled-text, .theme-default-dark .light-green-100.hint-text,
.theme-default-dark .light-green-100 .hint-text, .theme-default-dark .light-green-100.disabled-text,
.theme-default-dark .light-green-100 .disabled-text, .theme-default-dark .light-green-200.hint-text,
.theme-default-dark .light-green-200 .hint-text, .theme-default-dark .light-green-200.disabled-text,
.theme-default-dark .light-green-200 .disabled-text, .theme-default-dark .light-green-300.hint-text,
.theme-default-dark .light-green-300 .hint-text, .theme-default-dark .light-green-300.disabled-text,
.theme-default-dark .light-green-300 .disabled-text, .theme-default-dark .light-green-400.hint-text,
.theme-default-dark .light-green-400 .hint-text, .theme-default-dark .light-green-400.disabled-text,
.theme-default-dark .light-green-400 .disabled-text, .theme-default-dark .light-green-500.hint-text,
.theme-default-dark .light-green-500 .hint-text, .theme-default-dark .light-green-500.disabled-text,
.theme-default-dark .light-green-500 .disabled-text, .theme-default-dark .light-green-A100.hint-text,
.theme-default-dark .light-green-A100 .hint-text, .theme-default-dark .light-green-A100.disabled-text,
.theme-default-dark .light-green-A100 .disabled-text, .theme-default-dark .light-green-A200.hint-text,
.theme-default-dark .light-green-A200 .hint-text, .theme-default-dark .light-green-A200.disabled-text,
.theme-default-dark .light-green-A200 .disabled-text, .theme-default-dark .light-green-A400.hint-text,
.theme-default-dark .light-green-A400 .hint-text, .theme-default-dark .light-green-A400.disabled-text,
.theme-default-dark .light-green-A400 .disabled-text, .theme-default-dark .light-green-A700.hint-text,
.theme-default-dark .light-green-A700 .hint-text, .theme-default-dark .light-green-A700.disabled-text,
.theme-default-dark .light-green-A700 .disabled-text, .theme-default-dark .lime-50.hint-text,
.theme-default-dark .lime-50 .hint-text, .theme-default-dark .lime-50.disabled-text,
.theme-default-dark .lime-50 .disabled-text, .theme-default-dark .lime-100.hint-text,
.theme-default-dark .lime-100 .hint-text, .theme-default-dark .lime-100.disabled-text,
.theme-default-dark .lime-100 .disabled-text, .theme-default-dark .lime-200.hint-text,
.theme-default-dark .lime-200 .hint-text, .theme-default-dark .lime-200.disabled-text,
.theme-default-dark .lime-200 .disabled-text, .theme-default-dark .lime-300.hint-text,
.theme-default-dark .lime-300 .hint-text, .theme-default-dark .lime-300.disabled-text,
.theme-default-dark .lime-300 .disabled-text, .theme-default-dark .lime-400.hint-text,
.theme-default-dark .lime-400 .hint-text, .theme-default-dark .lime-400.disabled-text,
.theme-default-dark .lime-400 .disabled-text, .theme-default-dark .lime-A100.hint-text,
.theme-default-dark .lime-A100 .hint-text, .theme-default-dark .lime-A100.disabled-text,
.theme-default-dark .lime-A100 .disabled-text, .theme-default-dark .lime-A200.hint-text,
.theme-default-dark .lime-A200 .hint-text, .theme-default-dark .lime-A200.disabled-text,
.theme-default-dark .lime-A200 .disabled-text, .theme-default-dark .lime-A400.hint-text,
.theme-default-dark .lime-A400 .hint-text, .theme-default-dark .lime-A400.disabled-text,
.theme-default-dark .lime-A400 .disabled-text, .theme-default-dark .lime-A700.hint-text,
.theme-default-dark .lime-A700 .hint-text, .theme-default-dark .lime-A700.disabled-text,
.theme-default-dark .lime-A700 .disabled-text, .theme-default-dark .yellow-50.hint-text,
.theme-default-dark .yellow-50 .hint-text, .theme-default-dark .yellow-50.disabled-text,
.theme-default-dark .yellow-50 .disabled-text, .theme-default-dark .yellow-100.hint-text,
.theme-default-dark .yellow-100 .hint-text, .theme-default-dark .yellow-100.disabled-text,
.theme-default-dark .yellow-100 .disabled-text, .theme-default-dark .yellow-200.hint-text,
.theme-default-dark .yellow-200 .hint-text, .theme-default-dark .yellow-200.disabled-text,
.theme-default-dark .yellow-200 .disabled-text, .theme-default-dark .yellow-300.hint-text,
.theme-default-dark .yellow-300 .hint-text, .theme-default-dark .yellow-300.disabled-text,
.theme-default-dark .yellow-300 .disabled-text, .theme-default-dark .yellow-400.hint-text,
.theme-default-dark .yellow-400 .hint-text, .theme-default-dark .yellow-400.disabled-text,
.theme-default-dark .yellow-400 .disabled-text, .theme-default-dark .yellow-500.hint-text,
.theme-default-dark .yellow-500 .hint-text, .theme-default-dark .yellow-500.disabled-text,
.theme-default-dark .yellow-500 .disabled-text, .theme-default-dark .yellow-600.hint-text,
.theme-default-dark .yellow-600 .hint-text, .theme-default-dark .yellow-600.disabled-text,
.theme-default-dark .yellow-600 .disabled-text, .theme-default-dark .yellow-700.hint-text,
.theme-default-dark .yellow-700 .hint-text, .theme-default-dark .yellow-700.disabled-text,
.theme-default-dark .yellow-700 .disabled-text, .theme-default-dark .yellow-800.hint-text,
.theme-default-dark .yellow-800 .hint-text, .theme-default-dark .yellow-800.disabled-text,
.theme-default-dark .yellow-800 .disabled-text, .theme-default-dark .yellow-900.hint-text,
.theme-default-dark .yellow-900 .hint-text, .theme-default-dark .yellow-900.disabled-text,
.theme-default-dark .yellow-900 .disabled-text, .theme-default-dark .yellow-A100.hint-text,
.theme-default-dark .yellow-A100 .hint-text, .theme-default-dark .yellow-A100.disabled-text,
.theme-default-dark .yellow-A100 .disabled-text, .theme-default-dark .yellow-A200.hint-text,
.theme-default-dark .yellow-A200 .hint-text, .theme-default-dark .yellow-A200.disabled-text,
.theme-default-dark .yellow-A200 .disabled-text, .theme-default-dark .yellow-A400.hint-text,
.theme-default-dark .yellow-A400 .hint-text, .theme-default-dark .yellow-A400.disabled-text,
.theme-default-dark .yellow-A400 .disabled-text, .theme-default-dark .yellow-A700.hint-text,
.theme-default-dark .yellow-A700 .hint-text, .theme-default-dark .yellow-A700.disabled-text,
.theme-default-dark .yellow-A700 .disabled-text, .theme-default-dark .amber-50.hint-text,
.theme-default-dark .amber-50 .hint-text, .theme-default-dark .amber-50.disabled-text,
.theme-default-dark .amber-50 .disabled-text, .theme-default-dark .amber-100.hint-text,
.theme-default-dark .amber-100 .hint-text, .theme-default-dark .amber-100.disabled-text,
.theme-default-dark .amber-100 .disabled-text, .theme-default-dark .amber-200.hint-text,
.theme-default-dark .amber-200 .hint-text, .theme-default-dark .amber-200.disabled-text,
.theme-default-dark .amber-200 .disabled-text, .theme-default-dark .amber-300.hint-text,
.theme-default-dark .amber-300 .hint-text, .theme-default-dark .amber-300.disabled-text,
.theme-default-dark .amber-300 .disabled-text, .theme-default-dark .amber-400.hint-text,
.theme-default-dark .amber-400 .hint-text, .theme-default-dark .amber-400.disabled-text,
.theme-default-dark .amber-400 .disabled-text, .theme-default-dark .amber-500.hint-text,
.theme-default-dark .amber-500 .hint-text, .theme-default-dark .amber-500.disabled-text,
.theme-default-dark .amber-500 .disabled-text, .theme-default-dark .amber-600.hint-text,
.theme-default-dark .amber-600 .hint-text, .theme-default-dark .amber-600.disabled-text,
.theme-default-dark .amber-600 .disabled-text, .theme-default-dark .amber-700.hint-text,
.theme-default-dark .amber-700 .hint-text, .theme-default-dark .amber-700.disabled-text,
.theme-default-dark .amber-700 .disabled-text, .theme-default-dark .amber-800.hint-text,
.theme-default-dark .amber-800 .hint-text, .theme-default-dark .amber-800.disabled-text,
.theme-default-dark .amber-800 .disabled-text, .theme-default-dark .amber-900.hint-text,
.theme-default-dark .amber-900 .hint-text, .theme-default-dark .amber-900.disabled-text,
.theme-default-dark .amber-900 .disabled-text, .theme-default-dark .amber-A100.hint-text,
.theme-default-dark .amber-A100 .hint-text, .theme-default-dark .amber-A100.disabled-text,
.theme-default-dark .amber-A100 .disabled-text, .theme-default-dark .amber-A200.hint-text,
.theme-default-dark .amber-A200 .hint-text, .theme-default-dark .amber-A200.disabled-text,
.theme-default-dark .amber-A200 .disabled-text, .theme-default-dark .amber-A400.hint-text,
.theme-default-dark .amber-A400 .hint-text, .theme-default-dark .amber-A400.disabled-text,
.theme-default-dark .amber-A400 .disabled-text, .theme-default-dark .amber-A700.hint-text,
.theme-default-dark .amber-A700 .hint-text, .theme-default-dark .amber-A700.disabled-text,
.theme-default-dark .amber-A700 .disabled-text, .theme-default-dark .orange-50.hint-text,
.theme-default-dark .orange-50 .hint-text, .theme-default-dark .orange-50.disabled-text,
.theme-default-dark .orange-50 .disabled-text, .theme-default-dark .orange-100.hint-text,
.theme-default-dark .orange-100 .hint-text, .theme-default-dark .orange-100.disabled-text,
.theme-default-dark .orange-100 .disabled-text, .theme-default-dark .orange-200.hint-text,
.theme-default-dark .orange-200 .hint-text, .theme-default-dark .orange-200.disabled-text,
.theme-default-dark .orange-200 .disabled-text, .theme-default-dark .orange-300.hint-text,
.theme-default-dark .orange-300 .hint-text, .theme-default-dark .orange-300.disabled-text,
.theme-default-dark .orange-300 .disabled-text, .theme-default-dark .orange-400.hint-text,
.theme-default-dark .orange-400 .hint-text, .theme-default-dark .orange-400.disabled-text,
.theme-default-dark .orange-400 .disabled-text, .theme-default-dark .orange-500.hint-text,
.theme-default-dark .orange-500 .hint-text, .theme-default-dark .orange-500.disabled-text,
.theme-default-dark .orange-500 .disabled-text, .theme-default-dark .orange-600.hint-text,
.theme-default-dark .orange-600 .hint-text, .theme-default-dark .orange-600.disabled-text,
.theme-default-dark .orange-600 .disabled-text, .theme-default-dark .orange-700.hint-text,
.theme-default-dark .orange-700 .hint-text, .theme-default-dark .orange-700.disabled-text,
.theme-default-dark .orange-700 .disabled-text, .theme-default-dark .orange-A100.hint-text,
.theme-default-dark .orange-A100 .hint-text, .theme-default-dark .orange-A100.disabled-text,
.theme-default-dark .orange-A100 .disabled-text, .theme-default-dark .orange-A200.hint-text,
.theme-default-dark .orange-A200 .hint-text, .theme-default-dark .orange-A200.disabled-text,
.theme-default-dark .orange-A200 .disabled-text, .theme-default-dark .orange-A400.hint-text,
.theme-default-dark .orange-A400 .hint-text, .theme-default-dark .orange-A400.disabled-text,
.theme-default-dark .orange-A400 .disabled-text, .theme-default-dark .orange-A700.hint-text,
.theme-default-dark .orange-A700 .hint-text, .theme-default-dark .orange-A700.disabled-text,
.theme-default-dark .orange-A700 .disabled-text, .theme-default-dark .deep-orange-50.hint-text,
.theme-default-dark .deep-orange-50 .hint-text, .theme-default-dark .deep-orange-50.disabled-text,
.theme-default-dark .deep-orange-50 .disabled-text, .theme-default-dark .deep-orange-100.hint-text,
.theme-default-dark .deep-orange-100 .hint-text, .theme-default-dark .deep-orange-100.disabled-text,
.theme-default-dark .deep-orange-100 .disabled-text, .theme-default-dark .deep-orange-200.hint-text,
.theme-default-dark .deep-orange-200 .hint-text, .theme-default-dark .deep-orange-200.disabled-text,
.theme-default-dark .deep-orange-200 .disabled-text, .theme-default-dark .deep-orange-300.hint-text,
.theme-default-dark .deep-orange-300 .hint-text, .theme-default-dark .deep-orange-300.disabled-text,
.theme-default-dark .deep-orange-300 .disabled-text, .theme-default-dark .deep-orange-400.hint-text,
.theme-default-dark .deep-orange-400 .hint-text, .theme-default-dark .deep-orange-400.disabled-text,
.theme-default-dark .deep-orange-400 .disabled-text, .theme-default-dark .deep-orange-A100.hint-text,
.theme-default-dark .deep-orange-A100 .hint-text, .theme-default-dark .deep-orange-A100.disabled-text,
.theme-default-dark .deep-orange-A100 .disabled-text, .theme-default-dark .deep-orange-A200.hint-text,
.theme-default-dark .deep-orange-A200 .hint-text, .theme-default-dark .deep-orange-A200.disabled-text,
.theme-default-dark .deep-orange-A200 .disabled-text, .theme-default-dark .brown-50.hint-text,
.theme-default-dark .brown-50 .hint-text, .theme-default-dark .brown-50.disabled-text,
.theme-default-dark .brown-50 .disabled-text, .theme-default-dark .brown-100.hint-text,
.theme-default-dark .brown-100 .hint-text, .theme-default-dark .brown-100.disabled-text,
.theme-default-dark .brown-100 .disabled-text, .theme-default-dark .brown-200.hint-text,
.theme-default-dark .brown-200 .hint-text, .theme-default-dark .brown-200.disabled-text,
.theme-default-dark .brown-200 .disabled-text, .theme-default-dark .brown-A100.hint-text,
.theme-default-dark .brown-A100 .hint-text, .theme-default-dark .brown-A100.disabled-text,
.theme-default-dark .brown-A100 .disabled-text, .theme-default-dark .brown-A200.hint-text,
.theme-default-dark .brown-A200 .hint-text, .theme-default-dark .brown-A200.disabled-text,
.theme-default-dark .brown-A200 .disabled-text, .theme-default-dark .grey-50.hint-text,
.theme-default-dark .grey-50 .hint-text, .theme-default-dark .grey-50.disabled-text,
.theme-default-dark .grey-50 .disabled-text, .theme-default-dark .grey-100.hint-text,
.theme-default-dark .grey-100 .hint-text, .theme-default-dark .grey-100.disabled-text,
.theme-default-dark .grey-100 .disabled-text, .theme-default-dark .grey-200.hint-text,
.theme-default-dark .grey-200 .hint-text, .theme-default-dark .grey-200.disabled-text,
.theme-default-dark .grey-200 .disabled-text, .theme-default-dark .grey-300.hint-text,
.theme-default-dark .grey-300 .hint-text, .theme-default-dark .grey-300.disabled-text,
.theme-default-dark .grey-300 .disabled-text, .theme-default-dark .grey-400.hint-text,
.theme-default-dark .grey-400 .hint-text, .theme-default-dark .grey-400.disabled-text,
.theme-default-dark .grey-400 .disabled-text, .theme-default-dark .grey-A100.hint-text,
.theme-default-dark .grey-A100 .hint-text, .theme-default-dark .grey-A100.disabled-text,
.theme-default-dark .grey-A100 .disabled-text, .theme-default-dark .grey-A200.hint-text,
.theme-default-dark .grey-A200 .hint-text, .theme-default-dark .grey-A200.disabled-text,
.theme-default-dark .grey-A200 .disabled-text, .theme-default-dark .grey-A400.hint-text,
.theme-default-dark .grey-A400 .hint-text, .theme-default-dark .grey-A400.disabled-text,
.theme-default-dark .grey-A400 .disabled-text, .theme-default-dark .grey-A700.hint-text,
.theme-default-dark .grey-A700 .hint-text, .theme-default-dark .grey-A700.disabled-text,
.theme-default-dark .grey-A700 .disabled-text, .theme-default-dark .blue-grey-50.hint-text,
.theme-default-dark .blue-grey-50 .hint-text, .theme-default-dark .blue-grey-50.disabled-text,
.theme-default-dark .blue-grey-50 .disabled-text, .theme-default-dark .blue-grey-100.hint-text,
.theme-default-dark .blue-grey-100 .hint-text, .theme-default-dark .blue-grey-100.disabled-text,
.theme-default-dark .blue-grey-100 .disabled-text, .theme-default-dark .blue-grey-200.hint-text,
.theme-default-dark .blue-grey-200 .hint-text, .theme-default-dark .blue-grey-200.disabled-text,
.theme-default-dark .blue-grey-200 .disabled-text, .theme-default-dark .blue-grey-300.hint-text,
.theme-default-dark .blue-grey-300 .hint-text, .theme-default-dark .blue-grey-300.disabled-text,
.theme-default-dark .blue-grey-300 .disabled-text, .theme-default-dark .blue-grey-A100.hint-text,
.theme-default-dark .blue-grey-A100 .hint-text, .theme-default-dark .blue-grey-A100.disabled-text,
.theme-default-dark .blue-grey-A100 .disabled-text, .theme-default-dark .blue-grey-A200.hint-text,
.theme-default-dark .blue-grey-A200 .hint-text, .theme-default-dark .blue-grey-A200.disabled-text,
.theme-default-dark .blue-grey-A200 .disabled-text, .theme-default-dark .light-grey-50.hint-text,
.theme-default-dark .light-grey-50 .hint-text, .theme-default-dark .light-grey-50.disabled-text,
.theme-default-dark .light-grey-50 .disabled-text, .theme-default-dark .light-grey-100.hint-text,
.theme-default-dark .light-grey-100 .hint-text, .theme-default-dark .light-grey-100.disabled-text,
.theme-default-dark .light-grey-100 .disabled-text, .theme-default-dark .light-grey-200.hint-text,
.theme-default-dark .light-grey-200 .hint-text, .theme-default-dark .light-grey-200.disabled-text,
.theme-default-dark .light-grey-200 .disabled-text, .theme-default-dark .light-grey-300.hint-text,
.theme-default-dark .light-grey-300 .hint-text, .theme-default-dark .light-grey-300.disabled-text,
.theme-default-dark .light-grey-300 .disabled-text, .theme-default-dark .light-grey-400.hint-text,
.theme-default-dark .light-grey-400 .hint-text, .theme-default-dark .light-grey-400.disabled-text,
.theme-default-dark .light-grey-400 .disabled-text, .theme-default-dark .light-grey-500.hint-text,
.theme-default-dark .light-grey-500 .hint-text, .theme-default-dark .light-grey-500.disabled-text,
.theme-default-dark .light-grey-500 .disabled-text, .theme-default-dark .light-grey-600.hint-text,
.theme-default-dark .light-grey-600 .hint-text, .theme-default-dark .light-grey-600.disabled-text,
.theme-default-dark .light-grey-600 .disabled-text, .theme-default-dark .light-grey-700.hint-text,
.theme-default-dark .light-grey-700 .hint-text, .theme-default-dark .light-grey-700.disabled-text,
.theme-default-dark .light-grey-700 .disabled-text, .theme-default-dark .light-grey-800.hint-text,
.theme-default-dark .light-grey-800 .hint-text, .theme-default-dark .light-grey-800.disabled-text,
.theme-default-dark .light-grey-800 .disabled-text, .theme-default-dark .light-grey-900.hint-text,
.theme-default-dark .light-grey-900 .hint-text, .theme-default-dark .light-grey-900.disabled-text,
.theme-default-dark .light-grey-900 .disabled-text, .theme-default-dark .light-grey-A100.hint-text,
.theme-default-dark .light-grey-A100 .hint-text, .theme-default-dark .light-grey-A100.disabled-text,
.theme-default-dark .light-grey-A100 .disabled-text, .theme-default-dark .light-grey-A200.hint-text,
.theme-default-dark .light-grey-A200 .hint-text, .theme-default-dark .light-grey-A200.disabled-text,
.theme-default-dark .light-grey-A200 .disabled-text, .theme-default-dark .light-grey-A400.hint-text,
.theme-default-dark .light-grey-A400 .hint-text, .theme-default-dark .light-grey-A400.disabled-text,
.theme-default-dark .light-grey-A400 .disabled-text, .theme-default-dark .light-grey-A700.hint-text,
.theme-default-dark .light-grey-A700 .hint-text, .theme-default-dark .light-grey-A700.disabled-text,
.theme-default-dark .light-grey-A700 .disabled-text, .theme-default-dark .primary-50.hint-text,
.theme-default-dark .primary-50 .hint-text, .theme-default-dark .primary-50.disabled-text,
.theme-default-dark .primary-50 .disabled-text, .theme-default-dark .primary-100.hint-text,
.theme-default-dark .primary-100 .hint-text, .theme-default-dark .primary-100.disabled-text,
.theme-default-dark .primary-100 .disabled-text, .theme-default-dark .primary-200.hint-text,
.theme-default-dark .primary-200 .hint-text, .theme-default-dark .primary-200.disabled-text,
.theme-default-dark .primary-200 .disabled-text, .theme-default-dark .primary-300.hint-text,
.theme-default-dark .primary-300 .hint-text, .theme-default-dark .primary-300.disabled-text,
.theme-default-dark .primary-300 .disabled-text, .theme-default-dark .primary-A100.hint-text,
.theme-default-dark .primary-A100 .hint-text, .theme-default-dark .primary-A100.disabled-text,
.theme-default-dark .primary-A100 .disabled-text, .theme-default-dark .primary-A200.hint-text,
.theme-default-dark .primary-A200 .hint-text, .theme-default-dark .primary-A200.disabled-text,
.theme-default-dark .primary-A200 .disabled-text, .theme-default-dark .accent-50.hint-text,
.theme-default-dark .accent-50 .hint-text, .theme-default-dark .accent-50.disabled-text,
.theme-default-dark .accent-50 .disabled-text, .theme-default-dark .accent-100.hint-text,
.theme-default-dark .accent-100 .hint-text, .theme-default-dark .accent-100.disabled-text,
.theme-default-dark .accent-100 .disabled-text, .theme-default-dark .accent-200.hint-text,
.theme-default-dark .accent-200 .hint-text, .theme-default-dark .accent-200.disabled-text,
.theme-default-dark .accent-200 .disabled-text, .theme-default-dark .accent-300.hint-text,
.theme-default-dark .accent-300 .hint-text, .theme-default-dark .accent-300.disabled-text,
.theme-default-dark .accent-300 .disabled-text, .theme-default-dark .accent-A100.hint-text,
.theme-default-dark .accent-A100 .hint-text, .theme-default-dark .accent-A100.disabled-text,
.theme-default-dark .accent-A100 .disabled-text, .theme-default-dark .warn-50.hint-text,
.theme-default-dark .warn-50 .hint-text, .theme-default-dark .warn-50.disabled-text,
.theme-default-dark .warn-50 .disabled-text, .theme-default-dark .warn-100.hint-text,
.theme-default-dark .warn-100 .hint-text, .theme-default-dark .warn-100.disabled-text,
.theme-default-dark .warn-100 .disabled-text, .theme-default-dark .warn-200.hint-text,
.theme-default-dark .warn-200 .hint-text, .theme-default-dark .warn-200.disabled-text,
.theme-default-dark .warn-200 .disabled-text, .theme-default-dark .warn-300.hint-text,
.theme-default-dark .warn-300 .hint-text, .theme-default-dark .warn-300.disabled-text,
.theme-default-dark .warn-300 .disabled-text, .theme-default-dark .warn-400.hint-text,
.theme-default-dark .warn-400 .hint-text, .theme-default-dark .warn-400.disabled-text,
.theme-default-dark .warn-400 .disabled-text, .theme-default-dark .warn-A100.hint-text,
.theme-default-dark .warn-A100 .hint-text, .theme-default-dark .warn-A100.disabled-text,
.theme-default-dark .warn-A100 .disabled-text {
  color: rgba(0, 0, 0, 0.38) !important;
}
.theme-default-dark .red-50.divider,
.theme-default-dark .red-50 .divider, .theme-default-dark .red-100.divider,
.theme-default-dark .red-100 .divider, .theme-default-dark .red-200.divider,
.theme-default-dark .red-200 .divider, .theme-default-dark .red-300.divider,
.theme-default-dark .red-300 .divider, .theme-default-dark .red-400.divider,
.theme-default-dark .red-400 .divider, .theme-default-dark .red-A100.divider,
.theme-default-dark .red-A100 .divider, .theme-default-dark .pink-50.divider,
.theme-default-dark .pink-50 .divider, .theme-default-dark .pink-100.divider,
.theme-default-dark .pink-100 .divider, .theme-default-dark .pink-200.divider,
.theme-default-dark .pink-200 .divider, .theme-default-dark .pink-300.divider,
.theme-default-dark .pink-300 .divider, .theme-default-dark .pink-400.divider,
.theme-default-dark .pink-400 .divider, .theme-default-dark .pink-A100.divider,
.theme-default-dark .pink-A100 .divider, .theme-default-dark .purple-50.divider,
.theme-default-dark .purple-50 .divider, .theme-default-dark .purple-100.divider,
.theme-default-dark .purple-100 .divider, .theme-default-dark .purple-200.divider,
.theme-default-dark .purple-200 .divider, .theme-default-dark .purple-A100.divider,
.theme-default-dark .purple-A100 .divider, .theme-default-dark .deep-purple-50.divider,
.theme-default-dark .deep-purple-50 .divider, .theme-default-dark .deep-purple-100.divider,
.theme-default-dark .deep-purple-100 .divider, .theme-default-dark .deep-purple-200.divider,
.theme-default-dark .deep-purple-200 .divider, .theme-default-dark .deep-purple-A100.divider,
.theme-default-dark .deep-purple-A100 .divider, .theme-default-dark .indigo-50.divider,
.theme-default-dark .indigo-50 .divider, .theme-default-dark .indigo-100.divider,
.theme-default-dark .indigo-100 .divider, .theme-default-dark .indigo-200.divider,
.theme-default-dark .indigo-200 .divider, .theme-default-dark .indigo-A100.divider,
.theme-default-dark .indigo-A100 .divider, .theme-default-dark .blue-50.divider,
.theme-default-dark .blue-50 .divider, .theme-default-dark .blue-100.divider,
.theme-default-dark .blue-100 .divider, .theme-default-dark .blue-200.divider,
.theme-default-dark .blue-200 .divider, .theme-default-dark .blue-300.divider,
.theme-default-dark .blue-300 .divider, .theme-default-dark .blue-A100.divider,
.theme-default-dark .blue-A100 .divider, .theme-default-dark .light-blue-50.divider,
.theme-default-dark .light-blue-50 .divider, .theme-default-dark .light-blue-100.divider,
.theme-default-dark .light-blue-100 .divider, .theme-default-dark .light-blue-200.divider,
.theme-default-dark .light-blue-200 .divider, .theme-default-dark .light-blue-300.divider,
.theme-default-dark .light-blue-300 .divider, .theme-default-dark .light-blue-400.divider,
.theme-default-dark .light-blue-400 .divider, .theme-default-dark .light-blue-A100.divider,
.theme-default-dark .light-blue-A100 .divider, .theme-default-dark .light-blue-A200.divider,
.theme-default-dark .light-blue-A200 .divider, .theme-default-dark .light-blue-A400.divider,
.theme-default-dark .light-blue-A400 .divider, .theme-default-dark .cyan-50.divider,
.theme-default-dark .cyan-50 .divider, .theme-default-dark .cyan-100.divider,
.theme-default-dark .cyan-100 .divider, .theme-default-dark .cyan-200.divider,
.theme-default-dark .cyan-200 .divider, .theme-default-dark .cyan-300.divider,
.theme-default-dark .cyan-300 .divider, .theme-default-dark .cyan-400.divider,
.theme-default-dark .cyan-400 .divider, .theme-default-dark .cyan-A100.divider,
.theme-default-dark .cyan-A100 .divider, .theme-default-dark .cyan-A200.divider,
.theme-default-dark .cyan-A200 .divider, .theme-default-dark .cyan-A400.divider,
.theme-default-dark .cyan-A400 .divider, .theme-default-dark .cyan-A700.divider,
.theme-default-dark .cyan-A700 .divider, .theme-default-dark .teal-50.divider,
.theme-default-dark .teal-50 .divider, .theme-default-dark .teal-100.divider,
.theme-default-dark .teal-100 .divider, .theme-default-dark .teal-200.divider,
.theme-default-dark .teal-200 .divider, .theme-default-dark .teal-300.divider,
.theme-default-dark .teal-300 .divider, .theme-default-dark .teal-400.divider,
.theme-default-dark .teal-400 .divider, .theme-default-dark .teal-A100.divider,
.theme-default-dark .teal-A100 .divider, .theme-default-dark .teal-A200.divider,
.theme-default-dark .teal-A200 .divider, .theme-default-dark .teal-A400.divider,
.theme-default-dark .teal-A400 .divider, .theme-default-dark .teal-A700.divider,
.theme-default-dark .teal-A700 .divider, .theme-default-dark .green-50.divider,
.theme-default-dark .green-50 .divider, .theme-default-dark .green-100.divider,
.theme-default-dark .green-100 .divider, .theme-default-dark .green-200.divider,
.theme-default-dark .green-200 .divider, .theme-default-dark .green-300.divider,
.theme-default-dark .green-300 .divider, .theme-default-dark .green-400.divider,
.theme-default-dark .green-400 .divider, .theme-default-dark .green-A100.divider,
.theme-default-dark .green-A100 .divider, .theme-default-dark .green-A200.divider,
.theme-default-dark .green-A200 .divider, .theme-default-dark .green-A400.divider,
.theme-default-dark .green-A400 .divider, .theme-default-dark .green-A700.divider,
.theme-default-dark .green-A700 .divider, .theme-default-dark .light-green-50.divider,
.theme-default-dark .light-green-50 .divider, .theme-default-dark .light-green-100.divider,
.theme-default-dark .light-green-100 .divider, .theme-default-dark .light-green-200.divider,
.theme-default-dark .light-green-200 .divider, .theme-default-dark .light-green-300.divider,
.theme-default-dark .light-green-300 .divider, .theme-default-dark .light-green-400.divider,
.theme-default-dark .light-green-400 .divider, .theme-default-dark .light-green-500.divider,
.theme-default-dark .light-green-500 .divider, .theme-default-dark .light-green-A100.divider,
.theme-default-dark .light-green-A100 .divider, .theme-default-dark .light-green-A200.divider,
.theme-default-dark .light-green-A200 .divider, .theme-default-dark .light-green-A400.divider,
.theme-default-dark .light-green-A400 .divider, .theme-default-dark .light-green-A700.divider,
.theme-default-dark .light-green-A700 .divider, .theme-default-dark .lime-50.divider,
.theme-default-dark .lime-50 .divider, .theme-default-dark .lime-100.divider,
.theme-default-dark .lime-100 .divider, .theme-default-dark .lime-200.divider,
.theme-default-dark .lime-200 .divider, .theme-default-dark .lime-300.divider,
.theme-default-dark .lime-300 .divider, .theme-default-dark .lime-400.divider,
.theme-default-dark .lime-400 .divider, .theme-default-dark .lime-A100.divider,
.theme-default-dark .lime-A100 .divider, .theme-default-dark .lime-A200.divider,
.theme-default-dark .lime-A200 .divider, .theme-default-dark .lime-A400.divider,
.theme-default-dark .lime-A400 .divider, .theme-default-dark .lime-A700.divider,
.theme-default-dark .lime-A700 .divider, .theme-default-dark .yellow-50.divider,
.theme-default-dark .yellow-50 .divider, .theme-default-dark .yellow-100.divider,
.theme-default-dark .yellow-100 .divider, .theme-default-dark .yellow-200.divider,
.theme-default-dark .yellow-200 .divider, .theme-default-dark .yellow-300.divider,
.theme-default-dark .yellow-300 .divider, .theme-default-dark .yellow-400.divider,
.theme-default-dark .yellow-400 .divider, .theme-default-dark .yellow-500.divider,
.theme-default-dark .yellow-500 .divider, .theme-default-dark .yellow-600.divider,
.theme-default-dark .yellow-600 .divider, .theme-default-dark .yellow-700.divider,
.theme-default-dark .yellow-700 .divider, .theme-default-dark .yellow-800.divider,
.theme-default-dark .yellow-800 .divider, .theme-default-dark .yellow-900.divider,
.theme-default-dark .yellow-900 .divider, .theme-default-dark .yellow-A100.divider,
.theme-default-dark .yellow-A100 .divider, .theme-default-dark .yellow-A200.divider,
.theme-default-dark .yellow-A200 .divider, .theme-default-dark .yellow-A400.divider,
.theme-default-dark .yellow-A400 .divider, .theme-default-dark .yellow-A700.divider,
.theme-default-dark .yellow-A700 .divider, .theme-default-dark .amber-50.divider,
.theme-default-dark .amber-50 .divider, .theme-default-dark .amber-100.divider,
.theme-default-dark .amber-100 .divider, .theme-default-dark .amber-200.divider,
.theme-default-dark .amber-200 .divider, .theme-default-dark .amber-300.divider,
.theme-default-dark .amber-300 .divider, .theme-default-dark .amber-400.divider,
.theme-default-dark .amber-400 .divider, .theme-default-dark .amber-500.divider,
.theme-default-dark .amber-500 .divider, .theme-default-dark .amber-600.divider,
.theme-default-dark .amber-600 .divider, .theme-default-dark .amber-700.divider,
.theme-default-dark .amber-700 .divider, .theme-default-dark .amber-800.divider,
.theme-default-dark .amber-800 .divider, .theme-default-dark .amber-900.divider,
.theme-default-dark .amber-900 .divider, .theme-default-dark .amber-A100.divider,
.theme-default-dark .amber-A100 .divider, .theme-default-dark .amber-A200.divider,
.theme-default-dark .amber-A200 .divider, .theme-default-dark .amber-A400.divider,
.theme-default-dark .amber-A400 .divider, .theme-default-dark .amber-A700.divider,
.theme-default-dark .amber-A700 .divider, .theme-default-dark .orange-50.divider,
.theme-default-dark .orange-50 .divider, .theme-default-dark .orange-100.divider,
.theme-default-dark .orange-100 .divider, .theme-default-dark .orange-200.divider,
.theme-default-dark .orange-200 .divider, .theme-default-dark .orange-300.divider,
.theme-default-dark .orange-300 .divider, .theme-default-dark .orange-400.divider,
.theme-default-dark .orange-400 .divider, .theme-default-dark .orange-500.divider,
.theme-default-dark .orange-500 .divider, .theme-default-dark .orange-600.divider,
.theme-default-dark .orange-600 .divider, .theme-default-dark .orange-700.divider,
.theme-default-dark .orange-700 .divider, .theme-default-dark .orange-A100.divider,
.theme-default-dark .orange-A100 .divider, .theme-default-dark .orange-A200.divider,
.theme-default-dark .orange-A200 .divider, .theme-default-dark .orange-A400.divider,
.theme-default-dark .orange-A400 .divider, .theme-default-dark .orange-A700.divider,
.theme-default-dark .orange-A700 .divider, .theme-default-dark .deep-orange-50.divider,
.theme-default-dark .deep-orange-50 .divider, .theme-default-dark .deep-orange-100.divider,
.theme-default-dark .deep-orange-100 .divider, .theme-default-dark .deep-orange-200.divider,
.theme-default-dark .deep-orange-200 .divider, .theme-default-dark .deep-orange-300.divider,
.theme-default-dark .deep-orange-300 .divider, .theme-default-dark .deep-orange-400.divider,
.theme-default-dark .deep-orange-400 .divider, .theme-default-dark .deep-orange-A100.divider,
.theme-default-dark .deep-orange-A100 .divider, .theme-default-dark .deep-orange-A200.divider,
.theme-default-dark .deep-orange-A200 .divider, .theme-default-dark .brown-50.divider,
.theme-default-dark .brown-50 .divider, .theme-default-dark .brown-100.divider,
.theme-default-dark .brown-100 .divider, .theme-default-dark .brown-200.divider,
.theme-default-dark .brown-200 .divider, .theme-default-dark .brown-A100.divider,
.theme-default-dark .brown-A100 .divider, .theme-default-dark .brown-A200.divider,
.theme-default-dark .brown-A200 .divider, .theme-default-dark .grey-50.divider,
.theme-default-dark .grey-50 .divider, .theme-default-dark .grey-100.divider,
.theme-default-dark .grey-100 .divider, .theme-default-dark .grey-200.divider,
.theme-default-dark .grey-200 .divider, .theme-default-dark .grey-300.divider,
.theme-default-dark .grey-300 .divider, .theme-default-dark .grey-400.divider,
.theme-default-dark .grey-400 .divider, .theme-default-dark .grey-A100.divider,
.theme-default-dark .grey-A100 .divider, .theme-default-dark .grey-A200.divider,
.theme-default-dark .grey-A200 .divider, .theme-default-dark .grey-A400.divider,
.theme-default-dark .grey-A400 .divider, .theme-default-dark .grey-A700.divider,
.theme-default-dark .grey-A700 .divider, .theme-default-dark .blue-grey-50.divider,
.theme-default-dark .blue-grey-50 .divider, .theme-default-dark .blue-grey-100.divider,
.theme-default-dark .blue-grey-100 .divider, .theme-default-dark .blue-grey-200.divider,
.theme-default-dark .blue-grey-200 .divider, .theme-default-dark .blue-grey-300.divider,
.theme-default-dark .blue-grey-300 .divider, .theme-default-dark .blue-grey-A100.divider,
.theme-default-dark .blue-grey-A100 .divider, .theme-default-dark .blue-grey-A200.divider,
.theme-default-dark .blue-grey-A200 .divider, .theme-default-dark .light-grey-50.divider,
.theme-default-dark .light-grey-50 .divider, .theme-default-dark .light-grey-100.divider,
.theme-default-dark .light-grey-100 .divider, .theme-default-dark .light-grey-200.divider,
.theme-default-dark .light-grey-200 .divider, .theme-default-dark .light-grey-300.divider,
.theme-default-dark .light-grey-300 .divider, .theme-default-dark .light-grey-400.divider,
.theme-default-dark .light-grey-400 .divider, .theme-default-dark .light-grey-500.divider,
.theme-default-dark .light-grey-500 .divider, .theme-default-dark .light-grey-600.divider,
.theme-default-dark .light-grey-600 .divider, .theme-default-dark .light-grey-700.divider,
.theme-default-dark .light-grey-700 .divider, .theme-default-dark .light-grey-800.divider,
.theme-default-dark .light-grey-800 .divider, .theme-default-dark .light-grey-900.divider,
.theme-default-dark .light-grey-900 .divider, .theme-default-dark .light-grey-A100.divider,
.theme-default-dark .light-grey-A100 .divider, .theme-default-dark .light-grey-A200.divider,
.theme-default-dark .light-grey-A200 .divider, .theme-default-dark .light-grey-A400.divider,
.theme-default-dark .light-grey-A400 .divider, .theme-default-dark .light-grey-A700.divider,
.theme-default-dark .light-grey-A700 .divider, .theme-default-dark .primary-50.divider,
.theme-default-dark .primary-50 .divider, .theme-default-dark .primary-100.divider,
.theme-default-dark .primary-100 .divider, .theme-default-dark .primary-200.divider,
.theme-default-dark .primary-200 .divider, .theme-default-dark .primary-300.divider,
.theme-default-dark .primary-300 .divider, .theme-default-dark .primary-A100.divider,
.theme-default-dark .primary-A100 .divider, .theme-default-dark .primary-A200.divider,
.theme-default-dark .primary-A200 .divider, .theme-default-dark .accent-50.divider,
.theme-default-dark .accent-50 .divider, .theme-default-dark .accent-100.divider,
.theme-default-dark .accent-100 .divider, .theme-default-dark .accent-200.divider,
.theme-default-dark .accent-200 .divider, .theme-default-dark .accent-300.divider,
.theme-default-dark .accent-300 .divider, .theme-default-dark .accent-A100.divider,
.theme-default-dark .accent-A100 .divider, .theme-default-dark .warn-50.divider,
.theme-default-dark .warn-50 .divider, .theme-default-dark .warn-100.divider,
.theme-default-dark .warn-100 .divider, .theme-default-dark .warn-200.divider,
.theme-default-dark .warn-200 .divider, .theme-default-dark .warn-300.divider,
.theme-default-dark .warn-300 .divider, .theme-default-dark .warn-400.divider,
.theme-default-dark .warn-400 .divider, .theme-default-dark .warn-A100.divider,
.theme-default-dark .warn-A100 .divider {
  color: rgba(0, 0, 0, 0.12) !important;
}
.theme-default-dark .red-500.secondary-text,
.theme-default-dark .red-500 .secondary-text, .theme-default-dark .red-600.secondary-text,
.theme-default-dark .red-600 .secondary-text, .theme-default-dark .red-700.secondary-text,
.theme-default-dark .red-700 .secondary-text, .theme-default-dark .red-800.secondary-text,
.theme-default-dark .red-800 .secondary-text, .theme-default-dark .red-900.secondary-text,
.theme-default-dark .red-900 .secondary-text, .theme-default-dark .red-A200.secondary-text,
.theme-default-dark .red-A200 .secondary-text, .theme-default-dark .red-A400.secondary-text,
.theme-default-dark .red-A400 .secondary-text, .theme-default-dark .red-A700.secondary-text,
.theme-default-dark .red-A700 .secondary-text, .theme-default-dark .pink-500.secondary-text,
.theme-default-dark .pink-500 .secondary-text, .theme-default-dark .pink-600.secondary-text,
.theme-default-dark .pink-600 .secondary-text, .theme-default-dark .pink-700.secondary-text,
.theme-default-dark .pink-700 .secondary-text, .theme-default-dark .pink-800.secondary-text,
.theme-default-dark .pink-800 .secondary-text, .theme-default-dark .pink-900.secondary-text,
.theme-default-dark .pink-900 .secondary-text, .theme-default-dark .pink-A200.secondary-text,
.theme-default-dark .pink-A200 .secondary-text, .theme-default-dark .pink-A400.secondary-text,
.theme-default-dark .pink-A400 .secondary-text, .theme-default-dark .pink-A700.secondary-text,
.theme-default-dark .pink-A700 .secondary-text, .theme-default-dark .purple-300.secondary-text,
.theme-default-dark .purple-300 .secondary-text, .theme-default-dark .purple-400.secondary-text,
.theme-default-dark .purple-400 .secondary-text, .theme-default-dark .purple-500.secondary-text,
.theme-default-dark .purple-500 .secondary-text, .theme-default-dark .purple-600.secondary-text,
.theme-default-dark .purple-600 .secondary-text, .theme-default-dark .purple-700.secondary-text,
.theme-default-dark .purple-700 .secondary-text, .theme-default-dark .purple-800.secondary-text,
.theme-default-dark .purple-800 .secondary-text, .theme-default-dark .purple-900.secondary-text,
.theme-default-dark .purple-900 .secondary-text, .theme-default-dark .purple-A200.secondary-text,
.theme-default-dark .purple-A200 .secondary-text, .theme-default-dark .purple-A400.secondary-text,
.theme-default-dark .purple-A400 .secondary-text, .theme-default-dark .purple-A700.secondary-text,
.theme-default-dark .purple-A700 .secondary-text, .theme-default-dark .deep-purple-300.secondary-text,
.theme-default-dark .deep-purple-300 .secondary-text, .theme-default-dark .deep-purple-400.secondary-text,
.theme-default-dark .deep-purple-400 .secondary-text, .theme-default-dark .deep-purple-500.secondary-text,
.theme-default-dark .deep-purple-500 .secondary-text, .theme-default-dark .deep-purple-600.secondary-text,
.theme-default-dark .deep-purple-600 .secondary-text, .theme-default-dark .deep-purple-700.secondary-text,
.theme-default-dark .deep-purple-700 .secondary-text, .theme-default-dark .deep-purple-800.secondary-text,
.theme-default-dark .deep-purple-800 .secondary-text, .theme-default-dark .deep-purple-900.secondary-text,
.theme-default-dark .deep-purple-900 .secondary-text, .theme-default-dark .deep-purple-A200.secondary-text,
.theme-default-dark .deep-purple-A200 .secondary-text, .theme-default-dark .deep-purple-A400.secondary-text,
.theme-default-dark .deep-purple-A400 .secondary-text, .theme-default-dark .deep-purple-A700.secondary-text,
.theme-default-dark .deep-purple-A700 .secondary-text, .theme-default-dark .indigo-300.secondary-text,
.theme-default-dark .indigo-300 .secondary-text, .theme-default-dark .indigo-400.secondary-text,
.theme-default-dark .indigo-400 .secondary-text, .theme-default-dark .indigo-500.secondary-text,
.theme-default-dark .indigo-500 .secondary-text, .theme-default-dark .indigo-600.secondary-text,
.theme-default-dark .indigo-600 .secondary-text, .theme-default-dark .indigo-700.secondary-text,
.theme-default-dark .indigo-700 .secondary-text, .theme-default-dark .indigo-800.secondary-text,
.theme-default-dark .indigo-800 .secondary-text, .theme-default-dark .indigo-900.secondary-text,
.theme-default-dark .indigo-900 .secondary-text, .theme-default-dark .indigo-A200.secondary-text,
.theme-default-dark .indigo-A200 .secondary-text, .theme-default-dark .indigo-A400.secondary-text,
.theme-default-dark .indigo-A400 .secondary-text, .theme-default-dark .indigo-A700.secondary-text,
.theme-default-dark .indigo-A700 .secondary-text, .theme-default-dark .blue-400.secondary-text,
.theme-default-dark .blue-400 .secondary-text, .theme-default-dark .blue-500.secondary-text,
.theme-default-dark .blue-500 .secondary-text, .theme-default-dark .blue-600.secondary-text,
.theme-default-dark .blue-600 .secondary-text, .theme-default-dark .blue-700.secondary-text,
.theme-default-dark .blue-700 .secondary-text, .theme-default-dark .blue-800.secondary-text,
.theme-default-dark .blue-800 .secondary-text, .theme-default-dark .blue-900.secondary-text,
.theme-default-dark .blue-900 .secondary-text, .theme-default-dark .blue-A200.secondary-text,
.theme-default-dark .blue-A200 .secondary-text, .theme-default-dark .blue-A400.secondary-text,
.theme-default-dark .blue-A400 .secondary-text, .theme-default-dark .blue-A700.secondary-text,
.theme-default-dark .blue-A700 .secondary-text, .theme-default-dark .light-blue-500.secondary-text,
.theme-default-dark .light-blue-500 .secondary-text, .theme-default-dark .light-blue-600.secondary-text,
.theme-default-dark .light-blue-600 .secondary-text, .theme-default-dark .light-blue-700.secondary-text,
.theme-default-dark .light-blue-700 .secondary-text, .theme-default-dark .light-blue-800.secondary-text,
.theme-default-dark .light-blue-800 .secondary-text, .theme-default-dark .light-blue-900.secondary-text,
.theme-default-dark .light-blue-900 .secondary-text, .theme-default-dark .light-blue-A700.secondary-text,
.theme-default-dark .light-blue-A700 .secondary-text, .theme-default-dark .cyan-500.secondary-text,
.theme-default-dark .cyan-500 .secondary-text, .theme-default-dark .cyan-600.secondary-text,
.theme-default-dark .cyan-600 .secondary-text, .theme-default-dark .cyan-700.secondary-text,
.theme-default-dark .cyan-700 .secondary-text, .theme-default-dark .cyan-800.secondary-text,
.theme-default-dark .cyan-800 .secondary-text, .theme-default-dark .cyan-900.secondary-text,
.theme-default-dark .cyan-900 .secondary-text, .theme-default-dark .teal-500.secondary-text,
.theme-default-dark .teal-500 .secondary-text, .theme-default-dark .teal-600.secondary-text,
.theme-default-dark .teal-600 .secondary-text, .theme-default-dark .teal-700.secondary-text,
.theme-default-dark .teal-700 .secondary-text, .theme-default-dark .teal-800.secondary-text,
.theme-default-dark .teal-800 .secondary-text, .theme-default-dark .teal-900.secondary-text,
.theme-default-dark .teal-900 .secondary-text, .theme-default-dark .green-500.secondary-text,
.theme-default-dark .green-500 .secondary-text, .theme-default-dark .green-600.secondary-text,
.theme-default-dark .green-600 .secondary-text, .theme-default-dark .green-700.secondary-text,
.theme-default-dark .green-700 .secondary-text, .theme-default-dark .green-800.secondary-text,
.theme-default-dark .green-800 .secondary-text, .theme-default-dark .green-900.secondary-text,
.theme-default-dark .green-900 .secondary-text, .theme-default-dark .light-green-600.secondary-text,
.theme-default-dark .light-green-600 .secondary-text, .theme-default-dark .light-green-700.secondary-text,
.theme-default-dark .light-green-700 .secondary-text, .theme-default-dark .light-green-800.secondary-text,
.theme-default-dark .light-green-800 .secondary-text, .theme-default-dark .light-green-900.secondary-text,
.theme-default-dark .light-green-900 .secondary-text, .theme-default-dark .lime-500.secondary-text,
.theme-default-dark .lime-500 .secondary-text, .theme-default-dark .lime-600.secondary-text,
.theme-default-dark .lime-600 .secondary-text, .theme-default-dark .lime-700.secondary-text,
.theme-default-dark .lime-700 .secondary-text, .theme-default-dark .lime-800.secondary-text,
.theme-default-dark .lime-800 .secondary-text, .theme-default-dark .lime-900.secondary-text,
.theme-default-dark .lime-900 .secondary-text, .theme-default-dark .orange-800.secondary-text,
.theme-default-dark .orange-800 .secondary-text, .theme-default-dark .orange-900.secondary-text,
.theme-default-dark .orange-900 .secondary-text, .theme-default-dark .deep-orange-500.secondary-text,
.theme-default-dark .deep-orange-500 .secondary-text, .theme-default-dark .deep-orange-600.secondary-text,
.theme-default-dark .deep-orange-600 .secondary-text, .theme-default-dark .deep-orange-700.secondary-text,
.theme-default-dark .deep-orange-700 .secondary-text, .theme-default-dark .deep-orange-800.secondary-text,
.theme-default-dark .deep-orange-800 .secondary-text, .theme-default-dark .deep-orange-900.secondary-text,
.theme-default-dark .deep-orange-900 .secondary-text, .theme-default-dark .deep-orange-A400.secondary-text,
.theme-default-dark .deep-orange-A400 .secondary-text, .theme-default-dark .deep-orange-A700.secondary-text,
.theme-default-dark .deep-orange-A700 .secondary-text, .theme-default-dark .brown-300.secondary-text,
.theme-default-dark .brown-300 .secondary-text, .theme-default-dark .brown-400.secondary-text,
.theme-default-dark .brown-400 .secondary-text, .theme-default-dark .brown-500.secondary-text,
.theme-default-dark .brown-500 .secondary-text, .theme-default-dark .brown-600.secondary-text,
.theme-default-dark .brown-600 .secondary-text, .theme-default-dark .brown-700.secondary-text,
.theme-default-dark .brown-700 .secondary-text, .theme-default-dark .brown-800.secondary-text,
.theme-default-dark .brown-800 .secondary-text, .theme-default-dark .brown-900.secondary-text,
.theme-default-dark .brown-900 .secondary-text, .theme-default-dark .brown-A400.secondary-text,
.theme-default-dark .brown-A400 .secondary-text, .theme-default-dark .brown-A700.secondary-text,
.theme-default-dark .brown-A700 .secondary-text, .theme-default-dark .grey-500.secondary-text,
.theme-default-dark .grey-500 .secondary-text, .theme-default-dark .grey-600.secondary-text,
.theme-default-dark .grey-600 .secondary-text, .theme-default-dark .grey-700.secondary-text,
.theme-default-dark .grey-700 .secondary-text, .theme-default-dark .grey-800.secondary-text,
.theme-default-dark .grey-800 .secondary-text, .theme-default-dark .grey-900.secondary-text,
.theme-default-dark .grey-900 .secondary-text, .theme-default-dark .blue-grey-400.secondary-text,
.theme-default-dark .blue-grey-400 .secondary-text, .theme-default-dark .blue-grey-500.secondary-text,
.theme-default-dark .blue-grey-500 .secondary-text, .theme-default-dark .blue-grey-600.secondary-text,
.theme-default-dark .blue-grey-600 .secondary-text, .theme-default-dark .blue-grey-700.secondary-text,
.theme-default-dark .blue-grey-700 .secondary-text, .theme-default-dark .blue-grey-800.secondary-text,
.theme-default-dark .blue-grey-800 .secondary-text, .theme-default-dark .blue-grey-900.secondary-text,
.theme-default-dark .blue-grey-900 .secondary-text, .theme-default-dark .blue-grey-A400.secondary-text,
.theme-default-dark .blue-grey-A400 .secondary-text, .theme-default-dark .blue-grey-A700.secondary-text,
.theme-default-dark .blue-grey-A700 .secondary-text, .theme-default-dark .dark-grey-50.secondary-text,
.theme-default-dark .dark-grey-50 .secondary-text, .theme-default-dark .dark-grey-100.secondary-text,
.theme-default-dark .dark-grey-100 .secondary-text, .theme-default-dark .dark-grey-200.secondary-text,
.theme-default-dark .dark-grey-200 .secondary-text, .theme-default-dark .dark-grey-300.secondary-text,
.theme-default-dark .dark-grey-300 .secondary-text, .theme-default-dark .dark-grey-400.secondary-text,
.theme-default-dark .dark-grey-400 .secondary-text, .theme-default-dark .dark-grey-500.secondary-text,
.theme-default-dark .dark-grey-500 .secondary-text, .theme-default-dark .dark-grey-600.secondary-text,
.theme-default-dark .dark-grey-600 .secondary-text, .theme-default-dark .dark-grey-700.secondary-text,
.theme-default-dark .dark-grey-700 .secondary-text, .theme-default-dark .dark-grey-800.secondary-text,
.theme-default-dark .dark-grey-800 .secondary-text, .theme-default-dark .dark-grey-900.secondary-text,
.theme-default-dark .dark-grey-900 .secondary-text, .theme-default-dark .dark-grey-A100.secondary-text,
.theme-default-dark .dark-grey-A100 .secondary-text, .theme-default-dark .dark-grey-A200.secondary-text,
.theme-default-dark .dark-grey-A200 .secondary-text, .theme-default-dark .dark-grey-A400.secondary-text,
.theme-default-dark .dark-grey-A400 .secondary-text, .theme-default-dark .dark-grey-A700.secondary-text,
.theme-default-dark .dark-grey-A700 .secondary-text, .theme-default-dark .primary-400.secondary-text,
.theme-default-dark .primary-400 .secondary-text, .theme-default-dark .primary-500.secondary-text,
.theme-default-dark .primary-500 .secondary-text, .theme-default-dark .primary-600.secondary-text,
.theme-default-dark .primary-600 .secondary-text, .theme-default-dark .primary-700.secondary-text,
.theme-default-dark .primary-700 .secondary-text, .theme-default-dark .primary-800.secondary-text,
.theme-default-dark .primary-800 .secondary-text, .theme-default-dark .primary-900.secondary-text,
.theme-default-dark .primary-900 .secondary-text, .theme-default-dark .primary-A400.secondary-text,
.theme-default-dark .primary-A400 .secondary-text, .theme-default-dark .primary-A700.secondary-text,
.theme-default-dark .primary-A700 .secondary-text, .theme-default-dark .accent-400.secondary-text,
.theme-default-dark .accent-400 .secondary-text, .theme-default-dark .accent-500.secondary-text,
.theme-default-dark .accent-500 .secondary-text, .theme-default-dark .accent-600.secondary-text,
.theme-default-dark .accent-600 .secondary-text, .theme-default-dark .accent-700.secondary-text,
.theme-default-dark .accent-700 .secondary-text, .theme-default-dark .accent-800.secondary-text,
.theme-default-dark .accent-800 .secondary-text, .theme-default-dark .accent-900.secondary-text,
.theme-default-dark .accent-900 .secondary-text, .theme-default-dark .accent-A200.secondary-text,
.theme-default-dark .accent-A200 .secondary-text, .theme-default-dark .accent-A400.secondary-text,
.theme-default-dark .accent-A400 .secondary-text, .theme-default-dark .accent-A700.secondary-text,
.theme-default-dark .accent-A700 .secondary-text, .theme-default-dark .warn-500.secondary-text,
.theme-default-dark .warn-500 .secondary-text, .theme-default-dark .warn-600.secondary-text,
.theme-default-dark .warn-600 .secondary-text, .theme-default-dark .warn-700.secondary-text,
.theme-default-dark .warn-700 .secondary-text, .theme-default-dark .warn-800.secondary-text,
.theme-default-dark .warn-800 .secondary-text, .theme-default-dark .warn-900.secondary-text,
.theme-default-dark .warn-900 .secondary-text, .theme-default-dark .warn-A200.secondary-text,
.theme-default-dark .warn-A200 .secondary-text, .theme-default-dark .warn-A400.secondary-text,
.theme-default-dark .warn-A400 .secondary-text, .theme-default-dark .warn-A700.secondary-text,
.theme-default-dark .warn-A700 .secondary-text {
  color: rgba(255, 255, 255, 0.7) !important;
}
.theme-default-dark .red-500.hint-text,
.theme-default-dark .red-500 .hint-text, .theme-default-dark .red-500.disabled-text,
.theme-default-dark .red-500 .disabled-text, .theme-default-dark .red-600.hint-text,
.theme-default-dark .red-600 .hint-text, .theme-default-dark .red-600.disabled-text,
.theme-default-dark .red-600 .disabled-text, .theme-default-dark .red-700.hint-text,
.theme-default-dark .red-700 .hint-text, .theme-default-dark .red-700.disabled-text,
.theme-default-dark .red-700 .disabled-text, .theme-default-dark .red-800.hint-text,
.theme-default-dark .red-800 .hint-text, .theme-default-dark .red-800.disabled-text,
.theme-default-dark .red-800 .disabled-text, .theme-default-dark .red-900.hint-text,
.theme-default-dark .red-900 .hint-text, .theme-default-dark .red-900.disabled-text,
.theme-default-dark .red-900 .disabled-text, .theme-default-dark .red-A200.hint-text,
.theme-default-dark .red-A200 .hint-text, .theme-default-dark .red-A200.disabled-text,
.theme-default-dark .red-A200 .disabled-text, .theme-default-dark .red-A400.hint-text,
.theme-default-dark .red-A400 .hint-text, .theme-default-dark .red-A400.disabled-text,
.theme-default-dark .red-A400 .disabled-text, .theme-default-dark .red-A700.hint-text,
.theme-default-dark .red-A700 .hint-text, .theme-default-dark .red-A700.disabled-text,
.theme-default-dark .red-A700 .disabled-text, .theme-default-dark .pink-500.hint-text,
.theme-default-dark .pink-500 .hint-text, .theme-default-dark .pink-500.disabled-text,
.theme-default-dark .pink-500 .disabled-text, .theme-default-dark .pink-600.hint-text,
.theme-default-dark .pink-600 .hint-text, .theme-default-dark .pink-600.disabled-text,
.theme-default-dark .pink-600 .disabled-text, .theme-default-dark .pink-700.hint-text,
.theme-default-dark .pink-700 .hint-text, .theme-default-dark .pink-700.disabled-text,
.theme-default-dark .pink-700 .disabled-text, .theme-default-dark .pink-800.hint-text,
.theme-default-dark .pink-800 .hint-text, .theme-default-dark .pink-800.disabled-text,
.theme-default-dark .pink-800 .disabled-text, .theme-default-dark .pink-900.hint-text,
.theme-default-dark .pink-900 .hint-text, .theme-default-dark .pink-900.disabled-text,
.theme-default-dark .pink-900 .disabled-text, .theme-default-dark .pink-A200.hint-text,
.theme-default-dark .pink-A200 .hint-text, .theme-default-dark .pink-A200.disabled-text,
.theme-default-dark .pink-A200 .disabled-text, .theme-default-dark .pink-A400.hint-text,
.theme-default-dark .pink-A400 .hint-text, .theme-default-dark .pink-A400.disabled-text,
.theme-default-dark .pink-A400 .disabled-text, .theme-default-dark .pink-A700.hint-text,
.theme-default-dark .pink-A700 .hint-text, .theme-default-dark .pink-A700.disabled-text,
.theme-default-dark .pink-A700 .disabled-text, .theme-default-dark .purple-300.hint-text,
.theme-default-dark .purple-300 .hint-text, .theme-default-dark .purple-300.disabled-text,
.theme-default-dark .purple-300 .disabled-text, .theme-default-dark .purple-400.hint-text,
.theme-default-dark .purple-400 .hint-text, .theme-default-dark .purple-400.disabled-text,
.theme-default-dark .purple-400 .disabled-text, .theme-default-dark .purple-500.hint-text,
.theme-default-dark .purple-500 .hint-text, .theme-default-dark .purple-500.disabled-text,
.theme-default-dark .purple-500 .disabled-text, .theme-default-dark .purple-600.hint-text,
.theme-default-dark .purple-600 .hint-text, .theme-default-dark .purple-600.disabled-text,
.theme-default-dark .purple-600 .disabled-text, .theme-default-dark .purple-700.hint-text,
.theme-default-dark .purple-700 .hint-text, .theme-default-dark .purple-700.disabled-text,
.theme-default-dark .purple-700 .disabled-text, .theme-default-dark .purple-800.hint-text,
.theme-default-dark .purple-800 .hint-text, .theme-default-dark .purple-800.disabled-text,
.theme-default-dark .purple-800 .disabled-text, .theme-default-dark .purple-900.hint-text,
.theme-default-dark .purple-900 .hint-text, .theme-default-dark .purple-900.disabled-text,
.theme-default-dark .purple-900 .disabled-text, .theme-default-dark .purple-A200.hint-text,
.theme-default-dark .purple-A200 .hint-text, .theme-default-dark .purple-A200.disabled-text,
.theme-default-dark .purple-A200 .disabled-text, .theme-default-dark .purple-A400.hint-text,
.theme-default-dark .purple-A400 .hint-text, .theme-default-dark .purple-A400.disabled-text,
.theme-default-dark .purple-A400 .disabled-text, .theme-default-dark .purple-A700.hint-text,
.theme-default-dark .purple-A700 .hint-text, .theme-default-dark .purple-A700.disabled-text,
.theme-default-dark .purple-A700 .disabled-text, .theme-default-dark .deep-purple-300.hint-text,
.theme-default-dark .deep-purple-300 .hint-text, .theme-default-dark .deep-purple-300.disabled-text,
.theme-default-dark .deep-purple-300 .disabled-text, .theme-default-dark .deep-purple-400.hint-text,
.theme-default-dark .deep-purple-400 .hint-text, .theme-default-dark .deep-purple-400.disabled-text,
.theme-default-dark .deep-purple-400 .disabled-text, .theme-default-dark .deep-purple-500.hint-text,
.theme-default-dark .deep-purple-500 .hint-text, .theme-default-dark .deep-purple-500.disabled-text,
.theme-default-dark .deep-purple-500 .disabled-text, .theme-default-dark .deep-purple-600.hint-text,
.theme-default-dark .deep-purple-600 .hint-text, .theme-default-dark .deep-purple-600.disabled-text,
.theme-default-dark .deep-purple-600 .disabled-text, .theme-default-dark .deep-purple-700.hint-text,
.theme-default-dark .deep-purple-700 .hint-text, .theme-default-dark .deep-purple-700.disabled-text,
.theme-default-dark .deep-purple-700 .disabled-text, .theme-default-dark .deep-purple-800.hint-text,
.theme-default-dark .deep-purple-800 .hint-text, .theme-default-dark .deep-purple-800.disabled-text,
.theme-default-dark .deep-purple-800 .disabled-text, .theme-default-dark .deep-purple-900.hint-text,
.theme-default-dark .deep-purple-900 .hint-text, .theme-default-dark .deep-purple-900.disabled-text,
.theme-default-dark .deep-purple-900 .disabled-text, .theme-default-dark .deep-purple-A200.hint-text,
.theme-default-dark .deep-purple-A200 .hint-text, .theme-default-dark .deep-purple-A200.disabled-text,
.theme-default-dark .deep-purple-A200 .disabled-text, .theme-default-dark .deep-purple-A400.hint-text,
.theme-default-dark .deep-purple-A400 .hint-text, .theme-default-dark .deep-purple-A400.disabled-text,
.theme-default-dark .deep-purple-A400 .disabled-text, .theme-default-dark .deep-purple-A700.hint-text,
.theme-default-dark .deep-purple-A700 .hint-text, .theme-default-dark .deep-purple-A700.disabled-text,
.theme-default-dark .deep-purple-A700 .disabled-text, .theme-default-dark .indigo-300.hint-text,
.theme-default-dark .indigo-300 .hint-text, .theme-default-dark .indigo-300.disabled-text,
.theme-default-dark .indigo-300 .disabled-text, .theme-default-dark .indigo-400.hint-text,
.theme-default-dark .indigo-400 .hint-text, .theme-default-dark .indigo-400.disabled-text,
.theme-default-dark .indigo-400 .disabled-text, .theme-default-dark .indigo-500.hint-text,
.theme-default-dark .indigo-500 .hint-text, .theme-default-dark .indigo-500.disabled-text,
.theme-default-dark .indigo-500 .disabled-text, .theme-default-dark .indigo-600.hint-text,
.theme-default-dark .indigo-600 .hint-text, .theme-default-dark .indigo-600.disabled-text,
.theme-default-dark .indigo-600 .disabled-text, .theme-default-dark .indigo-700.hint-text,
.theme-default-dark .indigo-700 .hint-text, .theme-default-dark .indigo-700.disabled-text,
.theme-default-dark .indigo-700 .disabled-text, .theme-default-dark .indigo-800.hint-text,
.theme-default-dark .indigo-800 .hint-text, .theme-default-dark .indigo-800.disabled-text,
.theme-default-dark .indigo-800 .disabled-text, .theme-default-dark .indigo-900.hint-text,
.theme-default-dark .indigo-900 .hint-text, .theme-default-dark .indigo-900.disabled-text,
.theme-default-dark .indigo-900 .disabled-text, .theme-default-dark .indigo-A200.hint-text,
.theme-default-dark .indigo-A200 .hint-text, .theme-default-dark .indigo-A200.disabled-text,
.theme-default-dark .indigo-A200 .disabled-text, .theme-default-dark .indigo-A400.hint-text,
.theme-default-dark .indigo-A400 .hint-text, .theme-default-dark .indigo-A400.disabled-text,
.theme-default-dark .indigo-A400 .disabled-text, .theme-default-dark .indigo-A700.hint-text,
.theme-default-dark .indigo-A700 .hint-text, .theme-default-dark .indigo-A700.disabled-text,
.theme-default-dark .indigo-A700 .disabled-text, .theme-default-dark .blue-400.hint-text,
.theme-default-dark .blue-400 .hint-text, .theme-default-dark .blue-400.disabled-text,
.theme-default-dark .blue-400 .disabled-text, .theme-default-dark .blue-500.hint-text,
.theme-default-dark .blue-500 .hint-text, .theme-default-dark .blue-500.disabled-text,
.theme-default-dark .blue-500 .disabled-text, .theme-default-dark .blue-600.hint-text,
.theme-default-dark .blue-600 .hint-text, .theme-default-dark .blue-600.disabled-text,
.theme-default-dark .blue-600 .disabled-text, .theme-default-dark .blue-700.hint-text,
.theme-default-dark .blue-700 .hint-text, .theme-default-dark .blue-700.disabled-text,
.theme-default-dark .blue-700 .disabled-text, .theme-default-dark .blue-800.hint-text,
.theme-default-dark .blue-800 .hint-text, .theme-default-dark .blue-800.disabled-text,
.theme-default-dark .blue-800 .disabled-text, .theme-default-dark .blue-900.hint-text,
.theme-default-dark .blue-900 .hint-text, .theme-default-dark .blue-900.disabled-text,
.theme-default-dark .blue-900 .disabled-text, .theme-default-dark .blue-A200.hint-text,
.theme-default-dark .blue-A200 .hint-text, .theme-default-dark .blue-A200.disabled-text,
.theme-default-dark .blue-A200 .disabled-text, .theme-default-dark .blue-A400.hint-text,
.theme-default-dark .blue-A400 .hint-text, .theme-default-dark .blue-A400.disabled-text,
.theme-default-dark .blue-A400 .disabled-text, .theme-default-dark .blue-A700.hint-text,
.theme-default-dark .blue-A700 .hint-text, .theme-default-dark .blue-A700.disabled-text,
.theme-default-dark .blue-A700 .disabled-text, .theme-default-dark .light-blue-500.hint-text,
.theme-default-dark .light-blue-500 .hint-text, .theme-default-dark .light-blue-500.disabled-text,
.theme-default-dark .light-blue-500 .disabled-text, .theme-default-dark .light-blue-600.hint-text,
.theme-default-dark .light-blue-600 .hint-text, .theme-default-dark .light-blue-600.disabled-text,
.theme-default-dark .light-blue-600 .disabled-text, .theme-default-dark .light-blue-700.hint-text,
.theme-default-dark .light-blue-700 .hint-text, .theme-default-dark .light-blue-700.disabled-text,
.theme-default-dark .light-blue-700 .disabled-text, .theme-default-dark .light-blue-800.hint-text,
.theme-default-dark .light-blue-800 .hint-text, .theme-default-dark .light-blue-800.disabled-text,
.theme-default-dark .light-blue-800 .disabled-text, .theme-default-dark .light-blue-900.hint-text,
.theme-default-dark .light-blue-900 .hint-text, .theme-default-dark .light-blue-900.disabled-text,
.theme-default-dark .light-blue-900 .disabled-text, .theme-default-dark .light-blue-A700.hint-text,
.theme-default-dark .light-blue-A700 .hint-text, .theme-default-dark .light-blue-A700.disabled-text,
.theme-default-dark .light-blue-A700 .disabled-text, .theme-default-dark .cyan-500.hint-text,
.theme-default-dark .cyan-500 .hint-text, .theme-default-dark .cyan-500.disabled-text,
.theme-default-dark .cyan-500 .disabled-text, .theme-default-dark .cyan-600.hint-text,
.theme-default-dark .cyan-600 .hint-text, .theme-default-dark .cyan-600.disabled-text,
.theme-default-dark .cyan-600 .disabled-text, .theme-default-dark .cyan-700.hint-text,
.theme-default-dark .cyan-700 .hint-text, .theme-default-dark .cyan-700.disabled-text,
.theme-default-dark .cyan-700 .disabled-text, .theme-default-dark .cyan-800.hint-text,
.theme-default-dark .cyan-800 .hint-text, .theme-default-dark .cyan-800.disabled-text,
.theme-default-dark .cyan-800 .disabled-text, .theme-default-dark .cyan-900.hint-text,
.theme-default-dark .cyan-900 .hint-text, .theme-default-dark .cyan-900.disabled-text,
.theme-default-dark .cyan-900 .disabled-text, .theme-default-dark .teal-500.hint-text,
.theme-default-dark .teal-500 .hint-text, .theme-default-dark .teal-500.disabled-text,
.theme-default-dark .teal-500 .disabled-text, .theme-default-dark .teal-600.hint-text,
.theme-default-dark .teal-600 .hint-text, .theme-default-dark .teal-600.disabled-text,
.theme-default-dark .teal-600 .disabled-text, .theme-default-dark .teal-700.hint-text,
.theme-default-dark .teal-700 .hint-text, .theme-default-dark .teal-700.disabled-text,
.theme-default-dark .teal-700 .disabled-text, .theme-default-dark .teal-800.hint-text,
.theme-default-dark .teal-800 .hint-text, .theme-default-dark .teal-800.disabled-text,
.theme-default-dark .teal-800 .disabled-text, .theme-default-dark .teal-900.hint-text,
.theme-default-dark .teal-900 .hint-text, .theme-default-dark .teal-900.disabled-text,
.theme-default-dark .teal-900 .disabled-text, .theme-default-dark .green-500.hint-text,
.theme-default-dark .green-500 .hint-text, .theme-default-dark .green-500.disabled-text,
.theme-default-dark .green-500 .disabled-text, .theme-default-dark .green-600.hint-text,
.theme-default-dark .green-600 .hint-text, .theme-default-dark .green-600.disabled-text,
.theme-default-dark .green-600 .disabled-text, .theme-default-dark .green-700.hint-text,
.theme-default-dark .green-700 .hint-text, .theme-default-dark .green-700.disabled-text,
.theme-default-dark .green-700 .disabled-text, .theme-default-dark .green-800.hint-text,
.theme-default-dark .green-800 .hint-text, .theme-default-dark .green-800.disabled-text,
.theme-default-dark .green-800 .disabled-text, .theme-default-dark .green-900.hint-text,
.theme-default-dark .green-900 .hint-text, .theme-default-dark .green-900.disabled-text,
.theme-default-dark .green-900 .disabled-text, .theme-default-dark .light-green-600.hint-text,
.theme-default-dark .light-green-600 .hint-text, .theme-default-dark .light-green-600.disabled-text,
.theme-default-dark .light-green-600 .disabled-text, .theme-default-dark .light-green-700.hint-text,
.theme-default-dark .light-green-700 .hint-text, .theme-default-dark .light-green-700.disabled-text,
.theme-default-dark .light-green-700 .disabled-text, .theme-default-dark .light-green-800.hint-text,
.theme-default-dark .light-green-800 .hint-text, .theme-default-dark .light-green-800.disabled-text,
.theme-default-dark .light-green-800 .disabled-text, .theme-default-dark .light-green-900.hint-text,
.theme-default-dark .light-green-900 .hint-text, .theme-default-dark .light-green-900.disabled-text,
.theme-default-dark .light-green-900 .disabled-text, .theme-default-dark .lime-500.hint-text,
.theme-default-dark .lime-500 .hint-text, .theme-default-dark .lime-500.disabled-text,
.theme-default-dark .lime-500 .disabled-text, .theme-default-dark .lime-600.hint-text,
.theme-default-dark .lime-600 .hint-text, .theme-default-dark .lime-600.disabled-text,
.theme-default-dark .lime-600 .disabled-text, .theme-default-dark .lime-700.hint-text,
.theme-default-dark .lime-700 .hint-text, .theme-default-dark .lime-700.disabled-text,
.theme-default-dark .lime-700 .disabled-text, .theme-default-dark .lime-800.hint-text,
.theme-default-dark .lime-800 .hint-text, .theme-default-dark .lime-800.disabled-text,
.theme-default-dark .lime-800 .disabled-text, .theme-default-dark .lime-900.hint-text,
.theme-default-dark .lime-900 .hint-text, .theme-default-dark .lime-900.disabled-text,
.theme-default-dark .lime-900 .disabled-text, .theme-default-dark .orange-800.hint-text,
.theme-default-dark .orange-800 .hint-text, .theme-default-dark .orange-800.disabled-text,
.theme-default-dark .orange-800 .disabled-text, .theme-default-dark .orange-900.hint-text,
.theme-default-dark .orange-900 .hint-text, .theme-default-dark .orange-900.disabled-text,
.theme-default-dark .orange-900 .disabled-text, .theme-default-dark .deep-orange-500.hint-text,
.theme-default-dark .deep-orange-500 .hint-text, .theme-default-dark .deep-orange-500.disabled-text,
.theme-default-dark .deep-orange-500 .disabled-text, .theme-default-dark .deep-orange-600.hint-text,
.theme-default-dark .deep-orange-600 .hint-text, .theme-default-dark .deep-orange-600.disabled-text,
.theme-default-dark .deep-orange-600 .disabled-text, .theme-default-dark .deep-orange-700.hint-text,
.theme-default-dark .deep-orange-700 .hint-text, .theme-default-dark .deep-orange-700.disabled-text,
.theme-default-dark .deep-orange-700 .disabled-text, .theme-default-dark .deep-orange-800.hint-text,
.theme-default-dark .deep-orange-800 .hint-text, .theme-default-dark .deep-orange-800.disabled-text,
.theme-default-dark .deep-orange-800 .disabled-text, .theme-default-dark .deep-orange-900.hint-text,
.theme-default-dark .deep-orange-900 .hint-text, .theme-default-dark .deep-orange-900.disabled-text,
.theme-default-dark .deep-orange-900 .disabled-text, .theme-default-dark .deep-orange-A400.hint-text,
.theme-default-dark .deep-orange-A400 .hint-text, .theme-default-dark .deep-orange-A400.disabled-text,
.theme-default-dark .deep-orange-A400 .disabled-text, .theme-default-dark .deep-orange-A700.hint-text,
.theme-default-dark .deep-orange-A700 .hint-text, .theme-default-dark .deep-orange-A700.disabled-text,
.theme-default-dark .deep-orange-A700 .disabled-text, .theme-default-dark .brown-300.hint-text,
.theme-default-dark .brown-300 .hint-text, .theme-default-dark .brown-300.disabled-text,
.theme-default-dark .brown-300 .disabled-text, .theme-default-dark .brown-400.hint-text,
.theme-default-dark .brown-400 .hint-text, .theme-default-dark .brown-400.disabled-text,
.theme-default-dark .brown-400 .disabled-text, .theme-default-dark .brown-500.hint-text,
.theme-default-dark .brown-500 .hint-text, .theme-default-dark .brown-500.disabled-text,
.theme-default-dark .brown-500 .disabled-text, .theme-default-dark .brown-600.hint-text,
.theme-default-dark .brown-600 .hint-text, .theme-default-dark .brown-600.disabled-text,
.theme-default-dark .brown-600 .disabled-text, .theme-default-dark .brown-700.hint-text,
.theme-default-dark .brown-700 .hint-text, .theme-default-dark .brown-700.disabled-text,
.theme-default-dark .brown-700 .disabled-text, .theme-default-dark .brown-800.hint-text,
.theme-default-dark .brown-800 .hint-text, .theme-default-dark .brown-800.disabled-text,
.theme-default-dark .brown-800 .disabled-text, .theme-default-dark .brown-900.hint-text,
.theme-default-dark .brown-900 .hint-text, .theme-default-dark .brown-900.disabled-text,
.theme-default-dark .brown-900 .disabled-text, .theme-default-dark .brown-A400.hint-text,
.theme-default-dark .brown-A400 .hint-text, .theme-default-dark .brown-A400.disabled-text,
.theme-default-dark .brown-A400 .disabled-text, .theme-default-dark .brown-A700.hint-text,
.theme-default-dark .brown-A700 .hint-text, .theme-default-dark .brown-A700.disabled-text,
.theme-default-dark .brown-A700 .disabled-text, .theme-default-dark .grey-500.hint-text,
.theme-default-dark .grey-500 .hint-text, .theme-default-dark .grey-500.disabled-text,
.theme-default-dark .grey-500 .disabled-text, .theme-default-dark .grey-600.hint-text,
.theme-default-dark .grey-600 .hint-text, .theme-default-dark .grey-600.disabled-text,
.theme-default-dark .grey-600 .disabled-text, .theme-default-dark .grey-700.hint-text,
.theme-default-dark .grey-700 .hint-text, .theme-default-dark .grey-700.disabled-text,
.theme-default-dark .grey-700 .disabled-text, .theme-default-dark .grey-800.hint-text,
.theme-default-dark .grey-800 .hint-text, .theme-default-dark .grey-800.disabled-text,
.theme-default-dark .grey-800 .disabled-text, .theme-default-dark .grey-900.hint-text,
.theme-default-dark .grey-900 .hint-text, .theme-default-dark .grey-900.disabled-text,
.theme-default-dark .grey-900 .disabled-text, .theme-default-dark .blue-grey-400.hint-text,
.theme-default-dark .blue-grey-400 .hint-text, .theme-default-dark .blue-grey-400.disabled-text,
.theme-default-dark .blue-grey-400 .disabled-text, .theme-default-dark .blue-grey-500.hint-text,
.theme-default-dark .blue-grey-500 .hint-text, .theme-default-dark .blue-grey-500.disabled-text,
.theme-default-dark .blue-grey-500 .disabled-text, .theme-default-dark .blue-grey-600.hint-text,
.theme-default-dark .blue-grey-600 .hint-text, .theme-default-dark .blue-grey-600.disabled-text,
.theme-default-dark .blue-grey-600 .disabled-text, .theme-default-dark .blue-grey-700.hint-text,
.theme-default-dark .blue-grey-700 .hint-text, .theme-default-dark .blue-grey-700.disabled-text,
.theme-default-dark .blue-grey-700 .disabled-text, .theme-default-dark .blue-grey-800.hint-text,
.theme-default-dark .blue-grey-800 .hint-text, .theme-default-dark .blue-grey-800.disabled-text,
.theme-default-dark .blue-grey-800 .disabled-text, .theme-default-dark .blue-grey-900.hint-text,
.theme-default-dark .blue-grey-900 .hint-text, .theme-default-dark .blue-grey-900.disabled-text,
.theme-default-dark .blue-grey-900 .disabled-text, .theme-default-dark .blue-grey-A400.hint-text,
.theme-default-dark .blue-grey-A400 .hint-text, .theme-default-dark .blue-grey-A400.disabled-text,
.theme-default-dark .blue-grey-A400 .disabled-text, .theme-default-dark .blue-grey-A700.hint-text,
.theme-default-dark .blue-grey-A700 .hint-text, .theme-default-dark .blue-grey-A700.disabled-text,
.theme-default-dark .blue-grey-A700 .disabled-text, .theme-default-dark .dark-grey-50.hint-text,
.theme-default-dark .dark-grey-50 .hint-text, .theme-default-dark .dark-grey-50.disabled-text,
.theme-default-dark .dark-grey-50 .disabled-text, .theme-default-dark .dark-grey-100.hint-text,
.theme-default-dark .dark-grey-100 .hint-text, .theme-default-dark .dark-grey-100.disabled-text,
.theme-default-dark .dark-grey-100 .disabled-text, .theme-default-dark .dark-grey-200.hint-text,
.theme-default-dark .dark-grey-200 .hint-text, .theme-default-dark .dark-grey-200.disabled-text,
.theme-default-dark .dark-grey-200 .disabled-text, .theme-default-dark .dark-grey-300.hint-text,
.theme-default-dark .dark-grey-300 .hint-text, .theme-default-dark .dark-grey-300.disabled-text,
.theme-default-dark .dark-grey-300 .disabled-text, .theme-default-dark .dark-grey-400.hint-text,
.theme-default-dark .dark-grey-400 .hint-text, .theme-default-dark .dark-grey-400.disabled-text,
.theme-default-dark .dark-grey-400 .disabled-text, .theme-default-dark .dark-grey-500.hint-text,
.theme-default-dark .dark-grey-500 .hint-text, .theme-default-dark .dark-grey-500.disabled-text,
.theme-default-dark .dark-grey-500 .disabled-text, .theme-default-dark .dark-grey-600.hint-text,
.theme-default-dark .dark-grey-600 .hint-text, .theme-default-dark .dark-grey-600.disabled-text,
.theme-default-dark .dark-grey-600 .disabled-text, .theme-default-dark .dark-grey-700.hint-text,
.theme-default-dark .dark-grey-700 .hint-text, .theme-default-dark .dark-grey-700.disabled-text,
.theme-default-dark .dark-grey-700 .disabled-text, .theme-default-dark .dark-grey-800.hint-text,
.theme-default-dark .dark-grey-800 .hint-text, .theme-default-dark .dark-grey-800.disabled-text,
.theme-default-dark .dark-grey-800 .disabled-text, .theme-default-dark .dark-grey-900.hint-text,
.theme-default-dark .dark-grey-900 .hint-text, .theme-default-dark .dark-grey-900.disabled-text,
.theme-default-dark .dark-grey-900 .disabled-text, .theme-default-dark .dark-grey-A100.hint-text,
.theme-default-dark .dark-grey-A100 .hint-text, .theme-default-dark .dark-grey-A100.disabled-text,
.theme-default-dark .dark-grey-A100 .disabled-text, .theme-default-dark .dark-grey-A200.hint-text,
.theme-default-dark .dark-grey-A200 .hint-text, .theme-default-dark .dark-grey-A200.disabled-text,
.theme-default-dark .dark-grey-A200 .disabled-text, .theme-default-dark .dark-grey-A400.hint-text,
.theme-default-dark .dark-grey-A400 .hint-text, .theme-default-dark .dark-grey-A400.disabled-text,
.theme-default-dark .dark-grey-A400 .disabled-text, .theme-default-dark .dark-grey-A700.hint-text,
.theme-default-dark .dark-grey-A700 .hint-text, .theme-default-dark .dark-grey-A700.disabled-text,
.theme-default-dark .dark-grey-A700 .disabled-text, .theme-default-dark .primary-400.hint-text,
.theme-default-dark .primary-400 .hint-text, .theme-default-dark .primary-400.disabled-text,
.theme-default-dark .primary-400 .disabled-text, .theme-default-dark .primary-500.hint-text,
.theme-default-dark .primary-500 .hint-text, .theme-default-dark .primary-500.disabled-text,
.theme-default-dark .primary-500 .disabled-text, .theme-default-dark .primary-600.hint-text,
.theme-default-dark .primary-600 .hint-text, .theme-default-dark .primary-600.disabled-text,
.theme-default-dark .primary-600 .disabled-text, .theme-default-dark .primary-700.hint-text,
.theme-default-dark .primary-700 .hint-text, .theme-default-dark .primary-700.disabled-text,
.theme-default-dark .primary-700 .disabled-text, .theme-default-dark .primary-800.hint-text,
.theme-default-dark .primary-800 .hint-text, .theme-default-dark .primary-800.disabled-text,
.theme-default-dark .primary-800 .disabled-text, .theme-default-dark .primary-900.hint-text,
.theme-default-dark .primary-900 .hint-text, .theme-default-dark .primary-900.disabled-text,
.theme-default-dark .primary-900 .disabled-text, .theme-default-dark .primary-A400.hint-text,
.theme-default-dark .primary-A400 .hint-text, .theme-default-dark .primary-A400.disabled-text,
.theme-default-dark .primary-A400 .disabled-text, .theme-default-dark .primary-A700.hint-text,
.theme-default-dark .primary-A700 .hint-text, .theme-default-dark .primary-A700.disabled-text,
.theme-default-dark .primary-A700 .disabled-text, .theme-default-dark .accent-400.hint-text,
.theme-default-dark .accent-400 .hint-text, .theme-default-dark .accent-400.disabled-text,
.theme-default-dark .accent-400 .disabled-text, .theme-default-dark .accent-500.hint-text,
.theme-default-dark .accent-500 .hint-text, .theme-default-dark .accent-500.disabled-text,
.theme-default-dark .accent-500 .disabled-text, .theme-default-dark .accent-600.hint-text,
.theme-default-dark .accent-600 .hint-text, .theme-default-dark .accent-600.disabled-text,
.theme-default-dark .accent-600 .disabled-text, .theme-default-dark .accent-700.hint-text,
.theme-default-dark .accent-700 .hint-text, .theme-default-dark .accent-700.disabled-text,
.theme-default-dark .accent-700 .disabled-text, .theme-default-dark .accent-800.hint-text,
.theme-default-dark .accent-800 .hint-text, .theme-default-dark .accent-800.disabled-text,
.theme-default-dark .accent-800 .disabled-text, .theme-default-dark .accent-900.hint-text,
.theme-default-dark .accent-900 .hint-text, .theme-default-dark .accent-900.disabled-text,
.theme-default-dark .accent-900 .disabled-text, .theme-default-dark .accent-A200.hint-text,
.theme-default-dark .accent-A200 .hint-text, .theme-default-dark .accent-A200.disabled-text,
.theme-default-dark .accent-A200 .disabled-text, .theme-default-dark .accent-A400.hint-text,
.theme-default-dark .accent-A400 .hint-text, .theme-default-dark .accent-A400.disabled-text,
.theme-default-dark .accent-A400 .disabled-text, .theme-default-dark .accent-A700.hint-text,
.theme-default-dark .accent-A700 .hint-text, .theme-default-dark .accent-A700.disabled-text,
.theme-default-dark .accent-A700 .disabled-text, .theme-default-dark .warn-500.hint-text,
.theme-default-dark .warn-500 .hint-text, .theme-default-dark .warn-500.disabled-text,
.theme-default-dark .warn-500 .disabled-text, .theme-default-dark .warn-600.hint-text,
.theme-default-dark .warn-600 .hint-text, .theme-default-dark .warn-600.disabled-text,
.theme-default-dark .warn-600 .disabled-text, .theme-default-dark .warn-700.hint-text,
.theme-default-dark .warn-700 .hint-text, .theme-default-dark .warn-700.disabled-text,
.theme-default-dark .warn-700 .disabled-text, .theme-default-dark .warn-800.hint-text,
.theme-default-dark .warn-800 .hint-text, .theme-default-dark .warn-800.disabled-text,
.theme-default-dark .warn-800 .disabled-text, .theme-default-dark .warn-900.hint-text,
.theme-default-dark .warn-900 .hint-text, .theme-default-dark .warn-900.disabled-text,
.theme-default-dark .warn-900 .disabled-text, .theme-default-dark .warn-A200.hint-text,
.theme-default-dark .warn-A200 .hint-text, .theme-default-dark .warn-A200.disabled-text,
.theme-default-dark .warn-A200 .disabled-text, .theme-default-dark .warn-A400.hint-text,
.theme-default-dark .warn-A400 .hint-text, .theme-default-dark .warn-A400.disabled-text,
.theme-default-dark .warn-A400 .disabled-text, .theme-default-dark .warn-A700.hint-text,
.theme-default-dark .warn-A700 .hint-text, .theme-default-dark .warn-A700.disabled-text,
.theme-default-dark .warn-A700 .disabled-text {
  color: rgba(255, 255, 255, 0.5) !important;
}
.theme-default-dark .red-500.divider,
.theme-default-dark .red-500 .divider, .theme-default-dark .red-600.divider,
.theme-default-dark .red-600 .divider, .theme-default-dark .red-700.divider,
.theme-default-dark .red-700 .divider, .theme-default-dark .red-800.divider,
.theme-default-dark .red-800 .divider, .theme-default-dark .red-900.divider,
.theme-default-dark .red-900 .divider, .theme-default-dark .red-A200.divider,
.theme-default-dark .red-A200 .divider, .theme-default-dark .red-A400.divider,
.theme-default-dark .red-A400 .divider, .theme-default-dark .red-A700.divider,
.theme-default-dark .red-A700 .divider, .theme-default-dark .pink-500.divider,
.theme-default-dark .pink-500 .divider, .theme-default-dark .pink-600.divider,
.theme-default-dark .pink-600 .divider, .theme-default-dark .pink-700.divider,
.theme-default-dark .pink-700 .divider, .theme-default-dark .pink-800.divider,
.theme-default-dark .pink-800 .divider, .theme-default-dark .pink-900.divider,
.theme-default-dark .pink-900 .divider, .theme-default-dark .pink-A200.divider,
.theme-default-dark .pink-A200 .divider, .theme-default-dark .pink-A400.divider,
.theme-default-dark .pink-A400 .divider, .theme-default-dark .pink-A700.divider,
.theme-default-dark .pink-A700 .divider, .theme-default-dark .purple-300.divider,
.theme-default-dark .purple-300 .divider, .theme-default-dark .purple-400.divider,
.theme-default-dark .purple-400 .divider, .theme-default-dark .purple-500.divider,
.theme-default-dark .purple-500 .divider, .theme-default-dark .purple-600.divider,
.theme-default-dark .purple-600 .divider, .theme-default-dark .purple-700.divider,
.theme-default-dark .purple-700 .divider, .theme-default-dark .purple-800.divider,
.theme-default-dark .purple-800 .divider, .theme-default-dark .purple-900.divider,
.theme-default-dark .purple-900 .divider, .theme-default-dark .purple-A200.divider,
.theme-default-dark .purple-A200 .divider, .theme-default-dark .purple-A400.divider,
.theme-default-dark .purple-A400 .divider, .theme-default-dark .purple-A700.divider,
.theme-default-dark .purple-A700 .divider, .theme-default-dark .deep-purple-300.divider,
.theme-default-dark .deep-purple-300 .divider, .theme-default-dark .deep-purple-400.divider,
.theme-default-dark .deep-purple-400 .divider, .theme-default-dark .deep-purple-500.divider,
.theme-default-dark .deep-purple-500 .divider, .theme-default-dark .deep-purple-600.divider,
.theme-default-dark .deep-purple-600 .divider, .theme-default-dark .deep-purple-700.divider,
.theme-default-dark .deep-purple-700 .divider, .theme-default-dark .deep-purple-800.divider,
.theme-default-dark .deep-purple-800 .divider, .theme-default-dark .deep-purple-900.divider,
.theme-default-dark .deep-purple-900 .divider, .theme-default-dark .deep-purple-A200.divider,
.theme-default-dark .deep-purple-A200 .divider, .theme-default-dark .deep-purple-A400.divider,
.theme-default-dark .deep-purple-A400 .divider, .theme-default-dark .deep-purple-A700.divider,
.theme-default-dark .deep-purple-A700 .divider, .theme-default-dark .indigo-300.divider,
.theme-default-dark .indigo-300 .divider, .theme-default-dark .indigo-400.divider,
.theme-default-dark .indigo-400 .divider, .theme-default-dark .indigo-500.divider,
.theme-default-dark .indigo-500 .divider, .theme-default-dark .indigo-600.divider,
.theme-default-dark .indigo-600 .divider, .theme-default-dark .indigo-700.divider,
.theme-default-dark .indigo-700 .divider, .theme-default-dark .indigo-800.divider,
.theme-default-dark .indigo-800 .divider, .theme-default-dark .indigo-900.divider,
.theme-default-dark .indigo-900 .divider, .theme-default-dark .indigo-A200.divider,
.theme-default-dark .indigo-A200 .divider, .theme-default-dark .indigo-A400.divider,
.theme-default-dark .indigo-A400 .divider, .theme-default-dark .indigo-A700.divider,
.theme-default-dark .indigo-A700 .divider, .theme-default-dark .blue-400.divider,
.theme-default-dark .blue-400 .divider, .theme-default-dark .blue-500.divider,
.theme-default-dark .blue-500 .divider, .theme-default-dark .blue-600.divider,
.theme-default-dark .blue-600 .divider, .theme-default-dark .blue-700.divider,
.theme-default-dark .blue-700 .divider, .theme-default-dark .blue-800.divider,
.theme-default-dark .blue-800 .divider, .theme-default-dark .blue-900.divider,
.theme-default-dark .blue-900 .divider, .theme-default-dark .blue-A200.divider,
.theme-default-dark .blue-A200 .divider, .theme-default-dark .blue-A400.divider,
.theme-default-dark .blue-A400 .divider, .theme-default-dark .blue-A700.divider,
.theme-default-dark .blue-A700 .divider, .theme-default-dark .light-blue-500.divider,
.theme-default-dark .light-blue-500 .divider, .theme-default-dark .light-blue-600.divider,
.theme-default-dark .light-blue-600 .divider, .theme-default-dark .light-blue-700.divider,
.theme-default-dark .light-blue-700 .divider, .theme-default-dark .light-blue-800.divider,
.theme-default-dark .light-blue-800 .divider, .theme-default-dark .light-blue-900.divider,
.theme-default-dark .light-blue-900 .divider, .theme-default-dark .light-blue-A700.divider,
.theme-default-dark .light-blue-A700 .divider, .theme-default-dark .cyan-500.divider,
.theme-default-dark .cyan-500 .divider, .theme-default-dark .cyan-600.divider,
.theme-default-dark .cyan-600 .divider, .theme-default-dark .cyan-700.divider,
.theme-default-dark .cyan-700 .divider, .theme-default-dark .cyan-800.divider,
.theme-default-dark .cyan-800 .divider, .theme-default-dark .cyan-900.divider,
.theme-default-dark .cyan-900 .divider, .theme-default-dark .teal-500.divider,
.theme-default-dark .teal-500 .divider, .theme-default-dark .teal-600.divider,
.theme-default-dark .teal-600 .divider, .theme-default-dark .teal-700.divider,
.theme-default-dark .teal-700 .divider, .theme-default-dark .teal-800.divider,
.theme-default-dark .teal-800 .divider, .theme-default-dark .teal-900.divider,
.theme-default-dark .teal-900 .divider, .theme-default-dark .green-500.divider,
.theme-default-dark .green-500 .divider, .theme-default-dark .green-600.divider,
.theme-default-dark .green-600 .divider, .theme-default-dark .green-700.divider,
.theme-default-dark .green-700 .divider, .theme-default-dark .green-800.divider,
.theme-default-dark .green-800 .divider, .theme-default-dark .green-900.divider,
.theme-default-dark .green-900 .divider, .theme-default-dark .light-green-600.divider,
.theme-default-dark .light-green-600 .divider, .theme-default-dark .light-green-700.divider,
.theme-default-dark .light-green-700 .divider, .theme-default-dark .light-green-800.divider,
.theme-default-dark .light-green-800 .divider, .theme-default-dark .light-green-900.divider,
.theme-default-dark .light-green-900 .divider, .theme-default-dark .lime-500.divider,
.theme-default-dark .lime-500 .divider, .theme-default-dark .lime-600.divider,
.theme-default-dark .lime-600 .divider, .theme-default-dark .lime-700.divider,
.theme-default-dark .lime-700 .divider, .theme-default-dark .lime-800.divider,
.theme-default-dark .lime-800 .divider, .theme-default-dark .lime-900.divider,
.theme-default-dark .lime-900 .divider, .theme-default-dark .orange-800.divider,
.theme-default-dark .orange-800 .divider, .theme-default-dark .orange-900.divider,
.theme-default-dark .orange-900 .divider, .theme-default-dark .deep-orange-500.divider,
.theme-default-dark .deep-orange-500 .divider, .theme-default-dark .deep-orange-600.divider,
.theme-default-dark .deep-orange-600 .divider, .theme-default-dark .deep-orange-700.divider,
.theme-default-dark .deep-orange-700 .divider, .theme-default-dark .deep-orange-800.divider,
.theme-default-dark .deep-orange-800 .divider, .theme-default-dark .deep-orange-900.divider,
.theme-default-dark .deep-orange-900 .divider, .theme-default-dark .deep-orange-A400.divider,
.theme-default-dark .deep-orange-A400 .divider, .theme-default-dark .deep-orange-A700.divider,
.theme-default-dark .deep-orange-A700 .divider, .theme-default-dark .brown-300.divider,
.theme-default-dark .brown-300 .divider, .theme-default-dark .brown-400.divider,
.theme-default-dark .brown-400 .divider, .theme-default-dark .brown-500.divider,
.theme-default-dark .brown-500 .divider, .theme-default-dark .brown-600.divider,
.theme-default-dark .brown-600 .divider, .theme-default-dark .brown-700.divider,
.theme-default-dark .brown-700 .divider, .theme-default-dark .brown-800.divider,
.theme-default-dark .brown-800 .divider, .theme-default-dark .brown-900.divider,
.theme-default-dark .brown-900 .divider, .theme-default-dark .brown-A400.divider,
.theme-default-dark .brown-A400 .divider, .theme-default-dark .brown-A700.divider,
.theme-default-dark .brown-A700 .divider, .theme-default-dark .grey-500.divider,
.theme-default-dark .grey-500 .divider, .theme-default-dark .grey-600.divider,
.theme-default-dark .grey-600 .divider, .theme-default-dark .grey-700.divider,
.theme-default-dark .grey-700 .divider, .theme-default-dark .grey-800.divider,
.theme-default-dark .grey-800 .divider, .theme-default-dark .grey-900.divider,
.theme-default-dark .grey-900 .divider, .theme-default-dark .blue-grey-400.divider,
.theme-default-dark .blue-grey-400 .divider, .theme-default-dark .blue-grey-500.divider,
.theme-default-dark .blue-grey-500 .divider, .theme-default-dark .blue-grey-600.divider,
.theme-default-dark .blue-grey-600 .divider, .theme-default-dark .blue-grey-700.divider,
.theme-default-dark .blue-grey-700 .divider, .theme-default-dark .blue-grey-800.divider,
.theme-default-dark .blue-grey-800 .divider, .theme-default-dark .blue-grey-900.divider,
.theme-default-dark .blue-grey-900 .divider, .theme-default-dark .blue-grey-A400.divider,
.theme-default-dark .blue-grey-A400 .divider, .theme-default-dark .blue-grey-A700.divider,
.theme-default-dark .blue-grey-A700 .divider, .theme-default-dark .dark-grey-50.divider,
.theme-default-dark .dark-grey-50 .divider, .theme-default-dark .dark-grey-100.divider,
.theme-default-dark .dark-grey-100 .divider, .theme-default-dark .dark-grey-200.divider,
.theme-default-dark .dark-grey-200 .divider, .theme-default-dark .dark-grey-300.divider,
.theme-default-dark .dark-grey-300 .divider, .theme-default-dark .dark-grey-400.divider,
.theme-default-dark .dark-grey-400 .divider, .theme-default-dark .dark-grey-500.divider,
.theme-default-dark .dark-grey-500 .divider, .theme-default-dark .dark-grey-600.divider,
.theme-default-dark .dark-grey-600 .divider, .theme-default-dark .dark-grey-700.divider,
.theme-default-dark .dark-grey-700 .divider, .theme-default-dark .dark-grey-800.divider,
.theme-default-dark .dark-grey-800 .divider, .theme-default-dark .dark-grey-900.divider,
.theme-default-dark .dark-grey-900 .divider, .theme-default-dark .dark-grey-A100.divider,
.theme-default-dark .dark-grey-A100 .divider, .theme-default-dark .dark-grey-A200.divider,
.theme-default-dark .dark-grey-A200 .divider, .theme-default-dark .dark-grey-A400.divider,
.theme-default-dark .dark-grey-A400 .divider, .theme-default-dark .dark-grey-A700.divider,
.theme-default-dark .dark-grey-A700 .divider, .theme-default-dark .primary-400.divider,
.theme-default-dark .primary-400 .divider, .theme-default-dark .primary-500.divider,
.theme-default-dark .primary-500 .divider, .theme-default-dark .primary-600.divider,
.theme-default-dark .primary-600 .divider, .theme-default-dark .primary-700.divider,
.theme-default-dark .primary-700 .divider, .theme-default-dark .primary-800.divider,
.theme-default-dark .primary-800 .divider, .theme-default-dark .primary-900.divider,
.theme-default-dark .primary-900 .divider, .theme-default-dark .primary-A400.divider,
.theme-default-dark .primary-A400 .divider, .theme-default-dark .primary-A700.divider,
.theme-default-dark .primary-A700 .divider, .theme-default-dark .accent-400.divider,
.theme-default-dark .accent-400 .divider, .theme-default-dark .accent-500.divider,
.theme-default-dark .accent-500 .divider, .theme-default-dark .accent-600.divider,
.theme-default-dark .accent-600 .divider, .theme-default-dark .accent-700.divider,
.theme-default-dark .accent-700 .divider, .theme-default-dark .accent-800.divider,
.theme-default-dark .accent-800 .divider, .theme-default-dark .accent-900.divider,
.theme-default-dark .accent-900 .divider, .theme-default-dark .accent-A200.divider,
.theme-default-dark .accent-A200 .divider, .theme-default-dark .accent-A400.divider,
.theme-default-dark .accent-A400 .divider, .theme-default-dark .accent-A700.divider,
.theme-default-dark .accent-A700 .divider, .theme-default-dark .warn-500.divider,
.theme-default-dark .warn-500 .divider, .theme-default-dark .warn-600.divider,
.theme-default-dark .warn-600 .divider, .theme-default-dark .warn-700.divider,
.theme-default-dark .warn-700 .divider, .theme-default-dark .warn-800.divider,
.theme-default-dark .warn-800 .divider, .theme-default-dark .warn-900.divider,
.theme-default-dark .warn-900 .divider, .theme-default-dark .warn-A200.divider,
.theme-default-dark .warn-A200 .divider, .theme-default-dark .warn-A400.divider,
.theme-default-dark .warn-A400 .divider, .theme-default-dark .warn-A700.divider,
.theme-default-dark .warn-A700 .divider {
  color: rgba(255, 255, 255, 0.12) !important;
}
.theme-default-dark .color-unset {
  color: #E2E7E9;
}
.theme-default-dark .color-unset .ripple {
  background: #E2E7E9;
}
.theme-default-dark .background-red-alpha {
  background: rgba(247, 196, 196, 0.2);
}
.theme-default-dark .red .ripple {
  background: rgba(247, 196, 196, 0.2);
}
.theme-default-dark .background-red {
  background: #f7c4c4;
}
.theme-default-dark .border-color-red {
  border-color: #f7c4c4;
}
.theme-default-dark .color-red {
  color: #f7c4c4 !important;
}
.theme-default-dark .fill-red {
  fill: #f7c4c4;
}
.theme-default-dark .stroke-red {
  stroke: #f7c4c4;
}
.theme-default-dark .color-red-alpha {
  color: rgba(247, 196, 196, 0.2) !important;
}
.theme-default-dark .red-alpha {
  background: rgba(247, 196, 196, 0.2);
  color: #f7c4c4;
}
.theme-default-dark .red {
  background: #f7c4c4;
  color: rgba(0, 0, 0, 0.87);
}
.theme-default-dark .background-pink-alpha {
  background: rgba(248, 187, 208, 0.2);
}
.theme-default-dark .pink .ripple {
  background: rgba(248, 187, 208, 0.2);
}
.theme-default-dark .background-pink {
  background: #f8bbd0;
}
.theme-default-dark .border-color-pink {
  border-color: #f8bbd0;
}
.theme-default-dark .color-pink {
  color: #f8bbd0 !important;
}
.theme-default-dark .fill-pink {
  fill: #f8bbd0;
}
.theme-default-dark .stroke-pink {
  stroke: #f8bbd0;
}
.theme-default-dark .color-pink-alpha {
  color: rgba(248, 187, 208, 0.2) !important;
}
.theme-default-dark .pink-alpha {
  background: rgba(248, 187, 208, 0.2);
  color: #f8bbd0;
}
.theme-default-dark .pink {
  background: #f8bbd0;
  color: rgba(0, 0, 0, 0.87);
}
.theme-default-dark .background-purple-alpha {
  background: rgba(225, 190, 231, 0.2);
}
.theme-default-dark .purple .ripple {
  background: rgba(225, 190, 231, 0.2);
}
.theme-default-dark .background-purple {
  background: #e1bee7;
}
.theme-default-dark .border-color-purple {
  border-color: #e1bee7;
}
.theme-default-dark .color-purple {
  color: #e1bee7 !important;
}
.theme-default-dark .fill-purple {
  fill: #e1bee7;
}
.theme-default-dark .stroke-purple {
  stroke: #e1bee7;
}
.theme-default-dark .color-purple-alpha {
  color: rgba(225, 190, 231, 0.2) !important;
}
.theme-default-dark .purple-alpha {
  background: rgba(225, 190, 231, 0.2);
  color: #e1bee7;
}
.theme-default-dark .purple {
  background: #e1bee7;
  color: rgba(0, 0, 0, 0.87);
}
.theme-default-dark .background-deep-purple-alpha {
  background: rgba(209, 196, 233, 0.2);
}
.theme-default-dark .deep-purple .ripple {
  background: rgba(209, 196, 233, 0.2);
}
.theme-default-dark .background-deep-purple {
  background: #d1c4e9;
}
.theme-default-dark .border-color-deep-purple {
  border-color: #d1c4e9;
}
.theme-default-dark .color-deep-purple {
  color: #d1c4e9 !important;
}
.theme-default-dark .fill-deep-purple {
  fill: #d1c4e9;
}
.theme-default-dark .stroke-deep-purple {
  stroke: #d1c4e9;
}
.theme-default-dark .color-deep-purple-alpha {
  color: rgba(209, 196, 233, 0.2) !important;
}
.theme-default-dark .deep-purple-alpha {
  background: rgba(209, 196, 233, 0.2);
  color: #d1c4e9;
}
.theme-default-dark .deep-purple {
  background: #d1c4e9;
  color: rgba(0, 0, 0, 0.87);
}
.theme-default-dark .background-indigo-alpha {
  background: rgba(197, 202, 233, 0.2);
}
.theme-default-dark .indigo .ripple {
  background: rgba(197, 202, 233, 0.2);
}
.theme-default-dark .background-indigo {
  background: #c5cae9;
}
.theme-default-dark .border-color-indigo {
  border-color: #c5cae9;
}
.theme-default-dark .color-indigo {
  color: #c5cae9 !important;
}
.theme-default-dark .fill-indigo {
  fill: #c5cae9;
}
.theme-default-dark .stroke-indigo {
  stroke: #c5cae9;
}
.theme-default-dark .color-indigo-alpha {
  color: rgba(197, 202, 233, 0.2) !important;
}
.theme-default-dark .indigo-alpha {
  background: rgba(197, 202, 233, 0.2);
  color: #c5cae9;
}
.theme-default-dark .indigo {
  background: #c5cae9;
  color: rgba(0, 0, 0, 0.87);
}
.theme-default-dark .background-blue-alpha {
  background: rgba(188, 206, 244, 0.2);
}
.theme-default-dark .blue .ripple {
  background: rgba(188, 206, 244, 0.2);
}
.theme-default-dark .background-blue {
  background: #bccef4;
}
.theme-default-dark .border-color-blue {
  border-color: #bccef4;
}
.theme-default-dark .color-blue {
  color: #bccef4 !important;
}
.theme-default-dark .fill-blue {
  fill: #bccef4;
}
.theme-default-dark .stroke-blue {
  stroke: #bccef4;
}
.theme-default-dark .color-blue-alpha {
  color: rgba(188, 206, 244, 0.2) !important;
}
.theme-default-dark .blue-alpha {
  background: rgba(188, 206, 244, 0.2);
  color: #bccef4;
}
.theme-default-dark .blue {
  background: #bccef4;
  color: rgba(0, 0, 0, 0.87);
}
.theme-default-dark .background-light-blue-alpha {
  background: rgba(179, 229, 252, 0.2);
}
.theme-default-dark .light-blue .ripple {
  background: rgba(179, 229, 252, 0.2);
}
.theme-default-dark .background-light-blue {
  background: #b3e5fc;
}
.theme-default-dark .border-color-light-blue {
  border-color: #b3e5fc;
}
.theme-default-dark .color-light-blue {
  color: #b3e5fc !important;
}
.theme-default-dark .fill-light-blue {
  fill: #b3e5fc;
}
.theme-default-dark .stroke-light-blue {
  stroke: #b3e5fc;
}
.theme-default-dark .color-light-blue-alpha {
  color: rgba(179, 229, 252, 0.2) !important;
}
.theme-default-dark .light-blue-alpha {
  background: rgba(179, 229, 252, 0.2);
  color: #b3e5fc;
}
.theme-default-dark .light-blue {
  background: #b3e5fc;
  color: rgba(0, 0, 0, 0.87);
}
.theme-default-dark .background-cyan-alpha {
  background: rgba(178, 235, 242, 0.2);
}
.theme-default-dark .cyan .ripple {
  background: rgba(178, 235, 242, 0.2);
}
.theme-default-dark .background-cyan {
  background: #b2ebf2;
}
.theme-default-dark .border-color-cyan {
  border-color: #b2ebf2;
}
.theme-default-dark .color-cyan {
  color: #b2ebf2 !important;
}
.theme-default-dark .fill-cyan {
  fill: #b2ebf2;
}
.theme-default-dark .stroke-cyan {
  stroke: #b2ebf2;
}
.theme-default-dark .color-cyan-alpha {
  color: rgba(178, 235, 242, 0.2) !important;
}
.theme-default-dark .cyan-alpha {
  background: rgba(178, 235, 242, 0.2);
  color: #b2ebf2;
}
.theme-default-dark .cyan {
  background: #b2ebf2;
  color: rgba(0, 0, 0, 0.87);
}
.theme-default-dark .background-teal-alpha {
  background: rgba(178, 223, 219, 0.2);
}
.theme-default-dark .teal .ripple {
  background: rgba(178, 223, 219, 0.2);
}
.theme-default-dark .background-teal {
  background: #b2dfdb;
}
.theme-default-dark .border-color-teal {
  border-color: #b2dfdb;
}
.theme-default-dark .color-teal {
  color: #b2dfdb !important;
}
.theme-default-dark .fill-teal {
  fill: #b2dfdb;
}
.theme-default-dark .stroke-teal {
  stroke: #b2dfdb;
}
.theme-default-dark .color-teal-alpha {
  color: rgba(178, 223, 219, 0.2) !important;
}
.theme-default-dark .teal-alpha {
  background: rgba(178, 223, 219, 0.2);
  color: #b2dfdb;
}
.theme-default-dark .teal {
  background: #b2dfdb;
  color: rgba(0, 0, 0, 0.87);
}
.theme-default-dark .background-green-alpha {
  background: rgba(184, 222, 200, 0.2);
}
.theme-default-dark .green .ripple {
  background: rgba(184, 222, 200, 0.2);
}
.theme-default-dark .background-green {
  background: #b8dec8;
}
.theme-default-dark .border-color-green {
  border-color: #b8dec8;
}
.theme-default-dark .color-green {
  color: #b8dec8 !important;
}
.theme-default-dark .fill-green {
  fill: #b8dec8;
}
.theme-default-dark .stroke-green {
  stroke: #b8dec8;
}
.theme-default-dark .color-green-alpha {
  color: rgba(184, 222, 200, 0.2) !important;
}
.theme-default-dark .green-alpha {
  background: rgba(184, 222, 200, 0.2);
  color: #b8dec8;
}
.theme-default-dark .green {
  background: #b8dec8;
  color: rgba(0, 0, 0, 0.87);
}
.theme-default-dark .background-light-green-alpha {
  background: rgba(212, 244, 192, 0.2);
}
.theme-default-dark .light-green .ripple {
  background: rgba(212, 244, 192, 0.2);
}
.theme-default-dark .background-light-green {
  background: #D4F4C0;
}
.theme-default-dark .border-color-light-green {
  border-color: #D4F4C0;
}
.theme-default-dark .color-light-green {
  color: #D4F4C0 !important;
}
.theme-default-dark .fill-light-green {
  fill: #D4F4C0;
}
.theme-default-dark .stroke-light-green {
  stroke: #D4F4C0;
}
.theme-default-dark .color-light-green-alpha {
  color: rgba(212, 244, 192, 0.2) !important;
}
.theme-default-dark .light-green-alpha {
  background: rgba(212, 244, 192, 0.2);
  color: #D4F4C0;
}
.theme-default-dark .light-green {
  background: #D4F4C0;
  color: rgba(0, 0, 0, 0.87);
}
.theme-default-dark .background-lime-alpha {
  background: rgba(219, 235, 179, 0.2);
}
.theme-default-dark .lime .ripple {
  background: rgba(219, 235, 179, 0.2);
}
.theme-default-dark .background-lime {
  background: #dbebb3;
}
.theme-default-dark .border-color-lime {
  border-color: #dbebb3;
}
.theme-default-dark .color-lime {
  color: #dbebb3 !important;
}
.theme-default-dark .fill-lime {
  fill: #dbebb3;
}
.theme-default-dark .stroke-lime {
  stroke: #dbebb3;
}
.theme-default-dark .color-lime-alpha {
  color: rgba(219, 235, 179, 0.2) !important;
}
.theme-default-dark .lime-alpha {
  background: rgba(219, 235, 179, 0.2);
  color: #dbebb3;
}
.theme-default-dark .lime {
  background: #dbebb3;
  color: rgba(0, 0, 0, 0.87);
}
.theme-default-dark .background-yellow-alpha {
  background: rgba(248, 237, 179, 0.2);
}
.theme-default-dark .yellow .ripple {
  background: rgba(248, 237, 179, 0.2);
}
.theme-default-dark .background-yellow {
  background: #f8edb3;
}
.theme-default-dark .border-color-yellow {
  border-color: #f8edb3;
}
.theme-default-dark .color-yellow {
  color: #f8edb3 !important;
}
.theme-default-dark .fill-yellow {
  fill: #f8edb3;
}
.theme-default-dark .stroke-yellow {
  stroke: #f8edb3;
}
.theme-default-dark .color-yellow-alpha {
  color: rgba(248, 237, 179, 0.2) !important;
}
.theme-default-dark .yellow-alpha {
  background: rgba(248, 237, 179, 0.2);
  color: #f8edb3;
}
.theme-default-dark .yellow {
  background: #f8edb3;
  color: rgba(0, 0, 0, 0.87);
}
.theme-default-dark .background-amber-alpha {
  background: rgba(254, 228, 186, 0.2);
}
.theme-default-dark .amber .ripple {
  background: rgba(254, 228, 186, 0.2);
}
.theme-default-dark .background-amber {
  background: #fee4ba;
}
.theme-default-dark .border-color-amber {
  border-color: #fee4ba;
}
.theme-default-dark .color-amber {
  color: #fee4ba !important;
}
.theme-default-dark .fill-amber {
  fill: #fee4ba;
}
.theme-default-dark .stroke-amber {
  stroke: #fee4ba;
}
.theme-default-dark .color-amber-alpha {
  color: rgba(254, 228, 186, 0.2) !important;
}
.theme-default-dark .amber-alpha {
  background: rgba(254, 228, 186, 0.2);
  color: #fee4ba;
}
.theme-default-dark .amber {
  background: #fee4ba;
  color: rgba(0, 0, 0, 0.87);
}
.theme-default-dark .background-orange-alpha {
  background: rgba(253, 215, 185, 0.2);
}
.theme-default-dark .orange .ripple {
  background: rgba(253, 215, 185, 0.2);
}
.theme-default-dark .background-orange {
  background: #fdd7b9;
}
.theme-default-dark .border-color-orange {
  border-color: #fdd7b9;
}
.theme-default-dark .color-orange {
  color: #fdd7b9 !important;
}
.theme-default-dark .fill-orange {
  fill: #fdd7b9;
}
.theme-default-dark .stroke-orange {
  stroke: #fdd7b9;
}
.theme-default-dark .color-orange-alpha {
  color: rgba(253, 215, 185, 0.2) !important;
}
.theme-default-dark .orange-alpha {
  background: rgba(253, 215, 185, 0.2);
  color: #fdd7b9;
}
.theme-default-dark .orange {
  background: #fdd7b9;
  color: rgba(0, 0, 0, 0.87);
}
.theme-default-dark .background-deep-orange-alpha {
  background: rgba(255, 204, 188, 0.2);
}
.theme-default-dark .deep-orange .ripple {
  background: rgba(255, 204, 188, 0.2);
}
.theme-default-dark .background-deep-orange {
  background: #ffccbc;
}
.theme-default-dark .border-color-deep-orange {
  border-color: #ffccbc;
}
.theme-default-dark .color-deep-orange {
  color: #ffccbc !important;
}
.theme-default-dark .fill-deep-orange {
  fill: #ffccbc;
}
.theme-default-dark .stroke-deep-orange {
  stroke: #ffccbc;
}
.theme-default-dark .color-deep-orange-alpha {
  color: rgba(255, 204, 188, 0.2) !important;
}
.theme-default-dark .deep-orange-alpha {
  background: rgba(255, 204, 188, 0.2);
  color: #ffccbc;
}
.theme-default-dark .deep-orange {
  background: #ffccbc;
  color: rgba(0, 0, 0, 0.87);
}
.theme-default-dark .background-brown-alpha {
  background: rgba(215, 204, 200, 0.2);
}
.theme-default-dark .brown .ripple {
  background: rgba(215, 204, 200, 0.2);
}
.theme-default-dark .background-brown {
  background: #d7ccc8;
}
.theme-default-dark .border-color-brown {
  border-color: #d7ccc8;
}
.theme-default-dark .color-brown {
  color: #d7ccc8 !important;
}
.theme-default-dark .fill-brown {
  fill: #d7ccc8;
}
.theme-default-dark .stroke-brown {
  stroke: #d7ccc8;
}
.theme-default-dark .color-brown-alpha {
  color: rgba(215, 204, 200, 0.2) !important;
}
.theme-default-dark .brown-alpha {
  background: rgba(215, 204, 200, 0.2);
  color: #d7ccc8;
}
.theme-default-dark .brown {
  background: #d7ccc8;
  color: rgba(0, 0, 0, 0.87);
}
.theme-default-dark .background-grey-alpha {
  background: rgba(222, 227, 230, 0.2);
}
.theme-default-dark .grey .ripple {
  background: rgba(222, 227, 230, 0.2);
}
.theme-default-dark .background-grey {
  background: #DEE3E6;
}
.theme-default-dark .border-color-grey {
  border-color: #DEE3E6;
}
.theme-default-dark .color-grey {
  color: #DEE3E6 !important;
}
.theme-default-dark .fill-grey {
  fill: #DEE3E6;
}
.theme-default-dark .stroke-grey {
  stroke: #DEE3E6;
}
.theme-default-dark .color-grey-alpha {
  color: rgba(222, 227, 230, 0.2) !important;
}
.theme-default-dark .grey-alpha {
  background: rgba(222, 227, 230, 0.2);
  color: #DEE3E6;
}
.theme-default-dark .grey {
  background: #DEE3E6;
  color: rgba(0, 0, 0, 0.87);
}
.theme-default-dark .background-blue-grey-alpha {
  background: rgba(226, 231, 233, 0.2);
}
.theme-default-dark .blue-grey .ripple {
  background: rgba(226, 231, 233, 0.2);
}
.theme-default-dark .background-blue-grey {
  background: #E2E7E9;
}
.theme-default-dark .border-color-blue-grey {
  border-color: #E2E7E9;
}
.theme-default-dark .color-blue-grey {
  color: #E2E7E9 !important;
}
.theme-default-dark .fill-blue-grey {
  fill: #E2E7E9;
}
.theme-default-dark .stroke-blue-grey {
  stroke: #E2E7E9;
}
.theme-default-dark .color-blue-grey-alpha {
  color: rgba(226, 231, 233, 0.2) !important;
}
.theme-default-dark .blue-grey-alpha {
  background: rgba(226, 231, 233, 0.2);
  color: #E2E7E9;
}
.theme-default-dark .blue-grey {
  background: #E2E7E9;
  color: rgba(0, 0, 0, 0.87);
}
.theme-default-dark .background-primary-alpha {
  background: rgba(138, 158, 168, 0.2);
}
.theme-default-dark .primary .ripple {
  background: rgba(138, 158, 168, 0.2);
}
.theme-default-dark .background-primary {
  background: #8A9EA8;
}
.theme-default-dark .border-color-primary {
  border-color: #8A9EA8;
}
.theme-default-dark .color-primary {
  color: #8A9EA8 !important;
}
.theme-default-dark .fill-primary {
  fill: #8A9EA8;
}
.theme-default-dark .stroke-primary {
  stroke: #8A9EA8;
}
.theme-default-dark .color-primary-alpha {
  color: rgba(138, 158, 168, 0.2) !important;
}
.theme-default-dark .primary-alpha {
  background: rgba(138, 158, 168, 0.2);
  color: #8A9EA8;
}
.theme-default-dark .primary {
  background: #8A9EA8;
  color: white;
}
.theme-default-dark .background-accent-alpha {
  background: rgba(41, 121, 255, 0.2);
}
.theme-default-dark .accent .ripple {
  background: rgba(41, 121, 255, 0.2);
}
.theme-default-dark .background-accent {
  background: #2979ff;
}
.theme-default-dark .border-color-accent {
  border-color: #2979ff;
}
.theme-default-dark .color-accent {
  color: #2979ff !important;
}
.theme-default-dark .fill-accent {
  fill: #2979ff;
}
.theme-default-dark .stroke-accent {
  stroke: #2979ff;
}
.theme-default-dark .color-accent-alpha {
  color: rgba(41, 121, 255, 0.2) !important;
}
.theme-default-dark .accent-alpha {
  background: rgba(41, 121, 255, 0.2);
  color: #2979ff;
}
.theme-default-dark .accent {
  background: #2979ff;
  color: white;
}
.theme-default-dark .background-warn-alpha {
  background: rgba(242, 157, 157, 0.2);
}
.theme-default-dark .warn .ripple {
  background: rgba(242, 157, 157, 0.2);
}
.theme-default-dark .background-warn {
  background: #f29d9d;
}
.theme-default-dark .border-color-warn {
  border-color: #f29d9d;
}
.theme-default-dark .color-warn {
  color: #f29d9d !important;
}
.theme-default-dark .fill-warn {
  fill: #f29d9d;
}
.theme-default-dark .stroke-warn {
  stroke: #f29d9d;
}
.theme-default-dark .color-warn-alpha {
  color: rgba(242, 157, 157, 0.2) !important;
}
.theme-default-dark .warn-alpha {
  background: rgba(242, 157, 157, 0.2);
  color: #f29d9d;
}
.theme-default-dark .warn {
  background: #f29d9d;
  color: rgba(0, 0, 0, 0.87);
}
.theme-default-dark .background-disabled-alpha {
  background: rgba(10, 10, 10, 0.5);
}
.theme-default-dark .disabled .ripple {
  background: rgba(10, 10, 10, 0.5);
}
.theme-default-dark .background-disabled {
  background: #292929;
}
.theme-default-dark .border-color-disabled {
  border-color: #292929;
}
.theme-default-dark .color-disabled {
  color: #292929 !important;
}
.theme-default-dark .fill-disabled {
  fill: #292929;
}
.theme-default-dark .stroke-disabled {
  stroke: #292929;
}
.theme-default-dark .color-disabled-alpha {
  color: rgba(10, 10, 10, 0.5) !important;
}
.theme-default-dark .disabled-alpha {
  background: rgba(10, 10, 10, 0.5);
  color: #292929;
}
.theme-default-dark .disabled {
  background: #292929;
  color: #21282C;
}
.theme-default-dark .background-basic-alpha {
  background: rgba(226, 231, 233, 0.2);
}
.theme-default-dark .basic .ripple {
  background: rgba(226, 231, 233, 0.2);
}
.theme-default-dark .background-basic {
  background: #141414;
}
.theme-default-dark .border-color-basic {
  border-color: #E2E7E9;
}
.theme-default-dark .color-basic {
  color: #E2E7E9 !important;
}
.theme-default-dark .fill-basic {
  fill: #141414;
}
.theme-default-dark .stroke-basic {
  stroke: #E2E7E9;
}
.theme-default-dark .color-basic-alpha {
  color: rgba(226, 231, 233, 0.2) !important;
}
.theme-default-dark .basic-alpha {
  background: rgba(226, 231, 233, 0.2);
  color: #E2E7E9;
}
.theme-default-dark .basic {
  background: #141414;
  color: #E2E7E9;
}
.theme-default-dark .color-unset {
  color: unset;
}
.theme-default-dark .background-transparent {
  background: transparent;
}
.theme-default-dark .color-fg,
.theme-default-dark .color-base,
.theme-default-dark .color-text {
  color: #E2E7E9 !important;
}
.theme-default-dark .color-fg-inverse,
.theme-default-dark .color-base-inverse,
.theme-default-dark .color-text-inverse {
  color: #21282C !important;
}
.theme-default-dark .color-surface {
  color: #141414 !important;
}
.theme-default-dark .color-surface-alpha {
  color: rgba(20, 20, 20, 0.5) !important;
}
.theme-default-dark .color-placeholder {
  color: #DEE3E6 !important;
}
.theme-default-dark .color-placeholder-alpha {
  background: rgba(222, 227, 230, 0.2) !important;
}
.theme-default-dark .color-label {
  color: #E2E7E9 !important;
}
.theme-default-dark .color-disabled {
  color: #292929 !important;
}
.theme-default-dark .color-disabled-icon {
  color: #21282C !important;
}
.theme-default-dark .border-color-bg {
  border-color: #0A0A0A !important;
}
.theme-default-dark .border-color-bg-alpha {
  border-color: rgba(10, 10, 10, 0.5) !important;
}
.theme-default-dark .border-color-bg-inverse {
  border-color: #FFFFFF !important;
}
.theme-default-dark .border-color-bg-alpha-inverse {
  border-color: rgba(255, 255, 255, 0.5) !important;
}
.theme-default-dark .border-color-surface-inverse {
  border-color: #FFFFFF !important;
}
.theme-default-dark .border-color-surface-alpha-inverse {
  border-color: rgba(255, 255, 255, 0.5) !important;
}
.theme-default-dark .border-color-fg,
.theme-default-dark .border-color-base,
.theme-default-dark .border-color-text {
  border-color: #E2E7E9 !important;
}
.theme-default-dark .border-color-fg-inverse,
.theme-default-dark .border-color-base-inverse,
.theme-default-dark .border-color-text-inverse {
  border-color: #21282C !important;
}
.theme-default-dark .border-color-surface {
  border-color: #141414 !important;
}
.theme-default-dark .border-color-surface-alpha {
  border-color: rgba(20, 20, 20, 0.5) !important;
}
.theme-default-dark .border-color-placeholder {
  border-color: #DEE3E6 !important;
}
.theme-default-dark .border-color-placeholder-alpha {
  background: rgba(222, 227, 230, 0.2) !important;
}
.theme-default-dark .border-color-label {
  border-color: #E2E7E9 !important;
}
.theme-default-dark .border-color-disabled {
  border-color: #292929 !important;
}
.theme-default-dark .border-color-disabled-icon {
  border-color: #21282C !important;
}
.theme-default-dark .background-bg {
  background: #0A0A0A !important;
}
.theme-default-dark .background-bg-alpha {
  background: rgba(10, 10, 10, 0.5) !important;
}
.theme-default-dark .background-bg-inverse {
  background: #FFFFFF !important;
}
.theme-default-dark .background-bg-alpha-inverse {
  background: rgba(255, 255, 255, 0.5) !important;
}
.theme-default-dark .background-surface-inverse {
  background: #FFFFFF !important;
}
.theme-default-dark .background-surface-alpha-inverse {
  background: rgba(255, 255, 255, 0.5) !important;
}
.theme-default-dark .background-fg,
.theme-default-dark .background-base,
.theme-default-dark .background-text {
  background: #E2E7E9 !important;
}
.theme-default-dark .background-fg-inverse,
.theme-default-dark .background-base-inverse,
.theme-default-dark .background-text-inverse {
  background: #21282C !important;
}
.theme-default-dark .background-surface {
  background: #141414 !important;
}
.theme-default-dark .background-surface-alpha {
  background: rgba(20, 20, 20, 0.5) !important;
}
.theme-default-dark .background-placeholder {
  background: #DEE3E6 !important;
}
.theme-default-dark .background-placeholder-alpha {
  background: rgba(222, 227, 230, 0.2) !important;
}
.theme-default-dark .background-label {
  background: #E2E7E9 !important;
}
.theme-default-dark .background-disabled {
  background: #292929 !important;
}
.theme-default-dark .background-disabled-icon {
  background: #21282C !important;
}
.theme-default-dark .fill-bg {
  fill: #0A0A0A !important;
}
.theme-default-dark .fill-bg-alpha {
  fill: rgba(10, 10, 10, 0.5) !important;
}
.theme-default-dark .fill-bg-inverse {
  fill: #FFFFFF !important;
}
.theme-default-dark .fill-bg-alpha-inverse {
  fill: rgba(255, 255, 255, 0.5) !important;
}
.theme-default-dark .fill-surface-inverse {
  fill: #FFFFFF !important;
}
.theme-default-dark .fill-surface-alpha-inverse {
  fill: rgba(255, 255, 255, 0.5) !important;
}
.theme-default-dark .fill-fg,
.theme-default-dark .fill-base,
.theme-default-dark .fill-text {
  fill: #E2E7E9 !important;
}
.theme-default-dark .fill-fg-inverse,
.theme-default-dark .fill-base-inverse,
.theme-default-dark .fill-text-inverse {
  fill: #21282C !important;
}
.theme-default-dark .fill-surface {
  fill: #141414 !important;
}
.theme-default-dark .fill-surface-alpha {
  fill: rgba(20, 20, 20, 0.5) !important;
}
.theme-default-dark .fill-placeholder {
  fill: #DEE3E6 !important;
}
.theme-default-dark .fill-placeholder-alpha {
  background: rgba(222, 227, 230, 0.2) !important;
}
.theme-default-dark .fill-label {
  fill: #E2E7E9 !important;
}
.theme-default-dark .fill-disabled {
  fill: #292929 !important;
}
.theme-default-dark .fill-disabled-icon {
  fill: #21282C !important;
}
.theme-default-dark .stroke-bg {
  stroke: #0A0A0A !important;
}
.theme-default-dark .stroke-bg-alpha {
  stroke: rgba(10, 10, 10, 0.5) !important;
}
.theme-default-dark .stroke-bg-inverse {
  stroke: #FFFFFF !important;
}
.theme-default-dark .stroke-bg-alpha-inverse {
  stroke: rgba(255, 255, 255, 0.5) !important;
}
.theme-default-dark .stroke-surface-inverse {
  stroke: #FFFFFF !important;
}
.theme-default-dark .stroke-surface-alpha-inverse {
  stroke: rgba(255, 255, 255, 0.5) !important;
}
.theme-default-dark .stroke-fg,
.theme-default-dark .stroke-base,
.theme-default-dark .stroke-text {
  stroke: #E2E7E9 !important;
}
.theme-default-dark .stroke-fg-inverse,
.theme-default-dark .stroke-base-inverse,
.theme-default-dark .stroke-text-inverse {
  stroke: #21282C !important;
}
.theme-default-dark .stroke-surface {
  stroke: #141414 !important;
}
.theme-default-dark .stroke-surface-alpha {
  stroke: rgba(20, 20, 20, 0.5) !important;
}
.theme-default-dark .stroke-placeholder {
  stroke: #DEE3E6 !important;
}
.theme-default-dark .stroke-placeholder-alpha {
  background: rgba(222, 227, 230, 0.2) !important;
}
.theme-default-dark .stroke-label {
  stroke: #E2E7E9 !important;
}
.theme-default-dark .stroke-disabled {
  stroke: #292929 !important;
}
.theme-default-dark .stroke-disabled-icon {
  stroke: #21282C !important;
}
.theme-default-dark .red-50 {
  background-color: #fce7e7 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .red-50[disabled] {
  background-color: rgba(252, 231, 231, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .red-50-bg {
  background-color: #fce7e7 !important;
}
.theme-default-dark .red-50-fg {
  color: #fce7e7 !important;
}
.theme-default-dark .red-100 {
  background-color: #f7c4c4 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .red-100[disabled] {
  background-color: rgba(247, 196, 196, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .red-100-bg {
  background-color: #f7c4c4 !important;
}
.theme-default-dark .red-100-fg {
  color: #f7c4c4 !important;
}
.theme-default-dark .red-200 {
  background-color: #f29d9d !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .red-200[disabled] {
  background-color: rgba(242, 157, 157, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .red-200-bg {
  background-color: #f29d9d !important;
}
.theme-default-dark .red-200-fg {
  color: #f29d9d !important;
}
.theme-default-dark .red-300 {
  background-color: #ed7575 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .red-300[disabled] {
  background-color: rgba(237, 117, 117, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .red-300-bg {
  background-color: #ed7575 !important;
}
.theme-default-dark .red-300-fg {
  color: #ed7575 !important;
}
.theme-default-dark .red-400 {
  background-color: #e95858 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .red-400[disabled] {
  background-color: rgba(233, 88, 88, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .red-400-bg {
  background-color: #e95858 !important;
}
.theme-default-dark .red-400-fg {
  color: #e95858 !important;
}
.theme-default-dark .red-500 {
  background-color: #e53a3a !important;
  color: white !important;
}
.theme-default-dark .red-500[disabled] {
  background-color: rgba(229, 58, 58, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .red-500-bg {
  background-color: #e53a3a !important;
}
.theme-default-dark .red-500-fg {
  color: #e53a3a !important;
}
.theme-default-dark .red-bg {
  background-color: #e53a3a !important;
}
.theme-default-dark .red-fg {
  color: #e53a3a !important;
}
.theme-default-dark .red-600 {
  background-color: #e23434 !important;
  color: white !important;
}
.theme-default-dark .red-600[disabled] {
  background-color: rgba(226, 52, 52, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .red-600-bg {
  background-color: #e23434 !important;
}
.theme-default-dark .red-600-fg {
  color: #e23434 !important;
}
.theme-default-dark .red-700 {
  background-color: #de2c2c !important;
  color: white !important;
}
.theme-default-dark .red-700[disabled] {
  background-color: rgba(222, 44, 44, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .red-700-bg {
  background-color: #de2c2c !important;
}
.theme-default-dark .red-700-fg {
  color: #de2c2c !important;
}
.theme-default-dark .red-800 {
  background-color: #da2525 !important;
  color: white !important;
}
.theme-default-dark .red-800[disabled] {
  background-color: rgba(218, 37, 37, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .red-800-bg {
  background-color: #da2525 !important;
}
.theme-default-dark .red-800-fg {
  color: #da2525 !important;
}
.theme-default-dark .red-900 {
  background-color: #d31818 !important;
  color: white !important;
}
.theme-default-dark .red-900[disabled] {
  background-color: rgba(211, 24, 24, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .red-900-bg {
  background-color: #d31818 !important;
}
.theme-default-dark .red-900-fg {
  color: #d31818 !important;
}
.theme-default-dark .red-A100 {
  background-color: #ff8a80 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .red-A100[disabled] {
  background-color: rgba(255, 138, 128, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .red-A100-bg {
  background-color: #ff8a80 !important;
}
.theme-default-dark .red-A100-fg {
  color: #ff8a80 !important;
}
.theme-default-dark .red-A200 {
  background-color: #ff5252 !important;
  color: white !important;
}
.theme-default-dark .red-A200[disabled] {
  background-color: rgba(255, 82, 82, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .red-A200-bg {
  background-color: #ff5252 !important;
}
.theme-default-dark .red-A200-fg {
  color: #ff5252 !important;
}
.theme-default-dark .red-A400 {
  background-color: #ff1744 !important;
  color: white !important;
}
.theme-default-dark .red-A400[disabled] {
  background-color: rgba(255, 23, 68, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .red-A400-bg {
  background-color: #ff1744 !important;
}
.theme-default-dark .red-A400-fg {
  color: #ff1744 !important;
}
.theme-default-dark .red-A700 {
  background-color: #d50000 !important;
  color: white !important;
}
.theme-default-dark .red-A700[disabled] {
  background-color: rgba(213, 0, 0, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .red-A700-bg {
  background-color: #d50000 !important;
}
.theme-default-dark .red-A700-fg {
  color: #d50000 !important;
}
.theme-default-dark .pink-50 {
  background-color: #fce4ec !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .pink-50[disabled] {
  background-color: rgba(252, 228, 236, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .pink-50-bg {
  background-color: #fce4ec !important;
}
.theme-default-dark .pink-50-fg {
  color: #fce4ec !important;
}
.theme-default-dark .pink-100 {
  background-color: #f8bbd0 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .pink-100[disabled] {
  background-color: rgba(248, 187, 208, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .pink-100-bg {
  background-color: #f8bbd0 !important;
}
.theme-default-dark .pink-100-fg {
  color: #f8bbd0 !important;
}
.theme-default-dark .pink-200 {
  background-color: #f48fb1 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .pink-200[disabled] {
  background-color: rgba(244, 143, 177, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .pink-200-bg {
  background-color: #f48fb1 !important;
}
.theme-default-dark .pink-200-fg {
  color: #f48fb1 !important;
}
.theme-default-dark .pink-300 {
  background-color: #f06e9a !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .pink-300[disabled] {
  background-color: rgba(240, 110, 154, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .pink-300-bg {
  background-color: #f06e9a !important;
}
.theme-default-dark .pink-300-fg {
  color: #f06e9a !important;
}
.theme-default-dark .pink-400 {
  background-color: #ec407a !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .pink-400[disabled] {
  background-color: rgba(236, 64, 122, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .pink-400-bg {
  background-color: #ec407a !important;
}
.theme-default-dark .pink-400-fg {
  color: #ec407a !important;
}
.theme-default-dark .pink-500 {
  background-color: #e91e63 !important;
  color: white !important;
}
.theme-default-dark .pink-500[disabled] {
  background-color: rgba(233, 30, 99, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .pink-500-bg {
  background-color: #e91e63 !important;
}
.theme-default-dark .pink-500-fg {
  color: #e91e63 !important;
}
.theme-default-dark .pink-bg {
  background-color: #e91e63 !important;
}
.theme-default-dark .pink-fg {
  color: #e91e63 !important;
}
.theme-default-dark .pink-600 {
  background-color: #d81b60 !important;
  color: white !important;
}
.theme-default-dark .pink-600[disabled] {
  background-color: rgba(216, 27, 96, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .pink-600-bg {
  background-color: #d81b60 !important;
}
.theme-default-dark .pink-600-fg {
  color: #d81b60 !important;
}
.theme-default-dark .pink-700 {
  background-color: #c2185b !important;
  color: white !important;
}
.theme-default-dark .pink-700[disabled] {
  background-color: rgba(194, 24, 91, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .pink-700-bg {
  background-color: #c2185b !important;
}
.theme-default-dark .pink-700-fg {
  color: #c2185b !important;
}
.theme-default-dark .pink-800 {
  background-color: #ad1457 !important;
  color: white !important;
}
.theme-default-dark .pink-800[disabled] {
  background-color: rgba(173, 20, 87, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .pink-800-bg {
  background-color: #ad1457 !important;
}
.theme-default-dark .pink-800-fg {
  color: #ad1457 !important;
}
.theme-default-dark .pink-900 {
  background-color: #880e4f !important;
  color: white !important;
}
.theme-default-dark .pink-900[disabled] {
  background-color: rgba(136, 14, 79, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .pink-900-bg {
  background-color: #880e4f !important;
}
.theme-default-dark .pink-900-fg {
  color: #880e4f !important;
}
.theme-default-dark .pink-A100 {
  background-color: #ff80ab !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .pink-A100[disabled] {
  background-color: rgba(255, 128, 171, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .pink-A100-bg {
  background-color: #ff80ab !important;
}
.theme-default-dark .pink-A100-fg {
  color: #ff80ab !important;
}
.theme-default-dark .pink-A200 {
  background-color: #ff4081 !important;
  color: white !important;
}
.theme-default-dark .pink-A200[disabled] {
  background-color: rgba(255, 64, 129, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .pink-A200-bg {
  background-color: #ff4081 !important;
}
.theme-default-dark .pink-A200-fg {
  color: #ff4081 !important;
}
.theme-default-dark .pink-A400 {
  background-color: #f50057 !important;
  color: white !important;
}
.theme-default-dark .pink-A400[disabled] {
  background-color: rgba(245, 0, 87, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .pink-A400-bg {
  background-color: #f50057 !important;
}
.theme-default-dark .pink-A400-fg {
  color: #f50057 !important;
}
.theme-default-dark .pink-A700 {
  background-color: #c51162 !important;
  color: white !important;
}
.theme-default-dark .pink-A700[disabled] {
  background-color: rgba(197, 17, 98, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .pink-A700-bg {
  background-color: #c51162 !important;
}
.theme-default-dark .pink-A700-fg {
  color: #c51162 !important;
}
.theme-default-dark .purple-50 {
  background-color: #f3e6ff !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .purple-50[disabled] {
  background-color: rgba(243, 230, 255, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .purple-50-bg {
  background-color: #f3e6ff !important;
}
.theme-default-dark .purple-50-fg {
  color: #f3e6ff !important;
}
.theme-default-dark .purple-100 {
  background-color: #e1bee7 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .purple-100[disabled] {
  background-color: rgba(225, 190, 231, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .purple-100-bg {
  background-color: #e1bee7 !important;
}
.theme-default-dark .purple-100-fg {
  color: #e1bee7 !important;
}
.theme-default-dark .purple-200 {
  background-color: #ce93d8 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .purple-200[disabled] {
  background-color: rgba(206, 147, 216, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .purple-200-bg {
  background-color: #ce93d8 !important;
}
.theme-default-dark .purple-200-fg {
  color: #ce93d8 !important;
}
.theme-default-dark .purple-300 {
  background-color: #ba68c8 !important;
  color: white !important;
}
.theme-default-dark .purple-300[disabled] {
  background-color: rgba(186, 104, 200, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .purple-300-bg {
  background-color: #ba68c8 !important;
}
.theme-default-dark .purple-300-fg {
  color: #ba68c8 !important;
}
.theme-default-dark .purple-400 {
  background-color: #ab47bc !important;
  color: white !important;
}
.theme-default-dark .purple-400[disabled] {
  background-color: rgba(171, 71, 188, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .purple-400-bg {
  background-color: #ab47bc !important;
}
.theme-default-dark .purple-400-fg {
  color: #ab47bc !important;
}
.theme-default-dark .purple-500 {
  background-color: #9c27b0 !important;
  color: white !important;
}
.theme-default-dark .purple-500[disabled] {
  background-color: rgba(156, 39, 176, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .purple-500-bg {
  background-color: #9c27b0 !important;
}
.theme-default-dark .purple-500-fg {
  color: #9c27b0 !important;
}
.theme-default-dark .purple-bg {
  background-color: #9c27b0 !important;
}
.theme-default-dark .purple-fg {
  color: #9c27b0 !important;
}
.theme-default-dark .purple-600 {
  background-color: #8e24aa !important;
  color: white !important;
}
.theme-default-dark .purple-600[disabled] {
  background-color: rgba(142, 36, 170, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .purple-600-bg {
  background-color: #8e24aa !important;
}
.theme-default-dark .purple-600-fg {
  color: #8e24aa !important;
}
.theme-default-dark .purple-700 {
  background-color: #7b1fa2 !important;
  color: white !important;
}
.theme-default-dark .purple-700[disabled] {
  background-color: rgba(123, 31, 162, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .purple-700-bg {
  background-color: #7b1fa2 !important;
}
.theme-default-dark .purple-700-fg {
  color: #7b1fa2 !important;
}
.theme-default-dark .purple-800 {
  background-color: #6a1b9a !important;
  color: white !important;
}
.theme-default-dark .purple-800[disabled] {
  background-color: rgba(106, 27, 154, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .purple-800-bg {
  background-color: #6a1b9a !important;
}
.theme-default-dark .purple-800-fg {
  color: #6a1b9a !important;
}
.theme-default-dark .purple-900 {
  background-color: #4a148c !important;
  color: white !important;
}
.theme-default-dark .purple-900[disabled] {
  background-color: rgba(74, 20, 140, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .purple-900-bg {
  background-color: #4a148c !important;
}
.theme-default-dark .purple-900-fg {
  color: #4a148c !important;
}
.theme-default-dark .purple-A100 {
  background-color: #ea80fc !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .purple-A100[disabled] {
  background-color: rgba(234, 128, 252, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .purple-A100-bg {
  background-color: #ea80fc !important;
}
.theme-default-dark .purple-A100-fg {
  color: #ea80fc !important;
}
.theme-default-dark .purple-A200 {
  background-color: #e040fb !important;
  color: white !important;
}
.theme-default-dark .purple-A200[disabled] {
  background-color: rgba(224, 64, 251, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .purple-A200-bg {
  background-color: #e040fb !important;
}
.theme-default-dark .purple-A200-fg {
  color: #e040fb !important;
}
.theme-default-dark .purple-A400 {
  background-color: #d500f9 !important;
  color: white !important;
}
.theme-default-dark .purple-A400[disabled] {
  background-color: rgba(213, 0, 249, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .purple-A400-bg {
  background-color: #d500f9 !important;
}
.theme-default-dark .purple-A400-fg {
  color: #d500f9 !important;
}
.theme-default-dark .purple-A700 {
  background-color: #aa00ff !important;
  color: white !important;
}
.theme-default-dark .purple-A700[disabled] {
  background-color: rgba(170, 0, 255, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .purple-A700-bg {
  background-color: #aa00ff !important;
}
.theme-default-dark .purple-A700-fg {
  color: #aa00ff !important;
}
.theme-default-dark .deep-purple-50 {
  background-color: #ede7f6 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .deep-purple-50[disabled] {
  background-color: rgba(237, 231, 246, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .deep-purple-50-bg {
  background-color: #ede7f6 !important;
}
.theme-default-dark .deep-purple-50-fg {
  color: #ede7f6 !important;
}
.theme-default-dark .deep-purple-100 {
  background-color: #d1c4e9 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .deep-purple-100[disabled] {
  background-color: rgba(209, 196, 233, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .deep-purple-100-bg {
  background-color: #d1c4e9 !important;
}
.theme-default-dark .deep-purple-100-fg {
  color: #d1c4e9 !important;
}
.theme-default-dark .deep-purple-200 {
  background-color: #b39ddb !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .deep-purple-200[disabled] {
  background-color: rgba(179, 157, 219, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .deep-purple-200-bg {
  background-color: #b39ddb !important;
}
.theme-default-dark .deep-purple-200-fg {
  color: #b39ddb !important;
}
.theme-default-dark .deep-purple-300 {
  background-color: #9575cd !important;
  color: white !important;
}
.theme-default-dark .deep-purple-300[disabled] {
  background-color: rgba(149, 117, 205, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .deep-purple-300-bg {
  background-color: #9575cd !important;
}
.theme-default-dark .deep-purple-300-fg {
  color: #9575cd !important;
}
.theme-default-dark .deep-purple-400 {
  background-color: #7e57c2 !important;
  color: white !important;
}
.theme-default-dark .deep-purple-400[disabled] {
  background-color: rgba(126, 87, 194, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .deep-purple-400-bg {
  background-color: #7e57c2 !important;
}
.theme-default-dark .deep-purple-400-fg {
  color: #7e57c2 !important;
}
.theme-default-dark .deep-purple-500 {
  background-color: #673ab7 !important;
  color: white !important;
}
.theme-default-dark .deep-purple-500[disabled] {
  background-color: rgba(103, 58, 183, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .deep-purple-500-bg {
  background-color: #673ab7 !important;
}
.theme-default-dark .deep-purple-500-fg {
  color: #673ab7 !important;
}
.theme-default-dark .deep-purple-bg {
  background-color: #673ab7 !important;
}
.theme-default-dark .deep-purple-fg {
  color: #673ab7 !important;
}
.theme-default-dark .deep-purple-600 {
  background-color: #5e35b1 !important;
  color: white !important;
}
.theme-default-dark .deep-purple-600[disabled] {
  background-color: rgba(94, 53, 177, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .deep-purple-600-bg {
  background-color: #5e35b1 !important;
}
.theme-default-dark .deep-purple-600-fg {
  color: #5e35b1 !important;
}
.theme-default-dark .deep-purple-700 {
  background-color: #512da8 !important;
  color: white !important;
}
.theme-default-dark .deep-purple-700[disabled] {
  background-color: rgba(81, 45, 168, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .deep-purple-700-bg {
  background-color: #512da8 !important;
}
.theme-default-dark .deep-purple-700-fg {
  color: #512da8 !important;
}
.theme-default-dark .deep-purple-800 {
  background-color: #4527a0 !important;
  color: white !important;
}
.theme-default-dark .deep-purple-800[disabled] {
  background-color: rgba(69, 39, 160, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .deep-purple-800-bg {
  background-color: #4527a0 !important;
}
.theme-default-dark .deep-purple-800-fg {
  color: #4527a0 !important;
}
.theme-default-dark .deep-purple-900 {
  background-color: #311b92 !important;
  color: white !important;
}
.theme-default-dark .deep-purple-900[disabled] {
  background-color: rgba(49, 27, 146, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .deep-purple-900-bg {
  background-color: #311b92 !important;
}
.theme-default-dark .deep-purple-900-fg {
  color: #311b92 !important;
}
.theme-default-dark .deep-purple-A100 {
  background-color: #cf97ff !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .deep-purple-A100[disabled] {
  background-color: rgba(207, 151, 255, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .deep-purple-A100-bg {
  background-color: #cf97ff !important;
}
.theme-default-dark .deep-purple-A100-fg {
  color: #cf97ff !important;
}
.theme-default-dark .deep-purple-A200 {
  background-color: #be73ff !important;
  color: white !important;
}
.theme-default-dark .deep-purple-A200[disabled] {
  background-color: rgba(190, 115, 255, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .deep-purple-A200-bg {
  background-color: #be73ff !important;
}
.theme-default-dark .deep-purple-A200-fg {
  color: #be73ff !important;
}
.theme-default-dark .deep-purple-A400 {
  background-color: #9f2eff !important;
  color: white !important;
}
.theme-default-dark .deep-purple-A400[disabled] {
  background-color: rgba(159, 46, 255, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .deep-purple-A400-bg {
  background-color: #9f2eff !important;
}
.theme-default-dark .deep-purple-A400-fg {
  color: #9f2eff !important;
}
.theme-default-dark .deep-purple-A700 {
  background-color: #7212ff !important;
  color: white !important;
}
.theme-default-dark .deep-purple-A700[disabled] {
  background-color: rgba(114, 18, 255, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .deep-purple-A700-bg {
  background-color: #7212ff !important;
}
.theme-default-dark .deep-purple-A700-fg {
  color: #7212ff !important;
}
.theme-default-dark .indigo-50 {
  background-color: #e8eaf6 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .indigo-50[disabled] {
  background-color: rgba(232, 234, 246, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .indigo-50-bg {
  background-color: #e8eaf6 !important;
}
.theme-default-dark .indigo-50-fg {
  color: #e8eaf6 !important;
}
.theme-default-dark .indigo-100 {
  background-color: #c5cae9 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .indigo-100[disabled] {
  background-color: rgba(197, 202, 233, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .indigo-100-bg {
  background-color: #c5cae9 !important;
}
.theme-default-dark .indigo-100-fg {
  color: #c5cae9 !important;
}
.theme-default-dark .indigo-200 {
  background-color: #9fa8da !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .indigo-200[disabled] {
  background-color: rgba(159, 168, 218, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .indigo-200-bg {
  background-color: #9fa8da !important;
}
.theme-default-dark .indigo-200-fg {
  color: #9fa8da !important;
}
.theme-default-dark .indigo-300 {
  background-color: #7986cb !important;
  color: white !important;
}
.theme-default-dark .indigo-300[disabled] {
  background-color: rgba(121, 134, 203, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .indigo-300-bg {
  background-color: #7986cb !important;
}
.theme-default-dark .indigo-300-fg {
  color: #7986cb !important;
}
.theme-default-dark .indigo-400 {
  background-color: #5c6bc0 !important;
  color: white !important;
}
.theme-default-dark .indigo-400[disabled] {
  background-color: rgba(92, 107, 192, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .indigo-400-bg {
  background-color: #5c6bc0 !important;
}
.theme-default-dark .indigo-400-fg {
  color: #5c6bc0 !important;
}
.theme-default-dark .indigo-500 {
  background-color: #3f51b5 !important;
  color: white !important;
}
.theme-default-dark .indigo-500[disabled] {
  background-color: rgba(63, 81, 181, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .indigo-500-bg {
  background-color: #3f51b5 !important;
}
.theme-default-dark .indigo-500-fg {
  color: #3f51b5 !important;
}
.theme-default-dark .indigo-bg {
  background-color: #3f51b5 !important;
}
.theme-default-dark .indigo-fg {
  color: #3f51b5 !important;
}
.theme-default-dark .indigo-600 {
  background-color: #3949ab !important;
  color: white !important;
}
.theme-default-dark .indigo-600[disabled] {
  background-color: rgba(57, 73, 171, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .indigo-600-bg {
  background-color: #3949ab !important;
}
.theme-default-dark .indigo-600-fg {
  color: #3949ab !important;
}
.theme-default-dark .indigo-700 {
  background-color: #303f9f !important;
  color: white !important;
}
.theme-default-dark .indigo-700[disabled] {
  background-color: rgba(48, 63, 159, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .indigo-700-bg {
  background-color: #303f9f !important;
}
.theme-default-dark .indigo-700-fg {
  color: #303f9f !important;
}
.theme-default-dark .indigo-800 {
  background-color: #283593 !important;
  color: white !important;
}
.theme-default-dark .indigo-800[disabled] {
  background-color: rgba(40, 53, 147, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .indigo-800-bg {
  background-color: #283593 !important;
}
.theme-default-dark .indigo-800-fg {
  color: #283593 !important;
}
.theme-default-dark .indigo-900 {
  background-color: #1a237e !important;
  color: white !important;
}
.theme-default-dark .indigo-900[disabled] {
  background-color: rgba(26, 35, 126, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .indigo-900-bg {
  background-color: #1a237e !important;
}
.theme-default-dark .indigo-900-fg {
  color: #1a237e !important;
}
.theme-default-dark .indigo-A100 {
  background-color: #8c9eff !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .indigo-A100[disabled] {
  background-color: rgba(140, 158, 255, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .indigo-A100-bg {
  background-color: #8c9eff !important;
}
.theme-default-dark .indigo-A100-fg {
  color: #8c9eff !important;
}
.theme-default-dark .indigo-A200 {
  background-color: #536dfe !important;
  color: white !important;
}
.theme-default-dark .indigo-A200[disabled] {
  background-color: rgba(83, 109, 254, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .indigo-A200-bg {
  background-color: #536dfe !important;
}
.theme-default-dark .indigo-A200-fg {
  color: #536dfe !important;
}
.theme-default-dark .indigo-A400 {
  background-color: #3d5afe !important;
  color: white !important;
}
.theme-default-dark .indigo-A400[disabled] {
  background-color: rgba(61, 90, 254, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .indigo-A400-bg {
  background-color: #3d5afe !important;
}
.theme-default-dark .indigo-A400-fg {
  color: #3d5afe !important;
}
.theme-default-dark .indigo-A700 {
  background-color: #304ffe !important;
  color: white !important;
}
.theme-default-dark .indigo-A700[disabled] {
  background-color: rgba(48, 79, 254, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .indigo-A700-bg {
  background-color: #304ffe !important;
}
.theme-default-dark .indigo-A700-fg {
  color: #304ffe !important;
}
.theme-default-dark .blue-50 {
  background-color: #e4ebfb !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .blue-50[disabled] {
  background-color: rgba(228, 235, 251, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .blue-50-bg {
  background-color: #e4ebfb !important;
}
.theme-default-dark .blue-50-fg {
  color: #e4ebfb !important;
}
.theme-default-dark .blue-100 {
  background-color: #bccef4 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .blue-100[disabled] {
  background-color: rgba(188, 206, 244, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .blue-100-bg {
  background-color: #bccef4 !important;
}
.theme-default-dark .blue-100-fg {
  color: #bccef4 !important;
}
.theme-default-dark .blue-200 {
  background-color: #8faded !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .blue-200[disabled] {
  background-color: rgba(143, 173, 237, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .blue-200-bg {
  background-color: #8faded !important;
}
.theme-default-dark .blue-200-fg {
  color: #8faded !important;
}
.theme-default-dark .blue-300 {
  background-color: #628ce5 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .blue-300[disabled] {
  background-color: rgba(98, 140, 229, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .blue-300-bg {
  background-color: #628ce5 !important;
}
.theme-default-dark .blue-300-fg {
  color: #628ce5 !important;
}
.theme-default-dark .blue-400 {
  background-color: #4074e0 !important;
  color: white !important;
}
.theme-default-dark .blue-400[disabled] {
  background-color: rgba(64, 116, 224, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .blue-400-bg {
  background-color: #4074e0 !important;
}
.theme-default-dark .blue-400-fg {
  color: #4074e0 !important;
}
.theme-default-dark .blue-500 {
  background-color: #1e5bda !important;
  color: white !important;
}
.theme-default-dark .blue-500[disabled] {
  background-color: rgba(30, 91, 218, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .blue-500-bg {
  background-color: #1e5bda !important;
}
.theme-default-dark .blue-500-fg {
  color: #1e5bda !important;
}
.theme-default-dark .blue-bg {
  background-color: #1e5bda !important;
}
.theme-default-dark .blue-fg {
  color: #1e5bda !important;
}
.theme-default-dark .blue-600 {
  background-color: #1a53d6 !important;
  color: white !important;
}
.theme-default-dark .blue-600[disabled] {
  background-color: rgba(26, 83, 214, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .blue-600-bg {
  background-color: #1a53d6 !important;
}
.theme-default-dark .blue-600-fg {
  color: #1a53d6 !important;
}
.theme-default-dark .blue-700 {
  background-color: #1649d0 !important;
  color: white !important;
}
.theme-default-dark .blue-700[disabled] {
  background-color: rgba(22, 73, 208, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .blue-700-bg {
  background-color: #1649d0 !important;
}
.theme-default-dark .blue-700-fg {
  color: #1649d0 !important;
}
.theme-default-dark .blue-800 {
  background-color: #1240cb !important;
  color: white !important;
}
.theme-default-dark .blue-800[disabled] {
  background-color: rgba(18, 64, 203, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .blue-800-bg {
  background-color: #1240cb !important;
}
.theme-default-dark .blue-800-fg {
  color: #1240cb !important;
}
.theme-default-dark .blue-900 {
  background-color: #0a2fc2 !important;
  color: white !important;
}
.theme-default-dark .blue-900[disabled] {
  background-color: rgba(10, 47, 194, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .blue-900-bg {
  background-color: #0a2fc2 !important;
}
.theme-default-dark .blue-900-fg {
  color: #0a2fc2 !important;
}
.theme-default-dark .blue-A100 {
  background-color: #82b1ff !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .blue-A100[disabled] {
  background-color: rgba(130, 177, 255, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .blue-A100-bg {
  background-color: #82b1ff !important;
}
.theme-default-dark .blue-A100-fg {
  color: #82b1ff !important;
}
.theme-default-dark .blue-A200 {
  background-color: #448aff !important;
  color: white !important;
}
.theme-default-dark .blue-A200[disabled] {
  background-color: rgba(68, 138, 255, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .blue-A200-bg {
  background-color: #448aff !important;
}
.theme-default-dark .blue-A200-fg {
  color: #448aff !important;
}
.theme-default-dark .blue-A400 {
  background-color: #2979ff !important;
  color: white !important;
}
.theme-default-dark .blue-A400[disabled] {
  background-color: rgba(41, 121, 255, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .blue-A400-bg {
  background-color: #2979ff !important;
}
.theme-default-dark .blue-A400-fg {
  color: #2979ff !important;
}
.theme-default-dark .blue-A700 {
  background-color: #2962ff !important;
  color: white !important;
}
.theme-default-dark .blue-A700[disabled] {
  background-color: rgba(41, 98, 255, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .blue-A700-bg {
  background-color: #2962ff !important;
}
.theme-default-dark .blue-A700-fg {
  color: #2962ff !important;
}
.theme-default-dark .light-blue-50 {
  background-color: #e1f5fe !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .light-blue-50[disabled] {
  background-color: rgba(225, 245, 254, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .light-blue-50-bg {
  background-color: #e1f5fe !important;
}
.theme-default-dark .light-blue-50-fg {
  color: #e1f5fe !important;
}
.theme-default-dark .light-blue-100 {
  background-color: #b3e5fc !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .light-blue-100[disabled] {
  background-color: rgba(179, 229, 252, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .light-blue-100-bg {
  background-color: #b3e5fc !important;
}
.theme-default-dark .light-blue-100-fg {
  color: #b3e5fc !important;
}
.theme-default-dark .light-blue-200 {
  background-color: #81d4fa !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .light-blue-200[disabled] {
  background-color: rgba(129, 212, 250, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .light-blue-200-bg {
  background-color: #81d4fa !important;
}
.theme-default-dark .light-blue-200-fg {
  color: #81d4fa !important;
}
.theme-default-dark .light-blue-300 {
  background-color: #4fc3f7 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .light-blue-300[disabled] {
  background-color: rgba(79, 195, 247, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .light-blue-300-bg {
  background-color: #4fc3f7 !important;
}
.theme-default-dark .light-blue-300-fg {
  color: #4fc3f7 !important;
}
.theme-default-dark .light-blue-400 {
  background-color: #29b6f6 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .light-blue-400[disabled] {
  background-color: rgba(41, 182, 246, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .light-blue-400-bg {
  background-color: #29b6f6 !important;
}
.theme-default-dark .light-blue-400-fg {
  color: #29b6f6 !important;
}
.theme-default-dark .light-blue-500 {
  background-color: #03a9f4 !important;
  color: white !important;
}
.theme-default-dark .light-blue-500[disabled] {
  background-color: rgba(3, 169, 244, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .light-blue-500-bg {
  background-color: #03a9f4 !important;
}
.theme-default-dark .light-blue-500-fg {
  color: #03a9f4 !important;
}
.theme-default-dark .light-blue-bg {
  background-color: #03a9f4 !important;
}
.theme-default-dark .light-blue-fg {
  color: #03a9f4 !important;
}
.theme-default-dark .light-blue-600 {
  background-color: #039be5 !important;
  color: white !important;
}
.theme-default-dark .light-blue-600[disabled] {
  background-color: rgba(3, 155, 229, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .light-blue-600-bg {
  background-color: #039be5 !important;
}
.theme-default-dark .light-blue-600-fg {
  color: #039be5 !important;
}
.theme-default-dark .light-blue-700 {
  background-color: #0288d1 !important;
  color: white !important;
}
.theme-default-dark .light-blue-700[disabled] {
  background-color: rgba(2, 136, 209, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .light-blue-700-bg {
  background-color: #0288d1 !important;
}
.theme-default-dark .light-blue-700-fg {
  color: #0288d1 !important;
}
.theme-default-dark .light-blue-800 {
  background-color: #0277bd !important;
  color: white !important;
}
.theme-default-dark .light-blue-800[disabled] {
  background-color: rgba(2, 119, 189, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .light-blue-800-bg {
  background-color: #0277bd !important;
}
.theme-default-dark .light-blue-800-fg {
  color: #0277bd !important;
}
.theme-default-dark .light-blue-900 {
  background-color: #01579b !important;
  color: white !important;
}
.theme-default-dark .light-blue-900[disabled] {
  background-color: rgba(1, 87, 155, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .light-blue-900-bg {
  background-color: #01579b !important;
}
.theme-default-dark .light-blue-900-fg {
  color: #01579b !important;
}
.theme-default-dark .light-blue-A100 {
  background-color: #80d8ff !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .light-blue-A100[disabled] {
  background-color: rgba(128, 216, 255, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .light-blue-A100-bg {
  background-color: #80d8ff !important;
}
.theme-default-dark .light-blue-A100-fg {
  color: #80d8ff !important;
}
.theme-default-dark .light-blue-A200 {
  background-color: #40c4ff !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .light-blue-A200[disabled] {
  background-color: rgba(64, 196, 255, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .light-blue-A200-bg {
  background-color: #40c4ff !important;
}
.theme-default-dark .light-blue-A200-fg {
  color: #40c4ff !important;
}
.theme-default-dark .light-blue-A400 {
  background-color: #33b6ff !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .light-blue-A400[disabled] {
  background-color: rgba(51, 182, 255, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .light-blue-A400-bg {
  background-color: #33b6ff !important;
}
.theme-default-dark .light-blue-A400-fg {
  color: #33b6ff !important;
}
.theme-default-dark .light-blue-A700 {
  background-color: #0091ea !important;
  color: white !important;
}
.theme-default-dark .light-blue-A700[disabled] {
  background-color: rgba(0, 145, 234, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .light-blue-A700-bg {
  background-color: #0091ea !important;
}
.theme-default-dark .light-blue-A700-fg {
  color: #0091ea !important;
}
.theme-default-dark .cyan-50 {
  background-color: #e0f7fa !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .cyan-50[disabled] {
  background-color: rgba(224, 247, 250, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .cyan-50-bg {
  background-color: #e0f7fa !important;
}
.theme-default-dark .cyan-50-fg {
  color: #e0f7fa !important;
}
.theme-default-dark .cyan-100 {
  background-color: #b2ebf2 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .cyan-100[disabled] {
  background-color: rgba(178, 235, 242, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .cyan-100-bg {
  background-color: #b2ebf2 !important;
}
.theme-default-dark .cyan-100-fg {
  color: #b2ebf2 !important;
}
.theme-default-dark .cyan-200 {
  background-color: #84e1eb !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .cyan-200[disabled] {
  background-color: rgba(132, 225, 235, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .cyan-200-bg {
  background-color: #84e1eb !important;
}
.theme-default-dark .cyan-200-fg {
  color: #84e1eb !important;
}
.theme-default-dark .cyan-300 {
  background-color: #4dd0e1 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .cyan-300[disabled] {
  background-color: rgba(77, 208, 225, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .cyan-300-bg {
  background-color: #4dd0e1 !important;
}
.theme-default-dark .cyan-300-fg {
  color: #4dd0e1 !important;
}
.theme-default-dark .cyan-400 {
  background-color: #08c3d6 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .cyan-400[disabled] {
  background-color: rgba(8, 195, 214, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .cyan-400-bg {
  background-color: #08c3d6 !important;
}
.theme-default-dark .cyan-400-fg {
  color: #08c3d6 !important;
}
.theme-default-dark .cyan-500 {
  background-color: #00bcd4 !important;
  color: white !important;
}
.theme-default-dark .cyan-500[disabled] {
  background-color: rgba(0, 188, 212, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .cyan-500-bg {
  background-color: #00bcd4 !important;
}
.theme-default-dark .cyan-500-fg {
  color: #00bcd4 !important;
}
.theme-default-dark .cyan-bg {
  background-color: #00bcd4 !important;
}
.theme-default-dark .cyan-fg {
  color: #00bcd4 !important;
}
.theme-default-dark .cyan-600 {
  background-color: #00acc1 !important;
  color: white !important;
}
.theme-default-dark .cyan-600[disabled] {
  background-color: rgba(0, 172, 193, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .cyan-600-bg {
  background-color: #00acc1 !important;
}
.theme-default-dark .cyan-600-fg {
  color: #00acc1 !important;
}
.theme-default-dark .cyan-700 {
  background-color: #02a1bc !important;
  color: white !important;
}
.theme-default-dark .cyan-700[disabled] {
  background-color: rgba(2, 161, 188, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .cyan-700-bg {
  background-color: #02a1bc !important;
}
.theme-default-dark .cyan-700-fg {
  color: #02a1bc !important;
}
.theme-default-dark .cyan-800 {
  background-color: #00838f !important;
  color: white !important;
}
.theme-default-dark .cyan-800[disabled] {
  background-color: rgba(0, 131, 143, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .cyan-800-bg {
  background-color: #00838f !important;
}
.theme-default-dark .cyan-800-fg {
  color: #00838f !important;
}
.theme-default-dark .cyan-900 {
  background-color: #006064 !important;
  color: white !important;
}
.theme-default-dark .cyan-900[disabled] {
  background-color: rgba(0, 96, 100, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .cyan-900-bg {
  background-color: #006064 !important;
}
.theme-default-dark .cyan-900-fg {
  color: #006064 !important;
}
.theme-default-dark .cyan-A100 {
  background-color: #84ffff !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .cyan-A100[disabled] {
  background-color: rgba(132, 255, 255, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .cyan-A100-bg {
  background-color: #84ffff !important;
}
.theme-default-dark .cyan-A100-fg {
  color: #84ffff !important;
}
.theme-default-dark .cyan-A200 {
  background-color: #18ffff !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .cyan-A200[disabled] {
  background-color: rgba(24, 255, 255, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .cyan-A200-bg {
  background-color: #18ffff !important;
}
.theme-default-dark .cyan-A200-fg {
  color: #18ffff !important;
}
.theme-default-dark .cyan-A400 {
  background-color: #00e5ff !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .cyan-A400[disabled] {
  background-color: rgba(0, 229, 255, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .cyan-A400-bg {
  background-color: #00e5ff !important;
}
.theme-default-dark .cyan-A400-fg {
  color: #00e5ff !important;
}
.theme-default-dark .cyan-A700 {
  background-color: #00b8d4 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .cyan-A700[disabled] {
  background-color: rgba(0, 184, 212, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .cyan-A700-bg {
  background-color: #00b8d4 !important;
}
.theme-default-dark .cyan-A700-fg {
  color: #00b8d4 !important;
}
.theme-default-dark .teal-50 {
  background-color: #e0f2f1 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .teal-50[disabled] {
  background-color: rgba(224, 242, 241, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .teal-50-bg {
  background-color: #e0f2f1 !important;
}
.theme-default-dark .teal-50-fg {
  color: #e0f2f1 !important;
}
.theme-default-dark .teal-100 {
  background-color: #b2dfdb !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .teal-100[disabled] {
  background-color: rgba(178, 223, 219, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .teal-100-bg {
  background-color: #b2dfdb !important;
}
.theme-default-dark .teal-100-fg {
  color: #b2dfdb !important;
}
.theme-default-dark .teal-200 {
  background-color: #80cbc4 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .teal-200[disabled] {
  background-color: rgba(128, 203, 196, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .teal-200-bg {
  background-color: #80cbc4 !important;
}
.theme-default-dark .teal-200-fg {
  color: #80cbc4 !important;
}
.theme-default-dark .teal-300 {
  background-color: #4db6ac !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .teal-300[disabled] {
  background-color: rgba(77, 182, 172, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .teal-300-bg {
  background-color: #4db6ac !important;
}
.theme-default-dark .teal-300-fg {
  color: #4db6ac !important;
}
.theme-default-dark .teal-400 {
  background-color: #26a69a !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .teal-400[disabled] {
  background-color: rgba(38, 166, 154, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .teal-400-bg {
  background-color: #26a69a !important;
}
.theme-default-dark .teal-400-fg {
  color: #26a69a !important;
}
.theme-default-dark .teal-500 {
  background-color: #009688 !important;
  color: white !important;
}
.theme-default-dark .teal-500[disabled] {
  background-color: rgba(0, 150, 136, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .teal-500-bg {
  background-color: #009688 !important;
}
.theme-default-dark .teal-500-fg {
  color: #009688 !important;
}
.theme-default-dark .teal-bg {
  background-color: #009688 !important;
}
.theme-default-dark .teal-fg {
  color: #009688 !important;
}
.theme-default-dark .teal-600 {
  background-color: #00897b !important;
  color: white !important;
}
.theme-default-dark .teal-600[disabled] {
  background-color: rgba(0, 137, 123, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .teal-600-bg {
  background-color: #00897b !important;
}
.theme-default-dark .teal-600-fg {
  color: #00897b !important;
}
.theme-default-dark .teal-700 {
  background-color: #00796b !important;
  color: white !important;
}
.theme-default-dark .teal-700[disabled] {
  background-color: rgba(0, 121, 107, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .teal-700-bg {
  background-color: #00796b !important;
}
.theme-default-dark .teal-700-fg {
  color: #00796b !important;
}
.theme-default-dark .teal-800 {
  background-color: #00695c !important;
  color: white !important;
}
.theme-default-dark .teal-800[disabled] {
  background-color: rgba(0, 105, 92, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .teal-800-bg {
  background-color: #00695c !important;
}
.theme-default-dark .teal-800-fg {
  color: #00695c !important;
}
.theme-default-dark .teal-900 {
  background-color: #004d40 !important;
  color: white !important;
}
.theme-default-dark .teal-900[disabled] {
  background-color: rgba(0, 77, 64, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .teal-900-bg {
  background-color: #004d40 !important;
}
.theme-default-dark .teal-900-fg {
  color: #004d40 !important;
}
.theme-default-dark .teal-A100 {
  background-color: #a7ffeb !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .teal-A100[disabled] {
  background-color: rgba(167, 255, 235, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .teal-A100-bg {
  background-color: #a7ffeb !important;
}
.theme-default-dark .teal-A100-fg {
  color: #a7ffeb !important;
}
.theme-default-dark .teal-A200 {
  background-color: #64ffda !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .teal-A200[disabled] {
  background-color: rgba(100, 255, 218, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .teal-A200-bg {
  background-color: #64ffda !important;
}
.theme-default-dark .teal-A200-fg {
  color: #64ffda !important;
}
.theme-default-dark .teal-A400 {
  background-color: #1de9b6 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .teal-A400[disabled] {
  background-color: rgba(29, 233, 182, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .teal-A400-bg {
  background-color: #1de9b6 !important;
}
.theme-default-dark .teal-A400-fg {
  color: #1de9b6 !important;
}
.theme-default-dark .teal-A700 {
  background-color: #00bfa5 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .teal-A700[disabled] {
  background-color: rgba(0, 191, 165, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .teal-A700-bg {
  background-color: #00bfa5 !important;
}
.theme-default-dark .teal-A700-fg {
  color: #00bfa5 !important;
}
.theme-default-dark .green-50 {
  background-color: #e2f2e9 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .green-50[disabled] {
  background-color: rgba(226, 242, 233, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .green-50-bg {
  background-color: #e2f2e9 !important;
}
.theme-default-dark .green-50-fg {
  color: #e2f2e9 !important;
}
.theme-default-dark .green-100 {
  background-color: #b8dec8 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .green-100[disabled] {
  background-color: rgba(184, 222, 200, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .green-100-bg {
  background-color: #b8dec8 !important;
}
.theme-default-dark .green-100-fg {
  color: #b8dec8 !important;
}
.theme-default-dark .green-200 {
  background-color: #88c8a3 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .green-200[disabled] {
  background-color: rgba(136, 200, 163, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .green-200-bg {
  background-color: #88c8a3 !important;
}
.theme-default-dark .green-200-fg {
  color: #88c8a3 !important;
}
.theme-default-dark .green-300 {
  background-color: #58b17e !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .green-300[disabled] {
  background-color: rgba(88, 177, 126, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .green-300-bg {
  background-color: #58b17e !important;
}
.theme-default-dark .green-300-fg {
  color: #58b17e !important;
}
.theme-default-dark .green-400 {
  background-color: #35a162 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .green-400[disabled] {
  background-color: rgba(53, 161, 98, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .green-400-bg {
  background-color: #35a162 !important;
}
.theme-default-dark .green-400-fg {
  color: #35a162 !important;
}
.theme-default-dark .green-500 {
  background-color: #119046 !important;
  color: white !important;
}
.theme-default-dark .green-500[disabled] {
  background-color: rgba(17, 144, 70, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .green-500-bg {
  background-color: #119046 !important;
}
.theme-default-dark .green-500-fg {
  color: #119046 !important;
}
.theme-default-dark .green-bg {
  background-color: #119046 !important;
}
.theme-default-dark .green-fg {
  color: #119046 !important;
}
.theme-default-dark .green-600 {
  background-color: #0f883f !important;
  color: white !important;
}
.theme-default-dark .green-600[disabled] {
  background-color: rgba(15, 136, 63, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .green-600-bg {
  background-color: #0f883f !important;
}
.theme-default-dark .green-600-fg {
  color: #0f883f !important;
}
.theme-default-dark .green-700 {
  background-color: #0c7d37 !important;
  color: white !important;
}
.theme-default-dark .green-700[disabled] {
  background-color: rgba(12, 125, 55, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .green-700-bg {
  background-color: #0c7d37 !important;
}
.theme-default-dark .green-700-fg {
  color: #0c7d37 !important;
}
.theme-default-dark .green-800 {
  background-color: #0a732f !important;
  color: white !important;
}
.theme-default-dark .green-800[disabled] {
  background-color: rgba(10, 115, 47, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .green-800-bg {
  background-color: #0a732f !important;
}
.theme-default-dark .green-800-fg {
  color: #0a732f !important;
}
.theme-default-dark .green-900 {
  background-color: #056120 !important;
  color: white !important;
}
.theme-default-dark .green-900[disabled] {
  background-color: rgba(5, 97, 32, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .green-900-bg {
  background-color: #056120 !important;
}
.theme-default-dark .green-900-fg {
  color: #056120 !important;
}
.theme-default-dark .green-A100 {
  background-color: #b9f6ca !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .green-A100[disabled] {
  background-color: rgba(185, 246, 202, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .green-A100-bg {
  background-color: #b9f6ca !important;
}
.theme-default-dark .green-A100-fg {
  color: #b9f6ca !important;
}
.theme-default-dark .green-A200 {
  background-color: #69f0ae !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .green-A200[disabled] {
  background-color: rgba(105, 240, 174, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .green-A200-bg {
  background-color: #69f0ae !important;
}
.theme-default-dark .green-A200-fg {
  color: #69f0ae !important;
}
.theme-default-dark .green-A400 {
  background-color: #2cff5b !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .green-A400[disabled] {
  background-color: rgba(44, 255, 91, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .green-A400-bg {
  background-color: #2cff5b !important;
}
.theme-default-dark .green-A400-fg {
  color: #2cff5b !important;
}
.theme-default-dark .green-A700 {
  background-color: #13ff48 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .green-A700[disabled] {
  background-color: rgba(19, 255, 72, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .green-A700-bg {
  background-color: #13ff48 !important;
}
.theme-default-dark .green-A700-fg {
  color: #13ff48 !important;
}
.theme-default-dark .light-green-50 {
  background-color: #E9F9DF !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .light-green-50[disabled] {
  background-color: rgba(233, 249, 223, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .light-green-50-bg {
  background-color: #E9F9DF !important;
}
.theme-default-dark .light-green-50-fg {
  color: #E9F9DF !important;
}
.theme-default-dark .light-green-100 {
  background-color: #D4F4C0 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .light-green-100[disabled] {
  background-color: rgba(212, 244, 192, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .light-green-100-bg {
  background-color: #D4F4C0 !important;
}
.theme-default-dark .light-green-100-fg {
  color: #D4F4C0 !important;
}
.theme-default-dark .light-green-200 {
  background-color: #B7ED96 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .light-green-200[disabled] {
  background-color: rgba(183, 237, 150, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .light-green-200-bg {
  background-color: #B7ED96 !important;
}
.theme-default-dark .light-green-200-fg {
  color: #B7ED96 !important;
}
.theme-default-dark .light-green-300 {
  background-color: #9AE56B !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .light-green-300[disabled] {
  background-color: rgba(154, 229, 107, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .light-green-300-bg {
  background-color: #9AE56B !important;
}
.theme-default-dark .light-green-300-fg {
  color: #9AE56B !important;
}
.theme-default-dark .light-green-400 {
  background-color: #84E04C !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .light-green-400[disabled] {
  background-color: rgba(132, 224, 76, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .light-green-400-bg {
  background-color: #84E04C !important;
}
.theme-default-dark .light-green-400-fg {
  color: #84E04C !important;
}
.theme-default-dark .light-green-500 {
  background-color: #6EDA2C !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .light-green-500[disabled] {
  background-color: rgba(110, 218, 44, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .light-green-500-bg {
  background-color: #6EDA2C !important;
}
.theme-default-dark .light-green-500-fg {
  color: #6EDA2C !important;
}
.theme-default-dark .light-green-bg {
  background-color: #6EDA2C !important;
}
.theme-default-dark .light-green-fg {
  color: #6EDA2C !important;
}
.theme-default-dark .light-green-600 {
  background-color: #5EB925 !important;
  color: white !important;
}
.theme-default-dark .light-green-600[disabled] {
  background-color: rgba(94, 185, 37, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .light-green-600-bg {
  background-color: #5EB925 !important;
}
.theme-default-dark .light-green-600-fg {
  color: #5EB925 !important;
}
.theme-default-dark .light-green-700 {
  background-color: #4D991F !important;
  color: white !important;
}
.theme-default-dark .light-green-700[disabled] {
  background-color: rgba(77, 153, 31, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .light-green-700-bg {
  background-color: #4D991F !important;
}
.theme-default-dark .light-green-700-fg {
  color: #4D991F !important;
}
.theme-default-dark .light-green-800 {
  background-color: #376D16 !important;
  color: white !important;
}
.theme-default-dark .light-green-800[disabled] {
  background-color: rgba(55, 109, 22, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .light-green-800-bg {
  background-color: #376D16 !important;
}
.theme-default-dark .light-green-800-fg {
  color: #376D16 !important;
}
.theme-default-dark .light-green-900 {
  background-color: #274C0F !important;
  color: white !important;
}
.theme-default-dark .light-green-900[disabled] {
  background-color: rgba(39, 76, 15, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .light-green-900-bg {
  background-color: #274C0F !important;
}
.theme-default-dark .light-green-900-fg {
  color: #274C0F !important;
}
.theme-default-dark .light-green-A100 {
  background-color: #D4FFBE !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .light-green-A100[disabled] {
  background-color: rgba(212, 255, 190, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .light-green-A100-bg {
  background-color: #D4FFBE !important;
}
.theme-default-dark .light-green-A100-fg {
  color: #D4FFBE !important;
}
.theme-default-dark .light-green-A200 {
  background-color: #B1FF8A !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .light-green-A200[disabled] {
  background-color: rgba(177, 255, 138, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .light-green-A200-bg {
  background-color: #B1FF8A !important;
}
.theme-default-dark .light-green-A200-fg {
  color: #B1FF8A !important;
}
.theme-default-dark .light-green-A400 {
  background-color: #8DFF56 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .light-green-A400[disabled] {
  background-color: rgba(141, 255, 86, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .light-green-A400-bg {
  background-color: #8DFF56 !important;
}
.theme-default-dark .light-green-A400-fg {
  color: #8DFF56 !important;
}
.theme-default-dark .light-green-A700 {
  background-color: #6AFF21 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .light-green-A700[disabled] {
  background-color: rgba(106, 255, 33, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .light-green-A700-bg {
  background-color: #6AFF21 !important;
}
.theme-default-dark .light-green-A700-fg {
  color: #6AFF21 !important;
}
.theme-default-dark .lime-50 {
  background-color: #f0f7e0 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .lime-50[disabled] {
  background-color: rgba(240, 247, 224, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .lime-50-bg {
  background-color: #f0f7e0 !important;
}
.theme-default-dark .lime-50-fg {
  color: #f0f7e0 !important;
}
.theme-default-dark .lime-100 {
  background-color: #dbebb3 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .lime-100[disabled] {
  background-color: rgba(219, 235, 179, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .lime-100-bg {
  background-color: #dbebb3 !important;
}
.theme-default-dark .lime-100-fg {
  color: #dbebb3 !important;
}
.theme-default-dark .lime-200 {
  background-color: #c3de80 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .lime-200[disabled] {
  background-color: rgba(195, 222, 128, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .lime-200-bg {
  background-color: #c3de80 !important;
}
.theme-default-dark .lime-200-fg {
  color: #c3de80 !important;
}
.theme-default-dark .lime-300 {
  background-color: #aad14d !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .lime-300[disabled] {
  background-color: rgba(170, 209, 77, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .lime-300-bg {
  background-color: #aad14d !important;
}
.theme-default-dark .lime-300-fg {
  color: #aad14d !important;
}
.theme-default-dark .lime-400 {
  background-color: #98c726 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .lime-400[disabled] {
  background-color: rgba(152, 199, 38, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .lime-400-bg {
  background-color: #98c726 !important;
}
.theme-default-dark .lime-400-fg {
  color: #98c726 !important;
}
.theme-default-dark .lime-500 {
  background-color: #86bd00 !important;
  color: white !important;
}
.theme-default-dark .lime-500[disabled] {
  background-color: rgba(134, 189, 0, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .lime-500-bg {
  background-color: #86bd00 !important;
}
.theme-default-dark .lime-500-fg {
  color: #86bd00 !important;
}
.theme-default-dark .lime-bg {
  background-color: #86bd00 !important;
}
.theme-default-dark .lime-fg {
  color: #86bd00 !important;
}
.theme-default-dark .lime-600 {
  background-color: #7eb700 !important;
  color: white !important;
}
.theme-default-dark .lime-600[disabled] {
  background-color: rgba(126, 183, 0, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .lime-600-bg {
  background-color: #7eb700 !important;
}
.theme-default-dark .lime-600-fg {
  color: #7eb700 !important;
}
.theme-default-dark .lime-700 {
  background-color: #73ae00 !important;
  color: white !important;
}
.theme-default-dark .lime-700[disabled] {
  background-color: rgba(115, 174, 0, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .lime-700-bg {
  background-color: #73ae00 !important;
}
.theme-default-dark .lime-700-fg {
  color: #73ae00 !important;
}
.theme-default-dark .lime-800 {
  background-color: #69a600 !important;
  color: white !important;
}
.theme-default-dark .lime-800[disabled] {
  background-color: rgba(105, 166, 0, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .lime-800-bg {
  background-color: #69a600 !important;
}
.theme-default-dark .lime-800-fg {
  color: #69a600 !important;
}
.theme-default-dark .lime-900 {
  background-color: #569800 !important;
  color: white !important;
}
.theme-default-dark .lime-900[disabled] {
  background-color: rgba(86, 152, 0, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .lime-900-bg {
  background-color: #569800 !important;
}
.theme-default-dark .lime-900-fg {
  color: #569800 !important;
}
.theme-default-dark .lime-A100 {
  background-color: #f4ff81 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .lime-A100[disabled] {
  background-color: rgba(244, 255, 129, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .lime-A100-bg {
  background-color: #f4ff81 !important;
}
.theme-default-dark .lime-A100-fg {
  color: #f4ff81 !important;
}
.theme-default-dark .lime-A200 {
  background-color: #eeff41 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .lime-A200[disabled] {
  background-color: rgba(238, 255, 65, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .lime-A200-bg {
  background-color: #eeff41 !important;
}
.theme-default-dark .lime-A200-fg {
  color: #eeff41 !important;
}
.theme-default-dark .lime-A400 {
  background-color: #c6ff00 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .lime-A400[disabled] {
  background-color: rgba(198, 255, 0, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .lime-A400-bg {
  background-color: #c6ff00 !important;
}
.theme-default-dark .lime-A400-fg {
  color: #c6ff00 !important;
}
.theme-default-dark .lime-A700 {
  background-color: #aeea00 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .lime-A700[disabled] {
  background-color: rgba(174, 234, 0, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .lime-A700-bg {
  background-color: #aeea00 !important;
}
.theme-default-dark .lime-A700-fg {
  color: #aeea00 !important;
}
.theme-default-dark .yellow-50 {
  background-color: #fcf8e0 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .yellow-50[disabled] {
  background-color: rgba(252, 248, 224, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .yellow-50-bg {
  background-color: #fcf8e0 !important;
}
.theme-default-dark .yellow-50-fg {
  color: #fcf8e0 !important;
}
.theme-default-dark .yellow-100 {
  background-color: #f8edb3 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .yellow-100[disabled] {
  background-color: rgba(248, 237, 179, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .yellow-100-bg {
  background-color: #f8edb3 !important;
}
.theme-default-dark .yellow-100-fg {
  color: #f8edb3 !important;
}
.theme-default-dark .yellow-200 {
  background-color: #f4e180 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .yellow-200[disabled] {
  background-color: rgba(244, 225, 128, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .yellow-200-bg {
  background-color: #f4e180 !important;
}
.theme-default-dark .yellow-200-fg {
  color: #f4e180 !important;
}
.theme-default-dark .yellow-300 {
  background-color: #efd54d !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .yellow-300[disabled] {
  background-color: rgba(239, 213, 77, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .yellow-300-bg {
  background-color: #efd54d !important;
}
.theme-default-dark .yellow-300-fg {
  color: #efd54d !important;
}
.theme-default-dark .yellow-400 {
  background-color: #ebcc26 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .yellow-400[disabled] {
  background-color: rgba(235, 204, 38, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .yellow-400-bg {
  background-color: #ebcc26 !important;
}
.theme-default-dark .yellow-400-fg {
  color: #ebcc26 !important;
}
.theme-default-dark .yellow-500 {
  background-color: #e8c300 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .yellow-500[disabled] {
  background-color: rgba(232, 195, 0, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .yellow-500-bg {
  background-color: #e8c300 !important;
}
.theme-default-dark .yellow-500-fg {
  color: #e8c300 !important;
}
.theme-default-dark .yellow-bg {
  background-color: #e8c300 !important;
}
.theme-default-dark .yellow-fg {
  color: #e8c300 !important;
}
.theme-default-dark .yellow-600 {
  background-color: #e5bd00 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .yellow-600[disabled] {
  background-color: rgba(229, 189, 0, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .yellow-600-bg {
  background-color: #e5bd00 !important;
}
.theme-default-dark .yellow-600-fg {
  color: #e5bd00 !important;
}
.theme-default-dark .yellow-700 {
  background-color: #e2b500 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .yellow-700[disabled] {
  background-color: rgba(226, 181, 0, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .yellow-700-bg {
  background-color: #e2b500 !important;
}
.theme-default-dark .yellow-700-fg {
  color: #e2b500 !important;
}
.theme-default-dark .yellow-800 {
  background-color: #deae00 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .yellow-800[disabled] {
  background-color: rgba(222, 174, 0, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .yellow-800-bg {
  background-color: #deae00 !important;
}
.theme-default-dark .yellow-800-fg {
  color: #deae00 !important;
}
.theme-default-dark .yellow-900 {
  background-color: #d8a100 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .yellow-900[disabled] {
  background-color: rgba(216, 161, 0, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .yellow-900-bg {
  background-color: #d8a100 !important;
}
.theme-default-dark .yellow-900-fg {
  color: #d8a100 !important;
}
.theme-default-dark .yellow-A100 {
  background-color: #ffff8d !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .yellow-A100[disabled] {
  background-color: rgba(255, 255, 141, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .yellow-A100-bg {
  background-color: #ffff8d !important;
}
.theme-default-dark .yellow-A100-fg {
  color: #ffff8d !important;
}
.theme-default-dark .yellow-A200 {
  background-color: #ffff00 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .yellow-A200[disabled] {
  background-color: rgba(255, 255, 0, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .yellow-A200-bg {
  background-color: #ffff00 !important;
}
.theme-default-dark .yellow-A200-fg {
  color: #ffff00 !important;
}
.theme-default-dark .yellow-A400 {
  background-color: #ffea00 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .yellow-A400[disabled] {
  background-color: rgba(255, 234, 0, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .yellow-A400-bg {
  background-color: #ffea00 !important;
}
.theme-default-dark .yellow-A400-fg {
  color: #ffea00 !important;
}
.theme-default-dark .yellow-A700 {
  background-color: #ffd600 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .yellow-A700[disabled] {
  background-color: rgba(255, 214, 0, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .yellow-A700-bg {
  background-color: #ffd600 !important;
}
.theme-default-dark .yellow-A700-fg {
  color: #ffd600 !important;
}
.theme-default-dark .amber-50 {
  background-color: #fef4e4 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .amber-50[disabled] {
  background-color: rgba(254, 244, 228, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .amber-50-bg {
  background-color: #fef4e4 !important;
}
.theme-default-dark .amber-50-fg {
  color: #fef4e4 !important;
}
.theme-default-dark .amber-100 {
  background-color: #fee4ba !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .amber-100[disabled] {
  background-color: rgba(254, 228, 186, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .amber-100-bg {
  background-color: #fee4ba !important;
}
.theme-default-dark .amber-100-fg {
  color: #fee4ba !important;
}
.theme-default-dark .amber-200 {
  background-color: #fdd38d !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .amber-200[disabled] {
  background-color: rgba(253, 211, 141, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .amber-200-bg {
  background-color: #fdd38d !important;
}
.theme-default-dark .amber-200-fg {
  color: #fdd38d !important;
}
.theme-default-dark .amber-300 {
  background-color: #fcc15f !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .amber-300[disabled] {
  background-color: rgba(252, 193, 95, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .amber-300-bg {
  background-color: #fcc15f !important;
}
.theme-default-dark .amber-300-fg {
  color: #fcc15f !important;
}
.theme-default-dark .amber-400 {
  background-color: #fbb33c !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .amber-400[disabled] {
  background-color: rgba(251, 179, 60, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .amber-400-bg {
  background-color: #fbb33c !important;
}
.theme-default-dark .amber-400-fg {
  color: #fbb33c !important;
}
.theme-default-dark .amber-500 {
  background-color: #faa61a !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .amber-500[disabled] {
  background-color: rgba(250, 166, 26, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .amber-500-bg {
  background-color: #faa61a !important;
}
.theme-default-dark .amber-500-fg {
  color: #faa61a !important;
}
.theme-default-dark .amber-bg {
  background-color: #faa61a !important;
}
.theme-default-dark .amber-fg {
  color: #faa61a !important;
}
.theme-default-dark .amber-600 {
  background-color: #f99e17 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .amber-600[disabled] {
  background-color: rgba(249, 158, 23, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .amber-600-bg {
  background-color: #f99e17 !important;
}
.theme-default-dark .amber-600-fg {
  color: #f99e17 !important;
}
.theme-default-dark .amber-700 {
  background-color: #f99513 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .amber-700[disabled] {
  background-color: rgba(249, 149, 19, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .amber-700-bg {
  background-color: #f99513 !important;
}
.theme-default-dark .amber-700-fg {
  color: #f99513 !important;
}
.theme-default-dark .amber-800 {
  background-color: #f88b0f !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .amber-800[disabled] {
  background-color: rgba(248, 139, 15, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .amber-800-bg {
  background-color: #f88b0f !important;
}
.theme-default-dark .amber-800-fg {
  color: #f88b0f !important;
}
.theme-default-dark .amber-900 {
  background-color: #f67b08 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .amber-900[disabled] {
  background-color: rgba(246, 123, 8, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .amber-900-bg {
  background-color: #f67b08 !important;
}
.theme-default-dark .amber-900-fg {
  color: #f67b08 !important;
}
.theme-default-dark .amber-A100 {
  background-color: #ffe57f !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .amber-A100[disabled] {
  background-color: rgba(255, 229, 127, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .amber-A100-bg {
  background-color: #ffe57f !important;
}
.theme-default-dark .amber-A100-fg {
  color: #ffe57f !important;
}
.theme-default-dark .amber-A200 {
  background-color: #ffd740 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .amber-A200[disabled] {
  background-color: rgba(255, 215, 64, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .amber-A200-bg {
  background-color: #ffd740 !important;
}
.theme-default-dark .amber-A200-fg {
  color: #ffd740 !important;
}
.theme-default-dark .amber-A400 {
  background-color: #ffc400 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .amber-A400[disabled] {
  background-color: rgba(255, 196, 0, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .amber-A400-bg {
  background-color: #ffc400 !important;
}
.theme-default-dark .amber-A400-fg {
  color: #ffc400 !important;
}
.theme-default-dark .amber-A700 {
  background-color: #ffab00 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .amber-A700[disabled] {
  background-color: rgba(255, 171, 0, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .amber-A700-bg {
  background-color: #ffab00 !important;
}
.theme-default-dark .amber-A700-fg {
  color: #ffab00 !important;
}
.theme-default-dark .orange-50 {
  background-color: #feefe3 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .orange-50[disabled] {
  background-color: rgba(254, 239, 227, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .orange-50-bg {
  background-color: #feefe3 !important;
}
.theme-default-dark .orange-50-fg {
  color: #feefe3 !important;
}
.theme-default-dark .orange-100 {
  background-color: #fdd7b9 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .orange-100[disabled] {
  background-color: rgba(253, 215, 185, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .orange-100-bg {
  background-color: #fdd7b9 !important;
}
.theme-default-dark .orange-100-fg {
  color: #fdd7b9 !important;
}
.theme-default-dark .orange-200 {
  background-color: #fbbc8a !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .orange-200[disabled] {
  background-color: rgba(251, 188, 138, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .orange-200-bg {
  background-color: #fbbc8a !important;
}
.theme-default-dark .orange-200-fg {
  color: #fbbc8a !important;
}
.theme-default-dark .orange-300 {
  background-color: #f9a15b !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .orange-300[disabled] {
  background-color: rgba(249, 161, 91, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .orange-300-bg {
  background-color: #f9a15b !important;
}
.theme-default-dark .orange-300-fg {
  color: #f9a15b !important;
}
.theme-default-dark .orange-400 {
  background-color: #f88c37 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .orange-400[disabled] {
  background-color: rgba(248, 140, 55, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .orange-400-bg {
  background-color: #f88c37 !important;
}
.theme-default-dark .orange-400-fg {
  color: #f88c37 !important;
}
.theme-default-dark .orange-500 {
  background-color: #f77814 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .orange-500[disabled] {
  background-color: rgba(247, 120, 20, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .orange-500-bg {
  background-color: #f77814 !important;
}
.theme-default-dark .orange-500-fg {
  color: #f77814 !important;
}
.theme-default-dark .orange-bg {
  background-color: #f77814 !important;
}
.theme-default-dark .orange-fg {
  color: #f77814 !important;
}
.theme-default-dark .orange-600 {
  background-color: #f67012 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .orange-600[disabled] {
  background-color: rgba(246, 112, 18, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .orange-600-bg {
  background-color: #f67012 !important;
}
.theme-default-dark .orange-600-fg {
  color: #f67012 !important;
}
.theme-default-dark .orange-700 {
  background-color: #f5650e !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .orange-700[disabled] {
  background-color: rgba(245, 101, 14, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .orange-700-bg {
  background-color: #f5650e !important;
}
.theme-default-dark .orange-700-fg {
  color: #f5650e !important;
}
.theme-default-dark .orange-800 {
  background-color: #f35b0b !important;
  color: white !important;
}
.theme-default-dark .orange-800[disabled] {
  background-color: rgba(243, 91, 11, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .orange-800-bg {
  background-color: #f35b0b !important;
}
.theme-default-dark .orange-800-fg {
  color: #f35b0b !important;
}
.theme-default-dark .orange-900 {
  background-color: #f14806 !important;
  color: white !important;
}
.theme-default-dark .orange-900[disabled] {
  background-color: rgba(241, 72, 6, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .orange-900-bg {
  background-color: #f14806 !important;
}
.theme-default-dark .orange-900-fg {
  color: #f14806 !important;
}
.theme-default-dark .orange-A100 {
  background-color: #ffd180 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .orange-A100[disabled] {
  background-color: rgba(255, 209, 128, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .orange-A100-bg {
  background-color: #ffd180 !important;
}
.theme-default-dark .orange-A100-fg {
  color: #ffd180 !important;
}
.theme-default-dark .orange-A200 {
  background-color: #ffab40 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .orange-A200[disabled] {
  background-color: rgba(255, 171, 64, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .orange-A200-bg {
  background-color: #ffab40 !important;
}
.theme-default-dark .orange-A200-fg {
  color: #ffab40 !important;
}
.theme-default-dark .orange-A400 {
  background-color: #ff9100 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .orange-A400[disabled] {
  background-color: rgba(255, 145, 0, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .orange-A400-bg {
  background-color: #ff9100 !important;
}
.theme-default-dark .orange-A400-fg {
  color: #ff9100 !important;
}
.theme-default-dark .orange-A700 {
  background-color: #ff6d00 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .orange-A700[disabled] {
  background-color: rgba(255, 109, 0, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .orange-A700-bg {
  background-color: #ff6d00 !important;
}
.theme-default-dark .orange-A700-fg {
  color: #ff6d00 !important;
}
.theme-default-dark .deep-orange-50 {
  background-color: #fbe9e7 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .deep-orange-50[disabled] {
  background-color: rgba(251, 233, 231, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .deep-orange-50-bg {
  background-color: #fbe9e7 !important;
}
.theme-default-dark .deep-orange-50-fg {
  color: #fbe9e7 !important;
}
.theme-default-dark .deep-orange-100 {
  background-color: #ffccbc !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .deep-orange-100[disabled] {
  background-color: rgba(255, 204, 188, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .deep-orange-100-bg {
  background-color: #ffccbc !important;
}
.theme-default-dark .deep-orange-100-fg {
  color: #ffccbc !important;
}
.theme-default-dark .deep-orange-200 {
  background-color: #ffab91 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .deep-orange-200[disabled] {
  background-color: rgba(255, 171, 145, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .deep-orange-200-bg {
  background-color: #ffab91 !important;
}
.theme-default-dark .deep-orange-200-fg {
  color: #ffab91 !important;
}
.theme-default-dark .deep-orange-300 {
  background-color: #ff8a65 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .deep-orange-300[disabled] {
  background-color: rgba(255, 138, 101, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .deep-orange-300-bg {
  background-color: #ff8a65 !important;
}
.theme-default-dark .deep-orange-300-fg {
  color: #ff8a65 !important;
}
.theme-default-dark .deep-orange-400 {
  background-color: #ff7043 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .deep-orange-400[disabled] {
  background-color: rgba(255, 112, 67, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .deep-orange-400-bg {
  background-color: #ff7043 !important;
}
.theme-default-dark .deep-orange-400-fg {
  color: #ff7043 !important;
}
.theme-default-dark .deep-orange-500 {
  background-color: #ff5722 !important;
  color: white !important;
}
.theme-default-dark .deep-orange-500[disabled] {
  background-color: rgba(255, 87, 34, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .deep-orange-500-bg {
  background-color: #ff5722 !important;
}
.theme-default-dark .deep-orange-500-fg {
  color: #ff5722 !important;
}
.theme-default-dark .deep-orange-bg {
  background-color: #ff5722 !important;
}
.theme-default-dark .deep-orange-fg {
  color: #ff5722 !important;
}
.theme-default-dark .deep-orange-600 {
  background-color: #f4511e !important;
  color: white !important;
}
.theme-default-dark .deep-orange-600[disabled] {
  background-color: rgba(244, 81, 30, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .deep-orange-600-bg {
  background-color: #f4511e !important;
}
.theme-default-dark .deep-orange-600-fg {
  color: #f4511e !important;
}
.theme-default-dark .deep-orange-700 {
  background-color: #e64a19 !important;
  color: white !important;
}
.theme-default-dark .deep-orange-700[disabled] {
  background-color: rgba(230, 74, 25, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .deep-orange-700-bg {
  background-color: #e64a19 !important;
}
.theme-default-dark .deep-orange-700-fg {
  color: #e64a19 !important;
}
.theme-default-dark .deep-orange-800 {
  background-color: #d84315 !important;
  color: white !important;
}
.theme-default-dark .deep-orange-800[disabled] {
  background-color: rgba(216, 67, 21, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .deep-orange-800-bg {
  background-color: #d84315 !important;
}
.theme-default-dark .deep-orange-800-fg {
  color: #d84315 !important;
}
.theme-default-dark .deep-orange-900 {
  background-color: #bf360c !important;
  color: white !important;
}
.theme-default-dark .deep-orange-900[disabled] {
  background-color: rgba(191, 54, 12, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .deep-orange-900-bg {
  background-color: #bf360c !important;
}
.theme-default-dark .deep-orange-900-fg {
  color: #bf360c !important;
}
.theme-default-dark .deep-orange-A100 {
  background-color: #ff9e80 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .deep-orange-A100[disabled] {
  background-color: rgba(255, 158, 128, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .deep-orange-A100-bg {
  background-color: #ff9e80 !important;
}
.theme-default-dark .deep-orange-A100-fg {
  color: #ff9e80 !important;
}
.theme-default-dark .deep-orange-A200 {
  background-color: #ff6e40 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .deep-orange-A200[disabled] {
  background-color: rgba(255, 110, 64, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .deep-orange-A200-bg {
  background-color: #ff6e40 !important;
}
.theme-default-dark .deep-orange-A200-fg {
  color: #ff6e40 !important;
}
.theme-default-dark .deep-orange-A400 {
  background-color: #ff3d00 !important;
  color: white !important;
}
.theme-default-dark .deep-orange-A400[disabled] {
  background-color: rgba(255, 61, 0, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .deep-orange-A400-bg {
  background-color: #ff3d00 !important;
}
.theme-default-dark .deep-orange-A400-fg {
  color: #ff3d00 !important;
}
.theme-default-dark .deep-orange-A700 {
  background-color: #dd2c00 !important;
  color: white !important;
}
.theme-default-dark .deep-orange-A700[disabled] {
  background-color: rgba(221, 44, 0, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .deep-orange-A700-bg {
  background-color: #dd2c00 !important;
}
.theme-default-dark .deep-orange-A700-fg {
  color: #dd2c00 !important;
}
.theme-default-dark .brown-50 {
  background-color: #efebe9 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .brown-50[disabled] {
  background-color: rgba(239, 235, 233, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .brown-50-bg {
  background-color: #efebe9 !important;
}
.theme-default-dark .brown-50-fg {
  color: #efebe9 !important;
}
.theme-default-dark .brown-100 {
  background-color: #d7ccc8 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .brown-100[disabled] {
  background-color: rgba(215, 204, 200, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .brown-100-bg {
  background-color: #d7ccc8 !important;
}
.theme-default-dark .brown-100-fg {
  color: #d7ccc8 !important;
}
.theme-default-dark .brown-200 {
  background-color: #bcaaa4 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .brown-200[disabled] {
  background-color: rgba(188, 170, 164, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .brown-200-bg {
  background-color: #bcaaa4 !important;
}
.theme-default-dark .brown-200-fg {
  color: #bcaaa4 !important;
}
.theme-default-dark .brown-300 {
  background-color: #a1887f !important;
  color: white !important;
}
.theme-default-dark .brown-300[disabled] {
  background-color: rgba(161, 136, 127, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .brown-300-bg {
  background-color: #a1887f !important;
}
.theme-default-dark .brown-300-fg {
  color: #a1887f !important;
}
.theme-default-dark .brown-400 {
  background-color: #8d6e63 !important;
  color: white !important;
}
.theme-default-dark .brown-400[disabled] {
  background-color: rgba(141, 110, 99, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .brown-400-bg {
  background-color: #8d6e63 !important;
}
.theme-default-dark .brown-400-fg {
  color: #8d6e63 !important;
}
.theme-default-dark .brown-500 {
  background-color: #795548 !important;
  color: white !important;
}
.theme-default-dark .brown-500[disabled] {
  background-color: rgba(121, 85, 72, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .brown-500-bg {
  background-color: #795548 !important;
}
.theme-default-dark .brown-500-fg {
  color: #795548 !important;
}
.theme-default-dark .brown-bg {
  background-color: #795548 !important;
}
.theme-default-dark .brown-fg {
  color: #795548 !important;
}
.theme-default-dark .brown-600 {
  background-color: #6d4c41 !important;
  color: white !important;
}
.theme-default-dark .brown-600[disabled] {
  background-color: rgba(109, 76, 65, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .brown-600-bg {
  background-color: #6d4c41 !important;
}
.theme-default-dark .brown-600-fg {
  color: #6d4c41 !important;
}
.theme-default-dark .brown-700 {
  background-color: #5d4037 !important;
  color: white !important;
}
.theme-default-dark .brown-700[disabled] {
  background-color: rgba(93, 64, 55, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .brown-700-bg {
  background-color: #5d4037 !important;
}
.theme-default-dark .brown-700-fg {
  color: #5d4037 !important;
}
.theme-default-dark .brown-800 {
  background-color: #4e342e !important;
  color: white !important;
}
.theme-default-dark .brown-800[disabled] {
  background-color: rgba(78, 52, 46, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .brown-800-bg {
  background-color: #4e342e !important;
}
.theme-default-dark .brown-800-fg {
  color: #4e342e !important;
}
.theme-default-dark .brown-900 {
  background-color: #3e2723 !important;
  color: white !important;
}
.theme-default-dark .brown-900[disabled] {
  background-color: rgba(62, 39, 35, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .brown-900-bg {
  background-color: #3e2723 !important;
}
.theme-default-dark .brown-900-fg {
  color: #3e2723 !important;
}
.theme-default-dark .brown-A100 {
  background-color: #d7ccc8 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .brown-A100[disabled] {
  background-color: rgba(215, 204, 200, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .brown-A100-bg {
  background-color: #d7ccc8 !important;
}
.theme-default-dark .brown-A100-fg {
  color: #d7ccc8 !important;
}
.theme-default-dark .brown-A200 {
  background-color: #bcaaa4 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .brown-A200[disabled] {
  background-color: rgba(188, 170, 164, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .brown-A200-bg {
  background-color: #bcaaa4 !important;
}
.theme-default-dark .brown-A200-fg {
  color: #bcaaa4 !important;
}
.theme-default-dark .brown-A400 {
  background-color: #8d6e63 !important;
  color: white !important;
}
.theme-default-dark .brown-A400[disabled] {
  background-color: rgba(141, 110, 99, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .brown-A400-bg {
  background-color: #8d6e63 !important;
}
.theme-default-dark .brown-A400-fg {
  color: #8d6e63 !important;
}
.theme-default-dark .brown-A700 {
  background-color: #5d4037 !important;
  color: white !important;
}
.theme-default-dark .brown-A700[disabled] {
  background-color: rgba(93, 64, 55, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .brown-A700-bg {
  background-color: #5d4037 !important;
}
.theme-default-dark .brown-A700-fg {
  color: #5d4037 !important;
}
.theme-default-dark .grey-50 {
  background-color: #EFF1F2 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .grey-50[disabled] {
  background-color: rgba(239, 241, 242, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .grey-50-bg {
  background-color: #EFF1F2 !important;
}
.theme-default-dark .grey-50-fg {
  color: #EFF1F2 !important;
}
.theme-default-dark .grey-100 {
  background-color: #DEE3E6 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .grey-100[disabled] {
  background-color: rgba(222, 227, 230, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .grey-100-bg {
  background-color: #DEE3E6 !important;
}
.theme-default-dark .grey-100-fg {
  color: #DEE3E6 !important;
}
.theme-default-dark .grey-200 {
  background-color: #C8D0D5 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .grey-200[disabled] {
  background-color: rgba(200, 208, 213, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .grey-200-bg {
  background-color: #C8D0D5 !important;
}
.theme-default-dark .grey-200-fg {
  color: #C8D0D5 !important;
}
.theme-default-dark .grey-300 {
  background-color: #B2BDC4 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .grey-300[disabled] {
  background-color: rgba(178, 189, 196, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .grey-300-bg {
  background-color: #B2BDC4 !important;
}
.theme-default-dark .grey-300-fg {
  color: #B2BDC4 !important;
}
.theme-default-dark .grey-400 {
  background-color: #A2AEB7 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .grey-400[disabled] {
  background-color: rgba(162, 174, 183, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .grey-400-bg {
  background-color: #A2AEB7 !important;
}
.theme-default-dark .grey-400-fg {
  color: #A2AEB7 !important;
}
.theme-default-dark .grey-500 {
  background-color: #91A0AA !important;
  color: white !important;
}
.theme-default-dark .grey-500[disabled] {
  background-color: rgba(145, 160, 170, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .grey-500-bg {
  background-color: #91A0AA !important;
}
.theme-default-dark .grey-500-fg {
  color: #91A0AA !important;
}
.theme-default-dark .grey-bg {
  background-color: #91A0AA !important;
}
.theme-default-dark .grey-fg {
  color: #91A0AA !important;
}
.theme-default-dark .grey-600 {
  background-color: #7B8891 !important;
  color: white !important;
}
.theme-default-dark .grey-600[disabled] {
  background-color: rgba(123, 136, 145, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .grey-600-bg {
  background-color: #7B8891 !important;
}
.theme-default-dark .grey-600-fg {
  color: #7B8891 !important;
}
.theme-default-dark .grey-700 {
  background-color: #667077 !important;
  color: white !important;
}
.theme-default-dark .grey-700[disabled] {
  background-color: rgba(102, 112, 119, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .grey-700-bg {
  background-color: #667077 !important;
}
.theme-default-dark .grey-700-fg {
  color: #667077 !important;
}
.theme-default-dark .grey-800 {
  background-color: #495055 !important;
  color: white !important;
}
.theme-default-dark .grey-800[disabled] {
  background-color: rgba(73, 80, 85, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .grey-800-bg {
  background-color: #495055 !important;
}
.theme-default-dark .grey-800-fg {
  color: #495055 !important;
}
.theme-default-dark .grey-900 {
  background-color: #33383B !important;
  color: white !important;
}
.theme-default-dark .grey-900[disabled] {
  background-color: rgba(51, 56, 59, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .grey-900-bg {
  background-color: #33383B !important;
}
.theme-default-dark .grey-900-fg {
  color: #33383B !important;
}
.theme-default-dark .grey-A100 {
  background-color: #FFFFFF !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .grey-A100[disabled] {
  background-color: rgba(255, 255, 255, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .grey-A100-bg {
  background-color: #FFFFFF !important;
}
.theme-default-dark .grey-A100-fg {
  color: #FFFFFF !important;
}
.theme-default-dark .grey-A200 {
  background-color: #E7EDF1 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .grey-A200[disabled] {
  background-color: rgba(231, 237, 241, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .grey-A200-bg {
  background-color: #E7EDF1 !important;
}
.theme-default-dark .grey-A200-fg {
  color: #E7EDF1 !important;
}
.theme-default-dark .grey-A400 {
  background-color: #C0CEDA !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .grey-A400[disabled] {
  background-color: rgba(192, 206, 218, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .grey-A400-bg {
  background-color: #C0CEDA !important;
}
.theme-default-dark .grey-A400-fg {
  color: #C0CEDA !important;
}
.theme-default-dark .grey-A700 {
  background-color: #98AFC2 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .grey-A700[disabled] {
  background-color: rgba(152, 175, 194, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .grey-A700-bg {
  background-color: #98AFC2 !important;
}
.theme-default-dark .grey-A700-fg {
  color: #98AFC2 !important;
}
.theme-default-dark .blue-grey-50 {
  background-color: #FFFFFF !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .blue-grey-50[disabled] {
  background-color: rgba(255, 255, 255, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .blue-grey-50-bg {
  background-color: #FFFFFF !important;
}
.theme-default-dark .blue-grey-50-fg {
  color: #FFFFFF !important;
}
.theme-default-dark .blue-grey-100 {
  background-color: #E2E7E9 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .blue-grey-100[disabled] {
  background-color: rgba(226, 231, 233, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .blue-grey-100-bg {
  background-color: #E2E7E9 !important;
}
.theme-default-dark .blue-grey-100-fg {
  color: #E2E7E9 !important;
}
.theme-default-dark .blue-grey-200 {
  background-color: #C4CFD4 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .blue-grey-200[disabled] {
  background-color: rgba(196, 207, 212, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .blue-grey-200-bg {
  background-color: #C4CFD4 !important;
}
.theme-default-dark .blue-grey-200-fg {
  color: #C4CFD4 !important;
}
.theme-default-dark .blue-grey-300 {
  background-color: #A7B6BE !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .blue-grey-300[disabled] {
  background-color: rgba(167, 182, 190, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .blue-grey-300-bg {
  background-color: #A7B6BE !important;
}
.theme-default-dark .blue-grey-300-fg {
  color: #A7B6BE !important;
}
.theme-default-dark .blue-grey-400 {
  background-color: #8A9EA8 !important;
  color: white !important;
}
.theme-default-dark .blue-grey-400[disabled] {
  background-color: rgba(138, 158, 168, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .blue-grey-400-bg {
  background-color: #8A9EA8 !important;
}
.theme-default-dark .blue-grey-400-fg {
  color: #8A9EA8 !important;
}
.theme-default-dark .blue-grey-500 {
  background-color: #7E8E95 !important;
  color: white !important;
}
.theme-default-dark .blue-grey-500[disabled] {
  background-color: rgba(126, 142, 149, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .blue-grey-500-bg {
  background-color: #7E8E95 !important;
}
.theme-default-dark .blue-grey-500-fg {
  color: #7E8E95 !important;
}
.theme-default-dark .blue-grey-bg {
  background-color: #7E8E95 !important;
}
.theme-default-dark .blue-grey-fg {
  color: #7E8E95 !important;
}
.theme-default-dark .blue-grey-600 {
  background-color: #5A6A72 !important;
  color: white !important;
}
.theme-default-dark .blue-grey-600[disabled] {
  background-color: rgba(90, 106, 114, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .blue-grey-600-bg {
  background-color: #5A6A72 !important;
}
.theme-default-dark .blue-grey-600-fg {
  color: #5A6A72 !important;
}
.theme-default-dark .blue-grey-700 {
  background-color: #435056 !important;
  color: white !important;
}
.theme-default-dark .blue-grey-700[disabled] {
  background-color: rgba(67, 80, 86, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .blue-grey-700-bg {
  background-color: #435056 !important;
}
.theme-default-dark .blue-grey-700-fg {
  color: #435056 !important;
}
.theme-default-dark .blue-grey-800 {
  background-color: #2B363B !important;
  color: white !important;
}
.theme-default-dark .blue-grey-800[disabled] {
  background-color: rgba(43, 54, 59, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .blue-grey-800-bg {
  background-color: #2B363B !important;
}
.theme-default-dark .blue-grey-800-fg {
  color: #2B363B !important;
}
.theme-default-dark .blue-grey-900 {
  background-color: #21282C !important;
  color: white !important;
}
.theme-default-dark .blue-grey-900[disabled] {
  background-color: rgba(33, 40, 44, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .blue-grey-900-bg {
  background-color: #21282C !important;
}
.theme-default-dark .blue-grey-900-fg {
  color: #21282C !important;
}
.theme-default-dark .blue-grey-A100 {
  background-color: #E2E7E9 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .blue-grey-A100[disabled] {
  background-color: rgba(226, 231, 233, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .blue-grey-A100-bg {
  background-color: #E2E7E9 !important;
}
.theme-default-dark .blue-grey-A100-fg {
  color: #E2E7E9 !important;
}
.theme-default-dark .blue-grey-A200 {
  background-color: #C4CFD4 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .blue-grey-A200[disabled] {
  background-color: rgba(196, 207, 212, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .blue-grey-A200-bg {
  background-color: #C4CFD4 !important;
}
.theme-default-dark .blue-grey-A200-fg {
  color: #C4CFD4 !important;
}
.theme-default-dark .blue-grey-A400 {
  background-color: #8A9EA8 !important;
  color: white !important;
}
.theme-default-dark .blue-grey-A400[disabled] {
  background-color: rgba(138, 158, 168, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .blue-grey-A400-bg {
  background-color: #8A9EA8 !important;
}
.theme-default-dark .blue-grey-A400-fg {
  color: #8A9EA8 !important;
}
.theme-default-dark .blue-grey-A700 {
  background-color: #435056 !important;
  color: white !important;
}
.theme-default-dark .blue-grey-A700[disabled] {
  background-color: rgba(67, 80, 86, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .blue-grey-A700-bg {
  background-color: #435056 !important;
}
.theme-default-dark .blue-grey-A700-fg {
  color: #435056 !important;
}
.theme-default-dark .light-grey-50 {
  background-color: #FFFFFF !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .light-grey-50[disabled] {
  background-color: rgba(255, 255, 255, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .light-grey-50-bg {
  background-color: #FFFFFF !important;
}
.theme-default-dark .light-grey-50-fg {
  color: #FFFFFF !important;
}
.theme-default-dark .light-grey-100 {
  background-color: #F8F9FC !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .light-grey-100[disabled] {
  background-color: rgba(248, 249, 252, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .light-grey-100-bg {
  background-color: #F8F9FC !important;
}
.theme-default-dark .light-grey-100-fg {
  color: #F8F9FC !important;
}
.theme-default-dark .light-grey-200 {
  background-color: #F2F3F8 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .light-grey-200[disabled] {
  background-color: rgba(242, 243, 248, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .light-grey-200-bg {
  background-color: #F2F3F8 !important;
}
.theme-default-dark .light-grey-200-fg {
  color: #F2F3F8 !important;
}
.theme-default-dark .light-grey-300 {
  background-color: #EAECF6 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .light-grey-300[disabled] {
  background-color: rgba(234, 236, 246, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .light-grey-300-bg {
  background-color: #EAECF6 !important;
}
.theme-default-dark .light-grey-300-fg {
  color: #EAECF6 !important;
}
.theme-default-dark .light-grey-400 {
  background-color: #E2E5F3 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .light-grey-400[disabled] {
  background-color: rgba(226, 229, 243, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .light-grey-400-bg {
  background-color: #E2E5F3 !important;
}
.theme-default-dark .light-grey-400-fg {
  color: #E2E5F3 !important;
}
.theme-default-dark .light-grey-500 {
  background-color: #DBDFF0 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .light-grey-500[disabled] {
  background-color: rgba(219, 223, 240, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .light-grey-500-bg {
  background-color: #DBDFF0 !important;
}
.theme-default-dark .light-grey-500-fg {
  color: #DBDFF0 !important;
}
.theme-default-dark .light-grey-bg {
  background-color: #DBDFF0 !important;
}
.theme-default-dark .light-grey-fg {
  color: #DBDFF0 !important;
}
.theme-default-dark .light-grey-600 {
  background-color: #D4D8ED !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .light-grey-600[disabled] {
  background-color: rgba(212, 216, 237, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .light-grey-600-bg {
  background-color: #D4D8ED !important;
}
.theme-default-dark .light-grey-600-fg {
  color: #D4D8ED !important;
}
.theme-default-dark .light-grey-700 {
  background-color: #CDD2EA !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .light-grey-700[disabled] {
  background-color: rgba(205, 210, 234, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .light-grey-700-bg {
  background-color: #CDD2EA !important;
}
.theme-default-dark .light-grey-700-fg {
  color: #CDD2EA !important;
}
.theme-default-dark .light-grey-800 {
  background-color: #C6CBE7 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .light-grey-800[disabled] {
  background-color: rgba(198, 203, 231, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .light-grey-800-bg {
  background-color: #C6CBE7 !important;
}
.theme-default-dark .light-grey-800-fg {
  color: #C6CBE7 !important;
}
.theme-default-dark .light-grey-900 {
  background-color: #BFC5E3 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .light-grey-900[disabled] {
  background-color: rgba(191, 197, 227, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .light-grey-900-bg {
  background-color: #BFC5E3 !important;
}
.theme-default-dark .light-grey-900-fg {
  color: #BFC5E3 !important;
}
.theme-default-dark .light-grey-A100 {
  background-color: #F8F9FC !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .light-grey-A100[disabled] {
  background-color: rgba(248, 249, 252, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .light-grey-A100-bg {
  background-color: #F8F9FC !important;
}
.theme-default-dark .light-grey-A100-fg {
  color: #F8F9FC !important;
}
.theme-default-dark .light-grey-A200 {
  background-color: #F2F3F8 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .light-grey-A200[disabled] {
  background-color: rgba(242, 243, 248, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .light-grey-A200-bg {
  background-color: #F2F3F8 !important;
}
.theme-default-dark .light-grey-A200-fg {
  color: #F2F3F8 !important;
}
.theme-default-dark .light-grey-A400 {
  background-color: #E2E5F3 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .light-grey-A400[disabled] {
  background-color: rgba(226, 229, 243, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .light-grey-A400-bg {
  background-color: #E2E5F3 !important;
}
.theme-default-dark .light-grey-A400-fg {
  color: #E2E5F3 !important;
}
.theme-default-dark .light-grey-A700 {
  background-color: #CDD2EA !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .light-grey-A700[disabled] {
  background-color: rgba(205, 210, 234, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .light-grey-A700-bg {
  background-color: #CDD2EA !important;
}
.theme-default-dark .light-grey-A700-fg {
  color: #CDD2EA !important;
}
.theme-default-dark .dark-grey-50 {
  background-color: #2E2E2E !important;
  color: white !important;
}
.theme-default-dark .dark-grey-50[disabled] {
  background-color: rgba(46, 46, 46, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .dark-grey-50-bg {
  background-color: #2E2E2E !important;
}
.theme-default-dark .dark-grey-50-fg {
  color: #2E2E2E !important;
}
.theme-default-dark .dark-grey-100 {
  background-color: #292929 !important;
  color: white !important;
}
.theme-default-dark .dark-grey-100[disabled] {
  background-color: rgba(41, 41, 41, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .dark-grey-100-bg {
  background-color: #292929 !important;
}
.theme-default-dark .dark-grey-100-fg {
  color: #292929 !important;
}
.theme-default-dark .dark-grey-200 {
  background-color: #242424 !important;
  color: white !important;
}
.theme-default-dark .dark-grey-200[disabled] {
  background-color: rgba(36, 36, 36, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .dark-grey-200-bg {
  background-color: #242424 !important;
}
.theme-default-dark .dark-grey-200-fg {
  color: #242424 !important;
}
.theme-default-dark .dark-grey-300 {
  background-color: #1F1F1F !important;
  color: white !important;
}
.theme-default-dark .dark-grey-300[disabled] {
  background-color: rgba(31, 31, 31, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .dark-grey-300-bg {
  background-color: #1F1F1F !important;
}
.theme-default-dark .dark-grey-300-fg {
  color: #1F1F1F !important;
}
.theme-default-dark .dark-grey-400 {
  background-color: #1A1A1A !important;
  color: white !important;
}
.theme-default-dark .dark-grey-400[disabled] {
  background-color: rgba(26, 26, 26, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .dark-grey-400-bg {
  background-color: #1A1A1A !important;
}
.theme-default-dark .dark-grey-400-fg {
  color: #1A1A1A !important;
}
.theme-default-dark .dark-grey-500 {
  background-color: #141414 !important;
  color: white !important;
}
.theme-default-dark .dark-grey-500[disabled] {
  background-color: rgba(20, 20, 20, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .dark-grey-500-bg {
  background-color: #141414 !important;
}
.theme-default-dark .dark-grey-500-fg {
  color: #141414 !important;
}
.theme-default-dark .dark-grey-bg {
  background-color: #141414 !important;
}
.theme-default-dark .dark-grey-fg {
  color: #141414 !important;
}
.theme-default-dark .dark-grey-600 {
  background-color: #0F0F0F !important;
  color: white !important;
}
.theme-default-dark .dark-grey-600[disabled] {
  background-color: rgba(15, 15, 15, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .dark-grey-600-bg {
  background-color: #0F0F0F !important;
}
.theme-default-dark .dark-grey-600-fg {
  color: #0F0F0F !important;
}
.theme-default-dark .dark-grey-700 {
  background-color: #0A0A0A !important;
  color: white !important;
}
.theme-default-dark .dark-grey-700[disabled] {
  background-color: rgba(10, 10, 10, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .dark-grey-700-bg {
  background-color: #0A0A0A !important;
}
.theme-default-dark .dark-grey-700-fg {
  color: #0A0A0A !important;
}
.theme-default-dark .dark-grey-800 {
  background-color: #050505 !important;
  color: white !important;
}
.theme-default-dark .dark-grey-800[disabled] {
  background-color: rgba(5, 5, 5, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .dark-grey-800-bg {
  background-color: #050505 !important;
}
.theme-default-dark .dark-grey-800-fg {
  color: #050505 !important;
}
.theme-default-dark .dark-grey-900 {
  background-color: #000000 !important;
  color: white !important;
}
.theme-default-dark .dark-grey-900[disabled] {
  background-color: rgba(0, 0, 0, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .dark-grey-900-bg {
  background-color: #000000 !important;
}
.theme-default-dark .dark-grey-900-fg {
  color: #000000 !important;
}
.theme-default-dark .dark-grey-A100 {
  background-color: #292929 !important;
  color: white !important;
}
.theme-default-dark .dark-grey-A100[disabled] {
  background-color: rgba(41, 41, 41, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .dark-grey-A100-bg {
  background-color: #292929 !important;
}
.theme-default-dark .dark-grey-A100-fg {
  color: #292929 !important;
}
.theme-default-dark .dark-grey-A200 {
  background-color: #242424 !important;
  color: white !important;
}
.theme-default-dark .dark-grey-A200[disabled] {
  background-color: rgba(36, 36, 36, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .dark-grey-A200-bg {
  background-color: #242424 !important;
}
.theme-default-dark .dark-grey-A200-fg {
  color: #242424 !important;
}
.theme-default-dark .dark-grey-A400 {
  background-color: #1A1A1A !important;
  color: white !important;
}
.theme-default-dark .dark-grey-A400[disabled] {
  background-color: rgba(26, 26, 26, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .dark-grey-A400-bg {
  background-color: #1A1A1A !important;
}
.theme-default-dark .dark-grey-A400-fg {
  color: #1A1A1A !important;
}
.theme-default-dark .dark-grey-A700 {
  background-color: #0A0A0A !important;
  color: white !important;
}
.theme-default-dark .dark-grey-A700[disabled] {
  background-color: rgba(10, 10, 10, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .dark-grey-A700-bg {
  background-color: #0A0A0A !important;
}
.theme-default-dark .dark-grey-A700-fg {
  color: #0A0A0A !important;
}
.theme-default-dark .primary-50 {
  background-color: #FFFFFF !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .primary-50[disabled] {
  background-color: rgba(255, 255, 255, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .primary-50-bg {
  background-color: #FFFFFF !important;
}
.theme-default-dark .primary-50-fg {
  color: #FFFFFF !important;
}
.theme-default-dark .primary-100 {
  background-color: #E2E7E9 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .primary-100[disabled] {
  background-color: rgba(226, 231, 233, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .primary-100-bg {
  background-color: #E2E7E9 !important;
}
.theme-default-dark .primary-100-fg {
  color: #E2E7E9 !important;
}
.theme-default-dark .primary-200 {
  background-color: #C4CFD4 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .primary-200[disabled] {
  background-color: rgba(196, 207, 212, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .primary-200-bg {
  background-color: #C4CFD4 !important;
}
.theme-default-dark .primary-200-fg {
  color: #C4CFD4 !important;
}
.theme-default-dark .primary-300 {
  background-color: #A7B6BE !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .primary-300[disabled] {
  background-color: rgba(167, 182, 190, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .primary-300-bg {
  background-color: #A7B6BE !important;
}
.theme-default-dark .primary-300-fg {
  color: #A7B6BE !important;
}
.theme-default-dark .primary-400 {
  background-color: #8A9EA8 !important;
  color: white !important;
}
.theme-default-dark .primary-400[disabled] {
  background-color: rgba(138, 158, 168, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .primary-400-bg {
  background-color: #8A9EA8 !important;
}
.theme-default-dark .primary-400-fg {
  color: #8A9EA8 !important;
}
.theme-default-dark .primary-500 {
  background-color: #7E8E95 !important;
  color: white !important;
}
.theme-default-dark .primary-500[disabled] {
  background-color: rgba(126, 142, 149, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .primary-500-bg {
  background-color: #7E8E95 !important;
}
.theme-default-dark .primary-500-fg {
  color: #7E8E95 !important;
}
.theme-default-dark .primary-bg {
  background-color: #7E8E95 !important;
}
.theme-default-dark .primary-fg {
  color: #7E8E95 !important;
}
.theme-default-dark .primary-600 {
  background-color: #5A6A72 !important;
  color: white !important;
}
.theme-default-dark .primary-600[disabled] {
  background-color: rgba(90, 106, 114, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .primary-600-bg {
  background-color: #5A6A72 !important;
}
.theme-default-dark .primary-600-fg {
  color: #5A6A72 !important;
}
.theme-default-dark .primary-700 {
  background-color: #435056 !important;
  color: white !important;
}
.theme-default-dark .primary-700[disabled] {
  background-color: rgba(67, 80, 86, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .primary-700-bg {
  background-color: #435056 !important;
}
.theme-default-dark .primary-700-fg {
  color: #435056 !important;
}
.theme-default-dark .primary-800 {
  background-color: #2B363B !important;
  color: white !important;
}
.theme-default-dark .primary-800[disabled] {
  background-color: rgba(43, 54, 59, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .primary-800-bg {
  background-color: #2B363B !important;
}
.theme-default-dark .primary-800-fg {
  color: #2B363B !important;
}
.theme-default-dark .primary-900 {
  background-color: #21282C !important;
  color: white !important;
}
.theme-default-dark .primary-900[disabled] {
  background-color: rgba(33, 40, 44, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .primary-900-bg {
  background-color: #21282C !important;
}
.theme-default-dark .primary-900-fg {
  color: #21282C !important;
}
.theme-default-dark .primary-A100 {
  background-color: #E2E7E9 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .primary-A100[disabled] {
  background-color: rgba(226, 231, 233, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .primary-A100-bg {
  background-color: #E2E7E9 !important;
}
.theme-default-dark .primary-A100-fg {
  color: #E2E7E9 !important;
}
.theme-default-dark .primary-A200 {
  background-color: #C4CFD4 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .primary-A200[disabled] {
  background-color: rgba(196, 207, 212, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .primary-A200-bg {
  background-color: #C4CFD4 !important;
}
.theme-default-dark .primary-A200-fg {
  color: #C4CFD4 !important;
}
.theme-default-dark .primary-A400 {
  background-color: #8A9EA8 !important;
  color: white !important;
}
.theme-default-dark .primary-A400[disabled] {
  background-color: rgba(138, 158, 168, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .primary-A400-bg {
  background-color: #8A9EA8 !important;
}
.theme-default-dark .primary-A400-fg {
  color: #8A9EA8 !important;
}
.theme-default-dark .primary-A700 {
  background-color: #435056 !important;
  color: white !important;
}
.theme-default-dark .primary-A700[disabled] {
  background-color: rgba(67, 80, 86, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .primary-A700-bg {
  background-color: #435056 !important;
}
.theme-default-dark .primary-A700-fg {
  color: #435056 !important;
}
.theme-default-dark .accent-50 {
  background-color: #e4ebfb !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .accent-50[disabled] {
  background-color: rgba(228, 235, 251, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .accent-50-bg {
  background-color: #e4ebfb !important;
}
.theme-default-dark .accent-50-fg {
  color: #e4ebfb !important;
}
.theme-default-dark .accent-100 {
  background-color: #bccef4 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .accent-100[disabled] {
  background-color: rgba(188, 206, 244, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .accent-100-bg {
  background-color: #bccef4 !important;
}
.theme-default-dark .accent-100-fg {
  color: #bccef4 !important;
}
.theme-default-dark .accent-200 {
  background-color: #8faded !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .accent-200[disabled] {
  background-color: rgba(143, 173, 237, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .accent-200-bg {
  background-color: #8faded !important;
}
.theme-default-dark .accent-200-fg {
  color: #8faded !important;
}
.theme-default-dark .accent-300 {
  background-color: #628ce5 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .accent-300[disabled] {
  background-color: rgba(98, 140, 229, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .accent-300-bg {
  background-color: #628ce5 !important;
}
.theme-default-dark .accent-300-fg {
  color: #628ce5 !important;
}
.theme-default-dark .accent-400 {
  background-color: #4074e0 !important;
  color: white !important;
}
.theme-default-dark .accent-400[disabled] {
  background-color: rgba(64, 116, 224, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .accent-400-bg {
  background-color: #4074e0 !important;
}
.theme-default-dark .accent-400-fg {
  color: #4074e0 !important;
}
.theme-default-dark .accent-500 {
  background-color: #1e5bda !important;
  color: white !important;
}
.theme-default-dark .accent-500[disabled] {
  background-color: rgba(30, 91, 218, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .accent-500-bg {
  background-color: #1e5bda !important;
}
.theme-default-dark .accent-500-fg {
  color: #1e5bda !important;
}
.theme-default-dark .accent-bg {
  background-color: #1e5bda !important;
}
.theme-default-dark .accent-fg {
  color: #1e5bda !important;
}
.theme-default-dark .accent-600 {
  background-color: #1a53d6 !important;
  color: white !important;
}
.theme-default-dark .accent-600[disabled] {
  background-color: rgba(26, 83, 214, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .accent-600-bg {
  background-color: #1a53d6 !important;
}
.theme-default-dark .accent-600-fg {
  color: #1a53d6 !important;
}
.theme-default-dark .accent-700 {
  background-color: #1649d0 !important;
  color: white !important;
}
.theme-default-dark .accent-700[disabled] {
  background-color: rgba(22, 73, 208, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .accent-700-bg {
  background-color: #1649d0 !important;
}
.theme-default-dark .accent-700-fg {
  color: #1649d0 !important;
}
.theme-default-dark .accent-800 {
  background-color: #1240cb !important;
  color: white !important;
}
.theme-default-dark .accent-800[disabled] {
  background-color: rgba(18, 64, 203, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .accent-800-bg {
  background-color: #1240cb !important;
}
.theme-default-dark .accent-800-fg {
  color: #1240cb !important;
}
.theme-default-dark .accent-900 {
  background-color: #0a2fc2 !important;
  color: white !important;
}
.theme-default-dark .accent-900[disabled] {
  background-color: rgba(10, 47, 194, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .accent-900-bg {
  background-color: #0a2fc2 !important;
}
.theme-default-dark .accent-900-fg {
  color: #0a2fc2 !important;
}
.theme-default-dark .accent-A100 {
  background-color: #82b1ff !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .accent-A100[disabled] {
  background-color: rgba(130, 177, 255, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .accent-A100-bg {
  background-color: #82b1ff !important;
}
.theme-default-dark .accent-A100-fg {
  color: #82b1ff !important;
}
.theme-default-dark .accent-A200 {
  background-color: #448aff !important;
  color: white !important;
}
.theme-default-dark .accent-A200[disabled] {
  background-color: rgba(68, 138, 255, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .accent-A200-bg {
  background-color: #448aff !important;
}
.theme-default-dark .accent-A200-fg {
  color: #448aff !important;
}
.theme-default-dark .accent-A400 {
  background-color: #2979ff !important;
  color: white !important;
}
.theme-default-dark .accent-A400[disabled] {
  background-color: rgba(41, 121, 255, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .accent-A400-bg {
  background-color: #2979ff !important;
}
.theme-default-dark .accent-A400-fg {
  color: #2979ff !important;
}
.theme-default-dark .accent-A700 {
  background-color: #2962ff !important;
  color: white !important;
}
.theme-default-dark .accent-A700[disabled] {
  background-color: rgba(41, 98, 255, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .accent-A700-bg {
  background-color: #2962ff !important;
}
.theme-default-dark .accent-A700-fg {
  color: #2962ff !important;
}
.theme-default-dark .warn-50 {
  background-color: #fce7e7 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .warn-50[disabled] {
  background-color: rgba(252, 231, 231, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .warn-50-bg {
  background-color: #fce7e7 !important;
}
.theme-default-dark .warn-50-fg {
  color: #fce7e7 !important;
}
.theme-default-dark .warn-100 {
  background-color: #f7c4c4 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .warn-100[disabled] {
  background-color: rgba(247, 196, 196, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .warn-100-bg {
  background-color: #f7c4c4 !important;
}
.theme-default-dark .warn-100-fg {
  color: #f7c4c4 !important;
}
.theme-default-dark .warn-200 {
  background-color: #f29d9d !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .warn-200[disabled] {
  background-color: rgba(242, 157, 157, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .warn-200-bg {
  background-color: #f29d9d !important;
}
.theme-default-dark .warn-200-fg {
  color: #f29d9d !important;
}
.theme-default-dark .warn-300 {
  background-color: #ed7575 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .warn-300[disabled] {
  background-color: rgba(237, 117, 117, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .warn-300-bg {
  background-color: #ed7575 !important;
}
.theme-default-dark .warn-300-fg {
  color: #ed7575 !important;
}
.theme-default-dark .warn-400 {
  background-color: #e95858 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .warn-400[disabled] {
  background-color: rgba(233, 88, 88, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .warn-400-bg {
  background-color: #e95858 !important;
}
.theme-default-dark .warn-400-fg {
  color: #e95858 !important;
}
.theme-default-dark .warn-500 {
  background-color: #e53a3a !important;
  color: white !important;
}
.theme-default-dark .warn-500[disabled] {
  background-color: rgba(229, 58, 58, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .warn-500-bg {
  background-color: #e53a3a !important;
}
.theme-default-dark .warn-500-fg {
  color: #e53a3a !important;
}
.theme-default-dark .warn-bg {
  background-color: #e53a3a !important;
}
.theme-default-dark .warn-fg {
  color: #e53a3a !important;
}
.theme-default-dark .warn-600 {
  background-color: #e23434 !important;
  color: white !important;
}
.theme-default-dark .warn-600[disabled] {
  background-color: rgba(226, 52, 52, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .warn-600-bg {
  background-color: #e23434 !important;
}
.theme-default-dark .warn-600-fg {
  color: #e23434 !important;
}
.theme-default-dark .warn-700 {
  background-color: #de2c2c !important;
  color: white !important;
}
.theme-default-dark .warn-700[disabled] {
  background-color: rgba(222, 44, 44, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .warn-700-bg {
  background-color: #de2c2c !important;
}
.theme-default-dark .warn-700-fg {
  color: #de2c2c !important;
}
.theme-default-dark .warn-800 {
  background-color: #da2525 !important;
  color: white !important;
}
.theme-default-dark .warn-800[disabled] {
  background-color: rgba(218, 37, 37, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .warn-800-bg {
  background-color: #da2525 !important;
}
.theme-default-dark .warn-800-fg {
  color: #da2525 !important;
}
.theme-default-dark .warn-900 {
  background-color: #d31818 !important;
  color: white !important;
}
.theme-default-dark .warn-900[disabled] {
  background-color: rgba(211, 24, 24, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .warn-900-bg {
  background-color: #d31818 !important;
}
.theme-default-dark .warn-900-fg {
  color: #d31818 !important;
}
.theme-default-dark .warn-A100 {
  background-color: #ff8a80 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
.theme-default-dark .warn-A100[disabled] {
  background-color: rgba(255, 138, 128, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
}
.theme-default-dark .warn-A100-bg {
  background-color: #ff8a80 !important;
}
.theme-default-dark .warn-A100-fg {
  color: #ff8a80 !important;
}
.theme-default-dark .warn-A200 {
  background-color: #ff5252 !important;
  color: white !important;
}
.theme-default-dark .warn-A200[disabled] {
  background-color: rgba(255, 82, 82, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .warn-A200-bg {
  background-color: #ff5252 !important;
}
.theme-default-dark .warn-A200-fg {
  color: #ff5252 !important;
}
.theme-default-dark .warn-A400 {
  background-color: #ff1744 !important;
  color: white !important;
}
.theme-default-dark .warn-A400[disabled] {
  background-color: rgba(255, 23, 68, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .warn-A400-bg {
  background-color: #ff1744 !important;
}
.theme-default-dark .warn-A400-fg {
  color: #ff1744 !important;
}
.theme-default-dark .warn-A700 {
  background-color: #d50000 !important;
  color: white !important;
}
.theme-default-dark .warn-A700[disabled] {
  background-color: rgba(213, 0, 0, 0.12) !important;
  color: rgba(255, 255, 255, 0.26) !important;
}
.theme-default-dark .warn-A700-bg {
  background-color: #d50000 !important;
}
.theme-default-dark .warn-A700-fg {
  color: #d50000 !important;
}
.theme-default-dark .red-50.secondary-text,
.theme-default-dark .red-50 .secondary-text, .theme-default-dark .red-100.secondary-text,
.theme-default-dark .red-100 .secondary-text, .theme-default-dark .red-200.secondary-text,
.theme-default-dark .red-200 .secondary-text, .theme-default-dark .red-300.secondary-text,
.theme-default-dark .red-300 .secondary-text, .theme-default-dark .red-400.secondary-text,
.theme-default-dark .red-400 .secondary-text, .theme-default-dark .red-A100.secondary-text,
.theme-default-dark .red-A100 .secondary-text, .theme-default-dark .pink-50.secondary-text,
.theme-default-dark .pink-50 .secondary-text, .theme-default-dark .pink-100.secondary-text,
.theme-default-dark .pink-100 .secondary-text, .theme-default-dark .pink-200.secondary-text,
.theme-default-dark .pink-200 .secondary-text, .theme-default-dark .pink-300.secondary-text,
.theme-default-dark .pink-300 .secondary-text, .theme-default-dark .pink-400.secondary-text,
.theme-default-dark .pink-400 .secondary-text, .theme-default-dark .pink-A100.secondary-text,
.theme-default-dark .pink-A100 .secondary-text, .theme-default-dark .purple-50.secondary-text,
.theme-default-dark .purple-50 .secondary-text, .theme-default-dark .purple-100.secondary-text,
.theme-default-dark .purple-100 .secondary-text, .theme-default-dark .purple-200.secondary-text,
.theme-default-dark .purple-200 .secondary-text, .theme-default-dark .purple-A100.secondary-text,
.theme-default-dark .purple-A100 .secondary-text, .theme-default-dark .deep-purple-50.secondary-text,
.theme-default-dark .deep-purple-50 .secondary-text, .theme-default-dark .deep-purple-100.secondary-text,
.theme-default-dark .deep-purple-100 .secondary-text, .theme-default-dark .deep-purple-200.secondary-text,
.theme-default-dark .deep-purple-200 .secondary-text, .theme-default-dark .deep-purple-A100.secondary-text,
.theme-default-dark .deep-purple-A100 .secondary-text, .theme-default-dark .indigo-50.secondary-text,
.theme-default-dark .indigo-50 .secondary-text, .theme-default-dark .indigo-100.secondary-text,
.theme-default-dark .indigo-100 .secondary-text, .theme-default-dark .indigo-200.secondary-text,
.theme-default-dark .indigo-200 .secondary-text, .theme-default-dark .indigo-A100.secondary-text,
.theme-default-dark .indigo-A100 .secondary-text, .theme-default-dark .blue-50.secondary-text,
.theme-default-dark .blue-50 .secondary-text, .theme-default-dark .blue-100.secondary-text,
.theme-default-dark .blue-100 .secondary-text, .theme-default-dark .blue-200.secondary-text,
.theme-default-dark .blue-200 .secondary-text, .theme-default-dark .blue-300.secondary-text,
.theme-default-dark .blue-300 .secondary-text, .theme-default-dark .blue-A100.secondary-text,
.theme-default-dark .blue-A100 .secondary-text, .theme-default-dark .light-blue-50.secondary-text,
.theme-default-dark .light-blue-50 .secondary-text, .theme-default-dark .light-blue-100.secondary-text,
.theme-default-dark .light-blue-100 .secondary-text, .theme-default-dark .light-blue-200.secondary-text,
.theme-default-dark .light-blue-200 .secondary-text, .theme-default-dark .light-blue-300.secondary-text,
.theme-default-dark .light-blue-300 .secondary-text, .theme-default-dark .light-blue-400.secondary-text,
.theme-default-dark .light-blue-400 .secondary-text, .theme-default-dark .light-blue-A100.secondary-text,
.theme-default-dark .light-blue-A100 .secondary-text, .theme-default-dark .light-blue-A200.secondary-text,
.theme-default-dark .light-blue-A200 .secondary-text, .theme-default-dark .light-blue-A400.secondary-text,
.theme-default-dark .light-blue-A400 .secondary-text, .theme-default-dark .cyan-50.secondary-text,
.theme-default-dark .cyan-50 .secondary-text, .theme-default-dark .cyan-100.secondary-text,
.theme-default-dark .cyan-100 .secondary-text, .theme-default-dark .cyan-200.secondary-text,
.theme-default-dark .cyan-200 .secondary-text, .theme-default-dark .cyan-300.secondary-text,
.theme-default-dark .cyan-300 .secondary-text, .theme-default-dark .cyan-400.secondary-text,
.theme-default-dark .cyan-400 .secondary-text, .theme-default-dark .cyan-A100.secondary-text,
.theme-default-dark .cyan-A100 .secondary-text, .theme-default-dark .cyan-A200.secondary-text,
.theme-default-dark .cyan-A200 .secondary-text, .theme-default-dark .cyan-A400.secondary-text,
.theme-default-dark .cyan-A400 .secondary-text, .theme-default-dark .cyan-A700.secondary-text,
.theme-default-dark .cyan-A700 .secondary-text, .theme-default-dark .teal-50.secondary-text,
.theme-default-dark .teal-50 .secondary-text, .theme-default-dark .teal-100.secondary-text,
.theme-default-dark .teal-100 .secondary-text, .theme-default-dark .teal-200.secondary-text,
.theme-default-dark .teal-200 .secondary-text, .theme-default-dark .teal-300.secondary-text,
.theme-default-dark .teal-300 .secondary-text, .theme-default-dark .teal-400.secondary-text,
.theme-default-dark .teal-400 .secondary-text, .theme-default-dark .teal-A100.secondary-text,
.theme-default-dark .teal-A100 .secondary-text, .theme-default-dark .teal-A200.secondary-text,
.theme-default-dark .teal-A200 .secondary-text, .theme-default-dark .teal-A400.secondary-text,
.theme-default-dark .teal-A400 .secondary-text, .theme-default-dark .teal-A700.secondary-text,
.theme-default-dark .teal-A700 .secondary-text, .theme-default-dark .green-50.secondary-text,
.theme-default-dark .green-50 .secondary-text, .theme-default-dark .green-100.secondary-text,
.theme-default-dark .green-100 .secondary-text, .theme-default-dark .green-200.secondary-text,
.theme-default-dark .green-200 .secondary-text, .theme-default-dark .green-300.secondary-text,
.theme-default-dark .green-300 .secondary-text, .theme-default-dark .green-400.secondary-text,
.theme-default-dark .green-400 .secondary-text, .theme-default-dark .green-A100.secondary-text,
.theme-default-dark .green-A100 .secondary-text, .theme-default-dark .green-A200.secondary-text,
.theme-default-dark .green-A200 .secondary-text, .theme-default-dark .green-A400.secondary-text,
.theme-default-dark .green-A400 .secondary-text, .theme-default-dark .green-A700.secondary-text,
.theme-default-dark .green-A700 .secondary-text, .theme-default-dark .light-green-50.secondary-text,
.theme-default-dark .light-green-50 .secondary-text, .theme-default-dark .light-green-100.secondary-text,
.theme-default-dark .light-green-100 .secondary-text, .theme-default-dark .light-green-200.secondary-text,
.theme-default-dark .light-green-200 .secondary-text, .theme-default-dark .light-green-300.secondary-text,
.theme-default-dark .light-green-300 .secondary-text, .theme-default-dark .light-green-400.secondary-text,
.theme-default-dark .light-green-400 .secondary-text, .theme-default-dark .light-green-500.secondary-text,
.theme-default-dark .light-green-500 .secondary-text, .theme-default-dark .light-green-A100.secondary-text,
.theme-default-dark .light-green-A100 .secondary-text, .theme-default-dark .light-green-A200.secondary-text,
.theme-default-dark .light-green-A200 .secondary-text, .theme-default-dark .light-green-A400.secondary-text,
.theme-default-dark .light-green-A400 .secondary-text, .theme-default-dark .light-green-A700.secondary-text,
.theme-default-dark .light-green-A700 .secondary-text, .theme-default-dark .lime-50.secondary-text,
.theme-default-dark .lime-50 .secondary-text, .theme-default-dark .lime-100.secondary-text,
.theme-default-dark .lime-100 .secondary-text, .theme-default-dark .lime-200.secondary-text,
.theme-default-dark .lime-200 .secondary-text, .theme-default-dark .lime-300.secondary-text,
.theme-default-dark .lime-300 .secondary-text, .theme-default-dark .lime-400.secondary-text,
.theme-default-dark .lime-400 .secondary-text, .theme-default-dark .lime-A100.secondary-text,
.theme-default-dark .lime-A100 .secondary-text, .theme-default-dark .lime-A200.secondary-text,
.theme-default-dark .lime-A200 .secondary-text, .theme-default-dark .lime-A400.secondary-text,
.theme-default-dark .lime-A400 .secondary-text, .theme-default-dark .lime-A700.secondary-text,
.theme-default-dark .lime-A700 .secondary-text, .theme-default-dark .yellow-50.secondary-text,
.theme-default-dark .yellow-50 .secondary-text, .theme-default-dark .yellow-100.secondary-text,
.theme-default-dark .yellow-100 .secondary-text, .theme-default-dark .yellow-200.secondary-text,
.theme-default-dark .yellow-200 .secondary-text, .theme-default-dark .yellow-300.secondary-text,
.theme-default-dark .yellow-300 .secondary-text, .theme-default-dark .yellow-400.secondary-text,
.theme-default-dark .yellow-400 .secondary-text, .theme-default-dark .yellow-500.secondary-text,
.theme-default-dark .yellow-500 .secondary-text, .theme-default-dark .yellow-600.secondary-text,
.theme-default-dark .yellow-600 .secondary-text, .theme-default-dark .yellow-700.secondary-text,
.theme-default-dark .yellow-700 .secondary-text, .theme-default-dark .yellow-800.secondary-text,
.theme-default-dark .yellow-800 .secondary-text, .theme-default-dark .yellow-900.secondary-text,
.theme-default-dark .yellow-900 .secondary-text, .theme-default-dark .yellow-A100.secondary-text,
.theme-default-dark .yellow-A100 .secondary-text, .theme-default-dark .yellow-A200.secondary-text,
.theme-default-dark .yellow-A200 .secondary-text, .theme-default-dark .yellow-A400.secondary-text,
.theme-default-dark .yellow-A400 .secondary-text, .theme-default-dark .yellow-A700.secondary-text,
.theme-default-dark .yellow-A700 .secondary-text, .theme-default-dark .amber-50.secondary-text,
.theme-default-dark .amber-50 .secondary-text, .theme-default-dark .amber-100.secondary-text,
.theme-default-dark .amber-100 .secondary-text, .theme-default-dark .amber-200.secondary-text,
.theme-default-dark .amber-200 .secondary-text, .theme-default-dark .amber-300.secondary-text,
.theme-default-dark .amber-300 .secondary-text, .theme-default-dark .amber-400.secondary-text,
.theme-default-dark .amber-400 .secondary-text, .theme-default-dark .amber-500.secondary-text,
.theme-default-dark .amber-500 .secondary-text, .theme-default-dark .amber-600.secondary-text,
.theme-default-dark .amber-600 .secondary-text, .theme-default-dark .amber-700.secondary-text,
.theme-default-dark .amber-700 .secondary-text, .theme-default-dark .amber-800.secondary-text,
.theme-default-dark .amber-800 .secondary-text, .theme-default-dark .amber-900.secondary-text,
.theme-default-dark .amber-900 .secondary-text, .theme-default-dark .amber-A100.secondary-text,
.theme-default-dark .amber-A100 .secondary-text, .theme-default-dark .amber-A200.secondary-text,
.theme-default-dark .amber-A200 .secondary-text, .theme-default-dark .amber-A400.secondary-text,
.theme-default-dark .amber-A400 .secondary-text, .theme-default-dark .amber-A700.secondary-text,
.theme-default-dark .amber-A700 .secondary-text, .theme-default-dark .orange-50.secondary-text,
.theme-default-dark .orange-50 .secondary-text, .theme-default-dark .orange-100.secondary-text,
.theme-default-dark .orange-100 .secondary-text, .theme-default-dark .orange-200.secondary-text,
.theme-default-dark .orange-200 .secondary-text, .theme-default-dark .orange-300.secondary-text,
.theme-default-dark .orange-300 .secondary-text, .theme-default-dark .orange-400.secondary-text,
.theme-default-dark .orange-400 .secondary-text, .theme-default-dark .orange-500.secondary-text,
.theme-default-dark .orange-500 .secondary-text, .theme-default-dark .orange-600.secondary-text,
.theme-default-dark .orange-600 .secondary-text, .theme-default-dark .orange-700.secondary-text,
.theme-default-dark .orange-700 .secondary-text, .theme-default-dark .orange-A100.secondary-text,
.theme-default-dark .orange-A100 .secondary-text, .theme-default-dark .orange-A200.secondary-text,
.theme-default-dark .orange-A200 .secondary-text, .theme-default-dark .orange-A400.secondary-text,
.theme-default-dark .orange-A400 .secondary-text, .theme-default-dark .orange-A700.secondary-text,
.theme-default-dark .orange-A700 .secondary-text, .theme-default-dark .deep-orange-50.secondary-text,
.theme-default-dark .deep-orange-50 .secondary-text, .theme-default-dark .deep-orange-100.secondary-text,
.theme-default-dark .deep-orange-100 .secondary-text, .theme-default-dark .deep-orange-200.secondary-text,
.theme-default-dark .deep-orange-200 .secondary-text, .theme-default-dark .deep-orange-300.secondary-text,
.theme-default-dark .deep-orange-300 .secondary-text, .theme-default-dark .deep-orange-400.secondary-text,
.theme-default-dark .deep-orange-400 .secondary-text, .theme-default-dark .deep-orange-A100.secondary-text,
.theme-default-dark .deep-orange-A100 .secondary-text, .theme-default-dark .deep-orange-A200.secondary-text,
.theme-default-dark .deep-orange-A200 .secondary-text, .theme-default-dark .brown-50.secondary-text,
.theme-default-dark .brown-50 .secondary-text, .theme-default-dark .brown-100.secondary-text,
.theme-default-dark .brown-100 .secondary-text, .theme-default-dark .brown-200.secondary-text,
.theme-default-dark .brown-200 .secondary-text, .theme-default-dark .brown-A100.secondary-text,
.theme-default-dark .brown-A100 .secondary-text, .theme-default-dark .brown-A200.secondary-text,
.theme-default-dark .brown-A200 .secondary-text, .theme-default-dark .grey-50.secondary-text,
.theme-default-dark .grey-50 .secondary-text, .theme-default-dark .grey-100.secondary-text,
.theme-default-dark .grey-100 .secondary-text, .theme-default-dark .grey-200.secondary-text,
.theme-default-dark .grey-200 .secondary-text, .theme-default-dark .grey-300.secondary-text,
.theme-default-dark .grey-300 .secondary-text, .theme-default-dark .grey-400.secondary-text,
.theme-default-dark .grey-400 .secondary-text, .theme-default-dark .grey-A100.secondary-text,
.theme-default-dark .grey-A100 .secondary-text, .theme-default-dark .grey-A200.secondary-text,
.theme-default-dark .grey-A200 .secondary-text, .theme-default-dark .grey-A400.secondary-text,
.theme-default-dark .grey-A400 .secondary-text, .theme-default-dark .grey-A700.secondary-text,
.theme-default-dark .grey-A700 .secondary-text, .theme-default-dark .blue-grey-50.secondary-text,
.theme-default-dark .blue-grey-50 .secondary-text, .theme-default-dark .blue-grey-100.secondary-text,
.theme-default-dark .blue-grey-100 .secondary-text, .theme-default-dark .blue-grey-200.secondary-text,
.theme-default-dark .blue-grey-200 .secondary-text, .theme-default-dark .blue-grey-300.secondary-text,
.theme-default-dark .blue-grey-300 .secondary-text, .theme-default-dark .blue-grey-A100.secondary-text,
.theme-default-dark .blue-grey-A100 .secondary-text, .theme-default-dark .blue-grey-A200.secondary-text,
.theme-default-dark .blue-grey-A200 .secondary-text, .theme-default-dark .light-grey-50.secondary-text,
.theme-default-dark .light-grey-50 .secondary-text, .theme-default-dark .light-grey-100.secondary-text,
.theme-default-dark .light-grey-100 .secondary-text, .theme-default-dark .light-grey-200.secondary-text,
.theme-default-dark .light-grey-200 .secondary-text, .theme-default-dark .light-grey-300.secondary-text,
.theme-default-dark .light-grey-300 .secondary-text, .theme-default-dark .light-grey-400.secondary-text,
.theme-default-dark .light-grey-400 .secondary-text, .theme-default-dark .light-grey-500.secondary-text,
.theme-default-dark .light-grey-500 .secondary-text, .theme-default-dark .light-grey-600.secondary-text,
.theme-default-dark .light-grey-600 .secondary-text, .theme-default-dark .light-grey-700.secondary-text,
.theme-default-dark .light-grey-700 .secondary-text, .theme-default-dark .light-grey-800.secondary-text,
.theme-default-dark .light-grey-800 .secondary-text, .theme-default-dark .light-grey-900.secondary-text,
.theme-default-dark .light-grey-900 .secondary-text, .theme-default-dark .light-grey-A100.secondary-text,
.theme-default-dark .light-grey-A100 .secondary-text, .theme-default-dark .light-grey-A200.secondary-text,
.theme-default-dark .light-grey-A200 .secondary-text, .theme-default-dark .light-grey-A400.secondary-text,
.theme-default-dark .light-grey-A400 .secondary-text, .theme-default-dark .light-grey-A700.secondary-text,
.theme-default-dark .light-grey-A700 .secondary-text, .theme-default-dark .primary-50.secondary-text,
.theme-default-dark .primary-50 .secondary-text, .theme-default-dark .primary-100.secondary-text,
.theme-default-dark .primary-100 .secondary-text, .theme-default-dark .primary-200.secondary-text,
.theme-default-dark .primary-200 .secondary-text, .theme-default-dark .primary-300.secondary-text,
.theme-default-dark .primary-300 .secondary-text, .theme-default-dark .primary-A100.secondary-text,
.theme-default-dark .primary-A100 .secondary-text, .theme-default-dark .primary-A200.secondary-text,
.theme-default-dark .primary-A200 .secondary-text, .theme-default-dark .accent-50.secondary-text,
.theme-default-dark .accent-50 .secondary-text, .theme-default-dark .accent-100.secondary-text,
.theme-default-dark .accent-100 .secondary-text, .theme-default-dark .accent-200.secondary-text,
.theme-default-dark .accent-200 .secondary-text, .theme-default-dark .accent-300.secondary-text,
.theme-default-dark .accent-300 .secondary-text, .theme-default-dark .accent-A100.secondary-text,
.theme-default-dark .accent-A100 .secondary-text, .theme-default-dark .warn-50.secondary-text,
.theme-default-dark .warn-50 .secondary-text, .theme-default-dark .warn-100.secondary-text,
.theme-default-dark .warn-100 .secondary-text, .theme-default-dark .warn-200.secondary-text,
.theme-default-dark .warn-200 .secondary-text, .theme-default-dark .warn-300.secondary-text,
.theme-default-dark .warn-300 .secondary-text, .theme-default-dark .warn-400.secondary-text,
.theme-default-dark .warn-400 .secondary-text, .theme-default-dark .warn-A100.secondary-text,
.theme-default-dark .warn-A100 .secondary-text {
  color: rgba(0, 0, 0, 0.54) !important;
}
.theme-default-dark .red-50.hint-text,
.theme-default-dark .red-50 .hint-text, .theme-default-dark .red-50.disabled-text,
.theme-default-dark .red-50 .disabled-text, .theme-default-dark .red-100.hint-text,
.theme-default-dark .red-100 .hint-text, .theme-default-dark .red-100.disabled-text,
.theme-default-dark .red-100 .disabled-text, .theme-default-dark .red-200.hint-text,
.theme-default-dark .red-200 .hint-text, .theme-default-dark .red-200.disabled-text,
.theme-default-dark .red-200 .disabled-text, .theme-default-dark .red-300.hint-text,
.theme-default-dark .red-300 .hint-text, .theme-default-dark .red-300.disabled-text,
.theme-default-dark .red-300 .disabled-text, .theme-default-dark .red-400.hint-text,
.theme-default-dark .red-400 .hint-text, .theme-default-dark .red-400.disabled-text,
.theme-default-dark .red-400 .disabled-text, .theme-default-dark .red-A100.hint-text,
.theme-default-dark .red-A100 .hint-text, .theme-default-dark .red-A100.disabled-text,
.theme-default-dark .red-A100 .disabled-text, .theme-default-dark .pink-50.hint-text,
.theme-default-dark .pink-50 .hint-text, .theme-default-dark .pink-50.disabled-text,
.theme-default-dark .pink-50 .disabled-text, .theme-default-dark .pink-100.hint-text,
.theme-default-dark .pink-100 .hint-text, .theme-default-dark .pink-100.disabled-text,
.theme-default-dark .pink-100 .disabled-text, .theme-default-dark .pink-200.hint-text,
.theme-default-dark .pink-200 .hint-text, .theme-default-dark .pink-200.disabled-text,
.theme-default-dark .pink-200 .disabled-text, .theme-default-dark .pink-300.hint-text,
.theme-default-dark .pink-300 .hint-text, .theme-default-dark .pink-300.disabled-text,
.theme-default-dark .pink-300 .disabled-text, .theme-default-dark .pink-400.hint-text,
.theme-default-dark .pink-400 .hint-text, .theme-default-dark .pink-400.disabled-text,
.theme-default-dark .pink-400 .disabled-text, .theme-default-dark .pink-A100.hint-text,
.theme-default-dark .pink-A100 .hint-text, .theme-default-dark .pink-A100.disabled-text,
.theme-default-dark .pink-A100 .disabled-text, .theme-default-dark .purple-50.hint-text,
.theme-default-dark .purple-50 .hint-text, .theme-default-dark .purple-50.disabled-text,
.theme-default-dark .purple-50 .disabled-text, .theme-default-dark .purple-100.hint-text,
.theme-default-dark .purple-100 .hint-text, .theme-default-dark .purple-100.disabled-text,
.theme-default-dark .purple-100 .disabled-text, .theme-default-dark .purple-200.hint-text,
.theme-default-dark .purple-200 .hint-text, .theme-default-dark .purple-200.disabled-text,
.theme-default-dark .purple-200 .disabled-text, .theme-default-dark .purple-A100.hint-text,
.theme-default-dark .purple-A100 .hint-text, .theme-default-dark .purple-A100.disabled-text,
.theme-default-dark .purple-A100 .disabled-text, .theme-default-dark .deep-purple-50.hint-text,
.theme-default-dark .deep-purple-50 .hint-text, .theme-default-dark .deep-purple-50.disabled-text,
.theme-default-dark .deep-purple-50 .disabled-text, .theme-default-dark .deep-purple-100.hint-text,
.theme-default-dark .deep-purple-100 .hint-text, .theme-default-dark .deep-purple-100.disabled-text,
.theme-default-dark .deep-purple-100 .disabled-text, .theme-default-dark .deep-purple-200.hint-text,
.theme-default-dark .deep-purple-200 .hint-text, .theme-default-dark .deep-purple-200.disabled-text,
.theme-default-dark .deep-purple-200 .disabled-text, .theme-default-dark .deep-purple-A100.hint-text,
.theme-default-dark .deep-purple-A100 .hint-text, .theme-default-dark .deep-purple-A100.disabled-text,
.theme-default-dark .deep-purple-A100 .disabled-text, .theme-default-dark .indigo-50.hint-text,
.theme-default-dark .indigo-50 .hint-text, .theme-default-dark .indigo-50.disabled-text,
.theme-default-dark .indigo-50 .disabled-text, .theme-default-dark .indigo-100.hint-text,
.theme-default-dark .indigo-100 .hint-text, .theme-default-dark .indigo-100.disabled-text,
.theme-default-dark .indigo-100 .disabled-text, .theme-default-dark .indigo-200.hint-text,
.theme-default-dark .indigo-200 .hint-text, .theme-default-dark .indigo-200.disabled-text,
.theme-default-dark .indigo-200 .disabled-text, .theme-default-dark .indigo-A100.hint-text,
.theme-default-dark .indigo-A100 .hint-text, .theme-default-dark .indigo-A100.disabled-text,
.theme-default-dark .indigo-A100 .disabled-text, .theme-default-dark .blue-50.hint-text,
.theme-default-dark .blue-50 .hint-text, .theme-default-dark .blue-50.disabled-text,
.theme-default-dark .blue-50 .disabled-text, .theme-default-dark .blue-100.hint-text,
.theme-default-dark .blue-100 .hint-text, .theme-default-dark .blue-100.disabled-text,
.theme-default-dark .blue-100 .disabled-text, .theme-default-dark .blue-200.hint-text,
.theme-default-dark .blue-200 .hint-text, .theme-default-dark .blue-200.disabled-text,
.theme-default-dark .blue-200 .disabled-text, .theme-default-dark .blue-300.hint-text,
.theme-default-dark .blue-300 .hint-text, .theme-default-dark .blue-300.disabled-text,
.theme-default-dark .blue-300 .disabled-text, .theme-default-dark .blue-A100.hint-text,
.theme-default-dark .blue-A100 .hint-text, .theme-default-dark .blue-A100.disabled-text,
.theme-default-dark .blue-A100 .disabled-text, .theme-default-dark .light-blue-50.hint-text,
.theme-default-dark .light-blue-50 .hint-text, .theme-default-dark .light-blue-50.disabled-text,
.theme-default-dark .light-blue-50 .disabled-text, .theme-default-dark .light-blue-100.hint-text,
.theme-default-dark .light-blue-100 .hint-text, .theme-default-dark .light-blue-100.disabled-text,
.theme-default-dark .light-blue-100 .disabled-text, .theme-default-dark .light-blue-200.hint-text,
.theme-default-dark .light-blue-200 .hint-text, .theme-default-dark .light-blue-200.disabled-text,
.theme-default-dark .light-blue-200 .disabled-text, .theme-default-dark .light-blue-300.hint-text,
.theme-default-dark .light-blue-300 .hint-text, .theme-default-dark .light-blue-300.disabled-text,
.theme-default-dark .light-blue-300 .disabled-text, .theme-default-dark .light-blue-400.hint-text,
.theme-default-dark .light-blue-400 .hint-text, .theme-default-dark .light-blue-400.disabled-text,
.theme-default-dark .light-blue-400 .disabled-text, .theme-default-dark .light-blue-A100.hint-text,
.theme-default-dark .light-blue-A100 .hint-text, .theme-default-dark .light-blue-A100.disabled-text,
.theme-default-dark .light-blue-A100 .disabled-text, .theme-default-dark .light-blue-A200.hint-text,
.theme-default-dark .light-blue-A200 .hint-text, .theme-default-dark .light-blue-A200.disabled-text,
.theme-default-dark .light-blue-A200 .disabled-text, .theme-default-dark .light-blue-A400.hint-text,
.theme-default-dark .light-blue-A400 .hint-text, .theme-default-dark .light-blue-A400.disabled-text,
.theme-default-dark .light-blue-A400 .disabled-text, .theme-default-dark .cyan-50.hint-text,
.theme-default-dark .cyan-50 .hint-text, .theme-default-dark .cyan-50.disabled-text,
.theme-default-dark .cyan-50 .disabled-text, .theme-default-dark .cyan-100.hint-text,
.theme-default-dark .cyan-100 .hint-text, .theme-default-dark .cyan-100.disabled-text,
.theme-default-dark .cyan-100 .disabled-text, .theme-default-dark .cyan-200.hint-text,
.theme-default-dark .cyan-200 .hint-text, .theme-default-dark .cyan-200.disabled-text,
.theme-default-dark .cyan-200 .disabled-text, .theme-default-dark .cyan-300.hint-text,
.theme-default-dark .cyan-300 .hint-text, .theme-default-dark .cyan-300.disabled-text,
.theme-default-dark .cyan-300 .disabled-text, .theme-default-dark .cyan-400.hint-text,
.theme-default-dark .cyan-400 .hint-text, .theme-default-dark .cyan-400.disabled-text,
.theme-default-dark .cyan-400 .disabled-text, .theme-default-dark .cyan-A100.hint-text,
.theme-default-dark .cyan-A100 .hint-text, .theme-default-dark .cyan-A100.disabled-text,
.theme-default-dark .cyan-A100 .disabled-text, .theme-default-dark .cyan-A200.hint-text,
.theme-default-dark .cyan-A200 .hint-text, .theme-default-dark .cyan-A200.disabled-text,
.theme-default-dark .cyan-A200 .disabled-text, .theme-default-dark .cyan-A400.hint-text,
.theme-default-dark .cyan-A400 .hint-text, .theme-default-dark .cyan-A400.disabled-text,
.theme-default-dark .cyan-A400 .disabled-text, .theme-default-dark .cyan-A700.hint-text,
.theme-default-dark .cyan-A700 .hint-text, .theme-default-dark .cyan-A700.disabled-text,
.theme-default-dark .cyan-A700 .disabled-text, .theme-default-dark .teal-50.hint-text,
.theme-default-dark .teal-50 .hint-text, .theme-default-dark .teal-50.disabled-text,
.theme-default-dark .teal-50 .disabled-text, .theme-default-dark .teal-100.hint-text,
.theme-default-dark .teal-100 .hint-text, .theme-default-dark .teal-100.disabled-text,
.theme-default-dark .teal-100 .disabled-text, .theme-default-dark .teal-200.hint-text,
.theme-default-dark .teal-200 .hint-text, .theme-default-dark .teal-200.disabled-text,
.theme-default-dark .teal-200 .disabled-text, .theme-default-dark .teal-300.hint-text,
.theme-default-dark .teal-300 .hint-text, .theme-default-dark .teal-300.disabled-text,
.theme-default-dark .teal-300 .disabled-text, .theme-default-dark .teal-400.hint-text,
.theme-default-dark .teal-400 .hint-text, .theme-default-dark .teal-400.disabled-text,
.theme-default-dark .teal-400 .disabled-text, .theme-default-dark .teal-A100.hint-text,
.theme-default-dark .teal-A100 .hint-text, .theme-default-dark .teal-A100.disabled-text,
.theme-default-dark .teal-A100 .disabled-text, .theme-default-dark .teal-A200.hint-text,
.theme-default-dark .teal-A200 .hint-text, .theme-default-dark .teal-A200.disabled-text,
.theme-default-dark .teal-A200 .disabled-text, .theme-default-dark .teal-A400.hint-text,
.theme-default-dark .teal-A400 .hint-text, .theme-default-dark .teal-A400.disabled-text,
.theme-default-dark .teal-A400 .disabled-text, .theme-default-dark .teal-A700.hint-text,
.theme-default-dark .teal-A700 .hint-text, .theme-default-dark .teal-A700.disabled-text,
.theme-default-dark .teal-A700 .disabled-text, .theme-default-dark .green-50.hint-text,
.theme-default-dark .green-50 .hint-text, .theme-default-dark .green-50.disabled-text,
.theme-default-dark .green-50 .disabled-text, .theme-default-dark .green-100.hint-text,
.theme-default-dark .green-100 .hint-text, .theme-default-dark .green-100.disabled-text,
.theme-default-dark .green-100 .disabled-text, .theme-default-dark .green-200.hint-text,
.theme-default-dark .green-200 .hint-text, .theme-default-dark .green-200.disabled-text,
.theme-default-dark .green-200 .disabled-text, .theme-default-dark .green-300.hint-text,
.theme-default-dark .green-300 .hint-text, .theme-default-dark .green-300.disabled-text,
.theme-default-dark .green-300 .disabled-text, .theme-default-dark .green-400.hint-text,
.theme-default-dark .green-400 .hint-text, .theme-default-dark .green-400.disabled-text,
.theme-default-dark .green-400 .disabled-text, .theme-default-dark .green-A100.hint-text,
.theme-default-dark .green-A100 .hint-text, .theme-default-dark .green-A100.disabled-text,
.theme-default-dark .green-A100 .disabled-text, .theme-default-dark .green-A200.hint-text,
.theme-default-dark .green-A200 .hint-text, .theme-default-dark .green-A200.disabled-text,
.theme-default-dark .green-A200 .disabled-text, .theme-default-dark .green-A400.hint-text,
.theme-default-dark .green-A400 .hint-text, .theme-default-dark .green-A400.disabled-text,
.theme-default-dark .green-A400 .disabled-text, .theme-default-dark .green-A700.hint-text,
.theme-default-dark .green-A700 .hint-text, .theme-default-dark .green-A700.disabled-text,
.theme-default-dark .green-A700 .disabled-text, .theme-default-dark .light-green-50.hint-text,
.theme-default-dark .light-green-50 .hint-text, .theme-default-dark .light-green-50.disabled-text,
.theme-default-dark .light-green-50 .disabled-text, .theme-default-dark .light-green-100.hint-text,
.theme-default-dark .light-green-100 .hint-text, .theme-default-dark .light-green-100.disabled-text,
.theme-default-dark .light-green-100 .disabled-text, .theme-default-dark .light-green-200.hint-text,
.theme-default-dark .light-green-200 .hint-text, .theme-default-dark .light-green-200.disabled-text,
.theme-default-dark .light-green-200 .disabled-text, .theme-default-dark .light-green-300.hint-text,
.theme-default-dark .light-green-300 .hint-text, .theme-default-dark .light-green-300.disabled-text,
.theme-default-dark .light-green-300 .disabled-text, .theme-default-dark .light-green-400.hint-text,
.theme-default-dark .light-green-400 .hint-text, .theme-default-dark .light-green-400.disabled-text,
.theme-default-dark .light-green-400 .disabled-text, .theme-default-dark .light-green-500.hint-text,
.theme-default-dark .light-green-500 .hint-text, .theme-default-dark .light-green-500.disabled-text,
.theme-default-dark .light-green-500 .disabled-text, .theme-default-dark .light-green-A100.hint-text,
.theme-default-dark .light-green-A100 .hint-text, .theme-default-dark .light-green-A100.disabled-text,
.theme-default-dark .light-green-A100 .disabled-text, .theme-default-dark .light-green-A200.hint-text,
.theme-default-dark .light-green-A200 .hint-text, .theme-default-dark .light-green-A200.disabled-text,
.theme-default-dark .light-green-A200 .disabled-text, .theme-default-dark .light-green-A400.hint-text,
.theme-default-dark .light-green-A400 .hint-text, .theme-default-dark .light-green-A400.disabled-text,
.theme-default-dark .light-green-A400 .disabled-text, .theme-default-dark .light-green-A700.hint-text,
.theme-default-dark .light-green-A700 .hint-text, .theme-default-dark .light-green-A700.disabled-text,
.theme-default-dark .light-green-A700 .disabled-text, .theme-default-dark .lime-50.hint-text,
.theme-default-dark .lime-50 .hint-text, .theme-default-dark .lime-50.disabled-text,
.theme-default-dark .lime-50 .disabled-text, .theme-default-dark .lime-100.hint-text,
.theme-default-dark .lime-100 .hint-text, .theme-default-dark .lime-100.disabled-text,
.theme-default-dark .lime-100 .disabled-text, .theme-default-dark .lime-200.hint-text,
.theme-default-dark .lime-200 .hint-text, .theme-default-dark .lime-200.disabled-text,
.theme-default-dark .lime-200 .disabled-text, .theme-default-dark .lime-300.hint-text,
.theme-default-dark .lime-300 .hint-text, .theme-default-dark .lime-300.disabled-text,
.theme-default-dark .lime-300 .disabled-text, .theme-default-dark .lime-400.hint-text,
.theme-default-dark .lime-400 .hint-text, .theme-default-dark .lime-400.disabled-text,
.theme-default-dark .lime-400 .disabled-text, .theme-default-dark .lime-A100.hint-text,
.theme-default-dark .lime-A100 .hint-text, .theme-default-dark .lime-A100.disabled-text,
.theme-default-dark .lime-A100 .disabled-text, .theme-default-dark .lime-A200.hint-text,
.theme-default-dark .lime-A200 .hint-text, .theme-default-dark .lime-A200.disabled-text,
.theme-default-dark .lime-A200 .disabled-text, .theme-default-dark .lime-A400.hint-text,
.theme-default-dark .lime-A400 .hint-text, .theme-default-dark .lime-A400.disabled-text,
.theme-default-dark .lime-A400 .disabled-text, .theme-default-dark .lime-A700.hint-text,
.theme-default-dark .lime-A700 .hint-text, .theme-default-dark .lime-A700.disabled-text,
.theme-default-dark .lime-A700 .disabled-text, .theme-default-dark .yellow-50.hint-text,
.theme-default-dark .yellow-50 .hint-text, .theme-default-dark .yellow-50.disabled-text,
.theme-default-dark .yellow-50 .disabled-text, .theme-default-dark .yellow-100.hint-text,
.theme-default-dark .yellow-100 .hint-text, .theme-default-dark .yellow-100.disabled-text,
.theme-default-dark .yellow-100 .disabled-text, .theme-default-dark .yellow-200.hint-text,
.theme-default-dark .yellow-200 .hint-text, .theme-default-dark .yellow-200.disabled-text,
.theme-default-dark .yellow-200 .disabled-text, .theme-default-dark .yellow-300.hint-text,
.theme-default-dark .yellow-300 .hint-text, .theme-default-dark .yellow-300.disabled-text,
.theme-default-dark .yellow-300 .disabled-text, .theme-default-dark .yellow-400.hint-text,
.theme-default-dark .yellow-400 .hint-text, .theme-default-dark .yellow-400.disabled-text,
.theme-default-dark .yellow-400 .disabled-text, .theme-default-dark .yellow-500.hint-text,
.theme-default-dark .yellow-500 .hint-text, .theme-default-dark .yellow-500.disabled-text,
.theme-default-dark .yellow-500 .disabled-text, .theme-default-dark .yellow-600.hint-text,
.theme-default-dark .yellow-600 .hint-text, .theme-default-dark .yellow-600.disabled-text,
.theme-default-dark .yellow-600 .disabled-text, .theme-default-dark .yellow-700.hint-text,
.theme-default-dark .yellow-700 .hint-text, .theme-default-dark .yellow-700.disabled-text,
.theme-default-dark .yellow-700 .disabled-text, .theme-default-dark .yellow-800.hint-text,
.theme-default-dark .yellow-800 .hint-text, .theme-default-dark .yellow-800.disabled-text,
.theme-default-dark .yellow-800 .disabled-text, .theme-default-dark .yellow-900.hint-text,
.theme-default-dark .yellow-900 .hint-text, .theme-default-dark .yellow-900.disabled-text,
.theme-default-dark .yellow-900 .disabled-text, .theme-default-dark .yellow-A100.hint-text,
.theme-default-dark .yellow-A100 .hint-text, .theme-default-dark .yellow-A100.disabled-text,
.theme-default-dark .yellow-A100 .disabled-text, .theme-default-dark .yellow-A200.hint-text,
.theme-default-dark .yellow-A200 .hint-text, .theme-default-dark .yellow-A200.disabled-text,
.theme-default-dark .yellow-A200 .disabled-text, .theme-default-dark .yellow-A400.hint-text,
.theme-default-dark .yellow-A400 .hint-text, .theme-default-dark .yellow-A400.disabled-text,
.theme-default-dark .yellow-A400 .disabled-text, .theme-default-dark .yellow-A700.hint-text,
.theme-default-dark .yellow-A700 .hint-text, .theme-default-dark .yellow-A700.disabled-text,
.theme-default-dark .yellow-A700 .disabled-text, .theme-default-dark .amber-50.hint-text,
.theme-default-dark .amber-50 .hint-text, .theme-default-dark .amber-50.disabled-text,
.theme-default-dark .amber-50 .disabled-text, .theme-default-dark .amber-100.hint-text,
.theme-default-dark .amber-100 .hint-text, .theme-default-dark .amber-100.disabled-text,
.theme-default-dark .amber-100 .disabled-text, .theme-default-dark .amber-200.hint-text,
.theme-default-dark .amber-200 .hint-text, .theme-default-dark .amber-200.disabled-text,
.theme-default-dark .amber-200 .disabled-text, .theme-default-dark .amber-300.hint-text,
.theme-default-dark .amber-300 .hint-text, .theme-default-dark .amber-300.disabled-text,
.theme-default-dark .amber-300 .disabled-text, .theme-default-dark .amber-400.hint-text,
.theme-default-dark .amber-400 .hint-text, .theme-default-dark .amber-400.disabled-text,
.theme-default-dark .amber-400 .disabled-text, .theme-default-dark .amber-500.hint-text,
.theme-default-dark .amber-500 .hint-text, .theme-default-dark .amber-500.disabled-text,
.theme-default-dark .amber-500 .disabled-text, .theme-default-dark .amber-600.hint-text,
.theme-default-dark .amber-600 .hint-text, .theme-default-dark .amber-600.disabled-text,
.theme-default-dark .amber-600 .disabled-text, .theme-default-dark .amber-700.hint-text,
.theme-default-dark .amber-700 .hint-text, .theme-default-dark .amber-700.disabled-text,
.theme-default-dark .amber-700 .disabled-text, .theme-default-dark .amber-800.hint-text,
.theme-default-dark .amber-800 .hint-text, .theme-default-dark .amber-800.disabled-text,
.theme-default-dark .amber-800 .disabled-text, .theme-default-dark .amber-900.hint-text,
.theme-default-dark .amber-900 .hint-text, .theme-default-dark .amber-900.disabled-text,
.theme-default-dark .amber-900 .disabled-text, .theme-default-dark .amber-A100.hint-text,
.theme-default-dark .amber-A100 .hint-text, .theme-default-dark .amber-A100.disabled-text,
.theme-default-dark .amber-A100 .disabled-text, .theme-default-dark .amber-A200.hint-text,
.theme-default-dark .amber-A200 .hint-text, .theme-default-dark .amber-A200.disabled-text,
.theme-default-dark .amber-A200 .disabled-text, .theme-default-dark .amber-A400.hint-text,
.theme-default-dark .amber-A400 .hint-text, .theme-default-dark .amber-A400.disabled-text,
.theme-default-dark .amber-A400 .disabled-text, .theme-default-dark .amber-A700.hint-text,
.theme-default-dark .amber-A700 .hint-text, .theme-default-dark .amber-A700.disabled-text,
.theme-default-dark .amber-A700 .disabled-text, .theme-default-dark .orange-50.hint-text,
.theme-default-dark .orange-50 .hint-text, .theme-default-dark .orange-50.disabled-text,
.theme-default-dark .orange-50 .disabled-text, .theme-default-dark .orange-100.hint-text,
.theme-default-dark .orange-100 .hint-text, .theme-default-dark .orange-100.disabled-text,
.theme-default-dark .orange-100 .disabled-text, .theme-default-dark .orange-200.hint-text,
.theme-default-dark .orange-200 .hint-text, .theme-default-dark .orange-200.disabled-text,
.theme-default-dark .orange-200 .disabled-text, .theme-default-dark .orange-300.hint-text,
.theme-default-dark .orange-300 .hint-text, .theme-default-dark .orange-300.disabled-text,
.theme-default-dark .orange-300 .disabled-text, .theme-default-dark .orange-400.hint-text,
.theme-default-dark .orange-400 .hint-text, .theme-default-dark .orange-400.disabled-text,
.theme-default-dark .orange-400 .disabled-text, .theme-default-dark .orange-500.hint-text,
.theme-default-dark .orange-500 .hint-text, .theme-default-dark .orange-500.disabled-text,
.theme-default-dark .orange-500 .disabled-text, .theme-default-dark .orange-600.hint-text,
.theme-default-dark .orange-600 .hint-text, .theme-default-dark .orange-600.disabled-text,
.theme-default-dark .orange-600 .disabled-text, .theme-default-dark .orange-700.hint-text,
.theme-default-dark .orange-700 .hint-text, .theme-default-dark .orange-700.disabled-text,
.theme-default-dark .orange-700 .disabled-text, .theme-default-dark .orange-A100.hint-text,
.theme-default-dark .orange-A100 .hint-text, .theme-default-dark .orange-A100.disabled-text,
.theme-default-dark .orange-A100 .disabled-text, .theme-default-dark .orange-A200.hint-text,
.theme-default-dark .orange-A200 .hint-text, .theme-default-dark .orange-A200.disabled-text,
.theme-default-dark .orange-A200 .disabled-text, .theme-default-dark .orange-A400.hint-text,
.theme-default-dark .orange-A400 .hint-text, .theme-default-dark .orange-A400.disabled-text,
.theme-default-dark .orange-A400 .disabled-text, .theme-default-dark .orange-A700.hint-text,
.theme-default-dark .orange-A700 .hint-text, .theme-default-dark .orange-A700.disabled-text,
.theme-default-dark .orange-A700 .disabled-text, .theme-default-dark .deep-orange-50.hint-text,
.theme-default-dark .deep-orange-50 .hint-text, .theme-default-dark .deep-orange-50.disabled-text,
.theme-default-dark .deep-orange-50 .disabled-text, .theme-default-dark .deep-orange-100.hint-text,
.theme-default-dark .deep-orange-100 .hint-text, .theme-default-dark .deep-orange-100.disabled-text,
.theme-default-dark .deep-orange-100 .disabled-text, .theme-default-dark .deep-orange-200.hint-text,
.theme-default-dark .deep-orange-200 .hint-text, .theme-default-dark .deep-orange-200.disabled-text,
.theme-default-dark .deep-orange-200 .disabled-text, .theme-default-dark .deep-orange-300.hint-text,
.theme-default-dark .deep-orange-300 .hint-text, .theme-default-dark .deep-orange-300.disabled-text,
.theme-default-dark .deep-orange-300 .disabled-text, .theme-default-dark .deep-orange-400.hint-text,
.theme-default-dark .deep-orange-400 .hint-text, .theme-default-dark .deep-orange-400.disabled-text,
.theme-default-dark .deep-orange-400 .disabled-text, .theme-default-dark .deep-orange-A100.hint-text,
.theme-default-dark .deep-orange-A100 .hint-text, .theme-default-dark .deep-orange-A100.disabled-text,
.theme-default-dark .deep-orange-A100 .disabled-text, .theme-default-dark .deep-orange-A200.hint-text,
.theme-default-dark .deep-orange-A200 .hint-text, .theme-default-dark .deep-orange-A200.disabled-text,
.theme-default-dark .deep-orange-A200 .disabled-text, .theme-default-dark .brown-50.hint-text,
.theme-default-dark .brown-50 .hint-text, .theme-default-dark .brown-50.disabled-text,
.theme-default-dark .brown-50 .disabled-text, .theme-default-dark .brown-100.hint-text,
.theme-default-dark .brown-100 .hint-text, .theme-default-dark .brown-100.disabled-text,
.theme-default-dark .brown-100 .disabled-text, .theme-default-dark .brown-200.hint-text,
.theme-default-dark .brown-200 .hint-text, .theme-default-dark .brown-200.disabled-text,
.theme-default-dark .brown-200 .disabled-text, .theme-default-dark .brown-A100.hint-text,
.theme-default-dark .brown-A100 .hint-text, .theme-default-dark .brown-A100.disabled-text,
.theme-default-dark .brown-A100 .disabled-text, .theme-default-dark .brown-A200.hint-text,
.theme-default-dark .brown-A200 .hint-text, .theme-default-dark .brown-A200.disabled-text,
.theme-default-dark .brown-A200 .disabled-text, .theme-default-dark .grey-50.hint-text,
.theme-default-dark .grey-50 .hint-text, .theme-default-dark .grey-50.disabled-text,
.theme-default-dark .grey-50 .disabled-text, .theme-default-dark .grey-100.hint-text,
.theme-default-dark .grey-100 .hint-text, .theme-default-dark .grey-100.disabled-text,
.theme-default-dark .grey-100 .disabled-text, .theme-default-dark .grey-200.hint-text,
.theme-default-dark .grey-200 .hint-text, .theme-default-dark .grey-200.disabled-text,
.theme-default-dark .grey-200 .disabled-text, .theme-default-dark .grey-300.hint-text,
.theme-default-dark .grey-300 .hint-text, .theme-default-dark .grey-300.disabled-text,
.theme-default-dark .grey-300 .disabled-text, .theme-default-dark .grey-400.hint-text,
.theme-default-dark .grey-400 .hint-text, .theme-default-dark .grey-400.disabled-text,
.theme-default-dark .grey-400 .disabled-text, .theme-default-dark .grey-A100.hint-text,
.theme-default-dark .grey-A100 .hint-text, .theme-default-dark .grey-A100.disabled-text,
.theme-default-dark .grey-A100 .disabled-text, .theme-default-dark .grey-A200.hint-text,
.theme-default-dark .grey-A200 .hint-text, .theme-default-dark .grey-A200.disabled-text,
.theme-default-dark .grey-A200 .disabled-text, .theme-default-dark .grey-A400.hint-text,
.theme-default-dark .grey-A400 .hint-text, .theme-default-dark .grey-A400.disabled-text,
.theme-default-dark .grey-A400 .disabled-text, .theme-default-dark .grey-A700.hint-text,
.theme-default-dark .grey-A700 .hint-text, .theme-default-dark .grey-A700.disabled-text,
.theme-default-dark .grey-A700 .disabled-text, .theme-default-dark .blue-grey-50.hint-text,
.theme-default-dark .blue-grey-50 .hint-text, .theme-default-dark .blue-grey-50.disabled-text,
.theme-default-dark .blue-grey-50 .disabled-text, .theme-default-dark .blue-grey-100.hint-text,
.theme-default-dark .blue-grey-100 .hint-text, .theme-default-dark .blue-grey-100.disabled-text,
.theme-default-dark .blue-grey-100 .disabled-text, .theme-default-dark .blue-grey-200.hint-text,
.theme-default-dark .blue-grey-200 .hint-text, .theme-default-dark .blue-grey-200.disabled-text,
.theme-default-dark .blue-grey-200 .disabled-text, .theme-default-dark .blue-grey-300.hint-text,
.theme-default-dark .blue-grey-300 .hint-text, .theme-default-dark .blue-grey-300.disabled-text,
.theme-default-dark .blue-grey-300 .disabled-text, .theme-default-dark .blue-grey-A100.hint-text,
.theme-default-dark .blue-grey-A100 .hint-text, .theme-default-dark .blue-grey-A100.disabled-text,
.theme-default-dark .blue-grey-A100 .disabled-text, .theme-default-dark .blue-grey-A200.hint-text,
.theme-default-dark .blue-grey-A200 .hint-text, .theme-default-dark .blue-grey-A200.disabled-text,
.theme-default-dark .blue-grey-A200 .disabled-text, .theme-default-dark .light-grey-50.hint-text,
.theme-default-dark .light-grey-50 .hint-text, .theme-default-dark .light-grey-50.disabled-text,
.theme-default-dark .light-grey-50 .disabled-text, .theme-default-dark .light-grey-100.hint-text,
.theme-default-dark .light-grey-100 .hint-text, .theme-default-dark .light-grey-100.disabled-text,
.theme-default-dark .light-grey-100 .disabled-text, .theme-default-dark .light-grey-200.hint-text,
.theme-default-dark .light-grey-200 .hint-text, .theme-default-dark .light-grey-200.disabled-text,
.theme-default-dark .light-grey-200 .disabled-text, .theme-default-dark .light-grey-300.hint-text,
.theme-default-dark .light-grey-300 .hint-text, .theme-default-dark .light-grey-300.disabled-text,
.theme-default-dark .light-grey-300 .disabled-text, .theme-default-dark .light-grey-400.hint-text,
.theme-default-dark .light-grey-400 .hint-text, .theme-default-dark .light-grey-400.disabled-text,
.theme-default-dark .light-grey-400 .disabled-text, .theme-default-dark .light-grey-500.hint-text,
.theme-default-dark .light-grey-500 .hint-text, .theme-default-dark .light-grey-500.disabled-text,
.theme-default-dark .light-grey-500 .disabled-text, .theme-default-dark .light-grey-600.hint-text,
.theme-default-dark .light-grey-600 .hint-text, .theme-default-dark .light-grey-600.disabled-text,
.theme-default-dark .light-grey-600 .disabled-text, .theme-default-dark .light-grey-700.hint-text,
.theme-default-dark .light-grey-700 .hint-text, .theme-default-dark .light-grey-700.disabled-text,
.theme-default-dark .light-grey-700 .disabled-text, .theme-default-dark .light-grey-800.hint-text,
.theme-default-dark .light-grey-800 .hint-text, .theme-default-dark .light-grey-800.disabled-text,
.theme-default-dark .light-grey-800 .disabled-text, .theme-default-dark .light-grey-900.hint-text,
.theme-default-dark .light-grey-900 .hint-text, .theme-default-dark .light-grey-900.disabled-text,
.theme-default-dark .light-grey-900 .disabled-text, .theme-default-dark .light-grey-A100.hint-text,
.theme-default-dark .light-grey-A100 .hint-text, .theme-default-dark .light-grey-A100.disabled-text,
.theme-default-dark .light-grey-A100 .disabled-text, .theme-default-dark .light-grey-A200.hint-text,
.theme-default-dark .light-grey-A200 .hint-text, .theme-default-dark .light-grey-A200.disabled-text,
.theme-default-dark .light-grey-A200 .disabled-text, .theme-default-dark .light-grey-A400.hint-text,
.theme-default-dark .light-grey-A400 .hint-text, .theme-default-dark .light-grey-A400.disabled-text,
.theme-default-dark .light-grey-A400 .disabled-text, .theme-default-dark .light-grey-A700.hint-text,
.theme-default-dark .light-grey-A700 .hint-text, .theme-default-dark .light-grey-A700.disabled-text,
.theme-default-dark .light-grey-A700 .disabled-text, .theme-default-dark .primary-50.hint-text,
.theme-default-dark .primary-50 .hint-text, .theme-default-dark .primary-50.disabled-text,
.theme-default-dark .primary-50 .disabled-text, .theme-default-dark .primary-100.hint-text,
.theme-default-dark .primary-100 .hint-text, .theme-default-dark .primary-100.disabled-text,
.theme-default-dark .primary-100 .disabled-text, .theme-default-dark .primary-200.hint-text,
.theme-default-dark .primary-200 .hint-text, .theme-default-dark .primary-200.disabled-text,
.theme-default-dark .primary-200 .disabled-text, .theme-default-dark .primary-300.hint-text,
.theme-default-dark .primary-300 .hint-text, .theme-default-dark .primary-300.disabled-text,
.theme-default-dark .primary-300 .disabled-text, .theme-default-dark .primary-A100.hint-text,
.theme-default-dark .primary-A100 .hint-text, .theme-default-dark .primary-A100.disabled-text,
.theme-default-dark .primary-A100 .disabled-text, .theme-default-dark .primary-A200.hint-text,
.theme-default-dark .primary-A200 .hint-text, .theme-default-dark .primary-A200.disabled-text,
.theme-default-dark .primary-A200 .disabled-text, .theme-default-dark .accent-50.hint-text,
.theme-default-dark .accent-50 .hint-text, .theme-default-dark .accent-50.disabled-text,
.theme-default-dark .accent-50 .disabled-text, .theme-default-dark .accent-100.hint-text,
.theme-default-dark .accent-100 .hint-text, .theme-default-dark .accent-100.disabled-text,
.theme-default-dark .accent-100 .disabled-text, .theme-default-dark .accent-200.hint-text,
.theme-default-dark .accent-200 .hint-text, .theme-default-dark .accent-200.disabled-text,
.theme-default-dark .accent-200 .disabled-text, .theme-default-dark .accent-300.hint-text,
.theme-default-dark .accent-300 .hint-text, .theme-default-dark .accent-300.disabled-text,
.theme-default-dark .accent-300 .disabled-text, .theme-default-dark .accent-A100.hint-text,
.theme-default-dark .accent-A100 .hint-text, .theme-default-dark .accent-A100.disabled-text,
.theme-default-dark .accent-A100 .disabled-text, .theme-default-dark .warn-50.hint-text,
.theme-default-dark .warn-50 .hint-text, .theme-default-dark .warn-50.disabled-text,
.theme-default-dark .warn-50 .disabled-text, .theme-default-dark .warn-100.hint-text,
.theme-default-dark .warn-100 .hint-text, .theme-default-dark .warn-100.disabled-text,
.theme-default-dark .warn-100 .disabled-text, .theme-default-dark .warn-200.hint-text,
.theme-default-dark .warn-200 .hint-text, .theme-default-dark .warn-200.disabled-text,
.theme-default-dark .warn-200 .disabled-text, .theme-default-dark .warn-300.hint-text,
.theme-default-dark .warn-300 .hint-text, .theme-default-dark .warn-300.disabled-text,
.theme-default-dark .warn-300 .disabled-text, .theme-default-dark .warn-400.hint-text,
.theme-default-dark .warn-400 .hint-text, .theme-default-dark .warn-400.disabled-text,
.theme-default-dark .warn-400 .disabled-text, .theme-default-dark .warn-A100.hint-text,
.theme-default-dark .warn-A100 .hint-text, .theme-default-dark .warn-A100.disabled-text,
.theme-default-dark .warn-A100 .disabled-text {
  color: rgba(0, 0, 0, 0.38) !important;
}
.theme-default-dark .red-50.divider,
.theme-default-dark .red-50 .divider, .theme-default-dark .red-100.divider,
.theme-default-dark .red-100 .divider, .theme-default-dark .red-200.divider,
.theme-default-dark .red-200 .divider, .theme-default-dark .red-300.divider,
.theme-default-dark .red-300 .divider, .theme-default-dark .red-400.divider,
.theme-default-dark .red-400 .divider, .theme-default-dark .red-A100.divider,
.theme-default-dark .red-A100 .divider, .theme-default-dark .pink-50.divider,
.theme-default-dark .pink-50 .divider, .theme-default-dark .pink-100.divider,
.theme-default-dark .pink-100 .divider, .theme-default-dark .pink-200.divider,
.theme-default-dark .pink-200 .divider, .theme-default-dark .pink-300.divider,
.theme-default-dark .pink-300 .divider, .theme-default-dark .pink-400.divider,
.theme-default-dark .pink-400 .divider, .theme-default-dark .pink-A100.divider,
.theme-default-dark .pink-A100 .divider, .theme-default-dark .purple-50.divider,
.theme-default-dark .purple-50 .divider, .theme-default-dark .purple-100.divider,
.theme-default-dark .purple-100 .divider, .theme-default-dark .purple-200.divider,
.theme-default-dark .purple-200 .divider, .theme-default-dark .purple-A100.divider,
.theme-default-dark .purple-A100 .divider, .theme-default-dark .deep-purple-50.divider,
.theme-default-dark .deep-purple-50 .divider, .theme-default-dark .deep-purple-100.divider,
.theme-default-dark .deep-purple-100 .divider, .theme-default-dark .deep-purple-200.divider,
.theme-default-dark .deep-purple-200 .divider, .theme-default-dark .deep-purple-A100.divider,
.theme-default-dark .deep-purple-A100 .divider, .theme-default-dark .indigo-50.divider,
.theme-default-dark .indigo-50 .divider, .theme-default-dark .indigo-100.divider,
.theme-default-dark .indigo-100 .divider, .theme-default-dark .indigo-200.divider,
.theme-default-dark .indigo-200 .divider, .theme-default-dark .indigo-A100.divider,
.theme-default-dark .indigo-A100 .divider, .theme-default-dark .blue-50.divider,
.theme-default-dark .blue-50 .divider, .theme-default-dark .blue-100.divider,
.theme-default-dark .blue-100 .divider, .theme-default-dark .blue-200.divider,
.theme-default-dark .blue-200 .divider, .theme-default-dark .blue-300.divider,
.theme-default-dark .blue-300 .divider, .theme-default-dark .blue-A100.divider,
.theme-default-dark .blue-A100 .divider, .theme-default-dark .light-blue-50.divider,
.theme-default-dark .light-blue-50 .divider, .theme-default-dark .light-blue-100.divider,
.theme-default-dark .light-blue-100 .divider, .theme-default-dark .light-blue-200.divider,
.theme-default-dark .light-blue-200 .divider, .theme-default-dark .light-blue-300.divider,
.theme-default-dark .light-blue-300 .divider, .theme-default-dark .light-blue-400.divider,
.theme-default-dark .light-blue-400 .divider, .theme-default-dark .light-blue-A100.divider,
.theme-default-dark .light-blue-A100 .divider, .theme-default-dark .light-blue-A200.divider,
.theme-default-dark .light-blue-A200 .divider, .theme-default-dark .light-blue-A400.divider,
.theme-default-dark .light-blue-A400 .divider, .theme-default-dark .cyan-50.divider,
.theme-default-dark .cyan-50 .divider, .theme-default-dark .cyan-100.divider,
.theme-default-dark .cyan-100 .divider, .theme-default-dark .cyan-200.divider,
.theme-default-dark .cyan-200 .divider, .theme-default-dark .cyan-300.divider,
.theme-default-dark .cyan-300 .divider, .theme-default-dark .cyan-400.divider,
.theme-default-dark .cyan-400 .divider, .theme-default-dark .cyan-A100.divider,
.theme-default-dark .cyan-A100 .divider, .theme-default-dark .cyan-A200.divider,
.theme-default-dark .cyan-A200 .divider, .theme-default-dark .cyan-A400.divider,
.theme-default-dark .cyan-A400 .divider, .theme-default-dark .cyan-A700.divider,
.theme-default-dark .cyan-A700 .divider, .theme-default-dark .teal-50.divider,
.theme-default-dark .teal-50 .divider, .theme-default-dark .teal-100.divider,
.theme-default-dark .teal-100 .divider, .theme-default-dark .teal-200.divider,
.theme-default-dark .teal-200 .divider, .theme-default-dark .teal-300.divider,
.theme-default-dark .teal-300 .divider, .theme-default-dark .teal-400.divider,
.theme-default-dark .teal-400 .divider, .theme-default-dark .teal-A100.divider,
.theme-default-dark .teal-A100 .divider, .theme-default-dark .teal-A200.divider,
.theme-default-dark .teal-A200 .divider, .theme-default-dark .teal-A400.divider,
.theme-default-dark .teal-A400 .divider, .theme-default-dark .teal-A700.divider,
.theme-default-dark .teal-A700 .divider, .theme-default-dark .green-50.divider,
.theme-default-dark .green-50 .divider, .theme-default-dark .green-100.divider,
.theme-default-dark .green-100 .divider, .theme-default-dark .green-200.divider,
.theme-default-dark .green-200 .divider, .theme-default-dark .green-300.divider,
.theme-default-dark .green-300 .divider, .theme-default-dark .green-400.divider,
.theme-default-dark .green-400 .divider, .theme-default-dark .green-A100.divider,
.theme-default-dark .green-A100 .divider, .theme-default-dark .green-A200.divider,
.theme-default-dark .green-A200 .divider, .theme-default-dark .green-A400.divider,
.theme-default-dark .green-A400 .divider, .theme-default-dark .green-A700.divider,
.theme-default-dark .green-A700 .divider, .theme-default-dark .light-green-50.divider,
.theme-default-dark .light-green-50 .divider, .theme-default-dark .light-green-100.divider,
.theme-default-dark .light-green-100 .divider, .theme-default-dark .light-green-200.divider,
.theme-default-dark .light-green-200 .divider, .theme-default-dark .light-green-300.divider,
.theme-default-dark .light-green-300 .divider, .theme-default-dark .light-green-400.divider,
.theme-default-dark .light-green-400 .divider, .theme-default-dark .light-green-500.divider,
.theme-default-dark .light-green-500 .divider, .theme-default-dark .light-green-A100.divider,
.theme-default-dark .light-green-A100 .divider, .theme-default-dark .light-green-A200.divider,
.theme-default-dark .light-green-A200 .divider, .theme-default-dark .light-green-A400.divider,
.theme-default-dark .light-green-A400 .divider, .theme-default-dark .light-green-A700.divider,
.theme-default-dark .light-green-A700 .divider, .theme-default-dark .lime-50.divider,
.theme-default-dark .lime-50 .divider, .theme-default-dark .lime-100.divider,
.theme-default-dark .lime-100 .divider, .theme-default-dark .lime-200.divider,
.theme-default-dark .lime-200 .divider, .theme-default-dark .lime-300.divider,
.theme-default-dark .lime-300 .divider, .theme-default-dark .lime-400.divider,
.theme-default-dark .lime-400 .divider, .theme-default-dark .lime-A100.divider,
.theme-default-dark .lime-A100 .divider, .theme-default-dark .lime-A200.divider,
.theme-default-dark .lime-A200 .divider, .theme-default-dark .lime-A400.divider,
.theme-default-dark .lime-A400 .divider, .theme-default-dark .lime-A700.divider,
.theme-default-dark .lime-A700 .divider, .theme-default-dark .yellow-50.divider,
.theme-default-dark .yellow-50 .divider, .theme-default-dark .yellow-100.divider,
.theme-default-dark .yellow-100 .divider, .theme-default-dark .yellow-200.divider,
.theme-default-dark .yellow-200 .divider, .theme-default-dark .yellow-300.divider,
.theme-default-dark .yellow-300 .divider, .theme-default-dark .yellow-400.divider,
.theme-default-dark .yellow-400 .divider, .theme-default-dark .yellow-500.divider,
.theme-default-dark .yellow-500 .divider, .theme-default-dark .yellow-600.divider,
.theme-default-dark .yellow-600 .divider, .theme-default-dark .yellow-700.divider,
.theme-default-dark .yellow-700 .divider, .theme-default-dark .yellow-800.divider,
.theme-default-dark .yellow-800 .divider, .theme-default-dark .yellow-900.divider,
.theme-default-dark .yellow-900 .divider, .theme-default-dark .yellow-A100.divider,
.theme-default-dark .yellow-A100 .divider, .theme-default-dark .yellow-A200.divider,
.theme-default-dark .yellow-A200 .divider, .theme-default-dark .yellow-A400.divider,
.theme-default-dark .yellow-A400 .divider, .theme-default-dark .yellow-A700.divider,
.theme-default-dark .yellow-A700 .divider, .theme-default-dark .amber-50.divider,
.theme-default-dark .amber-50 .divider, .theme-default-dark .amber-100.divider,
.theme-default-dark .amber-100 .divider, .theme-default-dark .amber-200.divider,
.theme-default-dark .amber-200 .divider, .theme-default-dark .amber-300.divider,
.theme-default-dark .amber-300 .divider, .theme-default-dark .amber-400.divider,
.theme-default-dark .amber-400 .divider, .theme-default-dark .amber-500.divider,
.theme-default-dark .amber-500 .divider, .theme-default-dark .amber-600.divider,
.theme-default-dark .amber-600 .divider, .theme-default-dark .amber-700.divider,
.theme-default-dark .amber-700 .divider, .theme-default-dark .amber-800.divider,
.theme-default-dark .amber-800 .divider, .theme-default-dark .amber-900.divider,
.theme-default-dark .amber-900 .divider, .theme-default-dark .amber-A100.divider,
.theme-default-dark .amber-A100 .divider, .theme-default-dark .amber-A200.divider,
.theme-default-dark .amber-A200 .divider, .theme-default-dark .amber-A400.divider,
.theme-default-dark .amber-A400 .divider, .theme-default-dark .amber-A700.divider,
.theme-default-dark .amber-A700 .divider, .theme-default-dark .orange-50.divider,
.theme-default-dark .orange-50 .divider, .theme-default-dark .orange-100.divider,
.theme-default-dark .orange-100 .divider, .theme-default-dark .orange-200.divider,
.theme-default-dark .orange-200 .divider, .theme-default-dark .orange-300.divider,
.theme-default-dark .orange-300 .divider, .theme-default-dark .orange-400.divider,
.theme-default-dark .orange-400 .divider, .theme-default-dark .orange-500.divider,
.theme-default-dark .orange-500 .divider, .theme-default-dark .orange-600.divider,
.theme-default-dark .orange-600 .divider, .theme-default-dark .orange-700.divider,
.theme-default-dark .orange-700 .divider, .theme-default-dark .orange-A100.divider,
.theme-default-dark .orange-A100 .divider, .theme-default-dark .orange-A200.divider,
.theme-default-dark .orange-A200 .divider, .theme-default-dark .orange-A400.divider,
.theme-default-dark .orange-A400 .divider, .theme-default-dark .orange-A700.divider,
.theme-default-dark .orange-A700 .divider, .theme-default-dark .deep-orange-50.divider,
.theme-default-dark .deep-orange-50 .divider, .theme-default-dark .deep-orange-100.divider,
.theme-default-dark .deep-orange-100 .divider, .theme-default-dark .deep-orange-200.divider,
.theme-default-dark .deep-orange-200 .divider, .theme-default-dark .deep-orange-300.divider,
.theme-default-dark .deep-orange-300 .divider, .theme-default-dark .deep-orange-400.divider,
.theme-default-dark .deep-orange-400 .divider, .theme-default-dark .deep-orange-A100.divider,
.theme-default-dark .deep-orange-A100 .divider, .theme-default-dark .deep-orange-A200.divider,
.theme-default-dark .deep-orange-A200 .divider, .theme-default-dark .brown-50.divider,
.theme-default-dark .brown-50 .divider, .theme-default-dark .brown-100.divider,
.theme-default-dark .brown-100 .divider, .theme-default-dark .brown-200.divider,
.theme-default-dark .brown-200 .divider, .theme-default-dark .brown-A100.divider,
.theme-default-dark .brown-A100 .divider, .theme-default-dark .brown-A200.divider,
.theme-default-dark .brown-A200 .divider, .theme-default-dark .grey-50.divider,
.theme-default-dark .grey-50 .divider, .theme-default-dark .grey-100.divider,
.theme-default-dark .grey-100 .divider, .theme-default-dark .grey-200.divider,
.theme-default-dark .grey-200 .divider, .theme-default-dark .grey-300.divider,
.theme-default-dark .grey-300 .divider, .theme-default-dark .grey-400.divider,
.theme-default-dark .grey-400 .divider, .theme-default-dark .grey-A100.divider,
.theme-default-dark .grey-A100 .divider, .theme-default-dark .grey-A200.divider,
.theme-default-dark .grey-A200 .divider, .theme-default-dark .grey-A400.divider,
.theme-default-dark .grey-A400 .divider, .theme-default-dark .grey-A700.divider,
.theme-default-dark .grey-A700 .divider, .theme-default-dark .blue-grey-50.divider,
.theme-default-dark .blue-grey-50 .divider, .theme-default-dark .blue-grey-100.divider,
.theme-default-dark .blue-grey-100 .divider, .theme-default-dark .blue-grey-200.divider,
.theme-default-dark .blue-grey-200 .divider, .theme-default-dark .blue-grey-300.divider,
.theme-default-dark .blue-grey-300 .divider, .theme-default-dark .blue-grey-A100.divider,
.theme-default-dark .blue-grey-A100 .divider, .theme-default-dark .blue-grey-A200.divider,
.theme-default-dark .blue-grey-A200 .divider, .theme-default-dark .light-grey-50.divider,
.theme-default-dark .light-grey-50 .divider, .theme-default-dark .light-grey-100.divider,
.theme-default-dark .light-grey-100 .divider, .theme-default-dark .light-grey-200.divider,
.theme-default-dark .light-grey-200 .divider, .theme-default-dark .light-grey-300.divider,
.theme-default-dark .light-grey-300 .divider, .theme-default-dark .light-grey-400.divider,
.theme-default-dark .light-grey-400 .divider, .theme-default-dark .light-grey-500.divider,
.theme-default-dark .light-grey-500 .divider, .theme-default-dark .light-grey-600.divider,
.theme-default-dark .light-grey-600 .divider, .theme-default-dark .light-grey-700.divider,
.theme-default-dark .light-grey-700 .divider, .theme-default-dark .light-grey-800.divider,
.theme-default-dark .light-grey-800 .divider, .theme-default-dark .light-grey-900.divider,
.theme-default-dark .light-grey-900 .divider, .theme-default-dark .light-grey-A100.divider,
.theme-default-dark .light-grey-A100 .divider, .theme-default-dark .light-grey-A200.divider,
.theme-default-dark .light-grey-A200 .divider, .theme-default-dark .light-grey-A400.divider,
.theme-default-dark .light-grey-A400 .divider, .theme-default-dark .light-grey-A700.divider,
.theme-default-dark .light-grey-A700 .divider, .theme-default-dark .primary-50.divider,
.theme-default-dark .primary-50 .divider, .theme-default-dark .primary-100.divider,
.theme-default-dark .primary-100 .divider, .theme-default-dark .primary-200.divider,
.theme-default-dark .primary-200 .divider, .theme-default-dark .primary-300.divider,
.theme-default-dark .primary-300 .divider, .theme-default-dark .primary-A100.divider,
.theme-default-dark .primary-A100 .divider, .theme-default-dark .primary-A200.divider,
.theme-default-dark .primary-A200 .divider, .theme-default-dark .accent-50.divider,
.theme-default-dark .accent-50 .divider, .theme-default-dark .accent-100.divider,
.theme-default-dark .accent-100 .divider, .theme-default-dark .accent-200.divider,
.theme-default-dark .accent-200 .divider, .theme-default-dark .accent-300.divider,
.theme-default-dark .accent-300 .divider, .theme-default-dark .accent-A100.divider,
.theme-default-dark .accent-A100 .divider, .theme-default-dark .warn-50.divider,
.theme-default-dark .warn-50 .divider, .theme-default-dark .warn-100.divider,
.theme-default-dark .warn-100 .divider, .theme-default-dark .warn-200.divider,
.theme-default-dark .warn-200 .divider, .theme-default-dark .warn-300.divider,
.theme-default-dark .warn-300 .divider, .theme-default-dark .warn-400.divider,
.theme-default-dark .warn-400 .divider, .theme-default-dark .warn-A100.divider,
.theme-default-dark .warn-A100 .divider {
  color: rgba(0, 0, 0, 0.12) !important;
}
.theme-default-dark .red-500.secondary-text,
.theme-default-dark .red-500 .secondary-text, .theme-default-dark .red-600.secondary-text,
.theme-default-dark .red-600 .secondary-text, .theme-default-dark .red-700.secondary-text,
.theme-default-dark .red-700 .secondary-text, .theme-default-dark .red-800.secondary-text,
.theme-default-dark .red-800 .secondary-text, .theme-default-dark .red-900.secondary-text,
.theme-default-dark .red-900 .secondary-text, .theme-default-dark .red-A200.secondary-text,
.theme-default-dark .red-A200 .secondary-text, .theme-default-dark .red-A400.secondary-text,
.theme-default-dark .red-A400 .secondary-text, .theme-default-dark .red-A700.secondary-text,
.theme-default-dark .red-A700 .secondary-text, .theme-default-dark .pink-500.secondary-text,
.theme-default-dark .pink-500 .secondary-text, .theme-default-dark .pink-600.secondary-text,
.theme-default-dark .pink-600 .secondary-text, .theme-default-dark .pink-700.secondary-text,
.theme-default-dark .pink-700 .secondary-text, .theme-default-dark .pink-800.secondary-text,
.theme-default-dark .pink-800 .secondary-text, .theme-default-dark .pink-900.secondary-text,
.theme-default-dark .pink-900 .secondary-text, .theme-default-dark .pink-A200.secondary-text,
.theme-default-dark .pink-A200 .secondary-text, .theme-default-dark .pink-A400.secondary-text,
.theme-default-dark .pink-A400 .secondary-text, .theme-default-dark .pink-A700.secondary-text,
.theme-default-dark .pink-A700 .secondary-text, .theme-default-dark .purple-300.secondary-text,
.theme-default-dark .purple-300 .secondary-text, .theme-default-dark .purple-400.secondary-text,
.theme-default-dark .purple-400 .secondary-text, .theme-default-dark .purple-500.secondary-text,
.theme-default-dark .purple-500 .secondary-text, .theme-default-dark .purple-600.secondary-text,
.theme-default-dark .purple-600 .secondary-text, .theme-default-dark .purple-700.secondary-text,
.theme-default-dark .purple-700 .secondary-text, .theme-default-dark .purple-800.secondary-text,
.theme-default-dark .purple-800 .secondary-text, .theme-default-dark .purple-900.secondary-text,
.theme-default-dark .purple-900 .secondary-text, .theme-default-dark .purple-A200.secondary-text,
.theme-default-dark .purple-A200 .secondary-text, .theme-default-dark .purple-A400.secondary-text,
.theme-default-dark .purple-A400 .secondary-text, .theme-default-dark .purple-A700.secondary-text,
.theme-default-dark .purple-A700 .secondary-text, .theme-default-dark .deep-purple-300.secondary-text,
.theme-default-dark .deep-purple-300 .secondary-text, .theme-default-dark .deep-purple-400.secondary-text,
.theme-default-dark .deep-purple-400 .secondary-text, .theme-default-dark .deep-purple-500.secondary-text,
.theme-default-dark .deep-purple-500 .secondary-text, .theme-default-dark .deep-purple-600.secondary-text,
.theme-default-dark .deep-purple-600 .secondary-text, .theme-default-dark .deep-purple-700.secondary-text,
.theme-default-dark .deep-purple-700 .secondary-text, .theme-default-dark .deep-purple-800.secondary-text,
.theme-default-dark .deep-purple-800 .secondary-text, .theme-default-dark .deep-purple-900.secondary-text,
.theme-default-dark .deep-purple-900 .secondary-text, .theme-default-dark .deep-purple-A200.secondary-text,
.theme-default-dark .deep-purple-A200 .secondary-text, .theme-default-dark .deep-purple-A400.secondary-text,
.theme-default-dark .deep-purple-A400 .secondary-text, .theme-default-dark .deep-purple-A700.secondary-text,
.theme-default-dark .deep-purple-A700 .secondary-text, .theme-default-dark .indigo-300.secondary-text,
.theme-default-dark .indigo-300 .secondary-text, .theme-default-dark .indigo-400.secondary-text,
.theme-default-dark .indigo-400 .secondary-text, .theme-default-dark .indigo-500.secondary-text,
.theme-default-dark .indigo-500 .secondary-text, .theme-default-dark .indigo-600.secondary-text,
.theme-default-dark .indigo-600 .secondary-text, .theme-default-dark .indigo-700.secondary-text,
.theme-default-dark .indigo-700 .secondary-text, .theme-default-dark .indigo-800.secondary-text,
.theme-default-dark .indigo-800 .secondary-text, .theme-default-dark .indigo-900.secondary-text,
.theme-default-dark .indigo-900 .secondary-text, .theme-default-dark .indigo-A200.secondary-text,
.theme-default-dark .indigo-A200 .secondary-text, .theme-default-dark .indigo-A400.secondary-text,
.theme-default-dark .indigo-A400 .secondary-text, .theme-default-dark .indigo-A700.secondary-text,
.theme-default-dark .indigo-A700 .secondary-text, .theme-default-dark .blue-400.secondary-text,
.theme-default-dark .blue-400 .secondary-text, .theme-default-dark .blue-500.secondary-text,
.theme-default-dark .blue-500 .secondary-text, .theme-default-dark .blue-600.secondary-text,
.theme-default-dark .blue-600 .secondary-text, .theme-default-dark .blue-700.secondary-text,
.theme-default-dark .blue-700 .secondary-text, .theme-default-dark .blue-800.secondary-text,
.theme-default-dark .blue-800 .secondary-text, .theme-default-dark .blue-900.secondary-text,
.theme-default-dark .blue-900 .secondary-text, .theme-default-dark .blue-A200.secondary-text,
.theme-default-dark .blue-A200 .secondary-text, .theme-default-dark .blue-A400.secondary-text,
.theme-default-dark .blue-A400 .secondary-text, .theme-default-dark .blue-A700.secondary-text,
.theme-default-dark .blue-A700 .secondary-text, .theme-default-dark .light-blue-500.secondary-text,
.theme-default-dark .light-blue-500 .secondary-text, .theme-default-dark .light-blue-600.secondary-text,
.theme-default-dark .light-blue-600 .secondary-text, .theme-default-dark .light-blue-700.secondary-text,
.theme-default-dark .light-blue-700 .secondary-text, .theme-default-dark .light-blue-800.secondary-text,
.theme-default-dark .light-blue-800 .secondary-text, .theme-default-dark .light-blue-900.secondary-text,
.theme-default-dark .light-blue-900 .secondary-text, .theme-default-dark .light-blue-A700.secondary-text,
.theme-default-dark .light-blue-A700 .secondary-text, .theme-default-dark .cyan-500.secondary-text,
.theme-default-dark .cyan-500 .secondary-text, .theme-default-dark .cyan-600.secondary-text,
.theme-default-dark .cyan-600 .secondary-text, .theme-default-dark .cyan-700.secondary-text,
.theme-default-dark .cyan-700 .secondary-text, .theme-default-dark .cyan-800.secondary-text,
.theme-default-dark .cyan-800 .secondary-text, .theme-default-dark .cyan-900.secondary-text,
.theme-default-dark .cyan-900 .secondary-text, .theme-default-dark .teal-500.secondary-text,
.theme-default-dark .teal-500 .secondary-text, .theme-default-dark .teal-600.secondary-text,
.theme-default-dark .teal-600 .secondary-text, .theme-default-dark .teal-700.secondary-text,
.theme-default-dark .teal-700 .secondary-text, .theme-default-dark .teal-800.secondary-text,
.theme-default-dark .teal-800 .secondary-text, .theme-default-dark .teal-900.secondary-text,
.theme-default-dark .teal-900 .secondary-text, .theme-default-dark .green-500.secondary-text,
.theme-default-dark .green-500 .secondary-text, .theme-default-dark .green-600.secondary-text,
.theme-default-dark .green-600 .secondary-text, .theme-default-dark .green-700.secondary-text,
.theme-default-dark .green-700 .secondary-text, .theme-default-dark .green-800.secondary-text,
.theme-default-dark .green-800 .secondary-text, .theme-default-dark .green-900.secondary-text,
.theme-default-dark .green-900 .secondary-text, .theme-default-dark .light-green-600.secondary-text,
.theme-default-dark .light-green-600 .secondary-text, .theme-default-dark .light-green-700.secondary-text,
.theme-default-dark .light-green-700 .secondary-text, .theme-default-dark .light-green-800.secondary-text,
.theme-default-dark .light-green-800 .secondary-text, .theme-default-dark .light-green-900.secondary-text,
.theme-default-dark .light-green-900 .secondary-text, .theme-default-dark .lime-500.secondary-text,
.theme-default-dark .lime-500 .secondary-text, .theme-default-dark .lime-600.secondary-text,
.theme-default-dark .lime-600 .secondary-text, .theme-default-dark .lime-700.secondary-text,
.theme-default-dark .lime-700 .secondary-text, .theme-default-dark .lime-800.secondary-text,
.theme-default-dark .lime-800 .secondary-text, .theme-default-dark .lime-900.secondary-text,
.theme-default-dark .lime-900 .secondary-text, .theme-default-dark .orange-800.secondary-text,
.theme-default-dark .orange-800 .secondary-text, .theme-default-dark .orange-900.secondary-text,
.theme-default-dark .orange-900 .secondary-text, .theme-default-dark .deep-orange-500.secondary-text,
.theme-default-dark .deep-orange-500 .secondary-text, .theme-default-dark .deep-orange-600.secondary-text,
.theme-default-dark .deep-orange-600 .secondary-text, .theme-default-dark .deep-orange-700.secondary-text,
.theme-default-dark .deep-orange-700 .secondary-text, .theme-default-dark .deep-orange-800.secondary-text,
.theme-default-dark .deep-orange-800 .secondary-text, .theme-default-dark .deep-orange-900.secondary-text,
.theme-default-dark .deep-orange-900 .secondary-text, .theme-default-dark .deep-orange-A400.secondary-text,
.theme-default-dark .deep-orange-A400 .secondary-text, .theme-default-dark .deep-orange-A700.secondary-text,
.theme-default-dark .deep-orange-A700 .secondary-text, .theme-default-dark .brown-300.secondary-text,
.theme-default-dark .brown-300 .secondary-text, .theme-default-dark .brown-400.secondary-text,
.theme-default-dark .brown-400 .secondary-text, .theme-default-dark .brown-500.secondary-text,
.theme-default-dark .brown-500 .secondary-text, .theme-default-dark .brown-600.secondary-text,
.theme-default-dark .brown-600 .secondary-text, .theme-default-dark .brown-700.secondary-text,
.theme-default-dark .brown-700 .secondary-text, .theme-default-dark .brown-800.secondary-text,
.theme-default-dark .brown-800 .secondary-text, .theme-default-dark .brown-900.secondary-text,
.theme-default-dark .brown-900 .secondary-text, .theme-default-dark .brown-A400.secondary-text,
.theme-default-dark .brown-A400 .secondary-text, .theme-default-dark .brown-A700.secondary-text,
.theme-default-dark .brown-A700 .secondary-text, .theme-default-dark .grey-500.secondary-text,
.theme-default-dark .grey-500 .secondary-text, .theme-default-dark .grey-600.secondary-text,
.theme-default-dark .grey-600 .secondary-text, .theme-default-dark .grey-700.secondary-text,
.theme-default-dark .grey-700 .secondary-text, .theme-default-dark .grey-800.secondary-text,
.theme-default-dark .grey-800 .secondary-text, .theme-default-dark .grey-900.secondary-text,
.theme-default-dark .grey-900 .secondary-text, .theme-default-dark .blue-grey-400.secondary-text,
.theme-default-dark .blue-grey-400 .secondary-text, .theme-default-dark .blue-grey-500.secondary-text,
.theme-default-dark .blue-grey-500 .secondary-text, .theme-default-dark .blue-grey-600.secondary-text,
.theme-default-dark .blue-grey-600 .secondary-text, .theme-default-dark .blue-grey-700.secondary-text,
.theme-default-dark .blue-grey-700 .secondary-text, .theme-default-dark .blue-grey-800.secondary-text,
.theme-default-dark .blue-grey-800 .secondary-text, .theme-default-dark .blue-grey-900.secondary-text,
.theme-default-dark .blue-grey-900 .secondary-text, .theme-default-dark .blue-grey-A400.secondary-text,
.theme-default-dark .blue-grey-A400 .secondary-text, .theme-default-dark .blue-grey-A700.secondary-text,
.theme-default-dark .blue-grey-A700 .secondary-text, .theme-default-dark .dark-grey-50.secondary-text,
.theme-default-dark .dark-grey-50 .secondary-text, .theme-default-dark .dark-grey-100.secondary-text,
.theme-default-dark .dark-grey-100 .secondary-text, .theme-default-dark .dark-grey-200.secondary-text,
.theme-default-dark .dark-grey-200 .secondary-text, .theme-default-dark .dark-grey-300.secondary-text,
.theme-default-dark .dark-grey-300 .secondary-text, .theme-default-dark .dark-grey-400.secondary-text,
.theme-default-dark .dark-grey-400 .secondary-text, .theme-default-dark .dark-grey-500.secondary-text,
.theme-default-dark .dark-grey-500 .secondary-text, .theme-default-dark .dark-grey-600.secondary-text,
.theme-default-dark .dark-grey-600 .secondary-text, .theme-default-dark .dark-grey-700.secondary-text,
.theme-default-dark .dark-grey-700 .secondary-text, .theme-default-dark .dark-grey-800.secondary-text,
.theme-default-dark .dark-grey-800 .secondary-text, .theme-default-dark .dark-grey-900.secondary-text,
.theme-default-dark .dark-grey-900 .secondary-text, .theme-default-dark .dark-grey-A100.secondary-text,
.theme-default-dark .dark-grey-A100 .secondary-text, .theme-default-dark .dark-grey-A200.secondary-text,
.theme-default-dark .dark-grey-A200 .secondary-text, .theme-default-dark .dark-grey-A400.secondary-text,
.theme-default-dark .dark-grey-A400 .secondary-text, .theme-default-dark .dark-grey-A700.secondary-text,
.theme-default-dark .dark-grey-A700 .secondary-text, .theme-default-dark .primary-400.secondary-text,
.theme-default-dark .primary-400 .secondary-text, .theme-default-dark .primary-500.secondary-text,
.theme-default-dark .primary-500 .secondary-text, .theme-default-dark .primary-600.secondary-text,
.theme-default-dark .primary-600 .secondary-text, .theme-default-dark .primary-700.secondary-text,
.theme-default-dark .primary-700 .secondary-text, .theme-default-dark .primary-800.secondary-text,
.theme-default-dark .primary-800 .secondary-text, .theme-default-dark .primary-900.secondary-text,
.theme-default-dark .primary-900 .secondary-text, .theme-default-dark .primary-A400.secondary-text,
.theme-default-dark .primary-A400 .secondary-text, .theme-default-dark .primary-A700.secondary-text,
.theme-default-dark .primary-A700 .secondary-text, .theme-default-dark .accent-400.secondary-text,
.theme-default-dark .accent-400 .secondary-text, .theme-default-dark .accent-500.secondary-text,
.theme-default-dark .accent-500 .secondary-text, .theme-default-dark .accent-600.secondary-text,
.theme-default-dark .accent-600 .secondary-text, .theme-default-dark .accent-700.secondary-text,
.theme-default-dark .accent-700 .secondary-text, .theme-default-dark .accent-800.secondary-text,
.theme-default-dark .accent-800 .secondary-text, .theme-default-dark .accent-900.secondary-text,
.theme-default-dark .accent-900 .secondary-text, .theme-default-dark .accent-A200.secondary-text,
.theme-default-dark .accent-A200 .secondary-text, .theme-default-dark .accent-A400.secondary-text,
.theme-default-dark .accent-A400 .secondary-text, .theme-default-dark .accent-A700.secondary-text,
.theme-default-dark .accent-A700 .secondary-text, .theme-default-dark .warn-500.secondary-text,
.theme-default-dark .warn-500 .secondary-text, .theme-default-dark .warn-600.secondary-text,
.theme-default-dark .warn-600 .secondary-text, .theme-default-dark .warn-700.secondary-text,
.theme-default-dark .warn-700 .secondary-text, .theme-default-dark .warn-800.secondary-text,
.theme-default-dark .warn-800 .secondary-text, .theme-default-dark .warn-900.secondary-text,
.theme-default-dark .warn-900 .secondary-text, .theme-default-dark .warn-A200.secondary-text,
.theme-default-dark .warn-A200 .secondary-text, .theme-default-dark .warn-A400.secondary-text,
.theme-default-dark .warn-A400 .secondary-text, .theme-default-dark .warn-A700.secondary-text,
.theme-default-dark .warn-A700 .secondary-text {
  color: rgba(255, 255, 255, 0.7) !important;
}
.theme-default-dark .red-500.hint-text,
.theme-default-dark .red-500 .hint-text, .theme-default-dark .red-500.disabled-text,
.theme-default-dark .red-500 .disabled-text, .theme-default-dark .red-600.hint-text,
.theme-default-dark .red-600 .hint-text, .theme-default-dark .red-600.disabled-text,
.theme-default-dark .red-600 .disabled-text, .theme-default-dark .red-700.hint-text,
.theme-default-dark .red-700 .hint-text, .theme-default-dark .red-700.disabled-text,
.theme-default-dark .red-700 .disabled-text, .theme-default-dark .red-800.hint-text,
.theme-default-dark .red-800 .hint-text, .theme-default-dark .red-800.disabled-text,
.theme-default-dark .red-800 .disabled-text, .theme-default-dark .red-900.hint-text,
.theme-default-dark .red-900 .hint-text, .theme-default-dark .red-900.disabled-text,
.theme-default-dark .red-900 .disabled-text, .theme-default-dark .red-A200.hint-text,
.theme-default-dark .red-A200 .hint-text, .theme-default-dark .red-A200.disabled-text,
.theme-default-dark .red-A200 .disabled-text, .theme-default-dark .red-A400.hint-text,
.theme-default-dark .red-A400 .hint-text, .theme-default-dark .red-A400.disabled-text,
.theme-default-dark .red-A400 .disabled-text, .theme-default-dark .red-A700.hint-text,
.theme-default-dark .red-A700 .hint-text, .theme-default-dark .red-A700.disabled-text,
.theme-default-dark .red-A700 .disabled-text, .theme-default-dark .pink-500.hint-text,
.theme-default-dark .pink-500 .hint-text, .theme-default-dark .pink-500.disabled-text,
.theme-default-dark .pink-500 .disabled-text, .theme-default-dark .pink-600.hint-text,
.theme-default-dark .pink-600 .hint-text, .theme-default-dark .pink-600.disabled-text,
.theme-default-dark .pink-600 .disabled-text, .theme-default-dark .pink-700.hint-text,
.theme-default-dark .pink-700 .hint-text, .theme-default-dark .pink-700.disabled-text,
.theme-default-dark .pink-700 .disabled-text, .theme-default-dark .pink-800.hint-text,
.theme-default-dark .pink-800 .hint-text, .theme-default-dark .pink-800.disabled-text,
.theme-default-dark .pink-800 .disabled-text, .theme-default-dark .pink-900.hint-text,
.theme-default-dark .pink-900 .hint-text, .theme-default-dark .pink-900.disabled-text,
.theme-default-dark .pink-900 .disabled-text, .theme-default-dark .pink-A200.hint-text,
.theme-default-dark .pink-A200 .hint-text, .theme-default-dark .pink-A200.disabled-text,
.theme-default-dark .pink-A200 .disabled-text, .theme-default-dark .pink-A400.hint-text,
.theme-default-dark .pink-A400 .hint-text, .theme-default-dark .pink-A400.disabled-text,
.theme-default-dark .pink-A400 .disabled-text, .theme-default-dark .pink-A700.hint-text,
.theme-default-dark .pink-A700 .hint-text, .theme-default-dark .pink-A700.disabled-text,
.theme-default-dark .pink-A700 .disabled-text, .theme-default-dark .purple-300.hint-text,
.theme-default-dark .purple-300 .hint-text, .theme-default-dark .purple-300.disabled-text,
.theme-default-dark .purple-300 .disabled-text, .theme-default-dark .purple-400.hint-text,
.theme-default-dark .purple-400 .hint-text, .theme-default-dark .purple-400.disabled-text,
.theme-default-dark .purple-400 .disabled-text, .theme-default-dark .purple-500.hint-text,
.theme-default-dark .purple-500 .hint-text, .theme-default-dark .purple-500.disabled-text,
.theme-default-dark .purple-500 .disabled-text, .theme-default-dark .purple-600.hint-text,
.theme-default-dark .purple-600 .hint-text, .theme-default-dark .purple-600.disabled-text,
.theme-default-dark .purple-600 .disabled-text, .theme-default-dark .purple-700.hint-text,
.theme-default-dark .purple-700 .hint-text, .theme-default-dark .purple-700.disabled-text,
.theme-default-dark .purple-700 .disabled-text, .theme-default-dark .purple-800.hint-text,
.theme-default-dark .purple-800 .hint-text, .theme-default-dark .purple-800.disabled-text,
.theme-default-dark .purple-800 .disabled-text, .theme-default-dark .purple-900.hint-text,
.theme-default-dark .purple-900 .hint-text, .theme-default-dark .purple-900.disabled-text,
.theme-default-dark .purple-900 .disabled-text, .theme-default-dark .purple-A200.hint-text,
.theme-default-dark .purple-A200 .hint-text, .theme-default-dark .purple-A200.disabled-text,
.theme-default-dark .purple-A200 .disabled-text, .theme-default-dark .purple-A400.hint-text,
.theme-default-dark .purple-A400 .hint-text, .theme-default-dark .purple-A400.disabled-text,
.theme-default-dark .purple-A400 .disabled-text, .theme-default-dark .purple-A700.hint-text,
.theme-default-dark .purple-A700 .hint-text, .theme-default-dark .purple-A700.disabled-text,
.theme-default-dark .purple-A700 .disabled-text, .theme-default-dark .deep-purple-300.hint-text,
.theme-default-dark .deep-purple-300 .hint-text, .theme-default-dark .deep-purple-300.disabled-text,
.theme-default-dark .deep-purple-300 .disabled-text, .theme-default-dark .deep-purple-400.hint-text,
.theme-default-dark .deep-purple-400 .hint-text, .theme-default-dark .deep-purple-400.disabled-text,
.theme-default-dark .deep-purple-400 .disabled-text, .theme-default-dark .deep-purple-500.hint-text,
.theme-default-dark .deep-purple-500 .hint-text, .theme-default-dark .deep-purple-500.disabled-text,
.theme-default-dark .deep-purple-500 .disabled-text, .theme-default-dark .deep-purple-600.hint-text,
.theme-default-dark .deep-purple-600 .hint-text, .theme-default-dark .deep-purple-600.disabled-text,
.theme-default-dark .deep-purple-600 .disabled-text, .theme-default-dark .deep-purple-700.hint-text,
.theme-default-dark .deep-purple-700 .hint-text, .theme-default-dark .deep-purple-700.disabled-text,
.theme-default-dark .deep-purple-700 .disabled-text, .theme-default-dark .deep-purple-800.hint-text,
.theme-default-dark .deep-purple-800 .hint-text, .theme-default-dark .deep-purple-800.disabled-text,
.theme-default-dark .deep-purple-800 .disabled-text, .theme-default-dark .deep-purple-900.hint-text,
.theme-default-dark .deep-purple-900 .hint-text, .theme-default-dark .deep-purple-900.disabled-text,
.theme-default-dark .deep-purple-900 .disabled-text, .theme-default-dark .deep-purple-A200.hint-text,
.theme-default-dark .deep-purple-A200 .hint-text, .theme-default-dark .deep-purple-A200.disabled-text,
.theme-default-dark .deep-purple-A200 .disabled-text, .theme-default-dark .deep-purple-A400.hint-text,
.theme-default-dark .deep-purple-A400 .hint-text, .theme-default-dark .deep-purple-A400.disabled-text,
.theme-default-dark .deep-purple-A400 .disabled-text, .theme-default-dark .deep-purple-A700.hint-text,
.theme-default-dark .deep-purple-A700 .hint-text, .theme-default-dark .deep-purple-A700.disabled-text,
.theme-default-dark .deep-purple-A700 .disabled-text, .theme-default-dark .indigo-300.hint-text,
.theme-default-dark .indigo-300 .hint-text, .theme-default-dark .indigo-300.disabled-text,
.theme-default-dark .indigo-300 .disabled-text, .theme-default-dark .indigo-400.hint-text,
.theme-default-dark .indigo-400 .hint-text, .theme-default-dark .indigo-400.disabled-text,
.theme-default-dark .indigo-400 .disabled-text, .theme-default-dark .indigo-500.hint-text,
.theme-default-dark .indigo-500 .hint-text, .theme-default-dark .indigo-500.disabled-text,
.theme-default-dark .indigo-500 .disabled-text, .theme-default-dark .indigo-600.hint-text,
.theme-default-dark .indigo-600 .hint-text, .theme-default-dark .indigo-600.disabled-text,
.theme-default-dark .indigo-600 .disabled-text, .theme-default-dark .indigo-700.hint-text,
.theme-default-dark .indigo-700 .hint-text, .theme-default-dark .indigo-700.disabled-text,
.theme-default-dark .indigo-700 .disabled-text, .theme-default-dark .indigo-800.hint-text,
.theme-default-dark .indigo-800 .hint-text, .theme-default-dark .indigo-800.disabled-text,
.theme-default-dark .indigo-800 .disabled-text, .theme-default-dark .indigo-900.hint-text,
.theme-default-dark .indigo-900 .hint-text, .theme-default-dark .indigo-900.disabled-text,
.theme-default-dark .indigo-900 .disabled-text, .theme-default-dark .indigo-A200.hint-text,
.theme-default-dark .indigo-A200 .hint-text, .theme-default-dark .indigo-A200.disabled-text,
.theme-default-dark .indigo-A200 .disabled-text, .theme-default-dark .indigo-A400.hint-text,
.theme-default-dark .indigo-A400 .hint-text, .theme-default-dark .indigo-A400.disabled-text,
.theme-default-dark .indigo-A400 .disabled-text, .theme-default-dark .indigo-A700.hint-text,
.theme-default-dark .indigo-A700 .hint-text, .theme-default-dark .indigo-A700.disabled-text,
.theme-default-dark .indigo-A700 .disabled-text, .theme-default-dark .blue-400.hint-text,
.theme-default-dark .blue-400 .hint-text, .theme-default-dark .blue-400.disabled-text,
.theme-default-dark .blue-400 .disabled-text, .theme-default-dark .blue-500.hint-text,
.theme-default-dark .blue-500 .hint-text, .theme-default-dark .blue-500.disabled-text,
.theme-default-dark .blue-500 .disabled-text, .theme-default-dark .blue-600.hint-text,
.theme-default-dark .blue-600 .hint-text, .theme-default-dark .blue-600.disabled-text,
.theme-default-dark .blue-600 .disabled-text, .theme-default-dark .blue-700.hint-text,
.theme-default-dark .blue-700 .hint-text, .theme-default-dark .blue-700.disabled-text,
.theme-default-dark .blue-700 .disabled-text, .theme-default-dark .blue-800.hint-text,
.theme-default-dark .blue-800 .hint-text, .theme-default-dark .blue-800.disabled-text,
.theme-default-dark .blue-800 .disabled-text, .theme-default-dark .blue-900.hint-text,
.theme-default-dark .blue-900 .hint-text, .theme-default-dark .blue-900.disabled-text,
.theme-default-dark .blue-900 .disabled-text, .theme-default-dark .blue-A200.hint-text,
.theme-default-dark .blue-A200 .hint-text, .theme-default-dark .blue-A200.disabled-text,
.theme-default-dark .blue-A200 .disabled-text, .theme-default-dark .blue-A400.hint-text,
.theme-default-dark .blue-A400 .hint-text, .theme-default-dark .blue-A400.disabled-text,
.theme-default-dark .blue-A400 .disabled-text, .theme-default-dark .blue-A700.hint-text,
.theme-default-dark .blue-A700 .hint-text, .theme-default-dark .blue-A700.disabled-text,
.theme-default-dark .blue-A700 .disabled-text, .theme-default-dark .light-blue-500.hint-text,
.theme-default-dark .light-blue-500 .hint-text, .theme-default-dark .light-blue-500.disabled-text,
.theme-default-dark .light-blue-500 .disabled-text, .theme-default-dark .light-blue-600.hint-text,
.theme-default-dark .light-blue-600 .hint-text, .theme-default-dark .light-blue-600.disabled-text,
.theme-default-dark .light-blue-600 .disabled-text, .theme-default-dark .light-blue-700.hint-text,
.theme-default-dark .light-blue-700 .hint-text, .theme-default-dark .light-blue-700.disabled-text,
.theme-default-dark .light-blue-700 .disabled-text, .theme-default-dark .light-blue-800.hint-text,
.theme-default-dark .light-blue-800 .hint-text, .theme-default-dark .light-blue-800.disabled-text,
.theme-default-dark .light-blue-800 .disabled-text, .theme-default-dark .light-blue-900.hint-text,
.theme-default-dark .light-blue-900 .hint-text, .theme-default-dark .light-blue-900.disabled-text,
.theme-default-dark .light-blue-900 .disabled-text, .theme-default-dark .light-blue-A700.hint-text,
.theme-default-dark .light-blue-A700 .hint-text, .theme-default-dark .light-blue-A700.disabled-text,
.theme-default-dark .light-blue-A700 .disabled-text, .theme-default-dark .cyan-500.hint-text,
.theme-default-dark .cyan-500 .hint-text, .theme-default-dark .cyan-500.disabled-text,
.theme-default-dark .cyan-500 .disabled-text, .theme-default-dark .cyan-600.hint-text,
.theme-default-dark .cyan-600 .hint-text, .theme-default-dark .cyan-600.disabled-text,
.theme-default-dark .cyan-600 .disabled-text, .theme-default-dark .cyan-700.hint-text,
.theme-default-dark .cyan-700 .hint-text, .theme-default-dark .cyan-700.disabled-text,
.theme-default-dark .cyan-700 .disabled-text, .theme-default-dark .cyan-800.hint-text,
.theme-default-dark .cyan-800 .hint-text, .theme-default-dark .cyan-800.disabled-text,
.theme-default-dark .cyan-800 .disabled-text, .theme-default-dark .cyan-900.hint-text,
.theme-default-dark .cyan-900 .hint-text, .theme-default-dark .cyan-900.disabled-text,
.theme-default-dark .cyan-900 .disabled-text, .theme-default-dark .teal-500.hint-text,
.theme-default-dark .teal-500 .hint-text, .theme-default-dark .teal-500.disabled-text,
.theme-default-dark .teal-500 .disabled-text, .theme-default-dark .teal-600.hint-text,
.theme-default-dark .teal-600 .hint-text, .theme-default-dark .teal-600.disabled-text,
.theme-default-dark .teal-600 .disabled-text, .theme-default-dark .teal-700.hint-text,
.theme-default-dark .teal-700 .hint-text, .theme-default-dark .teal-700.disabled-text,
.theme-default-dark .teal-700 .disabled-text, .theme-default-dark .teal-800.hint-text,
.theme-default-dark .teal-800 .hint-text, .theme-default-dark .teal-800.disabled-text,
.theme-default-dark .teal-800 .disabled-text, .theme-default-dark .teal-900.hint-text,
.theme-default-dark .teal-900 .hint-text, .theme-default-dark .teal-900.disabled-text,
.theme-default-dark .teal-900 .disabled-text, .theme-default-dark .green-500.hint-text,
.theme-default-dark .green-500 .hint-text, .theme-default-dark .green-500.disabled-text,
.theme-default-dark .green-500 .disabled-text, .theme-default-dark .green-600.hint-text,
.theme-default-dark .green-600 .hint-text, .theme-default-dark .green-600.disabled-text,
.theme-default-dark .green-600 .disabled-text, .theme-default-dark .green-700.hint-text,
.theme-default-dark .green-700 .hint-text, .theme-default-dark .green-700.disabled-text,
.theme-default-dark .green-700 .disabled-text, .theme-default-dark .green-800.hint-text,
.theme-default-dark .green-800 .hint-text, .theme-default-dark .green-800.disabled-text,
.theme-default-dark .green-800 .disabled-text, .theme-default-dark .green-900.hint-text,
.theme-default-dark .green-900 .hint-text, .theme-default-dark .green-900.disabled-text,
.theme-default-dark .green-900 .disabled-text, .theme-default-dark .light-green-600.hint-text,
.theme-default-dark .light-green-600 .hint-text, .theme-default-dark .light-green-600.disabled-text,
.theme-default-dark .light-green-600 .disabled-text, .theme-default-dark .light-green-700.hint-text,
.theme-default-dark .light-green-700 .hint-text, .theme-default-dark .light-green-700.disabled-text,
.theme-default-dark .light-green-700 .disabled-text, .theme-default-dark .light-green-800.hint-text,
.theme-default-dark .light-green-800 .hint-text, .theme-default-dark .light-green-800.disabled-text,
.theme-default-dark .light-green-800 .disabled-text, .theme-default-dark .light-green-900.hint-text,
.theme-default-dark .light-green-900 .hint-text, .theme-default-dark .light-green-900.disabled-text,
.theme-default-dark .light-green-900 .disabled-text, .theme-default-dark .lime-500.hint-text,
.theme-default-dark .lime-500 .hint-text, .theme-default-dark .lime-500.disabled-text,
.theme-default-dark .lime-500 .disabled-text, .theme-default-dark .lime-600.hint-text,
.theme-default-dark .lime-600 .hint-text, .theme-default-dark .lime-600.disabled-text,
.theme-default-dark .lime-600 .disabled-text, .theme-default-dark .lime-700.hint-text,
.theme-default-dark .lime-700 .hint-text, .theme-default-dark .lime-700.disabled-text,
.theme-default-dark .lime-700 .disabled-text, .theme-default-dark .lime-800.hint-text,
.theme-default-dark .lime-800 .hint-text, .theme-default-dark .lime-800.disabled-text,
.theme-default-dark .lime-800 .disabled-text, .theme-default-dark .lime-900.hint-text,
.theme-default-dark .lime-900 .hint-text, .theme-default-dark .lime-900.disabled-text,
.theme-default-dark .lime-900 .disabled-text, .theme-default-dark .orange-800.hint-text,
.theme-default-dark .orange-800 .hint-text, .theme-default-dark .orange-800.disabled-text,
.theme-default-dark .orange-800 .disabled-text, .theme-default-dark .orange-900.hint-text,
.theme-default-dark .orange-900 .hint-text, .theme-default-dark .orange-900.disabled-text,
.theme-default-dark .orange-900 .disabled-text, .theme-default-dark .deep-orange-500.hint-text,
.theme-default-dark .deep-orange-500 .hint-text, .theme-default-dark .deep-orange-500.disabled-text,
.theme-default-dark .deep-orange-500 .disabled-text, .theme-default-dark .deep-orange-600.hint-text,
.theme-default-dark .deep-orange-600 .hint-text, .theme-default-dark .deep-orange-600.disabled-text,
.theme-default-dark .deep-orange-600 .disabled-text, .theme-default-dark .deep-orange-700.hint-text,
.theme-default-dark .deep-orange-700 .hint-text, .theme-default-dark .deep-orange-700.disabled-text,
.theme-default-dark .deep-orange-700 .disabled-text, .theme-default-dark .deep-orange-800.hint-text,
.theme-default-dark .deep-orange-800 .hint-text, .theme-default-dark .deep-orange-800.disabled-text,
.theme-default-dark .deep-orange-800 .disabled-text, .theme-default-dark .deep-orange-900.hint-text,
.theme-default-dark .deep-orange-900 .hint-text, .theme-default-dark .deep-orange-900.disabled-text,
.theme-default-dark .deep-orange-900 .disabled-text, .theme-default-dark .deep-orange-A400.hint-text,
.theme-default-dark .deep-orange-A400 .hint-text, .theme-default-dark .deep-orange-A400.disabled-text,
.theme-default-dark .deep-orange-A400 .disabled-text, .theme-default-dark .deep-orange-A700.hint-text,
.theme-default-dark .deep-orange-A700 .hint-text, .theme-default-dark .deep-orange-A700.disabled-text,
.theme-default-dark .deep-orange-A700 .disabled-text, .theme-default-dark .brown-300.hint-text,
.theme-default-dark .brown-300 .hint-text, .theme-default-dark .brown-300.disabled-text,
.theme-default-dark .brown-300 .disabled-text, .theme-default-dark .brown-400.hint-text,
.theme-default-dark .brown-400 .hint-text, .theme-default-dark .brown-400.disabled-text,
.theme-default-dark .brown-400 .disabled-text, .theme-default-dark .brown-500.hint-text,
.theme-default-dark .brown-500 .hint-text, .theme-default-dark .brown-500.disabled-text,
.theme-default-dark .brown-500 .disabled-text, .theme-default-dark .brown-600.hint-text,
.theme-default-dark .brown-600 .hint-text, .theme-default-dark .brown-600.disabled-text,
.theme-default-dark .brown-600 .disabled-text, .theme-default-dark .brown-700.hint-text,
.theme-default-dark .brown-700 .hint-text, .theme-default-dark .brown-700.disabled-text,
.theme-default-dark .brown-700 .disabled-text, .theme-default-dark .brown-800.hint-text,
.theme-default-dark .brown-800 .hint-text, .theme-default-dark .brown-800.disabled-text,
.theme-default-dark .brown-800 .disabled-text, .theme-default-dark .brown-900.hint-text,
.theme-default-dark .brown-900 .hint-text, .theme-default-dark .brown-900.disabled-text,
.theme-default-dark .brown-900 .disabled-text, .theme-default-dark .brown-A400.hint-text,
.theme-default-dark .brown-A400 .hint-text, .theme-default-dark .brown-A400.disabled-text,
.theme-default-dark .brown-A400 .disabled-text, .theme-default-dark .brown-A700.hint-text,
.theme-default-dark .brown-A700 .hint-text, .theme-default-dark .brown-A700.disabled-text,
.theme-default-dark .brown-A700 .disabled-text, .theme-default-dark .grey-500.hint-text,
.theme-default-dark .grey-500 .hint-text, .theme-default-dark .grey-500.disabled-text,
.theme-default-dark .grey-500 .disabled-text, .theme-default-dark .grey-600.hint-text,
.theme-default-dark .grey-600 .hint-text, .theme-default-dark .grey-600.disabled-text,
.theme-default-dark .grey-600 .disabled-text, .theme-default-dark .grey-700.hint-text,
.theme-default-dark .grey-700 .hint-text, .theme-default-dark .grey-700.disabled-text,
.theme-default-dark .grey-700 .disabled-text, .theme-default-dark .grey-800.hint-text,
.theme-default-dark .grey-800 .hint-text, .theme-default-dark .grey-800.disabled-text,
.theme-default-dark .grey-800 .disabled-text, .theme-default-dark .grey-900.hint-text,
.theme-default-dark .grey-900 .hint-text, .theme-default-dark .grey-900.disabled-text,
.theme-default-dark .grey-900 .disabled-text, .theme-default-dark .blue-grey-400.hint-text,
.theme-default-dark .blue-grey-400 .hint-text, .theme-default-dark .blue-grey-400.disabled-text,
.theme-default-dark .blue-grey-400 .disabled-text, .theme-default-dark .blue-grey-500.hint-text,
.theme-default-dark .blue-grey-500 .hint-text, .theme-default-dark .blue-grey-500.disabled-text,
.theme-default-dark .blue-grey-500 .disabled-text, .theme-default-dark .blue-grey-600.hint-text,
.theme-default-dark .blue-grey-600 .hint-text, .theme-default-dark .blue-grey-600.disabled-text,
.theme-default-dark .blue-grey-600 .disabled-text, .theme-default-dark .blue-grey-700.hint-text,
.theme-default-dark .blue-grey-700 .hint-text, .theme-default-dark .blue-grey-700.disabled-text,
.theme-default-dark .blue-grey-700 .disabled-text, .theme-default-dark .blue-grey-800.hint-text,
.theme-default-dark .blue-grey-800 .hint-text, .theme-default-dark .blue-grey-800.disabled-text,
.theme-default-dark .blue-grey-800 .disabled-text, .theme-default-dark .blue-grey-900.hint-text,
.theme-default-dark .blue-grey-900 .hint-text, .theme-default-dark .blue-grey-900.disabled-text,
.theme-default-dark .blue-grey-900 .disabled-text, .theme-default-dark .blue-grey-A400.hint-text,
.theme-default-dark .blue-grey-A400 .hint-text, .theme-default-dark .blue-grey-A400.disabled-text,
.theme-default-dark .blue-grey-A400 .disabled-text, .theme-default-dark .blue-grey-A700.hint-text,
.theme-default-dark .blue-grey-A700 .hint-text, .theme-default-dark .blue-grey-A700.disabled-text,
.theme-default-dark .blue-grey-A700 .disabled-text, .theme-default-dark .dark-grey-50.hint-text,
.theme-default-dark .dark-grey-50 .hint-text, .theme-default-dark .dark-grey-50.disabled-text,
.theme-default-dark .dark-grey-50 .disabled-text, .theme-default-dark .dark-grey-100.hint-text,
.theme-default-dark .dark-grey-100 .hint-text, .theme-default-dark .dark-grey-100.disabled-text,
.theme-default-dark .dark-grey-100 .disabled-text, .theme-default-dark .dark-grey-200.hint-text,
.theme-default-dark .dark-grey-200 .hint-text, .theme-default-dark .dark-grey-200.disabled-text,
.theme-default-dark .dark-grey-200 .disabled-text, .theme-default-dark .dark-grey-300.hint-text,
.theme-default-dark .dark-grey-300 .hint-text, .theme-default-dark .dark-grey-300.disabled-text,
.theme-default-dark .dark-grey-300 .disabled-text, .theme-default-dark .dark-grey-400.hint-text,
.theme-default-dark .dark-grey-400 .hint-text, .theme-default-dark .dark-grey-400.disabled-text,
.theme-default-dark .dark-grey-400 .disabled-text, .theme-default-dark .dark-grey-500.hint-text,
.theme-default-dark .dark-grey-500 .hint-text, .theme-default-dark .dark-grey-500.disabled-text,
.theme-default-dark .dark-grey-500 .disabled-text, .theme-default-dark .dark-grey-600.hint-text,
.theme-default-dark .dark-grey-600 .hint-text, .theme-default-dark .dark-grey-600.disabled-text,
.theme-default-dark .dark-grey-600 .disabled-text, .theme-default-dark .dark-grey-700.hint-text,
.theme-default-dark .dark-grey-700 .hint-text, .theme-default-dark .dark-grey-700.disabled-text,
.theme-default-dark .dark-grey-700 .disabled-text, .theme-default-dark .dark-grey-800.hint-text,
.theme-default-dark .dark-grey-800 .hint-text, .theme-default-dark .dark-grey-800.disabled-text,
.theme-default-dark .dark-grey-800 .disabled-text, .theme-default-dark .dark-grey-900.hint-text,
.theme-default-dark .dark-grey-900 .hint-text, .theme-default-dark .dark-grey-900.disabled-text,
.theme-default-dark .dark-grey-900 .disabled-text, .theme-default-dark .dark-grey-A100.hint-text,
.theme-default-dark .dark-grey-A100 .hint-text, .theme-default-dark .dark-grey-A100.disabled-text,
.theme-default-dark .dark-grey-A100 .disabled-text, .theme-default-dark .dark-grey-A200.hint-text,
.theme-default-dark .dark-grey-A200 .hint-text, .theme-default-dark .dark-grey-A200.disabled-text,
.theme-default-dark .dark-grey-A200 .disabled-text, .theme-default-dark .dark-grey-A400.hint-text,
.theme-default-dark .dark-grey-A400 .hint-text, .theme-default-dark .dark-grey-A400.disabled-text,
.theme-default-dark .dark-grey-A400 .disabled-text, .theme-default-dark .dark-grey-A700.hint-text,
.theme-default-dark .dark-grey-A700 .hint-text, .theme-default-dark .dark-grey-A700.disabled-text,
.theme-default-dark .dark-grey-A700 .disabled-text, .theme-default-dark .primary-400.hint-text,
.theme-default-dark .primary-400 .hint-text, .theme-default-dark .primary-400.disabled-text,
.theme-default-dark .primary-400 .disabled-text, .theme-default-dark .primary-500.hint-text,
.theme-default-dark .primary-500 .hint-text, .theme-default-dark .primary-500.disabled-text,
.theme-default-dark .primary-500 .disabled-text, .theme-default-dark .primary-600.hint-text,
.theme-default-dark .primary-600 .hint-text, .theme-default-dark .primary-600.disabled-text,
.theme-default-dark .primary-600 .disabled-text, .theme-default-dark .primary-700.hint-text,
.theme-default-dark .primary-700 .hint-text, .theme-default-dark .primary-700.disabled-text,
.theme-default-dark .primary-700 .disabled-text, .theme-default-dark .primary-800.hint-text,
.theme-default-dark .primary-800 .hint-text, .theme-default-dark .primary-800.disabled-text,
.theme-default-dark .primary-800 .disabled-text, .theme-default-dark .primary-900.hint-text,
.theme-default-dark .primary-900 .hint-text, .theme-default-dark .primary-900.disabled-text,
.theme-default-dark .primary-900 .disabled-text, .theme-default-dark .primary-A400.hint-text,
.theme-default-dark .primary-A400 .hint-text, .theme-default-dark .primary-A400.disabled-text,
.theme-default-dark .primary-A400 .disabled-text, .theme-default-dark .primary-A700.hint-text,
.theme-default-dark .primary-A700 .hint-text, .theme-default-dark .primary-A700.disabled-text,
.theme-default-dark .primary-A700 .disabled-text, .theme-default-dark .accent-400.hint-text,
.theme-default-dark .accent-400 .hint-text, .theme-default-dark .accent-400.disabled-text,
.theme-default-dark .accent-400 .disabled-text, .theme-default-dark .accent-500.hint-text,
.theme-default-dark .accent-500 .hint-text, .theme-default-dark .accent-500.disabled-text,
.theme-default-dark .accent-500 .disabled-text, .theme-default-dark .accent-600.hint-text,
.theme-default-dark .accent-600 .hint-text, .theme-default-dark .accent-600.disabled-text,
.theme-default-dark .accent-600 .disabled-text, .theme-default-dark .accent-700.hint-text,
.theme-default-dark .accent-700 .hint-text, .theme-default-dark .accent-700.disabled-text,
.theme-default-dark .accent-700 .disabled-text, .theme-default-dark .accent-800.hint-text,
.theme-default-dark .accent-800 .hint-text, .theme-default-dark .accent-800.disabled-text,
.theme-default-dark .accent-800 .disabled-text, .theme-default-dark .accent-900.hint-text,
.theme-default-dark .accent-900 .hint-text, .theme-default-dark .accent-900.disabled-text,
.theme-default-dark .accent-900 .disabled-text, .theme-default-dark .accent-A200.hint-text,
.theme-default-dark .accent-A200 .hint-text, .theme-default-dark .accent-A200.disabled-text,
.theme-default-dark .accent-A200 .disabled-text, .theme-default-dark .accent-A400.hint-text,
.theme-default-dark .accent-A400 .hint-text, .theme-default-dark .accent-A400.disabled-text,
.theme-default-dark .accent-A400 .disabled-text, .theme-default-dark .accent-A700.hint-text,
.theme-default-dark .accent-A700 .hint-text, .theme-default-dark .accent-A700.disabled-text,
.theme-default-dark .accent-A700 .disabled-text, .theme-default-dark .warn-500.hint-text,
.theme-default-dark .warn-500 .hint-text, .theme-default-dark .warn-500.disabled-text,
.theme-default-dark .warn-500 .disabled-text, .theme-default-dark .warn-600.hint-text,
.theme-default-dark .warn-600 .hint-text, .theme-default-dark .warn-600.disabled-text,
.theme-default-dark .warn-600 .disabled-text, .theme-default-dark .warn-700.hint-text,
.theme-default-dark .warn-700 .hint-text, .theme-default-dark .warn-700.disabled-text,
.theme-default-dark .warn-700 .disabled-text, .theme-default-dark .warn-800.hint-text,
.theme-default-dark .warn-800 .hint-text, .theme-default-dark .warn-800.disabled-text,
.theme-default-dark .warn-800 .disabled-text, .theme-default-dark .warn-900.hint-text,
.theme-default-dark .warn-900 .hint-text, .theme-default-dark .warn-900.disabled-text,
.theme-default-dark .warn-900 .disabled-text, .theme-default-dark .warn-A200.hint-text,
.theme-default-dark .warn-A200 .hint-text, .theme-default-dark .warn-A200.disabled-text,
.theme-default-dark .warn-A200 .disabled-text, .theme-default-dark .warn-A400.hint-text,
.theme-default-dark .warn-A400 .hint-text, .theme-default-dark .warn-A400.disabled-text,
.theme-default-dark .warn-A400 .disabled-text, .theme-default-dark .warn-A700.hint-text,
.theme-default-dark .warn-A700 .hint-text, .theme-default-dark .warn-A700.disabled-text,
.theme-default-dark .warn-A700 .disabled-text {
  color: rgba(255, 255, 255, 0.5) !important;
}
.theme-default-dark .red-500.divider,
.theme-default-dark .red-500 .divider, .theme-default-dark .red-600.divider,
.theme-default-dark .red-600 .divider, .theme-default-dark .red-700.divider,
.theme-default-dark .red-700 .divider, .theme-default-dark .red-800.divider,
.theme-default-dark .red-800 .divider, .theme-default-dark .red-900.divider,
.theme-default-dark .red-900 .divider, .theme-default-dark .red-A200.divider,
.theme-default-dark .red-A200 .divider, .theme-default-dark .red-A400.divider,
.theme-default-dark .red-A400 .divider, .theme-default-dark .red-A700.divider,
.theme-default-dark .red-A700 .divider, .theme-default-dark .pink-500.divider,
.theme-default-dark .pink-500 .divider, .theme-default-dark .pink-600.divider,
.theme-default-dark .pink-600 .divider, .theme-default-dark .pink-700.divider,
.theme-default-dark .pink-700 .divider, .theme-default-dark .pink-800.divider,
.theme-default-dark .pink-800 .divider, .theme-default-dark .pink-900.divider,
.theme-default-dark .pink-900 .divider, .theme-default-dark .pink-A200.divider,
.theme-default-dark .pink-A200 .divider, .theme-default-dark .pink-A400.divider,
.theme-default-dark .pink-A400 .divider, .theme-default-dark .pink-A700.divider,
.theme-default-dark .pink-A700 .divider, .theme-default-dark .purple-300.divider,
.theme-default-dark .purple-300 .divider, .theme-default-dark .purple-400.divider,
.theme-default-dark .purple-400 .divider, .theme-default-dark .purple-500.divider,
.theme-default-dark .purple-500 .divider, .theme-default-dark .purple-600.divider,
.theme-default-dark .purple-600 .divider, .theme-default-dark .purple-700.divider,
.theme-default-dark .purple-700 .divider, .theme-default-dark .purple-800.divider,
.theme-default-dark .purple-800 .divider, .theme-default-dark .purple-900.divider,
.theme-default-dark .purple-900 .divider, .theme-default-dark .purple-A200.divider,
.theme-default-dark .purple-A200 .divider, .theme-default-dark .purple-A400.divider,
.theme-default-dark .purple-A400 .divider, .theme-default-dark .purple-A700.divider,
.theme-default-dark .purple-A700 .divider, .theme-default-dark .deep-purple-300.divider,
.theme-default-dark .deep-purple-300 .divider, .theme-default-dark .deep-purple-400.divider,
.theme-default-dark .deep-purple-400 .divider, .theme-default-dark .deep-purple-500.divider,
.theme-default-dark .deep-purple-500 .divider, .theme-default-dark .deep-purple-600.divider,
.theme-default-dark .deep-purple-600 .divider, .theme-default-dark .deep-purple-700.divider,
.theme-default-dark .deep-purple-700 .divider, .theme-default-dark .deep-purple-800.divider,
.theme-default-dark .deep-purple-800 .divider, .theme-default-dark .deep-purple-900.divider,
.theme-default-dark .deep-purple-900 .divider, .theme-default-dark .deep-purple-A200.divider,
.theme-default-dark .deep-purple-A200 .divider, .theme-default-dark .deep-purple-A400.divider,
.theme-default-dark .deep-purple-A400 .divider, .theme-default-dark .deep-purple-A700.divider,
.theme-default-dark .deep-purple-A700 .divider, .theme-default-dark .indigo-300.divider,
.theme-default-dark .indigo-300 .divider, .theme-default-dark .indigo-400.divider,
.theme-default-dark .indigo-400 .divider, .theme-default-dark .indigo-500.divider,
.theme-default-dark .indigo-500 .divider, .theme-default-dark .indigo-600.divider,
.theme-default-dark .indigo-600 .divider, .theme-default-dark .indigo-700.divider,
.theme-default-dark .indigo-700 .divider, .theme-default-dark .indigo-800.divider,
.theme-default-dark .indigo-800 .divider, .theme-default-dark .indigo-900.divider,
.theme-default-dark .indigo-900 .divider, .theme-default-dark .indigo-A200.divider,
.theme-default-dark .indigo-A200 .divider, .theme-default-dark .indigo-A400.divider,
.theme-default-dark .indigo-A400 .divider, .theme-default-dark .indigo-A700.divider,
.theme-default-dark .indigo-A700 .divider, .theme-default-dark .blue-400.divider,
.theme-default-dark .blue-400 .divider, .theme-default-dark .blue-500.divider,
.theme-default-dark .blue-500 .divider, .theme-default-dark .blue-600.divider,
.theme-default-dark .blue-600 .divider, .theme-default-dark .blue-700.divider,
.theme-default-dark .blue-700 .divider, .theme-default-dark .blue-800.divider,
.theme-default-dark .blue-800 .divider, .theme-default-dark .blue-900.divider,
.theme-default-dark .blue-900 .divider, .theme-default-dark .blue-A200.divider,
.theme-default-dark .blue-A200 .divider, .theme-default-dark .blue-A400.divider,
.theme-default-dark .blue-A400 .divider, .theme-default-dark .blue-A700.divider,
.theme-default-dark .blue-A700 .divider, .theme-default-dark .light-blue-500.divider,
.theme-default-dark .light-blue-500 .divider, .theme-default-dark .light-blue-600.divider,
.theme-default-dark .light-blue-600 .divider, .theme-default-dark .light-blue-700.divider,
.theme-default-dark .light-blue-700 .divider, .theme-default-dark .light-blue-800.divider,
.theme-default-dark .light-blue-800 .divider, .theme-default-dark .light-blue-900.divider,
.theme-default-dark .light-blue-900 .divider, .theme-default-dark .light-blue-A700.divider,
.theme-default-dark .light-blue-A700 .divider, .theme-default-dark .cyan-500.divider,
.theme-default-dark .cyan-500 .divider, .theme-default-dark .cyan-600.divider,
.theme-default-dark .cyan-600 .divider, .theme-default-dark .cyan-700.divider,
.theme-default-dark .cyan-700 .divider, .theme-default-dark .cyan-800.divider,
.theme-default-dark .cyan-800 .divider, .theme-default-dark .cyan-900.divider,
.theme-default-dark .cyan-900 .divider, .theme-default-dark .teal-500.divider,
.theme-default-dark .teal-500 .divider, .theme-default-dark .teal-600.divider,
.theme-default-dark .teal-600 .divider, .theme-default-dark .teal-700.divider,
.theme-default-dark .teal-700 .divider, .theme-default-dark .teal-800.divider,
.theme-default-dark .teal-800 .divider, .theme-default-dark .teal-900.divider,
.theme-default-dark .teal-900 .divider, .theme-default-dark .green-500.divider,
.theme-default-dark .green-500 .divider, .theme-default-dark .green-600.divider,
.theme-default-dark .green-600 .divider, .theme-default-dark .green-700.divider,
.theme-default-dark .green-700 .divider, .theme-default-dark .green-800.divider,
.theme-default-dark .green-800 .divider, .theme-default-dark .green-900.divider,
.theme-default-dark .green-900 .divider, .theme-default-dark .light-green-600.divider,
.theme-default-dark .light-green-600 .divider, .theme-default-dark .light-green-700.divider,
.theme-default-dark .light-green-700 .divider, .theme-default-dark .light-green-800.divider,
.theme-default-dark .light-green-800 .divider, .theme-default-dark .light-green-900.divider,
.theme-default-dark .light-green-900 .divider, .theme-default-dark .lime-500.divider,
.theme-default-dark .lime-500 .divider, .theme-default-dark .lime-600.divider,
.theme-default-dark .lime-600 .divider, .theme-default-dark .lime-700.divider,
.theme-default-dark .lime-700 .divider, .theme-default-dark .lime-800.divider,
.theme-default-dark .lime-800 .divider, .theme-default-dark .lime-900.divider,
.theme-default-dark .lime-900 .divider, .theme-default-dark .orange-800.divider,
.theme-default-dark .orange-800 .divider, .theme-default-dark .orange-900.divider,
.theme-default-dark .orange-900 .divider, .theme-default-dark .deep-orange-500.divider,
.theme-default-dark .deep-orange-500 .divider, .theme-default-dark .deep-orange-600.divider,
.theme-default-dark .deep-orange-600 .divider, .theme-default-dark .deep-orange-700.divider,
.theme-default-dark .deep-orange-700 .divider, .theme-default-dark .deep-orange-800.divider,
.theme-default-dark .deep-orange-800 .divider, .theme-default-dark .deep-orange-900.divider,
.theme-default-dark .deep-orange-900 .divider, .theme-default-dark .deep-orange-A400.divider,
.theme-default-dark .deep-orange-A400 .divider, .theme-default-dark .deep-orange-A700.divider,
.theme-default-dark .deep-orange-A700 .divider, .theme-default-dark .brown-300.divider,
.theme-default-dark .brown-300 .divider, .theme-default-dark .brown-400.divider,
.theme-default-dark .brown-400 .divider, .theme-default-dark .brown-500.divider,
.theme-default-dark .brown-500 .divider, .theme-default-dark .brown-600.divider,
.theme-default-dark .brown-600 .divider, .theme-default-dark .brown-700.divider,
.theme-default-dark .brown-700 .divider, .theme-default-dark .brown-800.divider,
.theme-default-dark .brown-800 .divider, .theme-default-dark .brown-900.divider,
.theme-default-dark .brown-900 .divider, .theme-default-dark .brown-A400.divider,
.theme-default-dark .brown-A400 .divider, .theme-default-dark .brown-A700.divider,
.theme-default-dark .brown-A700 .divider, .theme-default-dark .grey-500.divider,
.theme-default-dark .grey-500 .divider, .theme-default-dark .grey-600.divider,
.theme-default-dark .grey-600 .divider, .theme-default-dark .grey-700.divider,
.theme-default-dark .grey-700 .divider, .theme-default-dark .grey-800.divider,
.theme-default-dark .grey-800 .divider, .theme-default-dark .grey-900.divider,
.theme-default-dark .grey-900 .divider, .theme-default-dark .blue-grey-400.divider,
.theme-default-dark .blue-grey-400 .divider, .theme-default-dark .blue-grey-500.divider,
.theme-default-dark .blue-grey-500 .divider, .theme-default-dark .blue-grey-600.divider,
.theme-default-dark .blue-grey-600 .divider, .theme-default-dark .blue-grey-700.divider,
.theme-default-dark .blue-grey-700 .divider, .theme-default-dark .blue-grey-800.divider,
.theme-default-dark .blue-grey-800 .divider, .theme-default-dark .blue-grey-900.divider,
.theme-default-dark .blue-grey-900 .divider, .theme-default-dark .blue-grey-A400.divider,
.theme-default-dark .blue-grey-A400 .divider, .theme-default-dark .blue-grey-A700.divider,
.theme-default-dark .blue-grey-A700 .divider, .theme-default-dark .dark-grey-50.divider,
.theme-default-dark .dark-grey-50 .divider, .theme-default-dark .dark-grey-100.divider,
.theme-default-dark .dark-grey-100 .divider, .theme-default-dark .dark-grey-200.divider,
.theme-default-dark .dark-grey-200 .divider, .theme-default-dark .dark-grey-300.divider,
.theme-default-dark .dark-grey-300 .divider, .theme-default-dark .dark-grey-400.divider,
.theme-default-dark .dark-grey-400 .divider, .theme-default-dark .dark-grey-500.divider,
.theme-default-dark .dark-grey-500 .divider, .theme-default-dark .dark-grey-600.divider,
.theme-default-dark .dark-grey-600 .divider, .theme-default-dark .dark-grey-700.divider,
.theme-default-dark .dark-grey-700 .divider, .theme-default-dark .dark-grey-800.divider,
.theme-default-dark .dark-grey-800 .divider, .theme-default-dark .dark-grey-900.divider,
.theme-default-dark .dark-grey-900 .divider, .theme-default-dark .dark-grey-A100.divider,
.theme-default-dark .dark-grey-A100 .divider, .theme-default-dark .dark-grey-A200.divider,
.theme-default-dark .dark-grey-A200 .divider, .theme-default-dark .dark-grey-A400.divider,
.theme-default-dark .dark-grey-A400 .divider, .theme-default-dark .dark-grey-A700.divider,
.theme-default-dark .dark-grey-A700 .divider, .theme-default-dark .primary-400.divider,
.theme-default-dark .primary-400 .divider, .theme-default-dark .primary-500.divider,
.theme-default-dark .primary-500 .divider, .theme-default-dark .primary-600.divider,
.theme-default-dark .primary-600 .divider, .theme-default-dark .primary-700.divider,
.theme-default-dark .primary-700 .divider, .theme-default-dark .primary-800.divider,
.theme-default-dark .primary-800 .divider, .theme-default-dark .primary-900.divider,
.theme-default-dark .primary-900 .divider, .theme-default-dark .primary-A400.divider,
.theme-default-dark .primary-A400 .divider, .theme-default-dark .primary-A700.divider,
.theme-default-dark .primary-A700 .divider, .theme-default-dark .accent-400.divider,
.theme-default-dark .accent-400 .divider, .theme-default-dark .accent-500.divider,
.theme-default-dark .accent-500 .divider, .theme-default-dark .accent-600.divider,
.theme-default-dark .accent-600 .divider, .theme-default-dark .accent-700.divider,
.theme-default-dark .accent-700 .divider, .theme-default-dark .accent-800.divider,
.theme-default-dark .accent-800 .divider, .theme-default-dark .accent-900.divider,
.theme-default-dark .accent-900 .divider, .theme-default-dark .accent-A200.divider,
.theme-default-dark .accent-A200 .divider, .theme-default-dark .accent-A400.divider,
.theme-default-dark .accent-A400 .divider, .theme-default-dark .accent-A700.divider,
.theme-default-dark .accent-A700 .divider, .theme-default-dark .warn-500.divider,
.theme-default-dark .warn-500 .divider, .theme-default-dark .warn-600.divider,
.theme-default-dark .warn-600 .divider, .theme-default-dark .warn-700.divider,
.theme-default-dark .warn-700 .divider, .theme-default-dark .warn-800.divider,
.theme-default-dark .warn-800 .divider, .theme-default-dark .warn-900.divider,
.theme-default-dark .warn-900 .divider, .theme-default-dark .warn-A200.divider,
.theme-default-dark .warn-A200 .divider, .theme-default-dark .warn-A400.divider,
.theme-default-dark .warn-A400 .divider, .theme-default-dark .warn-A700.divider,
.theme-default-dark .warn-A700 .divider {
  color: rgba(255, 255, 255, 0.12) !important;
}
.theme-default-dark .elevation-z-0 {
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.033), 0px 0px 0px 0px rgba(0, 0, 0, 0.033), 0px 0px 0px 0px rgba(0, 0, 0, 0.033);
}
.theme-default-dark .elevation-z-1 {
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.033), 0px 2px 2px 0px rgba(0, 0, 0, 0.033), 0px 2px 2px 0px rgba(0, 0, 0, 0.033);
}
.theme-default-dark .elevation-z-2 {
  box-shadow: 0px 3px 2px -2px rgba(0, 0, 0, 0.033), 0px 2px 3px 0px rgba(0, 0, 0, 0.033), 0px 1px 5px 0px rgba(0, 0, 0, 0.033);
}
.theme-default-dark .elevation-z-3 {
  box-shadow: 0px 3px 3px -2px rgba(0, 0, 0, 0.033), 0px 3px 4px 0px rgba(0, 0, 0, 0.033), 0px 1px 8px 0px rgba(0, 0, 0, 0.033);
}
.theme-default-dark .elevation-z-4 {
  box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.033), 0px 4px 5px 0px rgba(0, 0, 0, 0.033), 0px 1px 10px 0px rgba(0, 0, 0, 0.033);
}
.theme-default-dark .elevation-z-5 {
  box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.033), 0px 5px 8px 0px rgba(0, 0, 0, 0.033), 0px 1px 14px 0px rgba(0, 0, 0, 0.033);
}
.theme-default-dark .elevation-z-6 {
  box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.033), 0px 6px 10px 0px rgba(0, 0, 0, 0.033), 0px 1px 18px 0px rgba(0, 0, 0, 0.033);
}
.theme-default-dark .elevation-z-7 {
  box-shadow: 0px 4px 5px -2px rgba(0, 0, 0, 0.033), 0px 7px 10px 1px rgba(0, 0, 0, 0.033), 0px 2px 16px 1px rgba(0, 0, 0, 0.033);
}
.theme-default-dark .elevation-z-8 {
  box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.033), 0px 8px 10px 1px rgba(0, 0, 0, 0.033), 0px 3px 14px 2px rgba(0, 0, 0, 0.033);
}
.theme-default-dark .elevation-z-9 {
  box-shadow: 0px 5px 6px -3px rgba(0, 0, 0, 0.033), 0px 9px 12px 1px rgba(0, 0, 0, 0.033), 0px 3px 16px 2px rgba(0, 0, 0, 0.033);
}
.theme-default-dark .elevation-z-10 {
  box-shadow: 0px 6px 6px -3px rgba(0, 0, 0, 0.033), 0px 10px 14px 1px rgba(0, 0, 0, 0.033), 0px 4px 18px 3px rgba(0, 0, 0, 0.033);
}
.theme-default-dark .elevation-z-11 {
  box-shadow: 0px 6px 7px -4px rgba(0, 0, 0, 0.033), 0px 11px 15px 1px rgba(0, 0, 0, 0.033), 0px 4px 20px 3px rgba(0, 0, 0, 0.033);
}
.theme-default-dark .elevation-z-12 {
  box-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.033), 0px 12px 17px 2px rgba(0, 0, 0, 0.033), 0px 5px 22px 4px rgba(0, 0, 0, 0.033);
}
.theme-default-dark .elevation-z-13 {
  box-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.033), 0px 13px 19px 2px rgba(0, 0, 0, 0.033), 0px 5px 24px 4px rgba(0, 0, 0, 0.033);
}
.theme-default-dark .elevation-z-14 {
  box-shadow: 0px 7px 9px -4px rgba(0, 0, 0, 0.033), 0px 14px 21px 2px rgba(0, 0, 0, 0.033), 0px 5px 26px 4px rgba(0, 0, 0, 0.033);
}
.theme-default-dark .elevation-z-15 {
  box-shadow: 0px 8px 9px -5px rgba(0, 0, 0, 0.033), 0px 15px 22px 2px rgba(0, 0, 0, 0.033), 0px 6px 28px 5px rgba(0, 0, 0, 0.033);
}
.theme-default-dark .elevation-z-16 {
  box-shadow: 0px 8px 10px -5px rgba(0, 0, 0, 0.033), 0px 16px 24px 2px rgba(0, 0, 0, 0.033), 0px 6px 30px 5px rgba(0, 0, 0, 0.033);
}
.theme-default-dark .elevation-z-17 {
  box-shadow: 0px 8px 11px -5px rgba(0, 0, 0, 0.033), 0px 17px 26px 2px rgba(0, 0, 0, 0.033), 0px 6px 32px 5px rgba(0, 0, 0, 0.033);
}
.theme-default-dark .elevation-z-18 {
  box-shadow: 0px 9px 11px -5px rgba(0, 0, 0, 0.033), 0px 18px 28px 2px rgba(0, 0, 0, 0.033), 0px 7px 34px 6px rgba(0, 0, 0, 0.033);
}
.theme-default-dark .elevation-z-19 {
  box-shadow: 0px 9px 12px -6px rgba(0, 0, 0, 0.033), 0px 19px 29px 2px rgba(0, 0, 0, 0.033), 0px 7px 36px 6px rgba(0, 0, 0, 0.033);
}
.theme-default-dark .elevation-z-20 {
  box-shadow: 0px 10px 13px -6px rgba(0, 0, 0, 0.033), 0px 20px 31px 3px rgba(0, 0, 0, 0.033), 0px 8px 38px 7px rgba(0, 0, 0, 0.033);
}
.theme-default-dark .elevation-z-21 {
  box-shadow: 0px 10px 13px -6px rgba(0, 0, 0, 0.033), 0px 21px 33px 3px rgba(0, 0, 0, 0.033), 0px 8px 40px 7px rgba(0, 0, 0, 0.033);
}
.theme-default-dark .elevation-z-22 {
  box-shadow: 0px 10px 14px -6px rgba(0, 0, 0, 0.033), 0px 22px 35px 3px rgba(0, 0, 0, 0.033), 0px 8px 42px 7px rgba(0, 0, 0, 0.033);
}
.theme-default-dark .elevation-z-23 {
  box-shadow: 0px 11px 14px -7px rgba(0, 0, 0, 0.033), 0px 23px 36px 3px rgba(0, 0, 0, 0.033), 0px 9px 44px 8px rgba(0, 0, 0, 0.033);
}
.theme-default-dark .elevation-z-24 {
  box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.033), 0px 24px 38px 3px rgba(0, 0, 0, 0.033), 0px 9px 46px 8px rgba(0, 0, 0, 0.033);
}
.theme-default-dark .angular-editor .angular-editor-toolbar {
  font: 100 0.8rem/15px Roboto, Arial, sans-serif !important;
  background-color: #292929 !important;
  padding: 8px !important;
  border: 0px !important;
}
.theme-default-dark .angular-editor .angular-editor-toolbar .angular-editor-toolbar-set .angular-editor-button {
  background-color: transparent !important;
  vertical-align: middle !important;
  border: 0 !important;
  padding: 8px !important;
  float: left !important;
  border-radius: 50px;
}
.theme-default-dark .angular-editor .angular-editor-toolbar .angular-editor-toolbar-set .angular-editor-button:hover {
  background: rgba(20, 20, 20, 0.5) !important;
}
.theme-default-dark .angular-editor .angular-editor-toolbar .angular-editor-toolbar-set .angular-editor-button.active {
  background: #141414 !important;
}
.theme-default-dark .angular-editor .angular-editor-toolbar .angular-editor-toolbar-set .angular-editor-button i {
  color: #E2E7E9;
  height: 24px !important;
  width: 24px !important;
  font-size: 16px !important;
  line-height: 24px !important;
}
.theme-default-dark .angular-editor .angular-editor-textarea {
  min-height: 100px !important;
  height: 30vh !important;
  padding: 16px !important;
  border: 0px !important;
  background-color: transparent !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  position: relative !important;
}
.theme-default-dark .mat-mdc-unelevated-button,
.theme-default-dark .mat-mdc-raised-button,
.theme-default-dark .mat-mdc-fab,
.theme-default-dark .mat-mdc-mini-fab {
  --mdc-filled-button-container-shape: 8px;
}
.theme-default-dark .mat-mdc-unelevated-button:not([disabled=true]).mat-primary,
.theme-default-dark .mat-mdc-raised-button:not([disabled=true]).mat-primary,
.theme-default-dark .mat-mdc-fab:not([disabled=true]).mat-primary,
.theme-default-dark .mat-mdc-mini-fab:not([disabled=true]).mat-primary {
  color: white;
}
.theme-default-dark .mat-mdc-unelevated-button:not([disabled=true]).mat-accent,
.theme-default-dark .mat-mdc-raised-button:not([disabled=true]).mat-accent,
.theme-default-dark .mat-mdc-fab:not([disabled=true]).mat-accent,
.theme-default-dark .mat-mdc-mini-fab:not([disabled=true]).mat-accent {
  color: white;
}
.theme-default-dark .mat-mdc-unelevated-button:not([disabled=true]).mat-warn,
.theme-default-dark .mat-mdc-raised-button:not([disabled=true]).mat-warn,
.theme-default-dark .mat-mdc-fab:not([disabled=true]).mat-warn,
.theme-default-dark .mat-mdc-mini-fab:not([disabled=true]).mat-warn {
  color: rgba(0, 0, 0, 0.87);
}
.theme-default-dark .mat-mdc-outlined-button {
  --mdc-outlined-button-container-shape: 8px;
  --mdc-outlined-button-outline-color: currentColor;
  --mdc-outlined-button-outline-width: 0;
  box-shadow: 0px 0px 0px 2px currentColor inset;
}
.theme-default-dark .mat-mdc-raised-button {
  --mdc-protected-button-container-height: 36px;
  --mdc-protected-button-container-shape: 8px;
  --mdc-protected-button-container-elevation: 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);
}
.theme-default-dark .mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-notched-outline .mdc-notched-outline__leading,
.theme-default-dark .mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-notched-outline .mdc-notched-outline__notch,
.theme-default-dark .mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-notched-outline .mdc-notched-outline__trailing {
  --mdc-outlined-text-field-outline-width: 2px;
}
.theme-default-dark .mdc-text-field--outlined.mdc-text-field--disabled .mdc-notched-outline .mdc-notched-outline__leading,
.theme-default-dark .mdc-text-field--outlined.mdc-text-field--disabled .mdc-notched-outline .mdc-notched-outline__notch,
.theme-default-dark .mdc-text-field--outlined.mdc-text-field--disabled .mdc-notched-outline .mdc-notched-outline__trailing {
  --mdc-outlined-text-field-outline-width: 2px;
}
.theme-default-dark .mdc-notched-outline__trailing {
  border-left: none;
  border-right: 2px solid;
}
.theme-default-dark .mdc-notched-outline__leading {
  border-left: 2px solid;
  border-right: none;
  width: 12px;
}
.theme-default-dark .mdc-notched-outline__notch {
  border-left: 2px solid transparent;
}
.theme-default-dark .mdc-notched-outline__leading,
.theme-default-dark .mdc-notched-outline__notch,
.theme-default-dark .mdc-notched-outline__trailing {
  border-top: 2px solid;
  border-bottom: 2px solid;
}
.theme-default-dark .mdc-text-field--outlined {
  --mdc-outlined-text-field-container-shape: 8px;
}
.theme-default-dark .mat-mdc-text-field-wrapper.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above {
  --mat-mdc-form-field-label-transform: translateY(-29.75px)
      scale(var(--mat-mdc-form-field-floating-label-scale, 0.75));
}
.theme-default-dark .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-floating-label {
  top: 22px;
}
.theme-default-dark .mat-mdc-text-field-wrapper.mdc-text-field--outlined .mat-mdc-form-field-infix {
  padding-top: 12px;
  padding-bottom: 12px;
}
.theme-default-dark .mat-mdc-form-field-infix {
  min-height: 48px;
}
.theme-default-dark .mat-mdc-icon-button.mat-mdc-button-base {
  padding: 0;
}
.theme-default-dark .mat-mdc-icon-button.mat-mdc-button-base {
  display: flex;
  align-content: center;
  justify-content: center;
  flex-wrap: wrap;
}
.theme-default-dark .mat-stepper-vertical,
.theme-default-dark .mat-stepper-horizontal {
  --mat-stepper-container-color: map-get($background, surface);
}
.theme-default-dark .mat-stepper-horizontal.bullet-stepper-header-labeled .mat-horizontal-stepper-header-container {
  justify-content: end;
  margin-bottom: 0;
  margin-top: 0;
  margin-right: 0;
  padding-right: 24px;
  height: 0;
}
.theme-default-dark .mat-stepper-horizontal.bullet-stepper-header-labeled, .theme-default-dark .mat-stepper-horizontal.bullet-stepper-header {
  position: relative;
}
.theme-default-dark .mat-stepper-horizontal.bullet-stepper-header-labeled .mat-horizontal-stepper-header-container .mat-stepper-horizontal-line, .theme-default-dark .mat-stepper-horizontal.bullet-stepper-header .mat-horizontal-stepper-header-container .mat-stepper-horizontal-line {
  display: none;
}
.theme-default-dark .mat-stepper-horizontal.bullet-stepper-header-labeled .mat-horizontal-stepper-header-container .mat-step-header-ripple, .theme-default-dark .mat-stepper-horizontal.bullet-stepper-header .mat-horizontal-stepper-header-container .mat-step-header-ripple {
  display: none;
}
.theme-default-dark .mat-stepper-horizontal.bullet-stepper-header-labeled .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header, .theme-default-dark .mat-stepper-horizontal.bullet-stepper-header .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header {
  height: initial;
  overflow: initial;
}
.theme-default-dark .mat-stepper-horizontal.bullet-stepper-header-labeled .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header.mat-step-header, .theme-default-dark .mat-stepper-horizontal.bullet-stepper-header .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header.mat-step-header {
  padding: 0;
  border-radius: 0;
  flex-direction: column;
  position: inherit;
  width: 40px;
}
.theme-default-dark .mat-stepper-horizontal.bullet-stepper-header-labeled .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header.mat-step-header.cdk-keyboard-focused, .theme-default-dark .mat-stepper-horizontal.bullet-stepper-header-labeled .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header.mat-step-header.cdk-program-focused, .theme-default-dark .mat-stepper-horizontal.bullet-stepper-header-labeled .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header.mat-step-header:hover, .theme-default-dark .mat-stepper-horizontal.bullet-stepper-header .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header.mat-step-header.cdk-keyboard-focused, .theme-default-dark .mat-stepper-horizontal.bullet-stepper-header .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header.mat-step-header.cdk-program-focused, .theme-default-dark .mat-stepper-horizontal.bullet-stepper-header .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header.mat-step-header:hover {
  background-color: transparent;
}
.theme-default-dark .mat-stepper-horizontal.bullet-stepper-header-labeled .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header.mat-step-header .mat-step-icon, .theme-default-dark .mat-stepper-horizontal.bullet-stepper-header .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header.mat-step-header .mat-step-icon {
  margin: -32px 0 0 8px;
  border-radius: 8px;
  height: 8px;
  width: 32px;
  flex-shrink: 0;
  position: absolute;
}
.theme-default-dark .mat-stepper-horizontal.bullet-stepper-header-labeled .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header .mat-step-label, .theme-default-dark .mat-stepper-horizontal.bullet-stepper-header .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header .mat-step-label {
  position: absolute;
  display: none;
  right: 0;
  margin-top: -52px;
  margin-right: 24px;
  font-family: "CircularStd";
  font-weight: 700;
  color: #435056;
}
.theme-default-dark .mat-stepper-horizontal.bullet-stepper-header-labeled .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header .mat-step-label.mat-step-label-active, .theme-default-dark .mat-stepper-horizontal.bullet-stepper-header .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header .mat-step-label.mat-step-label-active {
  display: none;
}
.theme-default-dark .mat-stepper-horizontal.bullet-stepper-header-labeled .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header .mat-step-label.mat-step-label-active.mat-step-label-selected, .theme-default-dark .mat-stepper-horizontal.bullet-stepper-header .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header .mat-step-label.mat-step-label-active.mat-step-label-selected {
  display: flex;
  justify-content: flex-end;
}
.theme-default-dark .mat-stepper-horizontal.bullet-stepper-header-labeled .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header .mat-step-icon-state-edit, .theme-default-dark .mat-stepper-horizontal.bullet-stepper-header .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header .mat-step-icon-state-edit {
  margin: 0;
}
.theme-default-dark .mat-stepper-horizontal.bullet-stepper-header-labeled .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header .mat-step-icon-state-edit.mat-step-icon, .theme-default-dark .mat-stepper-horizontal.bullet-stepper-header .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header .mat-step-icon-state-edit.mat-step-icon {
  background-color: #2979ff;
}
.theme-default-dark .mat-stepper-horizontal.bullet-stepper-header-labeled .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header .mat-step-icon-state-edit.mat-step-icon .mat-icon, .theme-default-dark .mat-stepper-horizontal.bullet-stepper-header .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header .mat-step-icon-state-edit.mat-step-icon .mat-icon {
  display: none;
}
.theme-default-dark .mat-stepper-horizontal.bullet-stepper-header-labeled .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header .mat-step-icon-state-number.mat-step-icon, .theme-default-dark .mat-stepper-horizontal.bullet-stepper-header .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header .mat-step-icon-state-number.mat-step-icon {
  background-color: #292929;
}
.theme-default-dark .mat-stepper-horizontal.bullet-stepper-header-labeled .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header .mat-step-icon-state-number.mat-step-icon .mat-step-icon-content, .theme-default-dark .mat-stepper-horizontal.bullet-stepper-header .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header .mat-step-icon-state-number.mat-step-icon .mat-step-icon-content {
  display: none;
}
.theme-default-dark .mat-stepper-horizontal.bullet-stepper-header-labeled .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header .mat-step-icon-state-number.mat-step-icon.mat-step-icon-selected, .theme-default-dark .mat-stepper-horizontal.bullet-stepper-header .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header .mat-step-icon-state-number.mat-step-icon.mat-step-icon-selected {
  background-color: #2979ff;
  order: 1;
}
.theme-default-dark .mat-stepper-horizontal.bullet-stepper-header-labeled .mat-horizontal-content-container, .theme-default-dark .mat-stepper-horizontal.bullet-stepper-header .mat-horizontal-content-container {
  padding: 0;
}
.theme-default-dark .mat-stepper-horizontal.bullet-stepper-header-labeled .mat-horizontal-content-container .mat-dialog-content, .theme-default-dark .mat-stepper-horizontal.bullet-stepper-header .mat-horizontal-content-container .mat-dialog-content {
  max-height: calc(100vh - 268px);
}
.theme-default-dark .mat-stepper-horizontal.hide-stepper-header .mat-horizontal-stepper-header-container {
  display: none !important;
}
.theme-default-dark .mat-stepper-horizontal.hide-stepper-header .mat-horizontal-content-container {
  overflow: hidden;
  padding: 0;
}
.theme-default-dark .mat-stepper-horizontal.page-layout-stepper .mat-horizontal-stepper-header-container {
  padding-right: 24px;
}
.theme-default-dark .mat-stepper-horizontal.page-layout-stepper .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header .mat-step-label {
  margin-top: -60px;
  margin-right: 24px;
}
.theme-default-dark form .mat-form-field-appearance-outline .mat-form-field-subscript-wrapper,
.theme-default-dark form .mat-form-field-appearance-fill .mat-form-field-subscript-wrapper {
  padding: 0;
  position: relative;
  box-sizing: border-box;
  width: 100%;
  overflow: hidden;
}
.theme-default-dark form .mat-form-field-appearance-outline .mat-form-field-wrapper,
.theme-default-dark form .mat-form-field-appearance-outline .mat-form-field-hint-wrapper,
.theme-default-dark form .mat-form-field-appearance-fill .mat-form-field-wrapper,
.theme-default-dark form .mat-form-field-appearance-fill .mat-form-field-hint-wrapper {
  margin: 0 0 -24px 0;
  padding-bottom: 16px;
}
.theme-default-dark form .mat-expansion-panel.mat-expansion-panel-folder-navigation .mat-expansion-panel-content .mat-expansion-panel-body {
  max-height: 256px;
  overflow-y: auto;
  padding: 0;
}
.theme-default-dark .full-calendar {
  background-color: #0A0A0A;
}
.theme-default-dark .fc-day-top.active .fc-day-number {
  background-color: #2979ff;
  color: #21282C;
}
.theme-default-dark .fc-day-number:hover {
  background-color: #8A9EA8;
  color: #21282C;
}
.theme-default-dark .fc-button-primary {
  background-color: #0A0A0A;
}
.theme-default-dark .fc-button-primary .fc-icon {
  color: #7E8E95;
}
.theme-default-dark .fc-button-primary .fc-day-header span {
  color: #7E8E95;
}
.theme-default-dark .fc-button-primary:hover {
  background-color: #7E8E95;
}
.theme-default-dark .fc-button-primary:hover .fc-icon {
  color: #E2E7E9;
}
.theme-default-dark .fc-unthemed th,
.theme-default-dark .fc-unthemed td,
.theme-default-dark .fc-unthemed thead,
.theme-default-dark .fc-unthemed tbody,
.theme-default-dark .fc-unthemed .fc-divider,
.theme-default-dark .fc-unthemed .fc-row,
.theme-default-dark .fc-unthemed .fc-content,
.theme-default-dark .fc-unthemed .fc-popover,
.theme-default-dark .fc-unthemed .fc-list-view,
.theme-default-dark .fc-unthemed .fc-list-heading td {
  border-color: #7E8E95;
}
.theme-default-dark .fc-unthemed .fc-divider,
.theme-default-dark .fc-unthemed .fc-popover .fc-header,
.theme-default-dark .fc-unthemed .fc-list-heading td {
  background: #7E8E95;
}
.theme-default-dark .fc-unthemed td.fc-today {
  background-color: #0A0A0A;
}
.theme-default-dark .fc-unthemed .fc-disabled-day {
  background: #7E8E95;
  opacity: 0.3;
}
.theme-default-dark .fc-toolbar h2 {
  color: #435056;
}
.theme-default-dark .fc-day-header span {
  color: #7E8E95;
}
.theme-default-dark .fc-unthemed td.fc-today {
  background-color: transparent;
}
.theme-default-dark .fc-day-top.fc-today .fc-day-number {
  background-color: #435056;
  color: #21282C;
}
.theme-default-dark .fc-button-primary:not(:disabled):active,
.theme-default-dark .fc-button-primary:not(:disabled).fc-button-active {
  background-color: transparent;
  border-color: transparent;
}
.theme-default-dark .fc-button-primary {
  color: #0A0A0A;
  background-color: #141414;
  border-color: #2c3e50;
}
.theme-default-dark .fc-button-primary:hover {
  color: #0A0A0A;
  background-color: rgba(20, 20, 20, 0.5);
  border-color: #292929;
}
.theme-default-dark .fc-button-primary:focus {
  box-shadow: 0 0 0 2px rgba(76, 91, 106, 0.5);
}
.theme-default-dark .fc-button-primary:disabled {
  color: #0A0A0A;
  background-color: #292929;
  border-color: #2c3e50;
}
.theme-default-dark .fc-button-primary:not(:disabled):active,
.theme-default-dark .fc-button-primary:not(:disabled).fc-button-active {
  color: #0A0A0A;
  background-color: #292929;
  border-color: #151e27;
}
.theme-default-dark .fc-button-primary:not(:disabled):active:focus,
.theme-default-dark .fc-button-primary:not(:disabled).fc-button-active:focus {
  box-shadow: 0 0 0 2px rgba(76, 91, 106, 0.5);
}
.theme-default-dark .full-calendar {
  display: block;
  border-radius: 8px;
  padding: 16px;
}
.theme-default-dark .fc-day-top.active .fc-day-number {
  border-radius: 8px;
}
.theme-default-dark .fc-day-number {
  display: flex;
  padding: 0;
  margin: 0 auto;
  font-size: 16px;
  line-height: 42px;
  width: 42px;
  height: 42px;
  justify-content: center;
  text-align: center;
  cursor: pointer;
}
.theme-default-dark .fc-day-number:hover {
  border-radius: 999px;
}
.theme-default-dark .fc-button-primary {
  border: none;
  padding: 4px;
  border-radius: 100px;
  line-height: 20px;
  height: 40px;
  width: 40px;
}
.theme-default-dark .fc-button-primary .fc-icon {
  font-size: 32px;
}
.theme-default-dark .fc-button-primary .fc-day-header span {
  display: flex;
  width: 32px;
  float: none;
  padding: 0;
  line-height: 34px;
  height: 32px;
  margin: 0 auto;
  align-content: center;
  justify-content: center;
}
.theme-default-dark .fc-toolbar h2 {
  font-size: 16px;
  text-transform: uppercase;
}
.theme-default-dark .fc-day-header span {
  font-size: 16px;
  text-transform: capitalize;
}
.theme-default-dark .fc-day-top.fc-today .fc-day-number {
  border-radius: 999px;
}
.theme-default-dark .fc-button-primary:focus {
  box-shadow: none;
}
.theme-default-dark .fc-button-primary:not(:disabled):active:focus,
.theme-default-dark .fc-button-primary:not(:disabled).fc-button-active:focus {
  box-shadow: none;
}
.theme-default-dark .fc-unthemed th,
.theme-default-dark .fc-unthemed td,
.theme-default-dark .fc-unthemed thead,
.theme-default-dark .fc-unthemed tbody,
.theme-default-dark .fc-unthemed .fc-divider,
.theme-default-dark .fc-unthemed .fc-row,
.theme-default-dark .fc-unthemed .fc-content,
.theme-default-dark .fc-unthemed .fc-popover,
.theme-default-dark .fc-unthemed .fc-list-view,
.theme-default-dark .fc-unthemed .fc-list-heading td {
  border: 0 !important;
  text-align: center;
  padding-top: 6px;
}
.theme-default-dark .fc-ltr .fc-dayGrid-view .fc-day-top .fc-day-number {
  float: none;
  margin: 8px auto;
}
.theme-default-dark .fc-day-grid-container {
  height: auto !important;
}
.theme-default-dark .fc {
  direction: ltr;
  text-align: left;
}
.theme-default-dark .fc-rtl {
  text-align: right;
}
.theme-default-dark body .fc {
  /* extra precedence to overcome jqui */
  font-size: 16px;
}
.theme-default-dark .fc-highlight {
  /* when user is selecting cells */
  background: #bce8f1;
  opacity: 0.3;
}
.theme-default-dark .fc-bgevent {
  /* default look for background events */
  background: #8fdf82;
  opacity: 0.3;
}
.theme-default-dark .fc-nonbusiness {
  /* default look for non-business-hours areas */
  /* will inherit .fc-bgevent's styles */
  background: #d7d7d7;
}
.theme-default-dark .fc-popover {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
.theme-default-dark .fc-row .fc-highlight-skeleton td,
.theme-default-dark .fc-row .fc-bgevent-skeleton td {
  border-color: transparent;
}
.theme-default-dark .fc-popover {
  position: absolute;
}
.theme-default-dark .fc-popover .fc-header {
  /* TODO: be more consistent with fc-head/fc-body */
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 2px 4px;
}
.theme-default-dark .fc-rtl .fc-popover .fc-header {
  flex-direction: row-reverse;
}
.theme-default-dark .fc-popover .fc-header .fc-title {
  margin: 0 2px;
}
.theme-default-dark .fc-popover .fc-header .fc-close {
  cursor: pointer;
  opacity: 0.65;
  font-size: 1.1em;
}
.theme-default-dark .fc-divider {
  border-style: solid;
  border-width: 1px;
}
.theme-default-dark hr.fc-divider {
  height: 0;
  margin: 0;
  padding: 0 0 2px;
  /* height is unreliable across browsers, so use padding */
  border-width: 1px 0;
}
.theme-default-dark .fc-bg,
.theme-default-dark .fc-bgevent-skeleton,
.theme-default-dark .fc-highlight-skeleton,
.theme-default-dark .fc-mirror-skeleton {
  /* these element should always cling to top-left/right corners */
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.theme-default-dark .fc-bg {
  bottom: 0;
  /* strech bg to bottom edge */
}
.theme-default-dark .fc-bg table {
  height: 100%;
  /* strech bg to bottom edge */
}
.theme-default-dark .fc table {
  width: 100%;
  box-sizing: border-box;
  /* fix scrollbar issue in firefox */
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 1em;
  /* normalize cross-browser */
}
.theme-default-dark .fc th {
  text-align: center;
}
.theme-default-dark .fc th,
.theme-default-dark .fc td {
  border-style: solid;
  border-width: 1px;
  padding: 0;
  vertical-align: top;
}
.theme-default-dark .fc td.fc-today {
  border-style: double;
  /* overcome neighboring borders */
}
.theme-default-dark a[data-goto] {
  cursor: pointer;
}
.theme-default-dark a[data-goto]:hover {
  text-decoration: underline;
}
.theme-default-dark .fc .fc-row {
  /* extra precedence to overcome themes forcing a 1px border */
  /* no visible border by default. but make available if need be (scrollbar width compensation) */
  border-style: solid;
  border-width: 0;
}
.theme-default-dark .fc-row table {
  /* don't put left/right border on anything within a fake row.
  the outer tbody will worry about this */
  border-left: 0 hidden transparent;
  border-right: 0 hidden transparent;
  /* no bottom borders on rows */
  border-bottom: 0 hidden transparent;
}
.theme-default-dark .fc-row:first-child table {
  border-top: 0 hidden transparent;
  /* no top border on first row */
}
.theme-default-dark .fc-row {
  position: relative;
}
.theme-default-dark .fc-row .fc-bg {
  z-index: 1;
}
.theme-default-dark .fc-row .fc-bgevent-skeleton,
.theme-default-dark .fc-row .fc-highlight-skeleton {
  bottom: 0;
  /* stretch skeleton to bottom of row */
}
.theme-default-dark .fc-row .fc-bgevent-skeleton table,
.theme-default-dark .fc-row .fc-highlight-skeleton table {
  height: 100%;
  /* stretch skeleton to bottom of row */
}
.theme-default-dark .fc-row .fc-bgevent-skeleton {
  z-index: 2;
}
.theme-default-dark .fc-row .fc-highlight-skeleton {
  z-index: 3;
}
.theme-default-dark .fc-row .fc-content-skeleton {
  position: relative;
  z-index: 4;
  padding-bottom: 2px;
  /* matches the space above the events */
}
.theme-default-dark .fc-row .fc-mirror-skeleton {
  z-index: 5;
}
.theme-default-dark .fc .fc-row .fc-content-skeleton table,
.theme-default-dark .fc .fc-row .fc-content-skeleton td,
.theme-default-dark .fc .fc-row .fc-mirror-skeleton td {
  /* see-through to the background below */
  /* extra precedence to prevent theme-provided backgrounds */
  background: none;
  /* in case <td>s are globally styled */
  border-color: transparent;
}
.theme-default-dark .fc-row .fc-content-skeleton td,
.theme-default-dark .fc-row .fc-mirror-skeleton td {
  /* don't put a border between events and/or the day number */
  border-bottom: 0;
}
.theme-default-dark .fc-row .fc-content-skeleton tbody td,
.theme-default-dark .fc-row .fc-mirror-skeleton tbody td {
  /* don't put a border between event cells */
  border-top: 0;
}
.theme-default-dark .fc-scroller {
  -webkit-overflow-scrolling: touch;
}
.theme-default-dark .fc-scroller > .fc-day-grid,
.theme-default-dark .fc-scroller > .fc-time-grid {
  position: relative;
  /* re-scope all positions */
  width: 100%;
  /* hack to force re-sizing this inner element when scrollbars appear/disappear */
}
.theme-default-dark .fc-event {
  position: relative;
  /* for resize handle and other inner positioning */
  display: block;
  /* make the <a> tag block */
  font-size: 0.85em;
  line-height: 1.4;
  border-radius: 3px;
  border: 1px solid #3788d8;
}
.theme-default-dark .fc-event,
.theme-default-dark .fc-event-dot {
  background-color: #3788d8;
  /* default BACKGROUND color */
}
.theme-default-dark .fc-event,
.theme-default-dark .fc-event:hover {
  color: #fff;
  /* default TEXT color */
  text-decoration: none;
  /* if <a> has an href */
}
.theme-default-dark .fc-event[href],
.theme-default-dark .fc-event.fc-draggable {
  cursor: pointer;
  /* give events with links and draggable events a hand mouse pointer */
}
.theme-default-dark .fc-not-allowed,
.theme-default-dark .fc-not-allowed .fc-event {
  /* to override an event's custom cursor */
  cursor: not-allowed;
}
.theme-default-dark .fc-event .fc-content {
  position: relative;
  z-index: 2;
}
.theme-default-dark .fc-event .fc-resizer {
  position: absolute;
  z-index: 4;
}
.theme-default-dark .fc-event .fc-resizer {
  display: none;
}
.theme-default-dark .fc-event.fc-allow-mouse-resize .fc-resizer,
.theme-default-dark .fc-event.fc-selected .fc-resizer {
  /* only show when hovering or selected (with touch) */
  display: block;
}
.theme-default-dark .fc-event.fc-selected .fc-resizer:before {
  /* 40x40 touch area */
  content: "";
  position: absolute;
  z-index: 9999;
  /* user of this util can scope within a lower z-index */
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  margin-left: -20px;
  margin-top: -20px;
}
.theme-default-dark .fc-event.fc-selected {
  z-index: 9999 !important;
  /* overcomes inline z-index */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.theme-default-dark .fc-event.fc-selected:after {
  content: "";
  position: absolute;
  z-index: 1;
  /* same z-index as fc-bg, behind text */
  /* overcome the borders */
  top: -1px;
  right: -1px;
  bottom: -1px;
  left: -1px;
  /* darkening effect */
  background: #000;
  opacity: 0.25;
}
.theme-default-dark .fc-event.fc-dragging.fc-selected {
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.3);
}
.theme-default-dark .fc-event.fc-dragging:not(.fc-selected) {
  opacity: 0.75;
}
.theme-default-dark .fc-h-event.fc-selected:before {
  content: "";
  position: absolute;
  z-index: 3;
  /* below resizers */
  top: -10px;
  bottom: -10px;
  left: 0;
  right: 0;
}
.theme-default-dark .fc-ltr .fc-h-event.fc-not-start,
.theme-default-dark .fc-rtl .fc-h-event.fc-not-end {
  margin-left: 0;
  border-left-width: 0;
  padding-left: 1px;
  /* replace the border with padding */
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.theme-default-dark .fc-ltr .fc-h-event.fc-not-end,
.theme-default-dark .fc-rtl .fc-h-event.fc-not-start {
  margin-right: 0;
  border-right-width: 0;
  padding-right: 1px;
  /* replace the border with padding */
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.theme-default-dark .fc-ltr .fc-h-event .fc-start-resizer,
.theme-default-dark .fc-rtl .fc-h-event .fc-end-resizer {
  cursor: w-resize;
  left: -1px;
  /* overcome border */
}
.theme-default-dark .fc-ltr .fc-h-event .fc-end-resizer,
.theme-default-dark .fc-rtl .fc-h-event .fc-start-resizer {
  cursor: e-resize;
  right: -1px;
  /* overcome border */
}
.theme-default-dark .fc-h-event.fc-allow-mouse-resize .fc-resizer {
  width: 7px;
  top: -1px;
  /* overcome top border */
  bottom: -1px;
  /* overcome bottom border */
}
.theme-default-dark .fc-h-event.fc-selected .fc-resizer {
  /* 8x8 little dot */
  border-radius: 4px;
  border-width: 1px;
  width: 6px;
  height: 6px;
  border-style: solid;
  border-color: inherit;
  background: #fff;
  /* vertically center */
  top: 50%;
  margin-top: -4px;
}
.theme-default-dark .fc-ltr .fc-h-event.fc-selected .fc-start-resizer,
.theme-default-dark .fc-rtl .fc-h-event.fc-selected .fc-end-resizer {
  margin-left: -4px;
  /* centers the 8x8 dot on the left edge */
}
.theme-default-dark .fc-ltr .fc-h-event.fc-selected .fc-end-resizer,
.theme-default-dark .fc-rtl .fc-h-event.fc-selected .fc-start-resizer {
  margin-right: -4px;
  /* centers the 8x8 dot on the right edge */
}
.theme-default-dark .fc-day-grid-event {
  margin: 1px 2px 0;
  /* spacing between events and edges */
  padding: 0 1px;
}
.theme-default-dark tr:first-child > td > .fc-day-grid-event {
  margin-top: 2px;
  /* a little bit more space before the first event */
}
.theme-default-dark .fc-mirror-skeleton tr:first-child > td > .fc-day-grid-event {
  margin-top: 0;
  /* except for mirror skeleton */
}
.theme-default-dark .fc-day-grid-event .fc-content {
  /* force events to be one-line tall */
  white-space: nowrap;
  overflow: hidden;
}
.theme-default-dark .fc-day-grid-event .fc-time {
  font-weight: bold;
}
.theme-default-dark .fc-ltr .fc-day-grid-event.fc-allow-mouse-resize .fc-start-resizer,
.theme-default-dark .fc-rtl .fc-day-grid-event.fc-allow-mouse-resize .fc-end-resizer {
  margin-left: -2px;
  /* to the day cell's edge */
}
.theme-default-dark .fc-ltr .fc-day-grid-event.fc-allow-mouse-resize .fc-end-resizer,
.theme-default-dark .fc-rtl .fc-day-grid-event.fc-allow-mouse-resize .fc-start-resizer {
  margin-right: -2px;
  /* to the day cell's edge */
}
.theme-default-dark a.fc-more {
  margin: 1px 3px;
  font-size: 0.85em;
  cursor: pointer;
  text-decoration: none;
}
.theme-default-dark a.fc-more:hover {
  text-decoration: underline;
}
.theme-default-dark .fc-limited {
  /* rows and cells that are hidden because of a "more" link */
  display: none;
}
.theme-default-dark .fc-day-grid .fc-row {
  z-index: 1;
  /* make the "more" popover one higher than this */
}
.theme-default-dark .fc-more-popover {
  z-index: 2;
  width: 220px;
}
.theme-default-dark .fc-more-popover .fc-event-container {
  padding: 10px;
}
.theme-default-dark .fc-now-indicator {
  position: absolute;
  border: 0 solid red;
}
.theme-default-dark .fc-unselectable {
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.theme-default-dark .fc-icon {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "MatchaIcons" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.theme-default-dark .fc-icon-chevron-left:before {
  content: "\e9b1";
}
.theme-default-dark .fc-icon-chevron-right:before {
  content: "\e9e0";
}
.theme-default-dark .fc-icon-chevrons-left:before {
  content: "\e902";
}
.theme-default-dark .fc-icon-chevrons-right:before {
  content: "\e903";
}
.theme-default-dark .fc-icon-minus-square:before {
  content: "\e904";
}
.theme-default-dark .fc-icon-plus-square:before {
  content: "\e905";
}
.theme-default-dark .fc-icon-x:before {
  content: "\e906";
}
.theme-default-dark .fc-icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  text-align: center;
}
.theme-default-dark .fc-button {
  border-radius: 0;
  overflow: visible;
  text-transform: none;
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
.theme-default-dark .fc-button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}
.theme-default-dark .fc-button {
  -webkit-appearance: button;
}
.theme-default-dark .fc-button:not(:disabled) {
  cursor: pointer;
}
.theme-default-dark .fc-button::-moz-focus-inner {
  padding: 0;
  border-style: none;
}
.theme-default-dark .fc-button {
  display: flex;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 0px solid transparent;
  padding: 8px;
  font-size: 24px;
  line-height: 24px;
  border-radius: 0.25em;
}
.theme-default-dark .fc-button:hover {
  color: #212529;
  text-decoration: none;
}
.theme-default-dark .fc-button:focus {
  outline: 0;
  box-shadow: 0 0 0 2px rgba(44, 62, 80, 0.25);
}
.theme-default-dark .fc-button:disabled {
  opacity: 0.65;
}
.theme-default-dark .fc-button .fc-icon {
  vertical-align: middle;
  font-size: 24px;
}
.theme-default-dark .fc-button-group {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
}
.theme-default-dark .fc-button-group > .fc-button {
  position: relative;
  flex: 1 1 auto;
}
.theme-default-dark .fc-button-group > .fc-button:hover {
  z-index: 1;
}
.theme-default-dark .fc-button-group > .fc-button:focus,
.theme-default-dark .fc-button-group > .fc-button:active,
.theme-default-dark .fc-button-group > .fc-button.fc-button-active {
  z-index: 1;
}
.theme-default-dark .fc-button-group > .fc-button:not(:first-child) {
  margin-left: -1px;
}
.theme-default-dark .fc-button-group > .fc-button:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.theme-default-dark .fc-button-group > .fc-button:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.theme-default-dark .fc-unthemed .fc-popover {
  border-width: 1px;
  border-style: solid;
}
.theme-default-dark .fc-unthemed .fc-list-item:hover td {
  background-color: #f5f5f5;
}
.theme-default-dark .fc-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.theme-default-dark .fc-toolbar.fc-header-toolbar {
  margin-bottom: 16px;
}
.theme-default-dark .fc-toolbar.fc-footer-toolbar {
  margin-top: 24px;
}
.theme-default-dark .fc-toolbar > * > :not(:first-child) {
  margin-left: 8px;
}
.theme-default-dark .fc-toolbar h2 {
  font-size: 16px;
  margin: 0;
}
.theme-default-dark .fc-view-container {
  position: relative;
}
.theme-default-dark .fc-view-container *,
.theme-default-dark .fc-view-container *:before,
.theme-default-dark .fc-view-container *:after {
  box-sizing: content-box;
}
.theme-default-dark .fc-view,
.theme-default-dark .fc-view > table {
  /* so dragged elements can be above the view's main element */
  position: relative;
  z-index: 1;
}
@media print {
  .theme-default-dark {
    /* Global Event Restyling
    --------------------------------------------------------------------------------------------------*/
    /* Table & Day-Row Restyling
    --------------------------------------------------------------------------------------------------*/
    /* kill the overlaid, absolutely-positioned components */
    /* common... */
    /* don't force a min-height on rows (for DayGrid) */
    /* Undo month-view event limiting. Display all events and hide the "more" links
    --------------------------------------------------------------------------------------------------*/
    /* TimeGrid Restyling
    --------------------------------------------------------------------------------------------------*/
    /* undo the min-height 100% trick used to fill the container's height */
    /* don't display the side axis at all ("all-day" and time cells) */
    /* don't display the horizontal lines */
    /* let the container that holds the events be naturally positioned and create real height */
    /* in case there are no events, we still want some height */
    /* kill the horizontal spacing made by the event container. event margins will be done below */
    /* TimeGrid *Event* Restyling
    --------------------------------------------------------------------------------------------------*/
    /* naturally position events, vertically stacking them */
    /* for events that continue to a future day, give the bottom border back */
    /* indicate the event continues via "..." text */
    /* for events that are continuations from previous days, give the top border back */
    /* indicate the event is a continuation via "..." text */
    /* time */
    /* undo a previous declaration and let the time text span to a second line */
    /* hide the the time that is normally displayed... */
    /* ...replace it with a more verbose version (includes AM/PM) stored in an html attribute */
    /* Vertical Scroller & Containers
    --------------------------------------------------------------------------------------------------*/
    /* kill the scrollbars and allow natural height */
    /* kill the horizontal border/padding used to compensate for scrollbars */
    /* Button Controls
    --------------------------------------------------------------------------------------------------*/
  }
  .theme-default-dark .fc {
    max-width: 100% !important;
  }
  .theme-default-dark .fc-event {
    background: #fff !important;
    color: #000 !important;
    page-break-inside: avoid;
  }
  .theme-default-dark .fc-event .fc-resizer {
    display: none;
  }
  .theme-default-dark .fc th,
  .theme-default-dark .fc td,
  .theme-default-dark .fc hr,
  .theme-default-dark .fc thead,
  .theme-default-dark .fc tbody,
  .theme-default-dark .fc-row {
    border-color: #ccc !important;
    background: #fff !important;
  }
  .theme-default-dark .fc-bg,
  .theme-default-dark .fc-bgevent-skeleton,
  .theme-default-dark .fc-highlight-skeleton,
  .theme-default-dark .fc-mirror-skeleton,
  .theme-default-dark .fc-bgevent-container,
  .theme-default-dark .fc-business-container,
  .theme-default-dark .fc-highlight-container,
  .theme-default-dark .fc-mirror-container {
    display: none;
  }
  .theme-default-dark .fc tbody .fc-row {
    height: auto !important;
    /* undo height that JS set in distributeHeight */
    min-height: 0 !important;
    /* undo the min-height from each view's specific stylesheet */
  }
  .theme-default-dark .fc tbody .fc-row .fc-content-skeleton {
    position: static;
    /* undo .fc-rigid */
    padding-bottom: 0 !important;
    /* use a more border-friendly method for this... */
  }
  .theme-default-dark .fc tbody .fc-row .fc-content-skeleton tbody tr:last-child td {
    /* only works in newer browsers */
    padding-bottom: 1em;
    /* ...gives space within the skeleton. also ensures min height in a way */
  }
  .theme-default-dark .fc tbody .fc-row .fc-content-skeleton table {
    /* provides a min-height for the row, but only effective for IE, which exaggerates this value,
    making it look more like 3em. for other browers, it will already be this tall */
    height: 1em;
  }
  .theme-default-dark .fc-more-cell,
  .theme-default-dark .fc-more {
    display: none !important;
  }
  .theme-default-dark .fc tr.fc-limited {
    display: table-row !important;
  }
  .theme-default-dark .fc td.fc-limited {
    display: table-cell !important;
  }
  .theme-default-dark .fc-popover {
    display: none;
    /* never display the "more.." popover in print mode */
  }
  .theme-default-dark .fc-time-grid {
    min-height: 0 !important;
  }
  .theme-default-dark .fc-timeGrid-view .fc-axis {
    display: none;
  }
  .theme-default-dark .fc-slats,
  .theme-default-dark .fc-time-grid hr {
    /* this hr is used when height is underused and needs to be filled */
    display: none !important;
    /* important overrides inline declaration */
  }
  .theme-default-dark .fc-time-grid .fc-content-skeleton {
    position: static;
  }
  .theme-default-dark .fc-time-grid .fc-content-skeleton table {
    height: 4em;
  }
  .theme-default-dark .fc-time-grid .fc-event-container {
    margin: 0 !important;
  }
  .theme-default-dark .fc-time-grid .fc-event {
    position: static !important;
    margin: 3px 2px !important;
  }
  .theme-default-dark .fc-time-grid .fc-event.fc-not-end {
    border-bottom-width: 1px !important;
  }
  .theme-default-dark .fc-time-grid .fc-event.fc-not-end:after {
    content: "...";
  }
  .theme-default-dark .fc-time-grid .fc-event.fc-not-start {
    border-top-width: 1px !important;
  }
  .theme-default-dark .fc-time-grid .fc-event.fc-not-start:before {
    content: "...";
  }
  .theme-default-dark .fc-time-grid .fc-event .fc-time {
    white-space: normal !important;
  }
  .theme-default-dark .fc-time-grid .fc-event .fc-time span {
    display: none;
  }
  .theme-default-dark .fc-time-grid .fc-event .fc-time:after {
    content: attr(data-full);
  }
  .theme-default-dark .fc-scroller,
  .theme-default-dark .fc-day-grid-container,
  .theme-default-dark .fc-time-grid-container {
    /* */
    overflow: visible !important;
    height: auto !important;
  }
  .theme-default-dark .fc-row {
    border: 0 !important;
    margin: 0 !important;
  }
  .theme-default-dark .fc-button-group,
  .theme-default-dark .fc button {
    display: none;
    /* don't display any button-related controls */
  }
}
.theme-default-dark .fc-dayGridWeek-view .fc-content-skeleton,
.theme-default-dark .fc-dayGridDay-view .fc-content-skeleton {
  /* there may be week numbers in these views, so no padding-top */
  padding-bottom: 1em;
  /* ensure a space at bottom of cell for user selecting/clicking */
}
.theme-default-dark .fc-dayGrid-view .fc-body .fc-row {
  min-height: 4em;
  /* ensure that all rows are at least this tall */
}
.theme-default-dark .fc-row.fc-rigid {
  overflow: hidden;
}
.theme-default-dark .fc-row.fc-rigid .fc-content-skeleton {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.theme-default-dark .fc-day-top.fc-other-month {
  opacity: 0.3;
}
.theme-default-dark .fc-dayGrid-view .fc-week-number,
.theme-default-dark .fc-dayGrid-view .fc-day-number {
  padding: 2px;
}
.theme-default-dark .fc-dayGrid-view th.fc-week-number,
.theme-default-dark .fc-dayGrid-view th.fc-day-number {
  padding: 0 2px;
  /* column headers can't have as much v space */
}
.theme-default-dark .fc-ltr .fc-dayGrid-view .fc-day-top .fc-day-number {
  border-radius: 8px;
}
.theme-default-dark .fc-rtl .fc-dayGrid-view .fc-day-top .fc-day-number {
  border-radius: 8px;
}
.theme-default-dark .fc-ltr .fc-dayGrid-view .fc-day-top .fc-week-number {
  border-radius: 8px;
}
.theme-default-dark .fc-rtl .fc-dayGrid-view .fc-day-top .fc-week-number {
  border-radius: 8px;
}
.theme-default-dark .fc-dayGrid-view .fc-day-top .fc-week-number {
  min-width: 1.5em;
  text-align: center;
  background-color: #f2f2f2;
  color: #808080;
}
.theme-default-dark .fc-dayGrid-view td.fc-week-number {
  text-align: center;
}
.theme-default-dark .fc-dayGrid-view td.fc-week-number > * {
  /* work around the way we do column resizing and ensure a minimum width */
  display: inline-block;
  min-width: 1.25em;
}
.theme-default-dark .cal-month-view .cal-header {
  text-align: center;
  font-weight: bolder;
}
.theme-default-dark .cal-month-view .cal-header .cal-cell {
  padding: 5px 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  white-space: nowrap;
}
.theme-default-dark .cal-month-view .cal-days {
  border: 1px solid;
  border-bottom: 0;
}
.theme-default-dark .cal-month-view .cal-cell-top {
  min-height: 78px;
  flex: 1;
}
.theme-default-dark .cal-month-view .cal-cell-row {
  -js-display: flex;
  display: flex;
}
.theme-default-dark .cal-month-view .cal-cell {
  float: left;
  flex: 1;
  -js-display: flex;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.theme-default-dark .cal-month-view .cal-day-cell {
  min-height: 100px;
}
@media all and (-ms-high-contrast: none) {
  .theme-default-dark .cal-month-view .cal-day-cell {
    display: block;
  }
}
.theme-default-dark .cal-month-view .cal-day-cell:not(:last-child) {
  border-right: 1px solid;
}
.theme-default-dark .cal-month-view .cal-days .cal-cell-row {
  border-bottom: 1px solid;
}
.theme-default-dark .cal-month-view .cal-day-badge {
  margin-top: 18px;
  margin-left: 10px;
  display: inline-block;
  min-width: 10px;
  padding: 3px 7px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  border-radius: 10px;
}
.theme-default-dark .cal-month-view .cal-day-number {
  font-size: 1.2em;
  font-weight: 400;
  opacity: 0.5;
  margin-top: 15px;
  margin-right: 15px;
  float: right;
  margin-bottom: 10px;
}
.theme-default-dark .cal-month-view .cal-events {
  flex: 1;
  align-items: flex-end;
  margin: 3px;
  line-height: 10px;
  -js-display: flex;
  display: flex;
  flex-wrap: wrap;
}
.theme-default-dark .cal-month-view .cal-event {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  margin: 2px;
}
.theme-default-dark .cal-month-view .cal-day-cell.cal-in-month.cal-has-events {
  cursor: pointer;
}
.theme-default-dark .cal-month-view .cal-day-cell.cal-out-month .cal-day-number {
  opacity: 0.1;
  cursor: default;
}
.theme-default-dark .cal-month-view .cal-day-cell.cal-today .cal-day-number {
  font-size: 1.9em;
}
.theme-default-dark .cal-month-view .cal-open-day-events {
  padding: 15px;
}
.theme-default-dark .cal-month-view .cal-open-day-events .cal-event {
  position: relative;
  top: 2px;
}
.theme-default-dark .cal-month-view .cal-out-month .cal-day-badge,
.theme-default-dark .cal-month-view .cal-out-month .cal-event {
  opacity: 0.3;
}
.theme-default-dark .cal-month-view .cal-draggable {
  cursor: move;
}
.theme-default-dark .cal-month-view .cal-drag-active * {
  pointer-events: none;
}
.theme-default-dark .cal-month-view .cal-event-title {
  cursor: pointer;
}
.theme-default-dark .cal-month-view .cal-event-title:hover {
  text-decoration: underline;
}
.theme-default-dark .cal-month-view {
  background-color: #fff;
}
.theme-default-dark .cal-month-view .cal-cell-row:hover {
  background-color: #fafafa;
}
.theme-default-dark .cal-month-view .cal-cell-row .cal-cell:hover,
.theme-default-dark .cal-month-view .cal-cell.cal-has-events.cal-open {
  background-color: #ededed;
}
.theme-default-dark .cal-month-view .cal-days {
  border-color: #e1e1e1;
}
.theme-default-dark .cal-month-view .cal-day-cell:not(:last-child) {
  border-right-color: #e1e1e1;
}
.theme-default-dark .cal-month-view .cal-days .cal-cell-row {
  border-bottom-color: #e1e1e1;
}
.theme-default-dark .cal-month-view .cal-day-badge {
  background-color: #b94a48;
  color: #fff;
}
.theme-default-dark .cal-month-view .cal-event {
  background-color: #1e90ff;
  border-color: #d1e8ff;
  color: #fff;
}
.theme-default-dark .cal-month-view .cal-day-cell.cal-weekend .cal-day-number {
  color: #8b0000;
}
.theme-default-dark .cal-month-view .cal-day-cell.cal-today {
  background-color: #e8fde7;
}
.theme-default-dark .cal-month-view .cal-day-cell.cal-drag-over {
  background-color: #e0e0e0 !important;
}
.theme-default-dark .cal-month-view .cal-open-day-events {
  color: #fff;
  background-color: #555;
  box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.5);
}
.theme-default-dark .cal-week-view {
  /* stylelint-disable-next-line selector-type-no-unknown */
}
.theme-default-dark .cal-week-view * {
  box-sizing: border-box;
}
.theme-default-dark .cal-week-view .cal-day-headers {
  -js-display: flex;
  display: flex;
  padding-left: 70px;
  border: 1px solid;
}
.theme-default-dark .cal-week-view .cal-day-headers .cal-header {
  flex: 1;
  text-align: center;
  padding: 5px;
}
.theme-default-dark .cal-week-view .cal-day-headers .cal-header:not(:last-child) {
  border-right: 1px solid;
}
.theme-default-dark .cal-week-view .cal-day-headers .cal-header:first-child {
  border-left: 1px solid;
}
.theme-default-dark .cal-week-view .cal-day-headers span {
  font-weight: 400;
  opacity: 0.5;
}
.theme-default-dark .cal-week-view .cal-day-column {
  flex-grow: 1;
  border-left: solid 1px;
}
.theme-default-dark .cal-week-view .cal-event {
  font-size: 12px;
  border: 1px solid;
}
.theme-default-dark .cal-week-view .cal-time-label-column {
  width: 70px;
  height: 100%;
}
.theme-default-dark .cal-week-view .cal-all-day-events {
  border: solid 1px;
  border-top: 0;
  border-bottom-width: 3px;
  padding-top: 3px;
  position: relative;
}
.theme-default-dark .cal-week-view .cal-all-day-events .cal-day-columns {
  height: 100%;
  width: 100%;
  -js-display: flex;
  display: flex;
  position: absolute;
  top: 0;
  z-index: 0;
}
.theme-default-dark .cal-week-view .cal-all-day-events .cal-events-row {
  position: relative;
  height: 31px;
  margin-left: 70px;
}
.theme-default-dark .cal-week-view .cal-all-day-events .cal-event-container {
  display: inline-block;
  position: absolute;
}
.theme-default-dark .cal-week-view .cal-all-day-events .cal-event-container.resize-active {
  z-index: 1;
  pointer-events: none;
}
.theme-default-dark .cal-week-view .cal-all-day-events .cal-event {
  padding: 0 5px;
  margin-left: 2px;
  margin-right: 2px;
  height: 28px;
  line-height: 28px;
}
.theme-default-dark .cal-week-view .cal-all-day-events .cal-starts-within-week .cal-event {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.theme-default-dark .cal-week-view .cal-all-day-events .cal-ends-within-week .cal-event {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
.theme-default-dark .cal-week-view .cal-all-day-events .cal-time-label-column {
  -js-display: flex;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.theme-default-dark .cal-week-view .cal-all-day-events .cal-resize-handle {
  width: 6px;
  height: 100%;
  cursor: col-resize;
  position: absolute;
  top: 0;
}
.theme-default-dark .cal-week-view .cal-all-day-events .cal-resize-handle.cal-resize-handle-after-end {
  right: 0;
}
.theme-default-dark .cal-week-view .cal-event,
.theme-default-dark .cal-week-view .cal-header {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.theme-default-dark .cal-week-view .cal-drag-active {
  pointer-events: none;
  z-index: 1;
}
.theme-default-dark .cal-week-view .cal-drag-active * {
  pointer-events: none;
}
.theme-default-dark .cal-week-view .cal-time-events {
  position: relative;
  border: solid 1px;
  border-top: 0;
  -js-display: flex;
  display: flex;
}
.theme-default-dark .cal-week-view .cal-time-events .cal-day-columns {
  -js-display: flex;
  display: flex;
  flex-grow: 1;
}
.theme-default-dark .cal-week-view .cal-time-events .cal-day-column {
  position: relative;
}
.theme-default-dark .cal-week-view .cal-time-events .cal-event-container {
  position: absolute;
  z-index: 1;
}
.theme-default-dark .cal-week-view .cal-time-events .cal-event {
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  margin: 1px;
  padding: 0 5px;
  line-height: 25px;
}
.theme-default-dark .cal-week-view .cal-time-events .cal-resize-handle {
  width: 100%;
  height: 4px;
  cursor: row-resize;
  position: absolute;
}
.theme-default-dark .cal-week-view .cal-time-events .cal-resize-handle.cal-resize-handle-after-end {
  bottom: 0;
}
.theme-default-dark .cal-week-view .cal-hour-segment {
  position: relative;
}
.theme-default-dark .cal-week-view .cal-hour-segment::after {
  content: " ";
}
.theme-default-dark .cal-week-view .cal-event-container:not(.cal-draggable) {
  cursor: pointer;
}
.theme-default-dark .cal-week-view .cal-draggable {
  cursor: move;
}
.theme-default-dark .cal-week-view mwl-calendar-week-view-hour-segment,
.theme-default-dark .cal-week-view .cal-hour-segment {
  display: block;
}
.theme-default-dark .cal-week-view .cal-hour:not(:last-child) .cal-hour-segment,
.theme-default-dark .cal-week-view .cal-hour:last-child :not(:last-child) .cal-hour-segment {
  border-bottom: thin dashed;
}
.theme-default-dark .cal-week-view .cal-time {
  font-weight: bold;
  padding-top: 5px;
  width: 70px;
  text-align: center;
}
.theme-default-dark .cal-week-view .cal-hour-segment.cal-after-hour-start .cal-time {
  display: none;
}
.theme-default-dark .cal-week-view .cal-starts-within-day .cal-event {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.theme-default-dark .cal-week-view .cal-ends-within-day .cal-event {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.theme-default-dark .cal-week-view {
  background-color: #fff;
}
.theme-default-dark .cal-week-view .cal-day-headers {
  border-color: #e1e1e1;
}
.theme-default-dark .cal-week-view .cal-day-headers .cal-header:not(:last-child) {
  border-right-color: #e1e1e1;
}
.theme-default-dark .cal-week-view .cal-day-headers .cal-header:first-child {
  border-left-color: #e1e1e1;
}
.theme-default-dark .cal-week-view .cal-day-headers .cal-header:hover,
.theme-default-dark .cal-week-view .cal-day-headers .cal-drag-over {
  background-color: #ededed;
}
.theme-default-dark .cal-week-view .cal-day-column {
  border-left-color: #e1e1e1;
}
.theme-default-dark .cal-week-view .cal-event {
  background-color: #d1e8ff;
  border-color: #1e90ff;
  color: #1e90ff;
}
.theme-default-dark .cal-week-view .cal-all-day-events {
  border-color: #e1e1e1;
}
.theme-default-dark .cal-week-view .cal-header.cal-today {
  background-color: #e8fde7;
}
.theme-default-dark .cal-week-view .cal-header.cal-weekend span {
  color: #8b0000;
}
.theme-default-dark .cal-week-view .cal-time-events {
  border-color: #e1e1e1;
}
.theme-default-dark .cal-week-view .cal-time-events .cal-day-columns:not(.cal-resize-active) .cal-hour-segment:hover {
  background-color: #ededed;
}
.theme-default-dark .cal-week-view .cal-hour-odd {
  background-color: #fafafa;
}
.theme-default-dark .cal-week-view .cal-drag-over .cal-hour-segment {
  background-color: #ededed;
}
.theme-default-dark .cal-week-view .cal-hour:not(:last-child) .cal-hour-segment,
.theme-default-dark .cal-week-view .cal-hour:last-child :not(:last-child) .cal-hour-segment {
  border-bottom-color: #e1e1e1;
}
.theme-default-dark .cal-day-view {
  /* stylelint-disable-next-line selector-type-no-unknown */
}
.theme-default-dark .cal-day-view * {
  box-sizing: border-box;
}
.theme-default-dark .cal-day-view .cal-hour-rows {
  width: 100%;
  border: solid 1px;
  overflow-x: auto;
  position: relative;
}
.theme-default-dark .cal-day-view mwl-calendar-day-view-hour-segment,
.theme-default-dark .cal-day-view .cal-hour-segment {
  display: block;
}
.theme-default-dark .cal-day-view .cal-hour-segment::after {
  content: " ";
}
.theme-default-dark .cal-day-view .cal-hour:not(:last-child) .cal-hour-segment,
.theme-default-dark .cal-day-view .cal-hour:last-child :not(:last-child) .cal-hour-segment {
  border-bottom: thin dashed;
}
.theme-default-dark .cal-day-view .cal-time {
  font-weight: bold;
  width: 70px;
  height: 100%;
  -js-display: flex;
  display: flex;
  justify-content: center;
  align-items: center;
}
.theme-default-dark .cal-day-view .cal-hour-segment.cal-after-hour-start .cal-time {
  display: none;
}
.theme-default-dark .cal-day-view .cal-drag-active .cal-hour-segment {
  pointer-events: none;
}
.theme-default-dark .cal-day-view .cal-event-container {
  position: absolute;
  cursor: pointer;
}
.theme-default-dark .cal-day-view .cal-event-container.resize-active {
  z-index: 1;
  pointer-events: none;
}
.theme-default-dark .cal-day-view .cal-event {
  padding: 5px;
  font-size: 12px;
  border: 1px solid;
  box-sizing: border-box;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  height: 100%;
}
.theme-default-dark .cal-day-view .cal-all-day-events > * {
  cursor: pointer;
}
.theme-default-dark .cal-day-view .cal-draggable {
  cursor: move;
}
.theme-default-dark .cal-day-view .cal-starts-within-day .cal-event {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.theme-default-dark .cal-day-view .cal-ends-within-day .cal-event {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.theme-default-dark .cal-day-view .cal-drag-active {
  z-index: 1;
}
.theme-default-dark .cal-day-view .cal-drag-active * {
  pointer-events: none;
}
.theme-default-dark .cal-day-view .cal-resize-handle {
  width: 100%;
  height: 4px;
  cursor: row-resize;
  position: absolute;
}
.theme-default-dark .cal-day-view .cal-resize-handle.cal-resize-handle-after-end {
  bottom: 0;
}
.theme-default-dark .cal-day-view {
  background-color: #fff;
}
.theme-default-dark .cal-day-view .cal-hour-rows {
  border-color: #e1e1e1;
}
.theme-default-dark .cal-day-view .cal-hour:nth-child(odd) {
  background-color: #fafafa;
}
.theme-default-dark .cal-day-view .cal-hour:not(:last-child) .cal-hour-segment,
.theme-default-dark .cal-day-view .cal-hour:last-child :not(:last-child) .cal-hour-segment {
  border-bottom-color: #e1e1e1;
}
.theme-default-dark .cal-day-view .cal-hour-segment:hover,
.theme-default-dark .cal-day-view .cal-drag-over .cal-hour-segment {
  background-color: #ededed;
}
.theme-default-dark .cal-day-view .cal-event {
  background-color: #d1e8ff;
  border-color: #1e90ff;
  color: #1e90ff;
}
.theme-default-dark .cal-tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  font-style: normal;
  font-weight: normal;
  letter-spacing: normal;
  line-break: auto;
  line-height: 1.5;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  font-size: 11px;
  word-wrap: break-word;
  opacity: 0.9;
}
.theme-default-dark .cal-tooltip.cal-tooltip-top {
  padding: 5px 0;
  margin-top: -3px;
}
.theme-default-dark .cal-tooltip.cal-tooltip-top .cal-tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0;
}
.theme-default-dark .cal-tooltip.cal-tooltip-right {
  padding: 0 5px;
  margin-left: 3px;
}
.theme-default-dark .cal-tooltip.cal-tooltip-right .cal-tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
}
.theme-default-dark .cal-tooltip.cal-tooltip-bottom {
  padding: 5px 0;
  margin-top: 3px;
}
.theme-default-dark .cal-tooltip.cal-tooltip-bottom .cal-tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
}
.theme-default-dark .cal-tooltip.cal-tooltip-left {
  padding: 0 5px;
  margin-left: -3px;
}
.theme-default-dark .cal-tooltip.cal-tooltip-left .cal-tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
}
.theme-default-dark .cal-tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  text-align: center;
  border-radius: 0.25rem;
}
.theme-default-dark .cal-tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.theme-default-dark .cal-tooltip.cal-tooltip-top .cal-tooltip-arrow {
  border-top-color: #000;
}
.theme-default-dark .cal-tooltip.cal-tooltip-right .cal-tooltip-arrow {
  border-right-color: #000;
}
.theme-default-dark .cal-tooltip.cal-tooltip-bottom .cal-tooltip-arrow {
  border-bottom-color: #000;
}
.theme-default-dark .cal-tooltip.cal-tooltip-left .cal-tooltip-arrow {
  border-left-color: #000;
}
.theme-default-dark .cal-tooltip-inner {
  color: #fff;
  background-color: #000;
}
.theme-default-dark .cal-month-view {
  background-color: transparent;
}
.theme-default-dark .cal-month-view .cal-header {
  text-align: center;
  font-family: "CircularStd";
  font-weight: 700;
}
.theme-default-dark .cal-month-view .cal-header .cal-cell {
  padding: 5px 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  white-space: nowrap;
}
.theme-default-dark .cal-month-view .cal-days {
  border: 1px solid;
  border-bottom: 0;
}
.theme-default-dark .cal-month-view .cal-cell-top {
  min-height: 78px;
  flex: 1;
}
.theme-default-dark .cal-month-view .cal-cell-row {
  -js-display: flex;
  display: flex;
}
.theme-default-dark .cal-month-view .cal-cell {
  float: left;
  flex: 1;
  -js-display: flex;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.theme-default-dark .cal-month-view .cal-day-cell {
  min-height: 100px;
}
.theme-default-dark .cal-month-view .cal-day-cell:not(:last-child) {
  border-right: 1px solid;
}
.theme-default-dark .cal-month-view .cal-days .cal-cell-row {
  border-bottom: 1px solid;
}
.theme-default-dark .cal-month-view .cal-day-badge {
  margin-top: 18px;
  margin-left: 10px;
  display: inline-block;
  min-width: 10px;
  padding: 3px 7px;
  font-size: 12px;
  font-family: "CircularStd";
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  border-radius: 10px;
}
.theme-default-dark .cal-month-view .cal-day-number {
  color: #E2E7E9;
  opacity: 1;
  font-size: 1.2em;
  margin-top: 15px;
  margin-right: 15px;
  float: right;
  margin-bottom: 10px;
}
.theme-default-dark .cal-month-view .cal-events {
  flex: 1;
  align-items: flex-end;
  margin: 3px;
  line-height: 10px;
  -js-display: flex;
  display: flex;
  flex-wrap: wrap;
}
.theme-default-dark .cal-month-view .cal-event {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  margin: 2px;
}
.theme-default-dark .cal-month-view .cal-day-cell.cal-in-month.cal-has-events {
  cursor: pointer;
}
.theme-default-dark .cal-month-view .cal-day-cell.cal-out-month .cal-day-number {
  opacity: 0.1;
  cursor: default;
}
.theme-default-dark .cal-month-view .cal-day-cell.cal-today .cal-day-number {
  font-size: 24px;
}
.theme-default-dark .cal-month-view .cal-open-day-events {
  padding: 16px;
}
.theme-default-dark .cal-month-view .cal-open-day-events .cal-event {
  position: relative;
  top: 2px;
}
.theme-default-dark .cal-month-view .cal-out-month .cal-day-badge,
.theme-default-dark .cal-month-view .cal-out-month .cal-event {
  opacity: 0.3;
}
.theme-default-dark .cal-month-view .cal-draggable {
  cursor: move;
}
.theme-default-dark .cal-month-view .cal-drag-active * {
  pointer-events: none;
}
.theme-default-dark .cal-month-view .cal-event-title {
  cursor: pointer;
}
.theme-default-dark .cal-month-view .cal-event-title:hover {
  text-decoration: underline;
}
.theme-default-dark .cal-month-view .cal-cell-row:hover {
  background-color: #292929;
}
.theme-default-dark .cal-month-view .cal-cell-row .cal-cell:hover,
.theme-default-dark .cal-month-view .cal-cell.cal-has-events.cal-open {
  background-color: #292929;
}
.theme-default-dark .cal-month-view .cal-days {
  border-color: #292929;
}
.theme-default-dark .cal-month-view .cal-day-cell:not(:last-child) {
  border-right-color: #292929;
}
.theme-default-dark .cal-month-view .cal-days .cal-cell-row {
  border-bottom-color: #292929;
}
.theme-default-dark .cal-month-view .cal-day-badge {
  color: #21282C;
}
.theme-default-dark .cal-month-view .cal-event {
  border-color: #292929;
  color: #fff;
}
.theme-default-dark .cal-month-view .cal-day-cell.cal-today {
  background-color: #292929;
}
.theme-default-dark .cal-month-view .cal-day-cell.cal-drag-over {
  background-color: #e0e0e0 !important;
}
.theme-default-dark .cal-month-view .cal-open-day-events {
  color: #E2E7E9;
  background-color: #292929;
  box-shadow: none;
}
@media all and (-ms-high-contrast: none) {
  .theme-default-dark .cal-month-view .cal-day-cell {
    display: block;
  }
}
.theme-default-dark .cal-week-view {
  /* stylelint-disable-next-line selector-type-no-unknown */
}
.theme-default-dark .cal-week-view * {
  box-sizing: border-box;
}
.theme-default-dark .cal-week-view .cal-day-headers {
  -js-display: flex;
  display: flex;
  padding-left: 70px;
  border: 1px solid;
}
.theme-default-dark .cal-week-view .cal-day-headers .cal-header {
  flex: 1;
  text-align: center;
  padding: 5px;
}
.theme-default-dark .cal-week-view .cal-day-headers .cal-header:not(:last-child) {
  border-right: 1px solid;
}
.theme-default-dark .cal-week-view .cal-day-headers .cal-header:first-child {
  border-left: 1px solid;
}
.theme-default-dark .cal-week-view .cal-day-headers span {
  opacity: 0.5;
}
.theme-default-dark .cal-week-view .cal-day-column {
  flex-grow: 1;
  border-left: solid 1px;
}
.theme-default-dark .cal-week-view .cal-event {
  font-size: 12px;
  border: 1px solid;
}
.theme-default-dark .cal-week-view .cal-time-label-column {
  width: 70px;
  height: 100%;
}
.theme-default-dark .cal-week-view .cal-all-day-events {
  border: solid 1px;
  border-top: 0;
  border-bottom-width: 3px;
  padding-top: 3px;
  position: relative;
}
.theme-default-dark .cal-week-view .cal-all-day-events .cal-day-columns {
  height: 100%;
  width: 100%;
  -js-display: flex;
  display: flex;
  position: absolute;
  top: 0;
  z-index: 0;
}
.theme-default-dark .cal-week-view .cal-all-day-events .cal-events-row {
  position: relative;
  height: 31px;
  margin-left: 70px;
}
.theme-default-dark .cal-week-view .cal-all-day-events .cal-event-container {
  display: inline-block;
  position: absolute;
}
.theme-default-dark .cal-week-view .cal-all-day-events .cal-event-container.resize-active {
  z-index: 1;
  pointer-events: none;
}
.theme-default-dark .cal-week-view .cal-all-day-events .cal-event {
  padding: 0 5px;
  margin-left: 2px;
  margin-right: 2px;
  height: 28px;
  line-height: 28px;
}
.theme-default-dark .cal-week-view .cal-all-day-events .cal-starts-within-week .cal-event {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.theme-default-dark .cal-week-view .cal-all-day-events .cal-ends-within-week .cal-event {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
.theme-default-dark .cal-week-view .cal-all-day-events .cal-time-label-column {
  -js-display: flex;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.theme-default-dark .cal-week-view .cal-all-day-events .cal-resize-handle {
  width: 6px;
  height: 100%;
  cursor: col-resize;
  position: absolute;
  top: 0;
}
.theme-default-dark .cal-week-view .cal-all-day-events .cal-resize-handle.cal-resize-handle-after-end {
  right: 0;
}
.theme-default-dark .cal-week-view .cal-event,
.theme-default-dark .cal-week-view .cal-header {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.theme-default-dark .cal-week-view .cal-drag-active {
  pointer-events: none;
  z-index: 1;
}
.theme-default-dark .cal-week-view .cal-drag-active * {
  pointer-events: none;
}
.theme-default-dark .cal-week-view .cal-time-events {
  position: relative;
  border: solid 1px;
  border-top: 0;
  -js-display: flex;
  display: flex;
}
.theme-default-dark .cal-week-view .cal-time-events .cal-day-columns {
  -js-display: flex;
  display: flex;
  flex-grow: 1;
}
.theme-default-dark .cal-week-view .cal-time-events .cal-day-column {
  position: relative;
}
.theme-default-dark .cal-week-view .cal-time-events .cal-event-container {
  position: absolute;
  z-index: 1;
}
.theme-default-dark .cal-week-view .cal-time-events .cal-event {
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  margin: 1px;
  padding: 0 5px;
  line-height: 25px;
}
.theme-default-dark .cal-week-view .cal-time-events .cal-resize-handle {
  width: 100%;
  height: 4px;
  cursor: row-resize;
  position: absolute;
}
.theme-default-dark .cal-week-view .cal-time-events .cal-resize-handle.cal-resize-handle-after-end {
  bottom: 0;
}
.theme-default-dark .cal-week-view .cal-hour-segment {
  position: relative;
}
.theme-default-dark .cal-week-view .cal-hour-segment::after {
  content: " ";
}
.theme-default-dark .cal-week-view .cal-event-container:not(.cal-draggable) {
  cursor: pointer;
}
.theme-default-dark .cal-week-view .cal-draggable {
  cursor: move;
}
.theme-default-dark .cal-week-view mwl-calendar-week-view-hour-segment,
.theme-default-dark .cal-week-view .cal-hour-segment {
  display: block;
}
.theme-default-dark .cal-week-view .cal-hour:not(:last-child) .cal-hour-segment,
.theme-default-dark .cal-week-view .cal-hour:last-child :not(:last-child) .cal-hour-segment {
  border-bottom: thin dashed;
}
.theme-default-dark .cal-week-view .cal-time {
  font-family: "CircularStd";
  font-weight: 700;
  padding-top: 5px;
  width: 70px;
  text-align: center;
}
.theme-default-dark .cal-week-view .cal-hour-segment.cal-after-hour-start .cal-time {
  display: none;
}
.theme-default-dark .cal-week-view .cal-starts-within-day .cal-event {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.theme-default-dark .cal-week-view .cal-ends-within-day .cal-event {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.theme-default-dark .cal-week-view {
  background-color: #fff;
}
.theme-default-dark .cal-week-view .cal-day-headers {
  border-color: #e1e1e1;
}
.theme-default-dark .cal-week-view .cal-day-headers .cal-header:not(:last-child) {
  border-right-color: #e1e1e1;
}
.theme-default-dark .cal-week-view .cal-day-headers .cal-header:first-child {
  border-left-color: #e1e1e1;
}
.theme-default-dark .cal-week-view .cal-day-headers .cal-header:hover,
.theme-default-dark .cal-week-view .cal-day-headers .cal-drag-over {
  background-color: #ededed;
}
.theme-default-dark .cal-week-view .cal-day-column {
  border-left-color: #e1e1e1;
}
.theme-default-dark .cal-week-view .cal-all-day-events {
  border-color: #e1e1e1;
}
.theme-default-dark .cal-week-view .cal-header.cal-today {
  background-color: #e8fde7;
}
.theme-default-dark .cal-week-view .cal-header.cal-weekend span {
  color: #8b0000;
}
.theme-default-dark .cal-week-view .cal-time-events {
  border-color: #e1e1e1;
}
.theme-default-dark .cal-week-view .cal-time-events .cal-day-columns:not(.cal-resize-active) .cal-hour-segment:hover {
  background-color: #ededed;
}
.theme-default-dark .cal-week-view .cal-hour-odd {
  background-color: #fafafa;
}
.theme-default-dark .cal-week-view .cal-drag-over .cal-hour-segment {
  background-color: #ededed;
}
.theme-default-dark .cal-week-view .cal-hour:not(:last-child) .cal-hour-segment,
.theme-default-dark .cal-week-view .cal-hour:last-child :not(:last-child) .cal-hour-segment {
  border-bottom-color: #e1e1e1;
}
.theme-default-dark .cal-day-view {
  /* stylelint-disable-next-line selector-type-no-unknown */
}
.theme-default-dark .cal-day-view * {
  box-sizing: border-box;
}
.theme-default-dark .cal-day-view .cal-hour-rows {
  width: 100%;
  border: solid 1px;
  overflow-x: auto;
  position: relative;
}
.theme-default-dark .cal-day-view mwl-calendar-day-view-hour-segment,
.theme-default-dark .cal-day-view .cal-hour-segment {
  display: block;
}
.theme-default-dark .cal-day-view .cal-hour-segment::after {
  content: " ";
}
.theme-default-dark .cal-day-view .cal-hour:not(:last-child) .cal-hour-segment,
.theme-default-dark .cal-day-view .cal-hour:last-child :not(:last-child) .cal-hour-segment {
  border-bottom: thin dashed;
}
.theme-default-dark .cal-day-view .cal-time {
  font-family: "CircularStd";
  font-weight: 700;
  width: 70px;
  height: 100%;
  -js-display: flex;
  display: flex;
  justify-content: center;
  align-items: center;
}
.theme-default-dark .cal-day-view .cal-hour-segment.cal-after-hour-start .cal-time {
  display: none;
}
.theme-default-dark .cal-day-view .cal-drag-active .cal-hour-segment {
  pointer-events: none;
}
.theme-default-dark .cal-day-view .cal-event-container {
  position: absolute;
  cursor: pointer;
}
.theme-default-dark .cal-day-view .cal-event-container.resize-active {
  z-index: 1;
  pointer-events: none;
}
.theme-default-dark .cal-day-view .cal-event {
  padding: 5px;
  font-size: 12px;
  border: 1px solid;
  box-sizing: border-box;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  height: 100%;
}
.theme-default-dark .cal-day-view .cal-all-day-events > * {
  cursor: pointer;
}
.theme-default-dark .cal-day-view .cal-draggable {
  cursor: move;
}
.theme-default-dark .cal-day-view .cal-starts-within-day .cal-event {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.theme-default-dark .cal-day-view .cal-ends-within-day .cal-event {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.theme-default-dark .cal-day-view .cal-drag-active {
  z-index: 1;
}
.theme-default-dark .cal-day-view .cal-drag-active * {
  pointer-events: none;
}
.theme-default-dark .cal-day-view .cal-resize-handle {
  width: 100%;
  height: 4px;
  cursor: row-resize;
  position: absolute;
}
.theme-default-dark .cal-day-view .cal-resize-handle.cal-resize-handle-after-end {
  bottom: 0;
}
.theme-default-dark .cal-day-view {
  background-color: #fff;
}
.theme-default-dark .cal-day-view .cal-hour-rows {
  border-color: #e1e1e1;
}
.theme-default-dark .cal-day-view .cal-hour:nth-child(odd) {
  background-color: #fafafa;
}
.theme-default-dark .cal-day-view .cal-hour:not(:last-child) .cal-hour-segment,
.theme-default-dark .cal-day-view .cal-hour:last-child :not(:last-child) .cal-hour-segment {
  border-bottom-color: #e1e1e1;
}
.theme-default-dark .cal-day-view .cal-hour-segment:hover,
.theme-default-dark .cal-day-view .cal-drag-over .cal-hour-segment {
  background-color: #ededed;
}
.theme-default-dark .cal-tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  font-style: normal;
  font-weight: normal;
  letter-spacing: normal;
  line-break: auto;
  line-height: 1.5;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  font-size: 11px;
  word-wrap: break-word;
  opacity: 0.9;
}
.theme-default-dark .cal-tooltip.cal-tooltip-top {
  padding: 5px 0;
  margin-top: -3px;
}
.theme-default-dark .cal-tooltip.cal-tooltip-top .cal-tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0;
}
.theme-default-dark .cal-tooltip.cal-tooltip-right {
  padding: 0 5px;
  margin-left: 3px;
}
.theme-default-dark .cal-tooltip.cal-tooltip-right .cal-tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
}
.theme-default-dark .cal-tooltip.cal-tooltip-bottom {
  padding: 5px 0;
  margin-top: 3px;
}
.theme-default-dark .cal-tooltip.cal-tooltip-bottom .cal-tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
}
.theme-default-dark .cal-tooltip.cal-tooltip-left {
  padding: 0 5px;
  margin-left: -3px;
}
.theme-default-dark .cal-tooltip.cal-tooltip-left .cal-tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
}
.theme-default-dark .cal-tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  text-align: center;
  border-radius: 0.25rem;
}
.theme-default-dark .cal-tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.theme-default-dark .cal-tooltip.cal-tooltip-top .cal-tooltip-arrow {
  border-top-color: #000;
}
.theme-default-dark .cal-tooltip.cal-tooltip-right .cal-tooltip-arrow {
  border-right-color: #000;
}
.theme-default-dark .cal-tooltip.cal-tooltip-bottom .cal-tooltip-arrow {
  border-bottom-color: #000;
}
.theme-default-dark .cal-tooltip.cal-tooltip-left .cal-tooltip-arrow {
  border-left-color: #000;
}
.theme-default-dark .cal-tooltip-inner {
  color: #fff;
  background-color: #000;
}
.theme-default-dark .matcha-card google-chart,
.theme-default-dark .matcha-card-flat google-chart,
.theme-default-dark .matcha-section google-chart {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 100% !important;
  height: 100%;
}
.theme-default-dark .matcha-card google-chart *,
.theme-default-dark .matcha-card-flat google-chart *,
.theme-default-dark .matcha-section google-chart * {
  max-width: 100% !important;
}
.theme-default-dark #ngxcharts ngx-charts-chart svg {
  height: 400px;
  width: 400px;
}
.theme-default-dark .chart-legend {
  background-color: transparent;
  padding: 0;
  width: 200px !important;
  min-width: 200px;
  max-width: 300px;
  display: flex;
  right: 0;
}
.theme-default-dark .chart-legend div {
  width: 100% !important;
}
.theme-default-dark .chart-legend .legend-labels {
  background: transparent !important;
}
.theme-default-dark .chart-legend .legend-labels .active .legend-label-text {
  color: #435056;
}
.theme-default-dark .chart-legend .legend-label-color {
  border-radius: 12px !important;
}
.theme-default-dark .chart-legend .legend-label-text {
  font-weight: normal;
  font-size: 16px !important;
  line-height: 20px;
  color: #E2E7E9;
}
@media (min-width: 1024px) {
  .theme-default-dark .chart-legend {
    margin: 0 24px 0 0;
    border-radius: 8px;
    position: absolute;
    background-color: rgba(10, 10, 10, 0.5);
    box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.033), 0px 2px 2px 0px rgba(0, 0, 0, 0.033), 0px 2px 2px 0px rgba(0, 0, 0, 0.033);
  }
}
.theme-default-dark .pie-chart .pie-label {
  fill: #435056;
  font-size: 16px !important;
  line-height: 20px;
  padding: 8px;
}
.theme-default-dark .ng5-slider.animate .ng5-slider-pointer {
  transition: all 50ms linear !important;
}
.theme-default-dark .ng5-slider .ng5-slider-bubble {
  bottom: 20px;
  padding: 0;
  margin: 0px auto;
  background: #141414;
  color: #435056;
  transition: all 50ms linear !important;
}
.theme-default-dark .ng5-slider .ng5-slider-bar {
  background-color: #292929;
}
.theme-default-dark .ng5-slider .ng5-slider-pointer,
.theme-default-dark .ng5-slider .ng5-slider-selection {
  background-color: #2979ff;
}
.theme-default-dark .ng5-slider .ng5-slider-pointer:after {
  width: 16px;
  height: 16px;
  position: absolute;
  top: 8px;
  left: 8px;
  border-radius: 8px;
  background-color: #141414;
}
.theme-default-dark .ng5-slider .ng5-slider-pointer:active:after {
  background-color: #141414;
}
.theme-default-dark .ng5-slider .ng5-slider-pointer.ng5-slider-active:after {
  width: 16px;
  height: 16px;
  position: absolute;
  top: 8px;
  left: 8px;
  border-radius: 8px;
  background: #0A0A0A;
  background-color: #0A0A0A;
}
.theme-default-dark ngx-material-timepicker-container {
  z-index: 10000;
}
.theme-default-dark ngx-material-timepicker-container .timepicker__header,
.theme-default-dark ngx-material-timepicker-container .clock-face__number > span.active {
  background-color: #2979ff !important;
}
.theme-default-dark ngx-material-timepicker-container .timepicker-dial__control {
  color: rgba(33, 40, 44, 0.5) !important;
}
.theme-default-dark ngx-material-timepicker-container .clock-face__number > span.active,
.theme-default-dark ngx-material-timepicker-container .dial__control,
.theme-default-dark ngx-material-timepicker-container .timepicker-dial__item_active,
.theme-default-dark ngx-material-timepicker-container .timepicker-dial__time {
  color: #21282C !important;
}
.theme-default-dark ngx-material-timepicker-container .timepicker-button {
  color: #2979ff !important;
}
.theme-default-dark ngx-material-timepicker-container .timepicker__body,
.theme-default-dark ngx-material-timepicker-container .timepicker__actions {
  background-color: #141414 !important;
}
.theme-default-dark ngx-material-timepicker-container .clock-face__clock-hand,
.theme-default-dark ngx-material-timepicker-container .clock-face__clock-hand_minute {
  background-color: #2979ff !important;
}
.theme-default-dark ngx-material-timepicker-container .clock-face__clock-hand_minute::before {
  border-color: #2979ff !important;
  background-color: #141414 !important;
}
.theme-default-dark ngx-material-timepicker-container .clock-face {
  background-color: #0A0A0A !important;
}
.theme-default-dark a {
  color: #2979ff;
}
.theme-default-dark pre > code {
  color: #bccef4;
}
.theme-default-dark code:not(.highlight) {
  background-color: #141414;
}
.theme-default-dark .changelog .entry {
  background-color: #141414;
}
.theme-default-dark .text-boxed {
  background-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.54);
}
.theme-default-dark .text-primary {
  color: #8A9EA8 !important;
}
.theme-default-dark .text-warn {
  color: #f29d9d !important;
}
.theme-default-dark .text-label {
  color: #435056 !important;
}
.theme-default-dark .text-placeholder {
  color: #7E8E95 !important;
}
.theme-default-dark .text-basic {
  color: #E2E7E9 !important;
}
.theme-default-dark .matcha-message-box,
.theme-default-dark .matcha-msg-box,
.theme-default-dark .message-box {
  background-color: rgba(138, 158, 168, 0.2);
  border-left-color: #8A9EA8;
  color: #E2E7E9;
}
.theme-default-dark .matcha-message-box.error, .theme-default-dark .matcha-message-box.warning, .theme-default-dark .matcha-message-box.success, .theme-default-dark .matcha-message-box.info, .theme-default-dark .matcha-message-box--error, .theme-default-dark .matcha-message-box--warning, .theme-default-dark .matcha-message-box--success, .theme-default-dark .matcha-message-box--info,
.theme-default-dark .matcha-msg-box.error,
.theme-default-dark .matcha-msg-box.warning,
.theme-default-dark .matcha-msg-box.success,
.theme-default-dark .matcha-msg-box.info,
.theme-default-dark .matcha-msg-box--error,
.theme-default-dark .matcha-msg-box--warning,
.theme-default-dark .matcha-msg-box--success,
.theme-default-dark .matcha-msg-box--info,
.theme-default-dark .message-box.error,
.theme-default-dark .message-box.warning,
.theme-default-dark .message-box.success,
.theme-default-dark .message-box.info,
.theme-default-dark .message-box--error,
.theme-default-dark .message-box--warning,
.theme-default-dark .message-box--success,
.theme-default-dark .message-box--info {
  color: #E2E7E9;
}
.theme-default-dark {
  color: #E2E7E9;
  background: #0A0A0A;
}
.theme-default-dark matcha-card[color=red][tint]:not([tint=false]),
.theme-default-dark .matcha-card[color=red][tint]:not([tint=false]),
.theme-default-dark .matcha-card-flat[color=red][tint]:not([tint=false]) {
  background: rgba(247, 196, 196, 0.2);
  color: #f7c4c4;
}
.theme-default-dark matcha-card[color=red][outline]:not([outline=false]), .theme-default-dark matcha-card[color=red][link]:not([link=false]), .theme-default-dark matcha-card[color=red][basic]:not([basic=false]),
.theme-default-dark .matcha-card[color=red][outline]:not([outline=false]),
.theme-default-dark .matcha-card[color=red][link]:not([link=false]),
.theme-default-dark .matcha-card[color=red][basic]:not([basic=false]),
.theme-default-dark .matcha-card-flat[color=red][outline]:not([outline=false]),
.theme-default-dark .matcha-card-flat[color=red][link]:not([link=false]),
.theme-default-dark .matcha-card-flat[color=red][basic]:not([basic=false]) {
  color: #f7c4c4;
}
.theme-default-dark matcha-card[color=red],
.theme-default-dark .matcha-card[color=red],
.theme-default-dark .matcha-card-flat[color=red] {
  background: #f7c4c4;
  color: rgba(0, 0, 0, 0.87);
}
.theme-default-dark matcha-card[color=red][alpha]:not([alpha=false]),
.theme-default-dark .matcha-card[color=red][alpha]:not([alpha=false]),
.theme-default-dark .matcha-card-flat[color=red][alpha]:not([alpha=false]) {
  background: rgba(247, 196, 196, 0.2);
  color: #E2E7E9;
}
.theme-default-dark matcha-card[color=pink][tint]:not([tint=false]),
.theme-default-dark .matcha-card[color=pink][tint]:not([tint=false]),
.theme-default-dark .matcha-card-flat[color=pink][tint]:not([tint=false]) {
  background: rgba(248, 187, 208, 0.2);
  color: #f8bbd0;
}
.theme-default-dark matcha-card[color=pink][outline]:not([outline=false]), .theme-default-dark matcha-card[color=pink][link]:not([link=false]), .theme-default-dark matcha-card[color=pink][basic]:not([basic=false]),
.theme-default-dark .matcha-card[color=pink][outline]:not([outline=false]),
.theme-default-dark .matcha-card[color=pink][link]:not([link=false]),
.theme-default-dark .matcha-card[color=pink][basic]:not([basic=false]),
.theme-default-dark .matcha-card-flat[color=pink][outline]:not([outline=false]),
.theme-default-dark .matcha-card-flat[color=pink][link]:not([link=false]),
.theme-default-dark .matcha-card-flat[color=pink][basic]:not([basic=false]) {
  color: #f8bbd0;
}
.theme-default-dark matcha-card[color=pink],
.theme-default-dark .matcha-card[color=pink],
.theme-default-dark .matcha-card-flat[color=pink] {
  background: #f8bbd0;
  color: rgba(0, 0, 0, 0.87);
}
.theme-default-dark matcha-card[color=pink][alpha]:not([alpha=false]),
.theme-default-dark .matcha-card[color=pink][alpha]:not([alpha=false]),
.theme-default-dark .matcha-card-flat[color=pink][alpha]:not([alpha=false]) {
  background: rgba(248, 187, 208, 0.2);
  color: #E2E7E9;
}
.theme-default-dark matcha-card[color=purple][tint]:not([tint=false]),
.theme-default-dark .matcha-card[color=purple][tint]:not([tint=false]),
.theme-default-dark .matcha-card-flat[color=purple][tint]:not([tint=false]) {
  background: rgba(225, 190, 231, 0.2);
  color: #e1bee7;
}
.theme-default-dark matcha-card[color=purple][outline]:not([outline=false]), .theme-default-dark matcha-card[color=purple][link]:not([link=false]), .theme-default-dark matcha-card[color=purple][basic]:not([basic=false]),
.theme-default-dark .matcha-card[color=purple][outline]:not([outline=false]),
.theme-default-dark .matcha-card[color=purple][link]:not([link=false]),
.theme-default-dark .matcha-card[color=purple][basic]:not([basic=false]),
.theme-default-dark .matcha-card-flat[color=purple][outline]:not([outline=false]),
.theme-default-dark .matcha-card-flat[color=purple][link]:not([link=false]),
.theme-default-dark .matcha-card-flat[color=purple][basic]:not([basic=false]) {
  color: #e1bee7;
}
.theme-default-dark matcha-card[color=purple],
.theme-default-dark .matcha-card[color=purple],
.theme-default-dark .matcha-card-flat[color=purple] {
  background: #e1bee7;
  color: rgba(0, 0, 0, 0.87);
}
.theme-default-dark matcha-card[color=purple][alpha]:not([alpha=false]),
.theme-default-dark .matcha-card[color=purple][alpha]:not([alpha=false]),
.theme-default-dark .matcha-card-flat[color=purple][alpha]:not([alpha=false]) {
  background: rgba(225, 190, 231, 0.2);
  color: #E2E7E9;
}
.theme-default-dark matcha-card[color=deep-purple][tint]:not([tint=false]),
.theme-default-dark .matcha-card[color=deep-purple][tint]:not([tint=false]),
.theme-default-dark .matcha-card-flat[color=deep-purple][tint]:not([tint=false]) {
  background: rgba(209, 196, 233, 0.2);
  color: #d1c4e9;
}
.theme-default-dark matcha-card[color=deep-purple][outline]:not([outline=false]), .theme-default-dark matcha-card[color=deep-purple][link]:not([link=false]), .theme-default-dark matcha-card[color=deep-purple][basic]:not([basic=false]),
.theme-default-dark .matcha-card[color=deep-purple][outline]:not([outline=false]),
.theme-default-dark .matcha-card[color=deep-purple][link]:not([link=false]),
.theme-default-dark .matcha-card[color=deep-purple][basic]:not([basic=false]),
.theme-default-dark .matcha-card-flat[color=deep-purple][outline]:not([outline=false]),
.theme-default-dark .matcha-card-flat[color=deep-purple][link]:not([link=false]),
.theme-default-dark .matcha-card-flat[color=deep-purple][basic]:not([basic=false]) {
  color: #d1c4e9;
}
.theme-default-dark matcha-card[color=deep-purple],
.theme-default-dark .matcha-card[color=deep-purple],
.theme-default-dark .matcha-card-flat[color=deep-purple] {
  background: #d1c4e9;
  color: rgba(0, 0, 0, 0.87);
}
.theme-default-dark matcha-card[color=deep-purple][alpha]:not([alpha=false]),
.theme-default-dark .matcha-card[color=deep-purple][alpha]:not([alpha=false]),
.theme-default-dark .matcha-card-flat[color=deep-purple][alpha]:not([alpha=false]) {
  background: rgba(209, 196, 233, 0.2);
  color: #E2E7E9;
}
.theme-default-dark matcha-card[color=indigo][tint]:not([tint=false]),
.theme-default-dark .matcha-card[color=indigo][tint]:not([tint=false]),
.theme-default-dark .matcha-card-flat[color=indigo][tint]:not([tint=false]) {
  background: rgba(197, 202, 233, 0.2);
  color: #c5cae9;
}
.theme-default-dark matcha-card[color=indigo][outline]:not([outline=false]), .theme-default-dark matcha-card[color=indigo][link]:not([link=false]), .theme-default-dark matcha-card[color=indigo][basic]:not([basic=false]),
.theme-default-dark .matcha-card[color=indigo][outline]:not([outline=false]),
.theme-default-dark .matcha-card[color=indigo][link]:not([link=false]),
.theme-default-dark .matcha-card[color=indigo][basic]:not([basic=false]),
.theme-default-dark .matcha-card-flat[color=indigo][outline]:not([outline=false]),
.theme-default-dark .matcha-card-flat[color=indigo][link]:not([link=false]),
.theme-default-dark .matcha-card-flat[color=indigo][basic]:not([basic=false]) {
  color: #c5cae9;
}
.theme-default-dark matcha-card[color=indigo],
.theme-default-dark .matcha-card[color=indigo],
.theme-default-dark .matcha-card-flat[color=indigo] {
  background: #c5cae9;
  color: rgba(0, 0, 0, 0.87);
}
.theme-default-dark matcha-card[color=indigo][alpha]:not([alpha=false]),
.theme-default-dark .matcha-card[color=indigo][alpha]:not([alpha=false]),
.theme-default-dark .matcha-card-flat[color=indigo][alpha]:not([alpha=false]) {
  background: rgba(197, 202, 233, 0.2);
  color: #E2E7E9;
}
.theme-default-dark matcha-card[color=blue][tint]:not([tint=false]),
.theme-default-dark .matcha-card[color=blue][tint]:not([tint=false]),
.theme-default-dark .matcha-card-flat[color=blue][tint]:not([tint=false]) {
  background: rgba(188, 206, 244, 0.2);
  color: #bccef4;
}
.theme-default-dark matcha-card[color=blue][outline]:not([outline=false]), .theme-default-dark matcha-card[color=blue][link]:not([link=false]), .theme-default-dark matcha-card[color=blue][basic]:not([basic=false]),
.theme-default-dark .matcha-card[color=blue][outline]:not([outline=false]),
.theme-default-dark .matcha-card[color=blue][link]:not([link=false]),
.theme-default-dark .matcha-card[color=blue][basic]:not([basic=false]),
.theme-default-dark .matcha-card-flat[color=blue][outline]:not([outline=false]),
.theme-default-dark .matcha-card-flat[color=blue][link]:not([link=false]),
.theme-default-dark .matcha-card-flat[color=blue][basic]:not([basic=false]) {
  color: #bccef4;
}
.theme-default-dark matcha-card[color=blue],
.theme-default-dark .matcha-card[color=blue],
.theme-default-dark .matcha-card-flat[color=blue] {
  background: #bccef4;
  color: rgba(0, 0, 0, 0.87);
}
.theme-default-dark matcha-card[color=blue][alpha]:not([alpha=false]),
.theme-default-dark .matcha-card[color=blue][alpha]:not([alpha=false]),
.theme-default-dark .matcha-card-flat[color=blue][alpha]:not([alpha=false]) {
  background: rgba(188, 206, 244, 0.2);
  color: #E2E7E9;
}
.theme-default-dark matcha-card[color=light-blue][tint]:not([tint=false]),
.theme-default-dark .matcha-card[color=light-blue][tint]:not([tint=false]),
.theme-default-dark .matcha-card-flat[color=light-blue][tint]:not([tint=false]) {
  background: rgba(179, 229, 252, 0.2);
  color: #b3e5fc;
}
.theme-default-dark matcha-card[color=light-blue][outline]:not([outline=false]), .theme-default-dark matcha-card[color=light-blue][link]:not([link=false]), .theme-default-dark matcha-card[color=light-blue][basic]:not([basic=false]),
.theme-default-dark .matcha-card[color=light-blue][outline]:not([outline=false]),
.theme-default-dark .matcha-card[color=light-blue][link]:not([link=false]),
.theme-default-dark .matcha-card[color=light-blue][basic]:not([basic=false]),
.theme-default-dark .matcha-card-flat[color=light-blue][outline]:not([outline=false]),
.theme-default-dark .matcha-card-flat[color=light-blue][link]:not([link=false]),
.theme-default-dark .matcha-card-flat[color=light-blue][basic]:not([basic=false]) {
  color: #b3e5fc;
}
.theme-default-dark matcha-card[color=light-blue],
.theme-default-dark .matcha-card[color=light-blue],
.theme-default-dark .matcha-card-flat[color=light-blue] {
  background: #b3e5fc;
  color: rgba(0, 0, 0, 0.87);
}
.theme-default-dark matcha-card[color=light-blue][alpha]:not([alpha=false]),
.theme-default-dark .matcha-card[color=light-blue][alpha]:not([alpha=false]),
.theme-default-dark .matcha-card-flat[color=light-blue][alpha]:not([alpha=false]) {
  background: rgba(179, 229, 252, 0.2);
  color: #E2E7E9;
}
.theme-default-dark matcha-card[color=cyan][tint]:not([tint=false]),
.theme-default-dark .matcha-card[color=cyan][tint]:not([tint=false]),
.theme-default-dark .matcha-card-flat[color=cyan][tint]:not([tint=false]) {
  background: rgba(178, 235, 242, 0.2);
  color: #b2ebf2;
}
.theme-default-dark matcha-card[color=cyan][outline]:not([outline=false]), .theme-default-dark matcha-card[color=cyan][link]:not([link=false]), .theme-default-dark matcha-card[color=cyan][basic]:not([basic=false]),
.theme-default-dark .matcha-card[color=cyan][outline]:not([outline=false]),
.theme-default-dark .matcha-card[color=cyan][link]:not([link=false]),
.theme-default-dark .matcha-card[color=cyan][basic]:not([basic=false]),
.theme-default-dark .matcha-card-flat[color=cyan][outline]:not([outline=false]),
.theme-default-dark .matcha-card-flat[color=cyan][link]:not([link=false]),
.theme-default-dark .matcha-card-flat[color=cyan][basic]:not([basic=false]) {
  color: #b2ebf2;
}
.theme-default-dark matcha-card[color=cyan],
.theme-default-dark .matcha-card[color=cyan],
.theme-default-dark .matcha-card-flat[color=cyan] {
  background: #b2ebf2;
  color: rgba(0, 0, 0, 0.87);
}
.theme-default-dark matcha-card[color=cyan][alpha]:not([alpha=false]),
.theme-default-dark .matcha-card[color=cyan][alpha]:not([alpha=false]),
.theme-default-dark .matcha-card-flat[color=cyan][alpha]:not([alpha=false]) {
  background: rgba(178, 235, 242, 0.2);
  color: #E2E7E9;
}
.theme-default-dark matcha-card[color=teal][tint]:not([tint=false]),
.theme-default-dark .matcha-card[color=teal][tint]:not([tint=false]),
.theme-default-dark .matcha-card-flat[color=teal][tint]:not([tint=false]) {
  background: rgba(178, 223, 219, 0.2);
  color: #b2dfdb;
}
.theme-default-dark matcha-card[color=teal][outline]:not([outline=false]), .theme-default-dark matcha-card[color=teal][link]:not([link=false]), .theme-default-dark matcha-card[color=teal][basic]:not([basic=false]),
.theme-default-dark .matcha-card[color=teal][outline]:not([outline=false]),
.theme-default-dark .matcha-card[color=teal][link]:not([link=false]),
.theme-default-dark .matcha-card[color=teal][basic]:not([basic=false]),
.theme-default-dark .matcha-card-flat[color=teal][outline]:not([outline=false]),
.theme-default-dark .matcha-card-flat[color=teal][link]:not([link=false]),
.theme-default-dark .matcha-card-flat[color=teal][basic]:not([basic=false]) {
  color: #b2dfdb;
}
.theme-default-dark matcha-card[color=teal],
.theme-default-dark .matcha-card[color=teal],
.theme-default-dark .matcha-card-flat[color=teal] {
  background: #b2dfdb;
  color: rgba(0, 0, 0, 0.87);
}
.theme-default-dark matcha-card[color=teal][alpha]:not([alpha=false]),
.theme-default-dark .matcha-card[color=teal][alpha]:not([alpha=false]),
.theme-default-dark .matcha-card-flat[color=teal][alpha]:not([alpha=false]) {
  background: rgba(178, 223, 219, 0.2);
  color: #E2E7E9;
}
.theme-default-dark matcha-card[color=green][tint]:not([tint=false]),
.theme-default-dark .matcha-card[color=green][tint]:not([tint=false]),
.theme-default-dark .matcha-card-flat[color=green][tint]:not([tint=false]) {
  background: rgba(184, 222, 200, 0.2);
  color: #b8dec8;
}
.theme-default-dark matcha-card[color=green][outline]:not([outline=false]), .theme-default-dark matcha-card[color=green][link]:not([link=false]), .theme-default-dark matcha-card[color=green][basic]:not([basic=false]),
.theme-default-dark .matcha-card[color=green][outline]:not([outline=false]),
.theme-default-dark .matcha-card[color=green][link]:not([link=false]),
.theme-default-dark .matcha-card[color=green][basic]:not([basic=false]),
.theme-default-dark .matcha-card-flat[color=green][outline]:not([outline=false]),
.theme-default-dark .matcha-card-flat[color=green][link]:not([link=false]),
.theme-default-dark .matcha-card-flat[color=green][basic]:not([basic=false]) {
  color: #b8dec8;
}
.theme-default-dark matcha-card[color=green],
.theme-default-dark .matcha-card[color=green],
.theme-default-dark .matcha-card-flat[color=green] {
  background: #b8dec8;
  color: rgba(0, 0, 0, 0.87);
}
.theme-default-dark matcha-card[color=green][alpha]:not([alpha=false]),
.theme-default-dark .matcha-card[color=green][alpha]:not([alpha=false]),
.theme-default-dark .matcha-card-flat[color=green][alpha]:not([alpha=false]) {
  background: rgba(184, 222, 200, 0.2);
  color: #E2E7E9;
}
.theme-default-dark matcha-card[color=light-green][tint]:not([tint=false]),
.theme-default-dark .matcha-card[color=light-green][tint]:not([tint=false]),
.theme-default-dark .matcha-card-flat[color=light-green][tint]:not([tint=false]) {
  background: rgba(212, 244, 192, 0.2);
  color: #D4F4C0;
}
.theme-default-dark matcha-card[color=light-green][outline]:not([outline=false]), .theme-default-dark matcha-card[color=light-green][link]:not([link=false]), .theme-default-dark matcha-card[color=light-green][basic]:not([basic=false]),
.theme-default-dark .matcha-card[color=light-green][outline]:not([outline=false]),
.theme-default-dark .matcha-card[color=light-green][link]:not([link=false]),
.theme-default-dark .matcha-card[color=light-green][basic]:not([basic=false]),
.theme-default-dark .matcha-card-flat[color=light-green][outline]:not([outline=false]),
.theme-default-dark .matcha-card-flat[color=light-green][link]:not([link=false]),
.theme-default-dark .matcha-card-flat[color=light-green][basic]:not([basic=false]) {
  color: #D4F4C0;
}
.theme-default-dark matcha-card[color=light-green],
.theme-default-dark .matcha-card[color=light-green],
.theme-default-dark .matcha-card-flat[color=light-green] {
  background: #D4F4C0;
  color: rgba(0, 0, 0, 0.87);
}
.theme-default-dark matcha-card[color=light-green][alpha]:not([alpha=false]),
.theme-default-dark .matcha-card[color=light-green][alpha]:not([alpha=false]),
.theme-default-dark .matcha-card-flat[color=light-green][alpha]:not([alpha=false]) {
  background: rgba(212, 244, 192, 0.2);
  color: #E2E7E9;
}
.theme-default-dark matcha-card[color=lime][tint]:not([tint=false]),
.theme-default-dark .matcha-card[color=lime][tint]:not([tint=false]),
.theme-default-dark .matcha-card-flat[color=lime][tint]:not([tint=false]) {
  background: rgba(219, 235, 179, 0.2);
  color: #dbebb3;
}
.theme-default-dark matcha-card[color=lime][outline]:not([outline=false]), .theme-default-dark matcha-card[color=lime][link]:not([link=false]), .theme-default-dark matcha-card[color=lime][basic]:not([basic=false]),
.theme-default-dark .matcha-card[color=lime][outline]:not([outline=false]),
.theme-default-dark .matcha-card[color=lime][link]:not([link=false]),
.theme-default-dark .matcha-card[color=lime][basic]:not([basic=false]),
.theme-default-dark .matcha-card-flat[color=lime][outline]:not([outline=false]),
.theme-default-dark .matcha-card-flat[color=lime][link]:not([link=false]),
.theme-default-dark .matcha-card-flat[color=lime][basic]:not([basic=false]) {
  color: #dbebb3;
}
.theme-default-dark matcha-card[color=lime],
.theme-default-dark .matcha-card[color=lime],
.theme-default-dark .matcha-card-flat[color=lime] {
  background: #dbebb3;
  color: rgba(0, 0, 0, 0.87);
}
.theme-default-dark matcha-card[color=lime][alpha]:not([alpha=false]),
.theme-default-dark .matcha-card[color=lime][alpha]:not([alpha=false]),
.theme-default-dark .matcha-card-flat[color=lime][alpha]:not([alpha=false]) {
  background: rgba(219, 235, 179, 0.2);
  color: #E2E7E9;
}
.theme-default-dark matcha-card[color=yellow][tint]:not([tint=false]),
.theme-default-dark .matcha-card[color=yellow][tint]:not([tint=false]),
.theme-default-dark .matcha-card-flat[color=yellow][tint]:not([tint=false]) {
  background: rgba(248, 237, 179, 0.2);
  color: #f8edb3;
}
.theme-default-dark matcha-card[color=yellow][outline]:not([outline=false]), .theme-default-dark matcha-card[color=yellow][link]:not([link=false]), .theme-default-dark matcha-card[color=yellow][basic]:not([basic=false]),
.theme-default-dark .matcha-card[color=yellow][outline]:not([outline=false]),
.theme-default-dark .matcha-card[color=yellow][link]:not([link=false]),
.theme-default-dark .matcha-card[color=yellow][basic]:not([basic=false]),
.theme-default-dark .matcha-card-flat[color=yellow][outline]:not([outline=false]),
.theme-default-dark .matcha-card-flat[color=yellow][link]:not([link=false]),
.theme-default-dark .matcha-card-flat[color=yellow][basic]:not([basic=false]) {
  color: #f8edb3;
}
.theme-default-dark matcha-card[color=yellow],
.theme-default-dark .matcha-card[color=yellow],
.theme-default-dark .matcha-card-flat[color=yellow] {
  background: #f8edb3;
  color: rgba(0, 0, 0, 0.87);
}
.theme-default-dark matcha-card[color=yellow][alpha]:not([alpha=false]),
.theme-default-dark .matcha-card[color=yellow][alpha]:not([alpha=false]),
.theme-default-dark .matcha-card-flat[color=yellow][alpha]:not([alpha=false]) {
  background: rgba(248, 237, 179, 0.2);
  color: #E2E7E9;
}
.theme-default-dark matcha-card[color=amber][tint]:not([tint=false]),
.theme-default-dark .matcha-card[color=amber][tint]:not([tint=false]),
.theme-default-dark .matcha-card-flat[color=amber][tint]:not([tint=false]) {
  background: rgba(254, 228, 186, 0.2);
  color: #fee4ba;
}
.theme-default-dark matcha-card[color=amber][outline]:not([outline=false]), .theme-default-dark matcha-card[color=amber][link]:not([link=false]), .theme-default-dark matcha-card[color=amber][basic]:not([basic=false]),
.theme-default-dark .matcha-card[color=amber][outline]:not([outline=false]),
.theme-default-dark .matcha-card[color=amber][link]:not([link=false]),
.theme-default-dark .matcha-card[color=amber][basic]:not([basic=false]),
.theme-default-dark .matcha-card-flat[color=amber][outline]:not([outline=false]),
.theme-default-dark .matcha-card-flat[color=amber][link]:not([link=false]),
.theme-default-dark .matcha-card-flat[color=amber][basic]:not([basic=false]) {
  color: #fee4ba;
}
.theme-default-dark matcha-card[color=amber],
.theme-default-dark .matcha-card[color=amber],
.theme-default-dark .matcha-card-flat[color=amber] {
  background: #fee4ba;
  color: rgba(0, 0, 0, 0.87);
}
.theme-default-dark matcha-card[color=amber][alpha]:not([alpha=false]),
.theme-default-dark .matcha-card[color=amber][alpha]:not([alpha=false]),
.theme-default-dark .matcha-card-flat[color=amber][alpha]:not([alpha=false]) {
  background: rgba(254, 228, 186, 0.2);
  color: #E2E7E9;
}
.theme-default-dark matcha-card[color=orange][tint]:not([tint=false]),
.theme-default-dark .matcha-card[color=orange][tint]:not([tint=false]),
.theme-default-dark .matcha-card-flat[color=orange][tint]:not([tint=false]) {
  background: rgba(253, 215, 185, 0.2);
  color: #fdd7b9;
}
.theme-default-dark matcha-card[color=orange][outline]:not([outline=false]), .theme-default-dark matcha-card[color=orange][link]:not([link=false]), .theme-default-dark matcha-card[color=orange][basic]:not([basic=false]),
.theme-default-dark .matcha-card[color=orange][outline]:not([outline=false]),
.theme-default-dark .matcha-card[color=orange][link]:not([link=false]),
.theme-default-dark .matcha-card[color=orange][basic]:not([basic=false]),
.theme-default-dark .matcha-card-flat[color=orange][outline]:not([outline=false]),
.theme-default-dark .matcha-card-flat[color=orange][link]:not([link=false]),
.theme-default-dark .matcha-card-flat[color=orange][basic]:not([basic=false]) {
  color: #fdd7b9;
}
.theme-default-dark matcha-card[color=orange],
.theme-default-dark .matcha-card[color=orange],
.theme-default-dark .matcha-card-flat[color=orange] {
  background: #fdd7b9;
  color: rgba(0, 0, 0, 0.87);
}
.theme-default-dark matcha-card[color=orange][alpha]:not([alpha=false]),
.theme-default-dark .matcha-card[color=orange][alpha]:not([alpha=false]),
.theme-default-dark .matcha-card-flat[color=orange][alpha]:not([alpha=false]) {
  background: rgba(253, 215, 185, 0.2);
  color: #E2E7E9;
}
.theme-default-dark matcha-card[color=deep-orange][tint]:not([tint=false]),
.theme-default-dark .matcha-card[color=deep-orange][tint]:not([tint=false]),
.theme-default-dark .matcha-card-flat[color=deep-orange][tint]:not([tint=false]) {
  background: rgba(255, 204, 188, 0.2);
  color: #ffccbc;
}
.theme-default-dark matcha-card[color=deep-orange][outline]:not([outline=false]), .theme-default-dark matcha-card[color=deep-orange][link]:not([link=false]), .theme-default-dark matcha-card[color=deep-orange][basic]:not([basic=false]),
.theme-default-dark .matcha-card[color=deep-orange][outline]:not([outline=false]),
.theme-default-dark .matcha-card[color=deep-orange][link]:not([link=false]),
.theme-default-dark .matcha-card[color=deep-orange][basic]:not([basic=false]),
.theme-default-dark .matcha-card-flat[color=deep-orange][outline]:not([outline=false]),
.theme-default-dark .matcha-card-flat[color=deep-orange][link]:not([link=false]),
.theme-default-dark .matcha-card-flat[color=deep-orange][basic]:not([basic=false]) {
  color: #ffccbc;
}
.theme-default-dark matcha-card[color=deep-orange],
.theme-default-dark .matcha-card[color=deep-orange],
.theme-default-dark .matcha-card-flat[color=deep-orange] {
  background: #ffccbc;
  color: rgba(0, 0, 0, 0.87);
}
.theme-default-dark matcha-card[color=deep-orange][alpha]:not([alpha=false]),
.theme-default-dark .matcha-card[color=deep-orange][alpha]:not([alpha=false]),
.theme-default-dark .matcha-card-flat[color=deep-orange][alpha]:not([alpha=false]) {
  background: rgba(255, 204, 188, 0.2);
  color: #E2E7E9;
}
.theme-default-dark matcha-card[color=brown][tint]:not([tint=false]),
.theme-default-dark .matcha-card[color=brown][tint]:not([tint=false]),
.theme-default-dark .matcha-card-flat[color=brown][tint]:not([tint=false]) {
  background: rgba(215, 204, 200, 0.2);
  color: #d7ccc8;
}
.theme-default-dark matcha-card[color=brown][outline]:not([outline=false]), .theme-default-dark matcha-card[color=brown][link]:not([link=false]), .theme-default-dark matcha-card[color=brown][basic]:not([basic=false]),
.theme-default-dark .matcha-card[color=brown][outline]:not([outline=false]),
.theme-default-dark .matcha-card[color=brown][link]:not([link=false]),
.theme-default-dark .matcha-card[color=brown][basic]:not([basic=false]),
.theme-default-dark .matcha-card-flat[color=brown][outline]:not([outline=false]),
.theme-default-dark .matcha-card-flat[color=brown][link]:not([link=false]),
.theme-default-dark .matcha-card-flat[color=brown][basic]:not([basic=false]) {
  color: #d7ccc8;
}
.theme-default-dark matcha-card[color=brown],
.theme-default-dark .matcha-card[color=brown],
.theme-default-dark .matcha-card-flat[color=brown] {
  background: #d7ccc8;
  color: rgba(0, 0, 0, 0.87);
}
.theme-default-dark matcha-card[color=brown][alpha]:not([alpha=false]),
.theme-default-dark .matcha-card[color=brown][alpha]:not([alpha=false]),
.theme-default-dark .matcha-card-flat[color=brown][alpha]:not([alpha=false]) {
  background: rgba(215, 204, 200, 0.2);
  color: #E2E7E9;
}
.theme-default-dark matcha-card[color=grey][tint]:not([tint=false]),
.theme-default-dark .matcha-card[color=grey][tint]:not([tint=false]),
.theme-default-dark .matcha-card-flat[color=grey][tint]:not([tint=false]) {
  background: rgba(222, 227, 230, 0.2);
  color: #DEE3E6;
}
.theme-default-dark matcha-card[color=grey][outline]:not([outline=false]), .theme-default-dark matcha-card[color=grey][link]:not([link=false]), .theme-default-dark matcha-card[color=grey][basic]:not([basic=false]),
.theme-default-dark .matcha-card[color=grey][outline]:not([outline=false]),
.theme-default-dark .matcha-card[color=grey][link]:not([link=false]),
.theme-default-dark .matcha-card[color=grey][basic]:not([basic=false]),
.theme-default-dark .matcha-card-flat[color=grey][outline]:not([outline=false]),
.theme-default-dark .matcha-card-flat[color=grey][link]:not([link=false]),
.theme-default-dark .matcha-card-flat[color=grey][basic]:not([basic=false]) {
  color: #DEE3E6;
}
.theme-default-dark matcha-card[color=grey],
.theme-default-dark .matcha-card[color=grey],
.theme-default-dark .matcha-card-flat[color=grey] {
  background: #DEE3E6;
  color: rgba(0, 0, 0, 0.87);
}
.theme-default-dark matcha-card[color=grey][alpha]:not([alpha=false]),
.theme-default-dark .matcha-card[color=grey][alpha]:not([alpha=false]),
.theme-default-dark .matcha-card-flat[color=grey][alpha]:not([alpha=false]) {
  background: rgba(222, 227, 230, 0.2);
  color: #E2E7E9;
}
.theme-default-dark matcha-card[color=blue-grey][tint]:not([tint=false]),
.theme-default-dark .matcha-card[color=blue-grey][tint]:not([tint=false]),
.theme-default-dark .matcha-card-flat[color=blue-grey][tint]:not([tint=false]) {
  background: rgba(226, 231, 233, 0.2);
  color: #E2E7E9;
}
.theme-default-dark matcha-card[color=blue-grey][outline]:not([outline=false]), .theme-default-dark matcha-card[color=blue-grey][link]:not([link=false]), .theme-default-dark matcha-card[color=blue-grey][basic]:not([basic=false]),
.theme-default-dark .matcha-card[color=blue-grey][outline]:not([outline=false]),
.theme-default-dark .matcha-card[color=blue-grey][link]:not([link=false]),
.theme-default-dark .matcha-card[color=blue-grey][basic]:not([basic=false]),
.theme-default-dark .matcha-card-flat[color=blue-grey][outline]:not([outline=false]),
.theme-default-dark .matcha-card-flat[color=blue-grey][link]:not([link=false]),
.theme-default-dark .matcha-card-flat[color=blue-grey][basic]:not([basic=false]) {
  color: #E2E7E9;
}
.theme-default-dark matcha-card[color=blue-grey],
.theme-default-dark .matcha-card[color=blue-grey],
.theme-default-dark .matcha-card-flat[color=blue-grey] {
  background: #E2E7E9;
  color: rgba(0, 0, 0, 0.87);
}
.theme-default-dark matcha-card[color=blue-grey][alpha]:not([alpha=false]),
.theme-default-dark .matcha-card[color=blue-grey][alpha]:not([alpha=false]),
.theme-default-dark .matcha-card-flat[color=blue-grey][alpha]:not([alpha=false]) {
  background: rgba(226, 231, 233, 0.2);
  color: #E2E7E9;
}
.theme-default-dark matcha-card[color=primary][tint]:not([tint=false]),
.theme-default-dark .matcha-card[color=primary][tint]:not([tint=false]),
.theme-default-dark .matcha-card-flat[color=primary][tint]:not([tint=false]) {
  background: rgba(138, 158, 168, 0.2);
  color: #8A9EA8;
}
.theme-default-dark matcha-card[color=primary][outline]:not([outline=false]), .theme-default-dark matcha-card[color=primary][link]:not([link=false]), .theme-default-dark matcha-card[color=primary][basic]:not([basic=false]),
.theme-default-dark .matcha-card[color=primary][outline]:not([outline=false]),
.theme-default-dark .matcha-card[color=primary][link]:not([link=false]),
.theme-default-dark .matcha-card[color=primary][basic]:not([basic=false]),
.theme-default-dark .matcha-card-flat[color=primary][outline]:not([outline=false]),
.theme-default-dark .matcha-card-flat[color=primary][link]:not([link=false]),
.theme-default-dark .matcha-card-flat[color=primary][basic]:not([basic=false]) {
  color: #8A9EA8;
}
.theme-default-dark matcha-card[color=primary],
.theme-default-dark .matcha-card[color=primary],
.theme-default-dark .matcha-card-flat[color=primary] {
  background: #8A9EA8;
  color: white;
}
.theme-default-dark matcha-card[color=primary][alpha]:not([alpha=false]),
.theme-default-dark .matcha-card[color=primary][alpha]:not([alpha=false]),
.theme-default-dark .matcha-card-flat[color=primary][alpha]:not([alpha=false]) {
  background: rgba(138, 158, 168, 0.2);
  color: #E2E7E9;
}
.theme-default-dark matcha-card[color=accent][tint]:not([tint=false]),
.theme-default-dark .matcha-card[color=accent][tint]:not([tint=false]),
.theme-default-dark .matcha-card-flat[color=accent][tint]:not([tint=false]) {
  background: rgba(41, 121, 255, 0.2);
  color: #2979ff;
}
.theme-default-dark matcha-card[color=accent][outline]:not([outline=false]), .theme-default-dark matcha-card[color=accent][link]:not([link=false]), .theme-default-dark matcha-card[color=accent][basic]:not([basic=false]),
.theme-default-dark .matcha-card[color=accent][outline]:not([outline=false]),
.theme-default-dark .matcha-card[color=accent][link]:not([link=false]),
.theme-default-dark .matcha-card[color=accent][basic]:not([basic=false]),
.theme-default-dark .matcha-card-flat[color=accent][outline]:not([outline=false]),
.theme-default-dark .matcha-card-flat[color=accent][link]:not([link=false]),
.theme-default-dark .matcha-card-flat[color=accent][basic]:not([basic=false]) {
  color: #2979ff;
}
.theme-default-dark matcha-card[color=accent],
.theme-default-dark .matcha-card[color=accent],
.theme-default-dark .matcha-card-flat[color=accent] {
  background: #2979ff;
  color: white;
}
.theme-default-dark matcha-card[color=accent][alpha]:not([alpha=false]),
.theme-default-dark .matcha-card[color=accent][alpha]:not([alpha=false]),
.theme-default-dark .matcha-card-flat[color=accent][alpha]:not([alpha=false]) {
  background: rgba(41, 121, 255, 0.2);
  color: #E2E7E9;
}
.theme-default-dark matcha-card[color=warn][tint]:not([tint=false]),
.theme-default-dark .matcha-card[color=warn][tint]:not([tint=false]),
.theme-default-dark .matcha-card-flat[color=warn][tint]:not([tint=false]) {
  background: rgba(242, 157, 157, 0.2);
  color: #f29d9d;
}
.theme-default-dark matcha-card[color=warn][outline]:not([outline=false]), .theme-default-dark matcha-card[color=warn][link]:not([link=false]), .theme-default-dark matcha-card[color=warn][basic]:not([basic=false]),
.theme-default-dark .matcha-card[color=warn][outline]:not([outline=false]),
.theme-default-dark .matcha-card[color=warn][link]:not([link=false]),
.theme-default-dark .matcha-card[color=warn][basic]:not([basic=false]),
.theme-default-dark .matcha-card-flat[color=warn][outline]:not([outline=false]),
.theme-default-dark .matcha-card-flat[color=warn][link]:not([link=false]),
.theme-default-dark .matcha-card-flat[color=warn][basic]:not([basic=false]) {
  color: #f29d9d;
}
.theme-default-dark matcha-card[color=warn],
.theme-default-dark .matcha-card[color=warn],
.theme-default-dark .matcha-card-flat[color=warn] {
  background: #f29d9d;
  color: rgba(0, 0, 0, 0.87);
}
.theme-default-dark matcha-card[color=warn][alpha]:not([alpha=false]),
.theme-default-dark .matcha-card[color=warn][alpha]:not([alpha=false]),
.theme-default-dark .matcha-card-flat[color=warn][alpha]:not([alpha=false]) {
  background: rgba(242, 157, 157, 0.2);
  color: #E2E7E9;
}
.theme-default-dark matcha-card[color=disabled][tint]:not([tint=false]),
.theme-default-dark .matcha-card[color=disabled][tint]:not([tint=false]),
.theme-default-dark .matcha-card-flat[color=disabled][tint]:not([tint=false]) {
  background: rgba(10, 10, 10, 0.5);
  color: #292929;
}
.theme-default-dark matcha-card[color=disabled][outline]:not([outline=false]), .theme-default-dark matcha-card[color=disabled][link]:not([link=false]), .theme-default-dark matcha-card[color=disabled][basic]:not([basic=false]),
.theme-default-dark .matcha-card[color=disabled][outline]:not([outline=false]),
.theme-default-dark .matcha-card[color=disabled][link]:not([link=false]),
.theme-default-dark .matcha-card[color=disabled][basic]:not([basic=false]),
.theme-default-dark .matcha-card-flat[color=disabled][outline]:not([outline=false]),
.theme-default-dark .matcha-card-flat[color=disabled][link]:not([link=false]),
.theme-default-dark .matcha-card-flat[color=disabled][basic]:not([basic=false]) {
  color: #292929;
}
.theme-default-dark matcha-card[color=disabled],
.theme-default-dark .matcha-card[color=disabled],
.theme-default-dark .matcha-card-flat[color=disabled] {
  background: #292929;
  color: #21282C;
}
.theme-default-dark matcha-card[color=disabled][alpha]:not([alpha=false]),
.theme-default-dark .matcha-card[color=disabled][alpha]:not([alpha=false]),
.theme-default-dark .matcha-card-flat[color=disabled][alpha]:not([alpha=false]) {
  background: rgba(10, 10, 10, 0.5);
  color: #E2E7E9;
}
.theme-default-dark matcha-card[basic]:not([basic=false]),
.theme-default-dark .matcha-card[basic]:not([basic=false]),
.theme-default-dark .matcha-card-flat[basic]:not([basic=false]) {
  box-shadow: 0px 0px 0px 0px inset;
}
.theme-default-dark matcha-card[link]:not([link=false]),
.theme-default-dark .matcha-card[link]:not([link=false]),
.theme-default-dark .matcha-card-flat[link]:not([link=false]) {
  text-transform: initial;
  letter-spacing: 0;
  text-decoration: none;
  padding: 0;
}
.theme-default-dark matcha-card[basic=true]:not([icon=false]),
.theme-default-dark .matcha-card[basic=true]:not([icon=false]),
.theme-default-dark .matcha-card-flat[basic=true]:not([icon=false]) {
  border: 0px solid currentColor;
  background: #141414;
}
.theme-default-dark matcha-card[basic=true]:not([icon=false]):not([color]),
.theme-default-dark .matcha-card[basic=true]:not([icon=false]):not([color]),
.theme-default-dark .matcha-card-flat[basic=true]:not([icon=false]):not([color]) {
  border-color: #E2E7E9;
  background: transparent !important;
}
.theme-default-dark matcha-card[basic=true]:not([icon=false])[color]:not([outline]),
.theme-default-dark .matcha-card[basic=true]:not([icon=false])[color]:not([outline]),
.theme-default-dark .matcha-card-flat[basic=true]:not([icon=false])[color]:not([outline]) {
  background: #141414 !important;
}
.theme-default-dark matcha-card[outline]:not([outline=false]),
.theme-default-dark .matcha-card[outline]:not([outline=false]),
.theme-default-dark .matcha-card-flat[outline]:not([outline=false]) {
  box-shadow: 0px 0px 0px 2px inset;
  border: 0px solid currentColor;
  background: transparent !important;
}
.theme-default-dark matcha-card[outline]:not([outline=false]):not([color]),
.theme-default-dark .matcha-card[outline]:not([outline=false]):not([color]),
.theme-default-dark .matcha-card-flat[outline]:not([outline=false]):not([color]) {
  border-color: #E2E7E9;
  color: #E2E7E9;
}
.theme-default-dark matcha-card:not([color]),
.theme-default-dark .matcha-card:not([color]),
.theme-default-dark .matcha-card-flat:not([color]) {
  background: #141414;
  color: #E2E7E9;
}
.theme-default-dark matcha-card[color=bg][alpha]:not([alpha=false]),
.theme-default-dark .matcha-card[color=bg][alpha]:not([alpha=false]),
.theme-default-dark .matcha-card-flat[color=bg][alpha]:not([alpha=false]) {
  background: rgba(10, 10, 10, 0.5);
  color: #E2E7E9;
}
.theme-default-dark matcha-card[color=bg][tint]:not([tint=false]),
.theme-default-dark .matcha-card[color=bg][tint]:not([tint=false]),
.theme-default-dark .matcha-card-flat[color=bg][tint]:not([tint=false]) {
  background: rgba(10, 10, 10, 0.5);
  color: #E2E7E9;
}
.theme-default-dark matcha-card[color=bg][outline]:not([outline=false]), .theme-default-dark matcha-card[color=bg][link]:not([link=false]), .theme-default-dark matcha-card[color=bg][basic]:not([basic=false]),
.theme-default-dark .matcha-card[color=bg][outline]:not([outline=false]),
.theme-default-dark .matcha-card[color=bg][link]:not([link=false]),
.theme-default-dark .matcha-card[color=bg][basic]:not([basic=false]),
.theme-default-dark .matcha-card-flat[color=bg][outline]:not([outline=false]),
.theme-default-dark .matcha-card-flat[color=bg][link]:not([link=false]),
.theme-default-dark .matcha-card-flat[color=bg][basic]:not([basic=false]) {
  color: #E2E7E9;
}
.theme-default-dark matcha-card[color=bg],
.theme-default-dark .matcha-card[color=bg],
.theme-default-dark .matcha-card-flat[color=bg] {
  background: #0A0A0A;
  color: #E2E7E9;
}
.theme-default-dark matcha-card[color=surface][alpha]:not([alpha=false]),
.theme-default-dark .matcha-card[color=surface][alpha]:not([alpha=false]),
.theme-default-dark .matcha-card-flat[color=surface][alpha]:not([alpha=false]) {
  background: rgba(20, 20, 20, 0.5);
  color: #E2E7E9;
}
.theme-default-dark matcha-card[color=surface][tint]:not([tint=false]),
.theme-default-dark .matcha-card[color=surface][tint]:not([tint=false]),
.theme-default-dark .matcha-card-flat[color=surface][tint]:not([tint=false]) {
  background: rgba(20, 20, 20, 0.5);
  color: #E2E7E9;
}
.theme-default-dark matcha-card[color=surface][outline]:not([outline=false]), .theme-default-dark matcha-card[color=surface][link]:not([link=false]), .theme-default-dark matcha-card[color=surface][basic]:not([basic=false]),
.theme-default-dark .matcha-card[color=surface][outline]:not([outline=false]),
.theme-default-dark .matcha-card[color=surface][link]:not([link=false]),
.theme-default-dark .matcha-card[color=surface][basic]:not([basic=false]),
.theme-default-dark .matcha-card-flat[color=surface][outline]:not([outline=false]),
.theme-default-dark .matcha-card-flat[color=surface][link]:not([link=false]),
.theme-default-dark .matcha-card-flat[color=surface][basic]:not([basic=false]) {
  color: #E2E7E9;
}
.theme-default-dark matcha-card[color=surface],
.theme-default-dark .matcha-card[color=surface],
.theme-default-dark .matcha-card-flat[color=surface] {
  background: #141414;
  color: #E2E7E9;
}
.theme-default-dark matcha-card[color=fg][alpha]:not([alpha=false]),
.theme-default-dark .matcha-card[color=fg][alpha]:not([alpha=false]),
.theme-default-dark .matcha-card-flat[color=fg][alpha]:not([alpha=false]) {
  background: rgba(226, 231, 233, 0.2);
  color: #E2E7E9;
}
.theme-default-dark matcha-card[color=fg][tint]:not([tint=false]),
.theme-default-dark .matcha-card[color=fg][tint]:not([tint=false]),
.theme-default-dark .matcha-card-flat[color=fg][tint]:not([tint=false]) {
  background: rgba(226, 231, 233, 0.2);
  color: #E2E7E9;
}
.theme-default-dark matcha-card[color=fg][outline]:not([outline=false]), .theme-default-dark matcha-card[color=fg][link]:not([link=false]), .theme-default-dark matcha-card[color=fg][basic]:not([basic=false]),
.theme-default-dark .matcha-card[color=fg][outline]:not([outline=false]),
.theme-default-dark .matcha-card[color=fg][link]:not([link=false]),
.theme-default-dark .matcha-card[color=fg][basic]:not([basic=false]),
.theme-default-dark .matcha-card-flat[color=fg][outline]:not([outline=false]),
.theme-default-dark .matcha-card-flat[color=fg][link]:not([link=false]),
.theme-default-dark .matcha-card-flat[color=fg][basic]:not([basic=false]) {
  color: #E2E7E9;
}
.theme-default-dark matcha-card[color=fg],
.theme-default-dark .matcha-card[color=fg],
.theme-default-dark .matcha-card-flat[color=fg] {
  background: #E2E7E9;
  color: #21282C;
}
.theme-default-dark matcha-card[color=basic][alpha]:not([alpha=false]),
.theme-default-dark .matcha-card[color=basic][alpha]:not([alpha=false]),
.theme-default-dark .matcha-card-flat[color=basic][alpha]:not([alpha=false]) {
  background: rgba(226, 231, 233, 0.2);
  color: #E2E7E9;
}
.theme-default-dark matcha-card[color=basic][tint]:not([tint=false]),
.theme-default-dark .matcha-card[color=basic][tint]:not([tint=false]),
.theme-default-dark .matcha-card-flat[color=basic][tint]:not([tint=false]) {
  background: rgba(226, 231, 233, 0.2);
  color: #E2E7E9;
}
.theme-default-dark matcha-card[color=basic][outline]:not([outline=false]), .theme-default-dark matcha-card[color=basic][link]:not([link=false]), .theme-default-dark matcha-card[color=basic][basic]:not([basic=false]),
.theme-default-dark .matcha-card[color=basic][outline]:not([outline=false]),
.theme-default-dark .matcha-card[color=basic][link]:not([link=false]),
.theme-default-dark .matcha-card[color=basic][basic]:not([basic=false]),
.theme-default-dark .matcha-card-flat[color=basic][outline]:not([outline=false]),
.theme-default-dark .matcha-card-flat[color=basic][link]:not([link=false]),
.theme-default-dark .matcha-card-flat[color=basic][basic]:not([basic=false]) {
  color: #E2E7E9;
}
.theme-default-dark matcha-card[color=basic],
.theme-default-dark .matcha-card[color=basic],
.theme-default-dark .matcha-card-flat[color=basic] {
  background: #141414;
  color: #E2E7E9;
}
.theme-default-dark matcha-card[color=basic],
.theme-default-dark .matcha-card[color=basic],
.theme-default-dark .matcha-card-flat[color=basic] {
  background: #141414;
}
.theme-default-dark matcha-card[color=basic]:not([color]),
.theme-default-dark .matcha-card[color=basic]:not([color]),
.theme-default-dark .matcha-card-flat[color=basic]:not([color]) {
  color: #E2E7E9;
}
.theme-default-dark .svg-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.theme-default-dark .svg-line line {
  stroke-width: 4px;
  stroke: #7E8E95;
}
.theme-default-dark .child {
  display: flex;
  position: relative;
}
.theme-default-dark .child .the-line-connect-first {
  width: 56px;
  height: 4px;
  margin: 56px -16px 56px -40px;
  display: flex;
  position: absolute;
  z-index: -1;
  background: transparent;
  box-shadow: inset 2px -2px 0px 2px #7E8E95;
}
.theme-default-dark .child .the-line-connect {
  width: 56px;
  margin: -90px -16px 56px -40px;
  height: 150px;
  display: flex;
  position: absolute;
  z-index: -1;
  background: transparent;
  border-radius: 0 0 0 40px;
  box-shadow: inset 2px -2px 0px 2px #7E8E95;
}
.theme-default-dark .child .the-line-connect-last {
  width: 56px;
  height: 136px;
  margin: -80px -16px 56px -40px;
  display: flex;
  position: absolute;
  z-index: -1;
  border-radius: 0 0 0 40px;
  background: transparent;
  box-shadow: inset 2px -2px 0px 2px #7E8E95;
}
.theme-default-dark .child .the-line-connect-first-modal {
  width: 56px;
  height: 4px;
  margin: 56px -16px 56px -40px;
  display: flex;
  position: absolute;
  z-index: -1;
  background: transparent;
  box-shadow: inset 2px -2px 0px 2px;
}
.theme-default-dark .child .the-line-connect-second-modal {
  width: 56px;
  border-radius: 0 0 0 40px;
  z-index: 1;
  margin: -16px -16px 56px -40px;
  height: 72px;
  display: flex;
  position: absolute;
  background: transparent;
  box-shadow: inset 2px -2px 0px 2px;
}
.theme-default-dark .child .the-line-connect-last-modal {
  width: 56px;
  height: 150px;
  margin: -90px -16px 56px -40px;
  display: flex;
  position: absolute;
  border-radius: 0 0 0 40px;
  z-index: 1;
  background: transparent;
  box-shadow: inset 2px -2px 0px 2px;
}
.theme-default-dark .child .the-line-connect-start-modal {
  height: 92px;
  margin: -34px -16px 56px -40px;
  width: 56px;
  border-radius: 0 0 0 40px;
  z-index: 1;
  display: flex;
  position: absolute;
  background: transparent;
  box-shadow: inset 2px -2px 0px 2px;
}
.theme-default-dark .child .the-line-connect {
  height: 92px !important;
  margin: -34px -16px 56px -40px !important;
}
.theme-default-dark .child .the-line-connect-middle {
  height: 92px;
  margin: -34px -16px 56px -40px;
  width: 56px;
  border-radius: 0 0 0 40px;
  z-index: 0;
  display: flex;
  position: absolute;
  background: transparent;
  box-shadow: inset 2px -2px 0px 2px #223744;
}
.theme-default-dark .tree-node {
  min-width: 264px;
  max-width: 264px;
  width: 264px;
  height: 80px;
}
.theme-default-dark .tree-node-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4px;
}
.theme-default-dark .tree-node-header-title {
  font-size: 12px;
  line-height: 12px;
  display: flex;
  margin: 0 0 4px 0;
  align-items: center;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: "CircularStd";
  font-weight: 700;
}
.theme-default-dark .tree-node-header-title-bullet {
  height: 16px;
  width: 8px;
  margin: 0px 8px 0 0;
  display: inline-block;
  position: relative;
  border-radius: 10px;
}
.theme-default-dark .tree-node-content {
  display: flex;
  justify-content: space-between;
}
.theme-default-dark .tree-node-content-profile {
  display: flex;
  align-items: center;
  width: 100%;
}
.theme-default-dark .tree-node-content-profile-avatar {
  border-radius: 50px;
  min-width: 24px;
  min-height: 24px;
  width: 24px;
  height: 24px;
  max-width: 24px;
  max-height: 24px;
}
.theme-default-dark .tree-node-content-profile-name {
  width: calc(100% - 48px);
  display: flex;
  line-height: 20px;
  font-size: 16px;
  margin: 0 0 0 8px;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
  white-space: nowrap;
  -webkit-box-orient: vertical;
}
.theme-default-dark .tree-node-content-btn-add-node {
  position: absolute;
  margin: 24px 0px 0 236px;
  width: 24px;
  height: 24px;
  background: #141414;
  box-shadow: inset 0px 0px 0px 3px #2979ff;
}
.theme-default-dark .tree-node-content-btn-add-node-i {
  line-height: 12px;
  color: #2979ff;
  border-radius: 50px;
}
.theme-default-dark .tree-first-node {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 264px;
  max-width: 264px;
  width: 264px;
  height: 80px;
  margin: 16px 16px -10px 16px;
  border-radius: 8px;
}
.theme-default-dark .tree-first-node-begin {
  font-size: 16px;
  font-family: "CircularStd";
  font-weight: 700;
  line-height: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
  white-space: initial;
  -webkit-box-orient: vertical;
  text-transform: capitalize;
  text-overflow: ellipsis;
}
.theme-default-dark .tree-first-node-begin-btn-add-node {
  width: 24px;
  height: 24px;
  display: block;
  margin: 0 auto;
  position: relative;
  background: #141414;
  box-shadow: inset 0px 0px 0px 3px #2979ff;
}
.theme-default-dark .tree-first-node-begin-btn-add-node-i {
  line-height: 12px;
  color: #2979ff;
  border-radius: 50px;
}
.theme-default-dark .matcha-horizontal-tree {
  overflow: auto;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  /* Konqueror HTML */
  /* Old versions of Firefox */
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently */
}
.theme-default-dark .scrollbox,
.theme-default-dark .scrollbox-vertical,
.theme-default-dark .scrollbox-v,
.theme-default-dark .scrollbox-y {
  overflow: overlay;
  background: linear-gradient(#141414 30%, rgba(255, 255, 255, 0)), linear-gradient(rgba(255, 255, 255, 0), #141414 70%) 0 100%, linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0) 50%), linear-gradient(0deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0) 50%) 0 100%;
  background-repeat: no-repeat;
  background-color: #141414;
  background-size: 100% 40px, 100% 40px, 100% 14px, 100% 14px;
  /* Opera doesn't support this in the shorthand */
  background-attachment: local, local, scroll, scroll;
}
.theme-default-dark .scrollbox-horizontal,
.theme-default-dark .scrollbox-h,
.theme-default-dark .scrollbox-x {
  box-shadow: 0px -16px 0px 0px inset #141414, 20px 0 16px -24px inset #000000, -20px 0 16px -24px inset #000000, 0px 2px 2px 0px rgba(0, 0, 0, 0.0352941176), 0px 2px 2px 0px rgba(0, 0, 0, 0.0352941176), 0px 2px 2px 0px rgba(0, 0, 0, 0.0352941176);
  overflow: auto;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0) calc(0% + 10px), rgba(0, 0, 0, 0) calc(100% - 10px), rgba(0, 0, 0, 0.1));
  background: -webkit-linear-gradient(0deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0) calc(0% + 10px), rgba(0, 0, 0, 0) calc(100% - 10px), rgba(0, 0, 0, 0.1));
}
.theme-default-dark .scrollbox-horizontal-content,
.theme-default-dark .scrollbox-h-content,
.theme-default-dark .scrollbox-x-content {
  background: #141414;
  background: linear-gradient(90deg, #141414 10px, #141414, rgba(255, 255, 255, 0) calc(0% + 10px), rgba(255, 255, 255, 0) calc(100% - 10px), #141414 10px, #141414);
  background: -webkit-linear-gradient(0deg, #141414 10px, #141414, rgba(255, 255, 255, 0) calc(0% + 10px), rgba(255, 255, 255, 0) calc(100% - 10px), #141414 10px, #141414);
}
.theme-default-dark .scrollbox-horizontal-content-background,
.theme-default-dark .scrollbox-h-content-background,
.theme-default-dark .scrollbox-x-content-background {
  background: #0A0A0A;
  background: linear-gradient(90deg, #0A0A0A 10px, #0A0A0A, rgba(255, 255, 255, 0) calc(0% + 10px), rgba(255, 255, 255, 0) calc(100% - 10px), #0A0A0A 10px, #0A0A0A);
  background: -webkit-linear-gradient(0deg, #0A0A0A 10px, #0A0A0A, rgba(255, 255, 255, 0) calc(0% + 10px), rgba(255, 255, 255, 0) calc(100% - 10px), #0A0A0A 10px, #0A0A0A);
}
.theme-default-dark .scrollbox-background {
  overflow: overlay;
  background: linear-gradient(#0A0A0A 30%, rgba(255, 255, 255, 0)), linear-gradient(rgba(255, 255, 255, 0), #0A0A0A 70%) 0 100%, linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0) 50%), linear-gradient(0deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0) 50%) 0 100%;
  background-repeat: no-repeat;
  background-color: #0A0A0A;
  background-size: 100% 40px, 100% 40px, 100% 14px, 100% 14px;
  /* Opera doesn't support this in the shorthand */
  background-attachment: local, local, scroll, scroll;
}
.theme-default-dark :not(.is-mobile) ::-webkit-scrollbar {
  width: 16px;
  height: 16px;
  background-color: rgba(0, 0, 0, 0);
}
.theme-default-dark :not(.is-mobile) ::-webkit-scrollbar:hover {
  background-color: rgba(0, 0, 0, 0.12);
}
.theme-default-dark :not(.is-mobile) ::-webkit-scrollbar-thumb {
  border: 4px solid transparent;
  box-shadow: inset 0 0 0 12px rgba(136, 136, 136, 0.2);
  border-radius: 12px;
}
.theme-default-dark :not(.is-mobile) ::-webkit-scrollbar-thumb:active {
  box-shadow: inset 0 0 0 12px rgba(136, 136, 136, 0.2666666667);
  border-radius: 12px;
}
.theme-default-dark :not(.is-mobile) ::-webkit-scrollbar-corner {
  background: rgba(0, 0, 0, 0);
}
.theme-default-dark body.is-mobile .table-container .table-container-shadow {
  overflow: auto;
  box-shadow: 0px -16px 0px 0px inset #141414, 20px 0 16px -24px inset #000000, -20px 0 16px -24px inset #000000, 0px 2px 2px 0px rgba(0, 0, 0, 0.0352941176), 0px 2px 2px 0px rgba(0, 0, 0, 0.0352941176), 0px 2px 2px 0px rgba(0, 0, 0, 0.0352941176);
}
.theme-default-dark body.is-mobile .table-container .table-container-shadow .mat-table tbody,
.theme-default-dark body.is-mobile .table-container .table-container-shadow .mat-sort tbody {
  background: #141414;
  background: linear-gradient(90deg, #141414 0px, #141414 0px, rgba(255, 255, 255, 0) calc(0% + 40px), rgba(255, 255, 255, 0) calc(100% - 40px), #141414 calc(100% - 0px));
  background: -webkit-linear-gradient(0deg, #141414 0px, #141414 0px, rgba(255, 255, 255, 0) calc(0% + 40px), rgba(255, 255, 255, 0) calc(100% - 40px), #141414 calc(100% - 0px));
}
.theme-default-dark .table-container {
  width: 100%;
}
.theme-default-dark .table-container .table-container-shadow {
  overflow: auto;
  background: #141414;
  border-radius: 8px;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.0352941176), 0px 2px 2px 0px rgba(0, 0, 0, 0.0352941176), 0px 2px 2px 0px rgba(0, 0, 0, 0.0352941176);
  box-shadow: 0px -16px 0px 0px inset #141414, 20px 0 16px -24px inset #000000, -20px 0 16px -24px inset #000000, 0px 2px 2px 0px rgba(0, 0, 0, 0.0352941176), 0px 2px 2px 0px rgba(0, 0, 0, 0.0352941176), 0px 2px 2px 0px rgba(0, 0, 0, 0.0352941176);
}
.theme-default-dark .table-container .table-container-shadow .mat-table tbody,
.theme-default-dark .table-container .table-container-shadow .mat-sort tbody {
  background: #141414;
  background: linear-gradient(90deg, #141414 0px, #141414 0px, rgba(255, 255, 255, 0) calc(0% + 40px), rgba(255, 255, 255, 0) calc(100% - 40px), #141414 calc(100% - 0px));
  background: -webkit-linear-gradient(0deg, #141414 0px, #141414 0px, rgba(255, 255, 255, 0) calc(0% + 40px), rgba(255, 255, 255, 0) calc(100% - 40px), #141414 calc(100% - 0px));
}
.theme-default-dark .table-container .table-container-shadow.ps--active-x {
  box-shadow: 0px -16px 0px 0px inset #141414, 20px 0 16px -24px inset #000000, -20px 0 16px -24px inset #000000, 0px 2px 2px 0px rgba(0, 0, 0, 0.0352941176), 0px 2px 2px 0px rgba(0, 0, 0, 0.0352941176), 0px 2px 2px 0px rgba(0, 0, 0, 0.0352941176);
}
.theme-default-dark .table-container .table-container-shadow.ps--active-x .mat-table,
.theme-default-dark .table-container .table-container-shadow.ps--active-x .mat-sort {
  background: #141414;
  background: linear-gradient(90deg, #141414 0px, #141414 0px, rgba(255, 255, 255, 0) calc(0% + 40px), rgba(255, 255, 255, 0) calc(100% - 40px), #141414 calc(100% - 0px));
  background: -webkit-linear-gradient(0deg, #141414 0px, #141414 0px, rgba(255, 255, 255, 0) calc(0% + 40px), rgba(255, 255, 255, 0) calc(100% - 40px), #141414 calc(100% - 0px));
}
.theme-default-dark .table-container .mat-table thead,
.theme-default-dark .table-container .mat-sort thead,
.theme-default-dark .table-container .mat-expansion-panel thead {
  background: #141414;
}
.theme-default-dark .table-container .mat-table thead th,
.theme-default-dark .table-container .mat-sort thead th,
.theme-default-dark .table-container .mat-expansion-panel thead th {
  height: 64px;
}
.theme-default-dark .table-container .mat-table tr.mat-row:nth-child(odd),
.theme-default-dark .table-container .mat-sort tr.mat-row:nth-child(odd),
.theme-default-dark .table-container .mat-expansion-panel tr.mat-row:nth-child(odd) {
  background: rgba(10, 10, 10, 0.5);
}
.theme-default-dark .table-container .mat-table tr td,
.theme-default-dark .table-container .mat-table tr th,
.theme-default-dark .table-container .mat-sort tr td,
.theme-default-dark .table-container .mat-sort tr th,
.theme-default-dark .table-container .mat-expansion-panel tr td,
.theme-default-dark .table-container .mat-expansion-panel tr th {
  touch-action: unset !important;
  font-size: 14px;
}
.theme-default-dark .table-container .mat-table tr td:first-child,
.theme-default-dark .table-container .mat-table tr th:first-child,
.theme-default-dark .table-container .mat-sort tr td:first-child,
.theme-default-dark .table-container .mat-sort tr th:first-child,
.theme-default-dark .table-container .mat-expansion-panel tr td:first-child,
.theme-default-dark .table-container .mat-expansion-panel tr th:first-child {
  padding-left: 24px;
}
.theme-default-dark .table-container .mat-table tr td .clickable,
.theme-default-dark .table-container .mat-table tr th .clickable,
.theme-default-dark .table-container .mat-sort tr td .clickable,
.theme-default-dark .table-container .mat-sort tr th .clickable,
.theme-default-dark .table-container .mat-expansion-panel tr td .clickable,
.theme-default-dark .table-container .mat-expansion-panel tr th .clickable {
  cursor: pointer;
}
.theme-default-dark .table-container .mat-table .td-duble-line,
.theme-default-dark .table-container .mat-sort .td-duble-line,
.theme-default-dark .table-container .mat-expansion-panel .td-duble-line {
  height: 48px;
}
.theme-default-dark .table-container .mat-table .td-with-image,
.theme-default-dark .table-container .mat-table .td-with-checkbox,
.theme-default-dark .table-container .mat-table .td-with-icon,
.theme-default-dark .table-container .mat-table .td-duble-line,
.theme-default-dark .table-container .mat-sort .td-with-image,
.theme-default-dark .table-container .mat-sort .td-with-checkbox,
.theme-default-dark .table-container .mat-sort .td-with-icon,
.theme-default-dark .table-container .mat-sort .td-duble-line,
.theme-default-dark .table-container .mat-expansion-panel .td-with-image,
.theme-default-dark .table-container .mat-expansion-panel .td-with-checkbox,
.theme-default-dark .table-container .mat-expansion-panel .td-with-icon,
.theme-default-dark .table-container .mat-expansion-panel .td-duble-line {
  display: flex;
  align-items: center;
}
.theme-default-dark .table-container .mat-table .td-with-image .td-text-aside,
.theme-default-dark .table-container .mat-table .td-with-checkbox .td-text-aside,
.theme-default-dark .table-container .mat-table .td-with-icon .td-text-aside,
.theme-default-dark .table-container .mat-table .td-duble-line .td-text-aside,
.theme-default-dark .table-container .mat-sort .td-with-image .td-text-aside,
.theme-default-dark .table-container .mat-sort .td-with-checkbox .td-text-aside,
.theme-default-dark .table-container .mat-sort .td-with-icon .td-text-aside,
.theme-default-dark .table-container .mat-sort .td-duble-line .td-text-aside,
.theme-default-dark .table-container .mat-expansion-panel .td-with-image .td-text-aside,
.theme-default-dark .table-container .mat-expansion-panel .td-with-checkbox .td-text-aside,
.theme-default-dark .table-container .mat-expansion-panel .td-with-icon .td-text-aside,
.theme-default-dark .table-container .mat-expansion-panel .td-duble-line .td-text-aside {
  display: inline-block;
  width: calc(100% - 48px);
}
.theme-default-dark .table-container .mat-table .td-with-image .avatar,
.theme-default-dark .table-container .mat-table .td-with-checkbox .avatar,
.theme-default-dark .table-container .mat-table .td-with-icon .avatar,
.theme-default-dark .table-container .mat-table .td-duble-line .avatar,
.theme-default-dark .table-container .mat-sort .td-with-image .avatar,
.theme-default-dark .table-container .mat-sort .td-with-checkbox .avatar,
.theme-default-dark .table-container .mat-sort .td-with-icon .avatar,
.theme-default-dark .table-container .mat-sort .td-duble-line .avatar,
.theme-default-dark .table-container .mat-expansion-panel .td-with-image .avatar,
.theme-default-dark .table-container .mat-expansion-panel .td-with-checkbox .avatar,
.theme-default-dark .table-container .mat-expansion-panel .td-with-icon .avatar,
.theme-default-dark .table-container .mat-expansion-panel .td-duble-line .avatar {
  width: 48px;
  min-width: 48px;
  height: 48px;
  line-height: 48px;
  border-width: 0;
  margin-right: 24px;
}
.theme-default-dark .table-container .mat-table .td-with-image .thumbnail,
.theme-default-dark .table-container .mat-table .td-with-checkbox .thumbnail,
.theme-default-dark .table-container .mat-table .td-with-icon .thumbnail,
.theme-default-dark .table-container .mat-table .td-duble-line .thumbnail,
.theme-default-dark .table-container .mat-sort .td-with-image .thumbnail,
.theme-default-dark .table-container .mat-sort .td-with-checkbox .thumbnail,
.theme-default-dark .table-container .mat-sort .td-with-icon .thumbnail,
.theme-default-dark .table-container .mat-sort .td-duble-line .thumbnail,
.theme-default-dark .table-container .mat-expansion-panel .td-with-image .thumbnail,
.theme-default-dark .table-container .mat-expansion-panel .td-with-checkbox .thumbnail,
.theme-default-dark .table-container .mat-expansion-panel .td-with-icon .thumbnail,
.theme-default-dark .table-container .mat-expansion-panel .td-duble-line .thumbnail {
  width: 72px;
  min-width: 72px;
  height: 48px;
  border-radius: 8px;
  margin: 0 8px 0 0;
}
.theme-default-dark .table-container .mat-table .td-with-image .thumbnail-portrait,
.theme-default-dark .table-container .mat-table .td-with-checkbox .thumbnail-portrait,
.theme-default-dark .table-container .mat-table .td-with-icon .thumbnail-portrait,
.theme-default-dark .table-container .mat-table .td-duble-line .thumbnail-portrait,
.theme-default-dark .table-container .mat-sort .td-with-image .thumbnail-portrait,
.theme-default-dark .table-container .mat-sort .td-with-checkbox .thumbnail-portrait,
.theme-default-dark .table-container .mat-sort .td-with-icon .thumbnail-portrait,
.theme-default-dark .table-container .mat-sort .td-duble-line .thumbnail-portrait,
.theme-default-dark .table-container .mat-expansion-panel .td-with-image .thumbnail-portrait,
.theme-default-dark .table-container .mat-expansion-panel .td-with-checkbox .thumbnail-portrait,
.theme-default-dark .table-container .mat-expansion-panel .td-with-icon .thumbnail-portrait,
.theme-default-dark .table-container .mat-expansion-panel .td-duble-line .thumbnail-portrait {
  width: 56px;
  min-width: 56px;
  height: 72px;
  border-radius: 8px;
  margin: 0 8px 0 0;
}
.theme-default-dark .table-container .mat-table .mat-header-cell,
.theme-default-dark .table-container .mat-sort .mat-header-cell,
.theme-default-dark .table-container .mat-expansion-panel .mat-header-cell {
  color: #E2E7E9;
  font-family: "CircularStd";
  font-weight: 700;
  font-size: 16px;
  padding-left: 8px;
  padding-right: 8px;
  border-bottom-width: 0px;
}
.theme-default-dark .table-container .mat-table .mat-cell,
.theme-default-dark .table-container .mat-sort .mat-cell,
.theme-default-dark .table-container .mat-expansion-panel .mat-cell {
  color: #E2E7E9;
  font-size: 14px;
  padding-left: 8px;
  padding-right: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: start;
  border-bottom-width: 0px;
}
.theme-default-dark .table-container .mat-table .mat-cell.cdk-column-menu,
.theme-default-dark .table-container .mat-sort .mat-cell.cdk-column-menu,
.theme-default-dark .table-container .mat-expansion-panel .mat-cell.cdk-column-menu {
  text-align: left;
}
.theme-default-dark .table-container .mat-table .last,
.theme-default-dark .table-container .mat-sort .last,
.theme-default-dark .table-container .mat-expansion-panel .last {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}
.theme-default-dark .table-container .mat-table .last span,
.theme-default-dark .table-container .mat-sort .last span,
.theme-default-dark .table-container .mat-expansion-panel .last span {
  overflow: hidden;
  text-overflow: ellipsis;
}
.theme-default-dark .table-container .mat-table .last mat-menu,
.theme-default-dark .table-container .mat-sort .last mat-menu,
.theme-default-dark .table-container .mat-expansion-panel .last mat-menu {
  display: none;
}
.theme-default-dark .table-container table {
  width: 100%;
}
.theme-default-dark .table-container .badge {
  border-radius: 8px;
  padding: 8px;
  color: #21282C;
}
.theme-default-dark .table-container .badge.live-badge {
  font-size: 14px;
}
.theme-default-dark .table-container .badge.cell-badge {
  font-size: 14px;
}
.theme-default-dark .table-container .badge.cult-badge {
  font-size: 14px;
}
.theme-default-dark .table-container .badge.new-visitor-badge {
  background-color: #8A9EA8;
  color: white;
  font-size: 14px;
  line-height: 14px;
  display: inline-block;
  width: auto;
}
@media (min-width: 1440px) {
  .theme-default-dark .table-container .mat-table .mat-cell,
  .theme-default-dark .table-container .mat-sort .mat-cell {
    font-size: 16px;
  }
}
.theme-default-dark matcha-button-toggle {
  display: flex;
}
.theme-default-dark matcha-button-toggle:not([inactivetype])[inactivecolor=red] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle:not([inactivetype])[inactivecolor=red] .button-group a[matcha-button]:not([active]), .theme-default-dark matcha-button-toggle[inactivetype=solid][inactivecolor=red] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=solid][inactivecolor=red] .button-group a[matcha-button]:not([active]) {
  background: #f7c4c4;
  color: rgba(0, 0, 0, 0.87);
  box-shadow: 0 0 0 0px inset;
}
.theme-default-dark matcha-button-toggle:not([inactivetype])[inactivecolor=red] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle:not([inactivetype])[inactivecolor=red] .button-group a[matcha-button]:not([active]) .ripple, .theme-default-dark matcha-button-toggle[inactivetype=solid][inactivecolor=red] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=solid][inactivecolor=red] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(0, 0, 0, 0.2);
}
.theme-default-dark matcha-button-toggle:not([inactivetype])[inactivecolor=pink] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle:not([inactivetype])[inactivecolor=pink] .button-group a[matcha-button]:not([active]), .theme-default-dark matcha-button-toggle[inactivetype=solid][inactivecolor=pink] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=solid][inactivecolor=pink] .button-group a[matcha-button]:not([active]) {
  background: #f8bbd0;
  color: rgba(0, 0, 0, 0.87);
  box-shadow: 0 0 0 0px inset;
}
.theme-default-dark matcha-button-toggle:not([inactivetype])[inactivecolor=pink] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle:not([inactivetype])[inactivecolor=pink] .button-group a[matcha-button]:not([active]) .ripple, .theme-default-dark matcha-button-toggle[inactivetype=solid][inactivecolor=pink] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=solid][inactivecolor=pink] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(0, 0, 0, 0.2);
}
.theme-default-dark matcha-button-toggle:not([inactivetype])[inactivecolor=purple] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle:not([inactivetype])[inactivecolor=purple] .button-group a[matcha-button]:not([active]), .theme-default-dark matcha-button-toggle[inactivetype=solid][inactivecolor=purple] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=solid][inactivecolor=purple] .button-group a[matcha-button]:not([active]) {
  background: #e1bee7;
  color: rgba(0, 0, 0, 0.87);
  box-shadow: 0 0 0 0px inset;
}
.theme-default-dark matcha-button-toggle:not([inactivetype])[inactivecolor=purple] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle:not([inactivetype])[inactivecolor=purple] .button-group a[matcha-button]:not([active]) .ripple, .theme-default-dark matcha-button-toggle[inactivetype=solid][inactivecolor=purple] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=solid][inactivecolor=purple] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(0, 0, 0, 0.2);
}
.theme-default-dark matcha-button-toggle:not([inactivetype])[inactivecolor=deep-purple] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle:not([inactivetype])[inactivecolor=deep-purple] .button-group a[matcha-button]:not([active]), .theme-default-dark matcha-button-toggle[inactivetype=solid][inactivecolor=deep-purple] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=solid][inactivecolor=deep-purple] .button-group a[matcha-button]:not([active]) {
  background: #d1c4e9;
  color: rgba(0, 0, 0, 0.87);
  box-shadow: 0 0 0 0px inset;
}
.theme-default-dark matcha-button-toggle:not([inactivetype])[inactivecolor=deep-purple] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle:not([inactivetype])[inactivecolor=deep-purple] .button-group a[matcha-button]:not([active]) .ripple, .theme-default-dark matcha-button-toggle[inactivetype=solid][inactivecolor=deep-purple] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=solid][inactivecolor=deep-purple] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(0, 0, 0, 0.2);
}
.theme-default-dark matcha-button-toggle:not([inactivetype])[inactivecolor=indigo] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle:not([inactivetype])[inactivecolor=indigo] .button-group a[matcha-button]:not([active]), .theme-default-dark matcha-button-toggle[inactivetype=solid][inactivecolor=indigo] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=solid][inactivecolor=indigo] .button-group a[matcha-button]:not([active]) {
  background: #c5cae9;
  color: rgba(0, 0, 0, 0.87);
  box-shadow: 0 0 0 0px inset;
}
.theme-default-dark matcha-button-toggle:not([inactivetype])[inactivecolor=indigo] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle:not([inactivetype])[inactivecolor=indigo] .button-group a[matcha-button]:not([active]) .ripple, .theme-default-dark matcha-button-toggle[inactivetype=solid][inactivecolor=indigo] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=solid][inactivecolor=indigo] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(0, 0, 0, 0.2);
}
.theme-default-dark matcha-button-toggle:not([inactivetype])[inactivecolor=blue] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle:not([inactivetype])[inactivecolor=blue] .button-group a[matcha-button]:not([active]), .theme-default-dark matcha-button-toggle[inactivetype=solid][inactivecolor=blue] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=solid][inactivecolor=blue] .button-group a[matcha-button]:not([active]) {
  background: #bccef4;
  color: rgba(0, 0, 0, 0.87);
  box-shadow: 0 0 0 0px inset;
}
.theme-default-dark matcha-button-toggle:not([inactivetype])[inactivecolor=blue] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle:not([inactivetype])[inactivecolor=blue] .button-group a[matcha-button]:not([active]) .ripple, .theme-default-dark matcha-button-toggle[inactivetype=solid][inactivecolor=blue] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=solid][inactivecolor=blue] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(0, 0, 0, 0.2);
}
.theme-default-dark matcha-button-toggle:not([inactivetype])[inactivecolor=light-blue] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle:not([inactivetype])[inactivecolor=light-blue] .button-group a[matcha-button]:not([active]), .theme-default-dark matcha-button-toggle[inactivetype=solid][inactivecolor=light-blue] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=solid][inactivecolor=light-blue] .button-group a[matcha-button]:not([active]) {
  background: #b3e5fc;
  color: rgba(0, 0, 0, 0.87);
  box-shadow: 0 0 0 0px inset;
}
.theme-default-dark matcha-button-toggle:not([inactivetype])[inactivecolor=light-blue] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle:not([inactivetype])[inactivecolor=light-blue] .button-group a[matcha-button]:not([active]) .ripple, .theme-default-dark matcha-button-toggle[inactivetype=solid][inactivecolor=light-blue] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=solid][inactivecolor=light-blue] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(0, 0, 0, 0.2);
}
.theme-default-dark matcha-button-toggle:not([inactivetype])[inactivecolor=cyan] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle:not([inactivetype])[inactivecolor=cyan] .button-group a[matcha-button]:not([active]), .theme-default-dark matcha-button-toggle[inactivetype=solid][inactivecolor=cyan] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=solid][inactivecolor=cyan] .button-group a[matcha-button]:not([active]) {
  background: #b2ebf2;
  color: rgba(0, 0, 0, 0.87);
  box-shadow: 0 0 0 0px inset;
}
.theme-default-dark matcha-button-toggle:not([inactivetype])[inactivecolor=cyan] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle:not([inactivetype])[inactivecolor=cyan] .button-group a[matcha-button]:not([active]) .ripple, .theme-default-dark matcha-button-toggle[inactivetype=solid][inactivecolor=cyan] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=solid][inactivecolor=cyan] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(0, 0, 0, 0.2);
}
.theme-default-dark matcha-button-toggle:not([inactivetype])[inactivecolor=teal] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle:not([inactivetype])[inactivecolor=teal] .button-group a[matcha-button]:not([active]), .theme-default-dark matcha-button-toggle[inactivetype=solid][inactivecolor=teal] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=solid][inactivecolor=teal] .button-group a[matcha-button]:not([active]) {
  background: #b2dfdb;
  color: rgba(0, 0, 0, 0.87);
  box-shadow: 0 0 0 0px inset;
}
.theme-default-dark matcha-button-toggle:not([inactivetype])[inactivecolor=teal] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle:not([inactivetype])[inactivecolor=teal] .button-group a[matcha-button]:not([active]) .ripple, .theme-default-dark matcha-button-toggle[inactivetype=solid][inactivecolor=teal] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=solid][inactivecolor=teal] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(0, 0, 0, 0.2);
}
.theme-default-dark matcha-button-toggle:not([inactivetype])[inactivecolor=green] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle:not([inactivetype])[inactivecolor=green] .button-group a[matcha-button]:not([active]), .theme-default-dark matcha-button-toggle[inactivetype=solid][inactivecolor=green] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=solid][inactivecolor=green] .button-group a[matcha-button]:not([active]) {
  background: #b8dec8;
  color: rgba(0, 0, 0, 0.87);
  box-shadow: 0 0 0 0px inset;
}
.theme-default-dark matcha-button-toggle:not([inactivetype])[inactivecolor=green] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle:not([inactivetype])[inactivecolor=green] .button-group a[matcha-button]:not([active]) .ripple, .theme-default-dark matcha-button-toggle[inactivetype=solid][inactivecolor=green] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=solid][inactivecolor=green] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(0, 0, 0, 0.2);
}
.theme-default-dark matcha-button-toggle:not([inactivetype])[inactivecolor=light-green] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle:not([inactivetype])[inactivecolor=light-green] .button-group a[matcha-button]:not([active]), .theme-default-dark matcha-button-toggle[inactivetype=solid][inactivecolor=light-green] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=solid][inactivecolor=light-green] .button-group a[matcha-button]:not([active]) {
  background: #D4F4C0;
  color: rgba(0, 0, 0, 0.87);
  box-shadow: 0 0 0 0px inset;
}
.theme-default-dark matcha-button-toggle:not([inactivetype])[inactivecolor=light-green] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle:not([inactivetype])[inactivecolor=light-green] .button-group a[matcha-button]:not([active]) .ripple, .theme-default-dark matcha-button-toggle[inactivetype=solid][inactivecolor=light-green] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=solid][inactivecolor=light-green] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(0, 0, 0, 0.2);
}
.theme-default-dark matcha-button-toggle:not([inactivetype])[inactivecolor=lime] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle:not([inactivetype])[inactivecolor=lime] .button-group a[matcha-button]:not([active]), .theme-default-dark matcha-button-toggle[inactivetype=solid][inactivecolor=lime] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=solid][inactivecolor=lime] .button-group a[matcha-button]:not([active]) {
  background: #dbebb3;
  color: rgba(0, 0, 0, 0.87);
  box-shadow: 0 0 0 0px inset;
}
.theme-default-dark matcha-button-toggle:not([inactivetype])[inactivecolor=lime] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle:not([inactivetype])[inactivecolor=lime] .button-group a[matcha-button]:not([active]) .ripple, .theme-default-dark matcha-button-toggle[inactivetype=solid][inactivecolor=lime] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=solid][inactivecolor=lime] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(0, 0, 0, 0.2);
}
.theme-default-dark matcha-button-toggle:not([inactivetype])[inactivecolor=yellow] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle:not([inactivetype])[inactivecolor=yellow] .button-group a[matcha-button]:not([active]), .theme-default-dark matcha-button-toggle[inactivetype=solid][inactivecolor=yellow] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=solid][inactivecolor=yellow] .button-group a[matcha-button]:not([active]) {
  background: #f8edb3;
  color: rgba(0, 0, 0, 0.87);
  box-shadow: 0 0 0 0px inset;
}
.theme-default-dark matcha-button-toggle:not([inactivetype])[inactivecolor=yellow] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle:not([inactivetype])[inactivecolor=yellow] .button-group a[matcha-button]:not([active]) .ripple, .theme-default-dark matcha-button-toggle[inactivetype=solid][inactivecolor=yellow] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=solid][inactivecolor=yellow] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(0, 0, 0, 0.2);
}
.theme-default-dark matcha-button-toggle:not([inactivetype])[inactivecolor=amber] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle:not([inactivetype])[inactivecolor=amber] .button-group a[matcha-button]:not([active]), .theme-default-dark matcha-button-toggle[inactivetype=solid][inactivecolor=amber] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=solid][inactivecolor=amber] .button-group a[matcha-button]:not([active]) {
  background: #fee4ba;
  color: rgba(0, 0, 0, 0.87);
  box-shadow: 0 0 0 0px inset;
}
.theme-default-dark matcha-button-toggle:not([inactivetype])[inactivecolor=amber] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle:not([inactivetype])[inactivecolor=amber] .button-group a[matcha-button]:not([active]) .ripple, .theme-default-dark matcha-button-toggle[inactivetype=solid][inactivecolor=amber] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=solid][inactivecolor=amber] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(0, 0, 0, 0.2);
}
.theme-default-dark matcha-button-toggle:not([inactivetype])[inactivecolor=orange] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle:not([inactivetype])[inactivecolor=orange] .button-group a[matcha-button]:not([active]), .theme-default-dark matcha-button-toggle[inactivetype=solid][inactivecolor=orange] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=solid][inactivecolor=orange] .button-group a[matcha-button]:not([active]) {
  background: #fdd7b9;
  color: rgba(0, 0, 0, 0.87);
  box-shadow: 0 0 0 0px inset;
}
.theme-default-dark matcha-button-toggle:not([inactivetype])[inactivecolor=orange] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle:not([inactivetype])[inactivecolor=orange] .button-group a[matcha-button]:not([active]) .ripple, .theme-default-dark matcha-button-toggle[inactivetype=solid][inactivecolor=orange] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=solid][inactivecolor=orange] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(0, 0, 0, 0.2);
}
.theme-default-dark matcha-button-toggle:not([inactivetype])[inactivecolor=deep-orange] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle:not([inactivetype])[inactivecolor=deep-orange] .button-group a[matcha-button]:not([active]), .theme-default-dark matcha-button-toggle[inactivetype=solid][inactivecolor=deep-orange] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=solid][inactivecolor=deep-orange] .button-group a[matcha-button]:not([active]) {
  background: #ffccbc;
  color: rgba(0, 0, 0, 0.87);
  box-shadow: 0 0 0 0px inset;
}
.theme-default-dark matcha-button-toggle:not([inactivetype])[inactivecolor=deep-orange] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle:not([inactivetype])[inactivecolor=deep-orange] .button-group a[matcha-button]:not([active]) .ripple, .theme-default-dark matcha-button-toggle[inactivetype=solid][inactivecolor=deep-orange] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=solid][inactivecolor=deep-orange] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(0, 0, 0, 0.2);
}
.theme-default-dark matcha-button-toggle:not([inactivetype])[inactivecolor=brown] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle:not([inactivetype])[inactivecolor=brown] .button-group a[matcha-button]:not([active]), .theme-default-dark matcha-button-toggle[inactivetype=solid][inactivecolor=brown] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=solid][inactivecolor=brown] .button-group a[matcha-button]:not([active]) {
  background: #d7ccc8;
  color: rgba(0, 0, 0, 0.87);
  box-shadow: 0 0 0 0px inset;
}
.theme-default-dark matcha-button-toggle:not([inactivetype])[inactivecolor=brown] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle:not([inactivetype])[inactivecolor=brown] .button-group a[matcha-button]:not([active]) .ripple, .theme-default-dark matcha-button-toggle[inactivetype=solid][inactivecolor=brown] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=solid][inactivecolor=brown] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(0, 0, 0, 0.2);
}
.theme-default-dark matcha-button-toggle:not([inactivetype])[inactivecolor=grey] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle:not([inactivetype])[inactivecolor=grey] .button-group a[matcha-button]:not([active]), .theme-default-dark matcha-button-toggle[inactivetype=solid][inactivecolor=grey] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=solid][inactivecolor=grey] .button-group a[matcha-button]:not([active]) {
  background: #DEE3E6;
  color: rgba(0, 0, 0, 0.87);
  box-shadow: 0 0 0 0px inset;
}
.theme-default-dark matcha-button-toggle:not([inactivetype])[inactivecolor=grey] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle:not([inactivetype])[inactivecolor=grey] .button-group a[matcha-button]:not([active]) .ripple, .theme-default-dark matcha-button-toggle[inactivetype=solid][inactivecolor=grey] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=solid][inactivecolor=grey] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(0, 0, 0, 0.2);
}
.theme-default-dark matcha-button-toggle:not([inactivetype])[inactivecolor=blue-grey] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle:not([inactivetype])[inactivecolor=blue-grey] .button-group a[matcha-button]:not([active]), .theme-default-dark matcha-button-toggle[inactivetype=solid][inactivecolor=blue-grey] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=solid][inactivecolor=blue-grey] .button-group a[matcha-button]:not([active]) {
  background: #E2E7E9;
  color: rgba(0, 0, 0, 0.87);
  box-shadow: 0 0 0 0px inset;
}
.theme-default-dark matcha-button-toggle:not([inactivetype])[inactivecolor=blue-grey] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle:not([inactivetype])[inactivecolor=blue-grey] .button-group a[matcha-button]:not([active]) .ripple, .theme-default-dark matcha-button-toggle[inactivetype=solid][inactivecolor=blue-grey] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=solid][inactivecolor=blue-grey] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(0, 0, 0, 0.2);
}
.theme-default-dark matcha-button-toggle:not([inactivetype])[inactivecolor=primary] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle:not([inactivetype])[inactivecolor=primary] .button-group a[matcha-button]:not([active]), .theme-default-dark matcha-button-toggle[inactivetype=solid][inactivecolor=primary] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=solid][inactivecolor=primary] .button-group a[matcha-button]:not([active]) {
  background: #8A9EA8;
  color: white;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-dark matcha-button-toggle:not([inactivetype])[inactivecolor=primary] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle:not([inactivetype])[inactivecolor=primary] .button-group a[matcha-button]:not([active]) .ripple, .theme-default-dark matcha-button-toggle[inactivetype=solid][inactivecolor=primary] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=solid][inactivecolor=primary] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(255, 255, 255, 0.2);
}
.theme-default-dark matcha-button-toggle:not([inactivetype])[inactivecolor=accent] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle:not([inactivetype])[inactivecolor=accent] .button-group a[matcha-button]:not([active]), .theme-default-dark matcha-button-toggle[inactivetype=solid][inactivecolor=accent] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=solid][inactivecolor=accent] .button-group a[matcha-button]:not([active]) {
  background: #2979ff;
  color: white;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-dark matcha-button-toggle:not([inactivetype])[inactivecolor=accent] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle:not([inactivetype])[inactivecolor=accent] .button-group a[matcha-button]:not([active]) .ripple, .theme-default-dark matcha-button-toggle[inactivetype=solid][inactivecolor=accent] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=solid][inactivecolor=accent] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(255, 255, 255, 0.2);
}
.theme-default-dark matcha-button-toggle:not([inactivetype])[inactivecolor=warn] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle:not([inactivetype])[inactivecolor=warn] .button-group a[matcha-button]:not([active]), .theme-default-dark matcha-button-toggle[inactivetype=solid][inactivecolor=warn] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=solid][inactivecolor=warn] .button-group a[matcha-button]:not([active]) {
  background: #f29d9d;
  color: rgba(0, 0, 0, 0.87);
  box-shadow: 0 0 0 0px inset;
}
.theme-default-dark matcha-button-toggle:not([inactivetype])[inactivecolor=warn] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle:not([inactivetype])[inactivecolor=warn] .button-group a[matcha-button]:not([active]) .ripple, .theme-default-dark matcha-button-toggle[inactivetype=solid][inactivecolor=warn] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=solid][inactivecolor=warn] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(0, 0, 0, 0.2);
}
.theme-default-dark matcha-button-toggle:not([inactivetype])[inactivecolor=disabled] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle:not([inactivetype])[inactivecolor=disabled] .button-group a[matcha-button]:not([active]), .theme-default-dark matcha-button-toggle[inactivetype=solid][inactivecolor=disabled] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=solid][inactivecolor=disabled] .button-group a[matcha-button]:not([active]) {
  background: #292929;
  color: #21282C;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-dark matcha-button-toggle:not([inactivetype])[inactivecolor=disabled] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle:not([inactivetype])[inactivecolor=disabled] .button-group a[matcha-button]:not([active]) .ripple, .theme-default-dark matcha-button-toggle[inactivetype=solid][inactivecolor=disabled] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=solid][inactivecolor=disabled] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(33, 40, 44, 0.5);
}
.theme-default-dark matcha-button-toggle:not([inactivetype])[disabled] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle:not([inactivetype])[disabled] .button-group a[matcha-button]:not([active]), .theme-default-dark matcha-button-toggle:not([inactivetype])[disabled]:not([disabled=false]) .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle:not([inactivetype])[disabled]:not([disabled=false]) .button-group a[matcha-button]:not([active]), .theme-default-dark matcha-button-toggle:not([inactivetype])[disabled=true] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle:not([inactivetype])[disabled=true] .button-group a[matcha-button]:not([active]), .theme-default-dark matcha-button-toggle[inactivetype=solid][disabled] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=solid][disabled] .button-group a[matcha-button]:not([active]), .theme-default-dark matcha-button-toggle[inactivetype=solid][disabled]:not([disabled=false]) .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=solid][disabled]:not([disabled=false]) .button-group a[matcha-button]:not([active]), .theme-default-dark matcha-button-toggle[inactivetype=solid][disabled=true] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=solid][disabled=true] .button-group a[matcha-button]:not([active]) {
  background: #292929;
  color: rgba(226, 231, 233, 0.5);
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-dark matcha-button-toggle[inactivetype=basic][inactivecolor=red] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=basic][inactivecolor=red] .button-group a[matcha-button]:not([active]) {
  background: #141414;
  color: #f7c4c4;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-dark matcha-button-toggle[inactivetype=basic][inactivecolor=red] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=basic][inactivecolor=red] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(247, 196, 196, 0.2);
}
.theme-default-dark matcha-button-toggle[inactivetype=basic][inactivecolor=pink] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=basic][inactivecolor=pink] .button-group a[matcha-button]:not([active]) {
  background: #141414;
  color: #f8bbd0;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-dark matcha-button-toggle[inactivetype=basic][inactivecolor=pink] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=basic][inactivecolor=pink] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(248, 187, 208, 0.2);
}
.theme-default-dark matcha-button-toggle[inactivetype=basic][inactivecolor=purple] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=basic][inactivecolor=purple] .button-group a[matcha-button]:not([active]) {
  background: #141414;
  color: #e1bee7;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-dark matcha-button-toggle[inactivetype=basic][inactivecolor=purple] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=basic][inactivecolor=purple] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(225, 190, 231, 0.2);
}
.theme-default-dark matcha-button-toggle[inactivetype=basic][inactivecolor=deep-purple] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=basic][inactivecolor=deep-purple] .button-group a[matcha-button]:not([active]) {
  background: #141414;
  color: #d1c4e9;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-dark matcha-button-toggle[inactivetype=basic][inactivecolor=deep-purple] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=basic][inactivecolor=deep-purple] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(209, 196, 233, 0.2);
}
.theme-default-dark matcha-button-toggle[inactivetype=basic][inactivecolor=indigo] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=basic][inactivecolor=indigo] .button-group a[matcha-button]:not([active]) {
  background: #141414;
  color: #c5cae9;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-dark matcha-button-toggle[inactivetype=basic][inactivecolor=indigo] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=basic][inactivecolor=indigo] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(197, 202, 233, 0.2);
}
.theme-default-dark matcha-button-toggle[inactivetype=basic][inactivecolor=blue] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=basic][inactivecolor=blue] .button-group a[matcha-button]:not([active]) {
  background: #141414;
  color: #bccef4;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-dark matcha-button-toggle[inactivetype=basic][inactivecolor=blue] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=basic][inactivecolor=blue] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(188, 206, 244, 0.2);
}
.theme-default-dark matcha-button-toggle[inactivetype=basic][inactivecolor=light-blue] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=basic][inactivecolor=light-blue] .button-group a[matcha-button]:not([active]) {
  background: #141414;
  color: #b3e5fc;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-dark matcha-button-toggle[inactivetype=basic][inactivecolor=light-blue] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=basic][inactivecolor=light-blue] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(179, 229, 252, 0.2);
}
.theme-default-dark matcha-button-toggle[inactivetype=basic][inactivecolor=cyan] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=basic][inactivecolor=cyan] .button-group a[matcha-button]:not([active]) {
  background: #141414;
  color: #b2ebf2;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-dark matcha-button-toggle[inactivetype=basic][inactivecolor=cyan] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=basic][inactivecolor=cyan] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(178, 235, 242, 0.2);
}
.theme-default-dark matcha-button-toggle[inactivetype=basic][inactivecolor=teal] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=basic][inactivecolor=teal] .button-group a[matcha-button]:not([active]) {
  background: #141414;
  color: #b2dfdb;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-dark matcha-button-toggle[inactivetype=basic][inactivecolor=teal] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=basic][inactivecolor=teal] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(178, 223, 219, 0.2);
}
.theme-default-dark matcha-button-toggle[inactivetype=basic][inactivecolor=green] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=basic][inactivecolor=green] .button-group a[matcha-button]:not([active]) {
  background: #141414;
  color: #b8dec8;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-dark matcha-button-toggle[inactivetype=basic][inactivecolor=green] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=basic][inactivecolor=green] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(184, 222, 200, 0.2);
}
.theme-default-dark matcha-button-toggle[inactivetype=basic][inactivecolor=light-green] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=basic][inactivecolor=light-green] .button-group a[matcha-button]:not([active]) {
  background: #141414;
  color: #D4F4C0;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-dark matcha-button-toggle[inactivetype=basic][inactivecolor=light-green] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=basic][inactivecolor=light-green] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(212, 244, 192, 0.2);
}
.theme-default-dark matcha-button-toggle[inactivetype=basic][inactivecolor=lime] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=basic][inactivecolor=lime] .button-group a[matcha-button]:not([active]) {
  background: #141414;
  color: #dbebb3;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-dark matcha-button-toggle[inactivetype=basic][inactivecolor=lime] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=basic][inactivecolor=lime] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(219, 235, 179, 0.2);
}
.theme-default-dark matcha-button-toggle[inactivetype=basic][inactivecolor=yellow] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=basic][inactivecolor=yellow] .button-group a[matcha-button]:not([active]) {
  background: #141414;
  color: #f8edb3;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-dark matcha-button-toggle[inactivetype=basic][inactivecolor=yellow] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=basic][inactivecolor=yellow] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(248, 237, 179, 0.2);
}
.theme-default-dark matcha-button-toggle[inactivetype=basic][inactivecolor=amber] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=basic][inactivecolor=amber] .button-group a[matcha-button]:not([active]) {
  background: #141414;
  color: #fee4ba;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-dark matcha-button-toggle[inactivetype=basic][inactivecolor=amber] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=basic][inactivecolor=amber] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(254, 228, 186, 0.2);
}
.theme-default-dark matcha-button-toggle[inactivetype=basic][inactivecolor=orange] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=basic][inactivecolor=orange] .button-group a[matcha-button]:not([active]) {
  background: #141414;
  color: #fdd7b9;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-dark matcha-button-toggle[inactivetype=basic][inactivecolor=orange] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=basic][inactivecolor=orange] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(253, 215, 185, 0.2);
}
.theme-default-dark matcha-button-toggle[inactivetype=basic][inactivecolor=deep-orange] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=basic][inactivecolor=deep-orange] .button-group a[matcha-button]:not([active]) {
  background: #141414;
  color: #ffccbc;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-dark matcha-button-toggle[inactivetype=basic][inactivecolor=deep-orange] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=basic][inactivecolor=deep-orange] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(255, 204, 188, 0.2);
}
.theme-default-dark matcha-button-toggle[inactivetype=basic][inactivecolor=brown] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=basic][inactivecolor=brown] .button-group a[matcha-button]:not([active]) {
  background: #141414;
  color: #d7ccc8;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-dark matcha-button-toggle[inactivetype=basic][inactivecolor=brown] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=basic][inactivecolor=brown] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(215, 204, 200, 0.2);
}
.theme-default-dark matcha-button-toggle[inactivetype=basic][inactivecolor=grey] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=basic][inactivecolor=grey] .button-group a[matcha-button]:not([active]) {
  background: #141414;
  color: #DEE3E6;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-dark matcha-button-toggle[inactivetype=basic][inactivecolor=grey] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=basic][inactivecolor=grey] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(222, 227, 230, 0.2);
}
.theme-default-dark matcha-button-toggle[inactivetype=basic][inactivecolor=blue-grey] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=basic][inactivecolor=blue-grey] .button-group a[matcha-button]:not([active]) {
  background: #141414;
  color: #E2E7E9;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-dark matcha-button-toggle[inactivetype=basic][inactivecolor=blue-grey] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=basic][inactivecolor=blue-grey] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(226, 231, 233, 0.2);
}
.theme-default-dark matcha-button-toggle[inactivetype=basic][inactivecolor=primary] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=basic][inactivecolor=primary] .button-group a[matcha-button]:not([active]) {
  background: #141414;
  color: #8A9EA8;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-dark matcha-button-toggle[inactivetype=basic][inactivecolor=primary] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=basic][inactivecolor=primary] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(138, 158, 168, 0.2);
}
.theme-default-dark matcha-button-toggle[inactivetype=basic][inactivecolor=accent] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=basic][inactivecolor=accent] .button-group a[matcha-button]:not([active]) {
  background: #141414;
  color: #2979ff;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-dark matcha-button-toggle[inactivetype=basic][inactivecolor=accent] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=basic][inactivecolor=accent] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(41, 121, 255, 0.2);
}
.theme-default-dark matcha-button-toggle[inactivetype=basic][inactivecolor=warn] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=basic][inactivecolor=warn] .button-group a[matcha-button]:not([active]) {
  background: #141414;
  color: #f29d9d;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-dark matcha-button-toggle[inactivetype=basic][inactivecolor=warn] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=basic][inactivecolor=warn] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(242, 157, 157, 0.2);
}
.theme-default-dark matcha-button-toggle[inactivetype=basic][inactivecolor=disabled] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=basic][inactivecolor=disabled] .button-group a[matcha-button]:not([active]) {
  background: #141414;
  color: #292929;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-dark matcha-button-toggle[inactivetype=basic][inactivecolor=disabled] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=basic][inactivecolor=disabled] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(10, 10, 10, 0.5);
}
.theme-default-dark matcha-button-toggle[inactivetype=basic][disabled] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=basic][disabled] .button-group a[matcha-button]:not([active]), .theme-default-dark matcha-button-toggle[inactivetype=basic][disabled]:not([disabled=false]) .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=basic][disabled]:not([disabled=false]) .button-group a[matcha-button]:not([active]), .theme-default-dark matcha-button-toggle[inactivetype=basic][disabled=true] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=basic][disabled=true] .button-group a[matcha-button]:not([active]) {
  background: #141414;
  color: #292929;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-dark matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=red] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=red] .button-group a[matcha-button]:not([active]) {
  color: #f7c4c4;
  background: transparent;
  box-shadow: 0 0 0 2px #f7c4c4 inset;
}
.theme-default-dark matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=red] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=red] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(247, 196, 196, 0.2);
}
.theme-default-dark matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=pink] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=pink] .button-group a[matcha-button]:not([active]) {
  color: #f8bbd0;
  background: transparent;
  box-shadow: 0 0 0 2px #f8bbd0 inset;
}
.theme-default-dark matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=pink] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=pink] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(248, 187, 208, 0.2);
}
.theme-default-dark matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=purple] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=purple] .button-group a[matcha-button]:not([active]) {
  color: #e1bee7;
  background: transparent;
  box-shadow: 0 0 0 2px #e1bee7 inset;
}
.theme-default-dark matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=purple] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=purple] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(225, 190, 231, 0.2);
}
.theme-default-dark matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=deep-purple] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=deep-purple] .button-group a[matcha-button]:not([active]) {
  color: #d1c4e9;
  background: transparent;
  box-shadow: 0 0 0 2px #d1c4e9 inset;
}
.theme-default-dark matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=deep-purple] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=deep-purple] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(209, 196, 233, 0.2);
}
.theme-default-dark matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=indigo] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=indigo] .button-group a[matcha-button]:not([active]) {
  color: #c5cae9;
  background: transparent;
  box-shadow: 0 0 0 2px #c5cae9 inset;
}
.theme-default-dark matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=indigo] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=indigo] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(197, 202, 233, 0.2);
}
.theme-default-dark matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=blue] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=blue] .button-group a[matcha-button]:not([active]) {
  color: #bccef4;
  background: transparent;
  box-shadow: 0 0 0 2px #bccef4 inset;
}
.theme-default-dark matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=blue] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=blue] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(188, 206, 244, 0.2);
}
.theme-default-dark matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=light-blue] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=light-blue] .button-group a[matcha-button]:not([active]) {
  color: #b3e5fc;
  background: transparent;
  box-shadow: 0 0 0 2px #b3e5fc inset;
}
.theme-default-dark matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=light-blue] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=light-blue] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(179, 229, 252, 0.2);
}
.theme-default-dark matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=cyan] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=cyan] .button-group a[matcha-button]:not([active]) {
  color: #b2ebf2;
  background: transparent;
  box-shadow: 0 0 0 2px #b2ebf2 inset;
}
.theme-default-dark matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=cyan] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=cyan] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(178, 235, 242, 0.2);
}
.theme-default-dark matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=teal] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=teal] .button-group a[matcha-button]:not([active]) {
  color: #b2dfdb;
  background: transparent;
  box-shadow: 0 0 0 2px #b2dfdb inset;
}
.theme-default-dark matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=teal] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=teal] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(178, 223, 219, 0.2);
}
.theme-default-dark matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=green] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=green] .button-group a[matcha-button]:not([active]) {
  color: #b8dec8;
  background: transparent;
  box-shadow: 0 0 0 2px #b8dec8 inset;
}
.theme-default-dark matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=green] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=green] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(184, 222, 200, 0.2);
}
.theme-default-dark matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=light-green] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=light-green] .button-group a[matcha-button]:not([active]) {
  color: #D4F4C0;
  background: transparent;
  box-shadow: 0 0 0 2px #D4F4C0 inset;
}
.theme-default-dark matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=light-green] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=light-green] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(212, 244, 192, 0.2);
}
.theme-default-dark matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=lime] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=lime] .button-group a[matcha-button]:not([active]) {
  color: #dbebb3;
  background: transparent;
  box-shadow: 0 0 0 2px #dbebb3 inset;
}
.theme-default-dark matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=lime] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=lime] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(219, 235, 179, 0.2);
}
.theme-default-dark matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=yellow] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=yellow] .button-group a[matcha-button]:not([active]) {
  color: #f8edb3;
  background: transparent;
  box-shadow: 0 0 0 2px #f8edb3 inset;
}
.theme-default-dark matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=yellow] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=yellow] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(248, 237, 179, 0.2);
}
.theme-default-dark matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=amber] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=amber] .button-group a[matcha-button]:not([active]) {
  color: #fee4ba;
  background: transparent;
  box-shadow: 0 0 0 2px #fee4ba inset;
}
.theme-default-dark matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=amber] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=amber] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(254, 228, 186, 0.2);
}
.theme-default-dark matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=orange] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=orange] .button-group a[matcha-button]:not([active]) {
  color: #fdd7b9;
  background: transparent;
  box-shadow: 0 0 0 2px #fdd7b9 inset;
}
.theme-default-dark matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=orange] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=orange] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(253, 215, 185, 0.2);
}
.theme-default-dark matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=deep-orange] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=deep-orange] .button-group a[matcha-button]:not([active]) {
  color: #ffccbc;
  background: transparent;
  box-shadow: 0 0 0 2px #ffccbc inset;
}
.theme-default-dark matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=deep-orange] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=deep-orange] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(255, 204, 188, 0.2);
}
.theme-default-dark matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=brown] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=brown] .button-group a[matcha-button]:not([active]) {
  color: #d7ccc8;
  background: transparent;
  box-shadow: 0 0 0 2px #d7ccc8 inset;
}
.theme-default-dark matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=brown] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=brown] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(215, 204, 200, 0.2);
}
.theme-default-dark matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=grey] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=grey] .button-group a[matcha-button]:not([active]) {
  color: #DEE3E6;
  background: transparent;
  box-shadow: 0 0 0 2px #DEE3E6 inset;
}
.theme-default-dark matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=grey] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=grey] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(222, 227, 230, 0.2);
}
.theme-default-dark matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=blue-grey] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=blue-grey] .button-group a[matcha-button]:not([active]) {
  color: #E2E7E9;
  background: transparent;
  box-shadow: 0 0 0 2px #E2E7E9 inset;
}
.theme-default-dark matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=blue-grey] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=blue-grey] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(226, 231, 233, 0.2);
}
.theme-default-dark matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=primary] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=primary] .button-group a[matcha-button]:not([active]) {
  color: #8A9EA8;
  background: transparent;
  box-shadow: 0 0 0 2px #8A9EA8 inset;
}
.theme-default-dark matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=primary] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=primary] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(138, 158, 168, 0.2);
}
.theme-default-dark matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=accent] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=accent] .button-group a[matcha-button]:not([active]) {
  color: #2979ff;
  background: transparent;
  box-shadow: 0 0 0 2px #2979ff inset;
}
.theme-default-dark matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=accent] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=accent] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(41, 121, 255, 0.2);
}
.theme-default-dark matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=warn] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=warn] .button-group a[matcha-button]:not([active]) {
  color: #f29d9d;
  background: transparent;
  box-shadow: 0 0 0 2px #f29d9d inset;
}
.theme-default-dark matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=warn] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=warn] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(242, 157, 157, 0.2);
}
.theme-default-dark matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=disabled] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=disabled] .button-group a[matcha-button]:not([active]) {
  color: #292929;
  background: transparent;
  box-shadow: 0 0 0 2px #292929 inset;
}
.theme-default-dark matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=disabled] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=outline]:not([disabled=true])[inactivecolor=disabled] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(10, 10, 10, 0.5);
}
.theme-default-dark matcha-button-toggle[inactivetype=outline][disabled] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=outline][disabled] .button-group a[matcha-button]:not([active]), .theme-default-dark matcha-button-toggle[inactivetype=outline][disabled]:not([disabled=false]) .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=outline][disabled]:not([disabled=false]) .button-group a[matcha-button]:not([active]), .theme-default-dark matcha-button-toggle[inactivetype=outline][disabled=true] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=outline][disabled=true] .button-group a[matcha-button]:not([active]) {
  background: transparent;
  color: #292929;
  box-shadow: 0 0 0 2px inset;
  pointer-events: none;
}
.theme-default-dark matcha-button-toggle[inactivetype=alpha][inactivecolor=red] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=alpha][inactivecolor=red] .button-group a[matcha-button]:not([active]) {
  color: #f7c4c4;
  background: rgba(247, 196, 196, 0.2);
  box-shadow: 0 0 0 0px;
}
.theme-default-dark matcha-button-toggle[inactivetype=alpha][inactivecolor=red] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=alpha][inactivecolor=red] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(0, 0, 0, 0.2);
}
.theme-default-dark matcha-button-toggle[inactivetype=alpha][inactivecolor=pink] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=alpha][inactivecolor=pink] .button-group a[matcha-button]:not([active]) {
  color: #f8bbd0;
  background: rgba(248, 187, 208, 0.2);
  box-shadow: 0 0 0 0px;
}
.theme-default-dark matcha-button-toggle[inactivetype=alpha][inactivecolor=pink] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=alpha][inactivecolor=pink] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(0, 0, 0, 0.2);
}
.theme-default-dark matcha-button-toggle[inactivetype=alpha][inactivecolor=purple] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=alpha][inactivecolor=purple] .button-group a[matcha-button]:not([active]) {
  color: #e1bee7;
  background: rgba(225, 190, 231, 0.2);
  box-shadow: 0 0 0 0px;
}
.theme-default-dark matcha-button-toggle[inactivetype=alpha][inactivecolor=purple] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=alpha][inactivecolor=purple] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(0, 0, 0, 0.2);
}
.theme-default-dark matcha-button-toggle[inactivetype=alpha][inactivecolor=deep-purple] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=alpha][inactivecolor=deep-purple] .button-group a[matcha-button]:not([active]) {
  color: #d1c4e9;
  background: rgba(209, 196, 233, 0.2);
  box-shadow: 0 0 0 0px;
}
.theme-default-dark matcha-button-toggle[inactivetype=alpha][inactivecolor=deep-purple] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=alpha][inactivecolor=deep-purple] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(0, 0, 0, 0.2);
}
.theme-default-dark matcha-button-toggle[inactivetype=alpha][inactivecolor=indigo] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=alpha][inactivecolor=indigo] .button-group a[matcha-button]:not([active]) {
  color: #c5cae9;
  background: rgba(197, 202, 233, 0.2);
  box-shadow: 0 0 0 0px;
}
.theme-default-dark matcha-button-toggle[inactivetype=alpha][inactivecolor=indigo] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=alpha][inactivecolor=indigo] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(0, 0, 0, 0.2);
}
.theme-default-dark matcha-button-toggle[inactivetype=alpha][inactivecolor=blue] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=alpha][inactivecolor=blue] .button-group a[matcha-button]:not([active]) {
  color: #bccef4;
  background: rgba(188, 206, 244, 0.2);
  box-shadow: 0 0 0 0px;
}
.theme-default-dark matcha-button-toggle[inactivetype=alpha][inactivecolor=blue] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=alpha][inactivecolor=blue] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(0, 0, 0, 0.2);
}
.theme-default-dark matcha-button-toggle[inactivetype=alpha][inactivecolor=light-blue] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=alpha][inactivecolor=light-blue] .button-group a[matcha-button]:not([active]) {
  color: #b3e5fc;
  background: rgba(179, 229, 252, 0.2);
  box-shadow: 0 0 0 0px;
}
.theme-default-dark matcha-button-toggle[inactivetype=alpha][inactivecolor=light-blue] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=alpha][inactivecolor=light-blue] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(0, 0, 0, 0.2);
}
.theme-default-dark matcha-button-toggle[inactivetype=alpha][inactivecolor=cyan] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=alpha][inactivecolor=cyan] .button-group a[matcha-button]:not([active]) {
  color: #b2ebf2;
  background: rgba(178, 235, 242, 0.2);
  box-shadow: 0 0 0 0px;
}
.theme-default-dark matcha-button-toggle[inactivetype=alpha][inactivecolor=cyan] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=alpha][inactivecolor=cyan] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(0, 0, 0, 0.2);
}
.theme-default-dark matcha-button-toggle[inactivetype=alpha][inactivecolor=teal] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=alpha][inactivecolor=teal] .button-group a[matcha-button]:not([active]) {
  color: #b2dfdb;
  background: rgba(178, 223, 219, 0.2);
  box-shadow: 0 0 0 0px;
}
.theme-default-dark matcha-button-toggle[inactivetype=alpha][inactivecolor=teal] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=alpha][inactivecolor=teal] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(0, 0, 0, 0.2);
}
.theme-default-dark matcha-button-toggle[inactivetype=alpha][inactivecolor=green] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=alpha][inactivecolor=green] .button-group a[matcha-button]:not([active]) {
  color: #b8dec8;
  background: rgba(184, 222, 200, 0.2);
  box-shadow: 0 0 0 0px;
}
.theme-default-dark matcha-button-toggle[inactivetype=alpha][inactivecolor=green] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=alpha][inactivecolor=green] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(0, 0, 0, 0.2);
}
.theme-default-dark matcha-button-toggle[inactivetype=alpha][inactivecolor=light-green] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=alpha][inactivecolor=light-green] .button-group a[matcha-button]:not([active]) {
  color: #D4F4C0;
  background: rgba(212, 244, 192, 0.2);
  box-shadow: 0 0 0 0px;
}
.theme-default-dark matcha-button-toggle[inactivetype=alpha][inactivecolor=light-green] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=alpha][inactivecolor=light-green] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(0, 0, 0, 0.2);
}
.theme-default-dark matcha-button-toggle[inactivetype=alpha][inactivecolor=lime] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=alpha][inactivecolor=lime] .button-group a[matcha-button]:not([active]) {
  color: #dbebb3;
  background: rgba(219, 235, 179, 0.2);
  box-shadow: 0 0 0 0px;
}
.theme-default-dark matcha-button-toggle[inactivetype=alpha][inactivecolor=lime] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=alpha][inactivecolor=lime] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(0, 0, 0, 0.2);
}
.theme-default-dark matcha-button-toggle[inactivetype=alpha][inactivecolor=yellow] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=alpha][inactivecolor=yellow] .button-group a[matcha-button]:not([active]) {
  color: #f8edb3;
  background: rgba(248, 237, 179, 0.2);
  box-shadow: 0 0 0 0px;
}
.theme-default-dark matcha-button-toggle[inactivetype=alpha][inactivecolor=yellow] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=alpha][inactivecolor=yellow] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(0, 0, 0, 0.2);
}
.theme-default-dark matcha-button-toggle[inactivetype=alpha][inactivecolor=amber] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=alpha][inactivecolor=amber] .button-group a[matcha-button]:not([active]) {
  color: #fee4ba;
  background: rgba(254, 228, 186, 0.2);
  box-shadow: 0 0 0 0px;
}
.theme-default-dark matcha-button-toggle[inactivetype=alpha][inactivecolor=amber] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=alpha][inactivecolor=amber] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(0, 0, 0, 0.2);
}
.theme-default-dark matcha-button-toggle[inactivetype=alpha][inactivecolor=orange] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=alpha][inactivecolor=orange] .button-group a[matcha-button]:not([active]) {
  color: #fdd7b9;
  background: rgba(253, 215, 185, 0.2);
  box-shadow: 0 0 0 0px;
}
.theme-default-dark matcha-button-toggle[inactivetype=alpha][inactivecolor=orange] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=alpha][inactivecolor=orange] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(0, 0, 0, 0.2);
}
.theme-default-dark matcha-button-toggle[inactivetype=alpha][inactivecolor=deep-orange] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=alpha][inactivecolor=deep-orange] .button-group a[matcha-button]:not([active]) {
  color: #ffccbc;
  background: rgba(255, 204, 188, 0.2);
  box-shadow: 0 0 0 0px;
}
.theme-default-dark matcha-button-toggle[inactivetype=alpha][inactivecolor=deep-orange] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=alpha][inactivecolor=deep-orange] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(0, 0, 0, 0.2);
}
.theme-default-dark matcha-button-toggle[inactivetype=alpha][inactivecolor=brown] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=alpha][inactivecolor=brown] .button-group a[matcha-button]:not([active]) {
  color: #d7ccc8;
  background: rgba(215, 204, 200, 0.2);
  box-shadow: 0 0 0 0px;
}
.theme-default-dark matcha-button-toggle[inactivetype=alpha][inactivecolor=brown] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=alpha][inactivecolor=brown] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(0, 0, 0, 0.2);
}
.theme-default-dark matcha-button-toggle[inactivetype=alpha][inactivecolor=grey] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=alpha][inactivecolor=grey] .button-group a[matcha-button]:not([active]) {
  color: #DEE3E6;
  background: rgba(222, 227, 230, 0.2);
  box-shadow: 0 0 0 0px;
}
.theme-default-dark matcha-button-toggle[inactivetype=alpha][inactivecolor=grey] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=alpha][inactivecolor=grey] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(0, 0, 0, 0.2);
}
.theme-default-dark matcha-button-toggle[inactivetype=alpha][inactivecolor=blue-grey] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=alpha][inactivecolor=blue-grey] .button-group a[matcha-button]:not([active]) {
  color: #E2E7E9;
  background: rgba(226, 231, 233, 0.2);
  box-shadow: 0 0 0 0px;
}
.theme-default-dark matcha-button-toggle[inactivetype=alpha][inactivecolor=blue-grey] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=alpha][inactivecolor=blue-grey] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(0, 0, 0, 0.2);
}
.theme-default-dark matcha-button-toggle[inactivetype=alpha][inactivecolor=primary] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=alpha][inactivecolor=primary] .button-group a[matcha-button]:not([active]) {
  color: #8A9EA8;
  background: rgba(138, 158, 168, 0.2);
  box-shadow: 0 0 0 0px;
}
.theme-default-dark matcha-button-toggle[inactivetype=alpha][inactivecolor=primary] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=alpha][inactivecolor=primary] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(255, 255, 255, 0.2);
}
.theme-default-dark matcha-button-toggle[inactivetype=alpha][inactivecolor=accent] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=alpha][inactivecolor=accent] .button-group a[matcha-button]:not([active]) {
  color: #2979ff;
  background: rgba(41, 121, 255, 0.2);
  box-shadow: 0 0 0 0px;
}
.theme-default-dark matcha-button-toggle[inactivetype=alpha][inactivecolor=accent] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=alpha][inactivecolor=accent] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(255, 255, 255, 0.2);
}
.theme-default-dark matcha-button-toggle[inactivetype=alpha][inactivecolor=warn] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=alpha][inactivecolor=warn] .button-group a[matcha-button]:not([active]) {
  color: #f29d9d;
  background: rgba(242, 157, 157, 0.2);
  box-shadow: 0 0 0 0px;
}
.theme-default-dark matcha-button-toggle[inactivetype=alpha][inactivecolor=warn] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=alpha][inactivecolor=warn] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(0, 0, 0, 0.2);
}
.theme-default-dark matcha-button-toggle[inactivetype=alpha][inactivecolor=disabled] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=alpha][inactivecolor=disabled] .button-group a[matcha-button]:not([active]) {
  color: #292929;
  background: rgba(10, 10, 10, 0.5);
  box-shadow: 0 0 0 0px;
}
.theme-default-dark matcha-button-toggle[inactivetype=alpha][inactivecolor=disabled] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=alpha][inactivecolor=disabled] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(33, 40, 44, 0.5);
}
.theme-default-dark matcha-button-toggle[inactivetype=alpha][disabled] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=alpha][disabled] .button-group a[matcha-button]:not([active]), .theme-default-dark matcha-button-toggle[inactivetype=alpha][disabled]:not([disabled=false]) .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=alpha][disabled]:not([disabled=false]) .button-group a[matcha-button]:not([active]), .theme-default-dark matcha-button-toggle[inactivetype=alpha][disabled=true] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=alpha][disabled=true] .button-group a[matcha-button]:not([active]) {
  background: rgba(10, 10, 10, 0.5);
  color: #292929;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-dark matcha-button-toggle[inactivetype=link][inactivecolor=red] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=link][inactivecolor=red] .button-group a[matcha-button]:not([active]) {
  background: transparent;
  color: #f7c4c4;
  box-shadow: 0 0 0 0px;
}
.theme-default-dark matcha-button-toggle[inactivetype=link][inactivecolor=red] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=link][inactivecolor=red] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(247, 196, 196, 0.2);
}
.theme-default-dark matcha-button-toggle[inactivetype=link][inactivecolor=pink] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=link][inactivecolor=pink] .button-group a[matcha-button]:not([active]) {
  background: transparent;
  color: #f8bbd0;
  box-shadow: 0 0 0 0px;
}
.theme-default-dark matcha-button-toggle[inactivetype=link][inactivecolor=pink] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=link][inactivecolor=pink] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(248, 187, 208, 0.2);
}
.theme-default-dark matcha-button-toggle[inactivetype=link][inactivecolor=purple] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=link][inactivecolor=purple] .button-group a[matcha-button]:not([active]) {
  background: transparent;
  color: #e1bee7;
  box-shadow: 0 0 0 0px;
}
.theme-default-dark matcha-button-toggle[inactivetype=link][inactivecolor=purple] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=link][inactivecolor=purple] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(225, 190, 231, 0.2);
}
.theme-default-dark matcha-button-toggle[inactivetype=link][inactivecolor=deep-purple] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=link][inactivecolor=deep-purple] .button-group a[matcha-button]:not([active]) {
  background: transparent;
  color: #d1c4e9;
  box-shadow: 0 0 0 0px;
}
.theme-default-dark matcha-button-toggle[inactivetype=link][inactivecolor=deep-purple] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=link][inactivecolor=deep-purple] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(209, 196, 233, 0.2);
}
.theme-default-dark matcha-button-toggle[inactivetype=link][inactivecolor=indigo] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=link][inactivecolor=indigo] .button-group a[matcha-button]:not([active]) {
  background: transparent;
  color: #c5cae9;
  box-shadow: 0 0 0 0px;
}
.theme-default-dark matcha-button-toggle[inactivetype=link][inactivecolor=indigo] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=link][inactivecolor=indigo] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(197, 202, 233, 0.2);
}
.theme-default-dark matcha-button-toggle[inactivetype=link][inactivecolor=blue] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=link][inactivecolor=blue] .button-group a[matcha-button]:not([active]) {
  background: transparent;
  color: #bccef4;
  box-shadow: 0 0 0 0px;
}
.theme-default-dark matcha-button-toggle[inactivetype=link][inactivecolor=blue] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=link][inactivecolor=blue] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(188, 206, 244, 0.2);
}
.theme-default-dark matcha-button-toggle[inactivetype=link][inactivecolor=light-blue] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=link][inactivecolor=light-blue] .button-group a[matcha-button]:not([active]) {
  background: transparent;
  color: #b3e5fc;
  box-shadow: 0 0 0 0px;
}
.theme-default-dark matcha-button-toggle[inactivetype=link][inactivecolor=light-blue] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=link][inactivecolor=light-blue] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(179, 229, 252, 0.2);
}
.theme-default-dark matcha-button-toggle[inactivetype=link][inactivecolor=cyan] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=link][inactivecolor=cyan] .button-group a[matcha-button]:not([active]) {
  background: transparent;
  color: #b2ebf2;
  box-shadow: 0 0 0 0px;
}
.theme-default-dark matcha-button-toggle[inactivetype=link][inactivecolor=cyan] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=link][inactivecolor=cyan] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(178, 235, 242, 0.2);
}
.theme-default-dark matcha-button-toggle[inactivetype=link][inactivecolor=teal] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=link][inactivecolor=teal] .button-group a[matcha-button]:not([active]) {
  background: transparent;
  color: #b2dfdb;
  box-shadow: 0 0 0 0px;
}
.theme-default-dark matcha-button-toggle[inactivetype=link][inactivecolor=teal] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=link][inactivecolor=teal] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(178, 223, 219, 0.2);
}
.theme-default-dark matcha-button-toggle[inactivetype=link][inactivecolor=green] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=link][inactivecolor=green] .button-group a[matcha-button]:not([active]) {
  background: transparent;
  color: #b8dec8;
  box-shadow: 0 0 0 0px;
}
.theme-default-dark matcha-button-toggle[inactivetype=link][inactivecolor=green] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=link][inactivecolor=green] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(184, 222, 200, 0.2);
}
.theme-default-dark matcha-button-toggle[inactivetype=link][inactivecolor=light-green] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=link][inactivecolor=light-green] .button-group a[matcha-button]:not([active]) {
  background: transparent;
  color: #D4F4C0;
  box-shadow: 0 0 0 0px;
}
.theme-default-dark matcha-button-toggle[inactivetype=link][inactivecolor=light-green] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=link][inactivecolor=light-green] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(212, 244, 192, 0.2);
}
.theme-default-dark matcha-button-toggle[inactivetype=link][inactivecolor=lime] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=link][inactivecolor=lime] .button-group a[matcha-button]:not([active]) {
  background: transparent;
  color: #dbebb3;
  box-shadow: 0 0 0 0px;
}
.theme-default-dark matcha-button-toggle[inactivetype=link][inactivecolor=lime] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=link][inactivecolor=lime] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(219, 235, 179, 0.2);
}
.theme-default-dark matcha-button-toggle[inactivetype=link][inactivecolor=yellow] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=link][inactivecolor=yellow] .button-group a[matcha-button]:not([active]) {
  background: transparent;
  color: #f8edb3;
  box-shadow: 0 0 0 0px;
}
.theme-default-dark matcha-button-toggle[inactivetype=link][inactivecolor=yellow] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=link][inactivecolor=yellow] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(248, 237, 179, 0.2);
}
.theme-default-dark matcha-button-toggle[inactivetype=link][inactivecolor=amber] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=link][inactivecolor=amber] .button-group a[matcha-button]:not([active]) {
  background: transparent;
  color: #fee4ba;
  box-shadow: 0 0 0 0px;
}
.theme-default-dark matcha-button-toggle[inactivetype=link][inactivecolor=amber] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=link][inactivecolor=amber] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(254, 228, 186, 0.2);
}
.theme-default-dark matcha-button-toggle[inactivetype=link][inactivecolor=orange] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=link][inactivecolor=orange] .button-group a[matcha-button]:not([active]) {
  background: transparent;
  color: #fdd7b9;
  box-shadow: 0 0 0 0px;
}
.theme-default-dark matcha-button-toggle[inactivetype=link][inactivecolor=orange] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=link][inactivecolor=orange] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(253, 215, 185, 0.2);
}
.theme-default-dark matcha-button-toggle[inactivetype=link][inactivecolor=deep-orange] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=link][inactivecolor=deep-orange] .button-group a[matcha-button]:not([active]) {
  background: transparent;
  color: #ffccbc;
  box-shadow: 0 0 0 0px;
}
.theme-default-dark matcha-button-toggle[inactivetype=link][inactivecolor=deep-orange] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=link][inactivecolor=deep-orange] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(255, 204, 188, 0.2);
}
.theme-default-dark matcha-button-toggle[inactivetype=link][inactivecolor=brown] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=link][inactivecolor=brown] .button-group a[matcha-button]:not([active]) {
  background: transparent;
  color: #d7ccc8;
  box-shadow: 0 0 0 0px;
}
.theme-default-dark matcha-button-toggle[inactivetype=link][inactivecolor=brown] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=link][inactivecolor=brown] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(215, 204, 200, 0.2);
}
.theme-default-dark matcha-button-toggle[inactivetype=link][inactivecolor=grey] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=link][inactivecolor=grey] .button-group a[matcha-button]:not([active]) {
  background: transparent;
  color: #DEE3E6;
  box-shadow: 0 0 0 0px;
}
.theme-default-dark matcha-button-toggle[inactivetype=link][inactivecolor=grey] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=link][inactivecolor=grey] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(222, 227, 230, 0.2);
}
.theme-default-dark matcha-button-toggle[inactivetype=link][inactivecolor=blue-grey] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=link][inactivecolor=blue-grey] .button-group a[matcha-button]:not([active]) {
  background: transparent;
  color: #E2E7E9;
  box-shadow: 0 0 0 0px;
}
.theme-default-dark matcha-button-toggle[inactivetype=link][inactivecolor=blue-grey] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=link][inactivecolor=blue-grey] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(226, 231, 233, 0.2);
}
.theme-default-dark matcha-button-toggle[inactivetype=link][inactivecolor=primary] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=link][inactivecolor=primary] .button-group a[matcha-button]:not([active]) {
  background: transparent;
  color: #8A9EA8;
  box-shadow: 0 0 0 0px;
}
.theme-default-dark matcha-button-toggle[inactivetype=link][inactivecolor=primary] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=link][inactivecolor=primary] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(138, 158, 168, 0.2);
}
.theme-default-dark matcha-button-toggle[inactivetype=link][inactivecolor=accent] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=link][inactivecolor=accent] .button-group a[matcha-button]:not([active]) {
  background: transparent;
  color: #2979ff;
  box-shadow: 0 0 0 0px;
}
.theme-default-dark matcha-button-toggle[inactivetype=link][inactivecolor=accent] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=link][inactivecolor=accent] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(41, 121, 255, 0.2);
}
.theme-default-dark matcha-button-toggle[inactivetype=link][inactivecolor=warn] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=link][inactivecolor=warn] .button-group a[matcha-button]:not([active]) {
  background: transparent;
  color: #f29d9d;
  box-shadow: 0 0 0 0px;
}
.theme-default-dark matcha-button-toggle[inactivetype=link][inactivecolor=warn] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=link][inactivecolor=warn] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(242, 157, 157, 0.2);
}
.theme-default-dark matcha-button-toggle[inactivetype=link][inactivecolor=disabled] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=link][inactivecolor=disabled] .button-group a[matcha-button]:not([active]) {
  background: transparent;
  color: #292929;
  box-shadow: 0 0 0 0px;
}
.theme-default-dark matcha-button-toggle[inactivetype=link][inactivecolor=disabled] .button-group button[matcha-button]:not([active]) .ripple,
.theme-default-dark matcha-button-toggle[inactivetype=link][inactivecolor=disabled] .button-group a[matcha-button]:not([active]) .ripple {
  background: rgba(10, 10, 10, 0.5);
}
.theme-default-dark matcha-button-toggle[inactivetype=link][disabled] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=link][disabled] .button-group a[matcha-button]:not([active]), .theme-default-dark matcha-button-toggle[inactivetype=link][disabled]:not([disabled=false]) .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=link][disabled]:not([disabled=false]) .button-group a[matcha-button]:not([active]), .theme-default-dark matcha-button-toggle[inactivetype=link][disabled=true] .button-group button[matcha-button]:not([active]),
.theme-default-dark matcha-button-toggle[inactivetype=link][disabled=true] .button-group a[matcha-button]:not([active]) {
  background: transparent;
  color: #292929;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-dark matcha-button-toggle[disabled] .button-group button[matcha-button][active],
.theme-default-dark matcha-button-toggle[disabled] .button-group a[matcha-button][active], .theme-default-dark matcha-button-toggle[disabled]:not([disabled=false]) .button-group button[matcha-button][active],
.theme-default-dark matcha-button-toggle[disabled]:not([disabled=false]) .button-group a[matcha-button][active], .theme-default-dark matcha-button-toggle[disabled=true] .button-group button[matcha-button][active],
.theme-default-dark matcha-button-toggle[disabled=true] .button-group a[matcha-button][active] {
  background: #292929;
  color: rgba(226, 231, 233, 0.5);
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-dark matcha-button-toggle[disabled] .button-group button[matcha-button][active][outline], .theme-default-dark matcha-button-toggle[disabled] .button-group button[matcha-button][active][outline]:not([outline=false]), .theme-default-dark matcha-button-toggle[disabled] .button-group button[matcha-button][active][outline=true],
.theme-default-dark matcha-button-toggle[disabled] .button-group a[matcha-button][active][outline],
.theme-default-dark matcha-button-toggle[disabled] .button-group a[matcha-button][active][outline]:not([outline=false]),
.theme-default-dark matcha-button-toggle[disabled] .button-group a[matcha-button][active][outline=true], .theme-default-dark matcha-button-toggle[disabled]:not([disabled=false]) .button-group button[matcha-button][active][outline], .theme-default-dark matcha-button-toggle[disabled]:not([disabled=false]) .button-group button[matcha-button][active][outline]:not([outline=false]), .theme-default-dark matcha-button-toggle[disabled]:not([disabled=false]) .button-group button[matcha-button][active][outline=true],
.theme-default-dark matcha-button-toggle[disabled]:not([disabled=false]) .button-group a[matcha-button][active][outline],
.theme-default-dark matcha-button-toggle[disabled]:not([disabled=false]) .button-group a[matcha-button][active][outline]:not([outline=false]),
.theme-default-dark matcha-button-toggle[disabled]:not([disabled=false]) .button-group a[matcha-button][active][outline=true], .theme-default-dark matcha-button-toggle[disabled=true] .button-group button[matcha-button][active][outline], .theme-default-dark matcha-button-toggle[disabled=true] .button-group button[matcha-button][active][outline]:not([outline=false]), .theme-default-dark matcha-button-toggle[disabled=true] .button-group button[matcha-button][active][outline=true],
.theme-default-dark matcha-button-toggle[disabled=true] .button-group a[matcha-button][active][outline],
.theme-default-dark matcha-button-toggle[disabled=true] .button-group a[matcha-button][active][outline]:not([outline=false]),
.theme-default-dark matcha-button-toggle[disabled=true] .button-group a[matcha-button][active][outline=true] {
  background: transparent;
  color: #292929;
  box-shadow: 0 0 0 2px inset;
  pointer-events: none;
}
.theme-default-dark matcha-button-toggle[disabled] .button-group button[matcha-button][active][basic], .theme-default-dark matcha-button-toggle[disabled] .button-group button[matcha-button][active][basic]:not([basic=false]), .theme-default-dark matcha-button-toggle[disabled] .button-group button[matcha-button][active][basic=true],
.theme-default-dark matcha-button-toggle[disabled] .button-group a[matcha-button][active][basic],
.theme-default-dark matcha-button-toggle[disabled] .button-group a[matcha-button][active][basic]:not([basic=false]),
.theme-default-dark matcha-button-toggle[disabled] .button-group a[matcha-button][active][basic=true], .theme-default-dark matcha-button-toggle[disabled]:not([disabled=false]) .button-group button[matcha-button][active][basic], .theme-default-dark matcha-button-toggle[disabled]:not([disabled=false]) .button-group button[matcha-button][active][basic]:not([basic=false]), .theme-default-dark matcha-button-toggle[disabled]:not([disabled=false]) .button-group button[matcha-button][active][basic=true],
.theme-default-dark matcha-button-toggle[disabled]:not([disabled=false]) .button-group a[matcha-button][active][basic],
.theme-default-dark matcha-button-toggle[disabled]:not([disabled=false]) .button-group a[matcha-button][active][basic]:not([basic=false]),
.theme-default-dark matcha-button-toggle[disabled]:not([disabled=false]) .button-group a[matcha-button][active][basic=true], .theme-default-dark matcha-button-toggle[disabled=true] .button-group button[matcha-button][active][basic], .theme-default-dark matcha-button-toggle[disabled=true] .button-group button[matcha-button][active][basic]:not([basic=false]), .theme-default-dark matcha-button-toggle[disabled=true] .button-group button[matcha-button][active][basic=true],
.theme-default-dark matcha-button-toggle[disabled=true] .button-group a[matcha-button][active][basic],
.theme-default-dark matcha-button-toggle[disabled=true] .button-group a[matcha-button][active][basic]:not([basic=false]),
.theme-default-dark matcha-button-toggle[disabled=true] .button-group a[matcha-button][active][basic=true] {
  background: #141414;
  color: #292929;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-dark matcha-button-toggle[disabled] .button-group button[matcha-button][active][alpha], .theme-default-dark matcha-button-toggle[disabled] .button-group button[matcha-button][active][alpha]:not([alpha=false]), .theme-default-dark matcha-button-toggle[disabled] .button-group button[matcha-button][active][alpha=true],
.theme-default-dark matcha-button-toggle[disabled] .button-group a[matcha-button][active][alpha],
.theme-default-dark matcha-button-toggle[disabled] .button-group a[matcha-button][active][alpha]:not([alpha=false]),
.theme-default-dark matcha-button-toggle[disabled] .button-group a[matcha-button][active][alpha=true], .theme-default-dark matcha-button-toggle[disabled]:not([disabled=false]) .button-group button[matcha-button][active][alpha], .theme-default-dark matcha-button-toggle[disabled]:not([disabled=false]) .button-group button[matcha-button][active][alpha]:not([alpha=false]), .theme-default-dark matcha-button-toggle[disabled]:not([disabled=false]) .button-group button[matcha-button][active][alpha=true],
.theme-default-dark matcha-button-toggle[disabled]:not([disabled=false]) .button-group a[matcha-button][active][alpha],
.theme-default-dark matcha-button-toggle[disabled]:not([disabled=false]) .button-group a[matcha-button][active][alpha]:not([alpha=false]),
.theme-default-dark matcha-button-toggle[disabled]:not([disabled=false]) .button-group a[matcha-button][active][alpha=true], .theme-default-dark matcha-button-toggle[disabled=true] .button-group button[matcha-button][active][alpha], .theme-default-dark matcha-button-toggle[disabled=true] .button-group button[matcha-button][active][alpha]:not([alpha=false]), .theme-default-dark matcha-button-toggle[disabled=true] .button-group button[matcha-button][active][alpha=true],
.theme-default-dark matcha-button-toggle[disabled=true] .button-group a[matcha-button][active][alpha],
.theme-default-dark matcha-button-toggle[disabled=true] .button-group a[matcha-button][active][alpha]:not([alpha=false]),
.theme-default-dark matcha-button-toggle[disabled=true] .button-group a[matcha-button][active][alpha=true] {
  background: rgba(10, 10, 10, 0.5);
  color: #292929;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-dark matcha-button-toggle[disabled] .button-group button[matcha-button][active][link], .theme-default-dark matcha-button-toggle[disabled] .button-group button[matcha-button][active][link]:not([link=false]), .theme-default-dark matcha-button-toggle[disabled] .button-group button[matcha-button][active][link=true],
.theme-default-dark matcha-button-toggle[disabled] .button-group a[matcha-button][active][link],
.theme-default-dark matcha-button-toggle[disabled] .button-group a[matcha-button][active][link]:not([link=false]),
.theme-default-dark matcha-button-toggle[disabled] .button-group a[matcha-button][active][link=true], .theme-default-dark matcha-button-toggle[disabled]:not([disabled=false]) .button-group button[matcha-button][active][link], .theme-default-dark matcha-button-toggle[disabled]:not([disabled=false]) .button-group button[matcha-button][active][link]:not([link=false]), .theme-default-dark matcha-button-toggle[disabled]:not([disabled=false]) .button-group button[matcha-button][active][link=true],
.theme-default-dark matcha-button-toggle[disabled]:not([disabled=false]) .button-group a[matcha-button][active][link],
.theme-default-dark matcha-button-toggle[disabled]:not([disabled=false]) .button-group a[matcha-button][active][link]:not([link=false]),
.theme-default-dark matcha-button-toggle[disabled]:not([disabled=false]) .button-group a[matcha-button][active][link=true], .theme-default-dark matcha-button-toggle[disabled=true] .button-group button[matcha-button][active][link], .theme-default-dark matcha-button-toggle[disabled=true] .button-group button[matcha-button][active][link]:not([link=false]), .theme-default-dark matcha-button-toggle[disabled=true] .button-group button[matcha-button][active][link=true],
.theme-default-dark matcha-button-toggle[disabled=true] .button-group a[matcha-button][active][link],
.theme-default-dark matcha-button-toggle[disabled=true] .button-group a[matcha-button][active][link]:not([link=false]),
.theme-default-dark matcha-button-toggle[disabled=true] .button-group a[matcha-button][active][link=true] {
  background: transparent;
  color: #292929;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button]:not([color]) .ripple,
.theme-default-dark a[matcha-button]:not([color]) .ripple {
  background: rgba(226, 231, 233, 0.2);
}
.theme-default-dark button[matcha-button][color=red][outline]:not([outline=false]) .ripple, .theme-default-dark button[matcha-button][color=red][basic]:not([basic=false]) .ripple,
.theme-default-dark a[matcha-button][color=red][outline]:not([outline=false]) .ripple,
.theme-default-dark a[matcha-button][color=red][basic]:not([basic=false]) .ripple {
  background: rgba(247, 196, 196, 0.2);
}
.theme-default-dark button[matcha-button][color=red][alpha]:not([alpha=false]),
.theme-default-dark a[matcha-button][color=red][alpha]:not([alpha=false]) {
  background: rgba(247, 196, 196, 0.2);
  color: #f7c4c4;
}
.theme-default-dark button[matcha-button][color=red][alpha]:not([alpha=false]) matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=red][alpha]:not([alpha=false]) matcha-divider .border-color-disabled {
  border-color: #f7c4c4 !important;
  opacity: 0.3 !important;
}
.theme-default-dark button[matcha-button][color=red][outline]:not([outline=false]), .theme-default-dark button[matcha-button][color=red][link]:not([link=false]), .theme-default-dark button[matcha-button][color=red][basic]:not([basic=false]),
.theme-default-dark a[matcha-button][color=red][outline]:not([outline=false]),
.theme-default-dark a[matcha-button][color=red][link]:not([link=false]),
.theme-default-dark a[matcha-button][color=red][basic]:not([basic=false]) {
  color: #f7c4c4;
}
.theme-default-dark button[matcha-button][color=red][outline]:not([outline=false]) matcha-divider .border-color-disabled, .theme-default-dark button[matcha-button][color=red][link]:not([link=false]) matcha-divider .border-color-disabled, .theme-default-dark button[matcha-button][color=red][basic]:not([basic=false]) matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=red][outline]:not([outline=false]) matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=red][link]:not([link=false]) matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=red][basic]:not([basic=false]) matcha-divider .border-color-disabled {
  border-color: #f7c4c4 !important;
  opacity: 0.3 !important;
}
.theme-default-dark button[matcha-button][color=red],
.theme-default-dark a[matcha-button][color=red] {
  background: #f7c4c4;
  color: rgba(0, 0, 0, 0.87);
}
.theme-default-dark button[matcha-button][color=red] matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=red] matcha-divider .border-color-disabled {
  border-color: rgba(0, 0, 0, 0.87) !important;
  opacity: 0.3 !important;
}
.theme-default-dark button[matcha-button][color=red] .ripple,
.theme-default-dark a[matcha-button][color=red] .ripple {
  background: rgba(0, 0, 0, 0.2);
}
.theme-default-dark button[matcha-button][disabled][solid], .theme-default-dark button[matcha-button][disabled][solid]:not([solid=false]), .theme-default-dark button[matcha-button][disabled][solid=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[solid], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[solid]:not([solid=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[solid=true], .theme-default-dark button[matcha-button][disabled=true][solid], .theme-default-dark button[matcha-button][disabled=true][solid]:not([solid=false]), .theme-default-dark button[matcha-button][disabled=true][solid=true],
.theme-default-dark a[matcha-button][disabled][solid],
.theme-default-dark a[matcha-button][disabled][solid]:not([solid=false]),
.theme-default-dark a[matcha-button][disabled][solid=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[solid],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[solid]:not([solid=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[solid=true],
.theme-default-dark a[matcha-button][disabled=true][solid],
.theme-default-dark a[matcha-button][disabled=true][solid]:not([solid=false]),
.theme-default-dark a[matcha-button][disabled=true][solid=true] {
  background: #292929;
  color: rgba(226, 231, 233, 0.5);
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][disabled][outline], .theme-default-dark button[matcha-button][disabled][outline]:not([outline=false]), .theme-default-dark button[matcha-button][disabled][outline=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[outline], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[outline]:not([outline=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[outline=true], .theme-default-dark button[matcha-button][disabled=true][outline], .theme-default-dark button[matcha-button][disabled=true][outline]:not([outline=false]), .theme-default-dark button[matcha-button][disabled=true][outline=true],
.theme-default-dark a[matcha-button][disabled][outline],
.theme-default-dark a[matcha-button][disabled][outline]:not([outline=false]),
.theme-default-dark a[matcha-button][disabled][outline=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[outline],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[outline]:not([outline=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[outline=true],
.theme-default-dark a[matcha-button][disabled=true][outline],
.theme-default-dark a[matcha-button][disabled=true][outline]:not([outline=false]),
.theme-default-dark a[matcha-button][disabled=true][outline=true] {
  background: transparent;
  color: #292929;
  box-shadow: 0 0 0 2px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][disabled][basic], .theme-default-dark button[matcha-button][disabled][basic]:not([basic=false]), .theme-default-dark button[matcha-button][disabled][basic=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[basic], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[basic]:not([basic=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[basic=true], .theme-default-dark button[matcha-button][disabled=true][basic], .theme-default-dark button[matcha-button][disabled=true][basic]:not([basic=false]), .theme-default-dark button[matcha-button][disabled=true][basic=true],
.theme-default-dark a[matcha-button][disabled][basic],
.theme-default-dark a[matcha-button][disabled][basic]:not([basic=false]),
.theme-default-dark a[matcha-button][disabled][basic=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[basic],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[basic]:not([basic=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[basic=true],
.theme-default-dark a[matcha-button][disabled=true][basic],
.theme-default-dark a[matcha-button][disabled=true][basic]:not([basic=false]),
.theme-default-dark a[matcha-button][disabled=true][basic=true] {
  background: #141414;
  color: #292929;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][disabled][alpha], .theme-default-dark button[matcha-button][disabled][alpha]:not([alpha=false]), .theme-default-dark button[matcha-button][disabled][alpha=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[alpha], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[alpha]:not([alpha=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[alpha=true], .theme-default-dark button[matcha-button][disabled=true][alpha], .theme-default-dark button[matcha-button][disabled=true][alpha]:not([alpha=false]), .theme-default-dark button[matcha-button][disabled=true][alpha=true],
.theme-default-dark a[matcha-button][disabled][alpha],
.theme-default-dark a[matcha-button][disabled][alpha]:not([alpha=false]),
.theme-default-dark a[matcha-button][disabled][alpha=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[alpha],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[alpha]:not([alpha=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[alpha=true],
.theme-default-dark a[matcha-button][disabled=true][alpha],
.theme-default-dark a[matcha-button][disabled=true][alpha]:not([alpha=false]),
.theme-default-dark a[matcha-button][disabled=true][alpha=true] {
  background: rgba(10, 10, 10, 0.5);
  color: #292929;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][disabled][link], .theme-default-dark button[matcha-button][disabled][link]:not([link=false]), .theme-default-dark button[matcha-button][disabled][link=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[link], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[link]:not([link=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[link=true], .theme-default-dark button[matcha-button][disabled=true][link], .theme-default-dark button[matcha-button][disabled=true][link]:not([link=false]), .theme-default-dark button[matcha-button][disabled=true][link=true],
.theme-default-dark a[matcha-button][disabled][link],
.theme-default-dark a[matcha-button][disabled][link]:not([link=false]),
.theme-default-dark a[matcha-button][disabled][link=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[link],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[link]:not([link=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[link=true],
.theme-default-dark a[matcha-button][disabled=true][link],
.theme-default-dark a[matcha-button][disabled=true][link]:not([link=false]),
.theme-default-dark a[matcha-button][disabled=true][link=true] {
  background: transparent;
  color: #292929;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][color=pink][outline]:not([outline=false]) .ripple, .theme-default-dark button[matcha-button][color=pink][basic]:not([basic=false]) .ripple,
.theme-default-dark a[matcha-button][color=pink][outline]:not([outline=false]) .ripple,
.theme-default-dark a[matcha-button][color=pink][basic]:not([basic=false]) .ripple {
  background: rgba(248, 187, 208, 0.2);
}
.theme-default-dark button[matcha-button][color=pink][alpha]:not([alpha=false]),
.theme-default-dark a[matcha-button][color=pink][alpha]:not([alpha=false]) {
  background: rgba(248, 187, 208, 0.2);
  color: #f8bbd0;
}
.theme-default-dark button[matcha-button][color=pink][alpha]:not([alpha=false]) matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=pink][alpha]:not([alpha=false]) matcha-divider .border-color-disabled {
  border-color: #f8bbd0 !important;
  opacity: 0.3 !important;
}
.theme-default-dark button[matcha-button][color=pink][outline]:not([outline=false]), .theme-default-dark button[matcha-button][color=pink][link]:not([link=false]), .theme-default-dark button[matcha-button][color=pink][basic]:not([basic=false]),
.theme-default-dark a[matcha-button][color=pink][outline]:not([outline=false]),
.theme-default-dark a[matcha-button][color=pink][link]:not([link=false]),
.theme-default-dark a[matcha-button][color=pink][basic]:not([basic=false]) {
  color: #f8bbd0;
}
.theme-default-dark button[matcha-button][color=pink][outline]:not([outline=false]) matcha-divider .border-color-disabled, .theme-default-dark button[matcha-button][color=pink][link]:not([link=false]) matcha-divider .border-color-disabled, .theme-default-dark button[matcha-button][color=pink][basic]:not([basic=false]) matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=pink][outline]:not([outline=false]) matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=pink][link]:not([link=false]) matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=pink][basic]:not([basic=false]) matcha-divider .border-color-disabled {
  border-color: #f8bbd0 !important;
  opacity: 0.3 !important;
}
.theme-default-dark button[matcha-button][color=pink],
.theme-default-dark a[matcha-button][color=pink] {
  background: #f8bbd0;
  color: rgba(0, 0, 0, 0.87);
}
.theme-default-dark button[matcha-button][color=pink] matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=pink] matcha-divider .border-color-disabled {
  border-color: rgba(0, 0, 0, 0.87) !important;
  opacity: 0.3 !important;
}
.theme-default-dark button[matcha-button][color=pink] .ripple,
.theme-default-dark a[matcha-button][color=pink] .ripple {
  background: rgba(0, 0, 0, 0.2);
}
.theme-default-dark button[matcha-button][disabled][solid], .theme-default-dark button[matcha-button][disabled][solid]:not([solid=false]), .theme-default-dark button[matcha-button][disabled][solid=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[solid], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[solid]:not([solid=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[solid=true], .theme-default-dark button[matcha-button][disabled=true][solid], .theme-default-dark button[matcha-button][disabled=true][solid]:not([solid=false]), .theme-default-dark button[matcha-button][disabled=true][solid=true],
.theme-default-dark a[matcha-button][disabled][solid],
.theme-default-dark a[matcha-button][disabled][solid]:not([solid=false]),
.theme-default-dark a[matcha-button][disabled][solid=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[solid],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[solid]:not([solid=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[solid=true],
.theme-default-dark a[matcha-button][disabled=true][solid],
.theme-default-dark a[matcha-button][disabled=true][solid]:not([solid=false]),
.theme-default-dark a[matcha-button][disabled=true][solid=true] {
  background: #292929;
  color: rgba(226, 231, 233, 0.5);
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][disabled][outline], .theme-default-dark button[matcha-button][disabled][outline]:not([outline=false]), .theme-default-dark button[matcha-button][disabled][outline=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[outline], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[outline]:not([outline=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[outline=true], .theme-default-dark button[matcha-button][disabled=true][outline], .theme-default-dark button[matcha-button][disabled=true][outline]:not([outline=false]), .theme-default-dark button[matcha-button][disabled=true][outline=true],
.theme-default-dark a[matcha-button][disabled][outline],
.theme-default-dark a[matcha-button][disabled][outline]:not([outline=false]),
.theme-default-dark a[matcha-button][disabled][outline=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[outline],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[outline]:not([outline=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[outline=true],
.theme-default-dark a[matcha-button][disabled=true][outline],
.theme-default-dark a[matcha-button][disabled=true][outline]:not([outline=false]),
.theme-default-dark a[matcha-button][disabled=true][outline=true] {
  background: transparent;
  color: #292929;
  box-shadow: 0 0 0 2px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][disabled][basic], .theme-default-dark button[matcha-button][disabled][basic]:not([basic=false]), .theme-default-dark button[matcha-button][disabled][basic=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[basic], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[basic]:not([basic=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[basic=true], .theme-default-dark button[matcha-button][disabled=true][basic], .theme-default-dark button[matcha-button][disabled=true][basic]:not([basic=false]), .theme-default-dark button[matcha-button][disabled=true][basic=true],
.theme-default-dark a[matcha-button][disabled][basic],
.theme-default-dark a[matcha-button][disabled][basic]:not([basic=false]),
.theme-default-dark a[matcha-button][disabled][basic=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[basic],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[basic]:not([basic=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[basic=true],
.theme-default-dark a[matcha-button][disabled=true][basic],
.theme-default-dark a[matcha-button][disabled=true][basic]:not([basic=false]),
.theme-default-dark a[matcha-button][disabled=true][basic=true] {
  background: #141414;
  color: #292929;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][disabled][alpha], .theme-default-dark button[matcha-button][disabled][alpha]:not([alpha=false]), .theme-default-dark button[matcha-button][disabled][alpha=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[alpha], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[alpha]:not([alpha=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[alpha=true], .theme-default-dark button[matcha-button][disabled=true][alpha], .theme-default-dark button[matcha-button][disabled=true][alpha]:not([alpha=false]), .theme-default-dark button[matcha-button][disabled=true][alpha=true],
.theme-default-dark a[matcha-button][disabled][alpha],
.theme-default-dark a[matcha-button][disabled][alpha]:not([alpha=false]),
.theme-default-dark a[matcha-button][disabled][alpha=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[alpha],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[alpha]:not([alpha=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[alpha=true],
.theme-default-dark a[matcha-button][disabled=true][alpha],
.theme-default-dark a[matcha-button][disabled=true][alpha]:not([alpha=false]),
.theme-default-dark a[matcha-button][disabled=true][alpha=true] {
  background: rgba(10, 10, 10, 0.5);
  color: #292929;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][disabled][link], .theme-default-dark button[matcha-button][disabled][link]:not([link=false]), .theme-default-dark button[matcha-button][disabled][link=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[link], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[link]:not([link=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[link=true], .theme-default-dark button[matcha-button][disabled=true][link], .theme-default-dark button[matcha-button][disabled=true][link]:not([link=false]), .theme-default-dark button[matcha-button][disabled=true][link=true],
.theme-default-dark a[matcha-button][disabled][link],
.theme-default-dark a[matcha-button][disabled][link]:not([link=false]),
.theme-default-dark a[matcha-button][disabled][link=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[link],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[link]:not([link=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[link=true],
.theme-default-dark a[matcha-button][disabled=true][link],
.theme-default-dark a[matcha-button][disabled=true][link]:not([link=false]),
.theme-default-dark a[matcha-button][disabled=true][link=true] {
  background: transparent;
  color: #292929;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][color=purple][outline]:not([outline=false]) .ripple, .theme-default-dark button[matcha-button][color=purple][basic]:not([basic=false]) .ripple,
.theme-default-dark a[matcha-button][color=purple][outline]:not([outline=false]) .ripple,
.theme-default-dark a[matcha-button][color=purple][basic]:not([basic=false]) .ripple {
  background: rgba(225, 190, 231, 0.2);
}
.theme-default-dark button[matcha-button][color=purple][alpha]:not([alpha=false]),
.theme-default-dark a[matcha-button][color=purple][alpha]:not([alpha=false]) {
  background: rgba(225, 190, 231, 0.2);
  color: #e1bee7;
}
.theme-default-dark button[matcha-button][color=purple][alpha]:not([alpha=false]) matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=purple][alpha]:not([alpha=false]) matcha-divider .border-color-disabled {
  border-color: #e1bee7 !important;
  opacity: 0.3 !important;
}
.theme-default-dark button[matcha-button][color=purple][outline]:not([outline=false]), .theme-default-dark button[matcha-button][color=purple][link]:not([link=false]), .theme-default-dark button[matcha-button][color=purple][basic]:not([basic=false]),
.theme-default-dark a[matcha-button][color=purple][outline]:not([outline=false]),
.theme-default-dark a[matcha-button][color=purple][link]:not([link=false]),
.theme-default-dark a[matcha-button][color=purple][basic]:not([basic=false]) {
  color: #e1bee7;
}
.theme-default-dark button[matcha-button][color=purple][outline]:not([outline=false]) matcha-divider .border-color-disabled, .theme-default-dark button[matcha-button][color=purple][link]:not([link=false]) matcha-divider .border-color-disabled, .theme-default-dark button[matcha-button][color=purple][basic]:not([basic=false]) matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=purple][outline]:not([outline=false]) matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=purple][link]:not([link=false]) matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=purple][basic]:not([basic=false]) matcha-divider .border-color-disabled {
  border-color: #e1bee7 !important;
  opacity: 0.3 !important;
}
.theme-default-dark button[matcha-button][color=purple],
.theme-default-dark a[matcha-button][color=purple] {
  background: #e1bee7;
  color: rgba(0, 0, 0, 0.87);
}
.theme-default-dark button[matcha-button][color=purple] matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=purple] matcha-divider .border-color-disabled {
  border-color: rgba(0, 0, 0, 0.87) !important;
  opacity: 0.3 !important;
}
.theme-default-dark button[matcha-button][color=purple] .ripple,
.theme-default-dark a[matcha-button][color=purple] .ripple {
  background: rgba(0, 0, 0, 0.2);
}
.theme-default-dark button[matcha-button][disabled][solid], .theme-default-dark button[matcha-button][disabled][solid]:not([solid=false]), .theme-default-dark button[matcha-button][disabled][solid=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[solid], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[solid]:not([solid=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[solid=true], .theme-default-dark button[matcha-button][disabled=true][solid], .theme-default-dark button[matcha-button][disabled=true][solid]:not([solid=false]), .theme-default-dark button[matcha-button][disabled=true][solid=true],
.theme-default-dark a[matcha-button][disabled][solid],
.theme-default-dark a[matcha-button][disabled][solid]:not([solid=false]),
.theme-default-dark a[matcha-button][disabled][solid=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[solid],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[solid]:not([solid=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[solid=true],
.theme-default-dark a[matcha-button][disabled=true][solid],
.theme-default-dark a[matcha-button][disabled=true][solid]:not([solid=false]),
.theme-default-dark a[matcha-button][disabled=true][solid=true] {
  background: #292929;
  color: rgba(226, 231, 233, 0.5);
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][disabled][outline], .theme-default-dark button[matcha-button][disabled][outline]:not([outline=false]), .theme-default-dark button[matcha-button][disabled][outline=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[outline], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[outline]:not([outline=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[outline=true], .theme-default-dark button[matcha-button][disabled=true][outline], .theme-default-dark button[matcha-button][disabled=true][outline]:not([outline=false]), .theme-default-dark button[matcha-button][disabled=true][outline=true],
.theme-default-dark a[matcha-button][disabled][outline],
.theme-default-dark a[matcha-button][disabled][outline]:not([outline=false]),
.theme-default-dark a[matcha-button][disabled][outline=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[outline],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[outline]:not([outline=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[outline=true],
.theme-default-dark a[matcha-button][disabled=true][outline],
.theme-default-dark a[matcha-button][disabled=true][outline]:not([outline=false]),
.theme-default-dark a[matcha-button][disabled=true][outline=true] {
  background: transparent;
  color: #292929;
  box-shadow: 0 0 0 2px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][disabled][basic], .theme-default-dark button[matcha-button][disabled][basic]:not([basic=false]), .theme-default-dark button[matcha-button][disabled][basic=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[basic], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[basic]:not([basic=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[basic=true], .theme-default-dark button[matcha-button][disabled=true][basic], .theme-default-dark button[matcha-button][disabled=true][basic]:not([basic=false]), .theme-default-dark button[matcha-button][disabled=true][basic=true],
.theme-default-dark a[matcha-button][disabled][basic],
.theme-default-dark a[matcha-button][disabled][basic]:not([basic=false]),
.theme-default-dark a[matcha-button][disabled][basic=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[basic],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[basic]:not([basic=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[basic=true],
.theme-default-dark a[matcha-button][disabled=true][basic],
.theme-default-dark a[matcha-button][disabled=true][basic]:not([basic=false]),
.theme-default-dark a[matcha-button][disabled=true][basic=true] {
  background: #141414;
  color: #292929;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][disabled][alpha], .theme-default-dark button[matcha-button][disabled][alpha]:not([alpha=false]), .theme-default-dark button[matcha-button][disabled][alpha=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[alpha], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[alpha]:not([alpha=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[alpha=true], .theme-default-dark button[matcha-button][disabled=true][alpha], .theme-default-dark button[matcha-button][disabled=true][alpha]:not([alpha=false]), .theme-default-dark button[matcha-button][disabled=true][alpha=true],
.theme-default-dark a[matcha-button][disabled][alpha],
.theme-default-dark a[matcha-button][disabled][alpha]:not([alpha=false]),
.theme-default-dark a[matcha-button][disabled][alpha=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[alpha],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[alpha]:not([alpha=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[alpha=true],
.theme-default-dark a[matcha-button][disabled=true][alpha],
.theme-default-dark a[matcha-button][disabled=true][alpha]:not([alpha=false]),
.theme-default-dark a[matcha-button][disabled=true][alpha=true] {
  background: rgba(10, 10, 10, 0.5);
  color: #292929;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][disabled][link], .theme-default-dark button[matcha-button][disabled][link]:not([link=false]), .theme-default-dark button[matcha-button][disabled][link=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[link], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[link]:not([link=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[link=true], .theme-default-dark button[matcha-button][disabled=true][link], .theme-default-dark button[matcha-button][disabled=true][link]:not([link=false]), .theme-default-dark button[matcha-button][disabled=true][link=true],
.theme-default-dark a[matcha-button][disabled][link],
.theme-default-dark a[matcha-button][disabled][link]:not([link=false]),
.theme-default-dark a[matcha-button][disabled][link=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[link],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[link]:not([link=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[link=true],
.theme-default-dark a[matcha-button][disabled=true][link],
.theme-default-dark a[matcha-button][disabled=true][link]:not([link=false]),
.theme-default-dark a[matcha-button][disabled=true][link=true] {
  background: transparent;
  color: #292929;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][color=deep-purple][outline]:not([outline=false]) .ripple, .theme-default-dark button[matcha-button][color=deep-purple][basic]:not([basic=false]) .ripple,
.theme-default-dark a[matcha-button][color=deep-purple][outline]:not([outline=false]) .ripple,
.theme-default-dark a[matcha-button][color=deep-purple][basic]:not([basic=false]) .ripple {
  background: rgba(209, 196, 233, 0.2);
}
.theme-default-dark button[matcha-button][color=deep-purple][alpha]:not([alpha=false]),
.theme-default-dark a[matcha-button][color=deep-purple][alpha]:not([alpha=false]) {
  background: rgba(209, 196, 233, 0.2);
  color: #d1c4e9;
}
.theme-default-dark button[matcha-button][color=deep-purple][alpha]:not([alpha=false]) matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=deep-purple][alpha]:not([alpha=false]) matcha-divider .border-color-disabled {
  border-color: #d1c4e9 !important;
  opacity: 0.3 !important;
}
.theme-default-dark button[matcha-button][color=deep-purple][outline]:not([outline=false]), .theme-default-dark button[matcha-button][color=deep-purple][link]:not([link=false]), .theme-default-dark button[matcha-button][color=deep-purple][basic]:not([basic=false]),
.theme-default-dark a[matcha-button][color=deep-purple][outline]:not([outline=false]),
.theme-default-dark a[matcha-button][color=deep-purple][link]:not([link=false]),
.theme-default-dark a[matcha-button][color=deep-purple][basic]:not([basic=false]) {
  color: #d1c4e9;
}
.theme-default-dark button[matcha-button][color=deep-purple][outline]:not([outline=false]) matcha-divider .border-color-disabled, .theme-default-dark button[matcha-button][color=deep-purple][link]:not([link=false]) matcha-divider .border-color-disabled, .theme-default-dark button[matcha-button][color=deep-purple][basic]:not([basic=false]) matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=deep-purple][outline]:not([outline=false]) matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=deep-purple][link]:not([link=false]) matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=deep-purple][basic]:not([basic=false]) matcha-divider .border-color-disabled {
  border-color: #d1c4e9 !important;
  opacity: 0.3 !important;
}
.theme-default-dark button[matcha-button][color=deep-purple],
.theme-default-dark a[matcha-button][color=deep-purple] {
  background: #d1c4e9;
  color: rgba(0, 0, 0, 0.87);
}
.theme-default-dark button[matcha-button][color=deep-purple] matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=deep-purple] matcha-divider .border-color-disabled {
  border-color: rgba(0, 0, 0, 0.87) !important;
  opacity: 0.3 !important;
}
.theme-default-dark button[matcha-button][color=deep-purple] .ripple,
.theme-default-dark a[matcha-button][color=deep-purple] .ripple {
  background: rgba(0, 0, 0, 0.2);
}
.theme-default-dark button[matcha-button][disabled][solid], .theme-default-dark button[matcha-button][disabled][solid]:not([solid=false]), .theme-default-dark button[matcha-button][disabled][solid=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[solid], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[solid]:not([solid=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[solid=true], .theme-default-dark button[matcha-button][disabled=true][solid], .theme-default-dark button[matcha-button][disabled=true][solid]:not([solid=false]), .theme-default-dark button[matcha-button][disabled=true][solid=true],
.theme-default-dark a[matcha-button][disabled][solid],
.theme-default-dark a[matcha-button][disabled][solid]:not([solid=false]),
.theme-default-dark a[matcha-button][disabled][solid=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[solid],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[solid]:not([solid=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[solid=true],
.theme-default-dark a[matcha-button][disabled=true][solid],
.theme-default-dark a[matcha-button][disabled=true][solid]:not([solid=false]),
.theme-default-dark a[matcha-button][disabled=true][solid=true] {
  background: #292929;
  color: rgba(226, 231, 233, 0.5);
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][disabled][outline], .theme-default-dark button[matcha-button][disabled][outline]:not([outline=false]), .theme-default-dark button[matcha-button][disabled][outline=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[outline], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[outline]:not([outline=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[outline=true], .theme-default-dark button[matcha-button][disabled=true][outline], .theme-default-dark button[matcha-button][disabled=true][outline]:not([outline=false]), .theme-default-dark button[matcha-button][disabled=true][outline=true],
.theme-default-dark a[matcha-button][disabled][outline],
.theme-default-dark a[matcha-button][disabled][outline]:not([outline=false]),
.theme-default-dark a[matcha-button][disabled][outline=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[outline],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[outline]:not([outline=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[outline=true],
.theme-default-dark a[matcha-button][disabled=true][outline],
.theme-default-dark a[matcha-button][disabled=true][outline]:not([outline=false]),
.theme-default-dark a[matcha-button][disabled=true][outline=true] {
  background: transparent;
  color: #292929;
  box-shadow: 0 0 0 2px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][disabled][basic], .theme-default-dark button[matcha-button][disabled][basic]:not([basic=false]), .theme-default-dark button[matcha-button][disabled][basic=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[basic], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[basic]:not([basic=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[basic=true], .theme-default-dark button[matcha-button][disabled=true][basic], .theme-default-dark button[matcha-button][disabled=true][basic]:not([basic=false]), .theme-default-dark button[matcha-button][disabled=true][basic=true],
.theme-default-dark a[matcha-button][disabled][basic],
.theme-default-dark a[matcha-button][disabled][basic]:not([basic=false]),
.theme-default-dark a[matcha-button][disabled][basic=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[basic],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[basic]:not([basic=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[basic=true],
.theme-default-dark a[matcha-button][disabled=true][basic],
.theme-default-dark a[matcha-button][disabled=true][basic]:not([basic=false]),
.theme-default-dark a[matcha-button][disabled=true][basic=true] {
  background: #141414;
  color: #292929;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][disabled][alpha], .theme-default-dark button[matcha-button][disabled][alpha]:not([alpha=false]), .theme-default-dark button[matcha-button][disabled][alpha=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[alpha], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[alpha]:not([alpha=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[alpha=true], .theme-default-dark button[matcha-button][disabled=true][alpha], .theme-default-dark button[matcha-button][disabled=true][alpha]:not([alpha=false]), .theme-default-dark button[matcha-button][disabled=true][alpha=true],
.theme-default-dark a[matcha-button][disabled][alpha],
.theme-default-dark a[matcha-button][disabled][alpha]:not([alpha=false]),
.theme-default-dark a[matcha-button][disabled][alpha=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[alpha],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[alpha]:not([alpha=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[alpha=true],
.theme-default-dark a[matcha-button][disabled=true][alpha],
.theme-default-dark a[matcha-button][disabled=true][alpha]:not([alpha=false]),
.theme-default-dark a[matcha-button][disabled=true][alpha=true] {
  background: rgba(10, 10, 10, 0.5);
  color: #292929;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][disabled][link], .theme-default-dark button[matcha-button][disabled][link]:not([link=false]), .theme-default-dark button[matcha-button][disabled][link=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[link], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[link]:not([link=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[link=true], .theme-default-dark button[matcha-button][disabled=true][link], .theme-default-dark button[matcha-button][disabled=true][link]:not([link=false]), .theme-default-dark button[matcha-button][disabled=true][link=true],
.theme-default-dark a[matcha-button][disabled][link],
.theme-default-dark a[matcha-button][disabled][link]:not([link=false]),
.theme-default-dark a[matcha-button][disabled][link=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[link],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[link]:not([link=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[link=true],
.theme-default-dark a[matcha-button][disabled=true][link],
.theme-default-dark a[matcha-button][disabled=true][link]:not([link=false]),
.theme-default-dark a[matcha-button][disabled=true][link=true] {
  background: transparent;
  color: #292929;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][color=indigo][outline]:not([outline=false]) .ripple, .theme-default-dark button[matcha-button][color=indigo][basic]:not([basic=false]) .ripple,
.theme-default-dark a[matcha-button][color=indigo][outline]:not([outline=false]) .ripple,
.theme-default-dark a[matcha-button][color=indigo][basic]:not([basic=false]) .ripple {
  background: rgba(197, 202, 233, 0.2);
}
.theme-default-dark button[matcha-button][color=indigo][alpha]:not([alpha=false]),
.theme-default-dark a[matcha-button][color=indigo][alpha]:not([alpha=false]) {
  background: rgba(197, 202, 233, 0.2);
  color: #c5cae9;
}
.theme-default-dark button[matcha-button][color=indigo][alpha]:not([alpha=false]) matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=indigo][alpha]:not([alpha=false]) matcha-divider .border-color-disabled {
  border-color: #c5cae9 !important;
  opacity: 0.3 !important;
}
.theme-default-dark button[matcha-button][color=indigo][outline]:not([outline=false]), .theme-default-dark button[matcha-button][color=indigo][link]:not([link=false]), .theme-default-dark button[matcha-button][color=indigo][basic]:not([basic=false]),
.theme-default-dark a[matcha-button][color=indigo][outline]:not([outline=false]),
.theme-default-dark a[matcha-button][color=indigo][link]:not([link=false]),
.theme-default-dark a[matcha-button][color=indigo][basic]:not([basic=false]) {
  color: #c5cae9;
}
.theme-default-dark button[matcha-button][color=indigo][outline]:not([outline=false]) matcha-divider .border-color-disabled, .theme-default-dark button[matcha-button][color=indigo][link]:not([link=false]) matcha-divider .border-color-disabled, .theme-default-dark button[matcha-button][color=indigo][basic]:not([basic=false]) matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=indigo][outline]:not([outline=false]) matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=indigo][link]:not([link=false]) matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=indigo][basic]:not([basic=false]) matcha-divider .border-color-disabled {
  border-color: #c5cae9 !important;
  opacity: 0.3 !important;
}
.theme-default-dark button[matcha-button][color=indigo],
.theme-default-dark a[matcha-button][color=indigo] {
  background: #c5cae9;
  color: rgba(0, 0, 0, 0.87);
}
.theme-default-dark button[matcha-button][color=indigo] matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=indigo] matcha-divider .border-color-disabled {
  border-color: rgba(0, 0, 0, 0.87) !important;
  opacity: 0.3 !important;
}
.theme-default-dark button[matcha-button][color=indigo] .ripple,
.theme-default-dark a[matcha-button][color=indigo] .ripple {
  background: rgba(0, 0, 0, 0.2);
}
.theme-default-dark button[matcha-button][disabled][solid], .theme-default-dark button[matcha-button][disabled][solid]:not([solid=false]), .theme-default-dark button[matcha-button][disabled][solid=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[solid], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[solid]:not([solid=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[solid=true], .theme-default-dark button[matcha-button][disabled=true][solid], .theme-default-dark button[matcha-button][disabled=true][solid]:not([solid=false]), .theme-default-dark button[matcha-button][disabled=true][solid=true],
.theme-default-dark a[matcha-button][disabled][solid],
.theme-default-dark a[matcha-button][disabled][solid]:not([solid=false]),
.theme-default-dark a[matcha-button][disabled][solid=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[solid],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[solid]:not([solid=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[solid=true],
.theme-default-dark a[matcha-button][disabled=true][solid],
.theme-default-dark a[matcha-button][disabled=true][solid]:not([solid=false]),
.theme-default-dark a[matcha-button][disabled=true][solid=true] {
  background: #292929;
  color: rgba(226, 231, 233, 0.5);
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][disabled][outline], .theme-default-dark button[matcha-button][disabled][outline]:not([outline=false]), .theme-default-dark button[matcha-button][disabled][outline=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[outline], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[outline]:not([outline=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[outline=true], .theme-default-dark button[matcha-button][disabled=true][outline], .theme-default-dark button[matcha-button][disabled=true][outline]:not([outline=false]), .theme-default-dark button[matcha-button][disabled=true][outline=true],
.theme-default-dark a[matcha-button][disabled][outline],
.theme-default-dark a[matcha-button][disabled][outline]:not([outline=false]),
.theme-default-dark a[matcha-button][disabled][outline=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[outline],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[outline]:not([outline=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[outline=true],
.theme-default-dark a[matcha-button][disabled=true][outline],
.theme-default-dark a[matcha-button][disabled=true][outline]:not([outline=false]),
.theme-default-dark a[matcha-button][disabled=true][outline=true] {
  background: transparent;
  color: #292929;
  box-shadow: 0 0 0 2px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][disabled][basic], .theme-default-dark button[matcha-button][disabled][basic]:not([basic=false]), .theme-default-dark button[matcha-button][disabled][basic=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[basic], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[basic]:not([basic=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[basic=true], .theme-default-dark button[matcha-button][disabled=true][basic], .theme-default-dark button[matcha-button][disabled=true][basic]:not([basic=false]), .theme-default-dark button[matcha-button][disabled=true][basic=true],
.theme-default-dark a[matcha-button][disabled][basic],
.theme-default-dark a[matcha-button][disabled][basic]:not([basic=false]),
.theme-default-dark a[matcha-button][disabled][basic=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[basic],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[basic]:not([basic=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[basic=true],
.theme-default-dark a[matcha-button][disabled=true][basic],
.theme-default-dark a[matcha-button][disabled=true][basic]:not([basic=false]),
.theme-default-dark a[matcha-button][disabled=true][basic=true] {
  background: #141414;
  color: #292929;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][disabled][alpha], .theme-default-dark button[matcha-button][disabled][alpha]:not([alpha=false]), .theme-default-dark button[matcha-button][disabled][alpha=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[alpha], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[alpha]:not([alpha=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[alpha=true], .theme-default-dark button[matcha-button][disabled=true][alpha], .theme-default-dark button[matcha-button][disabled=true][alpha]:not([alpha=false]), .theme-default-dark button[matcha-button][disabled=true][alpha=true],
.theme-default-dark a[matcha-button][disabled][alpha],
.theme-default-dark a[matcha-button][disabled][alpha]:not([alpha=false]),
.theme-default-dark a[matcha-button][disabled][alpha=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[alpha],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[alpha]:not([alpha=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[alpha=true],
.theme-default-dark a[matcha-button][disabled=true][alpha],
.theme-default-dark a[matcha-button][disabled=true][alpha]:not([alpha=false]),
.theme-default-dark a[matcha-button][disabled=true][alpha=true] {
  background: rgba(10, 10, 10, 0.5);
  color: #292929;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][disabled][link], .theme-default-dark button[matcha-button][disabled][link]:not([link=false]), .theme-default-dark button[matcha-button][disabled][link=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[link], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[link]:not([link=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[link=true], .theme-default-dark button[matcha-button][disabled=true][link], .theme-default-dark button[matcha-button][disabled=true][link]:not([link=false]), .theme-default-dark button[matcha-button][disabled=true][link=true],
.theme-default-dark a[matcha-button][disabled][link],
.theme-default-dark a[matcha-button][disabled][link]:not([link=false]),
.theme-default-dark a[matcha-button][disabled][link=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[link],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[link]:not([link=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[link=true],
.theme-default-dark a[matcha-button][disabled=true][link],
.theme-default-dark a[matcha-button][disabled=true][link]:not([link=false]),
.theme-default-dark a[matcha-button][disabled=true][link=true] {
  background: transparent;
  color: #292929;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][color=blue][outline]:not([outline=false]) .ripple, .theme-default-dark button[matcha-button][color=blue][basic]:not([basic=false]) .ripple,
.theme-default-dark a[matcha-button][color=blue][outline]:not([outline=false]) .ripple,
.theme-default-dark a[matcha-button][color=blue][basic]:not([basic=false]) .ripple {
  background: rgba(188, 206, 244, 0.2);
}
.theme-default-dark button[matcha-button][color=blue][alpha]:not([alpha=false]),
.theme-default-dark a[matcha-button][color=blue][alpha]:not([alpha=false]) {
  background: rgba(188, 206, 244, 0.2);
  color: #bccef4;
}
.theme-default-dark button[matcha-button][color=blue][alpha]:not([alpha=false]) matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=blue][alpha]:not([alpha=false]) matcha-divider .border-color-disabled {
  border-color: #bccef4 !important;
  opacity: 0.3 !important;
}
.theme-default-dark button[matcha-button][color=blue][outline]:not([outline=false]), .theme-default-dark button[matcha-button][color=blue][link]:not([link=false]), .theme-default-dark button[matcha-button][color=blue][basic]:not([basic=false]),
.theme-default-dark a[matcha-button][color=blue][outline]:not([outline=false]),
.theme-default-dark a[matcha-button][color=blue][link]:not([link=false]),
.theme-default-dark a[matcha-button][color=blue][basic]:not([basic=false]) {
  color: #bccef4;
}
.theme-default-dark button[matcha-button][color=blue][outline]:not([outline=false]) matcha-divider .border-color-disabled, .theme-default-dark button[matcha-button][color=blue][link]:not([link=false]) matcha-divider .border-color-disabled, .theme-default-dark button[matcha-button][color=blue][basic]:not([basic=false]) matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=blue][outline]:not([outline=false]) matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=blue][link]:not([link=false]) matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=blue][basic]:not([basic=false]) matcha-divider .border-color-disabled {
  border-color: #bccef4 !important;
  opacity: 0.3 !important;
}
.theme-default-dark button[matcha-button][color=blue],
.theme-default-dark a[matcha-button][color=blue] {
  background: #bccef4;
  color: rgba(0, 0, 0, 0.87);
}
.theme-default-dark button[matcha-button][color=blue] matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=blue] matcha-divider .border-color-disabled {
  border-color: rgba(0, 0, 0, 0.87) !important;
  opacity: 0.3 !important;
}
.theme-default-dark button[matcha-button][color=blue] .ripple,
.theme-default-dark a[matcha-button][color=blue] .ripple {
  background: rgba(0, 0, 0, 0.2);
}
.theme-default-dark button[matcha-button][disabled][solid], .theme-default-dark button[matcha-button][disabled][solid]:not([solid=false]), .theme-default-dark button[matcha-button][disabled][solid=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[solid], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[solid]:not([solid=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[solid=true], .theme-default-dark button[matcha-button][disabled=true][solid], .theme-default-dark button[matcha-button][disabled=true][solid]:not([solid=false]), .theme-default-dark button[matcha-button][disabled=true][solid=true],
.theme-default-dark a[matcha-button][disabled][solid],
.theme-default-dark a[matcha-button][disabled][solid]:not([solid=false]),
.theme-default-dark a[matcha-button][disabled][solid=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[solid],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[solid]:not([solid=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[solid=true],
.theme-default-dark a[matcha-button][disabled=true][solid],
.theme-default-dark a[matcha-button][disabled=true][solid]:not([solid=false]),
.theme-default-dark a[matcha-button][disabled=true][solid=true] {
  background: #292929;
  color: rgba(226, 231, 233, 0.5);
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][disabled][outline], .theme-default-dark button[matcha-button][disabled][outline]:not([outline=false]), .theme-default-dark button[matcha-button][disabled][outline=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[outline], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[outline]:not([outline=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[outline=true], .theme-default-dark button[matcha-button][disabled=true][outline], .theme-default-dark button[matcha-button][disabled=true][outline]:not([outline=false]), .theme-default-dark button[matcha-button][disabled=true][outline=true],
.theme-default-dark a[matcha-button][disabled][outline],
.theme-default-dark a[matcha-button][disabled][outline]:not([outline=false]),
.theme-default-dark a[matcha-button][disabled][outline=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[outline],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[outline]:not([outline=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[outline=true],
.theme-default-dark a[matcha-button][disabled=true][outline],
.theme-default-dark a[matcha-button][disabled=true][outline]:not([outline=false]),
.theme-default-dark a[matcha-button][disabled=true][outline=true] {
  background: transparent;
  color: #292929;
  box-shadow: 0 0 0 2px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][disabled][basic], .theme-default-dark button[matcha-button][disabled][basic]:not([basic=false]), .theme-default-dark button[matcha-button][disabled][basic=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[basic], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[basic]:not([basic=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[basic=true], .theme-default-dark button[matcha-button][disabled=true][basic], .theme-default-dark button[matcha-button][disabled=true][basic]:not([basic=false]), .theme-default-dark button[matcha-button][disabled=true][basic=true],
.theme-default-dark a[matcha-button][disabled][basic],
.theme-default-dark a[matcha-button][disabled][basic]:not([basic=false]),
.theme-default-dark a[matcha-button][disabled][basic=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[basic],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[basic]:not([basic=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[basic=true],
.theme-default-dark a[matcha-button][disabled=true][basic],
.theme-default-dark a[matcha-button][disabled=true][basic]:not([basic=false]),
.theme-default-dark a[matcha-button][disabled=true][basic=true] {
  background: #141414;
  color: #292929;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][disabled][alpha], .theme-default-dark button[matcha-button][disabled][alpha]:not([alpha=false]), .theme-default-dark button[matcha-button][disabled][alpha=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[alpha], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[alpha]:not([alpha=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[alpha=true], .theme-default-dark button[matcha-button][disabled=true][alpha], .theme-default-dark button[matcha-button][disabled=true][alpha]:not([alpha=false]), .theme-default-dark button[matcha-button][disabled=true][alpha=true],
.theme-default-dark a[matcha-button][disabled][alpha],
.theme-default-dark a[matcha-button][disabled][alpha]:not([alpha=false]),
.theme-default-dark a[matcha-button][disabled][alpha=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[alpha],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[alpha]:not([alpha=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[alpha=true],
.theme-default-dark a[matcha-button][disabled=true][alpha],
.theme-default-dark a[matcha-button][disabled=true][alpha]:not([alpha=false]),
.theme-default-dark a[matcha-button][disabled=true][alpha=true] {
  background: rgba(10, 10, 10, 0.5);
  color: #292929;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][disabled][link], .theme-default-dark button[matcha-button][disabled][link]:not([link=false]), .theme-default-dark button[matcha-button][disabled][link=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[link], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[link]:not([link=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[link=true], .theme-default-dark button[matcha-button][disabled=true][link], .theme-default-dark button[matcha-button][disabled=true][link]:not([link=false]), .theme-default-dark button[matcha-button][disabled=true][link=true],
.theme-default-dark a[matcha-button][disabled][link],
.theme-default-dark a[matcha-button][disabled][link]:not([link=false]),
.theme-default-dark a[matcha-button][disabled][link=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[link],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[link]:not([link=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[link=true],
.theme-default-dark a[matcha-button][disabled=true][link],
.theme-default-dark a[matcha-button][disabled=true][link]:not([link=false]),
.theme-default-dark a[matcha-button][disabled=true][link=true] {
  background: transparent;
  color: #292929;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][color=light-blue][outline]:not([outline=false]) .ripple, .theme-default-dark button[matcha-button][color=light-blue][basic]:not([basic=false]) .ripple,
.theme-default-dark a[matcha-button][color=light-blue][outline]:not([outline=false]) .ripple,
.theme-default-dark a[matcha-button][color=light-blue][basic]:not([basic=false]) .ripple {
  background: rgba(179, 229, 252, 0.2);
}
.theme-default-dark button[matcha-button][color=light-blue][alpha]:not([alpha=false]),
.theme-default-dark a[matcha-button][color=light-blue][alpha]:not([alpha=false]) {
  background: rgba(179, 229, 252, 0.2);
  color: #b3e5fc;
}
.theme-default-dark button[matcha-button][color=light-blue][alpha]:not([alpha=false]) matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=light-blue][alpha]:not([alpha=false]) matcha-divider .border-color-disabled {
  border-color: #b3e5fc !important;
  opacity: 0.3 !important;
}
.theme-default-dark button[matcha-button][color=light-blue][outline]:not([outline=false]), .theme-default-dark button[matcha-button][color=light-blue][link]:not([link=false]), .theme-default-dark button[matcha-button][color=light-blue][basic]:not([basic=false]),
.theme-default-dark a[matcha-button][color=light-blue][outline]:not([outline=false]),
.theme-default-dark a[matcha-button][color=light-blue][link]:not([link=false]),
.theme-default-dark a[matcha-button][color=light-blue][basic]:not([basic=false]) {
  color: #b3e5fc;
}
.theme-default-dark button[matcha-button][color=light-blue][outline]:not([outline=false]) matcha-divider .border-color-disabled, .theme-default-dark button[matcha-button][color=light-blue][link]:not([link=false]) matcha-divider .border-color-disabled, .theme-default-dark button[matcha-button][color=light-blue][basic]:not([basic=false]) matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=light-blue][outline]:not([outline=false]) matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=light-blue][link]:not([link=false]) matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=light-blue][basic]:not([basic=false]) matcha-divider .border-color-disabled {
  border-color: #b3e5fc !important;
  opacity: 0.3 !important;
}
.theme-default-dark button[matcha-button][color=light-blue],
.theme-default-dark a[matcha-button][color=light-blue] {
  background: #b3e5fc;
  color: rgba(0, 0, 0, 0.87);
}
.theme-default-dark button[matcha-button][color=light-blue] matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=light-blue] matcha-divider .border-color-disabled {
  border-color: rgba(0, 0, 0, 0.87) !important;
  opacity: 0.3 !important;
}
.theme-default-dark button[matcha-button][color=light-blue] .ripple,
.theme-default-dark a[matcha-button][color=light-blue] .ripple {
  background: rgba(0, 0, 0, 0.2);
}
.theme-default-dark button[matcha-button][disabled][solid], .theme-default-dark button[matcha-button][disabled][solid]:not([solid=false]), .theme-default-dark button[matcha-button][disabled][solid=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[solid], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[solid]:not([solid=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[solid=true], .theme-default-dark button[matcha-button][disabled=true][solid], .theme-default-dark button[matcha-button][disabled=true][solid]:not([solid=false]), .theme-default-dark button[matcha-button][disabled=true][solid=true],
.theme-default-dark a[matcha-button][disabled][solid],
.theme-default-dark a[matcha-button][disabled][solid]:not([solid=false]),
.theme-default-dark a[matcha-button][disabled][solid=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[solid],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[solid]:not([solid=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[solid=true],
.theme-default-dark a[matcha-button][disabled=true][solid],
.theme-default-dark a[matcha-button][disabled=true][solid]:not([solid=false]),
.theme-default-dark a[matcha-button][disabled=true][solid=true] {
  background: #292929;
  color: rgba(226, 231, 233, 0.5);
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][disabled][outline], .theme-default-dark button[matcha-button][disabled][outline]:not([outline=false]), .theme-default-dark button[matcha-button][disabled][outline=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[outline], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[outline]:not([outline=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[outline=true], .theme-default-dark button[matcha-button][disabled=true][outline], .theme-default-dark button[matcha-button][disabled=true][outline]:not([outline=false]), .theme-default-dark button[matcha-button][disabled=true][outline=true],
.theme-default-dark a[matcha-button][disabled][outline],
.theme-default-dark a[matcha-button][disabled][outline]:not([outline=false]),
.theme-default-dark a[matcha-button][disabled][outline=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[outline],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[outline]:not([outline=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[outline=true],
.theme-default-dark a[matcha-button][disabled=true][outline],
.theme-default-dark a[matcha-button][disabled=true][outline]:not([outline=false]),
.theme-default-dark a[matcha-button][disabled=true][outline=true] {
  background: transparent;
  color: #292929;
  box-shadow: 0 0 0 2px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][disabled][basic], .theme-default-dark button[matcha-button][disabled][basic]:not([basic=false]), .theme-default-dark button[matcha-button][disabled][basic=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[basic], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[basic]:not([basic=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[basic=true], .theme-default-dark button[matcha-button][disabled=true][basic], .theme-default-dark button[matcha-button][disabled=true][basic]:not([basic=false]), .theme-default-dark button[matcha-button][disabled=true][basic=true],
.theme-default-dark a[matcha-button][disabled][basic],
.theme-default-dark a[matcha-button][disabled][basic]:not([basic=false]),
.theme-default-dark a[matcha-button][disabled][basic=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[basic],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[basic]:not([basic=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[basic=true],
.theme-default-dark a[matcha-button][disabled=true][basic],
.theme-default-dark a[matcha-button][disabled=true][basic]:not([basic=false]),
.theme-default-dark a[matcha-button][disabled=true][basic=true] {
  background: #141414;
  color: #292929;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][disabled][alpha], .theme-default-dark button[matcha-button][disabled][alpha]:not([alpha=false]), .theme-default-dark button[matcha-button][disabled][alpha=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[alpha], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[alpha]:not([alpha=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[alpha=true], .theme-default-dark button[matcha-button][disabled=true][alpha], .theme-default-dark button[matcha-button][disabled=true][alpha]:not([alpha=false]), .theme-default-dark button[matcha-button][disabled=true][alpha=true],
.theme-default-dark a[matcha-button][disabled][alpha],
.theme-default-dark a[matcha-button][disabled][alpha]:not([alpha=false]),
.theme-default-dark a[matcha-button][disabled][alpha=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[alpha],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[alpha]:not([alpha=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[alpha=true],
.theme-default-dark a[matcha-button][disabled=true][alpha],
.theme-default-dark a[matcha-button][disabled=true][alpha]:not([alpha=false]),
.theme-default-dark a[matcha-button][disabled=true][alpha=true] {
  background: rgba(10, 10, 10, 0.5);
  color: #292929;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][disabled][link], .theme-default-dark button[matcha-button][disabled][link]:not([link=false]), .theme-default-dark button[matcha-button][disabled][link=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[link], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[link]:not([link=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[link=true], .theme-default-dark button[matcha-button][disabled=true][link], .theme-default-dark button[matcha-button][disabled=true][link]:not([link=false]), .theme-default-dark button[matcha-button][disabled=true][link=true],
.theme-default-dark a[matcha-button][disabled][link],
.theme-default-dark a[matcha-button][disabled][link]:not([link=false]),
.theme-default-dark a[matcha-button][disabled][link=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[link],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[link]:not([link=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[link=true],
.theme-default-dark a[matcha-button][disabled=true][link],
.theme-default-dark a[matcha-button][disabled=true][link]:not([link=false]),
.theme-default-dark a[matcha-button][disabled=true][link=true] {
  background: transparent;
  color: #292929;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][color=cyan][outline]:not([outline=false]) .ripple, .theme-default-dark button[matcha-button][color=cyan][basic]:not([basic=false]) .ripple,
.theme-default-dark a[matcha-button][color=cyan][outline]:not([outline=false]) .ripple,
.theme-default-dark a[matcha-button][color=cyan][basic]:not([basic=false]) .ripple {
  background: rgba(178, 235, 242, 0.2);
}
.theme-default-dark button[matcha-button][color=cyan][alpha]:not([alpha=false]),
.theme-default-dark a[matcha-button][color=cyan][alpha]:not([alpha=false]) {
  background: rgba(178, 235, 242, 0.2);
  color: #b2ebf2;
}
.theme-default-dark button[matcha-button][color=cyan][alpha]:not([alpha=false]) matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=cyan][alpha]:not([alpha=false]) matcha-divider .border-color-disabled {
  border-color: #b2ebf2 !important;
  opacity: 0.3 !important;
}
.theme-default-dark button[matcha-button][color=cyan][outline]:not([outline=false]), .theme-default-dark button[matcha-button][color=cyan][link]:not([link=false]), .theme-default-dark button[matcha-button][color=cyan][basic]:not([basic=false]),
.theme-default-dark a[matcha-button][color=cyan][outline]:not([outline=false]),
.theme-default-dark a[matcha-button][color=cyan][link]:not([link=false]),
.theme-default-dark a[matcha-button][color=cyan][basic]:not([basic=false]) {
  color: #b2ebf2;
}
.theme-default-dark button[matcha-button][color=cyan][outline]:not([outline=false]) matcha-divider .border-color-disabled, .theme-default-dark button[matcha-button][color=cyan][link]:not([link=false]) matcha-divider .border-color-disabled, .theme-default-dark button[matcha-button][color=cyan][basic]:not([basic=false]) matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=cyan][outline]:not([outline=false]) matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=cyan][link]:not([link=false]) matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=cyan][basic]:not([basic=false]) matcha-divider .border-color-disabled {
  border-color: #b2ebf2 !important;
  opacity: 0.3 !important;
}
.theme-default-dark button[matcha-button][color=cyan],
.theme-default-dark a[matcha-button][color=cyan] {
  background: #b2ebf2;
  color: rgba(0, 0, 0, 0.87);
}
.theme-default-dark button[matcha-button][color=cyan] matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=cyan] matcha-divider .border-color-disabled {
  border-color: rgba(0, 0, 0, 0.87) !important;
  opacity: 0.3 !important;
}
.theme-default-dark button[matcha-button][color=cyan] .ripple,
.theme-default-dark a[matcha-button][color=cyan] .ripple {
  background: rgba(0, 0, 0, 0.2);
}
.theme-default-dark button[matcha-button][disabled][solid], .theme-default-dark button[matcha-button][disabled][solid]:not([solid=false]), .theme-default-dark button[matcha-button][disabled][solid=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[solid], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[solid]:not([solid=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[solid=true], .theme-default-dark button[matcha-button][disabled=true][solid], .theme-default-dark button[matcha-button][disabled=true][solid]:not([solid=false]), .theme-default-dark button[matcha-button][disabled=true][solid=true],
.theme-default-dark a[matcha-button][disabled][solid],
.theme-default-dark a[matcha-button][disabled][solid]:not([solid=false]),
.theme-default-dark a[matcha-button][disabled][solid=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[solid],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[solid]:not([solid=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[solid=true],
.theme-default-dark a[matcha-button][disabled=true][solid],
.theme-default-dark a[matcha-button][disabled=true][solid]:not([solid=false]),
.theme-default-dark a[matcha-button][disabled=true][solid=true] {
  background: #292929;
  color: rgba(226, 231, 233, 0.5);
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][disabled][outline], .theme-default-dark button[matcha-button][disabled][outline]:not([outline=false]), .theme-default-dark button[matcha-button][disabled][outline=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[outline], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[outline]:not([outline=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[outline=true], .theme-default-dark button[matcha-button][disabled=true][outline], .theme-default-dark button[matcha-button][disabled=true][outline]:not([outline=false]), .theme-default-dark button[matcha-button][disabled=true][outline=true],
.theme-default-dark a[matcha-button][disabled][outline],
.theme-default-dark a[matcha-button][disabled][outline]:not([outline=false]),
.theme-default-dark a[matcha-button][disabled][outline=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[outline],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[outline]:not([outline=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[outline=true],
.theme-default-dark a[matcha-button][disabled=true][outline],
.theme-default-dark a[matcha-button][disabled=true][outline]:not([outline=false]),
.theme-default-dark a[matcha-button][disabled=true][outline=true] {
  background: transparent;
  color: #292929;
  box-shadow: 0 0 0 2px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][disabled][basic], .theme-default-dark button[matcha-button][disabled][basic]:not([basic=false]), .theme-default-dark button[matcha-button][disabled][basic=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[basic], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[basic]:not([basic=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[basic=true], .theme-default-dark button[matcha-button][disabled=true][basic], .theme-default-dark button[matcha-button][disabled=true][basic]:not([basic=false]), .theme-default-dark button[matcha-button][disabled=true][basic=true],
.theme-default-dark a[matcha-button][disabled][basic],
.theme-default-dark a[matcha-button][disabled][basic]:not([basic=false]),
.theme-default-dark a[matcha-button][disabled][basic=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[basic],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[basic]:not([basic=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[basic=true],
.theme-default-dark a[matcha-button][disabled=true][basic],
.theme-default-dark a[matcha-button][disabled=true][basic]:not([basic=false]),
.theme-default-dark a[matcha-button][disabled=true][basic=true] {
  background: #141414;
  color: #292929;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][disabled][alpha], .theme-default-dark button[matcha-button][disabled][alpha]:not([alpha=false]), .theme-default-dark button[matcha-button][disabled][alpha=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[alpha], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[alpha]:not([alpha=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[alpha=true], .theme-default-dark button[matcha-button][disabled=true][alpha], .theme-default-dark button[matcha-button][disabled=true][alpha]:not([alpha=false]), .theme-default-dark button[matcha-button][disabled=true][alpha=true],
.theme-default-dark a[matcha-button][disabled][alpha],
.theme-default-dark a[matcha-button][disabled][alpha]:not([alpha=false]),
.theme-default-dark a[matcha-button][disabled][alpha=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[alpha],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[alpha]:not([alpha=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[alpha=true],
.theme-default-dark a[matcha-button][disabled=true][alpha],
.theme-default-dark a[matcha-button][disabled=true][alpha]:not([alpha=false]),
.theme-default-dark a[matcha-button][disabled=true][alpha=true] {
  background: rgba(10, 10, 10, 0.5);
  color: #292929;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][disabled][link], .theme-default-dark button[matcha-button][disabled][link]:not([link=false]), .theme-default-dark button[matcha-button][disabled][link=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[link], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[link]:not([link=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[link=true], .theme-default-dark button[matcha-button][disabled=true][link], .theme-default-dark button[matcha-button][disabled=true][link]:not([link=false]), .theme-default-dark button[matcha-button][disabled=true][link=true],
.theme-default-dark a[matcha-button][disabled][link],
.theme-default-dark a[matcha-button][disabled][link]:not([link=false]),
.theme-default-dark a[matcha-button][disabled][link=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[link],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[link]:not([link=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[link=true],
.theme-default-dark a[matcha-button][disabled=true][link],
.theme-default-dark a[matcha-button][disabled=true][link]:not([link=false]),
.theme-default-dark a[matcha-button][disabled=true][link=true] {
  background: transparent;
  color: #292929;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][color=teal][outline]:not([outline=false]) .ripple, .theme-default-dark button[matcha-button][color=teal][basic]:not([basic=false]) .ripple,
.theme-default-dark a[matcha-button][color=teal][outline]:not([outline=false]) .ripple,
.theme-default-dark a[matcha-button][color=teal][basic]:not([basic=false]) .ripple {
  background: rgba(178, 223, 219, 0.2);
}
.theme-default-dark button[matcha-button][color=teal][alpha]:not([alpha=false]),
.theme-default-dark a[matcha-button][color=teal][alpha]:not([alpha=false]) {
  background: rgba(178, 223, 219, 0.2);
  color: #b2dfdb;
}
.theme-default-dark button[matcha-button][color=teal][alpha]:not([alpha=false]) matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=teal][alpha]:not([alpha=false]) matcha-divider .border-color-disabled {
  border-color: #b2dfdb !important;
  opacity: 0.3 !important;
}
.theme-default-dark button[matcha-button][color=teal][outline]:not([outline=false]), .theme-default-dark button[matcha-button][color=teal][link]:not([link=false]), .theme-default-dark button[matcha-button][color=teal][basic]:not([basic=false]),
.theme-default-dark a[matcha-button][color=teal][outline]:not([outline=false]),
.theme-default-dark a[matcha-button][color=teal][link]:not([link=false]),
.theme-default-dark a[matcha-button][color=teal][basic]:not([basic=false]) {
  color: #b2dfdb;
}
.theme-default-dark button[matcha-button][color=teal][outline]:not([outline=false]) matcha-divider .border-color-disabled, .theme-default-dark button[matcha-button][color=teal][link]:not([link=false]) matcha-divider .border-color-disabled, .theme-default-dark button[matcha-button][color=teal][basic]:not([basic=false]) matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=teal][outline]:not([outline=false]) matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=teal][link]:not([link=false]) matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=teal][basic]:not([basic=false]) matcha-divider .border-color-disabled {
  border-color: #b2dfdb !important;
  opacity: 0.3 !important;
}
.theme-default-dark button[matcha-button][color=teal],
.theme-default-dark a[matcha-button][color=teal] {
  background: #b2dfdb;
  color: rgba(0, 0, 0, 0.87);
}
.theme-default-dark button[matcha-button][color=teal] matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=teal] matcha-divider .border-color-disabled {
  border-color: rgba(0, 0, 0, 0.87) !important;
  opacity: 0.3 !important;
}
.theme-default-dark button[matcha-button][color=teal] .ripple,
.theme-default-dark a[matcha-button][color=teal] .ripple {
  background: rgba(0, 0, 0, 0.2);
}
.theme-default-dark button[matcha-button][disabled][solid], .theme-default-dark button[matcha-button][disabled][solid]:not([solid=false]), .theme-default-dark button[matcha-button][disabled][solid=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[solid], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[solid]:not([solid=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[solid=true], .theme-default-dark button[matcha-button][disabled=true][solid], .theme-default-dark button[matcha-button][disabled=true][solid]:not([solid=false]), .theme-default-dark button[matcha-button][disabled=true][solid=true],
.theme-default-dark a[matcha-button][disabled][solid],
.theme-default-dark a[matcha-button][disabled][solid]:not([solid=false]),
.theme-default-dark a[matcha-button][disabled][solid=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[solid],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[solid]:not([solid=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[solid=true],
.theme-default-dark a[matcha-button][disabled=true][solid],
.theme-default-dark a[matcha-button][disabled=true][solid]:not([solid=false]),
.theme-default-dark a[matcha-button][disabled=true][solid=true] {
  background: #292929;
  color: rgba(226, 231, 233, 0.5);
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][disabled][outline], .theme-default-dark button[matcha-button][disabled][outline]:not([outline=false]), .theme-default-dark button[matcha-button][disabled][outline=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[outline], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[outline]:not([outline=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[outline=true], .theme-default-dark button[matcha-button][disabled=true][outline], .theme-default-dark button[matcha-button][disabled=true][outline]:not([outline=false]), .theme-default-dark button[matcha-button][disabled=true][outline=true],
.theme-default-dark a[matcha-button][disabled][outline],
.theme-default-dark a[matcha-button][disabled][outline]:not([outline=false]),
.theme-default-dark a[matcha-button][disabled][outline=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[outline],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[outline]:not([outline=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[outline=true],
.theme-default-dark a[matcha-button][disabled=true][outline],
.theme-default-dark a[matcha-button][disabled=true][outline]:not([outline=false]),
.theme-default-dark a[matcha-button][disabled=true][outline=true] {
  background: transparent;
  color: #292929;
  box-shadow: 0 0 0 2px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][disabled][basic], .theme-default-dark button[matcha-button][disabled][basic]:not([basic=false]), .theme-default-dark button[matcha-button][disabled][basic=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[basic], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[basic]:not([basic=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[basic=true], .theme-default-dark button[matcha-button][disabled=true][basic], .theme-default-dark button[matcha-button][disabled=true][basic]:not([basic=false]), .theme-default-dark button[matcha-button][disabled=true][basic=true],
.theme-default-dark a[matcha-button][disabled][basic],
.theme-default-dark a[matcha-button][disabled][basic]:not([basic=false]),
.theme-default-dark a[matcha-button][disabled][basic=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[basic],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[basic]:not([basic=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[basic=true],
.theme-default-dark a[matcha-button][disabled=true][basic],
.theme-default-dark a[matcha-button][disabled=true][basic]:not([basic=false]),
.theme-default-dark a[matcha-button][disabled=true][basic=true] {
  background: #141414;
  color: #292929;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][disabled][alpha], .theme-default-dark button[matcha-button][disabled][alpha]:not([alpha=false]), .theme-default-dark button[matcha-button][disabled][alpha=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[alpha], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[alpha]:not([alpha=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[alpha=true], .theme-default-dark button[matcha-button][disabled=true][alpha], .theme-default-dark button[matcha-button][disabled=true][alpha]:not([alpha=false]), .theme-default-dark button[matcha-button][disabled=true][alpha=true],
.theme-default-dark a[matcha-button][disabled][alpha],
.theme-default-dark a[matcha-button][disabled][alpha]:not([alpha=false]),
.theme-default-dark a[matcha-button][disabled][alpha=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[alpha],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[alpha]:not([alpha=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[alpha=true],
.theme-default-dark a[matcha-button][disabled=true][alpha],
.theme-default-dark a[matcha-button][disabled=true][alpha]:not([alpha=false]),
.theme-default-dark a[matcha-button][disabled=true][alpha=true] {
  background: rgba(10, 10, 10, 0.5);
  color: #292929;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][disabled][link], .theme-default-dark button[matcha-button][disabled][link]:not([link=false]), .theme-default-dark button[matcha-button][disabled][link=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[link], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[link]:not([link=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[link=true], .theme-default-dark button[matcha-button][disabled=true][link], .theme-default-dark button[matcha-button][disabled=true][link]:not([link=false]), .theme-default-dark button[matcha-button][disabled=true][link=true],
.theme-default-dark a[matcha-button][disabled][link],
.theme-default-dark a[matcha-button][disabled][link]:not([link=false]),
.theme-default-dark a[matcha-button][disabled][link=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[link],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[link]:not([link=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[link=true],
.theme-default-dark a[matcha-button][disabled=true][link],
.theme-default-dark a[matcha-button][disabled=true][link]:not([link=false]),
.theme-default-dark a[matcha-button][disabled=true][link=true] {
  background: transparent;
  color: #292929;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][color=green][outline]:not([outline=false]) .ripple, .theme-default-dark button[matcha-button][color=green][basic]:not([basic=false]) .ripple,
.theme-default-dark a[matcha-button][color=green][outline]:not([outline=false]) .ripple,
.theme-default-dark a[matcha-button][color=green][basic]:not([basic=false]) .ripple {
  background: rgba(184, 222, 200, 0.2);
}
.theme-default-dark button[matcha-button][color=green][alpha]:not([alpha=false]),
.theme-default-dark a[matcha-button][color=green][alpha]:not([alpha=false]) {
  background: rgba(184, 222, 200, 0.2);
  color: #b8dec8;
}
.theme-default-dark button[matcha-button][color=green][alpha]:not([alpha=false]) matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=green][alpha]:not([alpha=false]) matcha-divider .border-color-disabled {
  border-color: #b8dec8 !important;
  opacity: 0.3 !important;
}
.theme-default-dark button[matcha-button][color=green][outline]:not([outline=false]), .theme-default-dark button[matcha-button][color=green][link]:not([link=false]), .theme-default-dark button[matcha-button][color=green][basic]:not([basic=false]),
.theme-default-dark a[matcha-button][color=green][outline]:not([outline=false]),
.theme-default-dark a[matcha-button][color=green][link]:not([link=false]),
.theme-default-dark a[matcha-button][color=green][basic]:not([basic=false]) {
  color: #b8dec8;
}
.theme-default-dark button[matcha-button][color=green][outline]:not([outline=false]) matcha-divider .border-color-disabled, .theme-default-dark button[matcha-button][color=green][link]:not([link=false]) matcha-divider .border-color-disabled, .theme-default-dark button[matcha-button][color=green][basic]:not([basic=false]) matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=green][outline]:not([outline=false]) matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=green][link]:not([link=false]) matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=green][basic]:not([basic=false]) matcha-divider .border-color-disabled {
  border-color: #b8dec8 !important;
  opacity: 0.3 !important;
}
.theme-default-dark button[matcha-button][color=green],
.theme-default-dark a[matcha-button][color=green] {
  background: #b8dec8;
  color: rgba(0, 0, 0, 0.87);
}
.theme-default-dark button[matcha-button][color=green] matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=green] matcha-divider .border-color-disabled {
  border-color: rgba(0, 0, 0, 0.87) !important;
  opacity: 0.3 !important;
}
.theme-default-dark button[matcha-button][color=green] .ripple,
.theme-default-dark a[matcha-button][color=green] .ripple {
  background: rgba(0, 0, 0, 0.2);
}
.theme-default-dark button[matcha-button][disabled][solid], .theme-default-dark button[matcha-button][disabled][solid]:not([solid=false]), .theme-default-dark button[matcha-button][disabled][solid=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[solid], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[solid]:not([solid=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[solid=true], .theme-default-dark button[matcha-button][disabled=true][solid], .theme-default-dark button[matcha-button][disabled=true][solid]:not([solid=false]), .theme-default-dark button[matcha-button][disabled=true][solid=true],
.theme-default-dark a[matcha-button][disabled][solid],
.theme-default-dark a[matcha-button][disabled][solid]:not([solid=false]),
.theme-default-dark a[matcha-button][disabled][solid=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[solid],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[solid]:not([solid=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[solid=true],
.theme-default-dark a[matcha-button][disabled=true][solid],
.theme-default-dark a[matcha-button][disabled=true][solid]:not([solid=false]),
.theme-default-dark a[matcha-button][disabled=true][solid=true] {
  background: #292929;
  color: rgba(226, 231, 233, 0.5);
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][disabled][outline], .theme-default-dark button[matcha-button][disabled][outline]:not([outline=false]), .theme-default-dark button[matcha-button][disabled][outline=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[outline], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[outline]:not([outline=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[outline=true], .theme-default-dark button[matcha-button][disabled=true][outline], .theme-default-dark button[matcha-button][disabled=true][outline]:not([outline=false]), .theme-default-dark button[matcha-button][disabled=true][outline=true],
.theme-default-dark a[matcha-button][disabled][outline],
.theme-default-dark a[matcha-button][disabled][outline]:not([outline=false]),
.theme-default-dark a[matcha-button][disabled][outline=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[outline],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[outline]:not([outline=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[outline=true],
.theme-default-dark a[matcha-button][disabled=true][outline],
.theme-default-dark a[matcha-button][disabled=true][outline]:not([outline=false]),
.theme-default-dark a[matcha-button][disabled=true][outline=true] {
  background: transparent;
  color: #292929;
  box-shadow: 0 0 0 2px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][disabled][basic], .theme-default-dark button[matcha-button][disabled][basic]:not([basic=false]), .theme-default-dark button[matcha-button][disabled][basic=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[basic], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[basic]:not([basic=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[basic=true], .theme-default-dark button[matcha-button][disabled=true][basic], .theme-default-dark button[matcha-button][disabled=true][basic]:not([basic=false]), .theme-default-dark button[matcha-button][disabled=true][basic=true],
.theme-default-dark a[matcha-button][disabled][basic],
.theme-default-dark a[matcha-button][disabled][basic]:not([basic=false]),
.theme-default-dark a[matcha-button][disabled][basic=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[basic],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[basic]:not([basic=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[basic=true],
.theme-default-dark a[matcha-button][disabled=true][basic],
.theme-default-dark a[matcha-button][disabled=true][basic]:not([basic=false]),
.theme-default-dark a[matcha-button][disabled=true][basic=true] {
  background: #141414;
  color: #292929;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][disabled][alpha], .theme-default-dark button[matcha-button][disabled][alpha]:not([alpha=false]), .theme-default-dark button[matcha-button][disabled][alpha=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[alpha], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[alpha]:not([alpha=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[alpha=true], .theme-default-dark button[matcha-button][disabled=true][alpha], .theme-default-dark button[matcha-button][disabled=true][alpha]:not([alpha=false]), .theme-default-dark button[matcha-button][disabled=true][alpha=true],
.theme-default-dark a[matcha-button][disabled][alpha],
.theme-default-dark a[matcha-button][disabled][alpha]:not([alpha=false]),
.theme-default-dark a[matcha-button][disabled][alpha=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[alpha],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[alpha]:not([alpha=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[alpha=true],
.theme-default-dark a[matcha-button][disabled=true][alpha],
.theme-default-dark a[matcha-button][disabled=true][alpha]:not([alpha=false]),
.theme-default-dark a[matcha-button][disabled=true][alpha=true] {
  background: rgba(10, 10, 10, 0.5);
  color: #292929;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][disabled][link], .theme-default-dark button[matcha-button][disabled][link]:not([link=false]), .theme-default-dark button[matcha-button][disabled][link=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[link], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[link]:not([link=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[link=true], .theme-default-dark button[matcha-button][disabled=true][link], .theme-default-dark button[matcha-button][disabled=true][link]:not([link=false]), .theme-default-dark button[matcha-button][disabled=true][link=true],
.theme-default-dark a[matcha-button][disabled][link],
.theme-default-dark a[matcha-button][disabled][link]:not([link=false]),
.theme-default-dark a[matcha-button][disabled][link=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[link],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[link]:not([link=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[link=true],
.theme-default-dark a[matcha-button][disabled=true][link],
.theme-default-dark a[matcha-button][disabled=true][link]:not([link=false]),
.theme-default-dark a[matcha-button][disabled=true][link=true] {
  background: transparent;
  color: #292929;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][color=light-green][outline]:not([outline=false]) .ripple, .theme-default-dark button[matcha-button][color=light-green][basic]:not([basic=false]) .ripple,
.theme-default-dark a[matcha-button][color=light-green][outline]:not([outline=false]) .ripple,
.theme-default-dark a[matcha-button][color=light-green][basic]:not([basic=false]) .ripple {
  background: rgba(212, 244, 192, 0.2);
}
.theme-default-dark button[matcha-button][color=light-green][alpha]:not([alpha=false]),
.theme-default-dark a[matcha-button][color=light-green][alpha]:not([alpha=false]) {
  background: rgba(212, 244, 192, 0.2);
  color: #D4F4C0;
}
.theme-default-dark button[matcha-button][color=light-green][alpha]:not([alpha=false]) matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=light-green][alpha]:not([alpha=false]) matcha-divider .border-color-disabled {
  border-color: #D4F4C0 !important;
  opacity: 0.3 !important;
}
.theme-default-dark button[matcha-button][color=light-green][outline]:not([outline=false]), .theme-default-dark button[matcha-button][color=light-green][link]:not([link=false]), .theme-default-dark button[matcha-button][color=light-green][basic]:not([basic=false]),
.theme-default-dark a[matcha-button][color=light-green][outline]:not([outline=false]),
.theme-default-dark a[matcha-button][color=light-green][link]:not([link=false]),
.theme-default-dark a[matcha-button][color=light-green][basic]:not([basic=false]) {
  color: #D4F4C0;
}
.theme-default-dark button[matcha-button][color=light-green][outline]:not([outline=false]) matcha-divider .border-color-disabled, .theme-default-dark button[matcha-button][color=light-green][link]:not([link=false]) matcha-divider .border-color-disabled, .theme-default-dark button[matcha-button][color=light-green][basic]:not([basic=false]) matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=light-green][outline]:not([outline=false]) matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=light-green][link]:not([link=false]) matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=light-green][basic]:not([basic=false]) matcha-divider .border-color-disabled {
  border-color: #D4F4C0 !important;
  opacity: 0.3 !important;
}
.theme-default-dark button[matcha-button][color=light-green],
.theme-default-dark a[matcha-button][color=light-green] {
  background: #D4F4C0;
  color: rgba(0, 0, 0, 0.87);
}
.theme-default-dark button[matcha-button][color=light-green] matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=light-green] matcha-divider .border-color-disabled {
  border-color: rgba(0, 0, 0, 0.87) !important;
  opacity: 0.3 !important;
}
.theme-default-dark button[matcha-button][color=light-green] .ripple,
.theme-default-dark a[matcha-button][color=light-green] .ripple {
  background: rgba(0, 0, 0, 0.2);
}
.theme-default-dark button[matcha-button][disabled][solid], .theme-default-dark button[matcha-button][disabled][solid]:not([solid=false]), .theme-default-dark button[matcha-button][disabled][solid=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[solid], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[solid]:not([solid=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[solid=true], .theme-default-dark button[matcha-button][disabled=true][solid], .theme-default-dark button[matcha-button][disabled=true][solid]:not([solid=false]), .theme-default-dark button[matcha-button][disabled=true][solid=true],
.theme-default-dark a[matcha-button][disabled][solid],
.theme-default-dark a[matcha-button][disabled][solid]:not([solid=false]),
.theme-default-dark a[matcha-button][disabled][solid=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[solid],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[solid]:not([solid=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[solid=true],
.theme-default-dark a[matcha-button][disabled=true][solid],
.theme-default-dark a[matcha-button][disabled=true][solid]:not([solid=false]),
.theme-default-dark a[matcha-button][disabled=true][solid=true] {
  background: #292929;
  color: rgba(226, 231, 233, 0.5);
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][disabled][outline], .theme-default-dark button[matcha-button][disabled][outline]:not([outline=false]), .theme-default-dark button[matcha-button][disabled][outline=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[outline], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[outline]:not([outline=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[outline=true], .theme-default-dark button[matcha-button][disabled=true][outline], .theme-default-dark button[matcha-button][disabled=true][outline]:not([outline=false]), .theme-default-dark button[matcha-button][disabled=true][outline=true],
.theme-default-dark a[matcha-button][disabled][outline],
.theme-default-dark a[matcha-button][disabled][outline]:not([outline=false]),
.theme-default-dark a[matcha-button][disabled][outline=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[outline],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[outline]:not([outline=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[outline=true],
.theme-default-dark a[matcha-button][disabled=true][outline],
.theme-default-dark a[matcha-button][disabled=true][outline]:not([outline=false]),
.theme-default-dark a[matcha-button][disabled=true][outline=true] {
  background: transparent;
  color: #292929;
  box-shadow: 0 0 0 2px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][disabled][basic], .theme-default-dark button[matcha-button][disabled][basic]:not([basic=false]), .theme-default-dark button[matcha-button][disabled][basic=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[basic], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[basic]:not([basic=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[basic=true], .theme-default-dark button[matcha-button][disabled=true][basic], .theme-default-dark button[matcha-button][disabled=true][basic]:not([basic=false]), .theme-default-dark button[matcha-button][disabled=true][basic=true],
.theme-default-dark a[matcha-button][disabled][basic],
.theme-default-dark a[matcha-button][disabled][basic]:not([basic=false]),
.theme-default-dark a[matcha-button][disabled][basic=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[basic],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[basic]:not([basic=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[basic=true],
.theme-default-dark a[matcha-button][disabled=true][basic],
.theme-default-dark a[matcha-button][disabled=true][basic]:not([basic=false]),
.theme-default-dark a[matcha-button][disabled=true][basic=true] {
  background: #141414;
  color: #292929;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][disabled][alpha], .theme-default-dark button[matcha-button][disabled][alpha]:not([alpha=false]), .theme-default-dark button[matcha-button][disabled][alpha=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[alpha], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[alpha]:not([alpha=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[alpha=true], .theme-default-dark button[matcha-button][disabled=true][alpha], .theme-default-dark button[matcha-button][disabled=true][alpha]:not([alpha=false]), .theme-default-dark button[matcha-button][disabled=true][alpha=true],
.theme-default-dark a[matcha-button][disabled][alpha],
.theme-default-dark a[matcha-button][disabled][alpha]:not([alpha=false]),
.theme-default-dark a[matcha-button][disabled][alpha=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[alpha],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[alpha]:not([alpha=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[alpha=true],
.theme-default-dark a[matcha-button][disabled=true][alpha],
.theme-default-dark a[matcha-button][disabled=true][alpha]:not([alpha=false]),
.theme-default-dark a[matcha-button][disabled=true][alpha=true] {
  background: rgba(10, 10, 10, 0.5);
  color: #292929;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][disabled][link], .theme-default-dark button[matcha-button][disabled][link]:not([link=false]), .theme-default-dark button[matcha-button][disabled][link=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[link], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[link]:not([link=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[link=true], .theme-default-dark button[matcha-button][disabled=true][link], .theme-default-dark button[matcha-button][disabled=true][link]:not([link=false]), .theme-default-dark button[matcha-button][disabled=true][link=true],
.theme-default-dark a[matcha-button][disabled][link],
.theme-default-dark a[matcha-button][disabled][link]:not([link=false]),
.theme-default-dark a[matcha-button][disabled][link=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[link],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[link]:not([link=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[link=true],
.theme-default-dark a[matcha-button][disabled=true][link],
.theme-default-dark a[matcha-button][disabled=true][link]:not([link=false]),
.theme-default-dark a[matcha-button][disabled=true][link=true] {
  background: transparent;
  color: #292929;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][color=lime][outline]:not([outline=false]) .ripple, .theme-default-dark button[matcha-button][color=lime][basic]:not([basic=false]) .ripple,
.theme-default-dark a[matcha-button][color=lime][outline]:not([outline=false]) .ripple,
.theme-default-dark a[matcha-button][color=lime][basic]:not([basic=false]) .ripple {
  background: rgba(219, 235, 179, 0.2);
}
.theme-default-dark button[matcha-button][color=lime][alpha]:not([alpha=false]),
.theme-default-dark a[matcha-button][color=lime][alpha]:not([alpha=false]) {
  background: rgba(219, 235, 179, 0.2);
  color: #dbebb3;
}
.theme-default-dark button[matcha-button][color=lime][alpha]:not([alpha=false]) matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=lime][alpha]:not([alpha=false]) matcha-divider .border-color-disabled {
  border-color: #dbebb3 !important;
  opacity: 0.3 !important;
}
.theme-default-dark button[matcha-button][color=lime][outline]:not([outline=false]), .theme-default-dark button[matcha-button][color=lime][link]:not([link=false]), .theme-default-dark button[matcha-button][color=lime][basic]:not([basic=false]),
.theme-default-dark a[matcha-button][color=lime][outline]:not([outline=false]),
.theme-default-dark a[matcha-button][color=lime][link]:not([link=false]),
.theme-default-dark a[matcha-button][color=lime][basic]:not([basic=false]) {
  color: #dbebb3;
}
.theme-default-dark button[matcha-button][color=lime][outline]:not([outline=false]) matcha-divider .border-color-disabled, .theme-default-dark button[matcha-button][color=lime][link]:not([link=false]) matcha-divider .border-color-disabled, .theme-default-dark button[matcha-button][color=lime][basic]:not([basic=false]) matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=lime][outline]:not([outline=false]) matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=lime][link]:not([link=false]) matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=lime][basic]:not([basic=false]) matcha-divider .border-color-disabled {
  border-color: #dbebb3 !important;
  opacity: 0.3 !important;
}
.theme-default-dark button[matcha-button][color=lime],
.theme-default-dark a[matcha-button][color=lime] {
  background: #dbebb3;
  color: rgba(0, 0, 0, 0.87);
}
.theme-default-dark button[matcha-button][color=lime] matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=lime] matcha-divider .border-color-disabled {
  border-color: rgba(0, 0, 0, 0.87) !important;
  opacity: 0.3 !important;
}
.theme-default-dark button[matcha-button][color=lime] .ripple,
.theme-default-dark a[matcha-button][color=lime] .ripple {
  background: rgba(0, 0, 0, 0.2);
}
.theme-default-dark button[matcha-button][disabled][solid], .theme-default-dark button[matcha-button][disabled][solid]:not([solid=false]), .theme-default-dark button[matcha-button][disabled][solid=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[solid], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[solid]:not([solid=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[solid=true], .theme-default-dark button[matcha-button][disabled=true][solid], .theme-default-dark button[matcha-button][disabled=true][solid]:not([solid=false]), .theme-default-dark button[matcha-button][disabled=true][solid=true],
.theme-default-dark a[matcha-button][disabled][solid],
.theme-default-dark a[matcha-button][disabled][solid]:not([solid=false]),
.theme-default-dark a[matcha-button][disabled][solid=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[solid],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[solid]:not([solid=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[solid=true],
.theme-default-dark a[matcha-button][disabled=true][solid],
.theme-default-dark a[matcha-button][disabled=true][solid]:not([solid=false]),
.theme-default-dark a[matcha-button][disabled=true][solid=true] {
  background: #292929;
  color: rgba(226, 231, 233, 0.5);
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][disabled][outline], .theme-default-dark button[matcha-button][disabled][outline]:not([outline=false]), .theme-default-dark button[matcha-button][disabled][outline=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[outline], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[outline]:not([outline=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[outline=true], .theme-default-dark button[matcha-button][disabled=true][outline], .theme-default-dark button[matcha-button][disabled=true][outline]:not([outline=false]), .theme-default-dark button[matcha-button][disabled=true][outline=true],
.theme-default-dark a[matcha-button][disabled][outline],
.theme-default-dark a[matcha-button][disabled][outline]:not([outline=false]),
.theme-default-dark a[matcha-button][disabled][outline=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[outline],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[outline]:not([outline=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[outline=true],
.theme-default-dark a[matcha-button][disabled=true][outline],
.theme-default-dark a[matcha-button][disabled=true][outline]:not([outline=false]),
.theme-default-dark a[matcha-button][disabled=true][outline=true] {
  background: transparent;
  color: #292929;
  box-shadow: 0 0 0 2px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][disabled][basic], .theme-default-dark button[matcha-button][disabled][basic]:not([basic=false]), .theme-default-dark button[matcha-button][disabled][basic=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[basic], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[basic]:not([basic=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[basic=true], .theme-default-dark button[matcha-button][disabled=true][basic], .theme-default-dark button[matcha-button][disabled=true][basic]:not([basic=false]), .theme-default-dark button[matcha-button][disabled=true][basic=true],
.theme-default-dark a[matcha-button][disabled][basic],
.theme-default-dark a[matcha-button][disabled][basic]:not([basic=false]),
.theme-default-dark a[matcha-button][disabled][basic=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[basic],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[basic]:not([basic=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[basic=true],
.theme-default-dark a[matcha-button][disabled=true][basic],
.theme-default-dark a[matcha-button][disabled=true][basic]:not([basic=false]),
.theme-default-dark a[matcha-button][disabled=true][basic=true] {
  background: #141414;
  color: #292929;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][disabled][alpha], .theme-default-dark button[matcha-button][disabled][alpha]:not([alpha=false]), .theme-default-dark button[matcha-button][disabled][alpha=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[alpha], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[alpha]:not([alpha=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[alpha=true], .theme-default-dark button[matcha-button][disabled=true][alpha], .theme-default-dark button[matcha-button][disabled=true][alpha]:not([alpha=false]), .theme-default-dark button[matcha-button][disabled=true][alpha=true],
.theme-default-dark a[matcha-button][disabled][alpha],
.theme-default-dark a[matcha-button][disabled][alpha]:not([alpha=false]),
.theme-default-dark a[matcha-button][disabled][alpha=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[alpha],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[alpha]:not([alpha=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[alpha=true],
.theme-default-dark a[matcha-button][disabled=true][alpha],
.theme-default-dark a[matcha-button][disabled=true][alpha]:not([alpha=false]),
.theme-default-dark a[matcha-button][disabled=true][alpha=true] {
  background: rgba(10, 10, 10, 0.5);
  color: #292929;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][disabled][link], .theme-default-dark button[matcha-button][disabled][link]:not([link=false]), .theme-default-dark button[matcha-button][disabled][link=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[link], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[link]:not([link=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[link=true], .theme-default-dark button[matcha-button][disabled=true][link], .theme-default-dark button[matcha-button][disabled=true][link]:not([link=false]), .theme-default-dark button[matcha-button][disabled=true][link=true],
.theme-default-dark a[matcha-button][disabled][link],
.theme-default-dark a[matcha-button][disabled][link]:not([link=false]),
.theme-default-dark a[matcha-button][disabled][link=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[link],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[link]:not([link=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[link=true],
.theme-default-dark a[matcha-button][disabled=true][link],
.theme-default-dark a[matcha-button][disabled=true][link]:not([link=false]),
.theme-default-dark a[matcha-button][disabled=true][link=true] {
  background: transparent;
  color: #292929;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][color=yellow][outline]:not([outline=false]) .ripple, .theme-default-dark button[matcha-button][color=yellow][basic]:not([basic=false]) .ripple,
.theme-default-dark a[matcha-button][color=yellow][outline]:not([outline=false]) .ripple,
.theme-default-dark a[matcha-button][color=yellow][basic]:not([basic=false]) .ripple {
  background: rgba(248, 237, 179, 0.2);
}
.theme-default-dark button[matcha-button][color=yellow][alpha]:not([alpha=false]),
.theme-default-dark a[matcha-button][color=yellow][alpha]:not([alpha=false]) {
  background: rgba(248, 237, 179, 0.2);
  color: #f8edb3;
}
.theme-default-dark button[matcha-button][color=yellow][alpha]:not([alpha=false]) matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=yellow][alpha]:not([alpha=false]) matcha-divider .border-color-disabled {
  border-color: #f8edb3 !important;
  opacity: 0.3 !important;
}
.theme-default-dark button[matcha-button][color=yellow][outline]:not([outline=false]), .theme-default-dark button[matcha-button][color=yellow][link]:not([link=false]), .theme-default-dark button[matcha-button][color=yellow][basic]:not([basic=false]),
.theme-default-dark a[matcha-button][color=yellow][outline]:not([outline=false]),
.theme-default-dark a[matcha-button][color=yellow][link]:not([link=false]),
.theme-default-dark a[matcha-button][color=yellow][basic]:not([basic=false]) {
  color: #f8edb3;
}
.theme-default-dark button[matcha-button][color=yellow][outline]:not([outline=false]) matcha-divider .border-color-disabled, .theme-default-dark button[matcha-button][color=yellow][link]:not([link=false]) matcha-divider .border-color-disabled, .theme-default-dark button[matcha-button][color=yellow][basic]:not([basic=false]) matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=yellow][outline]:not([outline=false]) matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=yellow][link]:not([link=false]) matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=yellow][basic]:not([basic=false]) matcha-divider .border-color-disabled {
  border-color: #f8edb3 !important;
  opacity: 0.3 !important;
}
.theme-default-dark button[matcha-button][color=yellow],
.theme-default-dark a[matcha-button][color=yellow] {
  background: #f8edb3;
  color: rgba(0, 0, 0, 0.87);
}
.theme-default-dark button[matcha-button][color=yellow] matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=yellow] matcha-divider .border-color-disabled {
  border-color: rgba(0, 0, 0, 0.87) !important;
  opacity: 0.3 !important;
}
.theme-default-dark button[matcha-button][color=yellow] .ripple,
.theme-default-dark a[matcha-button][color=yellow] .ripple {
  background: rgba(0, 0, 0, 0.2);
}
.theme-default-dark button[matcha-button][disabled][solid], .theme-default-dark button[matcha-button][disabled][solid]:not([solid=false]), .theme-default-dark button[matcha-button][disabled][solid=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[solid], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[solid]:not([solid=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[solid=true], .theme-default-dark button[matcha-button][disabled=true][solid], .theme-default-dark button[matcha-button][disabled=true][solid]:not([solid=false]), .theme-default-dark button[matcha-button][disabled=true][solid=true],
.theme-default-dark a[matcha-button][disabled][solid],
.theme-default-dark a[matcha-button][disabled][solid]:not([solid=false]),
.theme-default-dark a[matcha-button][disabled][solid=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[solid],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[solid]:not([solid=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[solid=true],
.theme-default-dark a[matcha-button][disabled=true][solid],
.theme-default-dark a[matcha-button][disabled=true][solid]:not([solid=false]),
.theme-default-dark a[matcha-button][disabled=true][solid=true] {
  background: #292929;
  color: rgba(226, 231, 233, 0.5);
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][disabled][outline], .theme-default-dark button[matcha-button][disabled][outline]:not([outline=false]), .theme-default-dark button[matcha-button][disabled][outline=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[outline], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[outline]:not([outline=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[outline=true], .theme-default-dark button[matcha-button][disabled=true][outline], .theme-default-dark button[matcha-button][disabled=true][outline]:not([outline=false]), .theme-default-dark button[matcha-button][disabled=true][outline=true],
.theme-default-dark a[matcha-button][disabled][outline],
.theme-default-dark a[matcha-button][disabled][outline]:not([outline=false]),
.theme-default-dark a[matcha-button][disabled][outline=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[outline],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[outline]:not([outline=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[outline=true],
.theme-default-dark a[matcha-button][disabled=true][outline],
.theme-default-dark a[matcha-button][disabled=true][outline]:not([outline=false]),
.theme-default-dark a[matcha-button][disabled=true][outline=true] {
  background: transparent;
  color: #292929;
  box-shadow: 0 0 0 2px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][disabled][basic], .theme-default-dark button[matcha-button][disabled][basic]:not([basic=false]), .theme-default-dark button[matcha-button][disabled][basic=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[basic], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[basic]:not([basic=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[basic=true], .theme-default-dark button[matcha-button][disabled=true][basic], .theme-default-dark button[matcha-button][disabled=true][basic]:not([basic=false]), .theme-default-dark button[matcha-button][disabled=true][basic=true],
.theme-default-dark a[matcha-button][disabled][basic],
.theme-default-dark a[matcha-button][disabled][basic]:not([basic=false]),
.theme-default-dark a[matcha-button][disabled][basic=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[basic],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[basic]:not([basic=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[basic=true],
.theme-default-dark a[matcha-button][disabled=true][basic],
.theme-default-dark a[matcha-button][disabled=true][basic]:not([basic=false]),
.theme-default-dark a[matcha-button][disabled=true][basic=true] {
  background: #141414;
  color: #292929;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][disabled][alpha], .theme-default-dark button[matcha-button][disabled][alpha]:not([alpha=false]), .theme-default-dark button[matcha-button][disabled][alpha=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[alpha], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[alpha]:not([alpha=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[alpha=true], .theme-default-dark button[matcha-button][disabled=true][alpha], .theme-default-dark button[matcha-button][disabled=true][alpha]:not([alpha=false]), .theme-default-dark button[matcha-button][disabled=true][alpha=true],
.theme-default-dark a[matcha-button][disabled][alpha],
.theme-default-dark a[matcha-button][disabled][alpha]:not([alpha=false]),
.theme-default-dark a[matcha-button][disabled][alpha=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[alpha],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[alpha]:not([alpha=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[alpha=true],
.theme-default-dark a[matcha-button][disabled=true][alpha],
.theme-default-dark a[matcha-button][disabled=true][alpha]:not([alpha=false]),
.theme-default-dark a[matcha-button][disabled=true][alpha=true] {
  background: rgba(10, 10, 10, 0.5);
  color: #292929;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][disabled][link], .theme-default-dark button[matcha-button][disabled][link]:not([link=false]), .theme-default-dark button[matcha-button][disabled][link=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[link], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[link]:not([link=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[link=true], .theme-default-dark button[matcha-button][disabled=true][link], .theme-default-dark button[matcha-button][disabled=true][link]:not([link=false]), .theme-default-dark button[matcha-button][disabled=true][link=true],
.theme-default-dark a[matcha-button][disabled][link],
.theme-default-dark a[matcha-button][disabled][link]:not([link=false]),
.theme-default-dark a[matcha-button][disabled][link=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[link],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[link]:not([link=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[link=true],
.theme-default-dark a[matcha-button][disabled=true][link],
.theme-default-dark a[matcha-button][disabled=true][link]:not([link=false]),
.theme-default-dark a[matcha-button][disabled=true][link=true] {
  background: transparent;
  color: #292929;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][color=amber][outline]:not([outline=false]) .ripple, .theme-default-dark button[matcha-button][color=amber][basic]:not([basic=false]) .ripple,
.theme-default-dark a[matcha-button][color=amber][outline]:not([outline=false]) .ripple,
.theme-default-dark a[matcha-button][color=amber][basic]:not([basic=false]) .ripple {
  background: rgba(254, 228, 186, 0.2);
}
.theme-default-dark button[matcha-button][color=amber][alpha]:not([alpha=false]),
.theme-default-dark a[matcha-button][color=amber][alpha]:not([alpha=false]) {
  background: rgba(254, 228, 186, 0.2);
  color: #fee4ba;
}
.theme-default-dark button[matcha-button][color=amber][alpha]:not([alpha=false]) matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=amber][alpha]:not([alpha=false]) matcha-divider .border-color-disabled {
  border-color: #fee4ba !important;
  opacity: 0.3 !important;
}
.theme-default-dark button[matcha-button][color=amber][outline]:not([outline=false]), .theme-default-dark button[matcha-button][color=amber][link]:not([link=false]), .theme-default-dark button[matcha-button][color=amber][basic]:not([basic=false]),
.theme-default-dark a[matcha-button][color=amber][outline]:not([outline=false]),
.theme-default-dark a[matcha-button][color=amber][link]:not([link=false]),
.theme-default-dark a[matcha-button][color=amber][basic]:not([basic=false]) {
  color: #fee4ba;
}
.theme-default-dark button[matcha-button][color=amber][outline]:not([outline=false]) matcha-divider .border-color-disabled, .theme-default-dark button[matcha-button][color=amber][link]:not([link=false]) matcha-divider .border-color-disabled, .theme-default-dark button[matcha-button][color=amber][basic]:not([basic=false]) matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=amber][outline]:not([outline=false]) matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=amber][link]:not([link=false]) matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=amber][basic]:not([basic=false]) matcha-divider .border-color-disabled {
  border-color: #fee4ba !important;
  opacity: 0.3 !important;
}
.theme-default-dark button[matcha-button][color=amber],
.theme-default-dark a[matcha-button][color=amber] {
  background: #fee4ba;
  color: rgba(0, 0, 0, 0.87);
}
.theme-default-dark button[matcha-button][color=amber] matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=amber] matcha-divider .border-color-disabled {
  border-color: rgba(0, 0, 0, 0.87) !important;
  opacity: 0.3 !important;
}
.theme-default-dark button[matcha-button][color=amber] .ripple,
.theme-default-dark a[matcha-button][color=amber] .ripple {
  background: rgba(0, 0, 0, 0.2);
}
.theme-default-dark button[matcha-button][disabled][solid], .theme-default-dark button[matcha-button][disabled][solid]:not([solid=false]), .theme-default-dark button[matcha-button][disabled][solid=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[solid], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[solid]:not([solid=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[solid=true], .theme-default-dark button[matcha-button][disabled=true][solid], .theme-default-dark button[matcha-button][disabled=true][solid]:not([solid=false]), .theme-default-dark button[matcha-button][disabled=true][solid=true],
.theme-default-dark a[matcha-button][disabled][solid],
.theme-default-dark a[matcha-button][disabled][solid]:not([solid=false]),
.theme-default-dark a[matcha-button][disabled][solid=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[solid],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[solid]:not([solid=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[solid=true],
.theme-default-dark a[matcha-button][disabled=true][solid],
.theme-default-dark a[matcha-button][disabled=true][solid]:not([solid=false]),
.theme-default-dark a[matcha-button][disabled=true][solid=true] {
  background: #292929;
  color: rgba(226, 231, 233, 0.5);
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][disabled][outline], .theme-default-dark button[matcha-button][disabled][outline]:not([outline=false]), .theme-default-dark button[matcha-button][disabled][outline=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[outline], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[outline]:not([outline=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[outline=true], .theme-default-dark button[matcha-button][disabled=true][outline], .theme-default-dark button[matcha-button][disabled=true][outline]:not([outline=false]), .theme-default-dark button[matcha-button][disabled=true][outline=true],
.theme-default-dark a[matcha-button][disabled][outline],
.theme-default-dark a[matcha-button][disabled][outline]:not([outline=false]),
.theme-default-dark a[matcha-button][disabled][outline=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[outline],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[outline]:not([outline=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[outline=true],
.theme-default-dark a[matcha-button][disabled=true][outline],
.theme-default-dark a[matcha-button][disabled=true][outline]:not([outline=false]),
.theme-default-dark a[matcha-button][disabled=true][outline=true] {
  background: transparent;
  color: #292929;
  box-shadow: 0 0 0 2px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][disabled][basic], .theme-default-dark button[matcha-button][disabled][basic]:not([basic=false]), .theme-default-dark button[matcha-button][disabled][basic=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[basic], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[basic]:not([basic=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[basic=true], .theme-default-dark button[matcha-button][disabled=true][basic], .theme-default-dark button[matcha-button][disabled=true][basic]:not([basic=false]), .theme-default-dark button[matcha-button][disabled=true][basic=true],
.theme-default-dark a[matcha-button][disabled][basic],
.theme-default-dark a[matcha-button][disabled][basic]:not([basic=false]),
.theme-default-dark a[matcha-button][disabled][basic=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[basic],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[basic]:not([basic=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[basic=true],
.theme-default-dark a[matcha-button][disabled=true][basic],
.theme-default-dark a[matcha-button][disabled=true][basic]:not([basic=false]),
.theme-default-dark a[matcha-button][disabled=true][basic=true] {
  background: #141414;
  color: #292929;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][disabled][alpha], .theme-default-dark button[matcha-button][disabled][alpha]:not([alpha=false]), .theme-default-dark button[matcha-button][disabled][alpha=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[alpha], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[alpha]:not([alpha=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[alpha=true], .theme-default-dark button[matcha-button][disabled=true][alpha], .theme-default-dark button[matcha-button][disabled=true][alpha]:not([alpha=false]), .theme-default-dark button[matcha-button][disabled=true][alpha=true],
.theme-default-dark a[matcha-button][disabled][alpha],
.theme-default-dark a[matcha-button][disabled][alpha]:not([alpha=false]),
.theme-default-dark a[matcha-button][disabled][alpha=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[alpha],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[alpha]:not([alpha=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[alpha=true],
.theme-default-dark a[matcha-button][disabled=true][alpha],
.theme-default-dark a[matcha-button][disabled=true][alpha]:not([alpha=false]),
.theme-default-dark a[matcha-button][disabled=true][alpha=true] {
  background: rgba(10, 10, 10, 0.5);
  color: #292929;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][disabled][link], .theme-default-dark button[matcha-button][disabled][link]:not([link=false]), .theme-default-dark button[matcha-button][disabled][link=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[link], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[link]:not([link=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[link=true], .theme-default-dark button[matcha-button][disabled=true][link], .theme-default-dark button[matcha-button][disabled=true][link]:not([link=false]), .theme-default-dark button[matcha-button][disabled=true][link=true],
.theme-default-dark a[matcha-button][disabled][link],
.theme-default-dark a[matcha-button][disabled][link]:not([link=false]),
.theme-default-dark a[matcha-button][disabled][link=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[link],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[link]:not([link=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[link=true],
.theme-default-dark a[matcha-button][disabled=true][link],
.theme-default-dark a[matcha-button][disabled=true][link]:not([link=false]),
.theme-default-dark a[matcha-button][disabled=true][link=true] {
  background: transparent;
  color: #292929;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][color=orange][outline]:not([outline=false]) .ripple, .theme-default-dark button[matcha-button][color=orange][basic]:not([basic=false]) .ripple,
.theme-default-dark a[matcha-button][color=orange][outline]:not([outline=false]) .ripple,
.theme-default-dark a[matcha-button][color=orange][basic]:not([basic=false]) .ripple {
  background: rgba(253, 215, 185, 0.2);
}
.theme-default-dark button[matcha-button][color=orange][alpha]:not([alpha=false]),
.theme-default-dark a[matcha-button][color=orange][alpha]:not([alpha=false]) {
  background: rgba(253, 215, 185, 0.2);
  color: #fdd7b9;
}
.theme-default-dark button[matcha-button][color=orange][alpha]:not([alpha=false]) matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=orange][alpha]:not([alpha=false]) matcha-divider .border-color-disabled {
  border-color: #fdd7b9 !important;
  opacity: 0.3 !important;
}
.theme-default-dark button[matcha-button][color=orange][outline]:not([outline=false]), .theme-default-dark button[matcha-button][color=orange][link]:not([link=false]), .theme-default-dark button[matcha-button][color=orange][basic]:not([basic=false]),
.theme-default-dark a[matcha-button][color=orange][outline]:not([outline=false]),
.theme-default-dark a[matcha-button][color=orange][link]:not([link=false]),
.theme-default-dark a[matcha-button][color=orange][basic]:not([basic=false]) {
  color: #fdd7b9;
}
.theme-default-dark button[matcha-button][color=orange][outline]:not([outline=false]) matcha-divider .border-color-disabled, .theme-default-dark button[matcha-button][color=orange][link]:not([link=false]) matcha-divider .border-color-disabled, .theme-default-dark button[matcha-button][color=orange][basic]:not([basic=false]) matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=orange][outline]:not([outline=false]) matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=orange][link]:not([link=false]) matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=orange][basic]:not([basic=false]) matcha-divider .border-color-disabled {
  border-color: #fdd7b9 !important;
  opacity: 0.3 !important;
}
.theme-default-dark button[matcha-button][color=orange],
.theme-default-dark a[matcha-button][color=orange] {
  background: #fdd7b9;
  color: rgba(0, 0, 0, 0.87);
}
.theme-default-dark button[matcha-button][color=orange] matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=orange] matcha-divider .border-color-disabled {
  border-color: rgba(0, 0, 0, 0.87) !important;
  opacity: 0.3 !important;
}
.theme-default-dark button[matcha-button][color=orange] .ripple,
.theme-default-dark a[matcha-button][color=orange] .ripple {
  background: rgba(0, 0, 0, 0.2);
}
.theme-default-dark button[matcha-button][disabled][solid], .theme-default-dark button[matcha-button][disabled][solid]:not([solid=false]), .theme-default-dark button[matcha-button][disabled][solid=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[solid], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[solid]:not([solid=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[solid=true], .theme-default-dark button[matcha-button][disabled=true][solid], .theme-default-dark button[matcha-button][disabled=true][solid]:not([solid=false]), .theme-default-dark button[matcha-button][disabled=true][solid=true],
.theme-default-dark a[matcha-button][disabled][solid],
.theme-default-dark a[matcha-button][disabled][solid]:not([solid=false]),
.theme-default-dark a[matcha-button][disabled][solid=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[solid],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[solid]:not([solid=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[solid=true],
.theme-default-dark a[matcha-button][disabled=true][solid],
.theme-default-dark a[matcha-button][disabled=true][solid]:not([solid=false]),
.theme-default-dark a[matcha-button][disabled=true][solid=true] {
  background: #292929;
  color: rgba(226, 231, 233, 0.5);
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][disabled][outline], .theme-default-dark button[matcha-button][disabled][outline]:not([outline=false]), .theme-default-dark button[matcha-button][disabled][outline=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[outline], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[outline]:not([outline=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[outline=true], .theme-default-dark button[matcha-button][disabled=true][outline], .theme-default-dark button[matcha-button][disabled=true][outline]:not([outline=false]), .theme-default-dark button[matcha-button][disabled=true][outline=true],
.theme-default-dark a[matcha-button][disabled][outline],
.theme-default-dark a[matcha-button][disabled][outline]:not([outline=false]),
.theme-default-dark a[matcha-button][disabled][outline=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[outline],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[outline]:not([outline=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[outline=true],
.theme-default-dark a[matcha-button][disabled=true][outline],
.theme-default-dark a[matcha-button][disabled=true][outline]:not([outline=false]),
.theme-default-dark a[matcha-button][disabled=true][outline=true] {
  background: transparent;
  color: #292929;
  box-shadow: 0 0 0 2px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][disabled][basic], .theme-default-dark button[matcha-button][disabled][basic]:not([basic=false]), .theme-default-dark button[matcha-button][disabled][basic=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[basic], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[basic]:not([basic=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[basic=true], .theme-default-dark button[matcha-button][disabled=true][basic], .theme-default-dark button[matcha-button][disabled=true][basic]:not([basic=false]), .theme-default-dark button[matcha-button][disabled=true][basic=true],
.theme-default-dark a[matcha-button][disabled][basic],
.theme-default-dark a[matcha-button][disabled][basic]:not([basic=false]),
.theme-default-dark a[matcha-button][disabled][basic=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[basic],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[basic]:not([basic=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[basic=true],
.theme-default-dark a[matcha-button][disabled=true][basic],
.theme-default-dark a[matcha-button][disabled=true][basic]:not([basic=false]),
.theme-default-dark a[matcha-button][disabled=true][basic=true] {
  background: #141414;
  color: #292929;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][disabled][alpha], .theme-default-dark button[matcha-button][disabled][alpha]:not([alpha=false]), .theme-default-dark button[matcha-button][disabled][alpha=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[alpha], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[alpha]:not([alpha=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[alpha=true], .theme-default-dark button[matcha-button][disabled=true][alpha], .theme-default-dark button[matcha-button][disabled=true][alpha]:not([alpha=false]), .theme-default-dark button[matcha-button][disabled=true][alpha=true],
.theme-default-dark a[matcha-button][disabled][alpha],
.theme-default-dark a[matcha-button][disabled][alpha]:not([alpha=false]),
.theme-default-dark a[matcha-button][disabled][alpha=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[alpha],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[alpha]:not([alpha=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[alpha=true],
.theme-default-dark a[matcha-button][disabled=true][alpha],
.theme-default-dark a[matcha-button][disabled=true][alpha]:not([alpha=false]),
.theme-default-dark a[matcha-button][disabled=true][alpha=true] {
  background: rgba(10, 10, 10, 0.5);
  color: #292929;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][disabled][link], .theme-default-dark button[matcha-button][disabled][link]:not([link=false]), .theme-default-dark button[matcha-button][disabled][link=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[link], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[link]:not([link=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[link=true], .theme-default-dark button[matcha-button][disabled=true][link], .theme-default-dark button[matcha-button][disabled=true][link]:not([link=false]), .theme-default-dark button[matcha-button][disabled=true][link=true],
.theme-default-dark a[matcha-button][disabled][link],
.theme-default-dark a[matcha-button][disabled][link]:not([link=false]),
.theme-default-dark a[matcha-button][disabled][link=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[link],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[link]:not([link=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[link=true],
.theme-default-dark a[matcha-button][disabled=true][link],
.theme-default-dark a[matcha-button][disabled=true][link]:not([link=false]),
.theme-default-dark a[matcha-button][disabled=true][link=true] {
  background: transparent;
  color: #292929;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][color=deep-orange][outline]:not([outline=false]) .ripple, .theme-default-dark button[matcha-button][color=deep-orange][basic]:not([basic=false]) .ripple,
.theme-default-dark a[matcha-button][color=deep-orange][outline]:not([outline=false]) .ripple,
.theme-default-dark a[matcha-button][color=deep-orange][basic]:not([basic=false]) .ripple {
  background: rgba(255, 204, 188, 0.2);
}
.theme-default-dark button[matcha-button][color=deep-orange][alpha]:not([alpha=false]),
.theme-default-dark a[matcha-button][color=deep-orange][alpha]:not([alpha=false]) {
  background: rgba(255, 204, 188, 0.2);
  color: #ffccbc;
}
.theme-default-dark button[matcha-button][color=deep-orange][alpha]:not([alpha=false]) matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=deep-orange][alpha]:not([alpha=false]) matcha-divider .border-color-disabled {
  border-color: #ffccbc !important;
  opacity: 0.3 !important;
}
.theme-default-dark button[matcha-button][color=deep-orange][outline]:not([outline=false]), .theme-default-dark button[matcha-button][color=deep-orange][link]:not([link=false]), .theme-default-dark button[matcha-button][color=deep-orange][basic]:not([basic=false]),
.theme-default-dark a[matcha-button][color=deep-orange][outline]:not([outline=false]),
.theme-default-dark a[matcha-button][color=deep-orange][link]:not([link=false]),
.theme-default-dark a[matcha-button][color=deep-orange][basic]:not([basic=false]) {
  color: #ffccbc;
}
.theme-default-dark button[matcha-button][color=deep-orange][outline]:not([outline=false]) matcha-divider .border-color-disabled, .theme-default-dark button[matcha-button][color=deep-orange][link]:not([link=false]) matcha-divider .border-color-disabled, .theme-default-dark button[matcha-button][color=deep-orange][basic]:not([basic=false]) matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=deep-orange][outline]:not([outline=false]) matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=deep-orange][link]:not([link=false]) matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=deep-orange][basic]:not([basic=false]) matcha-divider .border-color-disabled {
  border-color: #ffccbc !important;
  opacity: 0.3 !important;
}
.theme-default-dark button[matcha-button][color=deep-orange],
.theme-default-dark a[matcha-button][color=deep-orange] {
  background: #ffccbc;
  color: rgba(0, 0, 0, 0.87);
}
.theme-default-dark button[matcha-button][color=deep-orange] matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=deep-orange] matcha-divider .border-color-disabled {
  border-color: rgba(0, 0, 0, 0.87) !important;
  opacity: 0.3 !important;
}
.theme-default-dark button[matcha-button][color=deep-orange] .ripple,
.theme-default-dark a[matcha-button][color=deep-orange] .ripple {
  background: rgba(0, 0, 0, 0.2);
}
.theme-default-dark button[matcha-button][disabled][solid], .theme-default-dark button[matcha-button][disabled][solid]:not([solid=false]), .theme-default-dark button[matcha-button][disabled][solid=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[solid], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[solid]:not([solid=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[solid=true], .theme-default-dark button[matcha-button][disabled=true][solid], .theme-default-dark button[matcha-button][disabled=true][solid]:not([solid=false]), .theme-default-dark button[matcha-button][disabled=true][solid=true],
.theme-default-dark a[matcha-button][disabled][solid],
.theme-default-dark a[matcha-button][disabled][solid]:not([solid=false]),
.theme-default-dark a[matcha-button][disabled][solid=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[solid],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[solid]:not([solid=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[solid=true],
.theme-default-dark a[matcha-button][disabled=true][solid],
.theme-default-dark a[matcha-button][disabled=true][solid]:not([solid=false]),
.theme-default-dark a[matcha-button][disabled=true][solid=true] {
  background: #292929;
  color: rgba(226, 231, 233, 0.5);
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][disabled][outline], .theme-default-dark button[matcha-button][disabled][outline]:not([outline=false]), .theme-default-dark button[matcha-button][disabled][outline=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[outline], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[outline]:not([outline=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[outline=true], .theme-default-dark button[matcha-button][disabled=true][outline], .theme-default-dark button[matcha-button][disabled=true][outline]:not([outline=false]), .theme-default-dark button[matcha-button][disabled=true][outline=true],
.theme-default-dark a[matcha-button][disabled][outline],
.theme-default-dark a[matcha-button][disabled][outline]:not([outline=false]),
.theme-default-dark a[matcha-button][disabled][outline=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[outline],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[outline]:not([outline=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[outline=true],
.theme-default-dark a[matcha-button][disabled=true][outline],
.theme-default-dark a[matcha-button][disabled=true][outline]:not([outline=false]),
.theme-default-dark a[matcha-button][disabled=true][outline=true] {
  background: transparent;
  color: #292929;
  box-shadow: 0 0 0 2px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][disabled][basic], .theme-default-dark button[matcha-button][disabled][basic]:not([basic=false]), .theme-default-dark button[matcha-button][disabled][basic=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[basic], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[basic]:not([basic=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[basic=true], .theme-default-dark button[matcha-button][disabled=true][basic], .theme-default-dark button[matcha-button][disabled=true][basic]:not([basic=false]), .theme-default-dark button[matcha-button][disabled=true][basic=true],
.theme-default-dark a[matcha-button][disabled][basic],
.theme-default-dark a[matcha-button][disabled][basic]:not([basic=false]),
.theme-default-dark a[matcha-button][disabled][basic=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[basic],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[basic]:not([basic=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[basic=true],
.theme-default-dark a[matcha-button][disabled=true][basic],
.theme-default-dark a[matcha-button][disabled=true][basic]:not([basic=false]),
.theme-default-dark a[matcha-button][disabled=true][basic=true] {
  background: #141414;
  color: #292929;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][disabled][alpha], .theme-default-dark button[matcha-button][disabled][alpha]:not([alpha=false]), .theme-default-dark button[matcha-button][disabled][alpha=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[alpha], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[alpha]:not([alpha=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[alpha=true], .theme-default-dark button[matcha-button][disabled=true][alpha], .theme-default-dark button[matcha-button][disabled=true][alpha]:not([alpha=false]), .theme-default-dark button[matcha-button][disabled=true][alpha=true],
.theme-default-dark a[matcha-button][disabled][alpha],
.theme-default-dark a[matcha-button][disabled][alpha]:not([alpha=false]),
.theme-default-dark a[matcha-button][disabled][alpha=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[alpha],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[alpha]:not([alpha=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[alpha=true],
.theme-default-dark a[matcha-button][disabled=true][alpha],
.theme-default-dark a[matcha-button][disabled=true][alpha]:not([alpha=false]),
.theme-default-dark a[matcha-button][disabled=true][alpha=true] {
  background: rgba(10, 10, 10, 0.5);
  color: #292929;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][disabled][link], .theme-default-dark button[matcha-button][disabled][link]:not([link=false]), .theme-default-dark button[matcha-button][disabled][link=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[link], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[link]:not([link=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[link=true], .theme-default-dark button[matcha-button][disabled=true][link], .theme-default-dark button[matcha-button][disabled=true][link]:not([link=false]), .theme-default-dark button[matcha-button][disabled=true][link=true],
.theme-default-dark a[matcha-button][disabled][link],
.theme-default-dark a[matcha-button][disabled][link]:not([link=false]),
.theme-default-dark a[matcha-button][disabled][link=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[link],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[link]:not([link=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[link=true],
.theme-default-dark a[matcha-button][disabled=true][link],
.theme-default-dark a[matcha-button][disabled=true][link]:not([link=false]),
.theme-default-dark a[matcha-button][disabled=true][link=true] {
  background: transparent;
  color: #292929;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][color=brown][outline]:not([outline=false]) .ripple, .theme-default-dark button[matcha-button][color=brown][basic]:not([basic=false]) .ripple,
.theme-default-dark a[matcha-button][color=brown][outline]:not([outline=false]) .ripple,
.theme-default-dark a[matcha-button][color=brown][basic]:not([basic=false]) .ripple {
  background: rgba(215, 204, 200, 0.2);
}
.theme-default-dark button[matcha-button][color=brown][alpha]:not([alpha=false]),
.theme-default-dark a[matcha-button][color=brown][alpha]:not([alpha=false]) {
  background: rgba(215, 204, 200, 0.2);
  color: #d7ccc8;
}
.theme-default-dark button[matcha-button][color=brown][alpha]:not([alpha=false]) matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=brown][alpha]:not([alpha=false]) matcha-divider .border-color-disabled {
  border-color: #d7ccc8 !important;
  opacity: 0.3 !important;
}
.theme-default-dark button[matcha-button][color=brown][outline]:not([outline=false]), .theme-default-dark button[matcha-button][color=brown][link]:not([link=false]), .theme-default-dark button[matcha-button][color=brown][basic]:not([basic=false]),
.theme-default-dark a[matcha-button][color=brown][outline]:not([outline=false]),
.theme-default-dark a[matcha-button][color=brown][link]:not([link=false]),
.theme-default-dark a[matcha-button][color=brown][basic]:not([basic=false]) {
  color: #d7ccc8;
}
.theme-default-dark button[matcha-button][color=brown][outline]:not([outline=false]) matcha-divider .border-color-disabled, .theme-default-dark button[matcha-button][color=brown][link]:not([link=false]) matcha-divider .border-color-disabled, .theme-default-dark button[matcha-button][color=brown][basic]:not([basic=false]) matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=brown][outline]:not([outline=false]) matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=brown][link]:not([link=false]) matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=brown][basic]:not([basic=false]) matcha-divider .border-color-disabled {
  border-color: #d7ccc8 !important;
  opacity: 0.3 !important;
}
.theme-default-dark button[matcha-button][color=brown],
.theme-default-dark a[matcha-button][color=brown] {
  background: #d7ccc8;
  color: rgba(0, 0, 0, 0.87);
}
.theme-default-dark button[matcha-button][color=brown] matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=brown] matcha-divider .border-color-disabled {
  border-color: rgba(0, 0, 0, 0.87) !important;
  opacity: 0.3 !important;
}
.theme-default-dark button[matcha-button][color=brown] .ripple,
.theme-default-dark a[matcha-button][color=brown] .ripple {
  background: rgba(0, 0, 0, 0.2);
}
.theme-default-dark button[matcha-button][disabled][solid], .theme-default-dark button[matcha-button][disabled][solid]:not([solid=false]), .theme-default-dark button[matcha-button][disabled][solid=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[solid], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[solid]:not([solid=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[solid=true], .theme-default-dark button[matcha-button][disabled=true][solid], .theme-default-dark button[matcha-button][disabled=true][solid]:not([solid=false]), .theme-default-dark button[matcha-button][disabled=true][solid=true],
.theme-default-dark a[matcha-button][disabled][solid],
.theme-default-dark a[matcha-button][disabled][solid]:not([solid=false]),
.theme-default-dark a[matcha-button][disabled][solid=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[solid],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[solid]:not([solid=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[solid=true],
.theme-default-dark a[matcha-button][disabled=true][solid],
.theme-default-dark a[matcha-button][disabled=true][solid]:not([solid=false]),
.theme-default-dark a[matcha-button][disabled=true][solid=true] {
  background: #292929;
  color: rgba(226, 231, 233, 0.5);
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][disabled][outline], .theme-default-dark button[matcha-button][disabled][outline]:not([outline=false]), .theme-default-dark button[matcha-button][disabled][outline=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[outline], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[outline]:not([outline=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[outline=true], .theme-default-dark button[matcha-button][disabled=true][outline], .theme-default-dark button[matcha-button][disabled=true][outline]:not([outline=false]), .theme-default-dark button[matcha-button][disabled=true][outline=true],
.theme-default-dark a[matcha-button][disabled][outline],
.theme-default-dark a[matcha-button][disabled][outline]:not([outline=false]),
.theme-default-dark a[matcha-button][disabled][outline=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[outline],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[outline]:not([outline=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[outline=true],
.theme-default-dark a[matcha-button][disabled=true][outline],
.theme-default-dark a[matcha-button][disabled=true][outline]:not([outline=false]),
.theme-default-dark a[matcha-button][disabled=true][outline=true] {
  background: transparent;
  color: #292929;
  box-shadow: 0 0 0 2px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][disabled][basic], .theme-default-dark button[matcha-button][disabled][basic]:not([basic=false]), .theme-default-dark button[matcha-button][disabled][basic=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[basic], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[basic]:not([basic=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[basic=true], .theme-default-dark button[matcha-button][disabled=true][basic], .theme-default-dark button[matcha-button][disabled=true][basic]:not([basic=false]), .theme-default-dark button[matcha-button][disabled=true][basic=true],
.theme-default-dark a[matcha-button][disabled][basic],
.theme-default-dark a[matcha-button][disabled][basic]:not([basic=false]),
.theme-default-dark a[matcha-button][disabled][basic=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[basic],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[basic]:not([basic=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[basic=true],
.theme-default-dark a[matcha-button][disabled=true][basic],
.theme-default-dark a[matcha-button][disabled=true][basic]:not([basic=false]),
.theme-default-dark a[matcha-button][disabled=true][basic=true] {
  background: #141414;
  color: #292929;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][disabled][alpha], .theme-default-dark button[matcha-button][disabled][alpha]:not([alpha=false]), .theme-default-dark button[matcha-button][disabled][alpha=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[alpha], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[alpha]:not([alpha=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[alpha=true], .theme-default-dark button[matcha-button][disabled=true][alpha], .theme-default-dark button[matcha-button][disabled=true][alpha]:not([alpha=false]), .theme-default-dark button[matcha-button][disabled=true][alpha=true],
.theme-default-dark a[matcha-button][disabled][alpha],
.theme-default-dark a[matcha-button][disabled][alpha]:not([alpha=false]),
.theme-default-dark a[matcha-button][disabled][alpha=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[alpha],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[alpha]:not([alpha=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[alpha=true],
.theme-default-dark a[matcha-button][disabled=true][alpha],
.theme-default-dark a[matcha-button][disabled=true][alpha]:not([alpha=false]),
.theme-default-dark a[matcha-button][disabled=true][alpha=true] {
  background: rgba(10, 10, 10, 0.5);
  color: #292929;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][disabled][link], .theme-default-dark button[matcha-button][disabled][link]:not([link=false]), .theme-default-dark button[matcha-button][disabled][link=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[link], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[link]:not([link=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[link=true], .theme-default-dark button[matcha-button][disabled=true][link], .theme-default-dark button[matcha-button][disabled=true][link]:not([link=false]), .theme-default-dark button[matcha-button][disabled=true][link=true],
.theme-default-dark a[matcha-button][disabled][link],
.theme-default-dark a[matcha-button][disabled][link]:not([link=false]),
.theme-default-dark a[matcha-button][disabled][link=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[link],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[link]:not([link=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[link=true],
.theme-default-dark a[matcha-button][disabled=true][link],
.theme-default-dark a[matcha-button][disabled=true][link]:not([link=false]),
.theme-default-dark a[matcha-button][disabled=true][link=true] {
  background: transparent;
  color: #292929;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][color=grey][outline]:not([outline=false]) .ripple, .theme-default-dark button[matcha-button][color=grey][basic]:not([basic=false]) .ripple,
.theme-default-dark a[matcha-button][color=grey][outline]:not([outline=false]) .ripple,
.theme-default-dark a[matcha-button][color=grey][basic]:not([basic=false]) .ripple {
  background: rgba(222, 227, 230, 0.2);
}
.theme-default-dark button[matcha-button][color=grey][alpha]:not([alpha=false]),
.theme-default-dark a[matcha-button][color=grey][alpha]:not([alpha=false]) {
  background: rgba(222, 227, 230, 0.2);
  color: #DEE3E6;
}
.theme-default-dark button[matcha-button][color=grey][alpha]:not([alpha=false]) matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=grey][alpha]:not([alpha=false]) matcha-divider .border-color-disabled {
  border-color: #DEE3E6 !important;
  opacity: 0.3 !important;
}
.theme-default-dark button[matcha-button][color=grey][outline]:not([outline=false]), .theme-default-dark button[matcha-button][color=grey][link]:not([link=false]), .theme-default-dark button[matcha-button][color=grey][basic]:not([basic=false]),
.theme-default-dark a[matcha-button][color=grey][outline]:not([outline=false]),
.theme-default-dark a[matcha-button][color=grey][link]:not([link=false]),
.theme-default-dark a[matcha-button][color=grey][basic]:not([basic=false]) {
  color: #DEE3E6;
}
.theme-default-dark button[matcha-button][color=grey][outline]:not([outline=false]) matcha-divider .border-color-disabled, .theme-default-dark button[matcha-button][color=grey][link]:not([link=false]) matcha-divider .border-color-disabled, .theme-default-dark button[matcha-button][color=grey][basic]:not([basic=false]) matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=grey][outline]:not([outline=false]) matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=grey][link]:not([link=false]) matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=grey][basic]:not([basic=false]) matcha-divider .border-color-disabled {
  border-color: #DEE3E6 !important;
  opacity: 0.3 !important;
}
.theme-default-dark button[matcha-button][color=grey],
.theme-default-dark a[matcha-button][color=grey] {
  background: #DEE3E6;
  color: rgba(0, 0, 0, 0.87);
}
.theme-default-dark button[matcha-button][color=grey] matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=grey] matcha-divider .border-color-disabled {
  border-color: rgba(0, 0, 0, 0.87) !important;
  opacity: 0.3 !important;
}
.theme-default-dark button[matcha-button][color=grey] .ripple,
.theme-default-dark a[matcha-button][color=grey] .ripple {
  background: rgba(0, 0, 0, 0.2);
}
.theme-default-dark button[matcha-button][disabled][solid], .theme-default-dark button[matcha-button][disabled][solid]:not([solid=false]), .theme-default-dark button[matcha-button][disabled][solid=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[solid], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[solid]:not([solid=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[solid=true], .theme-default-dark button[matcha-button][disabled=true][solid], .theme-default-dark button[matcha-button][disabled=true][solid]:not([solid=false]), .theme-default-dark button[matcha-button][disabled=true][solid=true],
.theme-default-dark a[matcha-button][disabled][solid],
.theme-default-dark a[matcha-button][disabled][solid]:not([solid=false]),
.theme-default-dark a[matcha-button][disabled][solid=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[solid],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[solid]:not([solid=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[solid=true],
.theme-default-dark a[matcha-button][disabled=true][solid],
.theme-default-dark a[matcha-button][disabled=true][solid]:not([solid=false]),
.theme-default-dark a[matcha-button][disabled=true][solid=true] {
  background: #292929;
  color: rgba(226, 231, 233, 0.5);
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][disabled][outline], .theme-default-dark button[matcha-button][disabled][outline]:not([outline=false]), .theme-default-dark button[matcha-button][disabled][outline=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[outline], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[outline]:not([outline=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[outline=true], .theme-default-dark button[matcha-button][disabled=true][outline], .theme-default-dark button[matcha-button][disabled=true][outline]:not([outline=false]), .theme-default-dark button[matcha-button][disabled=true][outline=true],
.theme-default-dark a[matcha-button][disabled][outline],
.theme-default-dark a[matcha-button][disabled][outline]:not([outline=false]),
.theme-default-dark a[matcha-button][disabled][outline=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[outline],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[outline]:not([outline=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[outline=true],
.theme-default-dark a[matcha-button][disabled=true][outline],
.theme-default-dark a[matcha-button][disabled=true][outline]:not([outline=false]),
.theme-default-dark a[matcha-button][disabled=true][outline=true] {
  background: transparent;
  color: #292929;
  box-shadow: 0 0 0 2px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][disabled][basic], .theme-default-dark button[matcha-button][disabled][basic]:not([basic=false]), .theme-default-dark button[matcha-button][disabled][basic=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[basic], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[basic]:not([basic=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[basic=true], .theme-default-dark button[matcha-button][disabled=true][basic], .theme-default-dark button[matcha-button][disabled=true][basic]:not([basic=false]), .theme-default-dark button[matcha-button][disabled=true][basic=true],
.theme-default-dark a[matcha-button][disabled][basic],
.theme-default-dark a[matcha-button][disabled][basic]:not([basic=false]),
.theme-default-dark a[matcha-button][disabled][basic=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[basic],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[basic]:not([basic=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[basic=true],
.theme-default-dark a[matcha-button][disabled=true][basic],
.theme-default-dark a[matcha-button][disabled=true][basic]:not([basic=false]),
.theme-default-dark a[matcha-button][disabled=true][basic=true] {
  background: #141414;
  color: #292929;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][disabled][alpha], .theme-default-dark button[matcha-button][disabled][alpha]:not([alpha=false]), .theme-default-dark button[matcha-button][disabled][alpha=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[alpha], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[alpha]:not([alpha=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[alpha=true], .theme-default-dark button[matcha-button][disabled=true][alpha], .theme-default-dark button[matcha-button][disabled=true][alpha]:not([alpha=false]), .theme-default-dark button[matcha-button][disabled=true][alpha=true],
.theme-default-dark a[matcha-button][disabled][alpha],
.theme-default-dark a[matcha-button][disabled][alpha]:not([alpha=false]),
.theme-default-dark a[matcha-button][disabled][alpha=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[alpha],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[alpha]:not([alpha=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[alpha=true],
.theme-default-dark a[matcha-button][disabled=true][alpha],
.theme-default-dark a[matcha-button][disabled=true][alpha]:not([alpha=false]),
.theme-default-dark a[matcha-button][disabled=true][alpha=true] {
  background: rgba(10, 10, 10, 0.5);
  color: #292929;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][disabled][link], .theme-default-dark button[matcha-button][disabled][link]:not([link=false]), .theme-default-dark button[matcha-button][disabled][link=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[link], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[link]:not([link=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[link=true], .theme-default-dark button[matcha-button][disabled=true][link], .theme-default-dark button[matcha-button][disabled=true][link]:not([link=false]), .theme-default-dark button[matcha-button][disabled=true][link=true],
.theme-default-dark a[matcha-button][disabled][link],
.theme-default-dark a[matcha-button][disabled][link]:not([link=false]),
.theme-default-dark a[matcha-button][disabled][link=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[link],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[link]:not([link=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[link=true],
.theme-default-dark a[matcha-button][disabled=true][link],
.theme-default-dark a[matcha-button][disabled=true][link]:not([link=false]),
.theme-default-dark a[matcha-button][disabled=true][link=true] {
  background: transparent;
  color: #292929;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][color=blue-grey][outline]:not([outline=false]) .ripple, .theme-default-dark button[matcha-button][color=blue-grey][basic]:not([basic=false]) .ripple,
.theme-default-dark a[matcha-button][color=blue-grey][outline]:not([outline=false]) .ripple,
.theme-default-dark a[matcha-button][color=blue-grey][basic]:not([basic=false]) .ripple {
  background: rgba(226, 231, 233, 0.2);
}
.theme-default-dark button[matcha-button][color=blue-grey][alpha]:not([alpha=false]),
.theme-default-dark a[matcha-button][color=blue-grey][alpha]:not([alpha=false]) {
  background: rgba(226, 231, 233, 0.2);
  color: #E2E7E9;
}
.theme-default-dark button[matcha-button][color=blue-grey][alpha]:not([alpha=false]) matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=blue-grey][alpha]:not([alpha=false]) matcha-divider .border-color-disabled {
  border-color: #E2E7E9 !important;
  opacity: 0.3 !important;
}
.theme-default-dark button[matcha-button][color=blue-grey][outline]:not([outline=false]), .theme-default-dark button[matcha-button][color=blue-grey][link]:not([link=false]), .theme-default-dark button[matcha-button][color=blue-grey][basic]:not([basic=false]),
.theme-default-dark a[matcha-button][color=blue-grey][outline]:not([outline=false]),
.theme-default-dark a[matcha-button][color=blue-grey][link]:not([link=false]),
.theme-default-dark a[matcha-button][color=blue-grey][basic]:not([basic=false]) {
  color: #E2E7E9;
}
.theme-default-dark button[matcha-button][color=blue-grey][outline]:not([outline=false]) matcha-divider .border-color-disabled, .theme-default-dark button[matcha-button][color=blue-grey][link]:not([link=false]) matcha-divider .border-color-disabled, .theme-default-dark button[matcha-button][color=blue-grey][basic]:not([basic=false]) matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=blue-grey][outline]:not([outline=false]) matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=blue-grey][link]:not([link=false]) matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=blue-grey][basic]:not([basic=false]) matcha-divider .border-color-disabled {
  border-color: #E2E7E9 !important;
  opacity: 0.3 !important;
}
.theme-default-dark button[matcha-button][color=blue-grey],
.theme-default-dark a[matcha-button][color=blue-grey] {
  background: #E2E7E9;
  color: rgba(0, 0, 0, 0.87);
}
.theme-default-dark button[matcha-button][color=blue-grey] matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=blue-grey] matcha-divider .border-color-disabled {
  border-color: rgba(0, 0, 0, 0.87) !important;
  opacity: 0.3 !important;
}
.theme-default-dark button[matcha-button][color=blue-grey] .ripple,
.theme-default-dark a[matcha-button][color=blue-grey] .ripple {
  background: rgba(0, 0, 0, 0.2);
}
.theme-default-dark button[matcha-button][disabled][solid], .theme-default-dark button[matcha-button][disabled][solid]:not([solid=false]), .theme-default-dark button[matcha-button][disabled][solid=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[solid], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[solid]:not([solid=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[solid=true], .theme-default-dark button[matcha-button][disabled=true][solid], .theme-default-dark button[matcha-button][disabled=true][solid]:not([solid=false]), .theme-default-dark button[matcha-button][disabled=true][solid=true],
.theme-default-dark a[matcha-button][disabled][solid],
.theme-default-dark a[matcha-button][disabled][solid]:not([solid=false]),
.theme-default-dark a[matcha-button][disabled][solid=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[solid],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[solid]:not([solid=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[solid=true],
.theme-default-dark a[matcha-button][disabled=true][solid],
.theme-default-dark a[matcha-button][disabled=true][solid]:not([solid=false]),
.theme-default-dark a[matcha-button][disabled=true][solid=true] {
  background: #292929;
  color: rgba(226, 231, 233, 0.5);
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][disabled][outline], .theme-default-dark button[matcha-button][disabled][outline]:not([outline=false]), .theme-default-dark button[matcha-button][disabled][outline=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[outline], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[outline]:not([outline=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[outline=true], .theme-default-dark button[matcha-button][disabled=true][outline], .theme-default-dark button[matcha-button][disabled=true][outline]:not([outline=false]), .theme-default-dark button[matcha-button][disabled=true][outline=true],
.theme-default-dark a[matcha-button][disabled][outline],
.theme-default-dark a[matcha-button][disabled][outline]:not([outline=false]),
.theme-default-dark a[matcha-button][disabled][outline=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[outline],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[outline]:not([outline=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[outline=true],
.theme-default-dark a[matcha-button][disabled=true][outline],
.theme-default-dark a[matcha-button][disabled=true][outline]:not([outline=false]),
.theme-default-dark a[matcha-button][disabled=true][outline=true] {
  background: transparent;
  color: #292929;
  box-shadow: 0 0 0 2px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][disabled][basic], .theme-default-dark button[matcha-button][disabled][basic]:not([basic=false]), .theme-default-dark button[matcha-button][disabled][basic=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[basic], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[basic]:not([basic=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[basic=true], .theme-default-dark button[matcha-button][disabled=true][basic], .theme-default-dark button[matcha-button][disabled=true][basic]:not([basic=false]), .theme-default-dark button[matcha-button][disabled=true][basic=true],
.theme-default-dark a[matcha-button][disabled][basic],
.theme-default-dark a[matcha-button][disabled][basic]:not([basic=false]),
.theme-default-dark a[matcha-button][disabled][basic=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[basic],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[basic]:not([basic=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[basic=true],
.theme-default-dark a[matcha-button][disabled=true][basic],
.theme-default-dark a[matcha-button][disabled=true][basic]:not([basic=false]),
.theme-default-dark a[matcha-button][disabled=true][basic=true] {
  background: #141414;
  color: #292929;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][disabled][alpha], .theme-default-dark button[matcha-button][disabled][alpha]:not([alpha=false]), .theme-default-dark button[matcha-button][disabled][alpha=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[alpha], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[alpha]:not([alpha=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[alpha=true], .theme-default-dark button[matcha-button][disabled=true][alpha], .theme-default-dark button[matcha-button][disabled=true][alpha]:not([alpha=false]), .theme-default-dark button[matcha-button][disabled=true][alpha=true],
.theme-default-dark a[matcha-button][disabled][alpha],
.theme-default-dark a[matcha-button][disabled][alpha]:not([alpha=false]),
.theme-default-dark a[matcha-button][disabled][alpha=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[alpha],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[alpha]:not([alpha=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[alpha=true],
.theme-default-dark a[matcha-button][disabled=true][alpha],
.theme-default-dark a[matcha-button][disabled=true][alpha]:not([alpha=false]),
.theme-default-dark a[matcha-button][disabled=true][alpha=true] {
  background: rgba(10, 10, 10, 0.5);
  color: #292929;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][disabled][link], .theme-default-dark button[matcha-button][disabled][link]:not([link=false]), .theme-default-dark button[matcha-button][disabled][link=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[link], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[link]:not([link=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[link=true], .theme-default-dark button[matcha-button][disabled=true][link], .theme-default-dark button[matcha-button][disabled=true][link]:not([link=false]), .theme-default-dark button[matcha-button][disabled=true][link=true],
.theme-default-dark a[matcha-button][disabled][link],
.theme-default-dark a[matcha-button][disabled][link]:not([link=false]),
.theme-default-dark a[matcha-button][disabled][link=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[link],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[link]:not([link=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[link=true],
.theme-default-dark a[matcha-button][disabled=true][link],
.theme-default-dark a[matcha-button][disabled=true][link]:not([link=false]),
.theme-default-dark a[matcha-button][disabled=true][link=true] {
  background: transparent;
  color: #292929;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][color=primary][outline]:not([outline=false]) .ripple, .theme-default-dark button[matcha-button][color=primary][basic]:not([basic=false]) .ripple,
.theme-default-dark a[matcha-button][color=primary][outline]:not([outline=false]) .ripple,
.theme-default-dark a[matcha-button][color=primary][basic]:not([basic=false]) .ripple {
  background: rgba(138, 158, 168, 0.2);
}
.theme-default-dark button[matcha-button][color=primary][alpha]:not([alpha=false]),
.theme-default-dark a[matcha-button][color=primary][alpha]:not([alpha=false]) {
  background: rgba(138, 158, 168, 0.2);
  color: #8A9EA8;
}
.theme-default-dark button[matcha-button][color=primary][alpha]:not([alpha=false]) matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=primary][alpha]:not([alpha=false]) matcha-divider .border-color-disabled {
  border-color: #8A9EA8 !important;
  opacity: 0.3 !important;
}
.theme-default-dark button[matcha-button][color=primary][outline]:not([outline=false]), .theme-default-dark button[matcha-button][color=primary][link]:not([link=false]), .theme-default-dark button[matcha-button][color=primary][basic]:not([basic=false]),
.theme-default-dark a[matcha-button][color=primary][outline]:not([outline=false]),
.theme-default-dark a[matcha-button][color=primary][link]:not([link=false]),
.theme-default-dark a[matcha-button][color=primary][basic]:not([basic=false]) {
  color: #8A9EA8;
}
.theme-default-dark button[matcha-button][color=primary][outline]:not([outline=false]) matcha-divider .border-color-disabled, .theme-default-dark button[matcha-button][color=primary][link]:not([link=false]) matcha-divider .border-color-disabled, .theme-default-dark button[matcha-button][color=primary][basic]:not([basic=false]) matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=primary][outline]:not([outline=false]) matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=primary][link]:not([link=false]) matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=primary][basic]:not([basic=false]) matcha-divider .border-color-disabled {
  border-color: #8A9EA8 !important;
  opacity: 0.3 !important;
}
.theme-default-dark button[matcha-button][color=primary],
.theme-default-dark a[matcha-button][color=primary] {
  background: #8A9EA8;
  color: white;
}
.theme-default-dark button[matcha-button][color=primary] matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=primary] matcha-divider .border-color-disabled {
  border-color: white !important;
  opacity: 0.3 !important;
}
.theme-default-dark button[matcha-button][color=primary] .ripple,
.theme-default-dark a[matcha-button][color=primary] .ripple {
  background: rgba(255, 255, 255, 0.2);
}
.theme-default-dark button[matcha-button][disabled][solid], .theme-default-dark button[matcha-button][disabled][solid]:not([solid=false]), .theme-default-dark button[matcha-button][disabled][solid=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[solid], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[solid]:not([solid=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[solid=true], .theme-default-dark button[matcha-button][disabled=true][solid], .theme-default-dark button[matcha-button][disabled=true][solid]:not([solid=false]), .theme-default-dark button[matcha-button][disabled=true][solid=true],
.theme-default-dark a[matcha-button][disabled][solid],
.theme-default-dark a[matcha-button][disabled][solid]:not([solid=false]),
.theme-default-dark a[matcha-button][disabled][solid=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[solid],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[solid]:not([solid=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[solid=true],
.theme-default-dark a[matcha-button][disabled=true][solid],
.theme-default-dark a[matcha-button][disabled=true][solid]:not([solid=false]),
.theme-default-dark a[matcha-button][disabled=true][solid=true] {
  background: #292929;
  color: rgba(226, 231, 233, 0.5);
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][disabled][outline], .theme-default-dark button[matcha-button][disabled][outline]:not([outline=false]), .theme-default-dark button[matcha-button][disabled][outline=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[outline], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[outline]:not([outline=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[outline=true], .theme-default-dark button[matcha-button][disabled=true][outline], .theme-default-dark button[matcha-button][disabled=true][outline]:not([outline=false]), .theme-default-dark button[matcha-button][disabled=true][outline=true],
.theme-default-dark a[matcha-button][disabled][outline],
.theme-default-dark a[matcha-button][disabled][outline]:not([outline=false]),
.theme-default-dark a[matcha-button][disabled][outline=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[outline],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[outline]:not([outline=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[outline=true],
.theme-default-dark a[matcha-button][disabled=true][outline],
.theme-default-dark a[matcha-button][disabled=true][outline]:not([outline=false]),
.theme-default-dark a[matcha-button][disabled=true][outline=true] {
  background: transparent;
  color: #292929;
  box-shadow: 0 0 0 2px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][disabled][basic], .theme-default-dark button[matcha-button][disabled][basic]:not([basic=false]), .theme-default-dark button[matcha-button][disabled][basic=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[basic], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[basic]:not([basic=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[basic=true], .theme-default-dark button[matcha-button][disabled=true][basic], .theme-default-dark button[matcha-button][disabled=true][basic]:not([basic=false]), .theme-default-dark button[matcha-button][disabled=true][basic=true],
.theme-default-dark a[matcha-button][disabled][basic],
.theme-default-dark a[matcha-button][disabled][basic]:not([basic=false]),
.theme-default-dark a[matcha-button][disabled][basic=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[basic],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[basic]:not([basic=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[basic=true],
.theme-default-dark a[matcha-button][disabled=true][basic],
.theme-default-dark a[matcha-button][disabled=true][basic]:not([basic=false]),
.theme-default-dark a[matcha-button][disabled=true][basic=true] {
  background: #141414;
  color: #292929;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][disabled][alpha], .theme-default-dark button[matcha-button][disabled][alpha]:not([alpha=false]), .theme-default-dark button[matcha-button][disabled][alpha=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[alpha], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[alpha]:not([alpha=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[alpha=true], .theme-default-dark button[matcha-button][disabled=true][alpha], .theme-default-dark button[matcha-button][disabled=true][alpha]:not([alpha=false]), .theme-default-dark button[matcha-button][disabled=true][alpha=true],
.theme-default-dark a[matcha-button][disabled][alpha],
.theme-default-dark a[matcha-button][disabled][alpha]:not([alpha=false]),
.theme-default-dark a[matcha-button][disabled][alpha=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[alpha],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[alpha]:not([alpha=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[alpha=true],
.theme-default-dark a[matcha-button][disabled=true][alpha],
.theme-default-dark a[matcha-button][disabled=true][alpha]:not([alpha=false]),
.theme-default-dark a[matcha-button][disabled=true][alpha=true] {
  background: rgba(10, 10, 10, 0.5);
  color: #292929;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][disabled][link], .theme-default-dark button[matcha-button][disabled][link]:not([link=false]), .theme-default-dark button[matcha-button][disabled][link=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[link], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[link]:not([link=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[link=true], .theme-default-dark button[matcha-button][disabled=true][link], .theme-default-dark button[matcha-button][disabled=true][link]:not([link=false]), .theme-default-dark button[matcha-button][disabled=true][link=true],
.theme-default-dark a[matcha-button][disabled][link],
.theme-default-dark a[matcha-button][disabled][link]:not([link=false]),
.theme-default-dark a[matcha-button][disabled][link=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[link],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[link]:not([link=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[link=true],
.theme-default-dark a[matcha-button][disabled=true][link],
.theme-default-dark a[matcha-button][disabled=true][link]:not([link=false]),
.theme-default-dark a[matcha-button][disabled=true][link=true] {
  background: transparent;
  color: #292929;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][color=accent][outline]:not([outline=false]) .ripple, .theme-default-dark button[matcha-button][color=accent][basic]:not([basic=false]) .ripple,
.theme-default-dark a[matcha-button][color=accent][outline]:not([outline=false]) .ripple,
.theme-default-dark a[matcha-button][color=accent][basic]:not([basic=false]) .ripple {
  background: rgba(41, 121, 255, 0.2);
}
.theme-default-dark button[matcha-button][color=accent][alpha]:not([alpha=false]),
.theme-default-dark a[matcha-button][color=accent][alpha]:not([alpha=false]) {
  background: rgba(41, 121, 255, 0.2);
  color: #2979ff;
}
.theme-default-dark button[matcha-button][color=accent][alpha]:not([alpha=false]) matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=accent][alpha]:not([alpha=false]) matcha-divider .border-color-disabled {
  border-color: #2979ff !important;
  opacity: 0.3 !important;
}
.theme-default-dark button[matcha-button][color=accent][outline]:not([outline=false]), .theme-default-dark button[matcha-button][color=accent][link]:not([link=false]), .theme-default-dark button[matcha-button][color=accent][basic]:not([basic=false]),
.theme-default-dark a[matcha-button][color=accent][outline]:not([outline=false]),
.theme-default-dark a[matcha-button][color=accent][link]:not([link=false]),
.theme-default-dark a[matcha-button][color=accent][basic]:not([basic=false]) {
  color: #2979ff;
}
.theme-default-dark button[matcha-button][color=accent][outline]:not([outline=false]) matcha-divider .border-color-disabled, .theme-default-dark button[matcha-button][color=accent][link]:not([link=false]) matcha-divider .border-color-disabled, .theme-default-dark button[matcha-button][color=accent][basic]:not([basic=false]) matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=accent][outline]:not([outline=false]) matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=accent][link]:not([link=false]) matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=accent][basic]:not([basic=false]) matcha-divider .border-color-disabled {
  border-color: #2979ff !important;
  opacity: 0.3 !important;
}
.theme-default-dark button[matcha-button][color=accent],
.theme-default-dark a[matcha-button][color=accent] {
  background: #2979ff;
  color: white;
}
.theme-default-dark button[matcha-button][color=accent] matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=accent] matcha-divider .border-color-disabled {
  border-color: white !important;
  opacity: 0.3 !important;
}
.theme-default-dark button[matcha-button][color=accent] .ripple,
.theme-default-dark a[matcha-button][color=accent] .ripple {
  background: rgba(255, 255, 255, 0.2);
}
.theme-default-dark button[matcha-button][disabled][solid], .theme-default-dark button[matcha-button][disabled][solid]:not([solid=false]), .theme-default-dark button[matcha-button][disabled][solid=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[solid], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[solid]:not([solid=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[solid=true], .theme-default-dark button[matcha-button][disabled=true][solid], .theme-default-dark button[matcha-button][disabled=true][solid]:not([solid=false]), .theme-default-dark button[matcha-button][disabled=true][solid=true],
.theme-default-dark a[matcha-button][disabled][solid],
.theme-default-dark a[matcha-button][disabled][solid]:not([solid=false]),
.theme-default-dark a[matcha-button][disabled][solid=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[solid],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[solid]:not([solid=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[solid=true],
.theme-default-dark a[matcha-button][disabled=true][solid],
.theme-default-dark a[matcha-button][disabled=true][solid]:not([solid=false]),
.theme-default-dark a[matcha-button][disabled=true][solid=true] {
  background: #292929;
  color: rgba(226, 231, 233, 0.5);
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][disabled][outline], .theme-default-dark button[matcha-button][disabled][outline]:not([outline=false]), .theme-default-dark button[matcha-button][disabled][outline=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[outline], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[outline]:not([outline=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[outline=true], .theme-default-dark button[matcha-button][disabled=true][outline], .theme-default-dark button[matcha-button][disabled=true][outline]:not([outline=false]), .theme-default-dark button[matcha-button][disabled=true][outline=true],
.theme-default-dark a[matcha-button][disabled][outline],
.theme-default-dark a[matcha-button][disabled][outline]:not([outline=false]),
.theme-default-dark a[matcha-button][disabled][outline=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[outline],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[outline]:not([outline=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[outline=true],
.theme-default-dark a[matcha-button][disabled=true][outline],
.theme-default-dark a[matcha-button][disabled=true][outline]:not([outline=false]),
.theme-default-dark a[matcha-button][disabled=true][outline=true] {
  background: transparent;
  color: #292929;
  box-shadow: 0 0 0 2px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][disabled][basic], .theme-default-dark button[matcha-button][disabled][basic]:not([basic=false]), .theme-default-dark button[matcha-button][disabled][basic=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[basic], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[basic]:not([basic=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[basic=true], .theme-default-dark button[matcha-button][disabled=true][basic], .theme-default-dark button[matcha-button][disabled=true][basic]:not([basic=false]), .theme-default-dark button[matcha-button][disabled=true][basic=true],
.theme-default-dark a[matcha-button][disabled][basic],
.theme-default-dark a[matcha-button][disabled][basic]:not([basic=false]),
.theme-default-dark a[matcha-button][disabled][basic=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[basic],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[basic]:not([basic=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[basic=true],
.theme-default-dark a[matcha-button][disabled=true][basic],
.theme-default-dark a[matcha-button][disabled=true][basic]:not([basic=false]),
.theme-default-dark a[matcha-button][disabled=true][basic=true] {
  background: #141414;
  color: #292929;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][disabled][alpha], .theme-default-dark button[matcha-button][disabled][alpha]:not([alpha=false]), .theme-default-dark button[matcha-button][disabled][alpha=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[alpha], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[alpha]:not([alpha=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[alpha=true], .theme-default-dark button[matcha-button][disabled=true][alpha], .theme-default-dark button[matcha-button][disabled=true][alpha]:not([alpha=false]), .theme-default-dark button[matcha-button][disabled=true][alpha=true],
.theme-default-dark a[matcha-button][disabled][alpha],
.theme-default-dark a[matcha-button][disabled][alpha]:not([alpha=false]),
.theme-default-dark a[matcha-button][disabled][alpha=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[alpha],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[alpha]:not([alpha=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[alpha=true],
.theme-default-dark a[matcha-button][disabled=true][alpha],
.theme-default-dark a[matcha-button][disabled=true][alpha]:not([alpha=false]),
.theme-default-dark a[matcha-button][disabled=true][alpha=true] {
  background: rgba(10, 10, 10, 0.5);
  color: #292929;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][disabled][link], .theme-default-dark button[matcha-button][disabled][link]:not([link=false]), .theme-default-dark button[matcha-button][disabled][link=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[link], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[link]:not([link=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[link=true], .theme-default-dark button[matcha-button][disabled=true][link], .theme-default-dark button[matcha-button][disabled=true][link]:not([link=false]), .theme-default-dark button[matcha-button][disabled=true][link=true],
.theme-default-dark a[matcha-button][disabled][link],
.theme-default-dark a[matcha-button][disabled][link]:not([link=false]),
.theme-default-dark a[matcha-button][disabled][link=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[link],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[link]:not([link=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[link=true],
.theme-default-dark a[matcha-button][disabled=true][link],
.theme-default-dark a[matcha-button][disabled=true][link]:not([link=false]),
.theme-default-dark a[matcha-button][disabled=true][link=true] {
  background: transparent;
  color: #292929;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][color=warn][outline]:not([outline=false]) .ripple, .theme-default-dark button[matcha-button][color=warn][basic]:not([basic=false]) .ripple,
.theme-default-dark a[matcha-button][color=warn][outline]:not([outline=false]) .ripple,
.theme-default-dark a[matcha-button][color=warn][basic]:not([basic=false]) .ripple {
  background: rgba(242, 157, 157, 0.2);
}
.theme-default-dark button[matcha-button][color=warn][alpha]:not([alpha=false]),
.theme-default-dark a[matcha-button][color=warn][alpha]:not([alpha=false]) {
  background: rgba(242, 157, 157, 0.2);
  color: #f29d9d;
}
.theme-default-dark button[matcha-button][color=warn][alpha]:not([alpha=false]) matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=warn][alpha]:not([alpha=false]) matcha-divider .border-color-disabled {
  border-color: #f29d9d !important;
  opacity: 0.3 !important;
}
.theme-default-dark button[matcha-button][color=warn][outline]:not([outline=false]), .theme-default-dark button[matcha-button][color=warn][link]:not([link=false]), .theme-default-dark button[matcha-button][color=warn][basic]:not([basic=false]),
.theme-default-dark a[matcha-button][color=warn][outline]:not([outline=false]),
.theme-default-dark a[matcha-button][color=warn][link]:not([link=false]),
.theme-default-dark a[matcha-button][color=warn][basic]:not([basic=false]) {
  color: #f29d9d;
}
.theme-default-dark button[matcha-button][color=warn][outline]:not([outline=false]) matcha-divider .border-color-disabled, .theme-default-dark button[matcha-button][color=warn][link]:not([link=false]) matcha-divider .border-color-disabled, .theme-default-dark button[matcha-button][color=warn][basic]:not([basic=false]) matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=warn][outline]:not([outline=false]) matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=warn][link]:not([link=false]) matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=warn][basic]:not([basic=false]) matcha-divider .border-color-disabled {
  border-color: #f29d9d !important;
  opacity: 0.3 !important;
}
.theme-default-dark button[matcha-button][color=warn],
.theme-default-dark a[matcha-button][color=warn] {
  background: #f29d9d;
  color: rgba(0, 0, 0, 0.87);
}
.theme-default-dark button[matcha-button][color=warn] matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=warn] matcha-divider .border-color-disabled {
  border-color: rgba(0, 0, 0, 0.87) !important;
  opacity: 0.3 !important;
}
.theme-default-dark button[matcha-button][color=warn] .ripple,
.theme-default-dark a[matcha-button][color=warn] .ripple {
  background: rgba(0, 0, 0, 0.2);
}
.theme-default-dark button[matcha-button][disabled][solid], .theme-default-dark button[matcha-button][disabled][solid]:not([solid=false]), .theme-default-dark button[matcha-button][disabled][solid=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[solid], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[solid]:not([solid=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[solid=true], .theme-default-dark button[matcha-button][disabled=true][solid], .theme-default-dark button[matcha-button][disabled=true][solid]:not([solid=false]), .theme-default-dark button[matcha-button][disabled=true][solid=true],
.theme-default-dark a[matcha-button][disabled][solid],
.theme-default-dark a[matcha-button][disabled][solid]:not([solid=false]),
.theme-default-dark a[matcha-button][disabled][solid=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[solid],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[solid]:not([solid=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[solid=true],
.theme-default-dark a[matcha-button][disabled=true][solid],
.theme-default-dark a[matcha-button][disabled=true][solid]:not([solid=false]),
.theme-default-dark a[matcha-button][disabled=true][solid=true] {
  background: #292929;
  color: rgba(226, 231, 233, 0.5);
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][disabled][outline], .theme-default-dark button[matcha-button][disabled][outline]:not([outline=false]), .theme-default-dark button[matcha-button][disabled][outline=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[outline], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[outline]:not([outline=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[outline=true], .theme-default-dark button[matcha-button][disabled=true][outline], .theme-default-dark button[matcha-button][disabled=true][outline]:not([outline=false]), .theme-default-dark button[matcha-button][disabled=true][outline=true],
.theme-default-dark a[matcha-button][disabled][outline],
.theme-default-dark a[matcha-button][disabled][outline]:not([outline=false]),
.theme-default-dark a[matcha-button][disabled][outline=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[outline],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[outline]:not([outline=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[outline=true],
.theme-default-dark a[matcha-button][disabled=true][outline],
.theme-default-dark a[matcha-button][disabled=true][outline]:not([outline=false]),
.theme-default-dark a[matcha-button][disabled=true][outline=true] {
  background: transparent;
  color: #292929;
  box-shadow: 0 0 0 2px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][disabled][basic], .theme-default-dark button[matcha-button][disabled][basic]:not([basic=false]), .theme-default-dark button[matcha-button][disabled][basic=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[basic], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[basic]:not([basic=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[basic=true], .theme-default-dark button[matcha-button][disabled=true][basic], .theme-default-dark button[matcha-button][disabled=true][basic]:not([basic=false]), .theme-default-dark button[matcha-button][disabled=true][basic=true],
.theme-default-dark a[matcha-button][disabled][basic],
.theme-default-dark a[matcha-button][disabled][basic]:not([basic=false]),
.theme-default-dark a[matcha-button][disabled][basic=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[basic],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[basic]:not([basic=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[basic=true],
.theme-default-dark a[matcha-button][disabled=true][basic],
.theme-default-dark a[matcha-button][disabled=true][basic]:not([basic=false]),
.theme-default-dark a[matcha-button][disabled=true][basic=true] {
  background: #141414;
  color: #292929;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][disabled][alpha], .theme-default-dark button[matcha-button][disabled][alpha]:not([alpha=false]), .theme-default-dark button[matcha-button][disabled][alpha=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[alpha], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[alpha]:not([alpha=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[alpha=true], .theme-default-dark button[matcha-button][disabled=true][alpha], .theme-default-dark button[matcha-button][disabled=true][alpha]:not([alpha=false]), .theme-default-dark button[matcha-button][disabled=true][alpha=true],
.theme-default-dark a[matcha-button][disabled][alpha],
.theme-default-dark a[matcha-button][disabled][alpha]:not([alpha=false]),
.theme-default-dark a[matcha-button][disabled][alpha=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[alpha],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[alpha]:not([alpha=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[alpha=true],
.theme-default-dark a[matcha-button][disabled=true][alpha],
.theme-default-dark a[matcha-button][disabled=true][alpha]:not([alpha=false]),
.theme-default-dark a[matcha-button][disabled=true][alpha=true] {
  background: rgba(10, 10, 10, 0.5);
  color: #292929;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][disabled][link], .theme-default-dark button[matcha-button][disabled][link]:not([link=false]), .theme-default-dark button[matcha-button][disabled][link=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[link], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[link]:not([link=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[link=true], .theme-default-dark button[matcha-button][disabled=true][link], .theme-default-dark button[matcha-button][disabled=true][link]:not([link=false]), .theme-default-dark button[matcha-button][disabled=true][link=true],
.theme-default-dark a[matcha-button][disabled][link],
.theme-default-dark a[matcha-button][disabled][link]:not([link=false]),
.theme-default-dark a[matcha-button][disabled][link=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[link],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[link]:not([link=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[link=true],
.theme-default-dark a[matcha-button][disabled=true][link],
.theme-default-dark a[matcha-button][disabled=true][link]:not([link=false]),
.theme-default-dark a[matcha-button][disabled=true][link=true] {
  background: transparent;
  color: #292929;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][color=disabled][outline]:not([outline=false]) .ripple, .theme-default-dark button[matcha-button][color=disabled][basic]:not([basic=false]) .ripple,
.theme-default-dark a[matcha-button][color=disabled][outline]:not([outline=false]) .ripple,
.theme-default-dark a[matcha-button][color=disabled][basic]:not([basic=false]) .ripple {
  background: rgba(10, 10, 10, 0.5);
}
.theme-default-dark button[matcha-button][color=disabled][alpha]:not([alpha=false]),
.theme-default-dark a[matcha-button][color=disabled][alpha]:not([alpha=false]) {
  background: rgba(10, 10, 10, 0.5);
  color: #292929;
}
.theme-default-dark button[matcha-button][color=disabled][alpha]:not([alpha=false]) matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=disabled][alpha]:not([alpha=false]) matcha-divider .border-color-disabled {
  border-color: #292929 !important;
  opacity: 0.3 !important;
}
.theme-default-dark button[matcha-button][color=disabled][outline]:not([outline=false]), .theme-default-dark button[matcha-button][color=disabled][link]:not([link=false]), .theme-default-dark button[matcha-button][color=disabled][basic]:not([basic=false]),
.theme-default-dark a[matcha-button][color=disabled][outline]:not([outline=false]),
.theme-default-dark a[matcha-button][color=disabled][link]:not([link=false]),
.theme-default-dark a[matcha-button][color=disabled][basic]:not([basic=false]) {
  color: #292929;
}
.theme-default-dark button[matcha-button][color=disabled][outline]:not([outline=false]) matcha-divider .border-color-disabled, .theme-default-dark button[matcha-button][color=disabled][link]:not([link=false]) matcha-divider .border-color-disabled, .theme-default-dark button[matcha-button][color=disabled][basic]:not([basic=false]) matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=disabled][outline]:not([outline=false]) matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=disabled][link]:not([link=false]) matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=disabled][basic]:not([basic=false]) matcha-divider .border-color-disabled {
  border-color: #292929 !important;
  opacity: 0.3 !important;
}
.theme-default-dark button[matcha-button][color=disabled],
.theme-default-dark a[matcha-button][color=disabled] {
  background: #292929;
  color: #21282C;
}
.theme-default-dark button[matcha-button][color=disabled] matcha-divider .border-color-disabled,
.theme-default-dark a[matcha-button][color=disabled] matcha-divider .border-color-disabled {
  border-color: #21282C !important;
  opacity: 0.3 !important;
}
.theme-default-dark button[matcha-button][color=disabled] .ripple,
.theme-default-dark a[matcha-button][color=disabled] .ripple {
  background: rgba(33, 40, 44, 0.5);
}
.theme-default-dark button[matcha-button][disabled][solid], .theme-default-dark button[matcha-button][disabled][solid]:not([solid=false]), .theme-default-dark button[matcha-button][disabled][solid=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[solid], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[solid]:not([solid=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[solid=true], .theme-default-dark button[matcha-button][disabled=true][solid], .theme-default-dark button[matcha-button][disabled=true][solid]:not([solid=false]), .theme-default-dark button[matcha-button][disabled=true][solid=true],
.theme-default-dark a[matcha-button][disabled][solid],
.theme-default-dark a[matcha-button][disabled][solid]:not([solid=false]),
.theme-default-dark a[matcha-button][disabled][solid=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[solid],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[solid]:not([solid=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[solid=true],
.theme-default-dark a[matcha-button][disabled=true][solid],
.theme-default-dark a[matcha-button][disabled=true][solid]:not([solid=false]),
.theme-default-dark a[matcha-button][disabled=true][solid=true] {
  background: #292929;
  color: rgba(226, 231, 233, 0.5);
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][disabled][outline], .theme-default-dark button[matcha-button][disabled][outline]:not([outline=false]), .theme-default-dark button[matcha-button][disabled][outline=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[outline], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[outline]:not([outline=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[outline=true], .theme-default-dark button[matcha-button][disabled=true][outline], .theme-default-dark button[matcha-button][disabled=true][outline]:not([outline=false]), .theme-default-dark button[matcha-button][disabled=true][outline=true],
.theme-default-dark a[matcha-button][disabled][outline],
.theme-default-dark a[matcha-button][disabled][outline]:not([outline=false]),
.theme-default-dark a[matcha-button][disabled][outline=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[outline],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[outline]:not([outline=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[outline=true],
.theme-default-dark a[matcha-button][disabled=true][outline],
.theme-default-dark a[matcha-button][disabled=true][outline]:not([outline=false]),
.theme-default-dark a[matcha-button][disabled=true][outline=true] {
  background: transparent;
  color: #292929;
  box-shadow: 0 0 0 2px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][disabled][basic], .theme-default-dark button[matcha-button][disabled][basic]:not([basic=false]), .theme-default-dark button[matcha-button][disabled][basic=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[basic], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[basic]:not([basic=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[basic=true], .theme-default-dark button[matcha-button][disabled=true][basic], .theme-default-dark button[matcha-button][disabled=true][basic]:not([basic=false]), .theme-default-dark button[matcha-button][disabled=true][basic=true],
.theme-default-dark a[matcha-button][disabled][basic],
.theme-default-dark a[matcha-button][disabled][basic]:not([basic=false]),
.theme-default-dark a[matcha-button][disabled][basic=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[basic],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[basic]:not([basic=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[basic=true],
.theme-default-dark a[matcha-button][disabled=true][basic],
.theme-default-dark a[matcha-button][disabled=true][basic]:not([basic=false]),
.theme-default-dark a[matcha-button][disabled=true][basic=true] {
  background: #141414;
  color: #292929;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][disabled][alpha], .theme-default-dark button[matcha-button][disabled][alpha]:not([alpha=false]), .theme-default-dark button[matcha-button][disabled][alpha=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[alpha], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[alpha]:not([alpha=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[alpha=true], .theme-default-dark button[matcha-button][disabled=true][alpha], .theme-default-dark button[matcha-button][disabled=true][alpha]:not([alpha=false]), .theme-default-dark button[matcha-button][disabled=true][alpha=true],
.theme-default-dark a[matcha-button][disabled][alpha],
.theme-default-dark a[matcha-button][disabled][alpha]:not([alpha=false]),
.theme-default-dark a[matcha-button][disabled][alpha=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[alpha],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[alpha]:not([alpha=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[alpha=true],
.theme-default-dark a[matcha-button][disabled=true][alpha],
.theme-default-dark a[matcha-button][disabled=true][alpha]:not([alpha=false]),
.theme-default-dark a[matcha-button][disabled=true][alpha=true] {
  background: rgba(10, 10, 10, 0.5);
  color: #292929;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button][disabled][link], .theme-default-dark button[matcha-button][disabled][link]:not([link=false]), .theme-default-dark button[matcha-button][disabled][link=true], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[link], .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[link]:not([link=false]), .theme-default-dark button[matcha-button][disabled]:not([disabled=false])[link=true], .theme-default-dark button[matcha-button][disabled=true][link], .theme-default-dark button[matcha-button][disabled=true][link]:not([link=false]), .theme-default-dark button[matcha-button][disabled=true][link=true],
.theme-default-dark a[matcha-button][disabled][link],
.theme-default-dark a[matcha-button][disabled][link]:not([link=false]),
.theme-default-dark a[matcha-button][disabled][link=true],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[link],
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[link]:not([link=false]),
.theme-default-dark a[matcha-button][disabled]:not([disabled=false])[link=true],
.theme-default-dark a[matcha-button][disabled=true][link],
.theme-default-dark a[matcha-button][disabled=true][link]:not([link=false]),
.theme-default-dark a[matcha-button][disabled=true][link=true] {
  background: transparent;
  color: #292929;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-dark button[matcha-button],
.theme-default-dark a[matcha-button] {
  border: 0px solid currentColor;
}
.theme-default-dark button[matcha-button][disabled],
.theme-default-dark a[matcha-button][disabled] {
  background-color: #292929;
  color: rgba(226, 231, 233, 0.5);
  border-color: #292929;
}
.theme-default-dark button[matcha-button][outline]:not([outline=false]),
.theme-default-dark a[matcha-button][outline]:not([outline=false]) {
  border: 0px solid currentColor;
  background: transparent;
}
.theme-default-dark button[matcha-button][outline]:not([outline=false]):not([color]),
.theme-default-dark a[matcha-button][outline]:not([outline=false]):not([color]) {
  border-color: #E2E7E9;
  color: #E2E7E9;
}
.theme-default-dark button[matcha-button][outline]:not([outline=false])[disabled],
.theme-default-dark a[matcha-button][outline]:not([outline=false])[disabled] {
  box-shadow: 0 0 0 2px #21282C;
  color: #21282C !important;
}
.theme-default-dark button[matcha-button][basic]:not([basic=false]),
.theme-default-dark a[matcha-button][basic]:not([basic=false]) {
  background: #141414;
}
.theme-default-dark button[matcha-button][basic]:not([basic=false]):not([color]),
.theme-default-dark a[matcha-button][basic]:not([basic=false]):not([color]) {
  color: #E2E7E9;
}
.theme-default-dark button[matcha-button][basic]:not([basic=false])[disabled],
.theme-default-dark a[matcha-button][basic]:not([basic=false])[disabled] {
  color: #21282C !important;
}
.theme-default-dark button[matcha-button][basic]:not([basic=false])[alpha]:not([alpha=false]),
.theme-default-dark a[matcha-button][basic]:not([basic=false])[alpha]:not([alpha=false]) {
  background: transparent;
}
.theme-default-dark button[matcha-button][alpha]:not([alpha=false]):not([color]),
.theme-default-dark a[matcha-button][alpha]:not([alpha=false]):not([color]) {
  background: rgba(226, 231, 233, 0.2);
  border-color: #E2E7E9;
  color: #E2E7E9;
}
.theme-default-dark button[matcha-button][alpha]:not([alpha=false])[disabled],
.theme-default-dark a[matcha-button][alpha]:not([alpha=false])[disabled] {
  background: rgba(10, 10, 10, 0.5);
}
.theme-default-dark button[matcha-button][link]:not([link=false]),
.theme-default-dark a[matcha-button][link]:not([link=false]) {
  background-color: transparent;
}
.theme-default-dark button[matcha-button][link]:not([link=false]):not([color]),
.theme-default-dark a[matcha-button][link]:not([link=false]):not([color]) {
  color: #E2E7E9;
}
.theme-default-dark [matchaRipple] .ripple {
  transform-origin: center;
  pointer-events: none;
}
.theme-default-dark .matcha-tooltip-content {
  background-color: #E2E7E9;
  color: #21282C;
}
.theme-default-dark .matcha-tooltip-content:not(.matcha-tooltip-content_below):not(.matcha-tooltip-content_left):not(.matcha-tooltip-content_right)::after {
  border-color: #E2E7E9 transparent transparent transparent;
}
.theme-default-dark .matcha-tooltip-content_below::before {
  border-color: transparent transparent #E2E7E9 transparent;
}
.theme-default-dark .matcha-tooltip-content_left::after {
  border-color: transparent transparent transparent #E2E7E9;
}
.theme-default-dark .matcha-tooltip-content_right::after {
  border-color: transparent #E2E7E9 transparent transparent;
}
.theme-default-dark .matcha-header__content__title__icon {
  color: #435056;
}
.theme-default-dark .matcha-header__content__options {
  background: #141414;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.033), 0px 2px 2px 0px rgba(0, 0, 0, 0.033), 0px 2px 2px 0px rgba(0, 0, 0, 0.033);
}
@media screen and (min-width: 1024px) {
  .theme-default-dark .matcha-header__content {
    background: #141414;
    box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.033), 0px 2px 2px 0px rgba(0, 0, 0, 0.033), 0px 2px 2px 0px rgba(0, 0, 0, 0.033);
  }
  .theme-default-dark .matcha-header__content__title__icon {
    color: #435056;
  }
  .theme-default-dark .matcha-header__content__options {
    background: transparent;
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.033), 0px 0px 0px 0px rgba(0, 0, 0, 0.033), 0px 0px 0px 0px rgba(0, 0, 0, 0.033);
  }
}
.theme-default-dark .matcha-menu {
  position: relative;
}
.theme-default-dark .matcha-menu .matcha-menu-trigger {
  line-height: 48px;
}
.theme-default-dark .matcha-menu .menu {
  position: absolute;
  background: white;
  display: none;
  flex-direction: column;
  z-index: 1000;
}
.theme-default-dark .matcha-menu .menu.show {
  display: flex;
  left: 100%;
}
.theme-default-dark .matcha-menu .menu-item {
  position: relative;
}
.theme-default-dark .matcha-menu .menu-item button {
  background: white;
  border: none;
  padding: 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  height: 48px;
  appearance: auto;
  text-rendering: auto;
  letter-spacing: normal;
  word-spacing: normal;
  line-height: normal;
  text-transform: none;
  text-indent: 0px;
  text-shadow: none;
  display: inline-block;
  text-align: center;
  align-items: flex-start;
  cursor: default;
  box-sizing: border-box;
}
.theme-default-dark .matcha-menu .menu-item button * {
  pointer-events: none;
}
.theme-default-dark .matcha-menu .submenu {
  position: absolute;
  display: none;
}
.theme-default-dark .matcha-menu .menu-item:hover > .submenu {
  display: block;
  z-index: 1001; /* Ensure submenus appear above other content */
  position: relative;
  top: -48px;
}
.theme-default-dark .matcha-drop-list {
  display: block;
  position: relative;
}
.theme-default-dark .matcha-drop-list-container {
  position: relative;
  min-height: 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0px;
  border-radius: 8px;
  border-width: 0px;
  transition: all 0.2s ease;
}
.theme-default-dark .matcha-drop-list-container.matcha-drop-list-receiving {
  background-color: rgba(138, 158, 168, 0.2);
  border-color: #8A9EA8;
  border-width: 2px;
  border-style: dashed;
  border-radius: 8px;
  padding: 8px;
  transition: all 0.2s ease;
}
.theme-default-dark .matcha-drop-list-container.matcha-drop-list-receiving::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 25%, rgba(138, 158, 168, 0.2) 25%, rgba(138, 158, 168, 0.2) 50%, transparent 50%, transparent 75%, rgba(138, 158, 168, 0.2) 75%, rgba(138, 158, 168, 0.2));
  background-size: 16px 16px;
  animation: drop-zone-animation 2s linear infinite;
  border-radius: 6px;
  opacity: 0.4;
}
.theme-default-dark .matcha-drop-list-container.matcha-drop-list-can-accept {
  background-color: rgba(184, 222, 200, 0.2);
  border-color: #b8dec8;
  cursor: copy;
}
.theme-default-dark .matcha-drop-list-container.matcha-drop-list-can-accept::before {
  background: linear-gradient(45deg, transparent 25%, rgba(184, 222, 200, 0.2) 25%, rgba(184, 222, 200, 0.2) 50%, transparent 50%, transparent 75%, rgba(184, 222, 200, 0.2) 75%, rgba(184, 222, 200, 0.2));
  background-size: 16px 16px;
  animation: drop-zone-animation 1.5s linear infinite;
  opacity: 0.5;
}
.theme-default-dark .matcha-drop-list-container.matcha-drop-list-cannot-accept {
  background-color: rgba(247, 196, 196, 0.2);
  border-color: #f7c4c4;
  cursor: not-allowed;
}
.theme-default-dark .matcha-drop-list-container.matcha-drop-list-cannot-accept::before {
  background: linear-gradient(45deg, transparent 25%, rgba(247, 196, 196, 0.2) 25%, rgba(247, 196, 196, 0.2) 50%, transparent 50%, transparent 75%, rgba(247, 196, 196, 0.2) 75%, rgba(247, 196, 196, 0.2));
  background-size: 16px 16px;
  animation: drop-zone-animation 0.8s linear infinite;
  opacity: 0.6;
}
.theme-default-dark .matcha-drop-list-container.matcha-drop-list-disabled {
  opacity: 0.6;
  pointer-events: none;
}
.theme-default-dark .matcha-drag-item {
  position: relative;
  display: flex;
  padding: 12px;
  border-radius: 6px;
  transition: all 0.2s ease;
  -webkit-user-select: none;
          user-select: none;
  background-color: #141414;
  color: #E2E7E9;
}
.theme-default-dark .matcha-drag-item:last-child {
  margin-bottom: 0;
}
.theme-default-dark .matcha-drag-item.matcha-drag-dragging {
  z-index: 1000;
  cursor: grabbing;
  position: relative;
  box-shadow: 0 8px 25px rgba(33, 40, 44, 0.5);
  background-color: #141414;
  transform: scale(1.02);
  opacity: 0.95;
}
.theme-default-dark .matcha-drag-item.matcha-drag-dragging::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  border-radius: 8px;
  z-index: -1;
  opacity: 0.1;
  background: linear-gradient(45deg, #141414, #8A9EA8);
  animation: drag-glow 1s ease-in-out infinite alternate;
}
.theme-default-dark .matcha-drag-item.matcha-drag-disabled {
  cursor: not-allowed;
  opacity: 0.7;
}
.theme-default-dark .matcha-drag-item.disabled-item {
  cursor: not-allowed;
  opacity: 0.7;
}
.theme-default-dark .matcha-drag-handle {
  cursor: grab;
  touch-action: none;
}
.theme-default-dark .matcha-drag-handle:active {
  cursor: grabbing;
}
.theme-default-dark .matcha-drag-handle.disabled {
  cursor: not-allowed;
}
.theme-default-dark .item-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.theme-default-dark .item-content .item-title {
  font-weight: 500;
  color: #E2E7E9;
}
.theme-default-dark .item-content .item-title.completed {
  text-decoration: line-through;
  opacity: 0.7;
}
.theme-default-dark .item-content .item-id {
  font-size: 12px;
  font-family: monospace;
  color: rgba(33, 40, 44, 0.5);
}
.theme-default-dark .item-content small {
  font-size: 11px;
  font-style: italic;
  color: rgba(226, 231, 233, 0.2);
}
.theme-default-dark .item-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.theme-default-dark .item-actions i {
  font-size: 18px;
}
.theme-default-dark .matcha-drop-indicator {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  opacity: 0;
  transition: opacity 0.2s ease;
  transform: translateY(-8px);
  z-index: 1000;
  pointer-events: none;
  margin: 0;
  border-radius: 1px;
  background-color: #2979ff;
}
.theme-default-dark .matcha-drop-indicator.active {
  opacity: 1;
}
.theme-default-dark .matcha-drop-list-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
.theme-default-dark .matcha-drop-list-placeholder .matcha-drop-list-empty-placeholder {
  font-style: italic;
  padding: 20px;
  text-align: center;
  font-size: 14px;
  border-radius: 4px;
  transition: all 0.2s ease;
  color: rgba(33, 40, 44, 0.5);
  border-color: rgba(226, 231, 233, 0.2);
}
.theme-default-dark .matcha-drop-list-placeholder .matcha-drop-list-empty-placeholder.can-accept {
  color: #b8dec8;
  border-color: #b8dec8;
  background-color: rgba(184, 222, 200, 0.2);
}
.theme-default-dark .matcha-drop-list-placeholder .matcha-drop-list-empty-placeholder.cannot-accept {
  color: #f7c4c4;
  border-color: #f7c4c4;
  background-color: rgba(247, 196, 196, 0.2);
  animation: shake 0.5s ease-in-out;
}
@media (prefers-contrast: high) {
  .theme-default-dark .matcha-drop-list-container.matcha-drop-list-receiving {
    border-color: #E2E7E9;
    background-color: rgba(226, 231, 233, 0.2);
  }
  .theme-default-dark .matcha-drag-item.matcha-drag-dragging {
    border: 2px solid #E2E7E9;
  }
}
.theme-default-dark .matcha-form-field input[type=text],
.theme-default-dark .matcha-form-field input[type=email],
.theme-default-dark .matcha-form-field input[type=tel],
.theme-default-dark .matcha-form-field input[type=url],
.theme-default-dark .matcha-form-field input[type=password],
.theme-default-dark .matcha-form-field input[type=number],
.theme-default-dark .matcha-form-field input[type=search],
.theme-default-dark .matcha-form-field input[type=date],
.theme-default-dark .matcha-form-field input[type=time],
.theme-default-dark .matcha-form-field textarea {
  background-color: unset;
  color: #DEE3E6;
  border: 0px solid #ccc;
}
.theme-default-dark .matcha-form-field input[type=text]:focus,
.theme-default-dark .matcha-form-field input[type=email]:focus,
.theme-default-dark .matcha-form-field input[type=tel]:focus,
.theme-default-dark .matcha-form-field input[type=url]:focus,
.theme-default-dark .matcha-form-field input[type=password]:focus,
.theme-default-dark .matcha-form-field input[type=number]:focus,
.theme-default-dark .matcha-form-field input[type=search]:focus,
.theme-default-dark .matcha-form-field input[type=date]:focus,
.theme-default-dark .matcha-form-field input[type=time]:focus,
.theme-default-dark .matcha-form-field textarea:focus {
  outline: none;
}
.theme-default-dark matcha-form-field[size=tiny] .matcha-form-field input[type=text],
.theme-default-dark matcha-form-field[size=tiny] .matcha-form-field input[type=email],
.theme-default-dark matcha-form-field[size=tiny] .matcha-form-field input[type=tel],
.theme-default-dark matcha-form-field[size=tiny] .matcha-form-field input[type=url],
.theme-default-dark matcha-form-field[size=tiny] .matcha-form-field input[type=password],
.theme-default-dark matcha-form-field[size=tiny] .matcha-form-field input[type=number],
.theme-default-dark matcha-form-field[size=tiny] .matcha-form-field input[type=search],
.theme-default-dark matcha-form-field[size=tiny] .matcha-form-field input[type=date],
.theme-default-dark matcha-form-field[size=tiny] .matcha-form-field input[type=time],
.theme-default-dark matcha-form-field[size=tiny] .matcha-form-field textarea {
  min-height: 1.25rem; /* Mantém a altura dos inputs de texto */
  line-height: 1.5rem;
  padding: 0;
}
.theme-default-dark matcha-form-field[size=small] .matcha-form-field input[type=text],
.theme-default-dark matcha-form-field[size=small] .matcha-form-field input[type=email],
.theme-default-dark matcha-form-field[size=small] .matcha-form-field input[type=tel],
.theme-default-dark matcha-form-field[size=small] .matcha-form-field input[type=url],
.theme-default-dark matcha-form-field[size=small] .matcha-form-field input[type=password],
.theme-default-dark matcha-form-field[size=small] .matcha-form-field input[type=number],
.theme-default-dark matcha-form-field[size=small] .matcha-form-field input[type=search],
.theme-default-dark matcha-form-field[size=small] .matcha-form-field input[type=date],
.theme-default-dark matcha-form-field[size=small] .matcha-form-field input[type=time],
.theme-default-dark matcha-form-field[size=small] .matcha-form-field textarea {
  min-height: 1.25rem; /* Mantém a altura dos inputs de texto */
  line-height: 1.5rem;
  padding: 0;
}
.theme-default-dark matcha-form-field[size=medium] .matcha-form-field input[type=text],
.theme-default-dark matcha-form-field[size=medium] .matcha-form-field input[type=email],
.theme-default-dark matcha-form-field[size=medium] .matcha-form-field input[type=tel],
.theme-default-dark matcha-form-field[size=medium] .matcha-form-field input[type=url],
.theme-default-dark matcha-form-field[size=medium] .matcha-form-field input[type=password],
.theme-default-dark matcha-form-field[size=medium] .matcha-form-field input[type=number],
.theme-default-dark matcha-form-field[size=medium] .matcha-form-field input[type=search],
.theme-default-dark matcha-form-field[size=medium] .matcha-form-field input[type=date],
.theme-default-dark matcha-form-field[size=medium] .matcha-form-field input[type=time],
.theme-default-dark matcha-form-field[size=medium] .matcha-form-field textarea {
  min-height: 1.25rem; /* Mantém a altura dos inputs de texto */
  line-height: 2rem;
  padding: 0;
}
.theme-default-dark matcha-form-field[size=large] .matcha-form-field input[type=text],
.theme-default-dark matcha-form-field[size=large] .matcha-form-field input[type=email],
.theme-default-dark matcha-form-field[size=large] .matcha-form-field input[type=tel],
.theme-default-dark matcha-form-field[size=large] .matcha-form-field input[type=url],
.theme-default-dark matcha-form-field[size=large] .matcha-form-field input[type=password],
.theme-default-dark matcha-form-field[size=large] .matcha-form-field input[type=number],
.theme-default-dark matcha-form-field[size=large] .matcha-form-field input[type=search],
.theme-default-dark matcha-form-field[size=large] .matcha-form-field input[type=date],
.theme-default-dark matcha-form-field[size=large] .matcha-form-field input[type=time],
.theme-default-dark matcha-form-field[size=large] .matcha-form-field textarea {
  min-height: 1.25rem; /* Mantém a altura dos inputs de texto */
  line-height: 2.5rem;
  padding: 0;
}
.theme-default-dark matcha-form-field[size=huge] .matcha-form-field input[type=text],
.theme-default-dark matcha-form-field[size=huge] .matcha-form-field input[type=email],
.theme-default-dark matcha-form-field[size=huge] .matcha-form-field input[type=tel],
.theme-default-dark matcha-form-field[size=huge] .matcha-form-field input[type=url],
.theme-default-dark matcha-form-field[size=huge] .matcha-form-field input[type=password],
.theme-default-dark matcha-form-field[size=huge] .matcha-form-field input[type=number],
.theme-default-dark matcha-form-field[size=huge] .matcha-form-field input[type=search],
.theme-default-dark matcha-form-field[size=huge] .matcha-form-field input[type=date],
.theme-default-dark matcha-form-field[size=huge] .matcha-form-field input[type=time],
.theme-default-dark matcha-form-field[size=huge] .matcha-form-field textarea {
  min-height: 1.25rem; /* Mantém a altura dos inputs de texto */
  line-height: 2.5rem;
  padding: 0;
}
@media screen and (max-width: 599px) {
  .theme-default-dark matcha-form-field[size-xs=tiny] .matcha-form-field input[type=text],
  .theme-default-dark matcha-form-field[size-xs=tiny] .matcha-form-field input[type=email],
  .theme-default-dark matcha-form-field[size-xs=tiny] .matcha-form-field input[type=tel],
  .theme-default-dark matcha-form-field[size-xs=tiny] .matcha-form-field input[type=url],
  .theme-default-dark matcha-form-field[size-xs=tiny] .matcha-form-field input[type=password],
  .theme-default-dark matcha-form-field[size-xs=tiny] .matcha-form-field input[type=number],
  .theme-default-dark matcha-form-field[size-xs=tiny] .matcha-form-field input[type=search],
  .theme-default-dark matcha-form-field[size-xs=tiny] .matcha-form-field input[type=date],
  .theme-default-dark matcha-form-field[size-xs=tiny] .matcha-form-field input[type=time],
  .theme-default-dark matcha-form-field[size-xs=tiny] .matcha-form-field textarea {
    min-height: 1.25rem; /* Mantém a altura dos inputs de texto */
    line-height: 1.5rem;
    padding: 0;
  }
  .theme-default-dark matcha-form-field[size-xs=small] .matcha-form-field input[type=text],
  .theme-default-dark matcha-form-field[size-xs=small] .matcha-form-field input[type=email],
  .theme-default-dark matcha-form-field[size-xs=small] .matcha-form-field input[type=tel],
  .theme-default-dark matcha-form-field[size-xs=small] .matcha-form-field input[type=url],
  .theme-default-dark matcha-form-field[size-xs=small] .matcha-form-field input[type=password],
  .theme-default-dark matcha-form-field[size-xs=small] .matcha-form-field input[type=number],
  .theme-default-dark matcha-form-field[size-xs=small] .matcha-form-field input[type=search],
  .theme-default-dark matcha-form-field[size-xs=small] .matcha-form-field input[type=date],
  .theme-default-dark matcha-form-field[size-xs=small] .matcha-form-field input[type=time],
  .theme-default-dark matcha-form-field[size-xs=small] .matcha-form-field textarea {
    min-height: 1.25rem; /* Mantém a altura dos inputs de texto */
    line-height: 1.5rem;
    padding: 0;
  }
  .theme-default-dark matcha-form-field[size-xs=medium] .matcha-form-field input[type=text],
  .theme-default-dark matcha-form-field[size-xs=medium] .matcha-form-field input[type=email],
  .theme-default-dark matcha-form-field[size-xs=medium] .matcha-form-field input[type=tel],
  .theme-default-dark matcha-form-field[size-xs=medium] .matcha-form-field input[type=url],
  .theme-default-dark matcha-form-field[size-xs=medium] .matcha-form-field input[type=password],
  .theme-default-dark matcha-form-field[size-xs=medium] .matcha-form-field input[type=number],
  .theme-default-dark matcha-form-field[size-xs=medium] .matcha-form-field input[type=search],
  .theme-default-dark matcha-form-field[size-xs=medium] .matcha-form-field input[type=date],
  .theme-default-dark matcha-form-field[size-xs=medium] .matcha-form-field input[type=time],
  .theme-default-dark matcha-form-field[size-xs=medium] .matcha-form-field textarea {
    min-height: 1.25rem; /* Mantém a altura dos inputs de texto */
    line-height: 2rem;
    padding: 0;
  }
  .theme-default-dark matcha-form-field[size-xs=large] .matcha-form-field input[type=text],
  .theme-default-dark matcha-form-field[size-xs=large] .matcha-form-field input[type=email],
  .theme-default-dark matcha-form-field[size-xs=large] .matcha-form-field input[type=tel],
  .theme-default-dark matcha-form-field[size-xs=large] .matcha-form-field input[type=url],
  .theme-default-dark matcha-form-field[size-xs=large] .matcha-form-field input[type=password],
  .theme-default-dark matcha-form-field[size-xs=large] .matcha-form-field input[type=number],
  .theme-default-dark matcha-form-field[size-xs=large] .matcha-form-field input[type=search],
  .theme-default-dark matcha-form-field[size-xs=large] .matcha-form-field input[type=date],
  .theme-default-dark matcha-form-field[size-xs=large] .matcha-form-field input[type=time],
  .theme-default-dark matcha-form-field[size-xs=large] .matcha-form-field textarea {
    min-height: 1.25rem; /* Mantém a altura dos inputs de texto */
    line-height: 2.5rem;
    padding: 0;
  }
  .theme-default-dark matcha-form-field[size-xs=huge] .matcha-form-field input[type=text],
  .theme-default-dark matcha-form-field[size-xs=huge] .matcha-form-field input[type=email],
  .theme-default-dark matcha-form-field[size-xs=huge] .matcha-form-field input[type=tel],
  .theme-default-dark matcha-form-field[size-xs=huge] .matcha-form-field input[type=url],
  .theme-default-dark matcha-form-field[size-xs=huge] .matcha-form-field input[type=password],
  .theme-default-dark matcha-form-field[size-xs=huge] .matcha-form-field input[type=number],
  .theme-default-dark matcha-form-field[size-xs=huge] .matcha-form-field input[type=search],
  .theme-default-dark matcha-form-field[size-xs=huge] .matcha-form-field input[type=date],
  .theme-default-dark matcha-form-field[size-xs=huge] .matcha-form-field input[type=time],
  .theme-default-dark matcha-form-field[size-xs=huge] .matcha-form-field textarea {
    min-height: 1.25rem; /* Mantém a altura dos inputs de texto */
    line-height: 2.5rem;
    padding: 0;
  }
}
@media screen and (min-width: 600px) {
  .theme-default-dark matcha-form-field[size-sm=tiny] .matcha-form-field input[type=text],
  .theme-default-dark matcha-form-field[size-sm=tiny] .matcha-form-field input[type=email],
  .theme-default-dark matcha-form-field[size-sm=tiny] .matcha-form-field input[type=tel],
  .theme-default-dark matcha-form-field[size-sm=tiny] .matcha-form-field input[type=url],
  .theme-default-dark matcha-form-field[size-sm=tiny] .matcha-form-field input[type=password],
  .theme-default-dark matcha-form-field[size-sm=tiny] .matcha-form-field input[type=number],
  .theme-default-dark matcha-form-field[size-sm=tiny] .matcha-form-field input[type=search],
  .theme-default-dark matcha-form-field[size-sm=tiny] .matcha-form-field input[type=date],
  .theme-default-dark matcha-form-field[size-sm=tiny] .matcha-form-field input[type=time],
  .theme-default-dark matcha-form-field[size-sm=tiny] .matcha-form-field textarea {
    min-height: 1.25rem; /* Mantém a altura dos inputs de texto */
    line-height: 1.5rem;
    padding: 0;
  }
  .theme-default-dark matcha-form-field[size-sm=small] .matcha-form-field input[type=text],
  .theme-default-dark matcha-form-field[size-sm=small] .matcha-form-field input[type=email],
  .theme-default-dark matcha-form-field[size-sm=small] .matcha-form-field input[type=tel],
  .theme-default-dark matcha-form-field[size-sm=small] .matcha-form-field input[type=url],
  .theme-default-dark matcha-form-field[size-sm=small] .matcha-form-field input[type=password],
  .theme-default-dark matcha-form-field[size-sm=small] .matcha-form-field input[type=number],
  .theme-default-dark matcha-form-field[size-sm=small] .matcha-form-field input[type=search],
  .theme-default-dark matcha-form-field[size-sm=small] .matcha-form-field input[type=date],
  .theme-default-dark matcha-form-field[size-sm=small] .matcha-form-field input[type=time],
  .theme-default-dark matcha-form-field[size-sm=small] .matcha-form-field textarea {
    min-height: 1.25rem; /* Mantém a altura dos inputs de texto */
    line-height: 1.5rem;
    padding: 0;
  }
  .theme-default-dark matcha-form-field[size-sm=medium] .matcha-form-field input[type=text],
  .theme-default-dark matcha-form-field[size-sm=medium] .matcha-form-field input[type=email],
  .theme-default-dark matcha-form-field[size-sm=medium] .matcha-form-field input[type=tel],
  .theme-default-dark matcha-form-field[size-sm=medium] .matcha-form-field input[type=url],
  .theme-default-dark matcha-form-field[size-sm=medium] .matcha-form-field input[type=password],
  .theme-default-dark matcha-form-field[size-sm=medium] .matcha-form-field input[type=number],
  .theme-default-dark matcha-form-field[size-sm=medium] .matcha-form-field input[type=search],
  .theme-default-dark matcha-form-field[size-sm=medium] .matcha-form-field input[type=date],
  .theme-default-dark matcha-form-field[size-sm=medium] .matcha-form-field input[type=time],
  .theme-default-dark matcha-form-field[size-sm=medium] .matcha-form-field textarea {
    min-height: 1.25rem; /* Mantém a altura dos inputs de texto */
    line-height: 2rem;
    padding: 0;
  }
  .theme-default-dark matcha-form-field[size-sm=large] .matcha-form-field input[type=text],
  .theme-default-dark matcha-form-field[size-sm=large] .matcha-form-field input[type=email],
  .theme-default-dark matcha-form-field[size-sm=large] .matcha-form-field input[type=tel],
  .theme-default-dark matcha-form-field[size-sm=large] .matcha-form-field input[type=url],
  .theme-default-dark matcha-form-field[size-sm=large] .matcha-form-field input[type=password],
  .theme-default-dark matcha-form-field[size-sm=large] .matcha-form-field input[type=number],
  .theme-default-dark matcha-form-field[size-sm=large] .matcha-form-field input[type=search],
  .theme-default-dark matcha-form-field[size-sm=large] .matcha-form-field input[type=date],
  .theme-default-dark matcha-form-field[size-sm=large] .matcha-form-field input[type=time],
  .theme-default-dark matcha-form-field[size-sm=large] .matcha-form-field textarea {
    min-height: 1.25rem; /* Mantém a altura dos inputs de texto */
    line-height: 2.5rem;
    padding: 0;
  }
  .theme-default-dark matcha-form-field[size-sm=huge] .matcha-form-field input[type=text],
  .theme-default-dark matcha-form-field[size-sm=huge] .matcha-form-field input[type=email],
  .theme-default-dark matcha-form-field[size-sm=huge] .matcha-form-field input[type=tel],
  .theme-default-dark matcha-form-field[size-sm=huge] .matcha-form-field input[type=url],
  .theme-default-dark matcha-form-field[size-sm=huge] .matcha-form-field input[type=password],
  .theme-default-dark matcha-form-field[size-sm=huge] .matcha-form-field input[type=number],
  .theme-default-dark matcha-form-field[size-sm=huge] .matcha-form-field input[type=search],
  .theme-default-dark matcha-form-field[size-sm=huge] .matcha-form-field input[type=date],
  .theme-default-dark matcha-form-field[size-sm=huge] .matcha-form-field input[type=time],
  .theme-default-dark matcha-form-field[size-sm=huge] .matcha-form-field textarea {
    min-height: 1.25rem; /* Mantém a altura dos inputs de texto */
    line-height: 2.5rem;
    padding: 0;
  }
}
@media screen and (min-width: 1024px) {
  .theme-default-dark matcha-form-field[size-md=tiny] .matcha-form-field input[type=text],
  .theme-default-dark matcha-form-field[size-md=tiny] .matcha-form-field input[type=email],
  .theme-default-dark matcha-form-field[size-md=tiny] .matcha-form-field input[type=tel],
  .theme-default-dark matcha-form-field[size-md=tiny] .matcha-form-field input[type=url],
  .theme-default-dark matcha-form-field[size-md=tiny] .matcha-form-field input[type=password],
  .theme-default-dark matcha-form-field[size-md=tiny] .matcha-form-field input[type=number],
  .theme-default-dark matcha-form-field[size-md=tiny] .matcha-form-field input[type=search],
  .theme-default-dark matcha-form-field[size-md=tiny] .matcha-form-field input[type=date],
  .theme-default-dark matcha-form-field[size-md=tiny] .matcha-form-field input[type=time],
  .theme-default-dark matcha-form-field[size-md=tiny] .matcha-form-field textarea {
    min-height: 1.25rem; /* Mantém a altura dos inputs de texto */
    line-height: 1.5rem;
    padding: 0;
  }
  .theme-default-dark matcha-form-field[size-md=small] .matcha-form-field input[type=text],
  .theme-default-dark matcha-form-field[size-md=small] .matcha-form-field input[type=email],
  .theme-default-dark matcha-form-field[size-md=small] .matcha-form-field input[type=tel],
  .theme-default-dark matcha-form-field[size-md=small] .matcha-form-field input[type=url],
  .theme-default-dark matcha-form-field[size-md=small] .matcha-form-field input[type=password],
  .theme-default-dark matcha-form-field[size-md=small] .matcha-form-field input[type=number],
  .theme-default-dark matcha-form-field[size-md=small] .matcha-form-field input[type=search],
  .theme-default-dark matcha-form-field[size-md=small] .matcha-form-field input[type=date],
  .theme-default-dark matcha-form-field[size-md=small] .matcha-form-field input[type=time],
  .theme-default-dark matcha-form-field[size-md=small] .matcha-form-field textarea {
    min-height: 1.25rem; /* Mantém a altura dos inputs de texto */
    line-height: 1.5rem;
    padding: 0;
  }
  .theme-default-dark matcha-form-field[size-md=medium] .matcha-form-field input[type=text],
  .theme-default-dark matcha-form-field[size-md=medium] .matcha-form-field input[type=email],
  .theme-default-dark matcha-form-field[size-md=medium] .matcha-form-field input[type=tel],
  .theme-default-dark matcha-form-field[size-md=medium] .matcha-form-field input[type=url],
  .theme-default-dark matcha-form-field[size-md=medium] .matcha-form-field input[type=password],
  .theme-default-dark matcha-form-field[size-md=medium] .matcha-form-field input[type=number],
  .theme-default-dark matcha-form-field[size-md=medium] .matcha-form-field input[type=search],
  .theme-default-dark matcha-form-field[size-md=medium] .matcha-form-field input[type=date],
  .theme-default-dark matcha-form-field[size-md=medium] .matcha-form-field input[type=time],
  .theme-default-dark matcha-form-field[size-md=medium] .matcha-form-field textarea {
    min-height: 1.25rem; /* Mantém a altura dos inputs de texto */
    line-height: 2rem;
    padding: 0;
  }
  .theme-default-dark matcha-form-field[size-md=large] .matcha-form-field input[type=text],
  .theme-default-dark matcha-form-field[size-md=large] .matcha-form-field input[type=email],
  .theme-default-dark matcha-form-field[size-md=large] .matcha-form-field input[type=tel],
  .theme-default-dark matcha-form-field[size-md=large] .matcha-form-field input[type=url],
  .theme-default-dark matcha-form-field[size-md=large] .matcha-form-field input[type=password],
  .theme-default-dark matcha-form-field[size-md=large] .matcha-form-field input[type=number],
  .theme-default-dark matcha-form-field[size-md=large] .matcha-form-field input[type=search],
  .theme-default-dark matcha-form-field[size-md=large] .matcha-form-field input[type=date],
  .theme-default-dark matcha-form-field[size-md=large] .matcha-form-field input[type=time],
  .theme-default-dark matcha-form-field[size-md=large] .matcha-form-field textarea {
    min-height: 1.25rem; /* Mantém a altura dos inputs de texto */
    line-height: 2.5rem;
    padding: 0;
  }
  .theme-default-dark matcha-form-field[size-md=huge] .matcha-form-field input[type=text],
  .theme-default-dark matcha-form-field[size-md=huge] .matcha-form-field input[type=email],
  .theme-default-dark matcha-form-field[size-md=huge] .matcha-form-field input[type=tel],
  .theme-default-dark matcha-form-field[size-md=huge] .matcha-form-field input[type=url],
  .theme-default-dark matcha-form-field[size-md=huge] .matcha-form-field input[type=password],
  .theme-default-dark matcha-form-field[size-md=huge] .matcha-form-field input[type=number],
  .theme-default-dark matcha-form-field[size-md=huge] .matcha-form-field input[type=search],
  .theme-default-dark matcha-form-field[size-md=huge] .matcha-form-field input[type=date],
  .theme-default-dark matcha-form-field[size-md=huge] .matcha-form-field input[type=time],
  .theme-default-dark matcha-form-field[size-md=huge] .matcha-form-field textarea {
    min-height: 1.25rem; /* Mantém a altura dos inputs de texto */
    line-height: 2.5rem;
    padding: 0;
  }
}
@media screen and (min-width: 1440px) {
  .theme-default-dark matcha-form-field[size-lg=tiny] .matcha-form-field input[type=text],
  .theme-default-dark matcha-form-field[size-lg=tiny] .matcha-form-field input[type=email],
  .theme-default-dark matcha-form-field[size-lg=tiny] .matcha-form-field input[type=tel],
  .theme-default-dark matcha-form-field[size-lg=tiny] .matcha-form-field input[type=url],
  .theme-default-dark matcha-form-field[size-lg=tiny] .matcha-form-field input[type=password],
  .theme-default-dark matcha-form-field[size-lg=tiny] .matcha-form-field input[type=number],
  .theme-default-dark matcha-form-field[size-lg=tiny] .matcha-form-field input[type=search],
  .theme-default-dark matcha-form-field[size-lg=tiny] .matcha-form-field input[type=date],
  .theme-default-dark matcha-form-field[size-lg=tiny] .matcha-form-field input[type=time],
  .theme-default-dark matcha-form-field[size-lg=tiny] .matcha-form-field textarea {
    min-height: 1.25rem; /* Mantém a altura dos inputs de texto */
    line-height: 1.5rem;
    padding: 0;
  }
  .theme-default-dark matcha-form-field[size-lg=small] .matcha-form-field input[type=text],
  .theme-default-dark matcha-form-field[size-lg=small] .matcha-form-field input[type=email],
  .theme-default-dark matcha-form-field[size-lg=small] .matcha-form-field input[type=tel],
  .theme-default-dark matcha-form-field[size-lg=small] .matcha-form-field input[type=url],
  .theme-default-dark matcha-form-field[size-lg=small] .matcha-form-field input[type=password],
  .theme-default-dark matcha-form-field[size-lg=small] .matcha-form-field input[type=number],
  .theme-default-dark matcha-form-field[size-lg=small] .matcha-form-field input[type=search],
  .theme-default-dark matcha-form-field[size-lg=small] .matcha-form-field input[type=date],
  .theme-default-dark matcha-form-field[size-lg=small] .matcha-form-field input[type=time],
  .theme-default-dark matcha-form-field[size-lg=small] .matcha-form-field textarea {
    min-height: 1.25rem; /* Mantém a altura dos inputs de texto */
    line-height: 1.5rem;
    padding: 0;
  }
  .theme-default-dark matcha-form-field[size-lg=medium] .matcha-form-field input[type=text],
  .theme-default-dark matcha-form-field[size-lg=medium] .matcha-form-field input[type=email],
  .theme-default-dark matcha-form-field[size-lg=medium] .matcha-form-field input[type=tel],
  .theme-default-dark matcha-form-field[size-lg=medium] .matcha-form-field input[type=url],
  .theme-default-dark matcha-form-field[size-lg=medium] .matcha-form-field input[type=password],
  .theme-default-dark matcha-form-field[size-lg=medium] .matcha-form-field input[type=number],
  .theme-default-dark matcha-form-field[size-lg=medium] .matcha-form-field input[type=search],
  .theme-default-dark matcha-form-field[size-lg=medium] .matcha-form-field input[type=date],
  .theme-default-dark matcha-form-field[size-lg=medium] .matcha-form-field input[type=time],
  .theme-default-dark matcha-form-field[size-lg=medium] .matcha-form-field textarea {
    min-height: 1.25rem; /* Mantém a altura dos inputs de texto */
    line-height: 2rem;
    padding: 0;
  }
  .theme-default-dark matcha-form-field[size-lg=large] .matcha-form-field input[type=text],
  .theme-default-dark matcha-form-field[size-lg=large] .matcha-form-field input[type=email],
  .theme-default-dark matcha-form-field[size-lg=large] .matcha-form-field input[type=tel],
  .theme-default-dark matcha-form-field[size-lg=large] .matcha-form-field input[type=url],
  .theme-default-dark matcha-form-field[size-lg=large] .matcha-form-field input[type=password],
  .theme-default-dark matcha-form-field[size-lg=large] .matcha-form-field input[type=number],
  .theme-default-dark matcha-form-field[size-lg=large] .matcha-form-field input[type=search],
  .theme-default-dark matcha-form-field[size-lg=large] .matcha-form-field input[type=date],
  .theme-default-dark matcha-form-field[size-lg=large] .matcha-form-field input[type=time],
  .theme-default-dark matcha-form-field[size-lg=large] .matcha-form-field textarea {
    min-height: 1.25rem; /* Mantém a altura dos inputs de texto */
    line-height: 2.5rem;
    padding: 0;
  }
  .theme-default-dark matcha-form-field[size-lg=huge] .matcha-form-field input[type=text],
  .theme-default-dark matcha-form-field[size-lg=huge] .matcha-form-field input[type=email],
  .theme-default-dark matcha-form-field[size-lg=huge] .matcha-form-field input[type=tel],
  .theme-default-dark matcha-form-field[size-lg=huge] .matcha-form-field input[type=url],
  .theme-default-dark matcha-form-field[size-lg=huge] .matcha-form-field input[type=password],
  .theme-default-dark matcha-form-field[size-lg=huge] .matcha-form-field input[type=number],
  .theme-default-dark matcha-form-field[size-lg=huge] .matcha-form-field input[type=search],
  .theme-default-dark matcha-form-field[size-lg=huge] .matcha-form-field input[type=date],
  .theme-default-dark matcha-form-field[size-lg=huge] .matcha-form-field input[type=time],
  .theme-default-dark matcha-form-field[size-lg=huge] .matcha-form-field textarea {
    min-height: 1.25rem; /* Mantém a altura dos inputs de texto */
    line-height: 2.5rem;
    padding: 0;
  }
}
@media screen and (min-width: 1920px) {
  .theme-default-dark matcha-form-field[size-xl=tiny] .matcha-form-field input[type=text],
  .theme-default-dark matcha-form-field[size-xl=tiny] .matcha-form-field input[type=email],
  .theme-default-dark matcha-form-field[size-xl=tiny] .matcha-form-field input[type=tel],
  .theme-default-dark matcha-form-field[size-xl=tiny] .matcha-form-field input[type=url],
  .theme-default-dark matcha-form-field[size-xl=tiny] .matcha-form-field input[type=password],
  .theme-default-dark matcha-form-field[size-xl=tiny] .matcha-form-field input[type=number],
  .theme-default-dark matcha-form-field[size-xl=tiny] .matcha-form-field input[type=search],
  .theme-default-dark matcha-form-field[size-xl=tiny] .matcha-form-field input[type=date],
  .theme-default-dark matcha-form-field[size-xl=tiny] .matcha-form-field input[type=time],
  .theme-default-dark matcha-form-field[size-xl=tiny] .matcha-form-field textarea {
    min-height: 1.25rem; /* Mantém a altura dos inputs de texto */
    line-height: 1.5rem;
    padding: 0;
  }
  .theme-default-dark matcha-form-field[size-xl=small] .matcha-form-field input[type=text],
  .theme-default-dark matcha-form-field[size-xl=small] .matcha-form-field input[type=email],
  .theme-default-dark matcha-form-field[size-xl=small] .matcha-form-field input[type=tel],
  .theme-default-dark matcha-form-field[size-xl=small] .matcha-form-field input[type=url],
  .theme-default-dark matcha-form-field[size-xl=small] .matcha-form-field input[type=password],
  .theme-default-dark matcha-form-field[size-xl=small] .matcha-form-field input[type=number],
  .theme-default-dark matcha-form-field[size-xl=small] .matcha-form-field input[type=search],
  .theme-default-dark matcha-form-field[size-xl=small] .matcha-form-field input[type=date],
  .theme-default-dark matcha-form-field[size-xl=small] .matcha-form-field input[type=time],
  .theme-default-dark matcha-form-field[size-xl=small] .matcha-form-field textarea {
    min-height: 1.25rem; /* Mantém a altura dos inputs de texto */
    line-height: 1.5rem;
    padding: 0;
  }
  .theme-default-dark matcha-form-field[size-xl=medium] .matcha-form-field input[type=text],
  .theme-default-dark matcha-form-field[size-xl=medium] .matcha-form-field input[type=email],
  .theme-default-dark matcha-form-field[size-xl=medium] .matcha-form-field input[type=tel],
  .theme-default-dark matcha-form-field[size-xl=medium] .matcha-form-field input[type=url],
  .theme-default-dark matcha-form-field[size-xl=medium] .matcha-form-field input[type=password],
  .theme-default-dark matcha-form-field[size-xl=medium] .matcha-form-field input[type=number],
  .theme-default-dark matcha-form-field[size-xl=medium] .matcha-form-field input[type=search],
  .theme-default-dark matcha-form-field[size-xl=medium] .matcha-form-field input[type=date],
  .theme-default-dark matcha-form-field[size-xl=medium] .matcha-form-field input[type=time],
  .theme-default-dark matcha-form-field[size-xl=medium] .matcha-form-field textarea {
    min-height: 1.25rem; /* Mantém a altura dos inputs de texto */
    line-height: 2rem;
    padding: 0;
  }
  .theme-default-dark matcha-form-field[size-xl=large] .matcha-form-field input[type=text],
  .theme-default-dark matcha-form-field[size-xl=large] .matcha-form-field input[type=email],
  .theme-default-dark matcha-form-field[size-xl=large] .matcha-form-field input[type=tel],
  .theme-default-dark matcha-form-field[size-xl=large] .matcha-form-field input[type=url],
  .theme-default-dark matcha-form-field[size-xl=large] .matcha-form-field input[type=password],
  .theme-default-dark matcha-form-field[size-xl=large] .matcha-form-field input[type=number],
  .theme-default-dark matcha-form-field[size-xl=large] .matcha-form-field input[type=search],
  .theme-default-dark matcha-form-field[size-xl=large] .matcha-form-field input[type=date],
  .theme-default-dark matcha-form-field[size-xl=large] .matcha-form-field input[type=time],
  .theme-default-dark matcha-form-field[size-xl=large] .matcha-form-field textarea {
    min-height: 1.25rem; /* Mantém a altura dos inputs de texto */
    line-height: 2.5rem;
    padding: 0;
  }
  .theme-default-dark matcha-form-field[size-xl=huge] .matcha-form-field input[type=text],
  .theme-default-dark matcha-form-field[size-xl=huge] .matcha-form-field input[type=email],
  .theme-default-dark matcha-form-field[size-xl=huge] .matcha-form-field input[type=tel],
  .theme-default-dark matcha-form-field[size-xl=huge] .matcha-form-field input[type=url],
  .theme-default-dark matcha-form-field[size-xl=huge] .matcha-form-field input[type=password],
  .theme-default-dark matcha-form-field[size-xl=huge] .matcha-form-field input[type=number],
  .theme-default-dark matcha-form-field[size-xl=huge] .matcha-form-field input[type=search],
  .theme-default-dark matcha-form-field[size-xl=huge] .matcha-form-field input[type=date],
  .theme-default-dark matcha-form-field[size-xl=huge] .matcha-form-field input[type=time],
  .theme-default-dark matcha-form-field[size-xl=huge] .matcha-form-field textarea {
    min-height: 1.25rem; /* Mantém a altura dos inputs de texto */
    line-height: 2.5rem;
    padding: 0;
  }
}
.theme-default-dark matcha-checkbox:not([color]) input[type=checkbox] {
  border-color: #E2E7E9;
}
.theme-default-dark matcha-checkbox:not([color]) input[type=checkbox]:active {
  border-color: #2979ff;
}
.theme-default-dark matcha-checkbox:not([color]) input[type=checkbox]:checked {
  background-color: #2979ff;
  border-color: #2979ff;
}
.theme-default-dark matcha-checkbox:not([color]) input[type=checkbox]:checked::after {
  border-color: white;
}
.theme-default-dark matcha-checkbox:not([color]) input[type=checkbox]:indeterminate {
  background-color: #DEE3E6;
  border-color: #DEE3E6;
}
.theme-default-dark matcha-checkbox:not([color]) input[type=checkbox]:indeterminate::after {
  background-color: rgba(0, 0, 0, 0.87);
}
.theme-default-dark matcha-checkbox:not([color]) .matcha-checkbox-container:hover {
  background-color: rgba(41, 121, 255, 0.1);
}
.theme-default-dark matcha-checkbox:not([color]) .matcha-checkbox-container .ripple {
  background: rgba(41, 121, 255, 0.2) !important;
}
.theme-default-dark matcha-checkbox[color] input[type=checkbox] {
  border-color: #E2E7E9;
}
.theme-default-dark matcha-checkbox[color] input[type=checkbox]:indeterminate {
  background-color: #DEE3E6;
  border-color: #DEE3E6;
}
.theme-default-dark matcha-checkbox[color] input[type=checkbox]:indeterminate::after {
  background-color: rgba(0, 0, 0, 0.87);
}
.theme-default-dark matcha-checkbox[color=red] input[type=checkbox]:active {
  border-color: #f7c4c4;
}
.theme-default-dark matcha-checkbox[color=red] input[type=checkbox]:checked {
  background-color: #f7c4c4;
  border-color: #f7c4c4;
}
.theme-default-dark matcha-checkbox[color=red] input[type=checkbox]:checked::after {
  border-color: rgba(0, 0, 0, 0.87);
}
.theme-default-dark matcha-checkbox[color=red] .matcha-checkbox-container:hover {
  background-color: rgba(247, 196, 196, 0.1);
}
.theme-default-dark matcha-checkbox[color=red] .matcha-checkbox-container .ripple {
  background: rgba(0, 0, 0, 0.2) !important;
}
.theme-default-dark matcha-checkbox[color=pink] input[type=checkbox]:active {
  border-color: #f8bbd0;
}
.theme-default-dark matcha-checkbox[color=pink] input[type=checkbox]:checked {
  background-color: #f8bbd0;
  border-color: #f8bbd0;
}
.theme-default-dark matcha-checkbox[color=pink] input[type=checkbox]:checked::after {
  border-color: rgba(0, 0, 0, 0.87);
}
.theme-default-dark matcha-checkbox[color=pink] .matcha-checkbox-container:hover {
  background-color: rgba(248, 187, 208, 0.1);
}
.theme-default-dark matcha-checkbox[color=pink] .matcha-checkbox-container .ripple {
  background: rgba(0, 0, 0, 0.2) !important;
}
.theme-default-dark matcha-checkbox[color=purple] input[type=checkbox]:active {
  border-color: #e1bee7;
}
.theme-default-dark matcha-checkbox[color=purple] input[type=checkbox]:checked {
  background-color: #e1bee7;
  border-color: #e1bee7;
}
.theme-default-dark matcha-checkbox[color=purple] input[type=checkbox]:checked::after {
  border-color: rgba(0, 0, 0, 0.87);
}
.theme-default-dark matcha-checkbox[color=purple] .matcha-checkbox-container:hover {
  background-color: rgba(225, 190, 231, 0.1);
}
.theme-default-dark matcha-checkbox[color=purple] .matcha-checkbox-container .ripple {
  background: rgba(0, 0, 0, 0.2) !important;
}
.theme-default-dark matcha-checkbox[color=deep-purple] input[type=checkbox]:active {
  border-color: #d1c4e9;
}
.theme-default-dark matcha-checkbox[color=deep-purple] input[type=checkbox]:checked {
  background-color: #d1c4e9;
  border-color: #d1c4e9;
}
.theme-default-dark matcha-checkbox[color=deep-purple] input[type=checkbox]:checked::after {
  border-color: rgba(0, 0, 0, 0.87);
}
.theme-default-dark matcha-checkbox[color=deep-purple] .matcha-checkbox-container:hover {
  background-color: rgba(209, 196, 233, 0.1);
}
.theme-default-dark matcha-checkbox[color=deep-purple] .matcha-checkbox-container .ripple {
  background: rgba(0, 0, 0, 0.2) !important;
}
.theme-default-dark matcha-checkbox[color=indigo] input[type=checkbox]:active {
  border-color: #c5cae9;
}
.theme-default-dark matcha-checkbox[color=indigo] input[type=checkbox]:checked {
  background-color: #c5cae9;
  border-color: #c5cae9;
}
.theme-default-dark matcha-checkbox[color=indigo] input[type=checkbox]:checked::after {
  border-color: rgba(0, 0, 0, 0.87);
}
.theme-default-dark matcha-checkbox[color=indigo] .matcha-checkbox-container:hover {
  background-color: rgba(197, 202, 233, 0.1);
}
.theme-default-dark matcha-checkbox[color=indigo] .matcha-checkbox-container .ripple {
  background: rgba(0, 0, 0, 0.2) !important;
}
.theme-default-dark matcha-checkbox[color=blue] input[type=checkbox]:active {
  border-color: #bccef4;
}
.theme-default-dark matcha-checkbox[color=blue] input[type=checkbox]:checked {
  background-color: #bccef4;
  border-color: #bccef4;
}
.theme-default-dark matcha-checkbox[color=blue] input[type=checkbox]:checked::after {
  border-color: rgba(0, 0, 0, 0.87);
}
.theme-default-dark matcha-checkbox[color=blue] .matcha-checkbox-container:hover {
  background-color: rgba(188, 206, 244, 0.1);
}
.theme-default-dark matcha-checkbox[color=blue] .matcha-checkbox-container .ripple {
  background: rgba(0, 0, 0, 0.2) !important;
}
.theme-default-dark matcha-checkbox[color=light-blue] input[type=checkbox]:active {
  border-color: #b3e5fc;
}
.theme-default-dark matcha-checkbox[color=light-blue] input[type=checkbox]:checked {
  background-color: #b3e5fc;
  border-color: #b3e5fc;
}
.theme-default-dark matcha-checkbox[color=light-blue] input[type=checkbox]:checked::after {
  border-color: rgba(0, 0, 0, 0.87);
}
.theme-default-dark matcha-checkbox[color=light-blue] .matcha-checkbox-container:hover {
  background-color: rgba(179, 229, 252, 0.1);
}
.theme-default-dark matcha-checkbox[color=light-blue] .matcha-checkbox-container .ripple {
  background: rgba(0, 0, 0, 0.2) !important;
}
.theme-default-dark matcha-checkbox[color=cyan] input[type=checkbox]:active {
  border-color: #b2ebf2;
}
.theme-default-dark matcha-checkbox[color=cyan] input[type=checkbox]:checked {
  background-color: #b2ebf2;
  border-color: #b2ebf2;
}
.theme-default-dark matcha-checkbox[color=cyan] input[type=checkbox]:checked::after {
  border-color: rgba(0, 0, 0, 0.87);
}
.theme-default-dark matcha-checkbox[color=cyan] .matcha-checkbox-container:hover {
  background-color: rgba(178, 235, 242, 0.1);
}
.theme-default-dark matcha-checkbox[color=cyan] .matcha-checkbox-container .ripple {
  background: rgba(0, 0, 0, 0.2) !important;
}
.theme-default-dark matcha-checkbox[color=teal] input[type=checkbox]:active {
  border-color: #b2dfdb;
}
.theme-default-dark matcha-checkbox[color=teal] input[type=checkbox]:checked {
  background-color: #b2dfdb;
  border-color: #b2dfdb;
}
.theme-default-dark matcha-checkbox[color=teal] input[type=checkbox]:checked::after {
  border-color: rgba(0, 0, 0, 0.87);
}
.theme-default-dark matcha-checkbox[color=teal] .matcha-checkbox-container:hover {
  background-color: rgba(178, 223, 219, 0.1);
}
.theme-default-dark matcha-checkbox[color=teal] .matcha-checkbox-container .ripple {
  background: rgba(0, 0, 0, 0.2) !important;
}
.theme-default-dark matcha-checkbox[color=green] input[type=checkbox]:active {
  border-color: #b8dec8;
}
.theme-default-dark matcha-checkbox[color=green] input[type=checkbox]:checked {
  background-color: #b8dec8;
  border-color: #b8dec8;
}
.theme-default-dark matcha-checkbox[color=green] input[type=checkbox]:checked::after {
  border-color: rgba(0, 0, 0, 0.87);
}
.theme-default-dark matcha-checkbox[color=green] .matcha-checkbox-container:hover {
  background-color: rgba(184, 222, 200, 0.1);
}
.theme-default-dark matcha-checkbox[color=green] .matcha-checkbox-container .ripple {
  background: rgba(0, 0, 0, 0.2) !important;
}
.theme-default-dark matcha-checkbox[color=light-green] input[type=checkbox]:active {
  border-color: #D4F4C0;
}
.theme-default-dark matcha-checkbox[color=light-green] input[type=checkbox]:checked {
  background-color: #D4F4C0;
  border-color: #D4F4C0;
}
.theme-default-dark matcha-checkbox[color=light-green] input[type=checkbox]:checked::after {
  border-color: rgba(0, 0, 0, 0.87);
}
.theme-default-dark matcha-checkbox[color=light-green] .matcha-checkbox-container:hover {
  background-color: rgba(212, 244, 192, 0.1);
}
.theme-default-dark matcha-checkbox[color=light-green] .matcha-checkbox-container .ripple {
  background: rgba(0, 0, 0, 0.2) !important;
}
.theme-default-dark matcha-checkbox[color=lime] input[type=checkbox]:active {
  border-color: #dbebb3;
}
.theme-default-dark matcha-checkbox[color=lime] input[type=checkbox]:checked {
  background-color: #dbebb3;
  border-color: #dbebb3;
}
.theme-default-dark matcha-checkbox[color=lime] input[type=checkbox]:checked::after {
  border-color: rgba(0, 0, 0, 0.87);
}
.theme-default-dark matcha-checkbox[color=lime] .matcha-checkbox-container:hover {
  background-color: rgba(219, 235, 179, 0.1);
}
.theme-default-dark matcha-checkbox[color=lime] .matcha-checkbox-container .ripple {
  background: rgba(0, 0, 0, 0.2) !important;
}
.theme-default-dark matcha-checkbox[color=yellow] input[type=checkbox]:active {
  border-color: #f8edb3;
}
.theme-default-dark matcha-checkbox[color=yellow] input[type=checkbox]:checked {
  background-color: #f8edb3;
  border-color: #f8edb3;
}
.theme-default-dark matcha-checkbox[color=yellow] input[type=checkbox]:checked::after {
  border-color: rgba(0, 0, 0, 0.87);
}
.theme-default-dark matcha-checkbox[color=yellow] .matcha-checkbox-container:hover {
  background-color: rgba(248, 237, 179, 0.1);
}
.theme-default-dark matcha-checkbox[color=yellow] .matcha-checkbox-container .ripple {
  background: rgba(0, 0, 0, 0.2) !important;
}
.theme-default-dark matcha-checkbox[color=amber] input[type=checkbox]:active {
  border-color: #fee4ba;
}
.theme-default-dark matcha-checkbox[color=amber] input[type=checkbox]:checked {
  background-color: #fee4ba;
  border-color: #fee4ba;
}
.theme-default-dark matcha-checkbox[color=amber] input[type=checkbox]:checked::after {
  border-color: rgba(0, 0, 0, 0.87);
}
.theme-default-dark matcha-checkbox[color=amber] .matcha-checkbox-container:hover {
  background-color: rgba(254, 228, 186, 0.1);
}
.theme-default-dark matcha-checkbox[color=amber] .matcha-checkbox-container .ripple {
  background: rgba(0, 0, 0, 0.2) !important;
}
.theme-default-dark matcha-checkbox[color=orange] input[type=checkbox]:active {
  border-color: #fdd7b9;
}
.theme-default-dark matcha-checkbox[color=orange] input[type=checkbox]:checked {
  background-color: #fdd7b9;
  border-color: #fdd7b9;
}
.theme-default-dark matcha-checkbox[color=orange] input[type=checkbox]:checked::after {
  border-color: rgba(0, 0, 0, 0.87);
}
.theme-default-dark matcha-checkbox[color=orange] .matcha-checkbox-container:hover {
  background-color: rgba(253, 215, 185, 0.1);
}
.theme-default-dark matcha-checkbox[color=orange] .matcha-checkbox-container .ripple {
  background: rgba(0, 0, 0, 0.2) !important;
}
.theme-default-dark matcha-checkbox[color=deep-orange] input[type=checkbox]:active {
  border-color: #ffccbc;
}
.theme-default-dark matcha-checkbox[color=deep-orange] input[type=checkbox]:checked {
  background-color: #ffccbc;
  border-color: #ffccbc;
}
.theme-default-dark matcha-checkbox[color=deep-orange] input[type=checkbox]:checked::after {
  border-color: rgba(0, 0, 0, 0.87);
}
.theme-default-dark matcha-checkbox[color=deep-orange] .matcha-checkbox-container:hover {
  background-color: rgba(255, 204, 188, 0.1);
}
.theme-default-dark matcha-checkbox[color=deep-orange] .matcha-checkbox-container .ripple {
  background: rgba(0, 0, 0, 0.2) !important;
}
.theme-default-dark matcha-checkbox[color=brown] input[type=checkbox]:active {
  border-color: #d7ccc8;
}
.theme-default-dark matcha-checkbox[color=brown] input[type=checkbox]:checked {
  background-color: #d7ccc8;
  border-color: #d7ccc8;
}
.theme-default-dark matcha-checkbox[color=brown] input[type=checkbox]:checked::after {
  border-color: rgba(0, 0, 0, 0.87);
}
.theme-default-dark matcha-checkbox[color=brown] .matcha-checkbox-container:hover {
  background-color: rgba(215, 204, 200, 0.1);
}
.theme-default-dark matcha-checkbox[color=brown] .matcha-checkbox-container .ripple {
  background: rgba(0, 0, 0, 0.2) !important;
}
.theme-default-dark matcha-checkbox[color=grey] input[type=checkbox]:active {
  border-color: #DEE3E6;
}
.theme-default-dark matcha-checkbox[color=grey] input[type=checkbox]:checked {
  background-color: #DEE3E6;
  border-color: #DEE3E6;
}
.theme-default-dark matcha-checkbox[color=grey] input[type=checkbox]:checked::after {
  border-color: rgba(0, 0, 0, 0.87);
}
.theme-default-dark matcha-checkbox[color=grey] .matcha-checkbox-container:hover {
  background-color: rgba(222, 227, 230, 0.1);
}
.theme-default-dark matcha-checkbox[color=grey] .matcha-checkbox-container .ripple {
  background: rgba(0, 0, 0, 0.2) !important;
}
.theme-default-dark matcha-checkbox[color=blue-grey] input[type=checkbox]:active {
  border-color: #E2E7E9;
}
.theme-default-dark matcha-checkbox[color=blue-grey] input[type=checkbox]:checked {
  background-color: #E2E7E9;
  border-color: #E2E7E9;
}
.theme-default-dark matcha-checkbox[color=blue-grey] input[type=checkbox]:checked::after {
  border-color: rgba(0, 0, 0, 0.87);
}
.theme-default-dark matcha-checkbox[color=blue-grey] .matcha-checkbox-container:hover {
  background-color: rgba(226, 231, 233, 0.1);
}
.theme-default-dark matcha-checkbox[color=blue-grey] .matcha-checkbox-container .ripple {
  background: rgba(0, 0, 0, 0.2) !important;
}
.theme-default-dark matcha-checkbox[color=primary] input[type=checkbox]:active {
  border-color: #8A9EA8;
}
.theme-default-dark matcha-checkbox[color=primary] input[type=checkbox]:checked {
  background-color: #8A9EA8;
  border-color: #8A9EA8;
}
.theme-default-dark matcha-checkbox[color=primary] input[type=checkbox]:checked::after {
  border-color: white;
}
.theme-default-dark matcha-checkbox[color=primary] .matcha-checkbox-container:hover {
  background-color: rgba(138, 158, 168, 0.1);
}
.theme-default-dark matcha-checkbox[color=primary] .matcha-checkbox-container .ripple {
  background: rgba(255, 255, 255, 0.2) !important;
}
.theme-default-dark matcha-checkbox[color=accent] input[type=checkbox]:active {
  border-color: #2979ff;
}
.theme-default-dark matcha-checkbox[color=accent] input[type=checkbox]:checked {
  background-color: #2979ff;
  border-color: #2979ff;
}
.theme-default-dark matcha-checkbox[color=accent] input[type=checkbox]:checked::after {
  border-color: white;
}
.theme-default-dark matcha-checkbox[color=accent] .matcha-checkbox-container:hover {
  background-color: rgba(41, 121, 255, 0.1);
}
.theme-default-dark matcha-checkbox[color=accent] .matcha-checkbox-container .ripple {
  background: rgba(255, 255, 255, 0.2) !important;
}
.theme-default-dark matcha-checkbox[color=warn] input[type=checkbox]:active {
  border-color: #f29d9d;
}
.theme-default-dark matcha-checkbox[color=warn] input[type=checkbox]:checked {
  background-color: #f29d9d;
  border-color: #f29d9d;
}
.theme-default-dark matcha-checkbox[color=warn] input[type=checkbox]:checked::after {
  border-color: rgba(0, 0, 0, 0.87);
}
.theme-default-dark matcha-checkbox[color=warn] .matcha-checkbox-container:hover {
  background-color: rgba(242, 157, 157, 0.1);
}
.theme-default-dark matcha-checkbox[color=warn] .matcha-checkbox-container .ripple {
  background: rgba(0, 0, 0, 0.2) !important;
}
.theme-default-dark matcha-checkbox[disabled] input[type=checkbox] {
  border-color: #DEE3E6;
}
.theme-default-dark matcha-checkbox .matcha-checkbox-label {
  color: #DEE3E6;
}
.theme-default-dark matcha-spin:not([color]) .spin-progress {
  stroke: #2979ff;
}
.theme-default-dark matcha-spin[color=red] .spin-progress {
  stroke: #f7c4c4;
}
.theme-default-dark matcha-spin[color=pink] .spin-progress {
  stroke: #f8bbd0;
}
.theme-default-dark matcha-spin[color=purple] .spin-progress {
  stroke: #e1bee7;
}
.theme-default-dark matcha-spin[color=deep-purple] .spin-progress {
  stroke: #d1c4e9;
}
.theme-default-dark matcha-spin[color=indigo] .spin-progress {
  stroke: #c5cae9;
}
.theme-default-dark matcha-spin[color=blue] .spin-progress {
  stroke: #bccef4;
}
.theme-default-dark matcha-spin[color=light-blue] .spin-progress {
  stroke: #b3e5fc;
}
.theme-default-dark matcha-spin[color=cyan] .spin-progress {
  stroke: #b2ebf2;
}
.theme-default-dark matcha-spin[color=teal] .spin-progress {
  stroke: #b2dfdb;
}
.theme-default-dark matcha-spin[color=green] .spin-progress {
  stroke: #b8dec8;
}
.theme-default-dark matcha-spin[color=light-green] .spin-progress {
  stroke: #D4F4C0;
}
.theme-default-dark matcha-spin[color=lime] .spin-progress {
  stroke: #dbebb3;
}
.theme-default-dark matcha-spin[color=yellow] .spin-progress {
  stroke: #f8edb3;
}
.theme-default-dark matcha-spin[color=amber] .spin-progress {
  stroke: #fee4ba;
}
.theme-default-dark matcha-spin[color=orange] .spin-progress {
  stroke: #fdd7b9;
}
.theme-default-dark matcha-spin[color=deep-orange] .spin-progress {
  stroke: #ffccbc;
}
.theme-default-dark matcha-spin[color=brown] .spin-progress {
  stroke: #d7ccc8;
}
.theme-default-dark matcha-spin[color=grey] .spin-progress {
  stroke: #DEE3E6;
}
.theme-default-dark matcha-spin[color=blue-grey] .spin-progress {
  stroke: #E2E7E9;
}
.theme-default-dark matcha-spin[color=accent] .spin-progress {
  stroke: #2979ff;
}
.theme-default-dark matcha-spin[color=primary] .spin-progress {
  stroke: #8A9EA8;
}
.theme-default-dark matcha-spin[color=warn] .spin-progress {
  stroke: #f29d9d;
}
.theme-default-dark matcha-spin .spin-placeholder {
  stroke: #292929;
}
.theme-default-dark matcha-spin:not([size]) {
  width: 2.5rem;
  height: 2.5rem;
}
.theme-default-dark matcha-spin[size=tiny] {
  width: 1.5rem;
  height: 1.5rem;
}
.theme-default-dark matcha-spin[size=small] {
  width: 2rem;
  height: 2rem;
}
.theme-default-dark matcha-spin[size=medium] {
  width: 2.5rem;
  height: 2.5rem;
}
.theme-default-dark matcha-spin[size=large] {
  width: 3rem;
  height: 3rem;
}
.theme-default-dark matcha-spin[size=huge] {
  width: 3.5rem;
  height: 3.5rem;
}
@media screen and (max-width: 599px) {
  .theme-default-dark matcha-spin[size-xs=tiny] {
    width: 1.5rem;
    height: 1.5rem;
  }
  .theme-default-dark matcha-spin[size-xs=small] {
    width: 2rem;
    height: 2rem;
  }
  .theme-default-dark matcha-spin[size-xs=medium] {
    width: 2.5rem;
    height: 2.5rem;
  }
  .theme-default-dark matcha-spin[size-xs=large] {
    width: 3rem;
    height: 3rem;
  }
  .theme-default-dark matcha-spin[size-xs=huge] {
    width: 3.5rem;
    height: 3.5rem;
  }
}
@media screen and (min-width: 600px) {
  .theme-default-dark matcha-spin[size-sm=tiny] {
    width: 1.5rem;
    height: 1.5rem;
  }
  .theme-default-dark matcha-spin[size-sm=small] {
    width: 2rem;
    height: 2rem;
  }
  .theme-default-dark matcha-spin[size-sm=medium] {
    width: 2.5rem;
    height: 2.5rem;
  }
  .theme-default-dark matcha-spin[size-sm=large] {
    width: 3rem;
    height: 3rem;
  }
  .theme-default-dark matcha-spin[size-sm=huge] {
    width: 3.5rem;
    height: 3.5rem;
  }
}
@media screen and (min-width: 1024px) {
  .theme-default-dark matcha-spin[size-md=tiny] {
    width: 1.5rem;
    height: 1.5rem;
  }
  .theme-default-dark matcha-spin[size-md=small] {
    width: 2rem;
    height: 2rem;
  }
  .theme-default-dark matcha-spin[size-md=medium] {
    width: 2.5rem;
    height: 2.5rem;
  }
  .theme-default-dark matcha-spin[size-md=large] {
    width: 3rem;
    height: 3rem;
  }
  .theme-default-dark matcha-spin[size-md=huge] {
    width: 3.5rem;
    height: 3.5rem;
  }
}
@media screen and (min-width: 1440px) {
  .theme-default-dark matcha-spin[size-lg=tiny] {
    width: 1.5rem;
    height: 1.5rem;
  }
  .theme-default-dark matcha-spin[size-lg=small] {
    width: 2rem;
    height: 2rem;
  }
  .theme-default-dark matcha-spin[size-lg=medium] {
    width: 2.5rem;
    height: 2.5rem;
  }
  .theme-default-dark matcha-spin[size-lg=large] {
    width: 3rem;
    height: 3rem;
  }
  .theme-default-dark matcha-spin[size-lg=huge] {
    width: 3.5rem;
    height: 3.5rem;
  }
}
@media screen and (min-width: 1920px) {
  .theme-default-dark matcha-spin[size-xl=tiny] {
    width: 1.5rem;
    height: 1.5rem;
  }
  .theme-default-dark matcha-spin[size-xl=small] {
    width: 2rem;
    height: 2rem;
  }
  .theme-default-dark matcha-spin[size-xl=medium] {
    width: 2.5rem;
    height: 2.5rem;
  }
  .theme-default-dark matcha-spin[size-xl=large] {
    width: 3rem;
    height: 3rem;
  }
  .theme-default-dark matcha-spin[size-xl=huge] {
    width: 3.5rem;
    height: 3.5rem;
  }
}
.theme-default-dark matcha-spinner:not([color]) .spinner-progress {
  stroke: #2979ff;
}
.theme-default-dark matcha-spinner[color=red] .spinner-progress {
  stroke: #f7c4c4;
}
.theme-default-dark matcha-spinner[color=pink] .spinner-progress {
  stroke: #f8bbd0;
}
.theme-default-dark matcha-spinner[color=purple] .spinner-progress {
  stroke: #e1bee7;
}
.theme-default-dark matcha-spinner[color=deep-purple] .spinner-progress {
  stroke: #d1c4e9;
}
.theme-default-dark matcha-spinner[color=indigo] .spinner-progress {
  stroke: #c5cae9;
}
.theme-default-dark matcha-spinner[color=blue] .spinner-progress {
  stroke: #bccef4;
}
.theme-default-dark matcha-spinner[color=light-blue] .spinner-progress {
  stroke: #b3e5fc;
}
.theme-default-dark matcha-spinner[color=cyan] .spinner-progress {
  stroke: #b2ebf2;
}
.theme-default-dark matcha-spinner[color=teal] .spinner-progress {
  stroke: #b2dfdb;
}
.theme-default-dark matcha-spinner[color=green] .spinner-progress {
  stroke: #b8dec8;
}
.theme-default-dark matcha-spinner[color=light-green] .spinner-progress {
  stroke: #D4F4C0;
}
.theme-default-dark matcha-spinner[color=lime] .spinner-progress {
  stroke: #dbebb3;
}
.theme-default-dark matcha-spinner[color=yellow] .spinner-progress {
  stroke: #f8edb3;
}
.theme-default-dark matcha-spinner[color=amber] .spinner-progress {
  stroke: #fee4ba;
}
.theme-default-dark matcha-spinner[color=orange] .spinner-progress {
  stroke: #fdd7b9;
}
.theme-default-dark matcha-spinner[color=deep-orange] .spinner-progress {
  stroke: #ffccbc;
}
.theme-default-dark matcha-spinner[color=brown] .spinner-progress {
  stroke: #d7ccc8;
}
.theme-default-dark matcha-spinner[color=grey] .spinner-progress {
  stroke: #DEE3E6;
}
.theme-default-dark matcha-spinner[color=blue-grey] .spinner-progress {
  stroke: #E2E7E9;
}
.theme-default-dark matcha-spinner[color=accent] .spinner-progress {
  stroke: #2979ff;
}
.theme-default-dark matcha-spinner[color=primary] .spinner-progress {
  stroke: #8A9EA8;
}
.theme-default-dark matcha-spinner[color=warn] .spinner-progress {
  stroke: #f29d9d;
}
.theme-default-dark matcha-spinner .spinner-placeholder {
  stroke: #292929;
  fill: none;
}
.theme-default-dark matcha-spinner .spinner-progress {
  fill: none;
}
.theme-default-dark matcha-spinner[size=tiny] svg {
  width: 1.5rem;
  height: 1.5rem;
}
.theme-default-dark matcha-spinner[size=small] svg {
  width: 2rem;
  height: 2rem;
}
.theme-default-dark matcha-spinner[size=medium] svg {
  width: 2.5rem;
  height: 2.5rem;
}
.theme-default-dark matcha-spinner[size=large] svg {
  width: 3rem;
  height: 3rem;
}
.theme-default-dark matcha-spinner[size=huge] svg {
  width: 3.5rem;
  height: 3.5rem;
}
@media screen and (max-width: 599px) {
  .theme-default-dark matcha-spinner[size-xs=tiny] svg {
    width: 1.5rem;
    height: 1.5rem;
  }
  .theme-default-dark matcha-spinner[size-xs=small] svg {
    width: 2rem;
    height: 2rem;
  }
  .theme-default-dark matcha-spinner[size-xs=medium] svg {
    width: 2.5rem;
    height: 2.5rem;
  }
  .theme-default-dark matcha-spinner[size-xs=large] svg {
    width: 3rem;
    height: 3rem;
  }
  .theme-default-dark matcha-spinner[size-xs=huge] svg {
    width: 3.5rem;
    height: 3.5rem;
  }
}
@media screen and (min-width: 600px) {
  .theme-default-dark matcha-spinner[size-sm=tiny] svg {
    width: 1.5rem;
    height: 1.5rem;
  }
  .theme-default-dark matcha-spinner[size-sm=small] svg {
    width: 2rem;
    height: 2rem;
  }
  .theme-default-dark matcha-spinner[size-sm=medium] svg {
    width: 2.5rem;
    height: 2.5rem;
  }
  .theme-default-dark matcha-spinner[size-sm=large] svg {
    width: 3rem;
    height: 3rem;
  }
  .theme-default-dark matcha-spinner[size-sm=huge] svg {
    width: 3.5rem;
    height: 3.5rem;
  }
}
@media screen and (min-width: 1024px) {
  .theme-default-dark matcha-spinner[size-md=tiny] svg {
    width: 1.5rem;
    height: 1.5rem;
  }
  .theme-default-dark matcha-spinner[size-md=small] svg {
    width: 2rem;
    height: 2rem;
  }
  .theme-default-dark matcha-spinner[size-md=medium] svg {
    width: 2.5rem;
    height: 2.5rem;
  }
  .theme-default-dark matcha-spinner[size-md=large] svg {
    width: 3rem;
    height: 3rem;
  }
  .theme-default-dark matcha-spinner[size-md=huge] svg {
    width: 3.5rem;
    height: 3.5rem;
  }
}
@media screen and (min-width: 1440px) {
  .theme-default-dark matcha-spinner[size-lg=tiny] svg {
    width: 1.5rem;
    height: 1.5rem;
  }
  .theme-default-dark matcha-spinner[size-lg=small] svg {
    width: 2rem;
    height: 2rem;
  }
  .theme-default-dark matcha-spinner[size-lg=medium] svg {
    width: 2.5rem;
    height: 2.5rem;
  }
  .theme-default-dark matcha-spinner[size-lg=large] svg {
    width: 3rem;
    height: 3rem;
  }
  .theme-default-dark matcha-spinner[size-lg=huge] svg {
    width: 3.5rem;
    height: 3.5rem;
  }
}
@media screen and (min-width: 1920px) {
  .theme-default-dark matcha-spinner[size-xl=tiny] svg {
    width: 1.5rem;
    height: 1.5rem;
  }
  .theme-default-dark matcha-spinner[size-xl=small] svg {
    width: 2rem;
    height: 2rem;
  }
  .theme-default-dark matcha-spinner[size-xl=medium] svg {
    width: 2.5rem;
    height: 2.5rem;
  }
  .theme-default-dark matcha-spinner[size-xl=large] svg {
    width: 3rem;
    height: 3rem;
  }
  .theme-default-dark matcha-spinner[size-xl=huge] svg {
    width: 3.5rem;
    height: 3.5rem;
  }
}
.theme-default-dark matcha-spinner:not([size]) svg {
  width: 2.5rem;
  height: 2.5rem;
}
.theme-default-dark matcha-hint-text {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin: 0;
  padding: 0.25rem 0;
}
.theme-default-dark matcha-hint-text[type=error] {
  color: #f7c4c4;
}
.theme-default-dark matcha-hint-text[type=warning] {
  color: #f8edb3;
}
.theme-default-dark matcha-hint-text[type=info] {
  color: #bccef4;
}
.theme-default-dark matcha-hint-text[type=success] {
  color: #b8dec8;
}
.theme-default-dark matcha-hint-text:not([size]) {
  font-size: 0.75rem;
  line-height: 1rem;
}
.theme-default-dark matcha-hint-text:not([size]) matcha-icon,
.theme-default-dark matcha-hint-text:not([size]) matcha-icon span {
  display: flex;
  width: 1rem;
  height: 1rem;
  font-size: 1rem;
  line-height: 1rem;
}
.theme-default-dark matcha-hint-text[size=tiny] {
  font-size: 0.75rem;
  line-height: 1rem;
}
.theme-default-dark matcha-hint-text[size=tiny] matcha-icon span {
  width: 1rem;
  height: 1rem;
  font-size: 1rem;
  line-height: 1rem;
}
.theme-default-dark matcha-hint-text[size=medium] {
  font-size: 0.875rem;
  line-height: 1.5rem;
}
.theme-default-dark matcha-hint-text[size=medium] matcha-icon,
.theme-default-dark matcha-hint-text[size=medium] matcha-icon span {
  width: 1.5rem;
  height: 1.5rem;
  font-size: 1.5rem;
  line-height: 1.5rem;
}
@media screen and (max-width: 599px) {
  .theme-default-dark matcha-hint-text[size-xs=tiny] {
    font-size: 0.75rem;
    line-height: 1rem;
  }
  .theme-default-dark matcha-hint-text[size-xs=tiny] matcha-icon span {
    width: 1rem;
    height: 1rem;
    font-size: 1rem;
    line-height: 1rem;
  }
  .theme-default-dark matcha-hint-text[size-xs=medium] {
    font-size: 0.875rem;
    line-height: 1.5rem;
  }
  .theme-default-dark matcha-hint-text[size-xs=medium] matcha-icon,
  .theme-default-dark matcha-hint-text[size-xs=medium] matcha-icon span {
    width: 1.5rem;
    height: 1.5rem;
    font-size: 1.5rem;
    line-height: 1.5rem;
  }
}
@media screen and (min-width: 600px) {
  .theme-default-dark matcha-hint-text[size-sm=tiny] {
    font-size: 0.75rem;
    line-height: 1rem;
  }
  .theme-default-dark matcha-hint-text[size-sm=tiny] matcha-icon span {
    width: 1rem;
    height: 1rem;
    font-size: 1rem;
    line-height: 1rem;
  }
  .theme-default-dark matcha-hint-text[size-sm=medium] {
    font-size: 0.875rem;
    line-height: 1.5rem;
  }
  .theme-default-dark matcha-hint-text[size-sm=medium] matcha-icon,
  .theme-default-dark matcha-hint-text[size-sm=medium] matcha-icon span {
    width: 1.5rem;
    height: 1.5rem;
    font-size: 1.5rem;
    line-height: 1.5rem;
  }
}
@media screen and (min-width: 1024px) {
  .theme-default-dark matcha-hint-text[size-md=tiny] {
    font-size: 0.75rem;
    line-height: 1rem;
  }
  .theme-default-dark matcha-hint-text[size-md=tiny] matcha-icon span {
    width: 1rem;
    height: 1rem;
    font-size: 1rem;
    line-height: 1rem;
  }
  .theme-default-dark matcha-hint-text[size-md=medium] {
    font-size: 0.875rem;
    line-height: 1.5rem;
  }
  .theme-default-dark matcha-hint-text[size-md=medium] matcha-icon,
  .theme-default-dark matcha-hint-text[size-md=medium] matcha-icon span {
    width: 1.5rem;
    height: 1.5rem;
    font-size: 1.5rem;
    line-height: 1.5rem;
  }
}
@media screen and (min-width: 1440px) {
  .theme-default-dark matcha-hint-text[size-lg=tiny] {
    font-size: 0.75rem;
    line-height: 1rem;
  }
  .theme-default-dark matcha-hint-text[size-lg=tiny] matcha-icon span {
    width: 1rem;
    height: 1rem;
    font-size: 1rem;
    line-height: 1rem;
  }
  .theme-default-dark matcha-hint-text[size-lg=medium] {
    font-size: 0.875rem;
    line-height: 1.5rem;
  }
  .theme-default-dark matcha-hint-text[size-lg=medium] matcha-icon,
  .theme-default-dark matcha-hint-text[size-lg=medium] matcha-icon span {
    width: 1.5rem;
    height: 1.5rem;
    font-size: 1.5rem;
    line-height: 1.5rem;
  }
}
@media screen and (min-width: 1920px) {
  .theme-default-dark matcha-hint-text[size-xl=tiny] {
    font-size: 0.75rem;
    line-height: 1rem;
  }
  .theme-default-dark matcha-hint-text[size-xl=tiny] matcha-icon span {
    width: 1rem;
    height: 1rem;
    font-size: 1rem;
    line-height: 1rem;
  }
  .theme-default-dark matcha-hint-text[size-xl=medium] {
    font-size: 0.875rem;
    line-height: 1.5rem;
  }
  .theme-default-dark matcha-hint-text[size-xl=medium] matcha-icon,
  .theme-default-dark matcha-hint-text[size-xl=medium] matcha-icon span {
    width: 1.5rem;
    height: 1.5rem;
    font-size: 1.5rem;
    line-height: 1.5rem;
  }
}
.theme-default-dark matcha-slide-toggle input[type=checkbox]::before {
  background-color: #141414;
  border-color: #8A9EA8;
}
.theme-default-dark matcha-slide-toggle input[type=checkbox]::after {
  box-shadow: #292929;
  background-color: #8A9EA8;
}
.theme-default-dark matcha-slide-toggle:not([color]) input[type=checkbox]:checked::before, .theme-default-dark matcha-slide-toggle[color=accent] input[type=checkbox]:checked::before {
  background-color: #2979ff;
  border-color: #2979ff;
}
.theme-default-dark matcha-slide-toggle:not([color]) input[type=checkbox]:checked::after, .theme-default-dark matcha-slide-toggle[color=accent] input[type=checkbox]:checked::after {
  background-color: white;
}
.theme-default-dark matcha-slide-toggle[color=red] input[type=checkbox]:checked::before {
  background-color: #f7c4c4;
  border-color: #f7c4c4;
}
.theme-default-dark matcha-slide-toggle[color=red] input[type=checkbox]:checked::after {
  background-color: rgba(0, 0, 0, 0.87);
}
.theme-default-dark matcha-slide-toggle[color=pink] input[type=checkbox]:checked::before {
  background-color: #f8bbd0;
  border-color: #f8bbd0;
}
.theme-default-dark matcha-slide-toggle[color=pink] input[type=checkbox]:checked::after {
  background-color: rgba(0, 0, 0, 0.87);
}
.theme-default-dark matcha-slide-toggle[color=purple] input[type=checkbox]:checked::before {
  background-color: #e1bee7;
  border-color: #e1bee7;
}
.theme-default-dark matcha-slide-toggle[color=purple] input[type=checkbox]:checked::after {
  background-color: rgba(0, 0, 0, 0.87);
}
.theme-default-dark matcha-slide-toggle[color=deep-purple] input[type=checkbox]:checked::before {
  background-color: #d1c4e9;
  border-color: #d1c4e9;
}
.theme-default-dark matcha-slide-toggle[color=deep-purple] input[type=checkbox]:checked::after {
  background-color: rgba(0, 0, 0, 0.87);
}
.theme-default-dark matcha-slide-toggle[color=indigo] input[type=checkbox]:checked::before {
  background-color: #c5cae9;
  border-color: #c5cae9;
}
.theme-default-dark matcha-slide-toggle[color=indigo] input[type=checkbox]:checked::after {
  background-color: rgba(0, 0, 0, 0.87);
}
.theme-default-dark matcha-slide-toggle[color=blue] input[type=checkbox]:checked::before {
  background-color: #bccef4;
  border-color: #bccef4;
}
.theme-default-dark matcha-slide-toggle[color=blue] input[type=checkbox]:checked::after {
  background-color: rgba(0, 0, 0, 0.87);
}
.theme-default-dark matcha-slide-toggle[color=light-blue] input[type=checkbox]:checked::before {
  background-color: #b3e5fc;
  border-color: #b3e5fc;
}
.theme-default-dark matcha-slide-toggle[color=light-blue] input[type=checkbox]:checked::after {
  background-color: rgba(0, 0, 0, 0.87);
}
.theme-default-dark matcha-slide-toggle[color=cyan] input[type=checkbox]:checked::before {
  background-color: #b2ebf2;
  border-color: #b2ebf2;
}
.theme-default-dark matcha-slide-toggle[color=cyan] input[type=checkbox]:checked::after {
  background-color: rgba(0, 0, 0, 0.87);
}
.theme-default-dark matcha-slide-toggle[color=teal] input[type=checkbox]:checked::before {
  background-color: #b2dfdb;
  border-color: #b2dfdb;
}
.theme-default-dark matcha-slide-toggle[color=teal] input[type=checkbox]:checked::after {
  background-color: rgba(0, 0, 0, 0.87);
}
.theme-default-dark matcha-slide-toggle[color=green] input[type=checkbox]:checked::before {
  background-color: #b8dec8;
  border-color: #b8dec8;
}
.theme-default-dark matcha-slide-toggle[color=green] input[type=checkbox]:checked::after {
  background-color: rgba(0, 0, 0, 0.87);
}
.theme-default-dark matcha-slide-toggle[color=light-green] input[type=checkbox]:checked::before {
  background-color: #D4F4C0;
  border-color: #D4F4C0;
}
.theme-default-dark matcha-slide-toggle[color=light-green] input[type=checkbox]:checked::after {
  background-color: rgba(0, 0, 0, 0.87);
}
.theme-default-dark matcha-slide-toggle[color=lime] input[type=checkbox]:checked::before {
  background-color: #dbebb3;
  border-color: #dbebb3;
}
.theme-default-dark matcha-slide-toggle[color=lime] input[type=checkbox]:checked::after {
  background-color: rgba(0, 0, 0, 0.87);
}
.theme-default-dark matcha-slide-toggle[color=yellow] input[type=checkbox]:checked::before {
  background-color: #f8edb3;
  border-color: #f8edb3;
}
.theme-default-dark matcha-slide-toggle[color=yellow] input[type=checkbox]:checked::after {
  background-color: rgba(0, 0, 0, 0.87);
}
.theme-default-dark matcha-slide-toggle[color=amber] input[type=checkbox]:checked::before {
  background-color: #fee4ba;
  border-color: #fee4ba;
}
.theme-default-dark matcha-slide-toggle[color=amber] input[type=checkbox]:checked::after {
  background-color: rgba(0, 0, 0, 0.87);
}
.theme-default-dark matcha-slide-toggle[color=orange] input[type=checkbox]:checked::before {
  background-color: #fdd7b9;
  border-color: #fdd7b9;
}
.theme-default-dark matcha-slide-toggle[color=orange] input[type=checkbox]:checked::after {
  background-color: rgba(0, 0, 0, 0.87);
}
.theme-default-dark matcha-slide-toggle[color=deep-orange] input[type=checkbox]:checked::before {
  background-color: #ffccbc;
  border-color: #ffccbc;
}
.theme-default-dark matcha-slide-toggle[color=deep-orange] input[type=checkbox]:checked::after {
  background-color: rgba(0, 0, 0, 0.87);
}
.theme-default-dark matcha-slide-toggle[color=brown] input[type=checkbox]:checked::before {
  background-color: #d7ccc8;
  border-color: #d7ccc8;
}
.theme-default-dark matcha-slide-toggle[color=brown] input[type=checkbox]:checked::after {
  background-color: rgba(0, 0, 0, 0.87);
}
.theme-default-dark matcha-slide-toggle[color=grey] input[type=checkbox]:checked::before {
  background-color: #DEE3E6;
  border-color: #DEE3E6;
}
.theme-default-dark matcha-slide-toggle[color=grey] input[type=checkbox]:checked::after {
  background-color: rgba(0, 0, 0, 0.87);
}
.theme-default-dark matcha-slide-toggle[color=blue-grey] input[type=checkbox]:checked::before {
  background-color: #E2E7E9;
  border-color: #E2E7E9;
}
.theme-default-dark matcha-slide-toggle[color=blue-grey] input[type=checkbox]:checked::after {
  background-color: rgba(0, 0, 0, 0.87);
}
.theme-default-dark matcha-slide-toggle[color=primary] input[type=checkbox]:checked::before {
  background-color: #8A9EA8;
  border-color: #8A9EA8;
}
.theme-default-dark matcha-slide-toggle[color=primary] input[type=checkbox]:checked::after {
  background-color: white;
}
.theme-default-dark matcha-slide-toggle[color=warn] input[type=checkbox]:checked::before {
  background-color: #f29d9d;
  border-color: #f29d9d;
}
.theme-default-dark matcha-slide-toggle[color=warn] input[type=checkbox]:checked::after {
  background-color: rgba(0, 0, 0, 0.87);
}
.theme-default-dark matcha-slide-toggle .matcha-slide-toggle-label {
  color: #DEE3E6;
}
.theme-default-dark matcha-slide-toggle label {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  vertical-align: middle;
  position: relative;
}
.theme-default-dark matcha-slide-toggle label .matcha-slide-toggle-label {
  font-size: 14px;
  -webkit-user-select: none;
          user-select: none;
}
.theme-default-dark matcha-slide-toggle label.matcha-slide-toggle-disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.theme-default-dark matcha-slide-toggle label.matcha-slide-toggle-disabled input[type=checkbox] {
  cursor: not-allowed;
}
.theme-default-dark matcha-slide-toggle input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  position: relative;
  display: inline-block;
  width: 36px;
  height: 20px;
  margin: 0;
  outline: none;
  cursor: pointer;
  vertical-align: middle;
}
.theme-default-dark matcha-slide-toggle input[type=checkbox]::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 20px;
  border-width: 2px;
  border-style: solid;
  border-radius: 12px;
  box-sizing: border-box;
  transition: background-color 0.15s linear;
}
.theme-default-dark matcha-slide-toggle input[type=checkbox]::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 3px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.15s linear, outline 0.1s ease-out;
}
.theme-default-dark matcha-slide-toggle input[type=checkbox]:checked::after {
  top: 2px;
  left: 1px;
  width: 16px;
  height: 16px;
  transform: translateX(17px);
}
.theme-default-dark matcha-slide-toggle input[type=checkbox]:focus-visible::after {
  outline-offset: 2px;
}
.theme-default-dark matcha-tabs {
  display: flex;
}
.theme-default-dark matcha-tabs[inactivetype=basic][inactivecolor=red] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-dark matcha-tabs[inactivetype=basic][inactivecolor=red] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  background: #141414;
  color: #f7c4c4;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-dark matcha-tabs[inactivetype=basic][inactivecolor=red] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-dark matcha-tabs[inactivetype=basic][inactivecolor=red] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(247, 196, 196, 0.2);
}
.theme-default-dark matcha-tabs[inactivetype=basic][inactivecolor=pink] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-dark matcha-tabs[inactivetype=basic][inactivecolor=pink] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  background: #141414;
  color: #f8bbd0;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-dark matcha-tabs[inactivetype=basic][inactivecolor=pink] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-dark matcha-tabs[inactivetype=basic][inactivecolor=pink] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(248, 187, 208, 0.2);
}
.theme-default-dark matcha-tabs[inactivetype=basic][inactivecolor=purple] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-dark matcha-tabs[inactivetype=basic][inactivecolor=purple] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  background: #141414;
  color: #e1bee7;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-dark matcha-tabs[inactivetype=basic][inactivecolor=purple] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-dark matcha-tabs[inactivetype=basic][inactivecolor=purple] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(225, 190, 231, 0.2);
}
.theme-default-dark matcha-tabs[inactivetype=basic][inactivecolor=deep-purple] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-dark matcha-tabs[inactivetype=basic][inactivecolor=deep-purple] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  background: #141414;
  color: #d1c4e9;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-dark matcha-tabs[inactivetype=basic][inactivecolor=deep-purple] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-dark matcha-tabs[inactivetype=basic][inactivecolor=deep-purple] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(209, 196, 233, 0.2);
}
.theme-default-dark matcha-tabs[inactivetype=basic][inactivecolor=indigo] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-dark matcha-tabs[inactivetype=basic][inactivecolor=indigo] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  background: #141414;
  color: #c5cae9;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-dark matcha-tabs[inactivetype=basic][inactivecolor=indigo] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-dark matcha-tabs[inactivetype=basic][inactivecolor=indigo] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(197, 202, 233, 0.2);
}
.theme-default-dark matcha-tabs[inactivetype=basic][inactivecolor=blue] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-dark matcha-tabs[inactivetype=basic][inactivecolor=blue] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  background: #141414;
  color: #bccef4;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-dark matcha-tabs[inactivetype=basic][inactivecolor=blue] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-dark matcha-tabs[inactivetype=basic][inactivecolor=blue] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(188, 206, 244, 0.2);
}
.theme-default-dark matcha-tabs[inactivetype=basic][inactivecolor=light-blue] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-dark matcha-tabs[inactivetype=basic][inactivecolor=light-blue] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  background: #141414;
  color: #b3e5fc;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-dark matcha-tabs[inactivetype=basic][inactivecolor=light-blue] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-dark matcha-tabs[inactivetype=basic][inactivecolor=light-blue] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(179, 229, 252, 0.2);
}
.theme-default-dark matcha-tabs[inactivetype=basic][inactivecolor=cyan] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-dark matcha-tabs[inactivetype=basic][inactivecolor=cyan] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  background: #141414;
  color: #b2ebf2;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-dark matcha-tabs[inactivetype=basic][inactivecolor=cyan] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-dark matcha-tabs[inactivetype=basic][inactivecolor=cyan] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(178, 235, 242, 0.2);
}
.theme-default-dark matcha-tabs[inactivetype=basic][inactivecolor=teal] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-dark matcha-tabs[inactivetype=basic][inactivecolor=teal] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  background: #141414;
  color: #b2dfdb;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-dark matcha-tabs[inactivetype=basic][inactivecolor=teal] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-dark matcha-tabs[inactivetype=basic][inactivecolor=teal] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(178, 223, 219, 0.2);
}
.theme-default-dark matcha-tabs[inactivetype=basic][inactivecolor=green] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-dark matcha-tabs[inactivetype=basic][inactivecolor=green] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  background: #141414;
  color: #b8dec8;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-dark matcha-tabs[inactivetype=basic][inactivecolor=green] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-dark matcha-tabs[inactivetype=basic][inactivecolor=green] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(184, 222, 200, 0.2);
}
.theme-default-dark matcha-tabs[inactivetype=basic][inactivecolor=light-green] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-dark matcha-tabs[inactivetype=basic][inactivecolor=light-green] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  background: #141414;
  color: #D4F4C0;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-dark matcha-tabs[inactivetype=basic][inactivecolor=light-green] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-dark matcha-tabs[inactivetype=basic][inactivecolor=light-green] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(212, 244, 192, 0.2);
}
.theme-default-dark matcha-tabs[inactivetype=basic][inactivecolor=lime] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-dark matcha-tabs[inactivetype=basic][inactivecolor=lime] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  background: #141414;
  color: #dbebb3;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-dark matcha-tabs[inactivetype=basic][inactivecolor=lime] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-dark matcha-tabs[inactivetype=basic][inactivecolor=lime] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(219, 235, 179, 0.2);
}
.theme-default-dark matcha-tabs[inactivetype=basic][inactivecolor=yellow] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-dark matcha-tabs[inactivetype=basic][inactivecolor=yellow] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  background: #141414;
  color: #f8edb3;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-dark matcha-tabs[inactivetype=basic][inactivecolor=yellow] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-dark matcha-tabs[inactivetype=basic][inactivecolor=yellow] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(248, 237, 179, 0.2);
}
.theme-default-dark matcha-tabs[inactivetype=basic][inactivecolor=amber] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-dark matcha-tabs[inactivetype=basic][inactivecolor=amber] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  background: #141414;
  color: #fee4ba;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-dark matcha-tabs[inactivetype=basic][inactivecolor=amber] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-dark matcha-tabs[inactivetype=basic][inactivecolor=amber] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(254, 228, 186, 0.2);
}
.theme-default-dark matcha-tabs[inactivetype=basic][inactivecolor=orange] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-dark matcha-tabs[inactivetype=basic][inactivecolor=orange] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  background: #141414;
  color: #fdd7b9;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-dark matcha-tabs[inactivetype=basic][inactivecolor=orange] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-dark matcha-tabs[inactivetype=basic][inactivecolor=orange] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(253, 215, 185, 0.2);
}
.theme-default-dark matcha-tabs[inactivetype=basic][inactivecolor=deep-orange] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-dark matcha-tabs[inactivetype=basic][inactivecolor=deep-orange] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  background: #141414;
  color: #ffccbc;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-dark matcha-tabs[inactivetype=basic][inactivecolor=deep-orange] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-dark matcha-tabs[inactivetype=basic][inactivecolor=deep-orange] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(255, 204, 188, 0.2);
}
.theme-default-dark matcha-tabs[inactivetype=basic][inactivecolor=brown] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-dark matcha-tabs[inactivetype=basic][inactivecolor=brown] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  background: #141414;
  color: #d7ccc8;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-dark matcha-tabs[inactivetype=basic][inactivecolor=brown] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-dark matcha-tabs[inactivetype=basic][inactivecolor=brown] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(215, 204, 200, 0.2);
}
.theme-default-dark matcha-tabs[inactivetype=basic][inactivecolor=grey] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-dark matcha-tabs[inactivetype=basic][inactivecolor=grey] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  background: #141414;
  color: #DEE3E6;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-dark matcha-tabs[inactivetype=basic][inactivecolor=grey] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-dark matcha-tabs[inactivetype=basic][inactivecolor=grey] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(222, 227, 230, 0.2);
}
.theme-default-dark matcha-tabs[inactivetype=basic][inactivecolor=blue-grey] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-dark matcha-tabs[inactivetype=basic][inactivecolor=blue-grey] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  background: #141414;
  color: #E2E7E9;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-dark matcha-tabs[inactivetype=basic][inactivecolor=blue-grey] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-dark matcha-tabs[inactivetype=basic][inactivecolor=blue-grey] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(226, 231, 233, 0.2);
}
.theme-default-dark matcha-tabs[inactivetype=basic][inactivecolor=primary] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-dark matcha-tabs[inactivetype=basic][inactivecolor=primary] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  background: #141414;
  color: #8A9EA8;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-dark matcha-tabs[inactivetype=basic][inactivecolor=primary] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-dark matcha-tabs[inactivetype=basic][inactivecolor=primary] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(138, 158, 168, 0.2);
}
.theme-default-dark matcha-tabs[inactivetype=basic][inactivecolor=accent] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-dark matcha-tabs[inactivetype=basic][inactivecolor=accent] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  background: #141414;
  color: #2979ff;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-dark matcha-tabs[inactivetype=basic][inactivecolor=accent] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-dark matcha-tabs[inactivetype=basic][inactivecolor=accent] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(41, 121, 255, 0.2);
}
.theme-default-dark matcha-tabs[inactivetype=basic][inactivecolor=warn] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-dark matcha-tabs[inactivetype=basic][inactivecolor=warn] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  background: #141414;
  color: #f29d9d;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-dark matcha-tabs[inactivetype=basic][inactivecolor=warn] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-dark matcha-tabs[inactivetype=basic][inactivecolor=warn] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(242, 157, 157, 0.2);
}
.theme-default-dark matcha-tabs[inactivetype=basic][inactivecolor=disabled] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-dark matcha-tabs[inactivetype=basic][inactivecolor=disabled] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  background: #141414;
  color: #292929;
  box-shadow: 0 0 0 0px inset;
}
.theme-default-dark matcha-tabs[inactivetype=basic][inactivecolor=disabled] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-dark matcha-tabs[inactivetype=basic][inactivecolor=disabled] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(10, 10, 10, 0.5);
}
.theme-default-dark matcha-tabs[inactivetype=basic][disabled]:not([active-item=true]) .button-group matcha-tab-item button[matcha-button],
.theme-default-dark matcha-tabs[inactivetype=basic][disabled]:not([active-item=true]) .button-group matcha-tab-item a[matcha-button], .theme-default-dark matcha-tabs[inactivetype=basic][disabled]:not([disabled=false]):not([active-item=true]) .button-group matcha-tab-item button[matcha-button],
.theme-default-dark matcha-tabs[inactivetype=basic][disabled]:not([disabled=false]):not([active-item=true]) .button-group matcha-tab-item a[matcha-button], .theme-default-dark matcha-tabs[inactivetype=basic][disabled=true]:not([active-item=true]) .button-group matcha-tab-item button[matcha-button],
.theme-default-dark matcha-tabs[inactivetype=basic][disabled=true]:not([active-item=true]) .button-group matcha-tab-item a[matcha-button] {
  background: #141414;
  color: #292929;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-dark matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=red] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-dark matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=red] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  color: #f7c4c4;
  background: transparent;
  box-shadow: 0 0 0 2px #f7c4c4 inset;
}
.theme-default-dark matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=red] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-dark matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=red] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(247, 196, 196, 0.2);
}
.theme-default-dark matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=pink] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-dark matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=pink] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  color: #f8bbd0;
  background: transparent;
  box-shadow: 0 0 0 2px #f8bbd0 inset;
}
.theme-default-dark matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=pink] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-dark matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=pink] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(248, 187, 208, 0.2);
}
.theme-default-dark matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=purple] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-dark matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=purple] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  color: #e1bee7;
  background: transparent;
  box-shadow: 0 0 0 2px #e1bee7 inset;
}
.theme-default-dark matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=purple] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-dark matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=purple] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(225, 190, 231, 0.2);
}
.theme-default-dark matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=deep-purple] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-dark matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=deep-purple] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  color: #d1c4e9;
  background: transparent;
  box-shadow: 0 0 0 2px #d1c4e9 inset;
}
.theme-default-dark matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=deep-purple] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-dark matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=deep-purple] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(209, 196, 233, 0.2);
}
.theme-default-dark matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=indigo] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-dark matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=indigo] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  color: #c5cae9;
  background: transparent;
  box-shadow: 0 0 0 2px #c5cae9 inset;
}
.theme-default-dark matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=indigo] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-dark matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=indigo] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(197, 202, 233, 0.2);
}
.theme-default-dark matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=blue] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-dark matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=blue] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  color: #bccef4;
  background: transparent;
  box-shadow: 0 0 0 2px #bccef4 inset;
}
.theme-default-dark matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=blue] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-dark matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=blue] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(188, 206, 244, 0.2);
}
.theme-default-dark matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=light-blue] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-dark matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=light-blue] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  color: #b3e5fc;
  background: transparent;
  box-shadow: 0 0 0 2px #b3e5fc inset;
}
.theme-default-dark matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=light-blue] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-dark matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=light-blue] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(179, 229, 252, 0.2);
}
.theme-default-dark matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=cyan] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-dark matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=cyan] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  color: #b2ebf2;
  background: transparent;
  box-shadow: 0 0 0 2px #b2ebf2 inset;
}
.theme-default-dark matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=cyan] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-dark matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=cyan] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(178, 235, 242, 0.2);
}
.theme-default-dark matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=teal] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-dark matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=teal] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  color: #b2dfdb;
  background: transparent;
  box-shadow: 0 0 0 2px #b2dfdb inset;
}
.theme-default-dark matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=teal] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-dark matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=teal] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(178, 223, 219, 0.2);
}
.theme-default-dark matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=green] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-dark matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=green] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  color: #b8dec8;
  background: transparent;
  box-shadow: 0 0 0 2px #b8dec8 inset;
}
.theme-default-dark matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=green] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-dark matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=green] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(184, 222, 200, 0.2);
}
.theme-default-dark matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=light-green] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-dark matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=light-green] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  color: #D4F4C0;
  background: transparent;
  box-shadow: 0 0 0 2px #D4F4C0 inset;
}
.theme-default-dark matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=light-green] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-dark matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=light-green] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(212, 244, 192, 0.2);
}
.theme-default-dark matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=lime] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-dark matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=lime] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  color: #dbebb3;
  background: transparent;
  box-shadow: 0 0 0 2px #dbebb3 inset;
}
.theme-default-dark matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=lime] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-dark matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=lime] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(219, 235, 179, 0.2);
}
.theme-default-dark matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=yellow] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-dark matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=yellow] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  color: #f8edb3;
  background: transparent;
  box-shadow: 0 0 0 2px #f8edb3 inset;
}
.theme-default-dark matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=yellow] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-dark matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=yellow] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(248, 237, 179, 0.2);
}
.theme-default-dark matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=amber] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-dark matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=amber] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  color: #fee4ba;
  background: transparent;
  box-shadow: 0 0 0 2px #fee4ba inset;
}
.theme-default-dark matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=amber] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-dark matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=amber] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(254, 228, 186, 0.2);
}
.theme-default-dark matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=orange] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-dark matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=orange] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  color: #fdd7b9;
  background: transparent;
  box-shadow: 0 0 0 2px #fdd7b9 inset;
}
.theme-default-dark matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=orange] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-dark matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=orange] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(253, 215, 185, 0.2);
}
.theme-default-dark matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=deep-orange] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-dark matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=deep-orange] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  color: #ffccbc;
  background: transparent;
  box-shadow: 0 0 0 2px #ffccbc inset;
}
.theme-default-dark matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=deep-orange] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-dark matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=deep-orange] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(255, 204, 188, 0.2);
}
.theme-default-dark matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=brown] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-dark matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=brown] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  color: #d7ccc8;
  background: transparent;
  box-shadow: 0 0 0 2px #d7ccc8 inset;
}
.theme-default-dark matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=brown] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-dark matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=brown] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(215, 204, 200, 0.2);
}
.theme-default-dark matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=grey] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-dark matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=grey] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  color: #DEE3E6;
  background: transparent;
  box-shadow: 0 0 0 2px #DEE3E6 inset;
}
.theme-default-dark matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=grey] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-dark matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=grey] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(222, 227, 230, 0.2);
}
.theme-default-dark matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=blue-grey] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-dark matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=blue-grey] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  color: #E2E7E9;
  background: transparent;
  box-shadow: 0 0 0 2px #E2E7E9 inset;
}
.theme-default-dark matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=blue-grey] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-dark matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=blue-grey] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(226, 231, 233, 0.2);
}
.theme-default-dark matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=primary] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-dark matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=primary] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  color: #8A9EA8;
  background: transparent;
  box-shadow: 0 0 0 2px #8A9EA8 inset;
}
.theme-default-dark matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=primary] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-dark matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=primary] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(138, 158, 168, 0.2);
}
.theme-default-dark matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=accent] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-dark matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=accent] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  color: #2979ff;
  background: transparent;
  box-shadow: 0 0 0 2px #2979ff inset;
}
.theme-default-dark matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=accent] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-dark matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=accent] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(41, 121, 255, 0.2);
}
.theme-default-dark matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=warn] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-dark matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=warn] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  color: #f29d9d;
  background: transparent;
  box-shadow: 0 0 0 2px #f29d9d inset;
}
.theme-default-dark matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=warn] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-dark matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=warn] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(242, 157, 157, 0.2);
}
.theme-default-dark matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=disabled] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-dark matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=disabled] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  color: #292929;
  background: transparent;
  box-shadow: 0 0 0 2px #292929 inset;
}
.theme-default-dark matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=disabled] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-dark matcha-tabs[inactivetype=outline]:not([disabled=true])[inactivecolor=disabled] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(10, 10, 10, 0.5);
}
.theme-default-dark matcha-tabs[inactivetype=outline][disabled] > .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-dark matcha-tabs[inactivetype=outline][disabled] > .button-group matcha-tab-item a[matcha-button]:not([active-item=true]), .theme-default-dark matcha-tabs[inactivetype=outline][disabled]:not([disabled=false]) > .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-dark matcha-tabs[inactivetype=outline][disabled]:not([disabled=false]) > .button-group matcha-tab-item a[matcha-button]:not([active-item=true]), .theme-default-dark matcha-tabs[inactivetype=outline][disabled=true] > .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-dark matcha-tabs[inactivetype=outline][disabled=true] > .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  background: transparent;
  color: #292929;
  box-shadow: 0 0 0 2px inset;
  pointer-events: none;
}
.theme-default-dark matcha-tabs[inactivetype=alpha][inactivecolor=red] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-dark matcha-tabs[inactivetype=alpha][inactivecolor=red] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  color: #f7c4c4;
  background: rgba(247, 196, 196, 0.2);
  box-shadow: 0 0 0 0px;
}
.theme-default-dark matcha-tabs[inactivetype=alpha][inactivecolor=red] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-dark matcha-tabs[inactivetype=alpha][inactivecolor=red] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(0, 0, 0, 0.2);
}
.theme-default-dark matcha-tabs[inactivetype=alpha][inactivecolor=pink] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-dark matcha-tabs[inactivetype=alpha][inactivecolor=pink] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  color: #f8bbd0;
  background: rgba(248, 187, 208, 0.2);
  box-shadow: 0 0 0 0px;
}
.theme-default-dark matcha-tabs[inactivetype=alpha][inactivecolor=pink] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-dark matcha-tabs[inactivetype=alpha][inactivecolor=pink] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(0, 0, 0, 0.2);
}
.theme-default-dark matcha-tabs[inactivetype=alpha][inactivecolor=purple] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-dark matcha-tabs[inactivetype=alpha][inactivecolor=purple] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  color: #e1bee7;
  background: rgba(225, 190, 231, 0.2);
  box-shadow: 0 0 0 0px;
}
.theme-default-dark matcha-tabs[inactivetype=alpha][inactivecolor=purple] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-dark matcha-tabs[inactivetype=alpha][inactivecolor=purple] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(0, 0, 0, 0.2);
}
.theme-default-dark matcha-tabs[inactivetype=alpha][inactivecolor=deep-purple] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-dark matcha-tabs[inactivetype=alpha][inactivecolor=deep-purple] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  color: #d1c4e9;
  background: rgba(209, 196, 233, 0.2);
  box-shadow: 0 0 0 0px;
}
.theme-default-dark matcha-tabs[inactivetype=alpha][inactivecolor=deep-purple] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-dark matcha-tabs[inactivetype=alpha][inactivecolor=deep-purple] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(0, 0, 0, 0.2);
}
.theme-default-dark matcha-tabs[inactivetype=alpha][inactivecolor=indigo] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-dark matcha-tabs[inactivetype=alpha][inactivecolor=indigo] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  color: #c5cae9;
  background: rgba(197, 202, 233, 0.2);
  box-shadow: 0 0 0 0px;
}
.theme-default-dark matcha-tabs[inactivetype=alpha][inactivecolor=indigo] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-dark matcha-tabs[inactivetype=alpha][inactivecolor=indigo] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(0, 0, 0, 0.2);
}
.theme-default-dark matcha-tabs[inactivetype=alpha][inactivecolor=blue] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-dark matcha-tabs[inactivetype=alpha][inactivecolor=blue] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  color: #bccef4;
  background: rgba(188, 206, 244, 0.2);
  box-shadow: 0 0 0 0px;
}
.theme-default-dark matcha-tabs[inactivetype=alpha][inactivecolor=blue] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-dark matcha-tabs[inactivetype=alpha][inactivecolor=blue] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(0, 0, 0, 0.2);
}
.theme-default-dark matcha-tabs[inactivetype=alpha][inactivecolor=light-blue] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-dark matcha-tabs[inactivetype=alpha][inactivecolor=light-blue] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  color: #b3e5fc;
  background: rgba(179, 229, 252, 0.2);
  box-shadow: 0 0 0 0px;
}
.theme-default-dark matcha-tabs[inactivetype=alpha][inactivecolor=light-blue] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-dark matcha-tabs[inactivetype=alpha][inactivecolor=light-blue] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(0, 0, 0, 0.2);
}
.theme-default-dark matcha-tabs[inactivetype=alpha][inactivecolor=cyan] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-dark matcha-tabs[inactivetype=alpha][inactivecolor=cyan] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  color: #b2ebf2;
  background: rgba(178, 235, 242, 0.2);
  box-shadow: 0 0 0 0px;
}
.theme-default-dark matcha-tabs[inactivetype=alpha][inactivecolor=cyan] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-dark matcha-tabs[inactivetype=alpha][inactivecolor=cyan] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(0, 0, 0, 0.2);
}
.theme-default-dark matcha-tabs[inactivetype=alpha][inactivecolor=teal] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-dark matcha-tabs[inactivetype=alpha][inactivecolor=teal] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  color: #b2dfdb;
  background: rgba(178, 223, 219, 0.2);
  box-shadow: 0 0 0 0px;
}
.theme-default-dark matcha-tabs[inactivetype=alpha][inactivecolor=teal] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-dark matcha-tabs[inactivetype=alpha][inactivecolor=teal] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(0, 0, 0, 0.2);
}
.theme-default-dark matcha-tabs[inactivetype=alpha][inactivecolor=green] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-dark matcha-tabs[inactivetype=alpha][inactivecolor=green] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  color: #b8dec8;
  background: rgba(184, 222, 200, 0.2);
  box-shadow: 0 0 0 0px;
}
.theme-default-dark matcha-tabs[inactivetype=alpha][inactivecolor=green] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-dark matcha-tabs[inactivetype=alpha][inactivecolor=green] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(0, 0, 0, 0.2);
}
.theme-default-dark matcha-tabs[inactivetype=alpha][inactivecolor=light-green] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-dark matcha-tabs[inactivetype=alpha][inactivecolor=light-green] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  color: #D4F4C0;
  background: rgba(212, 244, 192, 0.2);
  box-shadow: 0 0 0 0px;
}
.theme-default-dark matcha-tabs[inactivetype=alpha][inactivecolor=light-green] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-dark matcha-tabs[inactivetype=alpha][inactivecolor=light-green] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(0, 0, 0, 0.2);
}
.theme-default-dark matcha-tabs[inactivetype=alpha][inactivecolor=lime] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-dark matcha-tabs[inactivetype=alpha][inactivecolor=lime] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  color: #dbebb3;
  background: rgba(219, 235, 179, 0.2);
  box-shadow: 0 0 0 0px;
}
.theme-default-dark matcha-tabs[inactivetype=alpha][inactivecolor=lime] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-dark matcha-tabs[inactivetype=alpha][inactivecolor=lime] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(0, 0, 0, 0.2);
}
.theme-default-dark matcha-tabs[inactivetype=alpha][inactivecolor=yellow] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-dark matcha-tabs[inactivetype=alpha][inactivecolor=yellow] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  color: #f8edb3;
  background: rgba(248, 237, 179, 0.2);
  box-shadow: 0 0 0 0px;
}
.theme-default-dark matcha-tabs[inactivetype=alpha][inactivecolor=yellow] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-dark matcha-tabs[inactivetype=alpha][inactivecolor=yellow] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(0, 0, 0, 0.2);
}
.theme-default-dark matcha-tabs[inactivetype=alpha][inactivecolor=amber] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-dark matcha-tabs[inactivetype=alpha][inactivecolor=amber] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  color: #fee4ba;
  background: rgba(254, 228, 186, 0.2);
  box-shadow: 0 0 0 0px;
}
.theme-default-dark matcha-tabs[inactivetype=alpha][inactivecolor=amber] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-dark matcha-tabs[inactivetype=alpha][inactivecolor=amber] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(0, 0, 0, 0.2);
}
.theme-default-dark matcha-tabs[inactivetype=alpha][inactivecolor=orange] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-dark matcha-tabs[inactivetype=alpha][inactivecolor=orange] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  color: #fdd7b9;
  background: rgba(253, 215, 185, 0.2);
  box-shadow: 0 0 0 0px;
}
.theme-default-dark matcha-tabs[inactivetype=alpha][inactivecolor=orange] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-dark matcha-tabs[inactivetype=alpha][inactivecolor=orange] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(0, 0, 0, 0.2);
}
.theme-default-dark matcha-tabs[inactivetype=alpha][inactivecolor=deep-orange] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-dark matcha-tabs[inactivetype=alpha][inactivecolor=deep-orange] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  color: #ffccbc;
  background: rgba(255, 204, 188, 0.2);
  box-shadow: 0 0 0 0px;
}
.theme-default-dark matcha-tabs[inactivetype=alpha][inactivecolor=deep-orange] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-dark matcha-tabs[inactivetype=alpha][inactivecolor=deep-orange] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(0, 0, 0, 0.2);
}
.theme-default-dark matcha-tabs[inactivetype=alpha][inactivecolor=brown] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-dark matcha-tabs[inactivetype=alpha][inactivecolor=brown] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  color: #d7ccc8;
  background: rgba(215, 204, 200, 0.2);
  box-shadow: 0 0 0 0px;
}
.theme-default-dark matcha-tabs[inactivetype=alpha][inactivecolor=brown] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-dark matcha-tabs[inactivetype=alpha][inactivecolor=brown] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(0, 0, 0, 0.2);
}
.theme-default-dark matcha-tabs[inactivetype=alpha][inactivecolor=grey] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-dark matcha-tabs[inactivetype=alpha][inactivecolor=grey] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  color: #DEE3E6;
  background: rgba(222, 227, 230, 0.2);
  box-shadow: 0 0 0 0px;
}
.theme-default-dark matcha-tabs[inactivetype=alpha][inactivecolor=grey] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-dark matcha-tabs[inactivetype=alpha][inactivecolor=grey] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(0, 0, 0, 0.2);
}
.theme-default-dark matcha-tabs[inactivetype=alpha][inactivecolor=blue-grey] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-dark matcha-tabs[inactivetype=alpha][inactivecolor=blue-grey] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  color: #E2E7E9;
  background: rgba(226, 231, 233, 0.2);
  box-shadow: 0 0 0 0px;
}
.theme-default-dark matcha-tabs[inactivetype=alpha][inactivecolor=blue-grey] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-dark matcha-tabs[inactivetype=alpha][inactivecolor=blue-grey] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(0, 0, 0, 0.2);
}
.theme-default-dark matcha-tabs[inactivetype=alpha][inactivecolor=primary] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-dark matcha-tabs[inactivetype=alpha][inactivecolor=primary] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  color: #8A9EA8;
  background: rgba(138, 158, 168, 0.2);
  box-shadow: 0 0 0 0px;
}
.theme-default-dark matcha-tabs[inactivetype=alpha][inactivecolor=primary] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-dark matcha-tabs[inactivetype=alpha][inactivecolor=primary] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(255, 255, 255, 0.2);
}
.theme-default-dark matcha-tabs[inactivetype=alpha][inactivecolor=accent] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-dark matcha-tabs[inactivetype=alpha][inactivecolor=accent] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  color: #2979ff;
  background: rgba(41, 121, 255, 0.2);
  box-shadow: 0 0 0 0px;
}
.theme-default-dark matcha-tabs[inactivetype=alpha][inactivecolor=accent] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-dark matcha-tabs[inactivetype=alpha][inactivecolor=accent] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(255, 255, 255, 0.2);
}
.theme-default-dark matcha-tabs[inactivetype=alpha][inactivecolor=warn] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-dark matcha-tabs[inactivetype=alpha][inactivecolor=warn] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  color: #f29d9d;
  background: rgba(242, 157, 157, 0.2);
  box-shadow: 0 0 0 0px;
}
.theme-default-dark matcha-tabs[inactivetype=alpha][inactivecolor=warn] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-dark matcha-tabs[inactivetype=alpha][inactivecolor=warn] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(0, 0, 0, 0.2);
}
.theme-default-dark matcha-tabs[inactivetype=alpha][inactivecolor=disabled] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-dark matcha-tabs[inactivetype=alpha][inactivecolor=disabled] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  color: #292929;
  background: rgba(10, 10, 10, 0.5);
  box-shadow: 0 0 0 0px;
}
.theme-default-dark matcha-tabs[inactivetype=alpha][inactivecolor=disabled] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-dark matcha-tabs[inactivetype=alpha][inactivecolor=disabled] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(33, 40, 44, 0.5);
}
.theme-default-dark matcha-tabs[inactivetype=alpha][disabled] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-dark matcha-tabs[inactivetype=alpha][disabled] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]), .theme-default-dark matcha-tabs[inactivetype=alpha][disabled]:not([disabled=false]) .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-dark matcha-tabs[inactivetype=alpha][disabled]:not([disabled=false]) .button-group matcha-tab-item a[matcha-button]:not([active-item=true]), .theme-default-dark matcha-tabs[inactivetype=alpha][disabled=true] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-dark matcha-tabs[inactivetype=alpha][disabled=true] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  background: rgba(10, 10, 10, 0.5);
  color: #292929;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-dark matcha-tabs[inactivetype=link][inactivecolor=red] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-dark matcha-tabs[inactivetype=link][inactivecolor=red] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  background: transparent;
  color: #f7c4c4;
  box-shadow: 0 0 0 0px;
}
.theme-default-dark matcha-tabs[inactivetype=link][inactivecolor=red] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-dark matcha-tabs[inactivetype=link][inactivecolor=red] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(247, 196, 196, 0.2);
}
.theme-default-dark matcha-tabs[inactivetype=link][inactivecolor=pink] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-dark matcha-tabs[inactivetype=link][inactivecolor=pink] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  background: transparent;
  color: #f8bbd0;
  box-shadow: 0 0 0 0px;
}
.theme-default-dark matcha-tabs[inactivetype=link][inactivecolor=pink] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-dark matcha-tabs[inactivetype=link][inactivecolor=pink] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(248, 187, 208, 0.2);
}
.theme-default-dark matcha-tabs[inactivetype=link][inactivecolor=purple] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-dark matcha-tabs[inactivetype=link][inactivecolor=purple] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  background: transparent;
  color: #e1bee7;
  box-shadow: 0 0 0 0px;
}
.theme-default-dark matcha-tabs[inactivetype=link][inactivecolor=purple] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-dark matcha-tabs[inactivetype=link][inactivecolor=purple] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(225, 190, 231, 0.2);
}
.theme-default-dark matcha-tabs[inactivetype=link][inactivecolor=deep-purple] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-dark matcha-tabs[inactivetype=link][inactivecolor=deep-purple] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  background: transparent;
  color: #d1c4e9;
  box-shadow: 0 0 0 0px;
}
.theme-default-dark matcha-tabs[inactivetype=link][inactivecolor=deep-purple] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-dark matcha-tabs[inactivetype=link][inactivecolor=deep-purple] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(209, 196, 233, 0.2);
}
.theme-default-dark matcha-tabs[inactivetype=link][inactivecolor=indigo] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-dark matcha-tabs[inactivetype=link][inactivecolor=indigo] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  background: transparent;
  color: #c5cae9;
  box-shadow: 0 0 0 0px;
}
.theme-default-dark matcha-tabs[inactivetype=link][inactivecolor=indigo] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-dark matcha-tabs[inactivetype=link][inactivecolor=indigo] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(197, 202, 233, 0.2);
}
.theme-default-dark matcha-tabs[inactivetype=link][inactivecolor=blue] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-dark matcha-tabs[inactivetype=link][inactivecolor=blue] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  background: transparent;
  color: #bccef4;
  box-shadow: 0 0 0 0px;
}
.theme-default-dark matcha-tabs[inactivetype=link][inactivecolor=blue] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-dark matcha-tabs[inactivetype=link][inactivecolor=blue] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(188, 206, 244, 0.2);
}
.theme-default-dark matcha-tabs[inactivetype=link][inactivecolor=light-blue] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-dark matcha-tabs[inactivetype=link][inactivecolor=light-blue] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  background: transparent;
  color: #b3e5fc;
  box-shadow: 0 0 0 0px;
}
.theme-default-dark matcha-tabs[inactivetype=link][inactivecolor=light-blue] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-dark matcha-tabs[inactivetype=link][inactivecolor=light-blue] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(179, 229, 252, 0.2);
}
.theme-default-dark matcha-tabs[inactivetype=link][inactivecolor=cyan] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-dark matcha-tabs[inactivetype=link][inactivecolor=cyan] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  background: transparent;
  color: #b2ebf2;
  box-shadow: 0 0 0 0px;
}
.theme-default-dark matcha-tabs[inactivetype=link][inactivecolor=cyan] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-dark matcha-tabs[inactivetype=link][inactivecolor=cyan] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(178, 235, 242, 0.2);
}
.theme-default-dark matcha-tabs[inactivetype=link][inactivecolor=teal] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-dark matcha-tabs[inactivetype=link][inactivecolor=teal] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  background: transparent;
  color: #b2dfdb;
  box-shadow: 0 0 0 0px;
}
.theme-default-dark matcha-tabs[inactivetype=link][inactivecolor=teal] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-dark matcha-tabs[inactivetype=link][inactivecolor=teal] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(178, 223, 219, 0.2);
}
.theme-default-dark matcha-tabs[inactivetype=link][inactivecolor=green] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-dark matcha-tabs[inactivetype=link][inactivecolor=green] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  background: transparent;
  color: #b8dec8;
  box-shadow: 0 0 0 0px;
}
.theme-default-dark matcha-tabs[inactivetype=link][inactivecolor=green] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-dark matcha-tabs[inactivetype=link][inactivecolor=green] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(184, 222, 200, 0.2);
}
.theme-default-dark matcha-tabs[inactivetype=link][inactivecolor=light-green] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-dark matcha-tabs[inactivetype=link][inactivecolor=light-green] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  background: transparent;
  color: #D4F4C0;
  box-shadow: 0 0 0 0px;
}
.theme-default-dark matcha-tabs[inactivetype=link][inactivecolor=light-green] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-dark matcha-tabs[inactivetype=link][inactivecolor=light-green] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(212, 244, 192, 0.2);
}
.theme-default-dark matcha-tabs[inactivetype=link][inactivecolor=lime] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-dark matcha-tabs[inactivetype=link][inactivecolor=lime] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  background: transparent;
  color: #dbebb3;
  box-shadow: 0 0 0 0px;
}
.theme-default-dark matcha-tabs[inactivetype=link][inactivecolor=lime] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-dark matcha-tabs[inactivetype=link][inactivecolor=lime] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(219, 235, 179, 0.2);
}
.theme-default-dark matcha-tabs[inactivetype=link][inactivecolor=yellow] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-dark matcha-tabs[inactivetype=link][inactivecolor=yellow] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  background: transparent;
  color: #f8edb3;
  box-shadow: 0 0 0 0px;
}
.theme-default-dark matcha-tabs[inactivetype=link][inactivecolor=yellow] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-dark matcha-tabs[inactivetype=link][inactivecolor=yellow] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(248, 237, 179, 0.2);
}
.theme-default-dark matcha-tabs[inactivetype=link][inactivecolor=amber] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-dark matcha-tabs[inactivetype=link][inactivecolor=amber] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  background: transparent;
  color: #fee4ba;
  box-shadow: 0 0 0 0px;
}
.theme-default-dark matcha-tabs[inactivetype=link][inactivecolor=amber] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-dark matcha-tabs[inactivetype=link][inactivecolor=amber] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(254, 228, 186, 0.2);
}
.theme-default-dark matcha-tabs[inactivetype=link][inactivecolor=orange] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-dark matcha-tabs[inactivetype=link][inactivecolor=orange] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  background: transparent;
  color: #fdd7b9;
  box-shadow: 0 0 0 0px;
}
.theme-default-dark matcha-tabs[inactivetype=link][inactivecolor=orange] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-dark matcha-tabs[inactivetype=link][inactivecolor=orange] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(253, 215, 185, 0.2);
}
.theme-default-dark matcha-tabs[inactivetype=link][inactivecolor=deep-orange] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-dark matcha-tabs[inactivetype=link][inactivecolor=deep-orange] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  background: transparent;
  color: #ffccbc;
  box-shadow: 0 0 0 0px;
}
.theme-default-dark matcha-tabs[inactivetype=link][inactivecolor=deep-orange] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-dark matcha-tabs[inactivetype=link][inactivecolor=deep-orange] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(255, 204, 188, 0.2);
}
.theme-default-dark matcha-tabs[inactivetype=link][inactivecolor=brown] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-dark matcha-tabs[inactivetype=link][inactivecolor=brown] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  background: transparent;
  color: #d7ccc8;
  box-shadow: 0 0 0 0px;
}
.theme-default-dark matcha-tabs[inactivetype=link][inactivecolor=brown] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-dark matcha-tabs[inactivetype=link][inactivecolor=brown] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(215, 204, 200, 0.2);
}
.theme-default-dark matcha-tabs[inactivetype=link][inactivecolor=grey] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-dark matcha-tabs[inactivetype=link][inactivecolor=grey] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  background: transparent;
  color: #DEE3E6;
  box-shadow: 0 0 0 0px;
}
.theme-default-dark matcha-tabs[inactivetype=link][inactivecolor=grey] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-dark matcha-tabs[inactivetype=link][inactivecolor=grey] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(222, 227, 230, 0.2);
}
.theme-default-dark matcha-tabs[inactivetype=link][inactivecolor=blue-grey] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-dark matcha-tabs[inactivetype=link][inactivecolor=blue-grey] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  background: transparent;
  color: #E2E7E9;
  box-shadow: 0 0 0 0px;
}
.theme-default-dark matcha-tabs[inactivetype=link][inactivecolor=blue-grey] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-dark matcha-tabs[inactivetype=link][inactivecolor=blue-grey] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(226, 231, 233, 0.2);
}
.theme-default-dark matcha-tabs[inactivetype=link][inactivecolor=primary] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-dark matcha-tabs[inactivetype=link][inactivecolor=primary] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  background: transparent;
  color: #8A9EA8;
  box-shadow: 0 0 0 0px;
}
.theme-default-dark matcha-tabs[inactivetype=link][inactivecolor=primary] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-dark matcha-tabs[inactivetype=link][inactivecolor=primary] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(138, 158, 168, 0.2);
}
.theme-default-dark matcha-tabs[inactivetype=link][inactivecolor=accent] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-dark matcha-tabs[inactivetype=link][inactivecolor=accent] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  background: transparent;
  color: #2979ff;
  box-shadow: 0 0 0 0px;
}
.theme-default-dark matcha-tabs[inactivetype=link][inactivecolor=accent] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-dark matcha-tabs[inactivetype=link][inactivecolor=accent] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(41, 121, 255, 0.2);
}
.theme-default-dark matcha-tabs[inactivetype=link][inactivecolor=warn] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-dark matcha-tabs[inactivetype=link][inactivecolor=warn] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  background: transparent;
  color: #f29d9d;
  box-shadow: 0 0 0 0px;
}
.theme-default-dark matcha-tabs[inactivetype=link][inactivecolor=warn] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-dark matcha-tabs[inactivetype=link][inactivecolor=warn] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(242, 157, 157, 0.2);
}
.theme-default-dark matcha-tabs[inactivetype=link][inactivecolor=disabled] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-dark matcha-tabs[inactivetype=link][inactivecolor=disabled] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  background: transparent;
  color: #292929;
  box-shadow: 0 0 0 0px;
}
.theme-default-dark matcha-tabs[inactivetype=link][inactivecolor=disabled] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]) .ripple,
.theme-default-dark matcha-tabs[inactivetype=link][inactivecolor=disabled] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) .ripple {
  background: rgba(10, 10, 10, 0.5);
}
.theme-default-dark matcha-tabs[inactivetype=link][disabled] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-dark matcha-tabs[inactivetype=link][disabled] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]), .theme-default-dark matcha-tabs[inactivetype=link][disabled]:not([disabled=false]) .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-dark matcha-tabs[inactivetype=link][disabled]:not([disabled=false]) .button-group matcha-tab-item a[matcha-button]:not([active-item=true]), .theme-default-dark matcha-tabs[inactivetype=link][disabled=true] .button-group matcha-tab-item button[matcha-button]:not([active-item=true]),
.theme-default-dark matcha-tabs[inactivetype=link][disabled=true] .button-group matcha-tab-item a[matcha-button]:not([active-item=true]) {
  background: transparent;
  color: #292929;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-dark matcha-tabs[disabled] .button-group matcha-tab-item button[matcha-button][active-item=true][outline], .theme-default-dark matcha-tabs[disabled] .button-group matcha-tab-item button[matcha-button][active-item=true][outline]:not([outline=false]), .theme-default-dark matcha-tabs[disabled] .button-group matcha-tab-item button[matcha-button][active-item=true][outline=true],
.theme-default-dark matcha-tabs[disabled] .button-group matcha-tab-item a[matcha-button][active-item=true][outline],
.theme-default-dark matcha-tabs[disabled] .button-group matcha-tab-item a[matcha-button][active-item=true][outline]:not([outline=false]),
.theme-default-dark matcha-tabs[disabled] .button-group matcha-tab-item a[matcha-button][active-item=true][outline=true], .theme-default-dark matcha-tabs[disabled]:not([disabled=false]) .button-group matcha-tab-item button[matcha-button][active-item=true][outline], .theme-default-dark matcha-tabs[disabled]:not([disabled=false]) .button-group matcha-tab-item button[matcha-button][active-item=true][outline]:not([outline=false]), .theme-default-dark matcha-tabs[disabled]:not([disabled=false]) .button-group matcha-tab-item button[matcha-button][active-item=true][outline=true],
.theme-default-dark matcha-tabs[disabled]:not([disabled=false]) .button-group matcha-tab-item a[matcha-button][active-item=true][outline],
.theme-default-dark matcha-tabs[disabled]:not([disabled=false]) .button-group matcha-tab-item a[matcha-button][active-item=true][outline]:not([outline=false]),
.theme-default-dark matcha-tabs[disabled]:not([disabled=false]) .button-group matcha-tab-item a[matcha-button][active-item=true][outline=true], .theme-default-dark matcha-tabs[disabled=true] .button-group matcha-tab-item button[matcha-button][active-item=true][outline], .theme-default-dark matcha-tabs[disabled=true] .button-group matcha-tab-item button[matcha-button][active-item=true][outline]:not([outline=false]), .theme-default-dark matcha-tabs[disabled=true] .button-group matcha-tab-item button[matcha-button][active-item=true][outline=true],
.theme-default-dark matcha-tabs[disabled=true] .button-group matcha-tab-item a[matcha-button][active-item=true][outline],
.theme-default-dark matcha-tabs[disabled=true] .button-group matcha-tab-item a[matcha-button][active-item=true][outline]:not([outline=false]),
.theme-default-dark matcha-tabs[disabled=true] .button-group matcha-tab-item a[matcha-button][active-item=true][outline=true] {
  background: transparent;
  color: #292929;
  box-shadow: 0 0 0 2px inset;
  pointer-events: none;
}
.theme-default-dark matcha-tabs[disabled] .button-group matcha-tab-item button[matcha-button][active-item=true][basic], .theme-default-dark matcha-tabs[disabled] .button-group matcha-tab-item button[matcha-button][active-item=true][basic]:not([basic=false]), .theme-default-dark matcha-tabs[disabled] .button-group matcha-tab-item button[matcha-button][active-item=true][basic=true],
.theme-default-dark matcha-tabs[disabled] .button-group matcha-tab-item a[matcha-button][active-item=true][basic],
.theme-default-dark matcha-tabs[disabled] .button-group matcha-tab-item a[matcha-button][active-item=true][basic]:not([basic=false]),
.theme-default-dark matcha-tabs[disabled] .button-group matcha-tab-item a[matcha-button][active-item=true][basic=true], .theme-default-dark matcha-tabs[disabled]:not([disabled=false]) .button-group matcha-tab-item button[matcha-button][active-item=true][basic], .theme-default-dark matcha-tabs[disabled]:not([disabled=false]) .button-group matcha-tab-item button[matcha-button][active-item=true][basic]:not([basic=false]), .theme-default-dark matcha-tabs[disabled]:not([disabled=false]) .button-group matcha-tab-item button[matcha-button][active-item=true][basic=true],
.theme-default-dark matcha-tabs[disabled]:not([disabled=false]) .button-group matcha-tab-item a[matcha-button][active-item=true][basic],
.theme-default-dark matcha-tabs[disabled]:not([disabled=false]) .button-group matcha-tab-item a[matcha-button][active-item=true][basic]:not([basic=false]),
.theme-default-dark matcha-tabs[disabled]:not([disabled=false]) .button-group matcha-tab-item a[matcha-button][active-item=true][basic=true], .theme-default-dark matcha-tabs[disabled=true] .button-group matcha-tab-item button[matcha-button][active-item=true][basic], .theme-default-dark matcha-tabs[disabled=true] .button-group matcha-tab-item button[matcha-button][active-item=true][basic]:not([basic=false]), .theme-default-dark matcha-tabs[disabled=true] .button-group matcha-tab-item button[matcha-button][active-item=true][basic=true],
.theme-default-dark matcha-tabs[disabled=true] .button-group matcha-tab-item a[matcha-button][active-item=true][basic],
.theme-default-dark matcha-tabs[disabled=true] .button-group matcha-tab-item a[matcha-button][active-item=true][basic]:not([basic=false]),
.theme-default-dark matcha-tabs[disabled=true] .button-group matcha-tab-item a[matcha-button][active-item=true][basic=true] {
  background: #141414;
  color: #292929;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-dark matcha-tabs[disabled] .button-group matcha-tab-item button[matcha-button][active-item=true][alpha], .theme-default-dark matcha-tabs[disabled] .button-group matcha-tab-item button[matcha-button][active-item=true][alpha]:not([alpha=false]), .theme-default-dark matcha-tabs[disabled] .button-group matcha-tab-item button[matcha-button][active-item=true][alpha=true],
.theme-default-dark matcha-tabs[disabled] .button-group matcha-tab-item a[matcha-button][active-item=true][alpha],
.theme-default-dark matcha-tabs[disabled] .button-group matcha-tab-item a[matcha-button][active-item=true][alpha]:not([alpha=false]),
.theme-default-dark matcha-tabs[disabled] .button-group matcha-tab-item a[matcha-button][active-item=true][alpha=true], .theme-default-dark matcha-tabs[disabled]:not([disabled=false]) .button-group matcha-tab-item button[matcha-button][active-item=true][alpha], .theme-default-dark matcha-tabs[disabled]:not([disabled=false]) .button-group matcha-tab-item button[matcha-button][active-item=true][alpha]:not([alpha=false]), .theme-default-dark matcha-tabs[disabled]:not([disabled=false]) .button-group matcha-tab-item button[matcha-button][active-item=true][alpha=true],
.theme-default-dark matcha-tabs[disabled]:not([disabled=false]) .button-group matcha-tab-item a[matcha-button][active-item=true][alpha],
.theme-default-dark matcha-tabs[disabled]:not([disabled=false]) .button-group matcha-tab-item a[matcha-button][active-item=true][alpha]:not([alpha=false]),
.theme-default-dark matcha-tabs[disabled]:not([disabled=false]) .button-group matcha-tab-item a[matcha-button][active-item=true][alpha=true], .theme-default-dark matcha-tabs[disabled=true] .button-group matcha-tab-item button[matcha-button][active-item=true][alpha], .theme-default-dark matcha-tabs[disabled=true] .button-group matcha-tab-item button[matcha-button][active-item=true][alpha]:not([alpha=false]), .theme-default-dark matcha-tabs[disabled=true] .button-group matcha-tab-item button[matcha-button][active-item=true][alpha=true],
.theme-default-dark matcha-tabs[disabled=true] .button-group matcha-tab-item a[matcha-button][active-item=true][alpha],
.theme-default-dark matcha-tabs[disabled=true] .button-group matcha-tab-item a[matcha-button][active-item=true][alpha]:not([alpha=false]),
.theme-default-dark matcha-tabs[disabled=true] .button-group matcha-tab-item a[matcha-button][active-item=true][alpha=true] {
  background: rgba(10, 10, 10, 0.5);
  color: #292929;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-dark matcha-tabs[disabled] .button-group matcha-tab-item button[matcha-button][active-item=true][link], .theme-default-dark matcha-tabs[disabled] .button-group matcha-tab-item button[matcha-button][active-item=true][link]:not([link=false]), .theme-default-dark matcha-tabs[disabled] .button-group matcha-tab-item button[matcha-button][active-item=true][link=true],
.theme-default-dark matcha-tabs[disabled] .button-group matcha-tab-item a[matcha-button][active-item=true][link],
.theme-default-dark matcha-tabs[disabled] .button-group matcha-tab-item a[matcha-button][active-item=true][link]:not([link=false]),
.theme-default-dark matcha-tabs[disabled] .button-group matcha-tab-item a[matcha-button][active-item=true][link=true], .theme-default-dark matcha-tabs[disabled]:not([disabled=false]) .button-group matcha-tab-item button[matcha-button][active-item=true][link], .theme-default-dark matcha-tabs[disabled]:not([disabled=false]) .button-group matcha-tab-item button[matcha-button][active-item=true][link]:not([link=false]), .theme-default-dark matcha-tabs[disabled]:not([disabled=false]) .button-group matcha-tab-item button[matcha-button][active-item=true][link=true],
.theme-default-dark matcha-tabs[disabled]:not([disabled=false]) .button-group matcha-tab-item a[matcha-button][active-item=true][link],
.theme-default-dark matcha-tabs[disabled]:not([disabled=false]) .button-group matcha-tab-item a[matcha-button][active-item=true][link]:not([link=false]),
.theme-default-dark matcha-tabs[disabled]:not([disabled=false]) .button-group matcha-tab-item a[matcha-button][active-item=true][link=true], .theme-default-dark matcha-tabs[disabled=true] .button-group matcha-tab-item button[matcha-button][active-item=true][link], .theme-default-dark matcha-tabs[disabled=true] .button-group matcha-tab-item button[matcha-button][active-item=true][link]:not([link=false]), .theme-default-dark matcha-tabs[disabled=true] .button-group matcha-tab-item button[matcha-button][active-item=true][link=true],
.theme-default-dark matcha-tabs[disabled=true] .button-group matcha-tab-item a[matcha-button][active-item=true][link],
.theme-default-dark matcha-tabs[disabled=true] .button-group matcha-tab-item a[matcha-button][active-item=true][link]:not([link=false]),
.theme-default-dark matcha-tabs[disabled=true] .button-group matcha-tab-item a[matcha-button][active-item=true][link=true] {
  background: transparent;
  color: #292929;
  box-shadow: 0 0 0 0px inset;
  pointer-events: none;
}
.theme-default-dark matcha-modal {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.theme-default-dark matcha-modal[size=tiny] .matcha-modal {
  width: 100%;
  max-width: 20rem;
}
.theme-default-dark matcha-modal[size=small] .matcha-modal {
  width: 100%;
  max-width: 25rem;
}
.theme-default-dark matcha-modal[size=medium] .matcha-modal {
  width: 100%;
  max-width: 30rem;
}
.theme-default-dark matcha-modal[size=large] .matcha-modal {
  width: 100%;
  max-width: 35rem;
}
.theme-default-dark matcha-modal[size=huge] .matcha-modal {
  width: 100%;
  max-width: 40rem;
}
@media screen and (max-width: 599px) {
  .theme-default-dark matcha-modal[size-xs=tiny] .matcha-modal {
    width: 100%;
    max-width: 20rem;
  }
  .theme-default-dark matcha-modal[size-xs=small] .matcha-modal {
    width: 100%;
    max-width: 25rem;
  }
  .theme-default-dark matcha-modal[size-xs=medium] .matcha-modal {
    width: 100%;
    max-width: 30rem;
  }
  .theme-default-dark matcha-modal[size-xs=large] .matcha-modal {
    width: 100%;
    max-width: 35rem;
  }
  .theme-default-dark matcha-modal[size-xs=huge] .matcha-modal {
    width: 100%;
    max-width: 40rem;
  }
}
@media screen and (min-width: 600px) {
  .theme-default-dark matcha-modal[size-sm=tiny] .matcha-modal {
    width: 100%;
    max-width: 20rem;
  }
  .theme-default-dark matcha-modal[size-sm=small] .matcha-modal {
    width: 100%;
    max-width: 25rem;
  }
  .theme-default-dark matcha-modal[size-sm=medium] .matcha-modal {
    width: 100%;
    max-width: 30rem;
  }
  .theme-default-dark matcha-modal[size-sm=large] .matcha-modal {
    width: 100%;
    max-width: 35rem;
  }
  .theme-default-dark matcha-modal[size-sm=huge] .matcha-modal {
    width: 100%;
    max-width: 40rem;
  }
}
@media screen and (min-width: 1024px) {
  .theme-default-dark matcha-modal[size-md=tiny] .matcha-modal {
    width: 100%;
    max-width: 20rem;
  }
  .theme-default-dark matcha-modal[size-md=small] .matcha-modal {
    width: 100%;
    max-width: 25rem;
  }
  .theme-default-dark matcha-modal[size-md=medium] .matcha-modal {
    width: 100%;
    max-width: 30rem;
  }
  .theme-default-dark matcha-modal[size-md=large] .matcha-modal {
    width: 100%;
    max-width: 35rem;
  }
  .theme-default-dark matcha-modal[size-md=huge] .matcha-modal {
    width: 100%;
    max-width: 40rem;
  }
}
@media screen and (min-width: 1440px) {
  .theme-default-dark matcha-modal[size-lg=tiny] .matcha-modal {
    width: 100%;
    max-width: 20rem;
  }
  .theme-default-dark matcha-modal[size-lg=small] .matcha-modal {
    width: 100%;
    max-width: 25rem;
  }
  .theme-default-dark matcha-modal[size-lg=medium] .matcha-modal {
    width: 100%;
    max-width: 30rem;
  }
  .theme-default-dark matcha-modal[size-lg=large] .matcha-modal {
    width: 100%;
    max-width: 35rem;
  }
  .theme-default-dark matcha-modal[size-lg=huge] .matcha-modal {
    width: 100%;
    max-width: 40rem;
  }
}
@media screen and (min-width: 1920px) {
  .theme-default-dark matcha-modal[size-xl=tiny] .matcha-modal {
    width: 100%;
    max-width: 20rem;
  }
  .theme-default-dark matcha-modal[size-xl=small] .matcha-modal {
    width: 100%;
    max-width: 25rem;
  }
  .theme-default-dark matcha-modal[size-xl=medium] .matcha-modal {
    width: 100%;
    max-width: 30rem;
  }
  .theme-default-dark matcha-modal[size-xl=large] .matcha-modal {
    width: 100%;
    max-width: 35rem;
  }
  .theme-default-dark matcha-modal[size-xl=huge] .matcha-modal {
    width: 100%;
    max-width: 40rem;
  }
}
.theme-default-dark .matcha-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #E2E7E9;
  backdrop-filter: blur(6px);
  mix-blend-mode: multiply;
  z-index: 998;
}
.theme-default-dark .matcha-overlay-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  pointer-events: none;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.theme-default-dark .matcha-overlay-container > * {
  pointer-events: auto;
}
.theme-default-dark .skeleton-animated-background {
  background: linear-gradient(to right, #292929, rgba(255, 255, 255, 0.0666666667), #292929);
  background-size: 200% 100%;
  animation: gradientAnimation 1s linear infinite;
}
@keyframes gradientAnimation {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: -100% 0;
  }
}
.theme-default-dark matcha-radio:not([color]) input[type=radio] {
  border-color: #E2E7E9;
}
.theme-default-dark matcha-radio:not([color]) input[type=radio]:active {
  border-color: #2979ff;
}
.theme-default-dark matcha-radio:not([color]) input[type=radio]:checked {
  border-color: #2979ff;
}
.theme-default-dark matcha-radio:not([color]) input[type=radio]:checked::after {
  background-color: #2979ff;
}
.theme-default-dark matcha-radio:not([color]) .matcha-radio-container:hover {
  background-color: rgba(41, 121, 255, 0.1);
}
.theme-default-dark matcha-radio:not([color]) .matcha-radio-container .ripple {
  background: rgba(41, 121, 255, 0.2) !important;
}
.theme-default-dark matcha-radio[color] input[type=radio] {
  border-color: #E2E7E9;
}
.theme-default-dark matcha-radio[color=red] input[type=radio]:active {
  border-color: #f7c4c4;
}
.theme-default-dark matcha-radio[color=red] input[type=radio]:checked {
  border-color: #f7c4c4;
}
.theme-default-dark matcha-radio[color=red] input[type=radio]:checked::after {
  background-color: #f7c4c4;
}
.theme-default-dark matcha-radio[color=red] .matcha-radio-container:hover {
  background-color: rgba(247, 196, 196, 0.1);
}
.theme-default-dark matcha-radio[color=red] .matcha-radio-container .ripple {
  background: rgba(0, 0, 0, 0.2) !important;
}
.theme-default-dark matcha-radio[color=pink] input[type=radio]:active {
  border-color: #f8bbd0;
}
.theme-default-dark matcha-radio[color=pink] input[type=radio]:checked {
  border-color: #f8bbd0;
}
.theme-default-dark matcha-radio[color=pink] input[type=radio]:checked::after {
  background-color: #f8bbd0;
}
.theme-default-dark matcha-radio[color=pink] .matcha-radio-container:hover {
  background-color: rgba(248, 187, 208, 0.1);
}
.theme-default-dark matcha-radio[color=pink] .matcha-radio-container .ripple {
  background: rgba(0, 0, 0, 0.2) !important;
}
.theme-default-dark matcha-radio[color=purple] input[type=radio]:active {
  border-color: #e1bee7;
}
.theme-default-dark matcha-radio[color=purple] input[type=radio]:checked {
  border-color: #e1bee7;
}
.theme-default-dark matcha-radio[color=purple] input[type=radio]:checked::after {
  background-color: #e1bee7;
}
.theme-default-dark matcha-radio[color=purple] .matcha-radio-container:hover {
  background-color: rgba(225, 190, 231, 0.1);
}
.theme-default-dark matcha-radio[color=purple] .matcha-radio-container .ripple {
  background: rgba(0, 0, 0, 0.2) !important;
}
.theme-default-dark matcha-radio[color=deep-purple] input[type=radio]:active {
  border-color: #d1c4e9;
}
.theme-default-dark matcha-radio[color=deep-purple] input[type=radio]:checked {
  border-color: #d1c4e9;
}
.theme-default-dark matcha-radio[color=deep-purple] input[type=radio]:checked::after {
  background-color: #d1c4e9;
}
.theme-default-dark matcha-radio[color=deep-purple] .matcha-radio-container:hover {
  background-color: rgba(209, 196, 233, 0.1);
}
.theme-default-dark matcha-radio[color=deep-purple] .matcha-radio-container .ripple {
  background: rgba(0, 0, 0, 0.2) !important;
}
.theme-default-dark matcha-radio[color=indigo] input[type=radio]:active {
  border-color: #c5cae9;
}
.theme-default-dark matcha-radio[color=indigo] input[type=radio]:checked {
  border-color: #c5cae9;
}
.theme-default-dark matcha-radio[color=indigo] input[type=radio]:checked::after {
  background-color: #c5cae9;
}
.theme-default-dark matcha-radio[color=indigo] .matcha-radio-container:hover {
  background-color: rgba(197, 202, 233, 0.1);
}
.theme-default-dark matcha-radio[color=indigo] .matcha-radio-container .ripple {
  background: rgba(0, 0, 0, 0.2) !important;
}
.theme-default-dark matcha-radio[color=blue] input[type=radio]:active {
  border-color: #bccef4;
}
.theme-default-dark matcha-radio[color=blue] input[type=radio]:checked {
  border-color: #bccef4;
}
.theme-default-dark matcha-radio[color=blue] input[type=radio]:checked::after {
  background-color: #bccef4;
}
.theme-default-dark matcha-radio[color=blue] .matcha-radio-container:hover {
  background-color: rgba(188, 206, 244, 0.1);
}
.theme-default-dark matcha-radio[color=blue] .matcha-radio-container .ripple {
  background: rgba(0, 0, 0, 0.2) !important;
}
.theme-default-dark matcha-radio[color=light-blue] input[type=radio]:active {
  border-color: #b3e5fc;
}
.theme-default-dark matcha-radio[color=light-blue] input[type=radio]:checked {
  border-color: #b3e5fc;
}
.theme-default-dark matcha-radio[color=light-blue] input[type=radio]:checked::after {
  background-color: #b3e5fc;
}
.theme-default-dark matcha-radio[color=light-blue] .matcha-radio-container:hover {
  background-color: rgba(179, 229, 252, 0.1);
}
.theme-default-dark matcha-radio[color=light-blue] .matcha-radio-container .ripple {
  background: rgba(0, 0, 0, 0.2) !important;
}
.theme-default-dark matcha-radio[color=cyan] input[type=radio]:active {
  border-color: #b2ebf2;
}
.theme-default-dark matcha-radio[color=cyan] input[type=radio]:checked {
  border-color: #b2ebf2;
}
.theme-default-dark matcha-radio[color=cyan] input[type=radio]:checked::after {
  background-color: #b2ebf2;
}
.theme-default-dark matcha-radio[color=cyan] .matcha-radio-container:hover {
  background-color: rgba(178, 235, 242, 0.1);
}
.theme-default-dark matcha-radio[color=cyan] .matcha-radio-container .ripple {
  background: rgba(0, 0, 0, 0.2) !important;
}
.theme-default-dark matcha-radio[color=teal] input[type=radio]:active {
  border-color: #b2dfdb;
}
.theme-default-dark matcha-radio[color=teal] input[type=radio]:checked {
  border-color: #b2dfdb;
}
.theme-default-dark matcha-radio[color=teal] input[type=radio]:checked::after {
  background-color: #b2dfdb;
}
.theme-default-dark matcha-radio[color=teal] .matcha-radio-container:hover {
  background-color: rgba(178, 223, 219, 0.1);
}
.theme-default-dark matcha-radio[color=teal] .matcha-radio-container .ripple {
  background: rgba(0, 0, 0, 0.2) !important;
}
.theme-default-dark matcha-radio[color=green] input[type=radio]:active {
  border-color: #b8dec8;
}
.theme-default-dark matcha-radio[color=green] input[type=radio]:checked {
  border-color: #b8dec8;
}
.theme-default-dark matcha-radio[color=green] input[type=radio]:checked::after {
  background-color: #b8dec8;
}
.theme-default-dark matcha-radio[color=green] .matcha-radio-container:hover {
  background-color: rgba(184, 222, 200, 0.1);
}
.theme-default-dark matcha-radio[color=green] .matcha-radio-container .ripple {
  background: rgba(0, 0, 0, 0.2) !important;
}
.theme-default-dark matcha-radio[color=light-green] input[type=radio]:active {
  border-color: #D4F4C0;
}
.theme-default-dark matcha-radio[color=light-green] input[type=radio]:checked {
  border-color: #D4F4C0;
}
.theme-default-dark matcha-radio[color=light-green] input[type=radio]:checked::after {
  background-color: #D4F4C0;
}
.theme-default-dark matcha-radio[color=light-green] .matcha-radio-container:hover {
  background-color: rgba(212, 244, 192, 0.1);
}
.theme-default-dark matcha-radio[color=light-green] .matcha-radio-container .ripple {
  background: rgba(0, 0, 0, 0.2) !important;
}
.theme-default-dark matcha-radio[color=lime] input[type=radio]:active {
  border-color: #dbebb3;
}
.theme-default-dark matcha-radio[color=lime] input[type=radio]:checked {
  border-color: #dbebb3;
}
.theme-default-dark matcha-radio[color=lime] input[type=radio]:checked::after {
  background-color: #dbebb3;
}
.theme-default-dark matcha-radio[color=lime] .matcha-radio-container:hover {
  background-color: rgba(219, 235, 179, 0.1);
}
.theme-default-dark matcha-radio[color=lime] .matcha-radio-container .ripple {
  background: rgba(0, 0, 0, 0.2) !important;
}
.theme-default-dark matcha-radio[color=yellow] input[type=radio]:active {
  border-color: #f8edb3;
}
.theme-default-dark matcha-radio[color=yellow] input[type=radio]:checked {
  border-color: #f8edb3;
}
.theme-default-dark matcha-radio[color=yellow] input[type=radio]:checked::after {
  background-color: #f8edb3;
}
.theme-default-dark matcha-radio[color=yellow] .matcha-radio-container:hover {
  background-color: rgba(248, 237, 179, 0.1);
}
.theme-default-dark matcha-radio[color=yellow] .matcha-radio-container .ripple {
  background: rgba(0, 0, 0, 0.2) !important;
}
.theme-default-dark matcha-radio[color=amber] input[type=radio]:active {
  border-color: #fee4ba;
}
.theme-default-dark matcha-radio[color=amber] input[type=radio]:checked {
  border-color: #fee4ba;
}
.theme-default-dark matcha-radio[color=amber] input[type=radio]:checked::after {
  background-color: #fee4ba;
}
.theme-default-dark matcha-radio[color=amber] .matcha-radio-container:hover {
  background-color: rgba(254, 228, 186, 0.1);
}
.theme-default-dark matcha-radio[color=amber] .matcha-radio-container .ripple {
  background: rgba(0, 0, 0, 0.2) !important;
}
.theme-default-dark matcha-radio[color=orange] input[type=radio]:active {
  border-color: #fdd7b9;
}
.theme-default-dark matcha-radio[color=orange] input[type=radio]:checked {
  border-color: #fdd7b9;
}
.theme-default-dark matcha-radio[color=orange] input[type=radio]:checked::after {
  background-color: #fdd7b9;
}
.theme-default-dark matcha-radio[color=orange] .matcha-radio-container:hover {
  background-color: rgba(253, 215, 185, 0.1);
}
.theme-default-dark matcha-radio[color=orange] .matcha-radio-container .ripple {
  background: rgba(0, 0, 0, 0.2) !important;
}
.theme-default-dark matcha-radio[color=deep-orange] input[type=radio]:active {
  border-color: #ffccbc;
}
.theme-default-dark matcha-radio[color=deep-orange] input[type=radio]:checked {
  border-color: #ffccbc;
}
.theme-default-dark matcha-radio[color=deep-orange] input[type=radio]:checked::after {
  background-color: #ffccbc;
}
.theme-default-dark matcha-radio[color=deep-orange] .matcha-radio-container:hover {
  background-color: rgba(255, 204, 188, 0.1);
}
.theme-default-dark matcha-radio[color=deep-orange] .matcha-radio-container .ripple {
  background: rgba(0, 0, 0, 0.2) !important;
}
.theme-default-dark matcha-radio[color=brown] input[type=radio]:active {
  border-color: #d7ccc8;
}
.theme-default-dark matcha-radio[color=brown] input[type=radio]:checked {
  border-color: #d7ccc8;
}
.theme-default-dark matcha-radio[color=brown] input[type=radio]:checked::after {
  background-color: #d7ccc8;
}
.theme-default-dark matcha-radio[color=brown] .matcha-radio-container:hover {
  background-color: rgba(215, 204, 200, 0.1);
}
.theme-default-dark matcha-radio[color=brown] .matcha-radio-container .ripple {
  background: rgba(0, 0, 0, 0.2) !important;
}
.theme-default-dark matcha-radio[color=grey] input[type=radio]:active {
  border-color: #DEE3E6;
}
.theme-default-dark matcha-radio[color=grey] input[type=radio]:checked {
  border-color: #DEE3E6;
}
.theme-default-dark matcha-radio[color=grey] input[type=radio]:checked::after {
  background-color: #DEE3E6;
}
.theme-default-dark matcha-radio[color=grey] .matcha-radio-container:hover {
  background-color: rgba(222, 227, 230, 0.1);
}
.theme-default-dark matcha-radio[color=grey] .matcha-radio-container .ripple {
  background: rgba(0, 0, 0, 0.2) !important;
}
.theme-default-dark matcha-radio[color=blue-grey] input[type=radio]:active {
  border-color: #E2E7E9;
}
.theme-default-dark matcha-radio[color=blue-grey] input[type=radio]:checked {
  border-color: #E2E7E9;
}
.theme-default-dark matcha-radio[color=blue-grey] input[type=radio]:checked::after {
  background-color: #E2E7E9;
}
.theme-default-dark matcha-radio[color=blue-grey] .matcha-radio-container:hover {
  background-color: rgba(226, 231, 233, 0.1);
}
.theme-default-dark matcha-radio[color=blue-grey] .matcha-radio-container .ripple {
  background: rgba(0, 0, 0, 0.2) !important;
}
.theme-default-dark matcha-radio[color=primary] input[type=radio]:active {
  border-color: #8A9EA8;
}
.theme-default-dark matcha-radio[color=primary] input[type=radio]:checked {
  border-color: #8A9EA8;
}
.theme-default-dark matcha-radio[color=primary] input[type=radio]:checked::after {
  background-color: #8A9EA8;
}
.theme-default-dark matcha-radio[color=primary] .matcha-radio-container:hover {
  background-color: rgba(138, 158, 168, 0.1);
}
.theme-default-dark matcha-radio[color=primary] .matcha-radio-container .ripple {
  background: rgba(255, 255, 255, 0.2) !important;
}
.theme-default-dark matcha-radio[color=accent] input[type=radio]:active {
  border-color: #2979ff;
}
.theme-default-dark matcha-radio[color=accent] input[type=radio]:checked {
  border-color: #2979ff;
}
.theme-default-dark matcha-radio[color=accent] input[type=radio]:checked::after {
  background-color: #2979ff;
}
.theme-default-dark matcha-radio[color=accent] .matcha-radio-container:hover {
  background-color: rgba(41, 121, 255, 0.1);
}
.theme-default-dark matcha-radio[color=accent] .matcha-radio-container .ripple {
  background: rgba(255, 255, 255, 0.2) !important;
}
.theme-default-dark matcha-radio[color=warn] input[type=radio]:active {
  border-color: #f29d9d;
}
.theme-default-dark matcha-radio[color=warn] input[type=radio]:checked {
  border-color: #f29d9d;
}
.theme-default-dark matcha-radio[color=warn] input[type=radio]:checked::after {
  background-color: #f29d9d;
}
.theme-default-dark matcha-radio[color=warn] .matcha-radio-container:hover {
  background-color: rgba(242, 157, 157, 0.1);
}
.theme-default-dark matcha-radio[color=warn] .matcha-radio-container .ripple {
  background: rgba(0, 0, 0, 0.2) !important;
}
.theme-default-dark matcha-radio[disabled] input[type=radio] {
  border-color: #DEE3E6;
}
.theme-default-dark matcha-radio .matcha-radio-label {
  color: #DEE3E6;
}
.theme-default-dark .matcha-avatar .matcha-avatar-icon {
  color: rgba(255, 255, 255, 0.5);
}
.theme-default-dark .matcha-avatar.color-disabled {
  background-color: #21282C;
  color: rgba(255, 255, 255, 0.5) !important;
}
.theme-default-dark .matcha-avatar.color-disabled .matcha-avatar-icon {
  color: rgba(255, 255, 255, 0.5);
}
.theme-default-dark matcha-drawer-container {
  display: block;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
  overflow: hidden;
  background-color: #0A0A0A;
  color: #E2E7E9;
}
.theme-default-dark matcha-drawer-container .matcha-drawer-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  z-index: 3;
  visibility: hidden;
  background-color: rgba(10, 10, 10, 0.5);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 400ms cubic-bezier(0.25, 0.8, 0.25, 1), visibility 400ms cubic-bezier(0.25, 0.8, 0.25, 1);
}
.theme-default-dark matcha-drawer-container.matcha-drawer-container-has-open .matcha-drawer-backdrop {
  visibility: visible;
  opacity: 1;
}
.theme-default-dark matcha-drawer-container .matcha-drawer-content-container {
  position: relative;
  z-index: 0;
  display: block;
  height: 100%;
  overflow: auto;
}
.theme-default-dark matcha-drawer {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 10;
  outline: 0;
  box-sizing: border-box;
  overflow-y: auto;
  overflow-x: hidden;
  transform: translate3d(-100%, 0, 0);
  visibility: hidden;
  transition: transform 400ms cubic-bezier(0.25, 0.8, 0.25, 1), visibility 400ms cubic-bezier(0.25, 0.8, 0.25, 1);
  background-color: #0A0A0A;
  color: #E2E7E9;
  box-shadow: 0 8px 10px -5px rgba(0, 0, 0, 0.2), 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12);
  pointer-events: auto;
}
.theme-default-dark matcha-drawer.matcha-drawer-end {
  right: 0;
  transform: translate3d(100%, 0, 0);
}
.theme-default-dark matcha-drawer.matcha-drawer-opened {
  transform: translate3d(0, 0, 0);
  visibility: visible;
}
.theme-default-dark matcha-drawer.matcha-drawer-over {
  z-index: 15;
  border-right: 1px solid #292929;
}
.theme-default-dark matcha-drawer.matcha-drawer-over.matcha-drawer-end {
  border-right: none;
  border-left: 1px solid #292929;
}
.theme-default-dark matcha-drawer.matcha-drawer-side {
  z-index: 10;
  border-right: 1px solid #292929;
  box-shadow: none;
}
.theme-default-dark matcha-drawer.matcha-drawer-side.matcha-drawer-end {
  border-right: none;
  border-left: 1px solid #292929;
}
.theme-default-dark matcha-drawer.matcha-drawer-push {
  border-right: 1px solid #292929;
  box-shadow: none;
}
.theme-default-dark matcha-drawer.matcha-drawer-push.matcha-drawer-end {
  border-right: none;
  border-left: 1px solid #292929;
}
.theme-default-dark matcha-drawer .matcha-drawer-inner-container {
  width: 100%;
  height: 100%;
  -webkit-overflow-scrolling: touch;
  display: flex;
  flex-direction: column;
  position: relative;
  pointer-events: auto;
}
.theme-default-dark matcha-drawer-content {
  position: relative;
  z-index: 1;
  display: block;
  height: 100%;
  overflow: auto;
  transition: margin 400ms cubic-bezier(0.25, 0.8, 0.25, 1);
}
.theme-default-dark .matcha-autocomplete-panel {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
  z-index: 1;
  border-radius: 8px;
  max-height: 280px;
  overflow: auto;
  min-width: 160px;
  display: flex;
  flex-direction: column;
}
.theme-default-dark .matcha-panel {
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-height: 280px;
  min-width: 160px;
  opacity: 0;
  transform: scale(0.95) translateY(-8px);
  transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  position: absolute;
  z-index: 1003;
}
.theme-default-dark .matcha-panel.matcha-panel-open {
  opacity: 1;
  transform: scale(1) translateY(0);
}
.theme-default-dark .matcha-panel:not([aria-hidden=true]) {
  opacity: 1;
  transform: scale(1) translateY(0);
}
.theme-default-dark .matcha-panel.matcha-panel-top {
  transform-origin: bottom center;
}
.theme-default-dark .matcha-panel.matcha-panel-bottom {
  transform-origin: top center;
}
.theme-default-dark .matcha-panel-content {
  overflow-y: auto;
  flex: 1;
}
.theme-default-dark .matcha-panel-content::-webkit-scrollbar {
  width: 6px;
}
.theme-default-dark .matcha-panel-content::-webkit-scrollbar-track {
  background: transparent;
}
.theme-default-dark .matcha-panel-content::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 3px;
}
.theme-default-dark .matcha-panel-content::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.3);
}
.theme-default-dark .matcha-panel:focus-within {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
  .theme-default-dark .matcha-panel {
    max-height: 200px;
    min-width: 120px;
    border-radius: 6px;
  }
}
@media (prefers-color-scheme: dark) {
  .theme-default-dark .matcha-panel {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.1);
  }
}
.theme-default-dark .matcha-option {
  padding: 8px 12px;
  cursor: pointer;
  background: #141414;
}
.theme-default-dark .matcha-option[aria-selected=true] {
  background: #0A0A0A;
}
.theme-default-dark .matcha-option[disabled] {
  opacity: 0.5;
  cursor: default;
}
.theme-default-dark matcha-select {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.theme-default-dark .matcha-select-container {
  position: relative;
  display: inline-block;
  width: 100%;
}
.theme-default-dark .matcha-select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  border: 0px solid;
  border-radius: 0px;
  background-color: transparent;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
}
.theme-default-dark .matcha-select-trigger:hover {
  border-color: #b0b0b0;
}
.theme-default-dark .matcha-select-trigger:focus {
  outline: none;
}
.theme-default-dark .matcha-select-trigger.matcha-select-disabled {
  background-color: #f5f5f5;
  color: #9e9e9e;
  cursor: not-allowed;
  border-color: #e0e0e0;
}
.theme-default-dark .matcha-select-trigger.matcha-select-disabled:hover {
  border-color: #e0e0e0;
}
.theme-default-dark .matcha-select-value {
  flex: 1;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #FFFFFF;
}
.theme-default-dark .matcha-select-value.matcha-select-placeholder {
  color: #9e9e9e;
}
.theme-default-dark .matcha-select-arrow {
  margin-left: 8px;
  transition: transform 0.2s ease;
  color: #666;
  font-size: 12px;
}
.theme-default-dark .matcha-select-arrow.matcha-select-arrow-open {
  transform: rotate(180deg);
}
.theme-default-dark .matcha-select-disabled .matcha-select-trigger {
  background-color: #f5f5f5;
  color: #9e9e9e;
  cursor: not-allowed;
  border-color: #e0e0e0;
}
.theme-default-dark .matcha-select-disabled .matcha-select-trigger:hover {
  border-color: #e0e0e0;
}
.theme-default-dark .matcha-select-disabled .matcha-select-arrow {
  color: #9e9e9e;
}
.theme-default-dark .matcha-paginator .page-button.active.accent {
  background-color: #2979ff !important;
  color: white !important;
  border-color: #2979ff !important;
}
.theme-default-dark .matcha-paginator .page-button.active.orange {
  background-color: #fdd7b9 !important;
  color: white !important;
  border-color: #fdd7b9 !important;
}
.theme-default-dark .matcha-paginator .page-button.active.blue {
  background-color: #bccef4 !important;
  color: rgba(0, 0, 0, 0.87) !important;
  border-color: #bccef4 !important;
}
.theme-default-dark .matcha-paginator .page-button.active.green {
  background-color: #b8dec8 !important;
  color: rgba(0, 0, 0, 0.87) !important;
  border-color: #b8dec8 !important;
}
.theme-default-dark .matcha-paginator .page-button.active.purple {
  background-color: #e1bee7 !important;
  color: rgba(0, 0, 0, 0.87) !important;
  border-color: #e1bee7 !important;
}
.theme-default-dark .matcha-paginator .page-button.active.primary {
  background-color: #8A9EA8 !important;
  color: white !important;
  border-color: #8A9EA8 !important;
}
.theme-default-dark .matcha-paginator .page-button.active.warn {
  background-color: #f29d9d !important;
  color: rgba(0, 0, 0, 0.87) !important;
  border-color: #f29d9d !important;
}
.theme-default-dark .matcha-paginator .page-button.active.red {
  background-color: #f7c4c4 !important;
  color: rgba(0, 0, 0, 0.87) !important;
  border-color: #f7c4c4 !important;
}
.theme-default-dark .matcha-slider[data-color=accent] .selection-bar {
  background-color: #2979ff;
}
.theme-default-dark .matcha-slider[data-color=accent] .pointer {
  background-color: #2979ff;
}
.theme-default-dark .matcha-slider[data-color=accent] .pointer.focused {
  box-shadow: 0 0 0 4px #2979ff;
}
.theme-default-dark .matcha-slider[data-color=accent] .pointer:hover {
  box-shadow: 0 0 0 4px rgba(41, 121, 255, 0.24);
}
.theme-default-dark .matcha-slider[data-color=accent] .pointer:active {
  box-shadow: 0 0 0 4px rgba(41, 121, 255, 0.24);
}
.theme-default-dark .matcha-slider .slider-track {
  background-color: #292929;
}
.theme-default-dark .matcha-slider[data-color=red] .selection-bar {
  background-color: #f7c4c4;
}
.theme-default-dark .matcha-slider[data-color=red] .pointer {
  background-color: #f7c4c4;
}
.theme-default-dark .matcha-slider[data-color=red] .pointer.focused {
  box-shadow: 0 0 0 4px #f7c4c4;
}
.theme-default-dark .matcha-slider[data-color=red] .pointer:hover {
  box-shadow: 0 0 0 4px rgba(247, 196, 196, 0.24);
}
.theme-default-dark .matcha-slider[data-color=red] .pointer:active {
  box-shadow: 0 0 0 4px rgba(247, 196, 196, 0.24);
}
.theme-default-dark .matcha-slider[data-color=pink] .selection-bar {
  background-color: #f8bbd0;
}
.theme-default-dark .matcha-slider[data-color=pink] .pointer {
  background-color: #f8bbd0;
}
.theme-default-dark .matcha-slider[data-color=pink] .pointer.focused {
  box-shadow: 0 0 0 4px #f8bbd0;
}
.theme-default-dark .matcha-slider[data-color=pink] .pointer:hover {
  box-shadow: 0 0 0 4px rgba(248, 187, 208, 0.24);
}
.theme-default-dark .matcha-slider[data-color=pink] .pointer:active {
  box-shadow: 0 0 0 4px rgba(248, 187, 208, 0.24);
}
.theme-default-dark .matcha-slider[data-color=purple] .selection-bar {
  background-color: #e1bee7;
}
.theme-default-dark .matcha-slider[data-color=purple] .pointer {
  background-color: #e1bee7;
}
.theme-default-dark .matcha-slider[data-color=purple] .pointer.focused {
  box-shadow: 0 0 0 4px #e1bee7;
}
.theme-default-dark .matcha-slider[data-color=purple] .pointer:hover {
  box-shadow: 0 0 0 4px rgba(225, 190, 231, 0.24);
}
.theme-default-dark .matcha-slider[data-color=purple] .pointer:active {
  box-shadow: 0 0 0 4px rgba(225, 190, 231, 0.24);
}
.theme-default-dark .matcha-slider[data-color=deep-purple] .selection-bar {
  background-color: #d1c4e9;
}
.theme-default-dark .matcha-slider[data-color=deep-purple] .pointer {
  background-color: #d1c4e9;
}
.theme-default-dark .matcha-slider[data-color=deep-purple] .pointer.focused {
  box-shadow: 0 0 0 4px #d1c4e9;
}
.theme-default-dark .matcha-slider[data-color=deep-purple] .pointer:hover {
  box-shadow: 0 0 0 4px rgba(209, 196, 233, 0.24);
}
.theme-default-dark .matcha-slider[data-color=deep-purple] .pointer:active {
  box-shadow: 0 0 0 4px rgba(209, 196, 233, 0.24);
}
.theme-default-dark .matcha-slider[data-color=indigo] .selection-bar {
  background-color: #c5cae9;
}
.theme-default-dark .matcha-slider[data-color=indigo] .pointer {
  background-color: #c5cae9;
}
.theme-default-dark .matcha-slider[data-color=indigo] .pointer.focused {
  box-shadow: 0 0 0 4px #c5cae9;
}
.theme-default-dark .matcha-slider[data-color=indigo] .pointer:hover {
  box-shadow: 0 0 0 4px rgba(197, 202, 233, 0.24);
}
.theme-default-dark .matcha-slider[data-color=indigo] .pointer:active {
  box-shadow: 0 0 0 4px rgba(197, 202, 233, 0.24);
}
.theme-default-dark .matcha-slider[data-color=blue] .selection-bar {
  background-color: #bccef4;
}
.theme-default-dark .matcha-slider[data-color=blue] .pointer {
  background-color: #bccef4;
}
.theme-default-dark .matcha-slider[data-color=blue] .pointer.focused {
  box-shadow: 0 0 0 4px #bccef4;
}
.theme-default-dark .matcha-slider[data-color=blue] .pointer:hover {
  box-shadow: 0 0 0 4px rgba(188, 206, 244, 0.24);
}
.theme-default-dark .matcha-slider[data-color=blue] .pointer:active {
  box-shadow: 0 0 0 4px rgba(188, 206, 244, 0.24);
}
.theme-default-dark .matcha-slider[data-color=light-blue] .selection-bar {
  background-color: #b3e5fc;
}
.theme-default-dark .matcha-slider[data-color=light-blue] .pointer {
  background-color: #b3e5fc;
}
.theme-default-dark .matcha-slider[data-color=light-blue] .pointer.focused {
  box-shadow: 0 0 0 4px #b3e5fc;
}
.theme-default-dark .matcha-slider[data-color=light-blue] .pointer:hover {
  box-shadow: 0 0 0 4px rgba(179, 229, 252, 0.24);
}
.theme-default-dark .matcha-slider[data-color=light-blue] .pointer:active {
  box-shadow: 0 0 0 4px rgba(179, 229, 252, 0.24);
}
.theme-default-dark .matcha-slider[data-color=cyan] .selection-bar {
  background-color: #b2ebf2;
}
.theme-default-dark .matcha-slider[data-color=cyan] .pointer {
  background-color: #b2ebf2;
}
.theme-default-dark .matcha-slider[data-color=cyan] .pointer.focused {
  box-shadow: 0 0 0 4px #b2ebf2;
}
.theme-default-dark .matcha-slider[data-color=cyan] .pointer:hover {
  box-shadow: 0 0 0 4px rgba(178, 235, 242, 0.24);
}
.theme-default-dark .matcha-slider[data-color=cyan] .pointer:active {
  box-shadow: 0 0 0 4px rgba(178, 235, 242, 0.24);
}
.theme-default-dark .matcha-slider[data-color=teal] .selection-bar {
  background-color: #b2dfdb;
}
.theme-default-dark .matcha-slider[data-color=teal] .pointer {
  background-color: #b2dfdb;
}
.theme-default-dark .matcha-slider[data-color=teal] .pointer.focused {
  box-shadow: 0 0 0 4px #b2dfdb;
}
.theme-default-dark .matcha-slider[data-color=teal] .pointer:hover {
  box-shadow: 0 0 0 4px rgba(178, 223, 219, 0.24);
}
.theme-default-dark .matcha-slider[data-color=teal] .pointer:active {
  box-shadow: 0 0 0 4px rgba(178, 223, 219, 0.24);
}
.theme-default-dark .matcha-slider[data-color=green] .selection-bar {
  background-color: #b8dec8;
}
.theme-default-dark .matcha-slider[data-color=green] .pointer {
  background-color: #b8dec8;
}
.theme-default-dark .matcha-slider[data-color=green] .pointer.focused {
  box-shadow: 0 0 0 4px #b8dec8;
}
.theme-default-dark .matcha-slider[data-color=green] .pointer:hover {
  box-shadow: 0 0 0 4px rgba(184, 222, 200, 0.24);
}
.theme-default-dark .matcha-slider[data-color=green] .pointer:active {
  box-shadow: 0 0 0 4px rgba(184, 222, 200, 0.24);
}
.theme-default-dark .matcha-slider[data-color=light-green] .selection-bar {
  background-color: #D4F4C0;
}
.theme-default-dark .matcha-slider[data-color=light-green] .pointer {
  background-color: #D4F4C0;
}
.theme-default-dark .matcha-slider[data-color=light-green] .pointer.focused {
  box-shadow: 0 0 0 4px #D4F4C0;
}
.theme-default-dark .matcha-slider[data-color=light-green] .pointer:hover {
  box-shadow: 0 0 0 4px rgba(212, 244, 192, 0.24);
}
.theme-default-dark .matcha-slider[data-color=light-green] .pointer:active {
  box-shadow: 0 0 0 4px rgba(212, 244, 192, 0.24);
}
.theme-default-dark .matcha-slider[data-color=lime] .selection-bar {
  background-color: #dbebb3;
}
.theme-default-dark .matcha-slider[data-color=lime] .pointer {
  background-color: #dbebb3;
}
.theme-default-dark .matcha-slider[data-color=lime] .pointer.focused {
  box-shadow: 0 0 0 4px #dbebb3;
}
.theme-default-dark .matcha-slider[data-color=lime] .pointer:hover {
  box-shadow: 0 0 0 4px rgba(219, 235, 179, 0.24);
}
.theme-default-dark .matcha-slider[data-color=lime] .pointer:active {
  box-shadow: 0 0 0 4px rgba(219, 235, 179, 0.24);
}
.theme-default-dark .matcha-slider[data-color=yellow] .selection-bar {
  background-color: #f8edb3;
}
.theme-default-dark .matcha-slider[data-color=yellow] .pointer {
  background-color: #f8edb3;
}
.theme-default-dark .matcha-slider[data-color=yellow] .pointer.focused {
  box-shadow: 0 0 0 4px #f8edb3;
}
.theme-default-dark .matcha-slider[data-color=yellow] .pointer:hover {
  box-shadow: 0 0 0 4px rgba(248, 237, 179, 0.24);
}
.theme-default-dark .matcha-slider[data-color=yellow] .pointer:active {
  box-shadow: 0 0 0 4px rgba(248, 237, 179, 0.24);
}
.theme-default-dark .matcha-slider[data-color=amber] .selection-bar {
  background-color: #fee4ba;
}
.theme-default-dark .matcha-slider[data-color=amber] .pointer {
  background-color: #fee4ba;
}
.theme-default-dark .matcha-slider[data-color=amber] .pointer.focused {
  box-shadow: 0 0 0 4px #fee4ba;
}
.theme-default-dark .matcha-slider[data-color=amber] .pointer:hover {
  box-shadow: 0 0 0 4px rgba(254, 228, 186, 0.24);
}
.theme-default-dark .matcha-slider[data-color=amber] .pointer:active {
  box-shadow: 0 0 0 4px rgba(254, 228, 186, 0.24);
}
.theme-default-dark .matcha-slider[data-color=orange] .selection-bar {
  background-color: #fdd7b9;
}
.theme-default-dark .matcha-slider[data-color=orange] .pointer {
  background-color: #fdd7b9;
}
.theme-default-dark .matcha-slider[data-color=orange] .pointer.focused {
  box-shadow: 0 0 0 4px #fdd7b9;
}
.theme-default-dark .matcha-slider[data-color=orange] .pointer:hover {
  box-shadow: 0 0 0 4px rgba(253, 215, 185, 0.24);
}
.theme-default-dark .matcha-slider[data-color=orange] .pointer:active {
  box-shadow: 0 0 0 4px rgba(253, 215, 185, 0.24);
}
.theme-default-dark .matcha-slider[data-color=deep-orange] .selection-bar {
  background-color: #ffccbc;
}
.theme-default-dark .matcha-slider[data-color=deep-orange] .pointer {
  background-color: #ffccbc;
}
.theme-default-dark .matcha-slider[data-color=deep-orange] .pointer.focused {
  box-shadow: 0 0 0 4px #ffccbc;
}
.theme-default-dark .matcha-slider[data-color=deep-orange] .pointer:hover {
  box-shadow: 0 0 0 4px rgba(255, 204, 188, 0.24);
}
.theme-default-dark .matcha-slider[data-color=deep-orange] .pointer:active {
  box-shadow: 0 0 0 4px rgba(255, 204, 188, 0.24);
}
.theme-default-dark .matcha-slider[data-color=brown] .selection-bar {
  background-color: #d7ccc8;
}
.theme-default-dark .matcha-slider[data-color=brown] .pointer {
  background-color: #d7ccc8;
}
.theme-default-dark .matcha-slider[data-color=brown] .pointer.focused {
  box-shadow: 0 0 0 4px #d7ccc8;
}
.theme-default-dark .matcha-slider[data-color=brown] .pointer:hover {
  box-shadow: 0 0 0 4px rgba(215, 204, 200, 0.24);
}
.theme-default-dark .matcha-slider[data-color=brown] .pointer:active {
  box-shadow: 0 0 0 4px rgba(215, 204, 200, 0.24);
}
.theme-default-dark .matcha-slider[data-color=grey] .selection-bar {
  background-color: #DEE3E6;
}
.theme-default-dark .matcha-slider[data-color=grey] .pointer {
  background-color: #DEE3E6;
}
.theme-default-dark .matcha-slider[data-color=grey] .pointer.focused {
  box-shadow: 0 0 0 4px #DEE3E6;
}
.theme-default-dark .matcha-slider[data-color=grey] .pointer:hover {
  box-shadow: 0 0 0 4px rgba(222, 227, 230, 0.24);
}
.theme-default-dark .matcha-slider[data-color=grey] .pointer:active {
  box-shadow: 0 0 0 4px rgba(222, 227, 230, 0.24);
}
.theme-default-dark .matcha-slider[data-color=blue-grey] .selection-bar {
  background-color: #E2E7E9;
}
.theme-default-dark .matcha-slider[data-color=blue-grey] .pointer {
  background-color: #E2E7E9;
}
.theme-default-dark .matcha-slider[data-color=blue-grey] .pointer.focused {
  box-shadow: 0 0 0 4px #E2E7E9;
}
.theme-default-dark .matcha-slider[data-color=blue-grey] .pointer:hover {
  box-shadow: 0 0 0 4px rgba(226, 231, 233, 0.24);
}
.theme-default-dark .matcha-slider[data-color=blue-grey] .pointer:active {
  box-shadow: 0 0 0 4px rgba(226, 231, 233, 0.24);
}
.theme-default-dark .matcha-slider[data-color=primary] .selection-bar {
  background-color: #8A9EA8;
}
.theme-default-dark .matcha-slider[data-color=primary] .pointer {
  background-color: #8A9EA8;
}
.theme-default-dark .matcha-slider[data-color=primary] .pointer.focused {
  box-shadow: 0 0 0 4px #8A9EA8;
}
.theme-default-dark .matcha-slider[data-color=primary] .pointer:hover {
  box-shadow: 0 0 0 4px rgba(138, 158, 168, 0.24);
}
.theme-default-dark .matcha-slider[data-color=primary] .pointer:active {
  box-shadow: 0 0 0 4px rgba(138, 158, 168, 0.24);
}
.theme-default-dark .matcha-slider[data-color=accent] .selection-bar {
  background-color: #2979ff;
}
.theme-default-dark .matcha-slider[data-color=accent] .pointer {
  background-color: #2979ff;
}
.theme-default-dark .matcha-slider[data-color=accent] .pointer.focused {
  box-shadow: 0 0 0 4px #2979ff;
}
.theme-default-dark .matcha-slider[data-color=accent] .pointer:hover {
  box-shadow: 0 0 0 4px rgba(41, 121, 255, 0.24);
}
.theme-default-dark .matcha-slider[data-color=accent] .pointer:active {
  box-shadow: 0 0 0 4px rgba(41, 121, 255, 0.24);
}
.theme-default-dark .matcha-slider[data-color=warn] .selection-bar {
  background-color: #f29d9d;
}
.theme-default-dark .matcha-slider[data-color=warn] .pointer {
  background-color: #f29d9d;
}
.theme-default-dark .matcha-slider[data-color=warn] .pointer.focused {
  box-shadow: 0 0 0 4px #f29d9d;
}
.theme-default-dark .matcha-slider[data-color=warn] .pointer:hover {
  box-shadow: 0 0 0 4px rgba(242, 157, 157, 0.24);
}
.theme-default-dark .matcha-slider[data-color=warn] .pointer:active {
  box-shadow: 0 0 0 4px rgba(242, 157, 157, 0.24);
}
.theme-default-dark .matcha-slider[data-color=disabled] .selection-bar {
  background-color: #292929;
}
.theme-default-dark .matcha-slider[data-color=disabled] .pointer {
  background-color: #292929;
}
.theme-default-dark .matcha-slider[data-color=disabled] .pointer.focused {
  box-shadow: 0 0 0 4px #292929;
}
.theme-default-dark .matcha-slider[data-color=disabled] .pointer:hover {
  box-shadow: 0 0 0 4px rgba(41, 41, 41, 0.24);
}
.theme-default-dark .matcha-slider[data-color=disabled] .pointer:active {
  box-shadow: 0 0 0 4px rgba(41, 41, 41, 0.24);
}
.theme-default-dark .matcha-slider.disabled {
  background-color: transparent !important;
}
.theme-default-dark .matcha-slider.disabled .selection-bar {
  background-color: #292929;
}
.theme-default-dark .matcha-slider.disabled .pointer {
  background-color: #292929;
}
.theme-default-dark .matcha-slider.disabled .tick-value,
.theme-default-dark .matcha-slider.disabled .pointer-label,
.theme-default-dark .matcha-slider.disabled .floor-label,
.theme-default-dark .matcha-slider.disabled .ceil-label {
  color: #292929;
}
.theme-default-dark matcha-highlight {
  padding: 16px;
  border-radius: 8px;
  display: flex;
  overflow: auto;
  position: relative;
  min-height: 56px;
  --prism-bg: transparent;
  --prism-text: #bccef4;
  --prism-comment: #bccef4;
  --prism-keyword: #bccef4;
  --prism-string: #bccef4;
  --prism-number: #bccef4;
  --prism-function: #bccef4;
  --prism-variable: #bccef4;
  --prism-type: #bccef4;
  --prism-operator: #bccef4;
  --prism-punctuation: #bccef4;
  --prism-property: #bccef4;
  --prism-tag: #bccef4;
  --prism-attribute: #bccef4;
  --prism-class: #bccef4;
  --prism-constant: #bccef4;
  --prism-regex: #bccef4;
  --prism-important: #bccef4;
  --code-font-family: Consolas, Menlo, Monaco, "Andale Mono WT", "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Liberation Mono", "Nimbus Mono L", "Courier New", Courier, monospace;
  --code-font-size: 14px;
  --code-line-height: 1.6;
  background: var(--prism-bg);
}
.theme-default-dark matcha-highlight[theme=vs-code-light] {
  --prism-bg: #ffffff;
  --prism-text: #000000;
  --prism-comment: #6a9955;
  --prism-keyword: #0000ff;
  --prism-string: #a31515;
  --prism-number: #098658;
  --prism-function: #795e26;
  --prism-variable: #001080;
  --prism-type: #267f99;
  --prism-operator: #000000;
  --prism-punctuation: #000000;
  --prism-property: #0451a5;
  --prism-tag: #800000;
  --prism-attribute: #ff0000;
  --prism-class: #267f99;
  --prism-constant: #0070c1;
  --prism-regex: #811f3f;
  --prism-important: #e50000;
}
.theme-default-dark matcha-highlight[theme=vs-code-dark] {
  --prism-bg: #1e1e1e;
  --prism-text: #d4d4d4;
  --prism-comment: #6a9955;
  --prism-keyword: #569cd6;
  --prism-string: #ce9178;
  --prism-number: #b5cea8;
  --prism-function: #dcdcaa;
  --prism-variable: #9cdcfe;
  --prism-type: #4ec9b0;
  --prism-operator: #d4d4d4;
  --prism-punctuation: #d4d4d4;
  --prism-property: #92c5f8;
  --prism-tag: #f44747;
  --prism-attribute: #92c5f8;
  --prism-class: #4ec9b0;
  --prism-constant: #4fc1ff;
  --prism-regex: #d16969;
  --prism-important: #ff6b6b;
}
.theme-default-dark matcha-highlight[theme=dracula] {
  --prism-bg: #282a36;
  --prism-text: #f8f8f2;
  --prism-comment: #6272a4;
  --prism-keyword: #ff79c6;
  --prism-string: #f1fa8c;
  --prism-number: #bd93f9;
  --prism-function: #50fa7b;
  --prism-variable: #8be9fd;
  --prism-type: #8be9fd;
  --prism-operator: #ff79c6;
  --prism-punctuation: #f8f8f2;
  --prism-property: #66d9ef;
  --prism-tag: #ff79c6;
  --prism-attribute: #50fa7b;
  --prism-class: #bd93f9;
  --prism-constant: #bd93f9;
  --prism-regex: #ffb86c;
  --prism-important: #ff5555;
}
.theme-default-dark matcha-highlight[theme=matcha] {
  --prism-bg: #1a2420;
  --prism-text: #e6f4ea;
  --prism-comment: #5c7f6e;
  --prism-keyword: #7fffd4;
  --prism-string: #b7f774;
  --prism-number: #6ee7b7;
  --prism-function: #4ade80;
  --prism-variable: #a7ffeb;
  --prism-type: #34d399;
  --prism-operator: #7fffd4;
  --prism-punctuation: #e6f4ea;
  --prism-property: #5eead4;
  --prism-tag: #2dd4bf;
  --prism-attribute: #bbf7d0;
  --prism-class: #6ee7b7;
  --prism-constant: #99f6e4;
  --prism-regex: #bef264;
  --prism-important: #22d3ee;
}
.theme-default-dark matcha-highlight[theme=none] {
  --prism-bg: transparent;
  --prism-text: inherit;
  --prism-comment: inherit;
  --prism-keyword: inherit;
  --prism-string: inherit;
  --prism-number: inherit;
  --prism-function: inherit;
  --prism-variable: inherit;
  --prism-type: inherit;
  --prism-operator: inherit;
  --prism-punctuation: inherit;
  --prism-property: inherit;
  --prism-tag: inherit;
  --prism-attribute: inherit;
  --prism-class: inherit;
  --prism-constant: inherit;
  --prism-regex: inherit;
  --prism-important: inherit;
}
.theme-default-dark matcha-highlight pre, .theme-default-dark matcha-highlight code {
  margin: 0;
  padding: 0;
}
.theme-default-dark matcha-highlight code[class*=language-],
.theme-default-dark matcha-highlight pre[class*=language-] {
  color: var(--prism-text);
  background: var(--prism-bg);
  text-shadow: none;
  font-family: var(--code-font-family);
  font-size: var(--code-font-size);
  text-align: left;
  white-space: pre;
  word-spacing: normal;
  word-break: normal;
  word-wrap: normal;
  line-height: var(--code-line-height);
  tab-size: 4;
  hyphens: none;
  margin: 0;
  padding: 0;
}
.theme-default-dark matcha-highlight pre[class*=language-] {
  padding: 0;
  margin: 0;
  overflow: auto;
  border-radius: 8px;
}
.theme-default-dark matcha-highlight code[class*=language-] {
  padding: 0;
  background: transparent;
}
.theme-default-dark matcha-highlight .token.comment,
.theme-default-dark matcha-highlight .token.prolog,
.theme-default-dark matcha-highlight .token.doctype,
.theme-default-dark matcha-highlight .token.cdata {
  color: var(--prism-comment);
  font-style: italic;
}
.theme-default-dark matcha-highlight .token.punctuation {
  color: var(--prism-punctuation);
}
.theme-default-dark matcha-highlight .token.property,
.theme-default-dark matcha-highlight .token.tag,
.theme-default-dark matcha-highlight .token.constant,
.theme-default-dark matcha-highlight .token.symbol,
.theme-default-dark matcha-highlight .token.deleted {
  color: var(--prism-tag);
}
.theme-default-dark matcha-highlight .token.boolean,
.theme-default-dark matcha-highlight .token.number {
  color: var(--prism-number);
}
.theme-default-dark matcha-highlight .token.selector,
.theme-default-dark matcha-highlight .token.attr-name,
.theme-default-dark matcha-highlight .token.string,
.theme-default-dark matcha-highlight .token.char,
.theme-default-dark matcha-highlight .token.builtin,
.theme-default-dark matcha-highlight .token.inserted {
  color: var(--prism-string);
}
.theme-default-dark matcha-highlight .token.operator,
.theme-default-dark matcha-highlight .token.entity,
.theme-default-dark matcha-highlight .token.url,
.theme-default-dark matcha-highlight .language-css .token.string,
.theme-default-dark matcha-highlight .style .token.string,
.theme-default-dark matcha-highlight .token.variable {
  color: var(--prism-operator);
}
.theme-default-dark matcha-highlight .token.atrule,
.theme-default-dark matcha-highlight .token.attr-value,
.theme-default-dark matcha-highlight .token.function,
.theme-default-dark matcha-highlight .token.class-name {
  color: var(--prism-function);
}
.theme-default-dark matcha-highlight .token.keyword {
  color: var(--prism-keyword);
}
.theme-default-dark matcha-highlight .token.regex,
.theme-default-dark matcha-highlight .token.important {
  color: var(--prism-regex);
}
.theme-default-dark matcha-highlight .token.important,
.theme-default-dark matcha-highlight .token.bold {
  font-weight: bold;
}
.theme-default-dark matcha-highlight .token.italic {
  font-style: italic;
}
.theme-default-dark matcha-highlight .token.entity {
  cursor: help;
}
.theme-default-dark matcha-highlight .matcha-highlight-container {
  position: relative;
  border-radius: 8px;
}
.theme-default-dark matcha-highlight .copy-button {
  opacity: 0;
  transition: opacity 0.2s ease;
}
.theme-default-dark matcha-highlight:hover .copy-button {
  opacity: 1;
}
.theme-default-dark matcha-highlight .highlight-content {
  position: relative;
}
.theme-default-dark matcha-divider {
  box-sizing: border-box;
}
.theme-default-dark matcha-divider[direction=vertical] {
  display: flex;
  flex-direction: column;
  align-self: stretch;
}
.theme-default-dark matcha-divider[direction=horizontal] {
  display: flex;
  flex-direction: row;
  width: 100%;
}
.theme-default-dark .h1,
.theme-default-dark h1 {
  font-size: 2.5rem;
  font-family: CircularStd, sans-serif, arial;
}
.theme-default-dark .h2,
.theme-default-dark h2 {
  font-size: 2rem;
  font-family: CircularStd, sans-serif, arial;
}
.theme-default-dark .h3,
.theme-default-dark h3 {
  font-size: 1.5rem;
  font-family: CircularStd, sans-serif, arial;
}
.theme-default-dark .h4,
.theme-default-dark h4 {
  font-size: 1.25rem;
  font-family: CircularStd, sans-serif, arial;
}
.theme-default-dark .h5,
.theme-default-dark h5 {
  font-size: 1rem;
  font-family: CircularStd, sans-serif, arial;
}
.theme-default-dark .h6,
.theme-default-dark h6 {
  font-size: 0.75rem;
  font-family: CircularStd, sans-serif, arial;
}
.theme-default-dark .text-bold,
.theme-default-dark strong,
.theme-default-dark b {
  font-family: CircularStd, sans-serif, arial;
  font-weight: 700;
}
.theme-default-dark {
  font-family: CircularStd, sans-serif, arial;
}
.theme-default-dark button {
  font-family: CircularStd, sans-serif, arial;
}
.theme-default-dark input[type=text],
.theme-default-dark input[type=email],
.theme-default-dark input[type=tel],
.theme-default-dark input[type=url],
.theme-default-dark input[type=password],
.theme-default-dark input[type=number],
.theme-default-dark input[type=search],
.theme-default-dark textarea {
  font-family: CircularStd, sans-serif, arial;
  font-weight: 400;
  font-size: 1rem;
}
.theme-default-dark .mat-stepper-horizontal.bullet-stepper-header-labeled .mat-horizontal-stepper-header-container {
  justify-content: end;
  margin-bottom: 0;
  margin-top: 0;
  margin-right: 0;
  padding-right: 24px;
  height: 0;
}
.theme-default-dark .mat-stepper-horizontal.bullet-stepper-header-labeled, .theme-default-dark .mat-stepper-horizontal.bullet-stepper-header {
  position: relative;
}
.theme-default-dark .mat-stepper-horizontal.bullet-stepper-header-labeled .mat-horizontal-stepper-header-container .mat-stepper-horizontal-line, .theme-default-dark .mat-stepper-horizontal.bullet-stepper-header .mat-horizontal-stepper-header-container .mat-stepper-horizontal-line {
  display: none;
}
.theme-default-dark .mat-stepper-horizontal.bullet-stepper-header-labeled .mat-horizontal-stepper-header-container .mat-step-header-ripple, .theme-default-dark .mat-stepper-horizontal.bullet-stepper-header .mat-horizontal-stepper-header-container .mat-step-header-ripple {
  display: none;
}
.theme-default-dark .mat-stepper-horizontal.bullet-stepper-header-labeled .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header, .theme-default-dark .mat-stepper-horizontal.bullet-stepper-header .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header {
  height: initial;
  overflow: initial;
}
.theme-default-dark .mat-stepper-horizontal.bullet-stepper-header-labeled .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header.mat-step-header, .theme-default-dark .mat-stepper-horizontal.bullet-stepper-header .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header.mat-step-header {
  padding: 0;
  border-radius: 0;
  flex-direction: column;
  position: inherit;
  width: 40px;
}
.theme-default-dark .mat-stepper-horizontal.bullet-stepper-header-labeled .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header.mat-step-header.cdk-keyboard-focused, .theme-default-dark .mat-stepper-horizontal.bullet-stepper-header-labeled .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header.mat-step-header.cdk-program-focused, .theme-default-dark .mat-stepper-horizontal.bullet-stepper-header-labeled .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header.mat-step-header:hover, .theme-default-dark .mat-stepper-horizontal.bullet-stepper-header .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header.mat-step-header.cdk-keyboard-focused, .theme-default-dark .mat-stepper-horizontal.bullet-stepper-header .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header.mat-step-header.cdk-program-focused, .theme-default-dark .mat-stepper-horizontal.bullet-stepper-header .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header.mat-step-header:hover {
  background-color: transparent;
}
.theme-default-dark .mat-stepper-horizontal.bullet-stepper-header-labeled .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header.mat-step-header .mat-step-icon, .theme-default-dark .mat-stepper-horizontal.bullet-stepper-header .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header.mat-step-header .mat-step-icon {
  margin: -32px 0 0 8px;
  border-radius: 8px;
  height: 8px;
  width: 32px;
  flex-shrink: 0;
  position: absolute;
}
.theme-default-dark .mat-stepper-horizontal.bullet-stepper-header-labeled .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header .mat-step-label, .theme-default-dark .mat-stepper-horizontal.bullet-stepper-header .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header .mat-step-label {
  position: absolute;
  display: none;
  right: 0;
  margin-top: -52px;
  margin-right: 24px;
  font-weight: 700;
  color: #435056;
}
.theme-default-dark .mat-stepper-horizontal.bullet-stepper-header-labeled .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header .mat-step-label.mat-step-label-active, .theme-default-dark .mat-stepper-horizontal.bullet-stepper-header .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header .mat-step-label.mat-step-label-active {
  display: none;
}
.theme-default-dark .mat-stepper-horizontal.bullet-stepper-header-labeled .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header .mat-step-label.mat-step-label-active.mat-step-label-selected, .theme-default-dark .mat-stepper-horizontal.bullet-stepper-header .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header .mat-step-label.mat-step-label-active.mat-step-label-selected {
  display: flex;
  justify-content: flex-end;
}
.theme-default-dark .mat-stepper-horizontal.bullet-stepper-header-labeled .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header .mat-step-icon-state-edit, .theme-default-dark .mat-stepper-horizontal.bullet-stepper-header .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header .mat-step-icon-state-edit {
  margin: 0;
}
.theme-default-dark .mat-stepper-horizontal.bullet-stepper-header-labeled .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header .mat-step-icon-state-edit.mat-step-icon, .theme-default-dark .mat-stepper-horizontal.bullet-stepper-header .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header .mat-step-icon-state-edit.mat-step-icon {
  background-color: #8A9EA8;
}
.theme-default-dark .mat-stepper-horizontal.bullet-stepper-header-labeled .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header .mat-step-icon-state-edit.mat-step-icon .mat-icon, .theme-default-dark .mat-stepper-horizontal.bullet-stepper-header .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header .mat-step-icon-state-edit.mat-step-icon .mat-icon {
  display: none;
}
.theme-default-dark .mat-stepper-horizontal.bullet-stepper-header-labeled .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header .mat-step-icon-state-number.mat-step-icon, .theme-default-dark .mat-stepper-horizontal.bullet-stepper-header .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header .mat-step-icon-state-number.mat-step-icon {
  background-color: #292929;
}
.theme-default-dark .mat-stepper-horizontal.bullet-stepper-header-labeled .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header .mat-step-icon-state-number.mat-step-icon .mat-step-icon-content, .theme-default-dark .mat-stepper-horizontal.bullet-stepper-header .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header .mat-step-icon-state-number.mat-step-icon .mat-step-icon-content {
  display: none;
}
.theme-default-dark .mat-stepper-horizontal.bullet-stepper-header-labeled .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header .mat-step-icon-state-number.mat-step-icon.mat-step-icon-selected, .theme-default-dark .mat-stepper-horizontal.bullet-stepper-header .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header .mat-step-icon-state-number.mat-step-icon.mat-step-icon-selected {
  background-color: #8A9EA8;
  order: 1;
}
.theme-default-dark .mat-stepper-horizontal.bullet-stepper-header-labeled .mat-horizontal-content-container, .theme-default-dark .mat-stepper-horizontal.bullet-stepper-header .mat-horizontal-content-container {
  padding: 0;
}
.theme-default-dark .mat-stepper-horizontal.bullet-stepper-header-labeled .mat-horizontal-content-container .mat-dialog-content, .theme-default-dark .mat-stepper-horizontal.bullet-stepper-header .mat-horizontal-content-container .mat-dialog-content {
  max-height: calc(100vh - 268px);
}
.theme-default-dark .mat-stepper-horizontal.hide-stepper-header .mat-horizontal-stepper-header-container {
  display: none !important;
}
.theme-default-dark .mat-stepper-horizontal.hide-stepper-header .mat-horizontal-content-container {
  overflow: hidden;
  padding: 0;
}
.theme-default-dark .mat-stepper-horizontal.page-layout-stepper .mat-horizontal-stepper-header-container {
  padding-right: 24px;
}
.theme-default-dark .mat-stepper-horizontal.page-layout-stepper .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header .mat-step-label {
  margin-top: -60px;
  margin-right: 24px;
}
@media screen and (min-width: 1024px) {
  .theme-default-dark .mat-stepper-horizontal.bullet-stepper-header-labeled .mat-horizontal-stepper-header-container {
    padding-right: 72px;
  }
  .theme-default-dark .mat-stepper-horizontal.bullet-stepper-header-labeled .mat-horizontal-stepper-header-container .mat-horizontal-stepper-header .mat-step-label {
    margin-right: 72px;
  }
}
.theme-default-dark .animated-background {
  background: linear-gradient(to right, #292929, rgba(255, 255, 255, 0.0666666667), #292929);
  background-size: 200% 100%;
  animation: gradientAnimation 1s linear infinite;
}
@keyframes gradientAnimation {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: -100% 0;
  }
}
.theme-default-dark .iti__country-list {
  background: #141414;
}

.mat-mdc-snack-bar-container.success .mdc-snackbar__surface {
  background: #119046 !important;
  color: #ffffff !important;
}

.mat-mdc-snack-bar-container.error .mdc-snackbar__surface {
  background: #e53a3a !important;
  color: #ffffff !important;
}

.mat-mdc-dialog-container {
  height: auto !important;
}

body {
  margin: 0;
  font-family: "CircularStd-Regular, sans-serif, arial";
}

button[disabled] {
  cursor: not-allowed;
  opacity: 0.7;
}

button:not([disabled]) {
  cursor: pointer;
}

@media only screen and (max-width: 600px) {
  .w-xs-100-p {
    width: 100% !important;
  }
}
.pointer {
  cursor: pointer !important;
}
/*!**************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].rules[0].oneOf[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[5].rules[0].oneOf[0].use[2]!./node_modules/matcha-icons/matcha-icons.css?ngGlobalStyle ***!
  \**************************************************************************************************************************************************************************************************************************************************/
/** Generated by icomoon **/
/* Matcha Icons Relative path:
  ../node_modules/matcha-icons/fonts/matcha-icons.eot
*/

@font-face {
    font-family: "MatchaIcons";
    src: url('matcha-icons.eot');
    src: url('matcha-icons.eot?#iefix') format("embedded-opentype"), url('matcha-icons.ttf') format("truetype"), url('matcha-icons.woff') format("woff"), url('matcha-icons.svg') format("svg");
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

[class^="i-matcha-"],
[class*=" i-matcha-"] {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: "MatchaIcons" !important;
    /* speak: none; */
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 24px;
    font-size: 24px;
    height: 24px;
    width: 24px;
    position: relative;
    /* top: -1px; */
    display: inline-block;
    vertical-align: middle;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

[class^="i-matcha-"].i-size-xs,
[class*=" i-matcha-"].i-size-xs {
    line-height: 12px;
    font-size: 12px;
    height: 12px;
    width: 12px;
}

[class^="i-matcha-"].i-size-sm,
[class*=" i-matcha-"].i-size-sm {
    line-height: 16px;
    font-size: 16px;
    height: 16px;
    width: 16px;
}

[class^="i-matcha-"].i-size-md,
[class*=" i-matcha-"].i-size-md {
    line-height: 24px;
    font-size: 24px;
    height: 24px;
    width: 24px;
}

[class^="i-matcha-"].i-size-lg,
[class*=" i-matcha-"].i-size-lg {
    line-height: 32px;
    font-size: 32px;
    height: 32px;
    width: 32px;
}

[class^="i-matcha-"].i-size-xl,
[class*=" i-matcha-"].i-size-xl {
    line-height: 48px;
    font-size: 48px;
    height: 48px;
    width: 48px;
}

/*
// -------------------------------------------------------------------------------------------------------------------
// @ Paste library update below
// -------------------------------------------------------------------------------------------------------------------
*/

.i-matcha-app:before {
    content: "\ea93";
}
.i-matcha-site:before {
    content: "\ea94";
}
.i-matcha-home:before {
    content: "\e948";
}
.i-matcha-home-out:before {
    content: "\e964";
}
.i-matcha-content:before {
    content: "\e942";
}
.i-matcha-content-out:before {
    content: "\e95e";
}
.i-matcha-events:before {
    content: "\e945";
}
.i-matcha-events-out:before {
    content: "\e961";
}
.i-matcha-favorite:before {
    content: "\e946";
}
.i-matcha-favorite-out:before {
    content: "\e962";
}
.i-matcha-tv:before {
    content: "\e954";
}
.i-matcha-tv-out:before {
    content: "\e970";
}
.i-matcha-bible:before {
    content: "\e93a";
}
.i-matcha-bible-out:before {
    content: "\e957";
}
.i-matcha-reading-plan:before {
    content: "\e951";
}
.i-matcha-reading-plan-out:before {
    content: "\e96d";
}
.i-matcha-agenda:before {
    content: "\e939";
}
.i-matcha-agenda-out:before {
    content: "\e956";
}
.i-matcha-church:before {
    content: "\e940";
}
.i-matcha-trophy-out:before {
    content: "\e95c";
}
.i-matcha-church-out:before {
    content: "\e95d";
}
.i-matcha-download:before {
    content: "\e943";
}
.i-matcha-downloads-out:before {
    content: "\e95f";
}
.i-matcha-groups:before {
    content: "\e947";
}
.i-matcha-groups-out:before {
    content: "\e963";
}
.i-matcha-live:before {
    content: "\e94a";
}
.i-matcha-live-out:before {
    content: "\e966";
}
.i-matcha-star:before {
    content: "\e952";
}
.i-matcha-star-out:before {
    content: "\e96e";
}
.i-matcha-news:before {
    content: "\e94d";
}
.i-matcha-news-out:before {
    content: "\e969";
}
.i-matcha-edit:before {
    content: "\e944";
}
.i-matcha-edit-out:before {
    content: "\e960";
}
.i-matcha-web:before {
    content: "\e955";
}
.i-matcha-web-out:before {
    content: "\e971";
}
.i-matcha-prayer:before {
    content: "\e94e";
}
.i-matcha-prayer-out:before {
    content: "\e96a";
}
.i-matcha-radio:before {
    content: "\e950";
}
.i-matcha-radio-out:before {
    content: "\e96c";
}
.i-matcha-id-card:before {
    content: "\e93d";
}
.i-matcha-id-card-out:before {
    content: "\e965";
}
.i-matcha-cell:before {
    content: "\e93f";
}
.i-matcha-cell-out:before {
    content: "\e95b";
}
.i-matcha-business:before {
    content: "\e93c";
}
.i-matcha-business-out:before {
    content: "\e959";
}
.i-matcha-contact:before {
    content: "\e941";
}
.i-matcha-contact-out:before {
    content: "\e967";
}
.i-matcha-store:before {
    content: "\e953";
}
.i-matcha-store-out:before {
    content: "\e96f";
}
.i-matcha-mykids:before {
    content: "\e94c";
}
.i-matcha-mykids-out:before {
    content: "\e968";
}
.i-matcha-profile:before {
    content: "\e94f";
}
.i-matcha-profile-out:before {
    content: "\eb29";
}
.i-matcha-bright:before {
    content: "\e93b";
}
.i-matcha-bright-out:before {
    content: "\e958";
}
.i-matcha-case:before {
    content: "\e93e";
}
.i-matcha-case-out:before {
    content: "\e95a";
}
.i-matcha-cake:before {
    content: "\e9b5";
}
.i-matcha-link:before {
    content: "\e949";
}
.i-matcha-external-link:before {
    content: "\eb49";
}
.i-matcha-list:before {
    content: "\e94b";
}
.i-matcha-grid:before {
    content: "\e9de";
}
.i-matcha-grid-out:before {
    content: "\e9df";
}
.i-matcha-contrast:before {
    content: "\e99f";
}
.i-matcha-flow-out:before {
    content: "\e96b";
}
.i-matcha-flow:before {
    content: "\e933";
}
.i-matcha-check-in:before {
    content: "\eb2a";
}
.i-matcha-check-out:before {
    content: "\e9f5";
}
.i-matcha-counseling:before {
    content: "\e9f6";
}
.i-matcha-counseling-out:before {
    content: "\e9f7";
}
.i-matcha-notes:before {
    content: "\e97e";
}
.i-matcha-notes-out:before {
    content: "\eb2d";
}
.i-matcha-print:before {
    content: "\e9f9";
}
.i-matcha-print-out:before {
    content: "\e9fa";
}
.i-matcha-print2:before {
    content: "\eae7";
}
.i-matcha-print-out2:before {
    content: "\eae8";
}
.i-matcha-thumb-up-out:before {
    content: "\eb22";
}
.i-matcha-thumb-down-out:before {
    content: "\eb23";
}
.i-matcha-thumb-up:before {
    content: "\eb24";
}
.i-matcha-thumb-down:before {
    content: "\eb25";
}
.i-matcha-smile:before {
    content: "\e9fb";
}
.i-matcha-push-out:before {
    content: "\e9f8";
}
.i-matcha-notification:before {
    content: "\e9fc";
}
.i-matcha-celebrate-out:before {
    content: "\e9fd";
}
.i-matcha-hand-heart-out:before {
    content: "\e9fe";
}
.i-matcha-light-mode:before {
    content: "\e9e3";
}
.i-matcha-dark-mode:before {
    content: "\e9e4";
}
.i-matcha-dark-mode-2:before {
    content: "\eb2b";
}
.i-matcha-preferences-out:before {
    content: "\eae6";
}
.i-matcha-preferences:before {
    content: "\e9e5";
}
.i-matcha-category:before {
    content: "\e978";
}
.i-matcha-bank:before {
    content: "\e976";
}
.i-matcha-bank1:before {
    content: "\eb15";
}
.i-matcha-bank-circle:before {
    content: "\eb16";
}
.i-matcha-visitor:before {
    content: "\e983";
}
.i-matcha-participant:before {
    content: "\e97f";
}
.i-matcha-kids:before {
    content: "\ea20";
}
.i-matcha-arrow-left:before {
    content: "\e973";
}
.i-matcha-arrow-up:before {
    content: "\e975";
}
.i-matcha-arrow-down:before {
    content: "\e972";
}
.i-matcha-arrow-right:before {
    content: "\e974";
}
.i-matcha-chevron-left:before {
    content: "\e9b1";
}
.i-matcha-chevron-right:before {
    content: "\e9e0";
}
.i-matcha-chevron-down:before {
    content: "\e9e1";
}
.i-matcha-chevron-up:before {
    content: "\e9e2";
}
.i-matcha-reading:before {
    content: "\e981";
}
.i-matcha-blocked:before {
    content: "\e977";
}
.i-matcha-reports-out:before {
    content: "\e982";
}
.i-matcha-reports:before {
    content: "\eb2e";
}
.i-matcha-dashboard:before {
    content: "\e97a";
}
.i-matcha-graph:before {
    content: "\e97c";
}
.i-matcha-education:before {
    content: "\e97b";
}
.i-matcha-phone:before {
    content: "\e980";
}
.i-matcha-contact-us:before {
    content: "\e979";
}
.i-matcha-body:before {
    content: "\e9ba";
}
.i-matcha-focus:before {
    content: "\eb34";
}
.i-matcha-header:before {
    content: "\eb35";
}
.i-matcha-webhook:before {
    content: "\eb36";
}
.i-matcha-audio:before {
    content: "\e984";
}
.i-matcha-audio-out:before {
    content: "\e991";
}
.i-matcha-foward:before {
    content: "\e986";
}
.i-matcha-foward-out:before {
    content: "\e993";
}
.i-matcha-next:before {
    content: "\e989";
}
.i-matcha-next1:before {
    content: "\e996";
}
.i-matcha-pause:before {
    content: "\e98a";
}
.i-matcha-pause-out:before {
    content: "\e997";
}
.i-matcha-play:before {
    content: "\e98b";
}
.i-matcha-play-out:before {
    content: "\e998";
}
.i-matcha-microphone:before {
    content: "\e988";
}
.i-matcha-microphone-out:before {
    content: "\e995";
}
.i-matcha-previous:before {
    content: "\e98c";
}
.i-matcha-previous-out:before {
    content: "\e999";
}
.i-matcha-rewind:before {
    content: "\e98d";
}
.i-matcha-rewind-out:before {
    content: "\e99a";
}
.i-matcha-songbook:before {
    content: "\e98e";
}
.i-matcha-songbook-out:before {
    content: "\e99b";
}
.i-matcha-video:before {
    content: "\e990";
}
.i-matcha-video-out:before {
    content: "\e99d";
}
.i-matcha-upload:before {
    content: "\e98f";
}
.i-matcha-upload-out:before {
    content: "\e99c";
}
.i-matcha-gallery:before {
    content: "\e987";
}
.i-matcha-image-out:before {
    content: "\e994";
}
.i-matcha-edit-image:before {
    content: "\ea92";
}
.i-matcha-bonus:before {
    content: "\e985";
}
.i-matcha-bonus-out:before {
    content: "\e992";
}
.i-matcha-save:before {
    content: "\e9ff";
}
.i-matcha-save-out:before {
    content: "\ea00";
}
.i-matcha-lightbulb:before {
    content: "\ea01";
}
.i-matcha-lightbulb-out:before {
    content: "\ea02";
}
.i-matcha-laptop:before {
    content: "\ea03";
}
.i-matcha-phone1:before {
    content: "\ea04";
}
.i-matcha-monitor:before {
    content: "\ea05";
}
.i-matcha-monitor-out:before {
    content: "\ea06";
}
.i-matcha-testimony:before {
    content: "\ea07";
}
.i-matcha-testimony-out:before {
    content: "\ea08";
}
.i-matcha-management:before {
    content: "\eae1";
}
.i-matcha-pdf:before {
    content: "\e9e6";
}
.i-matcha-podtail:before {
    content: "\e9a0";
}
.i-matcha-net:before {
    content: "\e99e";
}
.i-matcha-push:before {
    content: "\e9e7";
}
.i-matcha-contact1:before {
    content: "\eb2f";
}
.i-matcha-copy-content:before {
    content: "\ea09";
}
.i-matcha-about:before {
    content: "\e9c8";
}
.i-matcha-about-out:before {
    content: "\e9cc";
}
.i-matcha-copy:before {
    content: "\e9c9";
}
.i-matcha-copy-out:before {
    content: "\ea0a";
}
.i-matcha-copy-folder:before {
    content: "\ea0b";
}
.i-matcha-copy-folder-out:before {
    content: "\ea0c";
}
.i-matcha-new-note:before {
    content: "\e9ca";
}
.i-matcha-new-note-out:before {
    content: "\ea0d";
}
.i-matcha-folder-closed:before {
    content: "\e9d0";
}
.i-matcha-folder-opened:before {
    content: "\e9d1";
}
.i-matcha-note:before {
    content: "\e9cb";
}
.i-matcha-note-out:before {
    content: "\e9cf";
}
.i-matcha-copy-out1:before {
    content: "\e9cd";
}
.i-matcha-new-note-out1:before {
    content: "\e9ce";
}
.i-matcha-start-presentation:before {
    content: "\eb0f";
}
.i-matcha-cancel-presentation:before {
    content: "\eb10";
}
.i-matcha-checkbox:before {
    content: "\eb11";
}
.i-matcha-text:before {
    content: "\e9dc";
}
.i-matcha-text-align-left:before {
    content: "\e9d7";
}
.i-matcha-text-bullet-list:before {
    content: "\e9d9";
}
.i-matcha-text-align-center:before {
    content: "\e9d5";
}
.i-matcha-text-indent-back:before {
    content: "\e9da";
}
.i-matcha-text-align-justify:before {
    content: "\e9d6";
}
.i-matcha-text-indent-foward:before {
    content: "\e9db";
}
.i-matcha-text-align-right:before {
    content: "\e9d8";
}
.i-matcha-font-bold:before {
    content: "\e9d2";
}
.i-matcha-font-underline:before {
    content: "\e9d4";
}
.i-matcha-font-italic:before {
    content: "\e9d3";
}
.i-matcha-delete:before {
    content: "\e902";
}
.i-matcha-delete-out:before {
    content: "\e915";
}
.i-matcha-filter:before {
    content: "\ea0e";
}
.i-matcha-filter-out:before {
    content: "\e916";
}
.i-matcha-rocket:before {
    content: "\ea91";
}
.i-matcha-rocket-out:before {
    content: "\eb2c";
}
.i-matcha-filter-bars:before {
    content: "\e903";
}
.i-matcha-fullscreen:before {
    content: "\e905";
}
.i-matcha-fullscreen-out:before {
    content: "\e918";
}
.i-matcha-fullscreen-exit:before {
    content: "\e904";
}
.i-matcha-fullscreen-exit-out:before {
    content: "\e917";
}
.i-matcha-settings:before {
    content: "\e90d";
}
.i-matcha-settings-out:before {
    content: "\e920";
}
.i-matcha-share:before {
    content: "\e90e";
}
.i-matcha-share-out:before {
    content: "\e921";
}
.i-matcha-toggle-off:before {
    content: "\e90f";
}
.i-matcha-toggle-on:before {
    content: "\e910";
}
.i-matcha-toggle-off-out:before {
    content: "\e922";
}
.i-matcha-toggle-on-out:before {
    content: "\e923";
}
.i-matcha-visibility-on:before {
    content: "\e912";
}
.i-matcha-visibility-off:before {
    content: "\e911";
}
.i-matcha-visibility-on-out:before {
    content: "\e925";
}
.i-matcha-visibility-off-out:before {
    content: "\e924";
}
.i-matcha-logout:before {
    content: "\e908";
}
.i-matcha-logout-out:before {
    content: "\e91b";
}
.i-matcha-search:before {
    content: "\e90c";
}
.i-matcha-search-out:before {
    content: "\e91f";
}
.i-matcha-notification1:before {
    content: "\e90a";
}
.i-matcha-notification-out:before {
    content: "\e91d";
}
.i-matcha-password:before {
    content: "\e90b";
}
.i-matcha-password-out:before {
    content: "\e91e";
}
.i-matcha-calendar:before {
    content: "\e901";
}
.i-matcha-calendar-out:before {
    content: "\e914";
}
.i-matcha-menu:before {
    content: "\e909";
}
.i-matcha-menu-out:before {
    content: "\e91c";
}
.i-matcha-info:before {
    content: "\e906";
}
.i-matcha-info-out:before {
    content: "\e919";
}
.i-matcha-leadership:before {
    content: "\e907";
}
.i-matcha-leadership-out:before {
    content: "\e91a";
}
.i-matcha-attachment:before {
    content: "\e900";
}
.i-matcha-attachment-out:before {
    content: "\e913";
}
.i-matcha-send:before {
    content: "\ea0f";
}
.i-matcha-action_sign_error:before {
    content: "\e935";
}
.i-matcha-error:before {
    content: "\eb37";
}
.i-matcha-action_close:before {
    content: "\e92a";
}
.i-matcha-close:before {
    content: "\eb33";
}
.i-matcha-action_sign_success:before {
    content: "\e937";
}
.i-matcha-success:before {
    content: "\eb38";
}
.i-matcha-action_done:before {
    content: "\e92b";
}
.i-matcha-check:before {
    content: "\eb39";
}
.i-matcha-action_sign_warning:before {
    content: "\e938";
}
.i-matcha-warning:before {
    content: "\eb3a";
}
.i-matcha-action_sign_warning-out:before {
    content: "\ea10";
}
.i-matcha-warning-out:before {
    content: "\eb3b";
}
.i-matcha-feedback:before {
    content: "\ea11";
}
.i-matcha-feedback-out:before {
    content: "\ea12";
}
.i-matcha-action_get_up:before {
    content: "\e92d";
}
.i-matcha-get_up:before {
    content: "\eb3e";
}
.i-matcha-action_get_down:before {
    content: "\e92c";
}
.i-matcha-get_down:before {
    content: "\eb3f";
}
.i-matcha-action_move:before {
    content: "\e930";
}
.i-matcha-move:before {
    content: "\eb40";
}
.i-matcha-policy:before {
    content: "\e92e";
}
.i-matcha-action_key:before {
    content: "\ea64";
}
.i-matcha-action_sign_info:before {
    content: "\e936";
}
.i-matcha-help:before {
    content: "\eb3c";
}
.i-matcha-action_sign_info-out:before {
    content: "\ea13";
}
.i-matcha-help-out:before {
    content: "\eb3d";
}
.i-matcha-qr-code-no-border:before {
    content: "\ea14";
}
.i-matcha-qr-code:before {
    content: "\ea15";
}
.i-matcha-drag-dots:before {
    content: "\ea16";
}
.i-matcha-drag-bars:before {
    content: "\ea17";
}
.i-matcha-action_arrow_down:before {
    content: "\e926";
}
.i-matcha-down:before {
    content: "\eb41";
}
.i-matcha-action_arrow_left:before {
    content: "\e927";
}
.i-matcha-left:before {
    content: "\eb42";
}
.i-matcha-action_arrow_up:before {
    content: "\e929";
}
.i-matcha-up:before {
    content: "\eb43";
}
.i-matcha-action_arrow_right:before {
    content: "\e928";
}
.i-matcha-right:before {
    content: "\eb44";
}
.i-matcha-payment-cash .path1:before {
    content: "\ea95";
    color: rgb(14, 147, 71);
}
.i-matcha-payment-cash .path2:before {
    content: "\ea96";
    margin-left: -1em;
    color: rgb(59, 181, 74);
}
.i-matcha-payment-cash .path3:before {
    content: "\ea97";
    margin-left: -1em;
    color: rgb(137, 199, 99);
}
.i-matcha-payment-card .path1:before {
    content: "\ea98";
    color: rgb(95, 130, 226);
}
.i-matcha-payment-card .path2:before {
    content: "\ea99";
    margin-left: -1em;
    color: rgb(121, 153, 237);
}
.i-matcha-payment-card .path3:before {
    content: "\ea9a";
    margin-left: -1em;
    color: rgb(240, 196, 27);
}
.i-matcha-payment-card .path4:before {
    content: "\ea9b";
    margin-left: -1em;
    color: rgb(243, 213, 92);
}
.i-matcha-payment-card .path5:before {
    content: "\ea9c";
    margin-left: -1em;
    color: rgb(231, 76, 61);
}
.i-matcha-payment-card .path6:before {
    content: "\ea9d";
    margin-left: -1em;
    color: rgb(240, 196, 27);
}
.i-matcha-payment-visa .path1:before {
    content: "\ea9e";
    color: rgb(36, 42, 136);
}
.i-matcha-payment-visa .path2:before {
    content: "\ea9f";
    margin-left: -1em;
    color: rgb(245, 247, 250);
}
.i-matcha-payment-ticket .path1:before {
    content: "\eaa0";
    color: rgb(237, 237, 237);
}
.i-matcha-payment-ticket .path2:before {
    content: "\eaa1";
    margin-left: -1em;
    color: rgb(0, 124, 180);
}
.i-matcha-payment-ticket .path3:before {
    content: "\eaa2";
    margin-left: -1em;
    color: rgb(217, 38, 47);
}
.i-matcha-payment-elo .path1:before {
    content: "\eaa3";
    color: rgb(34, 55, 68);
}
.i-matcha-payment-elo .path2:before {
    content: "\eaa4";
    margin-left: -1em;
    color: rgb(255, 241, 0);
}
.i-matcha-payment-elo .path3:before {
    content: "\eaa5";
    margin-left: -1em;
    color: rgb(0, 163, 223);
}
.i-matcha-payment-elo .path4:before {
    content: "\eaa6";
    margin-left: -1em;
    color: rgb(238, 64, 35);
}
.i-matcha-payment-elo .path5:before {
    content: "\eaa7";
    margin-left: -1em;
    color: rgb(245, 247, 250);
}
.i-matcha-payment-hipercard .path1:before {
    content: "\eaa8";
    color: rgb(237, 237, 237);
}
.i-matcha-payment-hipercard .path2:before {
    content: "\eaa9";
    margin-left: -1em;
    color: rgb(179, 19, 27);
}
.i-matcha-payment-diners .path1:before {
    content: "\eaaa";
    color: rgb(0, 121, 190);
}
.i-matcha-payment-diners .path2:before {
    content: "\eaab";
    margin-left: -1em;
    color: rgb(245, 247, 250);
}
.i-matcha-payment-credicard .path1:before {
    content: "\eaac";
    color: rgb(237, 237, 237);
}
.i-matcha-payment-credicard .path2:before {
    content: "\eaad";
    margin-left: -1em;
    color: rgb(41, 45, 120);
}
.i-matcha-payment-aura .path1:before {
    content: "\eaae";
    color: rgb(0, 121, 190);
}
.i-matcha-payment-aura .path2:before {
    content: "\eaaf";
    margin-left: -1em;
    color: rgb(254, 218, 97);
}
.i-matcha-payment-aura .path3:before {
    content: "\eab0";
    margin-left: -1em;
    color: rgb(216, 35, 42);
}
.i-matcha-payment-american-express .path1:before {
    content: "\eab1";
    color: rgb(37, 87, 214);
}
.i-matcha-payment-american-express .path2:before {
    content: "\eab2";
    margin-left: -1em;
    color: rgb(245, 247, 250);
}
.i-matcha-payment-american-express .path3:before {
    content: "\eab3";
    margin-left: -1em;
    color: rgb(245, 247, 250);
}
.i-matcha-payment-pix .path1:before {
    content: "\eab4";
    color: rgb(237, 237, 237);
}
.i-matcha-payment-pix .path2:before {
    content: "\eab5";
    margin-left: -1em;
    color: rgb(30, 172, 125);
}
.i-matcha-payment-pix .path3:before {
    content: "\eab6";
    margin-left: -1em;
    color: rgb(30, 172, 125);
}
.i-matcha-payment-master .path1:before {
    content: "\eab7";
    color: rgb(34, 55, 68);
}
.i-matcha-payment-master .path2:before {
    content: "\eab8";
    margin-left: -1em;
    color: rgb(255, 95, 0);
}
.i-matcha-payment-master .path3:before {
    content: "\eab9";
    margin-left: -1em;
    color: rgb(235, 0, 27);
}
.i-matcha-payment-master .path4:before {
    content: "\eaba";
    margin-left: -1em;
    color: rgb(247, 158, 27);
}
.i-matcha-payment-master .path5:before {
    content: "\eabb";
    margin-left: -1em;
    color: rgb(255, 255, 255);
}
.i-matcha-payment-maestro .path1:before {
    content: "\eabc";
    color: rgb(34, 55, 68);
}
.i-matcha-payment-maestro .path2:before {
    content: "\eabd";
    margin-left: -1em;
    color: rgb(245, 247, 250);
}
.i-matcha-payment-maestro .path3:before {
    content: "\eabe";
    margin-left: -1em;
    color: rgb(118, 115, 192);
}
.i-matcha-payment-maestro .path4:before {
    content: "\eabf";
    margin-left: -1em;
    color: rgb(235, 0, 27);
}
.i-matcha-payment-maestro .path5:before {
    content: "\eac0";
    margin-left: -1em;
    color: rgb(0, 161, 223);
}
.i-matcha-payment-alelo .path1:before {
    content: "\eac1";
    color: rgb(0, 116, 85);
}
.i-matcha-payment-alelo .path2:before {
    content: "\eac2";
    margin-left: -1em;
    color: rgb(183, 210, 86);
}
.i-matcha-payment-alelo .path3:before {
    content: "\eac3";
    margin-left: -1em;
    color: rgb(245, 247, 250);
}
.i-matcha-payment-bank-slip .path1:before {
    content: "\eac4";
    color: rgb(237, 237, 237);
}
.i-matcha-payment-bank-slip .path2:before {
    content: "\eac5";
    margin-left: -1em;
    color: rgb(99, 111, 120);
}
.i-matcha-vr-refeicao .path1:before {
    content: "\eac6";
    color: rgb(17, 144, 70);
}
.i-matcha-vr-refeicao .path2:before {
    content: "\eac7";
    margin-left: -1em;
    color: rgb(235, 139, 45);
}
.i-matcha-vr-refeicao .path3:before {
    content: "\eac8";
    margin-left: -1em;
    color: rgb(245, 247, 250);
}
.i-matcha-vr-auto .path1:before {
    content: "\eac9";
    color: rgb(17, 144, 70);
}
.i-matcha-vr-auto .path2:before {
    content: "\eaca";
    margin-left: -1em;
    color: rgb(27, 27, 27);
}
.i-matcha-vr-auto .path3:before {
    content: "\eacb";
    margin-left: -1em;
    color: rgb(245, 247, 250);
}
.i-matcha-vr-alimentacao .path1:before {
    content: "\eacc";
    color: rgb(17, 144, 70);
}
.i-matcha-vr-alimentacao .path2:before {
    content: "\eacd";
    margin-left: -1em;
    color: rgb(232, 4, 126);
}
.i-matcha-vr-alimentacao .path3:before {
    content: "\eace";
    margin-left: -1em;
    color: rgb(245, 247, 250);
}
.i-matcha-action_plus:before {
    content: "\e932";
}
.i-matcha-plus:before {
    content: "\eb45";
}
.i-matcha-minus:before {
    content: "\ea18";
}
.i-matcha-action_reload:before {
    content: "\e934";
}
.i-matcha-reload:before {
    content: "\eb46";
}
.i-matcha-transfer:before {
    content: "\eacf";
}
.i-matcha-export:before {
    content: "\eb21";
}
.i-matcha-cost-center:before {
    content: "\ead0";
}
.i-matcha-expand:before {
    content: "\ead1";
}
.i-matcha-collapse:before {
    content: "\ead2";
}
.i-matcha-action_list:before {
    content: "\e92f";
}
.i-matcha-list1:before {
    content: "\eb47";
}
.i-matcha-action_options:before {
    content: "\e931";
}
.i-matcha-options:before {
    content: "\eb48";
}
.i-matcha-ellipsis:before {
    content: "\eb26";
}
.i-matcha-historic:before {
    content: "\ea19";
}
.i-matcha-load .path1:before {
    content: "\ea1a";
    color: rgb(0, 0, 0);
    opacity: 0.5;
}
.i-matcha-load .path2:before {
    content: "\ea1b";
    margin-left: -1em;
    color: rgb(0, 0, 0);
}
.i-matcha-plugin:before {
    content: "\ea1c";
}
.i-matcha-header-panel:before {
    content: "\e97d";
}
.i-matcha-modules:before {
    content: "\ea1d";
}
.i-matcha-view-row:before {
    content: "\eb12";
}
.i-matcha-view-column:before {
    content: "\eb13";
}
.i-matcha-platform:before {
    content: "\ea1e";
}
.i-matcha-barcode:before {
    content: "\e9a1";
}
.i-matcha-barcode-out:before {
    content: "\e9aa";
}
.i-matcha-camera:before {
    content: "\e9a2";
}
.i-matcha-camera-out:before {
    content: "\e9ab";
}
.i-matcha-cast:before {
    content: "\e9a4";
}
.i-matcha-cast-out:before {
    content: "\e9ad";
}
.i-matcha-location:before {
    content: "\e9a7";
}
.i-matcha-location-out:before {
    content: "\e9b0";
}
.i-matcha-clock:before {
    content: "\e9a5";
}
.i-matcha-clock-out:before {
    content: "\e9ae";
}
.i-matcha-card:before {
    content: "\e9a3";
}
.i-matcha-card-out:before {
    content: "\e9ac";
}
.i-matcha-add-card:before {
    content: "\ead3";
}
.i-matcha-update-balance:before {
    content: "\ead4";
}
.i-matcha-cash:before {
    content: "\ead5";
}
.i-matcha-cash-out:before {
    content: "\ead6";
}
.i-matcha-pin:before {
    content: "\ead7";
}
.i-matcha-pin-out:before {
    content: "\ead8";
}
.i-matcha-flag:before {
    content: "\ead9";
}
.i-matcha-flag-out:before {
    content: "\eada";
}
.i-matcha-category1:before {
    content: "\eadb";
}
.i-matcha-category-out:before {
    content: "\eadc";
}
.i-matcha-media:before {
    content: "\eadd";
}
.i-matcha-media-out:before {
    content: "\eade";
}
.i-matcha-wallet:before {
    content: "\eadf";
}
.i-matcha-wallet-out:before {
    content: "\eae0";
}
.i-matcha-business-unit:before {
    content: "\eae2";
}
.i-matcha-receipt:before {
    content: "\e9a9";
}
.i-matcha-receipt-out:before {
    content: "\e9b2";
}
.i-matcha-circle-email:before {
    content: "\e9c5";
}
.i-matcha-email:before {
    content: "\e9a6";
}
.i-matcha-email-out:before {
    content: "\e9af";
}
.i-matcha-pix:before {
    content: "\e9a8";
}
.i-matcha-pix-out:before {
    content: "\e9e8";
}
.i-matcha-location-cell:before {
    content: "\e9e9";
}
.i-matcha-location-cell-out:before {
    content: "\e9b3";
}
.i-matcha-image-rights:before {
    content: "\e9bc";
}
.i-matcha-image-rights-allowed:before {
    content: "\e9bd";
}
.i-matcha-forbidden-passage:before {
    content: "\e9b4";
}
.i-matcha-allowed-passage:before {
    content: "\e9b6";
}
.i-matcha-food-restriction:before {
    content: "\e9be";
}
.i-matcha-no-food-restriction:before {
    content: "\e9bf";
}
.i-matcha-allergy:before {
    content: "\e9c0";
}
.i-matcha-special-need:before {
    content: "\e9c1";
}
.i-matcha-map:before {
    content: "\e9b8";
}
.i-matcha-apple:before {
    content: "\e9b7";
}
.i-matcha-number:before {
    content: "\e9b9";
}
.i-matcha-ibf-church:before {
    content: "\e9bb";
}
.i-matcha-process-barcode:before {
    content: "\e9c2";
}
.i-matcha-process-card:before {
    content: "\e9c3";
}
.i-matcha-box-opened:before {
    content: "\e9c4";
}
.i-matcha-parent:before {
    content: "\ea1f";
}
.i-matcha-kid-girl:before {
    content: "\ea21";
}
.i-matcha-kid-boy:before {
    content: "\eb17";
}
.i-matcha-people:before {
    content: "\ea22";
}
.i-matcha-remember:before {
    content: "\eb27";
}
.i-matcha-circle-code:before {
    content: "\e9c6";
}
.i-matcha-circle-facebook:before {
    content: "\e9c7";
}
.i-matcha-facebook:before {
    content: "\e9ea";
}
.i-matcha-circle-instagram:before {
    content: "\e9dd";
}
.i-matcha-instagram:before {
    content: "\e9eb";
}
.i-matcha-soundcloud:before {
    content: "\e9ec";
}
.i-matcha-circle-soundcloud:before {
    content: "\ea5d";
}
.i-matcha-spotify:before {
    content: "\e9ed";
}
.i-matcha-circle-spotify:before {
    content: "\ea5e";
}
.i-matcha-circle-telegram:before {
    content: "\e9ee";
}
.i-matcha-telegram:before {
    content: "\e9ef";
}
.i-matcha-circle-tiktok:before {
    content: "\ea60";
}
.i-matcha-tiktok:before {
    content: "\e9f0";
}
.i-matcha-circle-twitter:before {
    content: "\e9f1";
}
.i-matcha-twitter:before {
    content: "\e9f2";
}
.i-matcha-circle-x:before {
    content: "\eb18";
}
.i-matcha-x:before {
    content: "\eb19";
}
.i-matcha-circle-whatsapp:before {
    content: "\e9f3";
}
.i-matcha-whatsapp:before {
    content: "\e9f4";
}
.i-matcha-circle-youtube:before {
    content: "\ea23";
}
.i-matcha-youtube:before {
    content: "\ea24";
}
.i-matcha-circle-share:before {
    content: "\ea61";
}
.i-matcha-share1:before {
    content: "\ea25";
}
.i-matcha-circle-deezer:before {
    content: "\eb0b";
}
.i-matcha-deezer:before {
    content: "\eb0c";
}
.i-matcha-circle-beacons:before {
    content: "\eb0d";
}
.i-matcha-beacons:before {
    content: "\eb0e";
}
.i-matcha-circle-threads:before {
    content: "\eb14";
}
.i-matcha-threads:before {
    content: "\eb1a";
}
.i-matcha-circle-podcast:before {
    content: "\eb1f";
}
.i-matcha-podcast:before {
    content: "\eb20";
}
.i-matcha-opened-lock:before {
    content: "\ea26";
}
.i-matcha-flickr:before {
    content: "\ea27";
}
.i-matcha-circle-flickr:before {
    content: "\eae3";
}
.i-matcha-cookie:before {
    content: "\eae4";
}
.i-matcha-cookie-out:before {
    content: "\eae5";
}
.i-matcha-cookie-out-2:before {
    content: "\ea90";
}
.i-matcha-safetopay:before {
    content: "\eb1b";
}
.i-matcha-granito:before {
    content: "\eb1c";
}
.i-matcha-iugu:before {
    content: "\eb1d";
}
.i-matcha-stripe:before {
    content: "\eb1e";
}
.i-matcha-emoji-happy-alt:before {
    content: "\eb28";
}
.i-matcha-emoji-happy:before {
    content: "\ea28";
}
.i-matcha-emoji-happy-out:before {
    content: "\ea29";
}
.i-matcha-emoji-happy-color .path1:before {
    content: "\ea2a";
    color: rgb(252, 234, 43);
}
.i-matcha-emoji-happy-color .path2:before {
    content: "\ea2b";
    margin-left: -1em;
    color: rgb(245, 247, 250);
}
.i-matcha-emoji-happy-color .path3:before {
    content: "\ea2c";
    margin-left: -1em;
    color: rgb(234, 90, 71);
}
.i-matcha-emoji-happy-color .path4:before {
    content: "\ea2d";
    margin-left: -1em;
    color: rgb(34, 55, 68);
}
.i-matcha-emoji-happy-color .path5:before {
    content: "\ea2e";
    margin-left: -1em;
    color: rgb(34, 55, 68);
}
.i-matcha-emoji-happy-color .path6:before {
    content: "\ea2f";
    margin-left: -1em;
    color: rgb(34, 55, 68);
}
.i-matcha-emoji-happy-color .path7:before {
    content: "\ea30";
    margin-left: -1em;
    color: rgb(34, 55, 68);
}
.i-matcha-emoji-happy-color .path8:before {
    content: "\ea31";
    margin-left: -1em;
    color: rgb(34, 55, 68);
}
.i-matcha-emoji-prosperous:before {
    content: "\ea32";
}
.i-matcha-emoji-prosperous-out:before {
    content: "\ea33";
}
.i-matcha-emoji-prosperous-color .path1:before {
    content: "\ea34";
    color: rgb(252, 234, 43);
}
.i-matcha-emoji-prosperous-color .path2:before {
    content: "\ea35";
    margin-left: -1em;
    color: rgb(241, 179, 28);
}
.i-matcha-emoji-prosperous-color .path3:before {
    content: "\ea36";
    margin-left: -1em;
    color: rgb(241, 179, 28);
}
.i-matcha-emoji-prosperous-color .path4:before {
    content: "\ea37";
    margin-left: -1em;
    color: rgb(234, 90, 71);
}
.i-matcha-emoji-prosperous-color .path5:before {
    content: "\ea38";
    margin-left: -1em;
    color: rgb(245, 247, 250);
}
.i-matcha-emoji-prosperous-color .path6:before {
    content: "\ea39";
    margin-left: -1em;
    color: rgb(34, 55, 68);
}
.i-matcha-emoji-prosperous-color .path7:before {
    content: "\ea3a";
    margin-left: -1em;
    color: rgb(34, 55, 68);
}
.i-matcha-emoji-prosperous-color .path8:before {
    content: "\ea3b";
    margin-left: -1em;
    color: rgb(34, 55, 68);
}
.i-matcha-emoji-prosperous-color .path9:before {
    content: "\ea3c";
    margin-left: -1em;
    color: rgb(34, 55, 68);
}
.i-matcha-emoji-prosperous-color .path10:before {
    content: "\ea3d";
    margin-left: -1em;
    color: rgb(34, 55, 68);
}
.i-matcha-emoji-prosperous-color .path11:before {
    content: "\ea3e";
    margin-left: -1em;
    color: rgb(34, 55, 68);
}
.i-matcha-emoji-prosperous-color .path12:before {
    content: "\ea3f";
    margin-left: -1em;
    color: rgb(34, 55, 68);
}
.i-matcha-emoji-prosperous-color .path13:before {
    content: "\ea40";
    margin-left: -1em;
    color: rgb(34, 55, 68);
}
.i-matcha-emoji-blessed:before {
    content: "\ea41";
}
.i-matcha-emoji-blessed-out:before {
    content: "\ea42";
}
.i-matcha-emoji-blessed-color .path1:before {
    content: "\ea43";
    color: rgb(252, 234, 43);
}
.i-matcha-emoji-blessed-color .path2:before {
    content: "\ea44";
    margin-left: -1em;
    color: rgb(34, 55, 68);
}
.i-matcha-emoji-blessed-color .path3:before {
    content: "\ea45";
    margin-left: -1em;
    color: rgb(34, 55, 68);
}
.i-matcha-emoji-blessed-color .path4:before {
    content: "\ea46";
    margin-left: -1em;
    color: rgb(34, 55, 68);
}
.i-matcha-emoji-blessed-color .path5:before {
    content: "\ea47";
    margin-left: -1em;
    color: rgb(34, 55, 68);
}
.i-matcha-emoji-blessed-color .path6:before {
    content: "\ea48";
    margin-left: -1em;
    color: rgb(34, 55, 68);
}
.i-matcha-emoji-blessed-color .path7:before {
    content: "\ea49";
    margin-left: -1em;
    color: rgb(34, 55, 68);
}
.i-matcha-emoji-blessed-color .path8:before {
    content: "\ea4a";
    margin-left: -1em;
    color: rgb(97, 178, 228);
}
.i-matcha-emoji-sick:before {
    content: "\ea4b";
}
.i-matcha-emoji-sick-out:before {
    content: "\ea4c";
}
.i-matcha-emoji-sick-color .path1:before {
    content: "\ea4d";
    color: rgb(177, 204, 51);
}
.i-matcha-emoji-sick-color .path2:before {
    content: "\ea4e";
    margin-left: -1em;
    color: rgb(34, 55, 68);
}
.i-matcha-emoji-sick-color .path3:before {
    content: "\ea4f";
    margin-left: -1em;
    color: rgb(34, 55, 68);
}
.i-matcha-emoji-sick-color .path4:before {
    content: "\ea50";
    margin-left: -1em;
    color: rgb(34, 55, 68);
}
.i-matcha-emoji-sick-color .path5:before {
    content: "\ea51";
    margin-left: -1em;
    color: rgb(34, 55, 68);
}
.i-matcha-emoji-sick-color .path6:before {
    content: "\ea52";
    margin-left: -1em;
    color: rgb(34, 55, 68);
}
.i-matcha-emoji-sick-color .path7:before {
    content: "\ea53";
    margin-left: -1em;
    color: rgb(34, 55, 68);
}
.i-matcha-emoji-sick-color .path8:before {
    content: "\ea54";
    margin-left: -1em;
    color: rgb(34, 55, 68);
}
.i-matcha-emoji-sick-color .path9:before {
    content: "\ea55";
    margin-left: -1em;
    color: rgb(34, 55, 68);
}
.i-matcha-emoji-alone:before {
    content: "\ea56";
}
.i-matcha-emoji-alone-out:before {
    content: "\ea57";
}
.i-matcha-emoji-alone-color .path1:before {
    content: "\ea58";
    color: rgb(252, 234, 43);
}
.i-matcha-emoji-alone-color .path2:before {
    content: "\ea59";
    margin-left: -1em;
    color: rgb(146, 211, 245);
}
.i-matcha-emoji-alone-color .path3:before {
    content: "\ea5a";
    margin-left: -1em;
    color: rgb(34, 55, 68);
}
.i-matcha-emoji-alone-color .path4:before {
    content: "\ea5b";
    margin-left: -1em;
    color: rgb(34, 55, 68);
}
.i-matcha-emoji-alone-color .path5:before {
    content: "\ea5c";
    margin-left: -1em;
    color: rgb(34, 55, 68);
}
.i-matcha-emoji-alone-color .path6:before {
    content: "\ea5f";
    margin-left: -1em;
    color: rgb(34, 55, 68);
}
.i-matcha-emoji-alone-color .path7:before {
    content: "\ea62";
    margin-left: -1em;
    color: rgb(34, 55, 68);
}
.i-matcha-emoji-alone-color .path8:before {
    content: "\ea63";
    margin-left: -1em;
    color: rgb(34, 55, 68);
}
.i-matcha-emoji-alone-color .path9:before {
    content: "\ea65";
    margin-left: -1em;
    color: rgb(34, 55, 68);
}
.i-matcha-emoji-sad:before {
    content: "\ea66";
}
.i-matcha-emoji-sad-out:before {
    content: "\ea67";
}
.i-matcha-emoji-sad-color .path1:before {
    content: "\ea68";
    color: rgb(34, 55, 68);
}
.i-matcha-emoji-sad-color .path2:before {
    content: "\ea69";
    margin-left: -1em;
    color: rgb(34, 55, 68);
}
.i-matcha-emoji-sad-color .path3:before {
    content: "\ea6a";
    margin-left: -1em;
    color: rgb(34, 55, 68);
}
.i-matcha-emoji-sad-color .path4:before {
    content: "\ea6b";
    margin-left: -1em;
    color: rgb(34, 55, 68);
}
.i-matcha-emoji-sad-color .path5:before {
    content: "\ea6c";
    margin-left: -1em;
    color: rgb(252, 234, 43);
}
.i-matcha-emoji-sad-color .path6:before {
    content: "\ea6d";
    margin-left: -1em;
    color: rgb(34, 55, 68);
}
.i-matcha-emoji-sad-color .path7:before {
    content: "\ea6e";
    margin-left: -1em;
    color: rgb(245, 247, 250);
}
.i-matcha-emoji-sad-color .path8:before {
    content: "\ea6f";
    margin-left: -1em;
    color: rgb(146, 211, 245);
}
.i-matcha-emoji-sad-color .path9:before {
    content: "\ea70";
    margin-left: -1em;
    color: rgb(146, 211, 245);
}
.i-matcha-emoji-sad-color .path10:before {
    content: "\ea71";
    margin-left: -1em;
    color: rgb(34, 55, 68);
}
.i-matcha-emoji-sad-color .path11:before {
    content: "\ea72";
    margin-left: -1em;
    color: rgb(34, 55, 68);
}
.i-matcha-emoji-sad-color .path12:before {
    content: "\ea73";
    margin-left: -1em;
    color: rgb(34, 55, 68);
}
.i-matcha-emoji-sad-color .path13:before {
    content: "\ea74";
    margin-left: -1em;
    color: rgb(34, 55, 68);
}
.i-matcha-emoji-faithless:before {
    content: "\ea75";
}
.i-matcha-emoji-faithless-out:before {
    content: "\ea76";
}
.i-matcha-emoji-faithless-color .path1:before {
    content: "\ea77";
    color: rgb(252, 234, 43);
}
.i-matcha-emoji-faithless-color .path2:before {
    content: "\ea78";
    margin-left: -1em;
    color: rgb(34, 55, 68);
}
.i-matcha-emoji-faithless-color .path3:before {
    content: "\ea79";
    margin-left: -1em;
    color: rgb(34, 55, 68);
}
.i-matcha-emoji-faithless-color .path4:before {
    content: "\ea7a";
    margin-left: -1em;
    color: rgb(34, 55, 68);
}
.i-matcha-emoji-faithless-color .path5:before {
    content: "\ea7b";
    margin-left: -1em;
    color: rgb(34, 55, 68);
}
.i-matcha-emoji-faithless-color .path6:before {
    content: "\ea7c";
    margin-left: -1em;
    color: rgb(34, 55, 68);
}
.i-matcha-emoji-faithless-color .path7:before {
    content: "\ea7d";
    margin-left: -1em;
    color: rgb(34, 55, 68);
}
.i-matcha-emoji-faithless-color .path8:before {
    content: "\ea7e";
    margin-left: -1em;
    color: rgb(34, 55, 68);
}
.i-matcha-emoji-careful:before {
    content: "\ea7f";
}
.i-matcha-emoji-careful-out:before {
    content: "\ea80";
}
.i-matcha-emoji-careful-color .path1:before {
    content: "\ea81";
    color: rgb(252, 234, 43);
}
.i-matcha-emoji-careful-color .path2:before {
    content: "\ea82";
    margin-left: -1em;
    color: rgb(210, 47, 39);
}
.i-matcha-emoji-careful-color .path3:before {
    content: "\ea83";
    margin-left: -1em;
    color: rgb(210, 47, 39);
}
.i-matcha-emoji-careful-color .path4:before {
    content: "\ea84";
    margin-left: -1em;
    color: rgb(245, 247, 250);
}
.i-matcha-emoji-careful-color .path5:before {
    content: "\ea85";
    margin-left: -1em;
    color: rgb(34, 55, 68);
}
.i-matcha-emoji-careful-color .path6:before {
    content: "\ea86";
    margin-left: -1em;
    color: rgb(34, 55, 68);
}
.i-matcha-emoji-careful-color .path7:before {
    content: "\ea87";
    margin-left: -1em;
    color: rgb(34, 55, 68);
}
.i-matcha-emoji-careful-color .path8:before {
    content: "\ea88";
    margin-left: -1em;
    color: rgb(34, 55, 68);
}
.i-matcha-emoji-distressed:before {
    content: "\ea89";
}
.i-matcha-emoji-distressed-out:before {
    content: "\ea8a";
}
.i-matcha-emoji-distressed-color .path1:before {
    content: "\ea8b";
    color: rgb(252, 234, 43);
}
.i-matcha-emoji-distressed-color .path2:before {
    content: "\ea8c";
    margin-left: -1em;
    color: rgb(245, 247, 250);
}
.i-matcha-emoji-distressed-color .path3:before {
    content: "\ea8d";
    margin-left: -1em;
    color: rgb(34, 55, 68);
}
.i-matcha-emoji-distressed-color .path4:before {
    content: "\ea8e";
    margin-left: -1em;
    color: rgb(34, 55, 68);
}
.i-matcha-emoji-distressed-color .path5:before {
    content: "\ea8f";
    margin-left: -1em;
    color: rgb(34, 55, 68);
}
.i-matcha-emoji-distressed-color .path6:before {
    content: "\eae9";
    margin-left: -1em;
    color: rgb(34, 55, 68);
}
.i-matcha-emoji-distressed-color .path7:before {
    content: "\eaea";
    margin-left: -1em;
    color: rgb(34, 55, 68);
}
.i-matcha-emoji-distressed-color .path8:before {
    content: "\eaeb";
    margin-left: -1em;
    color: rgb(34, 55, 68);
}
.i-matcha-nu:before {
    content: "\eaec";
}
.i-matcha-nu-color .path1:before {
    content: "\eaed";
    color: rgb(255, 255, 255);
}
.i-matcha-nu-color .path2:before {
    content: "\eaee";
    margin-left: -1em;
    color: rgb(129, 10, 210);
}
.i-matcha-bradesco:before {
    content: "\eaef";
}
.i-matcha-bradesco-color .path1:before {
    content: "\eaf0";
    color: rgb(255, 255, 255);
}
.i-matcha-bradesco-color .path2:before {
    content: "\eaf1";
    margin-left: -1em;
    color: rgb(204, 9, 47);
}
.i-matcha-santander:before {
    content: "\eaf2";
}
.i-matcha-santander-color .path1:before {
    content: "\eaf3";
    color: rgb(255, 255, 255);
}
.i-matcha-santander-color .path2:before {
    content: "\eaf4";
    margin-left: -1em;
    color: rgb(236, 0, 0);
}
.i-matcha-bb:before {
    content: "\eaf5";
}
.i-matcha-bb-color .path1:before {
    content: "\eaf6";
    color: rgb(51, 52, 142);
}
.i-matcha-bb-color .path2:before {
    content: "\eaf7";
    margin-left: -1em;
    color: rgb(255, 239, 56);
}
.i-matcha-c6-color:before {
    content: "\eaf8";
}
.i-matcha-itau:before {
    content: "\eaf9";
}
.i-matcha-itau-color .path1:before {
    content: "\eafa";
    color: rgb(254, 110, 2);
}
.i-matcha-itau-color .path2:before {
    content: "\eafb";
    margin-left: -1em;
    color: rgb(46, 49, 145);
}
.i-matcha-itau-color .path3:before {
    content: "\eafc";
    margin-left: -1em;
    color: rgb(255, 241, 0);
}
.i-matcha-itau-color .path4:before {
    content: "\eafd";
    margin-left: -1em;
    color: rgb(254, 110, 2);
}
.i-matcha-itau-color .path5:before {
    content: "\eafe";
    margin-left: -1em;
    color: rgb(254, 110, 2);
}
.i-matcha-itau-color .path6:before {
    content: "\eaff";
    margin-left: -1em;
    color: rgb(254, 110, 2);
}
.i-matcha-itau-color .path7:before {
    content: "\eb00";
    margin-left: -1em;
    color: rgb(254, 110, 2);
}
.i-matcha-itau-color .path8:before {
    content: "\eb01";
    margin-left: -1em;
    color: rgb(254, 110, 2);
}
.i-matcha-itau-color .path9:before {
    content: "\eb02";
    margin-left: -1em;
    color: rgb(254, 110, 2);
}
.i-matcha-itau-color .path10:before {
    content: "\eb03";
    margin-left: -1em;
    color: rgb(254, 110, 2);
}
.i-matcha-itau-color .path11:before {
    content: "\eb04";
    margin-left: -1em;
    color: rgb(254, 110, 2);
}
.i-matcha-itau-color .path12:before {
    content: "\eb05";
    margin-left: -1em;
    color: rgb(254, 110, 2);
}
.i-matcha-itau-color .path13:before {
    content: "\eb06";
    margin-left: -1em;
    color: rgb(254, 110, 2);
}
.i-matcha-itau-color .path14:before {
    content: "\eb07";
    margin-left: -1em;
    color: rgb(254, 110, 2);
}
.i-matcha-itau-color .path15:before {
    content: "\eb08";
    margin-left: -1em;
    color: rgb(254, 110, 2);
}
.i-matcha-caixa:before {
    content: "\eb09";
}
.i-matcha-caixa-color .path1:before {
    content: "\eb0a";
    color: rgb(255, 255, 255);
}
.i-matcha-caixa-color .path2:before {
    content: "\eb30";
    margin-left: -1em;
    color: rgb(0, 111, 174);
}
.i-matcha-caixa-color .path3:before {
    content: "\eb31";
    margin-left: -1em;
    color: rgb(243, 146, 0);
}
.i-matcha-caixa-color .path4:before {
    content: "\eb32";
    margin-left: -1em;
    color: rgb(243, 146, 0);
}

/*!****************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].rules[0].oneOf[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[5].rules[0].oneOf[0].use[2]!./node_modules/matcha-core/matcha-core.min.css?ngGlobalStyle ***!
  \****************************************************************************************************************************************************************************************************************************************************/
.grid-1,.grid-10,.grid-11,.grid-12,.grid-2,.grid-3,.grid-4,.grid-5,.grid-6,.grid-7,.grid-8,.grid-9{display:grid}.text-boxed,.text-nowrap{white-space:nowrap}.h-0{height:0}.h-0--force{height:0!important}.max-h-0{max-height:0}.max-h-0--force{max-height:0!important}.min-h-0{min-height:0}.min-h-0--force{min-height:0!important}.h-4{height:4px}.h-4--force{height:4px!important}.max-h-4{max-height:4px}.max-h-4--force{max-height:4px!important}.min-h-4{min-height:4px}.min-h-4--force{min-height:4px!important}.h-8{height:8px}.h-8--force{height:8px!important}.max-h-8{max-height:8px}.max-h-8--force{max-height:8px!important}.min-h-8{min-height:8px}.min-h-8--force{min-height:8px!important}.h-12{height:12px}.h-12--force{height:12px!important}.max-h-12{max-height:12px}.max-h-12--force{max-height:12px!important}.min-h-12{min-height:12px}.min-h-12--force{min-height:12px!important}.h-16{height:16px}.h-16--force{height:16px!important}.max-h-16{max-height:16px}.max-h-16--force{max-height:16px!important}.min-h-16{min-height:16px}.min-h-16--force{min-height:16px!important}.h-20{height:20px}.h-20--force{height:20px!important}.max-h-20{max-height:20px}.max-h-20--force{max-height:20px!important}.min-h-20{min-height:20px}.min-h-20--force{min-height:20px!important}.h-24{height:24px}.h-24--force{height:24px!important}.max-h-24{max-height:24px}.max-h-24--force{max-height:24px!important}.min-h-24{min-height:24px}.min-h-24--force{min-height:24px!important}.h-28{height:28px}.h-28--force{height:28px!important}.max-h-28{max-height:28px}.max-h-28--force{max-height:28px!important}.min-h-28{min-height:28px}.min-h-28--force{min-height:28px!important}.h-32{height:32px}.h-32--force{height:32px!important}.max-h-32{max-height:32px}.max-h-32--force{max-height:32px!important}.min-h-32{min-height:32px}.min-h-32--force{min-height:32px!important}.h-36{height:36px}.h-36--force{height:36px!important}.max-h-36{max-height:36px}.max-h-36--force{max-height:36px!important}.min-h-36{min-height:36px}.min-h-36--force{min-height:36px!important}.h-40{height:40px}.h-40--force{height:40px!important}.max-h-40{max-height:40px}.max-h-40--force{max-height:40px!important}.min-h-40{min-height:40px}.min-h-40--force{min-height:40px!important}.h-44{height:44px}.h-44--force{height:44px!important}.max-h-44{max-height:44px}.max-h-44--force{max-height:44px!important}.min-h-44{min-height:44px}.min-h-44--force{min-height:44px!important}.h-48{height:48px}.h-48--force{height:48px!important}.max-h-48{max-height:48px}.max-h-48--force{max-height:48px!important}.min-h-48{min-height:48px}.min-h-48--force{min-height:48px!important}.h-52{height:52px}.h-52--force{height:52px!important}.max-h-52{max-height:52px}.max-h-52--force{max-height:52px!important}.min-h-52{min-height:52px}.min-h-52--force{min-height:52px!important}.h-56{height:56px}.h-56--force{height:56px!important}.max-h-56{max-height:56px}.max-h-56--force{max-height:56px!important}.min-h-56{min-height:56px}.min-h-56--force{min-height:56px!important}.h-60{height:60px}.h-60--force{height:60px!important}.max-h-60{max-height:60px}.max-h-60--force{max-height:60px!important}.min-h-60{min-height:60px}.min-h-60--force{min-height:60px!important}.h-64{height:64px}.h-64--force{height:64px!important}.max-h-64{max-height:64px}.max-h-64--force{max-height:64px!important}.min-h-64{min-height:64px}.min-h-64--force{min-height:64px!important}.h-68{height:68px}.h-68--force{height:68px!important}.max-h-68{max-height:68px}.max-h-68--force{max-height:68px!important}.min-h-68{min-height:68px}.min-h-68--force{min-height:68px!important}.h-72{height:72px}.h-72--force{height:72px!important}.max-h-72{max-height:72px}.max-h-72--force{max-height:72px!important}.min-h-72{min-height:72px}.min-h-72--force{min-height:72px!important}.h-76{height:76px}.h-76--force{height:76px!important}.max-h-76{max-height:76px}.max-h-76--force{max-height:76px!important}.min-h-76{min-height:76px}.min-h-76--force{min-height:76px!important}.h-80{height:80px}.h-80--force{height:80px!important}.max-h-80{max-height:80px}.max-h-80--force{max-height:80px!important}.min-h-80{min-height:80px}.min-h-80--force{min-height:80px!important}.h-84{height:84px}.h-84--force{height:84px!important}.max-h-84{max-height:84px}.max-h-84--force{max-height:84px!important}.min-h-84{min-height:84px}.min-h-84--force{min-height:84px!important}.h-88{height:88px}.h-88--force{height:88px!important}.max-h-88{max-height:88px}.max-h-88--force{max-height:88px!important}.min-h-88{min-height:88px}.min-h-88--force{min-height:88px!important}.h-92{height:92px}.h-92--force{height:92px!important}.max-h-92{max-height:92px}.max-h-92--force{max-height:92px!important}.min-h-92{min-height:92px}.min-h-92--force{min-height:92px!important}.h-96{height:96px}.h-96--force{height:96px!important}.max-h-96{max-height:96px}.max-h-96--force{max-height:96px!important}.min-h-96{min-height:96px}.min-h-96--force{min-height:96px!important}.h-100{height:100px}.h-100--force{height:100px!important}.max-h-100{max-height:100px}.max-h-100--force{max-height:100px!important}.min-h-100{min-height:100px}.min-h-100--force{min-height:100px!important}.h-104{height:104px}.h-104--force{height:104px!important}.max-h-104{max-height:104px}.max-h-104--force{max-height:104px!important}.min-h-104{min-height:104px}.min-h-104--force{min-height:104px!important}.h-108{height:108px}.h-108--force{height:108px!important}.max-h-108{max-height:108px}.max-h-108--force{max-height:108px!important}.min-h-108{min-height:108px}.min-h-108--force{min-height:108px!important}.h-112{height:112px}.h-112--force{height:112px!important}.max-h-112{max-height:112px}.max-h-112--force{max-height:112px!important}.min-h-112{min-height:112px}.min-h-112--force{min-height:112px!important}.h-116{height:116px}.h-116--force{height:116px!important}.max-h-116{max-height:116px}.max-h-116--force{max-height:116px!important}.min-h-116{min-height:116px}.min-h-116--force{min-height:116px!important}.h-120{height:120px}.h-120--force{height:120px!important}.max-h-120{max-height:120px}.max-h-120--force{max-height:120px!important}.min-h-120{min-height:120px}.min-h-120--force{min-height:120px!important}.h-124{height:124px}.h-124--force{height:124px!important}.max-h-124{max-height:124px}.max-h-124--force{max-height:124px!important}.min-h-124{min-height:124px}.min-h-124--force{min-height:124px!important}.h-128{height:128px}.h-128--force{height:128px!important}.max-h-128{max-height:128px}.max-h-128--force{max-height:128px!important}.min-h-128{min-height:128px}.min-h-128--force{min-height:128px!important}.h-132{height:132px}.h-132--force{height:132px!important}.max-h-132{max-height:132px}.max-h-132--force{max-height:132px!important}.min-h-132{min-height:132px}.min-h-132--force{min-height:132px!important}.h-136{height:136px}.h-136--force{height:136px!important}.max-h-136{max-height:136px}.max-h-136--force{max-height:136px!important}.min-h-136{min-height:136px}.min-h-136--force{min-height:136px!important}.h-140{height:140px}.h-140--force{height:140px!important}.max-h-140{max-height:140px}.max-h-140--force{max-height:140px!important}.min-h-140{min-height:140px}.min-h-140--force{min-height:140px!important}.h-144{height:144px}.h-144--force{height:144px!important}.max-h-144{max-height:144px}.max-h-144--force{max-height:144px!important}.min-h-144{min-height:144px}.min-h-144--force{min-height:144px!important}.h-148{height:148px}.h-148--force{height:148px!important}.max-h-148{max-height:148px}.max-h-148--force{max-height:148px!important}.min-h-148{min-height:148px}.min-h-148--force{min-height:148px!important}.h-152{height:152px}.h-152--force{height:152px!important}.max-h-152{max-height:152px}.max-h-152--force{max-height:152px!important}.min-h-152{min-height:152px}.min-h-152--force{min-height:152px!important}.h-156{height:156px}.h-156--force{height:156px!important}.max-h-156{max-height:156px}.max-h-156--force{max-height:156px!important}.min-h-156{min-height:156px}.min-h-156--force{min-height:156px!important}.h-160{height:160px}.h-160--force{height:160px!important}.max-h-160{max-height:160px}.max-h-160--force{max-height:160px!important}.min-h-160{min-height:160px}.min-h-160--force{min-height:160px!important}.h-164{height:164px}.h-164--force{height:164px!important}.max-h-164{max-height:164px}.max-h-164--force{max-height:164px!important}.min-h-164{min-height:164px}.min-h-164--force{min-height:164px!important}.h-168{height:168px}.h-168--force{height:168px!important}.max-h-168{max-height:168px}.max-h-168--force{max-height:168px!important}.min-h-168{min-height:168px}.min-h-168--force{min-height:168px!important}.h-172{height:172px}.h-172--force{height:172px!important}.max-h-172{max-height:172px}.max-h-172--force{max-height:172px!important}.min-h-172{min-height:172px}.min-h-172--force{min-height:172px!important}.h-176{height:176px}.h-176--force{height:176px!important}.max-h-176{max-height:176px}.max-h-176--force{max-height:176px!important}.min-h-176{min-height:176px}.min-h-176--force{min-height:176px!important}.h-180{height:180px}.h-180--force{height:180px!important}.max-h-180{max-height:180px}.max-h-180--force{max-height:180px!important}.min-h-180{min-height:180px}.min-h-180--force{min-height:180px!important}.h-184{height:184px}.h-184--force{height:184px!important}.max-h-184{max-height:184px}.max-h-184--force{max-height:184px!important}.min-h-184{min-height:184px}.min-h-184--force{min-height:184px!important}.h-188{height:188px}.h-188--force{height:188px!important}.max-h-188{max-height:188px}.max-h-188--force{max-height:188px!important}.min-h-188{min-height:188px}.min-h-188--force{min-height:188px!important}.h-192{height:192px}.h-192--force{height:192px!important}.max-h-192{max-height:192px}.max-h-192--force{max-height:192px!important}.min-h-192{min-height:192px}.min-h-192--force{min-height:192px!important}.h-196{height:196px}.h-196--force{height:196px!important}.max-h-196{max-height:196px}.max-h-196--force{max-height:196px!important}.min-h-196{min-height:196px}.min-h-196--force{min-height:196px!important}.h-200{height:200px}.h-200--force{height:200px!important}.max-h-200{max-height:200px}.max-h-200--force{max-height:200px!important}.min-h-200{min-height:200px}.min-h-200--force{min-height:200px!important}.h-204{height:204px}.h-204--force{height:204px!important}.max-h-204{max-height:204px}.max-h-204--force{max-height:204px!important}.min-h-204{min-height:204px}.min-h-204--force{min-height:204px!important}.h-208{height:208px}.h-208--force{height:208px!important}.max-h-208{max-height:208px}.max-h-208--force{max-height:208px!important}.min-h-208{min-height:208px}.min-h-208--force{min-height:208px!important}.h-212{height:212px}.h-212--force{height:212px!important}.max-h-212{max-height:212px}.max-h-212--force{max-height:212px!important}.min-h-212{min-height:212px}.min-h-212--force{min-height:212px!important}.h-216{height:216px}.h-216--force{height:216px!important}.max-h-216{max-height:216px}.max-h-216--force{max-height:216px!important}.min-h-216{min-height:216px}.min-h-216--force{min-height:216px!important}.h-220{height:220px}.h-220--force{height:220px!important}.max-h-220{max-height:220px}.max-h-220--force{max-height:220px!important}.min-h-220{min-height:220px}.min-h-220--force{min-height:220px!important}.h-224{height:224px}.h-224--force{height:224px!important}.max-h-224{max-height:224px}.max-h-224--force{max-height:224px!important}.min-h-224{min-height:224px}.min-h-224--force{min-height:224px!important}.h-228{height:228px}.h-228--force{height:228px!important}.max-h-228{max-height:228px}.max-h-228--force{max-height:228px!important}.min-h-228{min-height:228px}.min-h-228--force{min-height:228px!important}.h-232{height:232px}.h-232--force{height:232px!important}.max-h-232{max-height:232px}.max-h-232--force{max-height:232px!important}.min-h-232{min-height:232px}.min-h-232--force{min-height:232px!important}.h-236{height:236px}.h-236--force{height:236px!important}.max-h-236{max-height:236px}.max-h-236--force{max-height:236px!important}.min-h-236{min-height:236px}.min-h-236--force{min-height:236px!important}.h-240{height:240px}.h-240--force{height:240px!important}.max-h-240{max-height:240px}.max-h-240--force{max-height:240px!important}.min-h-240{min-height:240px}.min-h-240--force{min-height:240px!important}.h-244{height:244px}.h-244--force{height:244px!important}.max-h-244{max-height:244px}.max-h-244--force{max-height:244px!important}.min-h-244{min-height:244px}.min-h-244--force{min-height:244px!important}.h-248{height:248px}.h-248--force{height:248px!important}.max-h-248{max-height:248px}.max-h-248--force{max-height:248px!important}.min-h-248{min-height:248px}.min-h-248--force{min-height:248px!important}.h-252{height:252px}.h-252--force{height:252px!important}.max-h-252{max-height:252px}.max-h-252--force{max-height:252px!important}.min-h-252{min-height:252px}.min-h-252--force{min-height:252px!important}.h-256{height:256px}.h-256--force{height:256px!important}.max-h-256{max-height:256px}.max-h-256--force{max-height:256px!important}.min-h-256{min-height:256px}.min-h-256--force{min-height:256px!important}.h-0-p{height:0%}.h-0-p--force{height:0%!important}.max-h-0-p{max-height:0%}.max-h-0-p--force{max-height:0%!important}.min-h-0-p{min-height:0}.min-h-0-p--force{min-height:0!important}.h-5-p{height:5%}.h-5-p--force{height:5%!important}.max-h-5-p{max-height:5%}.max-h-5-p--force{max-height:5%!important}.min-h-5-p{min-height:5%}.min-h-5-p--force{min-height:5%!important}.h-10-p{height:10%}.h-10-p--force{height:10%!important}.max-h-10-p{max-height:10%}.max-h-10-p--force{max-height:10%!important}.min-h-10-p{min-height:10%}.min-h-10-p--force{min-height:10%!important}.h-15-p{height:15%}.h-15-p--force{height:15%!important}.max-h-15-p{max-height:15%}.max-h-15-p--force{max-height:15%!important}.min-h-15-p{min-height:15%}.min-h-15-p--force{min-height:15%!important}.h-20-p{height:20%}.h-20-p--force{height:20%!important}.max-h-20-p{max-height:20%}.max-h-20-p--force{max-height:20%!important}.min-h-20-p{min-height:20%}.min-h-20-p--force{min-height:20%!important}.h-25-p{height:25%}.h-25-p--force{height:25%!important}.max-h-25-p{max-height:25%}.max-h-25-p--force{max-height:25%!important}.min-h-25-p{min-height:25%}.min-h-25-p--force{min-height:25%!important}.h-30-p{height:30%}.h-30-p--force{height:30%!important}.max-h-30-p{max-height:30%}.max-h-30-p--force{max-height:30%!important}.min-h-30-p{min-height:30%}.min-h-30-p--force{min-height:30%!important}.h-35-p{height:35%}.h-35-p--force{height:35%!important}.max-h-35-p{max-height:35%}.max-h-35-p--force{max-height:35%!important}.min-h-35-p{min-height:35%}.min-h-35-p--force{min-height:35%!important}.h-40-p{height:40%}.h-40-p--force{height:40%!important}.max-h-40-p{max-height:40%}.max-h-40-p--force{max-height:40%!important}.min-h-40-p{min-height:40%}.min-h-40-p--force{min-height:40%!important}.h-45-p{height:45%}.h-45-p--force{height:45%!important}.max-h-45-p{max-height:45%}.max-h-45-p--force{max-height:45%!important}.min-h-45-p{min-height:45%}.min-h-45-p--force{min-height:45%!important}.h-50-p{height:50%}.h-50-p--force{height:50%!important}.max-h-50-p{max-height:50%}.max-h-50-p--force{max-height:50%!important}.min-h-50-p{min-height:50%}.min-h-50-p--force{min-height:50%!important}.h-55-p{height:55%}.h-55-p--force{height:55%!important}.max-h-55-p{max-height:55%}.max-h-55-p--force{max-height:55%!important}.min-h-55-p{min-height:55%}.min-h-55-p--force{min-height:55%!important}.h-60-p{height:60%}.h-60-p--force{height:60%!important}.max-h-60-p{max-height:60%}.max-h-60-p--force{max-height:60%!important}.min-h-60-p{min-height:60%}.min-h-60-p--force{min-height:60%!important}.h-65-p{height:65%}.h-65-p--force{height:65%!important}.max-h-65-p{max-height:65%}.max-h-65-p--force{max-height:65%!important}.min-h-65-p{min-height:65%}.min-h-65-p--force{min-height:65%!important}.h-70-p{height:70%}.h-70-p--force{height:70%!important}.max-h-70-p{max-height:70%}.max-h-70-p--force{max-height:70%!important}.min-h-70-p{min-height:70%}.min-h-70-p--force{min-height:70%!important}.h-75-p{height:75%}.h-75-p--force{height:75%!important}.max-h-75-p{max-height:75%}.max-h-75-p--force{max-height:75%!important}.min-h-75-p{min-height:75%}.min-h-75-p--force{min-height:75%!important}.h-80-p{height:80%}.h-80-p--force{height:80%!important}.max-h-80-p{max-height:80%}.max-h-80-p--force{max-height:80%!important}.min-h-80-p{min-height:80%}.min-h-80-p--force{min-height:80%!important}.h-85-p{height:85%}.h-85-p--force{height:85%!important}.max-h-85-p{max-height:85%}.max-h-85-p--force{max-height:85%!important}.min-h-85-p{min-height:85%}.min-h-85-p--force{min-height:85%!important}.h-90-p{height:90%}.h-90-p--force{height:90%!important}.max-h-90-p{max-height:90%}.max-h-90-p--force{max-height:90%!important}.min-h-90-p{min-height:90%}.min-h-90-p--force{min-height:90%!important}.h-95-p{height:95%}.h-95-p--force{height:95%!important}.max-h-95-p{max-height:95%}.max-h-95-p--force{max-height:95%!important}.min-h-95-p{min-height:95%}.min-h-95-p--force{min-height:95%!important}.h-100-p{height:100%}.h-100-p--force{height:100%!important}.max-h-100-p{max-height:100%}.max-h-100-p--force{max-height:100%!important}.min-h-100-p{min-height:100%}.min-h-100-p--force{min-height:100%!important}.h-300{height:300px}.h-300--force{height:300px!important}.max-h-300{max-height:300px}.max-h-300--force{max-height:300px!important}.min-h-300{min-height:300px}.min-h-300--force{min-height:300px!important}.h-400{height:400px}.h-400--force{height:400px!important}.max-h-400{max-height:400px}.max-h-400--force{max-height:400px!important}.min-h-400{min-height:400px}.min-h-400--force{min-height:400px!important}.h-500{height:500px}.h-500--force{height:500px!important}.max-h-500{max-height:500px}.max-h-500--force{max-height:500px!important}.min-h-500{min-height:500px}.min-h-500--force{min-height:500px!important}.h-600{height:600px}.h-600--force{height:600px!important}.max-h-600{max-height:600px}.max-h-600--force{max-height:600px!important}.min-h-600{min-height:600px}.min-h-600--force{min-height:600px!important}.h-700{height:700px}.h-700--force{height:700px!important}.max-h-700{max-height:700px}.max-h-700--force{max-height:700px!important}.min-h-700{min-height:700px}.min-h-700--force{min-height:700px!important}.h-800{height:800px}.h-800--force{height:800px!important}.max-h-800{max-height:800px}.max-h-800--force{max-height:800px!important}.min-h-800{min-height:800px}.min-h-800--force{min-height:800px!important}.h-900{height:900px}.h-900--force{height:900px!important}.max-h-900{max-height:900px}.max-h-900--force{max-height:900px!important}.min-h-900{min-height:900px}.min-h-900--force{min-height:900px!important}.h-1000{height:1000px}.h-1000--force{height:1000px!important}.max-h-1000{max-height:1000px}.max-h-1000--force{max-height:1000px!important}.min-h-1000{min-height:1000px}.min-h-1000--force{min-height:1000px!important}.h-1100{height:1100px}.h-1100--force{height:1100px!important}.max-h-1100{max-height:1100px}.max-h-1100--force{max-height:1100px!important}.min-h-1100{min-height:1100px}.min-h-1100--force{min-height:1100px!important}.h-1200{height:1200px}.h-1200--force{height:1200px!important}.max-h-1200{max-height:1200px}.max-h-1200--force{max-height:1200px!important}.min-h-1200{min-height:1200px}.min-h-1200--force{min-height:1200px!important}.h-1300{height:1300px}.h-1300--force{height:1300px!important}.max-h-1300{max-height:1300px}.max-h-1300--force{max-height:1300px!important}.min-h-1300{min-height:1300px}.min-h-1300--force{min-height:1300px!important}.h-1400{height:1400px}.h-1400--force{height:1400px!important}.max-h-1400{max-height:1400px}.max-h-1400--force{max-height:1400px!important}.min-h-1400{min-height:1400px}.min-h-1400--force{min-height:1400px!important}.h-1500{height:1500px}.h-1500--force{height:1500px!important}.max-h-1500{max-height:1500px}.max-h-1500--force{max-height:1500px!important}.min-h-1500{min-height:1500px}.min-h-1500--force{min-height:1500px!important}.h-1600{height:1600px}.h-1600--force{height:1600px!important}.max-h-1600{max-height:1600px}.max-h-1600--force{max-height:1600px!important}.min-h-1600{min-height:1600px}.min-h-1600--force{min-height:1600px!important}.h-1700{height:1700px}.h-1700--force{height:1700px!important}.max-h-1700{max-height:1700px}.max-h-1700--force{max-height:1700px!important}.min-h-1700{min-height:1700px}.min-h-1700--force{min-height:1700px!important}.h-1800{height:1800px}.h-1800--force{height:1800px!important}.max-h-1800{max-height:1800px}.max-h-1800--force{max-height:1800px!important}.min-h-1800{min-height:1800px}.min-h-1800--force{min-height:1800px!important}.h-1900{height:1900px}.h-1900--force{height:1900px!important}.max-h-1900{max-height:1900px}.max-h-1900--force{max-height:1900px!important}.min-h-1900{min-height:1900px}.min-h-1900--force{min-height:1900px!important}.h-2000{height:2000px}.h-2000--force{height:2000px!important}.max-h-2000{max-height:2000px}.max-h-2000--force{max-height:2000px!important}.min-h-2000{min-height:2000px}.min-h-2000--force{min-height:2000px!important}.h-auto{height:auto}.h-auto--force{height:auto!important}.w-0{width:0}.w-0--force{width:0!important}.max-w-0{max-width:0}.max-w-0--force{max-width:0!important}.min-w-0{min-width:0}.min-w-0--force{min-width:0!important}.w-4{width:4px}.w-4--force{width:4px!important}.max-w-4{max-width:4px}.max-w-4--force{max-width:4px!important}.min-w-4{min-width:4px}.min-w-4--force{min-width:4px!important}.w-8{width:8px}.w-8--force{width:8px!important}.max-w-8{max-width:8px}.max-w-8--force{max-width:8px!important}.min-w-8{min-width:8px}.min-w-8--force{min-width:8px!important}.w-12{width:12px}.w-12--force{width:12px!important}.max-w-12{max-width:12px}.max-w-12--force{max-width:12px!important}.min-w-12{min-width:12px}.min-w-12--force{min-width:12px!important}.w-16{width:16px}.w-16--force{width:16px!important}.max-w-16{max-width:16px}.max-w-16--force{max-width:16px!important}.min-w-16{min-width:16px}.min-w-16--force{min-width:16px!important}.w-20{width:20px}.w-20--force{width:20px!important}.max-w-20{max-width:20px}.max-w-20--force{max-width:20px!important}.min-w-20{min-width:20px}.min-w-20--force{min-width:20px!important}.w-24{width:24px}.w-24--force{width:24px!important}.max-w-24{max-width:24px}.max-w-24--force{max-width:24px!important}.min-w-24{min-width:24px}.min-w-24--force{min-width:24px!important}.w-28{width:28px}.w-28--force{width:28px!important}.max-w-28{max-width:28px}.max-w-28--force{max-width:28px!important}.min-w-28{min-width:28px}.min-w-28--force{min-width:28px!important}.w-32{width:32px}.w-32--force{width:32px!important}.max-w-32{max-width:32px}.max-w-32--force{max-width:32px!important}.min-w-32{min-width:32px}.min-w-32--force{min-width:32px!important}.w-36{width:36px}.w-36--force{width:36px!important}.max-w-36{max-width:36px}.max-w-36--force{max-width:36px!important}.min-w-36{min-width:36px}.min-w-36--force{min-width:36px!important}.w-40{width:40px}.w-40--force{width:40px!important}.max-w-40{max-width:40px}.max-w-40--force{max-width:40px!important}.min-w-40{min-width:40px}.min-w-40--force{min-width:40px!important}.w-44{width:44px}.w-44--force{width:44px!important}.max-w-44{max-width:44px}.max-w-44--force{max-width:44px!important}.min-w-44{min-width:44px}.min-w-44--force{min-width:44px!important}.w-48{width:48px}.w-48--force{width:48px!important}.max-w-48{max-width:48px}.max-w-48--force{max-width:48px!important}.min-w-48{min-width:48px}.min-w-48--force{min-width:48px!important}.w-52{width:52px}.w-52--force{width:52px!important}.max-w-52{max-width:52px}.max-w-52--force{max-width:52px!important}.min-w-52{min-width:52px}.min-w-52--force{min-width:52px!important}.w-56{width:56px}.w-56--force{width:56px!important}.max-w-56{max-width:56px}.max-w-56--force{max-width:56px!important}.min-w-56{min-width:56px}.min-w-56--force{min-width:56px!important}.w-60{width:60px}.w-60--force{width:60px!important}.max-w-60{max-width:60px}.max-w-60--force{max-width:60px!important}.min-w-60{min-width:60px}.min-w-60--force{min-width:60px!important}.w-64{width:64px}.w-64--force{width:64px!important}.max-w-64{max-width:64px}.max-w-64--force{max-width:64px!important}.min-w-64{min-width:64px}.min-w-64--force{min-width:64px!important}.w-68{width:68px}.w-68--force{width:68px!important}.max-w-68{max-width:68px}.max-w-68--force{max-width:68px!important}.min-w-68{min-width:68px}.min-w-68--force{min-width:68px!important}.w-72{width:72px}.w-72--force{width:72px!important}.max-w-72{max-width:72px}.max-w-72--force{max-width:72px!important}.min-w-72{min-width:72px}.min-w-72--force{min-width:72px!important}.w-76{width:76px}.w-76--force{width:76px!important}.max-w-76{max-width:76px}.max-w-76--force{max-width:76px!important}.min-w-76{min-width:76px}.min-w-76--force{min-width:76px!important}.w-80{width:80px}.w-80--force{width:80px!important}.max-w-80{max-width:80px}.max-w-80--force{max-width:80px!important}.min-w-80{min-width:80px}.min-w-80--force{min-width:80px!important}.w-84{width:84px}.w-84--force{width:84px!important}.max-w-84{max-width:84px}.max-w-84--force{max-width:84px!important}.min-w-84{min-width:84px}.min-w-84--force{min-width:84px!important}.w-88{width:88px}.w-88--force{width:88px!important}.max-w-88{max-width:88px}.max-w-88--force{max-width:88px!important}.min-w-88{min-width:88px}.min-w-88--force{min-width:88px!important}.w-92{width:92px}.w-92--force{width:92px!important}.max-w-92{max-width:92px}.max-w-92--force{max-width:92px!important}.min-w-92{min-width:92px}.min-w-92--force{min-width:92px!important}.w-96{width:96px}.w-96--force{width:96px!important}.max-w-96{max-width:96px}.max-w-96--force{max-width:96px!important}.min-w-96{min-width:96px}.min-w-96--force{min-width:96px!important}.w-100{width:100px}.w-100--force{width:100px!important}.max-w-100{max-width:100px}.max-w-100--force{max-width:100px!important}.min-w-100{min-width:100px}.min-w-100--force{min-width:100px!important}.w-104{width:104px}.w-104--force{width:104px!important}.max-w-104{max-width:104px}.max-w-104--force{max-width:104px!important}.min-w-104{min-width:104px}.min-w-104--force{min-width:104px!important}.w-108{width:108px}.w-108--force{width:108px!important}.max-w-108{max-width:108px}.max-w-108--force{max-width:108px!important}.min-w-108{min-width:108px}.min-w-108--force{min-width:108px!important}.w-112{width:112px}.w-112--force{width:112px!important}.max-w-112{max-width:112px}.max-w-112--force{max-width:112px!important}.min-w-112{min-width:112px}.min-w-112--force{min-width:112px!important}.w-116{width:116px}.w-116--force{width:116px!important}.max-w-116{max-width:116px}.max-w-116--force{max-width:116px!important}.min-w-116{min-width:116px}.min-w-116--force{min-width:116px!important}.w-120{width:120px}.w-120--force{width:120px!important}.max-w-120{max-width:120px}.max-w-120--force{max-width:120px!important}.min-w-120{min-width:120px}.min-w-120--force{min-width:120px!important}.w-124{width:124px}.w-124--force{width:124px!important}.max-w-124{max-width:124px}.max-w-124--force{max-width:124px!important}.min-w-124{min-width:124px}.min-w-124--force{min-width:124px!important}.w-128{width:128px}.w-128--force{width:128px!important}.max-w-128{max-width:128px}.max-w-128--force{max-width:128px!important}.min-w-128{min-width:128px}.min-w-128--force{min-width:128px!important}.w-132{width:132px}.w-132--force{width:132px!important}.max-w-132{max-width:132px}.max-w-132--force{max-width:132px!important}.min-w-132{min-width:132px}.min-w-132--force{min-width:132px!important}.w-136{width:136px}.w-136--force{width:136px!important}.max-w-136{max-width:136px}.max-w-136--force{max-width:136px!important}.min-w-136{min-width:136px}.min-w-136--force{min-width:136px!important}.w-140{width:140px}.w-140--force{width:140px!important}.max-w-140{max-width:140px}.max-w-140--force{max-width:140px!important}.min-w-140{min-width:140px}.min-w-140--force{min-width:140px!important}.w-144{width:144px}.w-144--force{width:144px!important}.max-w-144{max-width:144px}.max-w-144--force{max-width:144px!important}.min-w-144{min-width:144px}.min-w-144--force{min-width:144px!important}.w-148{width:148px}.w-148--force{width:148px!important}.max-w-148{max-width:148px}.max-w-148--force{max-width:148px!important}.min-w-148{min-width:148px}.min-w-148--force{min-width:148px!important}.w-152{width:152px}.w-152--force{width:152px!important}.max-w-152{max-width:152px}.max-w-152--force{max-width:152px!important}.min-w-152{min-width:152px}.min-w-152--force{min-width:152px!important}.w-156{width:156px}.w-156--force{width:156px!important}.max-w-156{max-width:156px}.max-w-156--force{max-width:156px!important}.min-w-156{min-width:156px}.min-w-156--force{min-width:156px!important}.w-160{width:160px}.w-160--force{width:160px!important}.max-w-160{max-width:160px}.max-w-160--force{max-width:160px!important}.min-w-160{min-width:160px}.min-w-160--force{min-width:160px!important}.w-164{width:164px}.w-164--force{width:164px!important}.max-w-164{max-width:164px}.max-w-164--force{max-width:164px!important}.min-w-164{min-width:164px}.min-w-164--force{min-width:164px!important}.w-168{width:168px}.w-168--force{width:168px!important}.max-w-168{max-width:168px}.max-w-168--force{max-width:168px!important}.min-w-168{min-width:168px}.min-w-168--force{min-width:168px!important}.w-172{width:172px}.w-172--force{width:172px!important}.max-w-172{max-width:172px}.max-w-172--force{max-width:172px!important}.min-w-172{min-width:172px}.min-w-172--force{min-width:172px!important}.w-176{width:176px}.w-176--force{width:176px!important}.max-w-176{max-width:176px}.max-w-176--force{max-width:176px!important}.min-w-176{min-width:176px}.min-w-176--force{min-width:176px!important}.w-180{width:180px}.w-180--force{width:180px!important}.max-w-180{max-width:180px}.max-w-180--force{max-width:180px!important}.min-w-180{min-width:180px}.min-w-180--force{min-width:180px!important}.w-184{width:184px}.w-184--force{width:184px!important}.max-w-184{max-width:184px}.max-w-184--force{max-width:184px!important}.min-w-184{min-width:184px}.min-w-184--force{min-width:184px!important}.w-188{width:188px}.w-188--force{width:188px!important}.max-w-188{max-width:188px}.max-w-188--force{max-width:188px!important}.min-w-188{min-width:188px}.min-w-188--force{min-width:188px!important}.w-192{width:192px}.w-192--force{width:192px!important}.max-w-192{max-width:192px}.max-w-192--force{max-width:192px!important}.min-w-192{min-width:192px}.min-w-192--force{min-width:192px!important}.w-196{width:196px}.w-196--force{width:196px!important}.max-w-196{max-width:196px}.max-w-196--force{max-width:196px!important}.min-w-196{min-width:196px}.min-w-196--force{min-width:196px!important}.w-200{width:200px}.w-200--force{width:200px!important}.max-w-200{max-width:200px}.max-w-200--force{max-width:200px!important}.min-w-200{min-width:200px}.min-w-200--force{min-width:200px!important}.w-204{width:204px}.w-204--force{width:204px!important}.max-w-204{max-width:204px}.max-w-204--force{max-width:204px!important}.min-w-204{min-width:204px}.min-w-204--force{min-width:204px!important}.w-208{width:208px}.w-208--force{width:208px!important}.max-w-208{max-width:208px}.max-w-208--force{max-width:208px!important}.min-w-208{min-width:208px}.min-w-208--force{min-width:208px!important}.w-212{width:212px}.w-212--force{width:212px!important}.max-w-212{max-width:212px}.max-w-212--force{max-width:212px!important}.min-w-212{min-width:212px}.min-w-212--force{min-width:212px!important}.w-216{width:216px}.w-216--force{width:216px!important}.max-w-216{max-width:216px}.max-w-216--force{max-width:216px!important}.min-w-216{min-width:216px}.min-w-216--force{min-width:216px!important}.w-220{width:220px}.w-220--force{width:220px!important}.max-w-220{max-width:220px}.max-w-220--force{max-width:220px!important}.min-w-220{min-width:220px}.min-w-220--force{min-width:220px!important}.w-224{width:224px}.w-224--force{width:224px!important}.max-w-224{max-width:224px}.max-w-224--force{max-width:224px!important}.min-w-224{min-width:224px}.min-w-224--force{min-width:224px!important}.w-228{width:228px}.w-228--force{width:228px!important}.max-w-228{max-width:228px}.max-w-228--force{max-width:228px!important}.min-w-228{min-width:228px}.min-w-228--force{min-width:228px!important}.w-232{width:232px}.w-232--force{width:232px!important}.max-w-232{max-width:232px}.max-w-232--force{max-width:232px!important}.min-w-232{min-width:232px}.min-w-232--force{min-width:232px!important}.w-236{width:236px}.w-236--force{width:236px!important}.max-w-236{max-width:236px}.max-w-236--force{max-width:236px!important}.min-w-236{min-width:236px}.min-w-236--force{min-width:236px!important}.w-240{width:240px}.w-240--force{width:240px!important}.max-w-240{max-width:240px}.max-w-240--force{max-width:240px!important}.min-w-240{min-width:240px}.min-w-240--force{min-width:240px!important}.w-244{width:244px}.w-244--force{width:244px!important}.max-w-244{max-width:244px}.max-w-244--force{max-width:244px!important}.min-w-244{min-width:244px}.min-w-244--force{min-width:244px!important}.w-248{width:248px}.w-248--force{width:248px!important}.max-w-248{max-width:248px}.max-w-248--force{max-width:248px!important}.min-w-248{min-width:248px}.min-w-248--force{min-width:248px!important}.w-252{width:252px}.w-252--force{width:252px!important}.max-w-252{max-width:252px}.max-w-252--force{max-width:252px!important}.min-w-252{min-width:252px}.min-w-252--force{min-width:252px!important}.w-256{width:256px}.w-256--force{width:256px!important}.max-w-256{max-width:256px}.max-w-256--force{max-width:256px!important}.min-w-256{min-width:256px}.min-w-256--force{min-width:256px!important}.w-0-p{width:0%}.w-0-p--force{width:0%!important}.max-w-0-p{max-width:0%}.max-w-0-p--force{max-width:0%!important}.min-w-0-p{min-width:0}.min-w-0-p--force{min-width:0!important}.w-5-p{width:5%}.w-5-p--force{width:5%!important}.max-w-5-p{max-width:5%}.max-w-5-p--force{max-width:5%!important}.min-w-5-p{min-width:5%}.min-w-5-p--force{min-width:5%!important}.w-10-p{width:10%}.w-10-p--force{width:10%!important}.max-w-10-p{max-width:10%}.max-w-10-p--force{max-width:10%!important}.min-w-10-p{min-width:10%}.min-w-10-p--force{min-width:10%!important}.w-15-p{width:15%}.w-15-p--force{width:15%!important}.max-w-15-p{max-width:15%}.max-w-15-p--force{max-width:15%!important}.min-w-15-p{min-width:15%}.min-w-15-p--force{min-width:15%!important}.w-20-p{width:20%}.w-20-p--force{width:20%!important}.max-w-20-p{max-width:20%}.max-w-20-p--force{max-width:20%!important}.min-w-20-p{min-width:20%}.min-w-20-p--force{min-width:20%!important}.w-25-p{width:25%}.w-25-p--force{width:25%!important}.max-w-25-p{max-width:25%}.max-w-25-p--force{max-width:25%!important}.min-w-25-p{min-width:25%}.min-w-25-p--force{min-width:25%!important}.w-30-p{width:30%}.w-30-p--force{width:30%!important}.max-w-30-p{max-width:30%}.max-w-30-p--force{max-width:30%!important}.min-w-30-p{min-width:30%}.min-w-30-p--force{min-width:30%!important}.w-35-p{width:35%}.w-35-p--force{width:35%!important}.max-w-35-p{max-width:35%}.max-w-35-p--force{max-width:35%!important}.min-w-35-p{min-width:35%}.min-w-35-p--force{min-width:35%!important}.w-40-p{width:40%}.w-40-p--force{width:40%!important}.max-w-40-p{max-width:40%}.max-w-40-p--force{max-width:40%!important}.min-w-40-p{min-width:40%}.min-w-40-p--force{min-width:40%!important}.w-45-p{width:45%}.w-45-p--force{width:45%!important}.max-w-45-p{max-width:45%}.max-w-45-p--force{max-width:45%!important}.min-w-45-p{min-width:45%}.min-w-45-p--force{min-width:45%!important}.w-50-p{width:50%}.w-50-p--force{width:50%!important}.max-w-50-p{max-width:50%}.max-w-50-p--force{max-width:50%!important}.min-w-50-p{min-width:50%}.min-w-50-p--force{min-width:50%!important}.w-55-p{width:55%}.w-55-p--force{width:55%!important}.max-w-55-p{max-width:55%}.max-w-55-p--force{max-width:55%!important}.min-w-55-p{min-width:55%}.min-w-55-p--force{min-width:55%!important}.w-60-p{width:60%}.w-60-p--force{width:60%!important}.max-w-60-p{max-width:60%}.max-w-60-p--force{max-width:60%!important}.min-w-60-p{min-width:60%}.min-w-60-p--force{min-width:60%!important}.w-65-p{width:65%}.w-65-p--force{width:65%!important}.max-w-65-p{max-width:65%}.max-w-65-p--force{max-width:65%!important}.min-w-65-p{min-width:65%}.min-w-65-p--force{min-width:65%!important}.w-70-p{width:70%}.w-70-p--force{width:70%!important}.max-w-70-p{max-width:70%}.max-w-70-p--force{max-width:70%!important}.min-w-70-p{min-width:70%}.min-w-70-p--force{min-width:70%!important}.w-75-p{width:75%}.w-75-p--force{width:75%!important}.max-w-75-p{max-width:75%}.max-w-75-p--force{max-width:75%!important}.min-w-75-p{min-width:75%}.min-w-75-p--force{min-width:75%!important}.w-80-p{width:80%}.w-80-p--force{width:80%!important}.max-w-80-p{max-width:80%}.max-w-80-p--force{max-width:80%!important}.min-w-80-p{min-width:80%}.min-w-80-p--force{min-width:80%!important}.w-85-p{width:85%}.w-85-p--force{width:85%!important}.max-w-85-p{max-width:85%}.max-w-85-p--force{max-width:85%!important}.min-w-85-p{min-width:85%}.min-w-85-p--force{min-width:85%!important}.w-90-p{width:90%}.w-90-p--force{width:90%!important}.max-w-90-p{max-width:90%}.max-w-90-p--force{max-width:90%!important}.min-w-90-p{min-width:90%}.min-w-90-p--force{min-width:90%!important}.w-95-p{width:95%}.w-95-p--force{width:95%!important}.max-w-95-p{max-width:95%}.max-w-95-p--force{max-width:95%!important}.min-w-95-p{min-width:95%}.min-w-95-p--force{min-width:95%!important}.w-100-p{width:100%}.w-100-p--force{width:100%!important}.max-w-100-p{max-width:100%}.max-w-100-p--force{max-width:100%!important}.min-w-100-p{min-width:100%}.min-w-100-p--force{min-width:100%!important}.w-300{width:300px}.w-300--force{width:300px!important}.max-w-300{max-width:300px}.max-w-300--force{max-width:300px!important}.min-w-300{min-width:300px}.min-w-300--force{min-width:300px!important}.w-400{width:400px}.w-400--force{width:400px!important}.max-w-400{max-width:400px}.max-w-400--force{max-width:400px!important}.min-w-400{min-width:400px}.min-w-400--force{min-width:400px!important}.w-500{width:500px}.w-500--force{width:500px!important}.max-w-500{max-width:500px}.max-w-500--force{max-width:500px!important}.min-w-500{min-width:500px}.min-w-500--force{min-width:500px!important}.w-600{width:600px}.w-600--force{width:600px!important}.max-w-600{max-width:600px}.max-w-600--force{max-width:600px!important}.min-w-600{min-width:600px}.min-w-600--force{min-width:600px!important}.w-700{width:700px}.w-700--force{width:700px!important}.max-w-700{max-width:700px}.max-w-700--force{max-width:700px!important}.min-w-700{min-width:700px}.min-w-700--force{min-width:700px!important}.w-800{width:800px}.w-800--force{width:800px!important}.max-w-800{max-width:800px}.max-w-800--force{max-width:800px!important}.min-w-800{min-width:800px}.min-w-800--force{min-width:800px!important}.w-900{width:900px}.w-900--force{width:900px!important}.max-w-900{max-width:900px}.max-w-900--force{max-width:900px!important}.min-w-900{min-width:900px}.min-w-900--force{min-width:900px!important}.w-1000{width:1000px}.w-1000--force{width:1000px!important}.max-w-1000{max-width:1000px}.max-w-1000--force{max-width:1000px!important}.min-w-1000{min-width:1000px}.min-w-1000--force{min-width:1000px!important}.w-1100{width:1100px}.w-1100--force{width:1100px!important}.max-w-1100{max-width:1100px}.max-w-1100--force{max-width:1100px!important}.min-w-1100{min-width:1100px}.min-w-1100--force{min-width:1100px!important}.w-1200{width:1200px}.w-1200--force{width:1200px!important}.max-w-1200{max-width:1200px}.max-w-1200--force{max-width:1200px!important}.min-w-1200{min-width:1200px}.min-w-1200--force{min-width:1200px!important}.w-1300{width:1300px}.w-1300--force{width:1300px!important}.max-w-1300{max-width:1300px}.max-w-1300--force{max-width:1300px!important}.min-w-1300{min-width:1300px}.min-w-1300--force{min-width:1300px!important}.w-1400{width:1400px}.w-1400--force{width:1400px!important}.max-w-1400{max-width:1400px}.max-w-1400--force{max-width:1400px!important}.min-w-1400{min-width:1400px}.min-w-1400--force{min-width:1400px!important}.w-1500{width:1500px}.w-1500--force{width:1500px!important}.max-w-1500{max-width:1500px}.max-w-1500--force{max-width:1500px!important}.min-w-1500{min-width:1500px}.min-w-1500--force{min-width:1500px!important}.w-1600{width:1600px}.w-1600--force{width:1600px!important}.max-w-1600{max-width:1600px}.max-w-1600--force{max-width:1600px!important}.min-w-1600{min-width:1600px}.min-w-1600--force{min-width:1600px!important}.w-1700{width:1700px}.w-1700--force{width:1700px!important}.max-w-1700{max-width:1700px}.max-w-1700--force{max-width:1700px!important}.min-w-1700{min-width:1700px}.min-w-1700--force{min-width:1700px!important}.w-1800{width:1800px}.w-1800--force{width:1800px!important}.max-w-1800{max-width:1800px}.max-w-1800--force{max-width:1800px!important}.min-w-1800{min-width:1800px}.min-w-1800--force{min-width:1800px!important}.w-1900{width:1900px}.w-1900--force{width:1900px!important}.max-w-1900{max-width:1900px}.max-w-1900--force{max-width:1900px!important}.min-w-1900{min-width:1900px}.min-w-1900--force{min-width:1900px!important}.w-2000{width:2000px}.w-2000--force{width:2000px!important}.max-w-2000{max-width:2000px}.max-w-2000--force{max-width:2000px!important}.min-w-2000{min-width:2000px}.min-w-2000--force{min-width:2000px!important}.w-auto{width:auto}.w-auto--force{width:auto!important}.m--64{margin:-64px}.m--64--force{margin:-64px!important}.mx--64{margin-right:-64px;margin-left:-64px}.mx--64--force{margin-right:-64px!important;margin-left:-64px!important}.my--64{margin-top:-64px;margin-bottom:-64px}.my--64--force{margin-top:-64px!important;margin-bottom:-64px!important}.mt--64{margin-top:-64px}.mt--64--force{margin-top:-64px!important}.mr--64{margin-right:-64px}.mr--64--force{margin-right:-64px!important}.mb--64{margin-bottom:-64px}.mb--64--force{margin-bottom:-64px!important}.ml--64{margin-left:-64px}.ml--64--force{margin-left:-64px!important}.m--60{margin:-60px}.m--60--force{margin:-60px!important}.mx--60{margin-right:-60px;margin-left:-60px}.mx--60--force{margin-right:-60px!important;margin-left:-60px!important}.my--60{margin-top:-60px;margin-bottom:-60px}.my--60--force{margin-top:-60px!important;margin-bottom:-60px!important}.mt--60{margin-top:-60px}.mt--60--force{margin-top:-60px!important}.mr--60{margin-right:-60px}.mr--60--force{margin-right:-60px!important}.mb--60{margin-bottom:-60px}.mb--60--force{margin-bottom:-60px!important}.ml--60{margin-left:-60px}.ml--60--force{margin-left:-60px!important}.m--56{margin:-56px}.m--56--force{margin:-56px!important}.mx--56{margin-right:-56px;margin-left:-56px}.mx--56--force{margin-right:-56px!important;margin-left:-56px!important}.my--56{margin-top:-56px;margin-bottom:-56px}.my--56--force{margin-top:-56px!important;margin-bottom:-56px!important}.mt--56{margin-top:-56px}.mt--56--force{margin-top:-56px!important}.mr--56{margin-right:-56px}.mr--56--force{margin-right:-56px!important}.mb--56{margin-bottom:-56px}.mb--56--force{margin-bottom:-56px!important}.ml--56{margin-left:-56px}.ml--56--force{margin-left:-56px!important}.m--52{margin:-52px}.m--52--force{margin:-52px!important}.mx--52{margin-right:-52px;margin-left:-52px}.mx--52--force{margin-right:-52px!important;margin-left:-52px!important}.my--52{margin-top:-52px;margin-bottom:-52px}.my--52--force{margin-top:-52px!important;margin-bottom:-52px!important}.mt--52{margin-top:-52px}.mt--52--force{margin-top:-52px!important}.mr--52{margin-right:-52px}.mr--52--force{margin-right:-52px!important}.mb--52{margin-bottom:-52px}.mb--52--force{margin-bottom:-52px!important}.ml--52{margin-left:-52px}.ml--52--force{margin-left:-52px!important}.m--48{margin:-48px}.m--48--force{margin:-48px!important}.mx--48{margin-right:-48px;margin-left:-48px}.mx--48--force{margin-right:-48px!important;margin-left:-48px!important}.my--48{margin-top:-48px;margin-bottom:-48px}.my--48--force{margin-top:-48px!important;margin-bottom:-48px!important}.mt--48{margin-top:-48px}.mt--48--force{margin-top:-48px!important}.mr--48{margin-right:-48px}.mr--48--force{margin-right:-48px!important}.mb--48{margin-bottom:-48px}.mb--48--force{margin-bottom:-48px!important}.ml--48{margin-left:-48px}.ml--48--force{margin-left:-48px!important}.m--44{margin:-44px}.m--44--force{margin:-44px!important}.mx--44{margin-right:-44px;margin-left:-44px}.mx--44--force{margin-right:-44px!important;margin-left:-44px!important}.my--44{margin-top:-44px;margin-bottom:-44px}.my--44--force{margin-top:-44px!important;margin-bottom:-44px!important}.mt--44{margin-top:-44px}.mt--44--force{margin-top:-44px!important}.mr--44{margin-right:-44px}.mr--44--force{margin-right:-44px!important}.mb--44{margin-bottom:-44px}.mb--44--force{margin-bottom:-44px!important}.ml--44{margin-left:-44px}.ml--44--force{margin-left:-44px!important}.m--40{margin:-40px}.m--40--force{margin:-40px!important}.mx--40{margin-right:-40px;margin-left:-40px}.mx--40--force{margin-right:-40px!important;margin-left:-40px!important}.my--40{margin-top:-40px;margin-bottom:-40px}.my--40--force{margin-top:-40px!important;margin-bottom:-40px!important}.mt--40{margin-top:-40px}.mt--40--force{margin-top:-40px!important}.mr--40{margin-right:-40px}.mr--40--force{margin-right:-40px!important}.mb--40{margin-bottom:-40px}.mb--40--force{margin-bottom:-40px!important}.ml--40{margin-left:-40px}.ml--40--force{margin-left:-40px!important}.m--36{margin:-36px}.m--36--force{margin:-36px!important}.mx--36{margin-right:-36px;margin-left:-36px}.mx--36--force{margin-right:-36px!important;margin-left:-36px!important}.my--36{margin-top:-36px;margin-bottom:-36px}.my--36--force{margin-top:-36px!important;margin-bottom:-36px!important}.mt--36{margin-top:-36px}.mt--36--force{margin-top:-36px!important}.mr--36{margin-right:-36px}.mr--36--force{margin-right:-36px!important}.mb--36{margin-bottom:-36px}.mb--36--force{margin-bottom:-36px!important}.ml--36{margin-left:-36px}.ml--36--force{margin-left:-36px!important}.m--32{margin:-32px}.m--32--force{margin:-32px!important}.mx--32{margin-right:-32px;margin-left:-32px}.mx--32--force{margin-right:-32px!important;margin-left:-32px!important}.my--32{margin-top:-32px;margin-bottom:-32px}.my--32--force{margin-top:-32px!important;margin-bottom:-32px!important}.mt--32{margin-top:-32px}.mt--32--force{margin-top:-32px!important}.mr--32{margin-right:-32px}.mr--32--force{margin-right:-32px!important}.mb--32{margin-bottom:-32px}.mb--32--force{margin-bottom:-32px!important}.ml--32{margin-left:-32px}.ml--32--force{margin-left:-32px!important}.m--28{margin:-28px}.m--28--force{margin:-28px!important}.mx--28{margin-right:-28px;margin-left:-28px}.mx--28--force{margin-right:-28px!important;margin-left:-28px!important}.my--28{margin-top:-28px;margin-bottom:-28px}.my--28--force{margin-top:-28px!important;margin-bottom:-28px!important}.mt--28{margin-top:-28px}.mt--28--force{margin-top:-28px!important}.mr--28{margin-right:-28px}.mr--28--force{margin-right:-28px!important}.mb--28{margin-bottom:-28px}.mb--28--force{margin-bottom:-28px!important}.ml--28{margin-left:-28px}.ml--28--force{margin-left:-28px!important}.m--24{margin:-24px}.m--24--force{margin:-24px!important}.mx--24{margin-right:-24px;margin-left:-24px}.mx--24--force{margin-right:-24px!important;margin-left:-24px!important}.my--24{margin-top:-24px;margin-bottom:-24px}.my--24--force{margin-top:-24px!important;margin-bottom:-24px!important}.mt--24{margin-top:-24px}.mt--24--force{margin-top:-24px!important}.mr--24{margin-right:-24px}.mr--24--force{margin-right:-24px!important}.mb--24{margin-bottom:-24px}.mb--24--force{margin-bottom:-24px!important}.ml--24{margin-left:-24px}.ml--24--force{margin-left:-24px!important}.m--20{margin:-20px}.m--20--force{margin:-20px!important}.mx--20{margin-right:-20px;margin-left:-20px}.mx--20--force{margin-right:-20px!important;margin-left:-20px!important}.my--20{margin-top:-20px;margin-bottom:-20px}.my--20--force{margin-top:-20px!important;margin-bottom:-20px!important}.mt--20{margin-top:-20px}.mt--20--force{margin-top:-20px!important}.mr--20{margin-right:-20px}.mr--20--force{margin-right:-20px!important}.mb--20{margin-bottom:-20px}.mb--20--force{margin-bottom:-20px!important}.ml--20{margin-left:-20px}.ml--20--force{margin-left:-20px!important}.m--16{margin:-16px}.m--16--force{margin:-16px!important}.mx--16{margin-right:-16px;margin-left:-16px}.mx--16--force{margin-right:-16px!important;margin-left:-16px!important}.my--16{margin-top:-16px;margin-bottom:-16px}.my--16--force{margin-top:-16px!important;margin-bottom:-16px!important}.mt--16{margin-top:-16px}.mt--16--force{margin-top:-16px!important}.mr--16{margin-right:-16px}.mr--16--force{margin-right:-16px!important}.mb--16{margin-bottom:-16px}.mb--16--force{margin-bottom:-16px!important}.ml--16{margin-left:-16px}.ml--16--force{margin-left:-16px!important}.m--12{margin:-12px}.m--12--force{margin:-12px!important}.mx--12{margin-right:-12px;margin-left:-12px}.mx--12--force{margin-right:-12px!important;margin-left:-12px!important}.my--12{margin-top:-12px;margin-bottom:-12px}.my--12--force{margin-top:-12px!important;margin-bottom:-12px!important}.mt--12{margin-top:-12px}.mt--12--force{margin-top:-12px!important}.mr--12{margin-right:-12px}.mr--12--force{margin-right:-12px!important}.mb--12{margin-bottom:-12px}.mb--12--force{margin-bottom:-12px!important}.ml--12{margin-left:-12px}.ml--12--force{margin-left:-12px!important}.m--8{margin:-8px}.m--8--force{margin:-8px!important}.mx--8{margin-right:-8px;margin-left:-8px}.mx--8--force{margin-right:-8px!important;margin-left:-8px!important}.my--8{margin-top:-8px;margin-bottom:-8px}.my--8--force{margin-top:-8px!important;margin-bottom:-8px!important}.mt--8{margin-top:-8px}.mt--8--force{margin-top:-8px!important}.mr--8{margin-right:-8px}.mr--8--force{margin-right:-8px!important}.mb--8{margin-bottom:-8px}.mb--8--force{margin-bottom:-8px!important}.ml--8{margin-left:-8px}.ml--8--force{margin-left:-8px!important}.m--4{margin:-4px}.m--4--force{margin:-4px!important}.mx--4{margin-right:-4px;margin-left:-4px}.mx--4--force{margin-right:-4px!important;margin-left:-4px!important}.my--4{margin-top:-4px;margin-bottom:-4px}.my--4--force{margin-top:-4px!important;margin-bottom:-4px!important}.mt--4{margin-top:-4px}.mt--4--force{margin-top:-4px!important}.mr--4{margin-right:-4px}.mr--4--force{margin-right:-4px!important}.mb--4{margin-bottom:-4px}.mb--4--force{margin-bottom:-4px!important}.ml--4{margin-left:-4px}.ml--4--force{margin-left:-4px!important}.m-0{margin:0}.m-0--force{margin:0!important}.mx-0{margin-right:0;margin-left:0}.mx-0--force{margin-right:0!important;margin-left:0!important}.my-0{margin-top:0;margin-bottom:0}.my-0--force{margin-top:0!important;margin-bottom:0!important}.mt-0{margin-top:0}.mt-0--force{margin-top:0!important}.mr-0{margin-right:0}.mr-0--force{margin-right:0!important}.masonry-gap-0>*,.mb-0{margin-bottom:0}.mb-0--force{margin-bottom:0!important}.ml-0{margin-left:0}.ml-0--force{margin-left:0!important}.m-4{margin:4px}.m-4--force{margin:4px!important}.mx-4{margin-right:4px;margin-left:4px}.mx-4--force{margin-right:4px!important;margin-left:4px!important}.my-4{margin-top:4px;margin-bottom:4px}.my-4--force{margin-top:4px!important;margin-bottom:4px!important}.mt-4{margin-top:4px}.mt-4--force{margin-top:4px!important}.mr-4{margin-right:4px}.mr-4--force{margin-right:4px!important}.masonry-gap-4>*,.mb-4{margin-bottom:4px}.mb-4--force{margin-bottom:4px!important}.ml-4{margin-left:4px}.ml-4--force{margin-left:4px!important}.m-8{margin:8px}.m-8--force{margin:8px!important}.mx-8{margin-right:8px;margin-left:8px}.mx-8--force{margin-right:8px!important;margin-left:8px!important}.my-8{margin-top:8px;margin-bottom:8px}.my-8--force{margin-top:8px!important;margin-bottom:8px!important}.mt-8{margin-top:8px}.mt-8--force{margin-top:8px!important}.mr-8{margin-right:8px}.mr-8--force{margin-right:8px!important}.masonry-gap-8>*,.mb-8{margin-bottom:8px}.mb-8--force{margin-bottom:8px!important}.ml-8{margin-left:8px}.ml-8--force{margin-left:8px!important}.m-12{margin:12px}.m-12--force{margin:12px!important}.mx-12{margin-right:12px;margin-left:12px}.mx-12--force{margin-right:12px!important;margin-left:12px!important}.my-12{margin-top:12px;margin-bottom:12px}.my-12--force{margin-top:12px!important;margin-bottom:12px!important}.mt-12{margin-top:12px}.mt-12--force{margin-top:12px!important}.mr-12{margin-right:12px}.mr-12--force{margin-right:12px!important}.masonry-gap-12>*,.mb-12{margin-bottom:12px}.mb-12--force{margin-bottom:12px!important}.ml-12{margin-left:12px}.ml-12--force{margin-left:12px!important}.m-16{margin:16px}.m-16--force{margin:16px!important}.mx-16{margin-right:16px;margin-left:16px}.mx-16--force{margin-right:16px!important;margin-left:16px!important}.my-16{margin-top:16px;margin-bottom:16px}.my-16--force{margin-top:16px!important;margin-bottom:16px!important}.mt-16{margin-top:16px}.mt-16--force{margin-top:16px!important}.mr-16{margin-right:16px}.mr-16--force{margin-right:16px!important}.masonry-gap-16>*,.mb-16{margin-bottom:16px}.mb-16--force{margin-bottom:16px!important}.ml-16{margin-left:16px}.ml-16--force{margin-left:16px!important}.m-20{margin:20px}.m-20--force{margin:20px!important}.mx-20{margin-right:20px;margin-left:20px}.mx-20--force{margin-right:20px!important;margin-left:20px!important}.my-20{margin-top:20px;margin-bottom:20px}.my-20--force{margin-top:20px!important;margin-bottom:20px!important}.mt-20{margin-top:20px}.mt-20--force{margin-top:20px!important}.mr-20{margin-right:20px}.mr-20--force{margin-right:20px!important}.masonry-gap-20>*,.mb-20{margin-bottom:20px}.mb-20--force{margin-bottom:20px!important}.ml-20{margin-left:20px}.ml-20--force{margin-left:20px!important}.m-24{margin:24px}.m-24--force{margin:24px!important}.mx-24{margin-right:24px;margin-left:24px}.mx-24--force{margin-right:24px!important;margin-left:24px!important}.my-24{margin-top:24px;margin-bottom:24px}.my-24--force{margin-top:24px!important;margin-bottom:24px!important}.mt-24{margin-top:24px}.mt-24--force{margin-top:24px!important}.mr-24{margin-right:24px}.mr-24--force{margin-right:24px!important}.masonry-gap-24>*,.mb-24{margin-bottom:24px}.mb-24--force{margin-bottom:24px!important}.ml-24{margin-left:24px}.ml-24--force{margin-left:24px!important}.m-28{margin:28px}.m-28--force{margin:28px!important}.mx-28{margin-right:28px;margin-left:28px}.mx-28--force{margin-right:28px!important;margin-left:28px!important}.my-28{margin-top:28px;margin-bottom:28px}.my-28--force{margin-top:28px!important;margin-bottom:28px!important}.mt-28{margin-top:28px}.mt-28--force{margin-top:28px!important}.mr-28{margin-right:28px}.mr-28--force{margin-right:28px!important}.masonry-gap-28>*,.mb-28{margin-bottom:28px}.mb-28--force{margin-bottom:28px!important}.ml-28{margin-left:28px}.ml-28--force{margin-left:28px!important}.m-32{margin:32px}.m-32--force{margin:32px!important}.mx-32{margin-right:32px;margin-left:32px}.mx-32--force{margin-right:32px!important;margin-left:32px!important}.my-32{margin-top:32px;margin-bottom:32px}.my-32--force{margin-top:32px!important;margin-bottom:32px!important}.mt-32{margin-top:32px}.mt-32--force{margin-top:32px!important}.mr-32{margin-right:32px}.mr-32--force{margin-right:32px!important}.masonry-gap-32>*,.mb-32{margin-bottom:32px}.mb-32--force{margin-bottom:32px!important}.ml-32{margin-left:32px}.ml-32--force{margin-left:32px!important}.m-36{margin:36px}.m-36--force{margin:36px!important}.mx-36{margin-right:36px;margin-left:36px}.mx-36--force{margin-right:36px!important;margin-left:36px!important}.my-36{margin-top:36px;margin-bottom:36px}.my-36--force{margin-top:36px!important;margin-bottom:36px!important}.mt-36{margin-top:36px}.mt-36--force{margin-top:36px!important}.mr-36{margin-right:36px}.mr-36--force{margin-right:36px!important}.masonry-gap-36>*,.mb-36{margin-bottom:36px}.mb-36--force{margin-bottom:36px!important}.ml-36{margin-left:36px}.ml-36--force{margin-left:36px!important}.m-40{margin:40px}.m-40--force{margin:40px!important}.mx-40{margin-right:40px;margin-left:40px}.mx-40--force{margin-right:40px!important;margin-left:40px!important}.my-40{margin-top:40px;margin-bottom:40px}.my-40--force{margin-top:40px!important;margin-bottom:40px!important}.mt-40{margin-top:40px}.mt-40--force{margin-top:40px!important}.mr-40{margin-right:40px}.mr-40--force{margin-right:40px!important}.masonry-gap-40>*,.mb-40{margin-bottom:40px}.mb-40--force{margin-bottom:40px!important}.ml-40{margin-left:40px}.ml-40--force{margin-left:40px!important}.m-44{margin:44px}.m-44--force{margin:44px!important}.mx-44{margin-right:44px;margin-left:44px}.mx-44--force{margin-right:44px!important;margin-left:44px!important}.my-44{margin-top:44px;margin-bottom:44px}.my-44--force{margin-top:44px!important;margin-bottom:44px!important}.mt-44{margin-top:44px}.mt-44--force{margin-top:44px!important}.mr-44{margin-right:44px}.mr-44--force{margin-right:44px!important}.masonry-gap-44>*,.mb-44{margin-bottom:44px}.mb-44--force{margin-bottom:44px!important}.ml-44{margin-left:44px}.ml-44--force{margin-left:44px!important}.m-48{margin:48px}.m-48--force{margin:48px!important}.mx-48{margin-right:48px;margin-left:48px}.mx-48--force{margin-right:48px!important;margin-left:48px!important}.my-48{margin-top:48px;margin-bottom:48px}.my-48--force{margin-top:48px!important;margin-bottom:48px!important}.mt-48{margin-top:48px}.mt-48--force{margin-top:48px!important}.mr-48{margin-right:48px}.mr-48--force{margin-right:48px!important}.masonry-gap-48>*,.mb-48{margin-bottom:48px}.mb-48--force{margin-bottom:48px!important}.ml-48{margin-left:48px}.ml-48--force{margin-left:48px!important}.m-52{margin:52px}.m-52--force{margin:52px!important}.mx-52{margin-right:52px;margin-left:52px}.mx-52--force{margin-right:52px!important;margin-left:52px!important}.my-52{margin-top:52px;margin-bottom:52px}.my-52--force{margin-top:52px!important;margin-bottom:52px!important}.mt-52{margin-top:52px}.mt-52--force{margin-top:52px!important}.mr-52{margin-right:52px}.mr-52--force{margin-right:52px!important}.mb-52{margin-bottom:52px}.mb-52--force{margin-bottom:52px!important}.ml-52{margin-left:52px}.ml-52--force{margin-left:52px!important}.m-56{margin:56px}.m-56--force{margin:56px!important}.mx-56{margin-right:56px;margin-left:56px}.mx-56--force{margin-right:56px!important;margin-left:56px!important}.my-56{margin-top:56px;margin-bottom:56px}.my-56--force{margin-top:56px!important;margin-bottom:56px!important}.mt-56{margin-top:56px}.mt-56--force{margin-top:56px!important}.mr-56{margin-right:56px}.mr-56--force{margin-right:56px!important}.mb-56{margin-bottom:56px}.mb-56--force{margin-bottom:56px!important}.ml-56{margin-left:56px}.ml-56--force{margin-left:56px!important}.m-60{margin:60px}.m-60--force{margin:60px!important}.mx-60{margin-right:60px;margin-left:60px}.mx-60--force{margin-right:60px!important;margin-left:60px!important}.my-60{margin-top:60px;margin-bottom:60px}.my-60--force{margin-top:60px!important;margin-bottom:60px!important}.mt-60{margin-top:60px}.mt-60--force{margin-top:60px!important}.mr-60{margin-right:60px}.mr-60--force{margin-right:60px!important}.mb-60{margin-bottom:60px}.mb-60--force{margin-bottom:60px!important}.ml-60{margin-left:60px}.ml-60--force{margin-left:60px!important}.m-64{margin:64px}.m-64--force{margin:64px!important}.mx-64{margin-right:64px;margin-left:64px}.mx-64--force{margin-right:64px!important;margin-left:64px!important}.my-64{margin-top:64px;margin-bottom:64px}.my-64--force{margin-top:64px!important;margin-bottom:64px!important}.mt-64{margin-top:64px}.mt-64--force{margin-top:64px!important}.mr-64{margin-right:64px}.mr-64--force{margin-right:64px!important}.mb-64{margin-bottom:64px}.mb-64--force{margin-bottom:64px!important}.ml-64{margin-left:64px}.ml-64--force{margin-left:64px!important}.m-auto{margin:auto}.m-auto--force{margin:auto!important}.mt-auto{margin-top:auto}.mt-auto--force{margin-top:auto!important}.mr-auto{margin-right:auto}.mr-auto--force{margin-right:auto!important}.mb-auto{margin-bottom:auto}.mb-auto--force{margin-bottom:auto!important}.ml-auto{margin-left:auto}.ml-auto--force{margin-left:auto!important}.mx-auto{margin-right:auto;margin-left:auto}.mx-auto--force{margin-right:auto!important;margin-left:auto!important}.my-auto{margin-top:auto;margin-bottom:auto}.my-auto--force{margin-top:auto!important;margin-bottom:auto!important}.p-0{padding:0}.p-0--force{padding:0!important}.px-0{padding-right:0;padding-left:0}.px-0--force{padding-right:0!important;padding-left:0!important}.py-0{padding-top:0;padding-bottom:0}.py-0--force{padding-top:0!important;padding-bottom:0!important}.pt-0{padding-top:0}.pt-0--force{padding-top:0!important}.pr-0{padding-right:0}.pr-0--force{padding-right:0!important}.pb-0{padding-bottom:0}.pb-0--force{padding-bottom:0!important}.pl-0{padding-left:0}.pl-0--force{padding-left:0!important}.p-4{padding:4px}.p-4--force{padding:4px!important}.px-4{padding-right:4px;padding-left:4px}.px-4--force{padding-right:4px!important;padding-left:4px!important}.py-4{padding-top:4px;padding-bottom:4px}.py-4--force{padding-top:4px!important;padding-bottom:4px!important}.pt-4{padding-top:4px}.pt-4--force{padding-top:4px!important}.pr-4{padding-right:4px}.pr-4--force{padding-right:4px!important}.pb-4{padding-bottom:4px}.pb-4--force{padding-bottom:4px!important}.pl-4{padding-left:4px}.pl-4--force{padding-left:4px!important}.p-8{padding:8px}.p-8--force{padding:8px!important}.px-8{padding-right:8px;padding-left:8px}.px-8--force{padding-right:8px!important;padding-left:8px!important}.py-8{padding-top:8px;padding-bottom:8px}.py-8--force{padding-top:8px!important;padding-bottom:8px!important}.pt-8{padding-top:8px}.pt-8--force{padding-top:8px!important}.pr-8{padding-right:8px}.pr-8--force{padding-right:8px!important}.pb-8{padding-bottom:8px}.pb-8--force{padding-bottom:8px!important}.pl-8{padding-left:8px}.pl-8--force{padding-left:8px!important}.p-12{padding:12px}.p-12--force{padding:12px!important}.px-12{padding-right:12px;padding-left:12px}.px-12--force{padding-right:12px!important;padding-left:12px!important}.py-12{padding-top:12px;padding-bottom:12px}.py-12--force{padding-top:12px!important;padding-bottom:12px!important}.pt-12{padding-top:12px}.pt-12--force{padding-top:12px!important}.pr-12{padding-right:12px}.pr-12--force{padding-right:12px!important}.pb-12{padding-bottom:12px}.pb-12--force{padding-bottom:12px!important}.pl-12{padding-left:12px}.pl-12--force{padding-left:12px!important}.p-16{padding:16px}.p-16--force{padding:16px!important}.px-16{padding-right:16px;padding-left:16px}.px-16--force{padding-right:16px!important;padding-left:16px!important}.py-16{padding-top:16px;padding-bottom:16px}.py-16--force{padding-top:16px!important;padding-bottom:16px!important}.pt-16{padding-top:16px}.pt-16--force{padding-top:16px!important}.pr-16{padding-right:16px}.pr-16--force{padding-right:16px!important}.pb-16{padding-bottom:16px}.pb-16--force{padding-bottom:16px!important}.pl-16{padding-left:16px}.pl-16--force{padding-left:16px!important}.p-20{padding:20px}.p-20--force{padding:20px!important}.px-20{padding-right:20px;padding-left:20px}.px-20--force{padding-right:20px!important;padding-left:20px!important}.py-20{padding-top:20px;padding-bottom:20px}.py-20--force{padding-top:20px!important;padding-bottom:20px!important}.pt-20{padding-top:20px}.pt-20--force{padding-top:20px!important}.pr-20{padding-right:20px}.pr-20--force{padding-right:20px!important}.pb-20{padding-bottom:20px}.pb-20--force{padding-bottom:20px!important}.pl-20{padding-left:20px}.pl-20--force{padding-left:20px!important}.p-24{padding:24px}.p-24--force{padding:24px!important}.px-24{padding-right:24px;padding-left:24px}.px-24--force{padding-right:24px!important;padding-left:24px!important}.py-24{padding-top:24px;padding-bottom:24px}.py-24--force{padding-top:24px!important;padding-bottom:24px!important}.pt-24{padding-top:24px}.pt-24--force{padding-top:24px!important}.pr-24{padding-right:24px}.pr-24--force{padding-right:24px!important}.pb-24{padding-bottom:24px}.pb-24--force{padding-bottom:24px!important}.pl-24{padding-left:24px}.pl-24--force{padding-left:24px!important}.p-28{padding:28px}.p-28--force{padding:28px!important}.px-28{padding-right:28px;padding-left:28px}.px-28--force{padding-right:28px!important;padding-left:28px!important}.py-28{padding-top:28px;padding-bottom:28px}.py-28--force{padding-top:28px!important;padding-bottom:28px!important}.pt-28{padding-top:28px}.pt-28--force{padding-top:28px!important}.pr-28{padding-right:28px}.pr-28--force{padding-right:28px!important}.pb-28{padding-bottom:28px}.pb-28--force{padding-bottom:28px!important}.pl-28{padding-left:28px}.pl-28--force{padding-left:28px!important}.p-32{padding:32px}.p-32--force{padding:32px!important}.px-32{padding-right:32px;padding-left:32px}.px-32--force{padding-right:32px!important;padding-left:32px!important}.py-32{padding-top:32px;padding-bottom:32px}.py-32--force{padding-top:32px!important;padding-bottom:32px!important}.pt-32{padding-top:32px}.pt-32--force{padding-top:32px!important}.pr-32{padding-right:32px}.pr-32--force{padding-right:32px!important}.pb-32{padding-bottom:32px}.pb-32--force{padding-bottom:32px!important}.pl-32{padding-left:32px}.pl-32--force{padding-left:32px!important}.p-36{padding:36px}.p-36--force{padding:36px!important}.px-36{padding-right:36px;padding-left:36px}.px-36--force{padding-right:36px!important;padding-left:36px!important}.py-36{padding-top:36px;padding-bottom:36px}.py-36--force{padding-top:36px!important;padding-bottom:36px!important}.pt-36{padding-top:36px}.pt-36--force{padding-top:36px!important}.pr-36{padding-right:36px}.pr-36--force{padding-right:36px!important}.pb-36{padding-bottom:36px}.pb-36--force{padding-bottom:36px!important}.pl-36{padding-left:36px}.pl-36--force{padding-left:36px!important}.p-40{padding:40px}.p-40--force{padding:40px!important}.px-40{padding-right:40px;padding-left:40px}.px-40--force{padding-right:40px!important;padding-left:40px!important}.py-40{padding-top:40px;padding-bottom:40px}.py-40--force{padding-top:40px!important;padding-bottom:40px!important}.pt-40{padding-top:40px}.pt-40--force{padding-top:40px!important}.pr-40{padding-right:40px}.pr-40--force{padding-right:40px!important}.pb-40{padding-bottom:40px}.pb-40--force{padding-bottom:40px!important}.pl-40{padding-left:40px}.pl-40--force{padding-left:40px!important}.p-44{padding:44px}.p-44--force{padding:44px!important}.px-44{padding-right:44px;padding-left:44px}.px-44--force{padding-right:44px!important;padding-left:44px!important}.py-44{padding-top:44px;padding-bottom:44px}.py-44--force{padding-top:44px!important;padding-bottom:44px!important}.pt-44{padding-top:44px}.pt-44--force{padding-top:44px!important}.pr-44{padding-right:44px}.pr-44--force{padding-right:44px!important}.pb-44{padding-bottom:44px}.pb-44--force{padding-bottom:44px!important}.pl-44{padding-left:44px}.pl-44--force{padding-left:44px!important}.p-48{padding:48px}.p-48--force{padding:48px!important}.px-48{padding-right:48px;padding-left:48px}.px-48--force{padding-right:48px!important;padding-left:48px!important}.py-48{padding-top:48px;padding-bottom:48px}.py-48--force{padding-top:48px!important;padding-bottom:48px!important}.pt-48{padding-top:48px}.pt-48--force{padding-top:48px!important}.pr-48{padding-right:48px}.pr-48--force{padding-right:48px!important}.pb-48{padding-bottom:48px}.pb-48--force{padding-bottom:48px!important}.pl-48{padding-left:48px}.pl-48--force{padding-left:48px!important}.p-52{padding:52px}.p-52--force{padding:52px!important}.px-52{padding-right:52px;padding-left:52px}.px-52--force{padding-right:52px!important;padding-left:52px!important}.py-52{padding-top:52px;padding-bottom:52px}.py-52--force{padding-top:52px!important;padding-bottom:52px!important}.pt-52{padding-top:52px}.pt-52--force{padding-top:52px!important}.pr-52{padding-right:52px}.pr-52--force{padding-right:52px!important}.pb-52{padding-bottom:52px}.pb-52--force{padding-bottom:52px!important}.pl-52{padding-left:52px}.pl-52--force{padding-left:52px!important}.p-56{padding:56px}.p-56--force{padding:56px!important}.px-56{padding-right:56px;padding-left:56px}.px-56--force{padding-right:56px!important;padding-left:56px!important}.py-56{padding-top:56px;padding-bottom:56px}.py-56--force{padding-top:56px!important;padding-bottom:56px!important}.pt-56{padding-top:56px}.pt-56--force{padding-top:56px!important}.pr-56{padding-right:56px}.pr-56--force{padding-right:56px!important}.pb-56{padding-bottom:56px}.pb-56--force{padding-bottom:56px!important}.pl-56{padding-left:56px}.pl-56--force{padding-left:56px!important}.p-60{padding:60px}.p-60--force{padding:60px!important}.px-60{padding-right:60px;padding-left:60px}.px-60--force{padding-right:60px!important;padding-left:60px!important}.py-60{padding-top:60px;padding-bottom:60px}.py-60--force{padding-top:60px!important;padding-bottom:60px!important}.pt-60{padding-top:60px}.pt-60--force{padding-top:60px!important}.pr-60{padding-right:60px}.pr-60--force{padding-right:60px!important}.pb-60{padding-bottom:60px}.pb-60--force{padding-bottom:60px!important}.pl-60{padding-left:60px}.pl-60--force{padding-left:60px!important}.p-64{padding:64px}.p-64--force{padding:64px!important}.px-64{padding-right:64px;padding-left:64px}.px-64--force{padding-right:64px!important;padding-left:64px!important}.py-64{padding-top:64px;padding-bottom:64px}.py-64--force{padding-top:64px!important;padding-bottom:64px!important}.pt-64{padding-top:64px}.pt-64--force{padding-top:64px!important}.pr-64{padding-right:64px}.pr-64--force{padding-right:64px!important}.pb-64{padding-bottom:64px}.pb-64--force{padding-bottom:64px!important}.pl-64{padding-left:64px}.pl-64--force{padding-left:64px!important}.p-68{padding:68px}.p-68--force{padding:68px!important}.px-68{padding-right:68px;padding-left:68px}.px-68--force{padding-right:68px!important;padding-left:68px!important}.py-68{padding-top:68px;padding-bottom:68px}.py-68--force{padding-top:68px!important;padding-bottom:68px!important}.pt-68{padding-top:68px}.pt-68--force{padding-top:68px!important}.pr-68{padding-right:68px}.pr-68--force{padding-right:68px!important}.pb-68{padding-bottom:68px}.pb-68--force{padding-bottom:68px!important}.pl-68{padding-left:68px}.pl-68--force{padding-left:68px!important}.p-72{padding:72px}.p-72--force{padding:72px!important}.px-72{padding-right:72px;padding-left:72px}.px-72--force{padding-right:72px!important;padding-left:72px!important}.py-72{padding-top:72px;padding-bottom:72px}.py-72--force{padding-top:72px!important;padding-bottom:72px!important}.pt-72{padding-top:72px}.pt-72--force{padding-top:72px!important}.pr-72{padding-right:72px}.pr-72--force{padding-right:72px!important}.pb-72{padding-bottom:72px}.pb-72--force{padding-bottom:72px!important}.pl-72{padding-left:72px}.pl-72--force{padding-left:72px!important}.p-76{padding:76px}.p-76--force{padding:76px!important}.px-76{padding-right:76px;padding-left:76px}.px-76--force{padding-right:76px!important;padding-left:76px!important}.py-76{padding-top:76px;padding-bottom:76px}.py-76--force{padding-top:76px!important;padding-bottom:76px!important}.pt-76{padding-top:76px}.pt-76--force{padding-top:76px!important}.pr-76{padding-right:76px}.pr-76--force{padding-right:76px!important}.pb-76{padding-bottom:76px}.pb-76--force{padding-bottom:76px!important}.pl-76{padding-left:76px}.pl-76--force{padding-left:76px!important}.p-80{padding:80px}.p-80--force{padding:80px!important}.px-80{padding-right:80px;padding-left:80px}.px-80--force{padding-right:80px!important;padding-left:80px!important}.py-80{padding-top:80px;padding-bottom:80px}.py-80--force{padding-top:80px!important;padding-bottom:80px!important}.pt-80{padding-top:80px}.pt-80--force{padding-top:80px!important}.pr-80{padding-right:80px}.pr-80--force{padding-right:80px!important}.pb-80{padding-bottom:80px}.pb-80--force{padding-bottom:80px!important}.pl-80{padding-left:80px}.pl-80--force{padding-left:80px!important}.p-84{padding:84px}.p-84--force{padding:84px!important}.px-84{padding-right:84px;padding-left:84px}.px-84--force{padding-right:84px!important;padding-left:84px!important}.py-84{padding-top:84px;padding-bottom:84px}.py-84--force{padding-top:84px!important;padding-bottom:84px!important}.pt-84{padding-top:84px}.pt-84--force{padding-top:84px!important}.pr-84{padding-right:84px}.pr-84--force{padding-right:84px!important}.pb-84{padding-bottom:84px}.pb-84--force{padding-bottom:84px!important}.pl-84{padding-left:84px}.pl-84--force{padding-left:84px!important}.p-88{padding:88px}.p-88--force{padding:88px!important}.px-88{padding-right:88px;padding-left:88px}.px-88--force{padding-right:88px!important;padding-left:88px!important}.py-88{padding-top:88px;padding-bottom:88px}.py-88--force{padding-top:88px!important;padding-bottom:88px!important}.pt-88{padding-top:88px}.pt-88--force{padding-top:88px!important}.pr-88{padding-right:88px}.pr-88--force{padding-right:88px!important}.pb-88{padding-bottom:88px}.pb-88--force{padding-bottom:88px!important}.pl-88{padding-left:88px}.pl-88--force{padding-left:88px!important}.p-92{padding:92px}.p-92--force{padding:92px!important}.px-92{padding-right:92px;padding-left:92px}.px-92--force{padding-right:92px!important;padding-left:92px!important}.py-92{padding-top:92px;padding-bottom:92px}.py-92--force{padding-top:92px!important;padding-bottom:92px!important}.pt-92{padding-top:92px}.pt-92--force{padding-top:92px!important}.pr-92{padding-right:92px}.pr-92--force{padding-right:92px!important}.pb-92{padding-bottom:92px}.pb-92--force{padding-bottom:92px!important}.pl-92{padding-left:92px}.pl-92--force{padding-left:92px!important}.p-96{padding:96px}.p-96--force{padding:96px!important}.px-96{padding-right:96px;padding-left:96px}.px-96--force{padding-right:96px!important;padding-left:96px!important}.py-96{padding-top:96px;padding-bottom:96px}.py-96--force{padding-top:96px!important;padding-bottom:96px!important}.pt-96{padding-top:96px}.pt-96--force{padding-top:96px!important}.pr-96{padding-right:96px}.pr-96--force{padding-right:96px!important}.pb-96{padding-bottom:96px}.pb-96--force{padding-bottom:96px!important}.pl-96{padding-left:96px}.pl-96--force{padding-left:96px!important}[class^=grid-]{display:grid;grid-template-columns:minmax(0,1fr)}.grid-1{grid-template-columns:repeat(1,minmax(0,1fr))}.colspan-1,.span-1c{grid-column-end:span 1}.rowspan-1,.span-1r{grid-row-end:span 1}.grid-2{grid-template-columns:repeat(2,minmax(0,1fr))}.colspan-2,.span-2c{grid-column-end:span 2}.rowspan-2,.span-2r{grid-row-end:span 2}.grid-3{grid-template-columns:repeat(3,minmax(0,1fr))}.colspan-3,.span-3c{grid-column-end:span 3}.rowspan-3,.span-3r{grid-row-end:span 3}.grid-4{grid-template-columns:repeat(4,minmax(0,1fr))}.colspan-4,.span-4c{grid-column-end:span 4}.rowspan-4,.span-4r{grid-row-end:span 4}.grid-5{grid-template-columns:repeat(5,minmax(0,1fr))}.colspan-5,.span-5c{grid-column-end:span 5}.rowspan-5,.span-5r{grid-row-end:span 5}.grid-6{grid-template-columns:repeat(6,minmax(0,1fr))}.colspan-6,.span-6c{grid-column-end:span 6}.rowspan-6,.span-6r{grid-row-end:span 6}.grid-7{grid-template-columns:repeat(7,minmax(0,1fr))}.colspan-7,.span-7c{grid-column-end:span 7}.rowspan-7,.span-7r{grid-row-end:span 7}.grid-8{grid-template-columns:repeat(8,minmax(0,1fr))}.colspan-8,.span-8c{grid-column-end:span 8}.rowspan-8,.span-8r{grid-row-end:span 8}.grid-9{grid-template-columns:repeat(9,minmax(0,1fr))}.colspan-9,.span-9c{grid-column-end:span 9}.rowspan-9,.span-9r{grid-row-end:span 9}.grid-10{grid-template-columns:repeat(10,minmax(0,1fr))}.colspan-10,.span-10c{grid-column-end:span 10}.rowspan-10,.span-10r{grid-row-end:span 10}.grid-11{grid-template-columns:repeat(11,minmax(0,1fr))}.colspan-11,.span-11c{grid-column-end:span 11}.rowspan-11,.span-11r{grid-row-end:span 11}.grid-12{grid-template-columns:repeat(12,minmax(0,1fr))}.colspan-12,.span-12c{grid-column-end:span 12}.rowspan-12,.span-12r{grid-row-end:span 12}.row{display:flex;flex-wrap:wrap}.row>div[class*=col-]{box-sizing:border-box}.row>div:not([class*=col-]){flex:1}.row .col-1{flex-basis:8.33333%}.row .col-offset-1{margin-left:8.33333%}.row .col-2{flex-basis:16.66667%}.row .col-offset-2{margin-left:16.66667%}.row .col-3{flex-basis:25%}.row .col-offset-3{margin-left:25%}.row .col-4{flex-basis:33.33333%}.row .col-offset-4{margin-left:33.33333%}.row .col-5{flex-basis:41.66667%}.row .col-offset-5{margin-left:41.66667%}.row .col-6{flex-basis:50%}.row .col-offset-6{margin-left:50%}.row .col-7{flex-basis:58.33333%}.row .col-offset-7{margin-left:58.33333%}.row .col-8{flex-basis:66.66667%}.row .col-offset-8{margin-left:66.66667%}.row .col-9{flex-basis:75%}.row .col-offset-9{margin-left:75%}.row .col-10{flex-basis:83.33333%}.row .col-offset-10{margin-left:83.33333%}.row .col-11{flex-basis:91.66667%}.row .col-offset-11{margin-left:91.66667%}.flex-basis-1,.row .col-12{flex-basis:100%}.row .col-offset-12{margin-left:100%}.row>div[class*=col-].align-start{align-self:flex-start}.row>div[class*=col-].align-center{align-self:center}.row>div[class*=col-].align-end{align-self:flex-end}.row.align-start{justify-content:flex-start}.row.align-center{justify-content:center}.row.align-end{justify-content:flex-end}.row.space-around{justify-content:space-around}.row.space-between{justify-content:space-between}.gap-0{column-gap:0;row-gap:0}.gap-4{column-gap:4px;row-gap:4px}.gap-8{column-gap:8px;row-gap:8px}.gap-12{column-gap:12px;row-gap:12px}.gap-16{column-gap:16px;row-gap:16px}.gap-20{column-gap:20px;row-gap:20px}.gap-24{column-gap:24px;row-gap:24px}.gap-28{column-gap:28px;row-gap:28px}.gap-32{column-gap:32px;row-gap:32px}.gap-36{column-gap:36px;row-gap:36px}.gap-40{column-gap:40px;row-gap:40px}.gap-44{column-gap:44px;row-gap:44px}.gap-48{column-gap:48px;row-gap:48px}.gap-inside,.gap-outside{column-gap:16px;row-gap:16px}.z-index--1{z-index:-1}.z-index--1--force{z-index:-1!important}.z-index-0{z-index:0}.z-index-0--force{z-index:0!important}.z-index-1{z-index:1}.z-index-1--force{z-index:1!important}.z-index-2{z-index:2}.z-index-2--force{z-index:2!important}.z-index-3{z-index:3}.z-index-3--force{z-index:3!important}.z-index-4{z-index:4}.z-index-4--force{z-index:4!important}.z-index-5{z-index:5}.z-index-5--force{z-index:5!important}.z-index-6{z-index:6}.z-index-6--force{z-index:6!important}.z-index-7{z-index:7}.z-index-7--force{z-index:7!important}.z-index-8{z-index:8}.z-index-8--force{z-index:8!important}.z-index-9{z-index:9}.z-index-9--force{z-index:9!important}.z-index-10{z-index:10}.z-index-10--force{z-index:10!important}.z-index-11{z-index:11}.z-index-11--force{z-index:11!important}.z-index-12{z-index:12}.z-index-12--force{z-index:12!important}.z-index-13{z-index:13}.z-index-13--force{z-index:13!important}.z-index-14{z-index:14}.z-index-14--force{z-index:14!important}.z-index-15{z-index:15}.z-index-15--force{z-index:15!important}.z-index-16{z-index:16}.z-index-16--force{z-index:16!important}.z-index-17{z-index:17}.z-index-17--force{z-index:17!important}.z-index-18{z-index:18}.z-index-18--force{z-index:18!important}.z-index-19{z-index:19}.z-index-19--force{z-index:19!important}.z-index-20{z-index:20}.z-index-20--force{z-index:20!important}.z-index-21{z-index:21}.z-index-21--force{z-index:21!important}.z-index-22{z-index:22}.z-index-22--force{z-index:22!important}.z-index-23{z-index:23}.z-index-23--force{z-index:23!important}.z-index-24{z-index:24}.z-index-24--force{z-index:24!important}.order--12{order:-12}.order--12--force{order:-12!important}.order--11{order:-11}.order--11--force{order:-11!important}.order--10{order:-10}.order--10--force{order:-10!important}.order--9{order:-9}.order--9--force{order:-9!important}.order--8{order:-8}.order--8--force{order:-8!important}.order--7{order:-7}.order--7--force{order:-7!important}.order--6{order:-6}.order--6--force{order:-6!important}.order--5{order:-5}.order--5--force{order:-5!important}.order--4{order:-4}.order--4--force{order:-4!important}.order--3{order:-3}.order--3--force{order:-3!important}.order--2{order:-2}.order--2--force{order:-2!important}.order--1{order:-1}.order--1--force{order:-1!important}.order-0{order:0}.order-0--force{order:0!important}.order-1{order:1}.order-1--force{order:1!important}.order-2{order:2}.order-2--force{order:2!important}.order-3{order:3}.order-3--force{order:3!important}.order-4{order:4}.order-4--force{order:4!important}.order-5{order:5}.order-5--force{order:5!important}.order-6{order:6}.order-6--force{order:6!important}.order-7{order:7}.order-7--force{order:7!important}.order-8{order:8}.order-8--force{order:8!important}.order-9{order:9}.order-9--force{order:9!important}.order-10{order:10}.order-10--force{order:10!important}.order-11{order:11}.order-11--force{order:11!important}.order-12{order:12}.order-12--force{order:12!important}.order-inherit{order:inherit}.order-inherit--force{order:inherit!important}.order-initial{order:initial}.order-initial--force{order:initial!important}.place-top{top:0}.place-top--force{top:0!important}.place-right{right:0}.place-right--force{right:0!important}.place-bottom{bottom:0}.place-bottom--force{bottom:0!important}.place-left{left:0}.place-left--force{left:0!important}.position-relative{position:relative}.position-relative--force{position:relative!important}.position-absolute{position:absolute}.position-absolute--force{position:absolute!important}.position-static{position:static}.position-static--force{position:static!important}.position-fixed{position:fixed}.position-fixed--force{position:fixed!important}.d-none{display:none}.d-none--force{display:none!important}.d-inline{display:inline}.d-inline--force{display:inline!important}.d-inline-block{display:inline-block}.d-inline-block--force{display:inline-block!important}.d-block{display:block}.d-block--force{display:block!important}.d-grid{display:grid}.d-grid--force{display:grid!important}.d-table{display:table}.d-table--force{display:table!important}.d-table-cell{display:table-cell}.d-table-cell--force{display:table-cell!important}.d-table-row{display:table-row}.d-table-row--force{display:table-row!important}.d-inline-flex{display:inline-flex}.d-inline-flex--force{display:inline-flex!important}.d-flex{display:flex}.d-flex--force{display:flex!important}.flex-row{display:flex;flex-direction:row}.flex-row--force{display:flex!important;flex-direction:row!important}.flex-row-reverse{display:flex;flex-direction:row-reverse}.flex-row-reverse--force{display:flex!important;flex-direction:row-reverse!important}.flex-column{display:flex;flex-direction:column}.flex-column--force{display:flex!important;flex-direction:column!important}.flex-column-reverse{display:flex;flex-direction:column-reverse}.flex-column-reverse--force{display:flex!important;flex-direction:column-reverse!important}.flex-nowrap{flex-wrap:nowrap}.flex-nowrap--force{flex-wrap:nowrap!important}.flex-wrap{flex-wrap:wrap}.flex-wrap--force{flex-wrap:wrap!important}.flex-align-center{display:flex;align-items:center}.flex-align-center--force{display:flex!important;align-items:center!important}.flex-align-start{display:flex;align-items:flex-start}.flex-align-start--force{display:flex!important;align-items:flex-start!important}.flex-align-end{display:flex;align-items:flex-end}.flex-align-end--force{display:flex!important;align-items:flex-end!important}.flex-align-inherit{display:flex;align-items:inherit}.flex-align-inherit--force{display:flex!important;align-items:inherit!important}.flex-align-initial{display:flex;align-items:initial}.flex-align-initial--force{display:flex!important;align-items:initial!important}.flex-align-self-end{display:flex;align-self:flex-end}.flex-align-self-end--force{display:flex!important;align-self:flex-end!important}.flex-align-self-start{display:flex;align-self:flex-start}.flex-align-self-start--force{display:flex!important;align-self:flex-start!important}.flex-align-self-inherit{display:flex;align-self:inherit}.flex-align-self-inherit--force{display:flex!important;align-self:inherit!important}.flex-align-self-initial{display:flex;align-self:initial}.flex-align-self-initial--force{display:flex!important;align-self:initial!important}.flex-center-center{display:flex;justify-content:center;align-items:center}.flex-center-center--force{display:flex!important;justify-content:center!important;align-items:center!important}.flex-center,.flex-justify-center{display:flex;justify-content:center}.flex-center--force,.flex-justify-center--force{display:flex!important;justify-content:center!important}.flex-end,.flex-justify-end{display:flex;justify-content:flex-end}.flex-end--force,.flex-justify-end--force{display:flex!important;justify-content:flex-end!important}.flex-justify-start,.flex-start{display:flex;justify-content:flex-start}.flex-justify-start--force,.flex-start--force{display:flex!important;justify-content:flex-start!important}.flex-inherit,.flex-justify-inherit{display:flex;justify-content:inherit}.flex-inherit--force,.flex-justify-inherit--force{display:flex!important;justify-content:inherit!important}.flex-initial,.flex-justify-initial{display:flex;justify-content:initial}.flex-initial--force,.flex-justify-initial--force{display:flex!important;justify-content:initial!important}.flex-left{display:flex;justify-content:left}.flex-left--force{display:flex!important;justify-content:left!important}.flex-right{display:flex;justify-content:right}.flex-right--force{display:flex!important;justify-content:right!important}.flex-normal{display:flex;justify-content:normal}.flex-normal--force{display:flex!important;justify-content:normal!important}.flex-revert{display:flex;justify-content:revert}.flex-revert--force{display:flex!important;justify-content:revert!important}.flex-around,.flex-space-around{display:flex;justify-content:space-around}.flex-around--force,.flex-space-around--force{display:flex!important;justify-content:space-around!important}.flex-between,.flex-space-between{display:flex;justify-content:space-between}.flex-between--force,.flex-space-between--force{display:flex!important;justify-content:space-between!important}.flex-evenly,.flex-space-evenly{display:flex;justify-content:space-evenly}.flex-evenly--force,.flex-space-evenly--force{display:flex!important;justify-content:space-evenly!important}.flex-stretch{display:flex;justify-content:stretch}.flex-stretch--force{display:flex!important;justify-content:stretch!important}.flex-unset{display:flex;justify-content:unset}.flex-unset--force{display:flex!important;justify-content:unset!important}.flex-grow-0{flex-grow:0}.flex-shrink-0{flex-shrink:0}.flex-grow-1{flex-grow:1}.flex-shrink-1{flex-shrink:1}.flex-grow-2{flex-grow:2}.flex-shrink-2{flex-shrink:2}.flex-grow-3{flex-grow:3}.flex-shrink-3{flex-shrink:3}.flex-full{flex-grow:1;flex-shrink:1;flex-basis:100%}.fw-100{font-weight:100}.fw-100--force{font-weight:100!important}.fw-200{font-weight:200}.fw-200--force{font-weight:200!important}.fw-300{font-weight:300}.fw-300--force{font-weight:300!important}.fw-400{font-weight:400}.fw-400--force{font-weight:400!important}.fw-500{font-weight:500}.fw-500--force{font-weight:500!important}.fw-600{font-weight:600}.fw-600--force{font-weight:600!important}.fw-700{font-weight:700}.fw-700--force{font-weight:700!important}.fw-800{font-weight:800}.fw-800--force{font-weight:800!important}.fw-900{font-weight:900}.fw-900--force{font-weight:900!important}.fs-0{font-size:0px}.fs-0--force{font-size:0px!important}.fs-1{font-size:1px}.fs-1--force{font-size:1px!important}.fs-2{font-size:2px}.fs-2--force{font-size:2px!important}.fs-3{font-size:3px}.fs-3--force{font-size:3px!important}.fs-4{font-size:4px}.fs-4--force{font-size:4px!important}.fs-5{font-size:5px}.fs-5--force{font-size:5px!important}.fs-6{font-size:6px}.fs-6--force{font-size:6px!important}.fs-7{font-size:7px}.fs-7--force{font-size:7px!important}.fs-8{font-size:8px}.fs-8--force{font-size:8px!important}.fs-9{font-size:9px}.fs-9--force{font-size:9px!important}.fs-10{font-size:10px}.fs-10--force{font-size:10px!important}.fs-11{font-size:11px}.fs-11--force{font-size:11px!important}.fs-12{font-size:12px}.fs-12--force{font-size:12px!important}.fs-13{font-size:13px}.fs-13--force{font-size:13px!important}.fs-14{font-size:14px}.fs-14--force{font-size:14px!important}.fs-15{font-size:15px}.fs-15--force{font-size:15px!important}.fs-16{font-size:16px}.fs-16--force{font-size:16px!important}.fs-17{font-size:17px}.fs-17--force{font-size:17px!important}.fs-18{font-size:18px}.fs-18--force{font-size:18px!important}.fs-19{font-size:19px}.fs-19--force{font-size:19px!important}.fs-20{font-size:20px}.fs-20--force{font-size:20px!important}.fs-21{font-size:21px}.fs-21--force{font-size:21px!important}.fs-22{font-size:22px}.fs-22--force{font-size:22px!important}.fs-23{font-size:23px}.fs-23--force{font-size:23px!important}.fs-24{font-size:24px}.fs-24--force{font-size:24px!important}.fs-25{font-size:25px}.fs-25--force{font-size:25px!important}.fs-26{font-size:26px}.fs-26--force{font-size:26px!important}.fs-27{font-size:27px}.fs-27--force{font-size:27px!important}.fs-28{font-size:28px}.fs-28--force{font-size:28px!important}.fs-29{font-size:29px}.fs-29--force{font-size:29px!important}.fs-30{font-size:30px}.fs-30--force{font-size:30px!important}.fs-31{font-size:31px}.fs-31--force{font-size:31px!important}.fs-32{font-size:32px}.fs-32--force{font-size:32px!important}.fs-33{font-size:33px}.fs-33--force{font-size:33px!important}.fs-34{font-size:34px}.fs-34--force{font-size:34px!important}.fs-35{font-size:35px}.fs-35--force{font-size:35px!important}.fs-36{font-size:36px}.fs-36--force{font-size:36px!important}.fs-37{font-size:37px}.fs-37--force{font-size:37px!important}.fs-38{font-size:38px}.fs-38--force{font-size:38px!important}.fs-39{font-size:39px}.fs-39--force{font-size:39px!important}.fs-40{font-size:40px}.fs-40--force{font-size:40px!important}.fs-41{font-size:41px}.fs-41--force{font-size:41px!important}.fs-42{font-size:42px}.fs-42--force{font-size:42px!important}.fs-43{font-size:43px}.fs-43--force{font-size:43px!important}.fs-44{font-size:44px}.fs-44--force{font-size:44px!important}.fs-45{font-size:45px}.fs-45--force{font-size:45px!important}.fs-46{font-size:46px}.fs-46--force{font-size:46px!important}.fs-47{font-size:47px}.fs-47--force{font-size:47px!important}.fs-48{font-size:48px}.fs-48--force{font-size:48px!important}.fs-49{font-size:49px}.fs-49--force{font-size:49px!important}.fs-50{font-size:50px}.fs-50--force{font-size:50px!important}.fs-51{font-size:51px}.fs-51--force{font-size:51px!important}.fs-52{font-size:52px}.fs-52--force{font-size:52px!important}.fs-53{font-size:53px}.fs-53--force{font-size:53px!important}.fs-54{font-size:54px}.fs-54--force{font-size:54px!important}.fs-55{font-size:55px}.fs-55--force{font-size:55px!important}.fs-56{font-size:56px}.fs-56--force{font-size:56px!important}.fs-57{font-size:57px}.fs-57--force{font-size:57px!important}.fs-58{font-size:58px}.fs-58--force{font-size:58px!important}.fs-59{font-size:59px}.fs-59--force{font-size:59px!important}.fs-60{font-size:60px}.fs-60--force{font-size:60px!important}.fs-61{font-size:61px}.fs-61--force{font-size:61px!important}.fs-62{font-size:62px}.fs-62--force{font-size:62px!important}.fs-63{font-size:63px}.fs-63--force{font-size:63px!important}.fs-64{font-size:64px}.fs-64--force{font-size:64px!important}.fs-65{font-size:65px}.fs-65--force{font-size:65px!important}.fs-66{font-size:66px}.fs-66--force{font-size:66px!important}.fs-67{font-size:67px}.fs-67--force{font-size:67px!important}.fs-68{font-size:68px}.fs-68--force{font-size:68px!important}.fs-69{font-size:69px}.fs-69--force{font-size:69px!important}.fs-70{font-size:70px}.fs-70--force{font-size:70px!important}.fs-71{font-size:71px}.fs-71--force{font-size:71px!important}.fs-72{font-size:72px}.fs-72--force{font-size:72px!important}.fs-73{font-size:73px}.fs-73--force{font-size:73px!important}.fs-74{font-size:74px}.fs-74--force{font-size:74px!important}.fs-75{font-size:75px}.fs-75--force{font-size:75px!important}.fs-76{font-size:76px}.fs-76--force{font-size:76px!important}.fs-77{font-size:77px}.fs-77--force{font-size:77px!important}.fs-78{font-size:78px}.fs-78--force{font-size:78px!important}.fs-79{font-size:79px}.fs-79--force{font-size:79px!important}.fs-80{font-size:80px}.fs-80--force{font-size:80px!important}.fs-81{font-size:81px}.fs-81--force{font-size:81px!important}.fs-82{font-size:82px}.fs-82--force{font-size:82px!important}.fs-83{font-size:83px}.fs-83--force{font-size:83px!important}.fs-84{font-size:84px}.fs-84--force{font-size:84px!important}.fs-85{font-size:85px}.fs-85--force{font-size:85px!important}.fs-86{font-size:86px}.fs-86--force{font-size:86px!important}.fs-87{font-size:87px}.fs-87--force{font-size:87px!important}.fs-88{font-size:88px}.fs-88--force{font-size:88px!important}.fs-89{font-size:89px}.fs-89--force{font-size:89px!important}.fs-90{font-size:90px}.fs-90--force{font-size:90px!important}.fs-91{font-size:91px}.fs-91--force{font-size:91px!important}.fs-92{font-size:92px}.fs-92--force{font-size:92px!important}.fs-93{font-size:93px}.fs-93--force{font-size:93px!important}.fs-94{font-size:94px}.fs-94--force{font-size:94px!important}.fs-95{font-size:95px}.fs-95--force{font-size:95px!important}.fs-96{font-size:96px}.fs-96--force{font-size:96px!important}.ls-0{letter-spacing:0}.ls-0--force{letter-spacing:0!important}.ls-1{letter-spacing:.1em}.ls-1--force{letter-spacing:.1em!important}.ls-2{letter-spacing:.2em}.ls-2--force{letter-spacing:.2em!important}.ls-3{letter-spacing:.3em}.ls-3--force{letter-spacing:.3em!important}.ls-4{letter-spacing:.4em}.ls-4--force{letter-spacing:.4em!important}.ls-5{letter-spacing:.5em}.ls-5--force{letter-spacing:.5em!important}.ls-6{letter-spacing:.6em}.ls-6--force{letter-spacing:.6em!important}.ls-7{letter-spacing:.7em}.ls-7--force{letter-spacing:.7em!important}.ls-8{letter-spacing:.8em}.ls-8--force{letter-spacing:.8em!important}.ls-9{letter-spacing:.9em}.ls-9--force{letter-spacing:.9em!important}.ls-10{letter-spacing:1em}.ls-10--force{letter-spacing:1em!important}.ls-11{letter-spacing:1.1em}.ls-11--force{letter-spacing:1.1em!important}.ls-12{letter-spacing:1.2em}.ls-12--force{letter-spacing:1.2em!important}.ls-13{letter-spacing:1.3em}.ls-13--force{letter-spacing:1.3em!important}.ls-14{letter-spacing:1.4em}.ls-14--force{letter-spacing:1.4em!important}.ls-15{letter-spacing:1.5em}.ls-15--force{letter-spacing:1.5em!important}.ls-16{letter-spacing:1.6em}.ls-16--force{letter-spacing:1.6em!important}.ls-17{letter-spacing:1.7em}.ls-17--force{letter-spacing:1.7em!important}.ls-18{letter-spacing:1.8em}.ls-18--force{letter-spacing:1.8em!important}.lh-0{line-height:0}.lh-0--force{line-height:0!important}.lh-1{line-height:1px}.lh-1--force{line-height:1px!important}.lh-2{line-height:2px}.lh-2--force{line-height:2px!important}.lh-3{line-height:3px}.lh-3--force{line-height:3px!important}.lh-4{line-height:4px}.lh-4--force{line-height:4px!important}.lh-5{line-height:5px}.lh-5--force{line-height:5px!important}.lh-6{line-height:6px}.lh-6--force{line-height:6px!important}.lh-7{line-height:7px}.lh-7--force{line-height:7px!important}.lh-8{line-height:8px}.lh-8--force{line-height:8px!important}.lh-9{line-height:9px}.lh-9--force{line-height:9px!important}.lh-10{line-height:10px}.lh-10--force{line-height:10px!important}.lh-11{line-height:11px}.lh-11--force{line-height:11px!important}.lh-12{line-height:12px}.lh-12--force{line-height:12px!important}.lh-13{line-height:13px}.lh-13--force{line-height:13px!important}.lh-14{line-height:14px}.lh-14--force{line-height:14px!important}.lh-15{line-height:15px}.lh-15--force{line-height:15px!important}.lh-16{line-height:16px}.lh-16--force{line-height:16px!important}.lh-17{line-height:17px}.lh-17--force{line-height:17px!important}.lh-18{line-height:18px}.lh-18--force{line-height:18px!important}.lh-19{line-height:19px}.lh-19--force{line-height:19px!important}.lh-20{line-height:20px}.lh-20--force{line-height:20px!important}.lh-21{line-height:21px}.lh-21--force{line-height:21px!important}.lh-22{line-height:22px}.lh-22--force{line-height:22px!important}.lh-23{line-height:23px}.lh-23--force{line-height:23px!important}.lh-24{line-height:24px}.lh-24--force{line-height:24px!important}.lh-25{line-height:25px}.lh-25--force{line-height:25px!important}.lh-26{line-height:26px}.lh-26--force{line-height:26px!important}.lh-27{line-height:27px}.lh-27--force{line-height:27px!important}.lh-28{line-height:28px}.lh-28--force{line-height:28px!important}.lh-29{line-height:29px}.lh-29--force{line-height:29px!important}.lh-30{line-height:30px}.lh-30--force{line-height:30px!important}.lh-31{line-height:31px}.lh-31--force{line-height:31px!important}.lh-32{line-height:32px}.lh-32--force{line-height:32px!important}.lh-33{line-height:33px}.lh-33--force{line-height:33px!important}.lh-34{line-height:34px}.lh-34--force{line-height:34px!important}.lh-35{line-height:35px}.lh-35--force{line-height:35px!important}.lh-36{line-height:36px}.lh-36--force{line-height:36px!important}.lh-37{line-height:37px}.lh-37--force{line-height:37px!important}.lh-38{line-height:38px}.lh-38--force{line-height:38px!important}.lh-39{line-height:39px}.lh-39--force{line-height:39px!important}.lh-40{line-height:40px}.lh-40--force{line-height:40px!important}.lh-41{line-height:41px}.lh-41--force{line-height:41px!important}.lh-42{line-height:42px}.lh-42--force{line-height:42px!important}.lh-43{line-height:43px}.lh-43--force{line-height:43px!important}.lh-44{line-height:44px}.lh-44--force{line-height:44px!important}.lh-45{line-height:45px}.lh-45--force{line-height:45px!important}.lh-46{line-height:46px}.lh-46--force{line-height:46px!important}.lh-47{line-height:47px}.lh-47--force{line-height:47px!important}.lh-48{line-height:48px}.lh-48--force{line-height:48px!important}.lh-49{line-height:49px}.lh-49--force{line-height:49px!important}.lh-50{line-height:50px}.lh-50--force{line-height:50px!important}.lh-51{line-height:51px}.lh-51--force{line-height:51px!important}.lh-52{line-height:52px}.lh-52--force{line-height:52px!important}.lh-53{line-height:53px}.lh-53--force{line-height:53px!important}.lh-54{line-height:54px}.lh-54--force{line-height:54px!important}.lh-55{line-height:55px}.lh-55--force{line-height:55px!important}.lh-56{line-height:56px}.lh-56--force{line-height:56px!important}.lh-57{line-height:57px}.lh-57--force{line-height:57px!important}.lh-58{line-height:58px}.lh-58--force{line-height:58px!important}.lh-59{line-height:59px}.lh-59--force{line-height:59px!important}.lh-60{line-height:60px}.lh-60--force{line-height:60px!important}.lh-61{line-height:61px}.lh-61--force{line-height:61px!important}.lh-62{line-height:62px}.lh-62--force{line-height:62px!important}.lh-63{line-height:63px}.lh-63--force{line-height:63px!important}.lh-64{line-height:64px}.lh-64--force{line-height:64px!important}.lh-65{line-height:65px}.lh-65--force{line-height:65px!important}.lh-66{line-height:66px}.lh-66--force{line-height:66px!important}.lh-67{line-height:67px}.lh-67--force{line-height:67px!important}.lh-68{line-height:68px}.lh-68--force{line-height:68px!important}.lh-69{line-height:69px}.lh-69--force{line-height:69px!important}.lh-70{line-height:70px}.lh-70--force{line-height:70px!important}.lh-71{line-height:71px}.lh-71--force{line-height:71px!important}.lh-72{line-height:72px}.lh-72--force{line-height:72px!important}.lh-73{line-height:73px}.lh-73--force{line-height:73px!important}.lh-74{line-height:74px}.lh-74--force{line-height:74px!important}.lh-75{line-height:75px}.lh-75--force{line-height:75px!important}.lh-76{line-height:76px}.lh-76--force{line-height:76px!important}.lh-77{line-height:77px}.lh-77--force{line-height:77px!important}.lh-78{line-height:78px}.lh-78--force{line-height:78px!important}.lh-79{line-height:79px}.lh-79--force{line-height:79px!important}.lh-80{line-height:80px}.lh-80--force{line-height:80px!important}.lh-81{line-height:81px}.lh-81--force{line-height:81px!important}.lh-82{line-height:82px}.lh-82--force{line-height:82px!important}.lh-83{line-height:83px}.lh-83--force{line-height:83px!important}.lh-84{line-height:84px}.lh-84--force{line-height:84px!important}.lh-85{line-height:85px}.lh-85--force{line-height:85px!important}.lh-86{line-height:86px}.lh-86--force{line-height:86px!important}.lh-87{line-height:87px}.lh-87--force{line-height:87px!important}.lh-88{line-height:88px}.lh-88--force{line-height:88px!important}.lh-89{line-height:89px}.lh-89--force{line-height:89px!important}.lh-90{line-height:90px}.lh-90--force{line-height:90px!important}.lh-91{line-height:91px}.lh-91--force{line-height:91px!important}.lh-92{line-height:92px}.lh-92--force{line-height:92px!important}.lh-93{line-height:93px}.lh-93--force{line-height:93px!important}.lh-94{line-height:94px}.lh-94--force{line-height:94px!important}.lh-95{line-height:95px}.lh-95--force{line-height:95px!important}.lh-96{line-height:96px}.lh-96--force{line-height:96px!important}.lh-97{line-height:97px}.lh-97--force{line-height:97px!important}.lh-98{line-height:98px}.lh-98--force{line-height:98px!important}.lh-99{line-height:99px}.lh-99--force{line-height:99px!important}.lh-100{line-height:100px}.lh-100--force{line-height:100px!important}.aspect-ratio-auto{aspect-ratio:auto}.aspect-ratio-auto--force{aspect-ratio:auto!important}.aspect-ratio-1x1{aspect-ratio:1/1}.aspect-ratio-1x1--force{aspect-ratio:1/1!important}.aspect-ratio-1x2{aspect-ratio:1/2}.aspect-ratio-1x2--force{aspect-ratio:1/2!important}.aspect-ratio-2x1{aspect-ratio:2/1}.aspect-ratio-2x1--force{aspect-ratio:2/1!important}.aspect-ratio-3x4{aspect-ratio:3/4}.aspect-ratio-3x4--force{aspect-ratio:3/4!important}.aspect-ratio-4x3{aspect-ratio:4/3}.aspect-ratio-4x3--force{aspect-ratio:4/3!important}.aspect-ratio-9x16{aspect-ratio:9/16}.aspect-ratio-9x16--force{aspect-ratio:9/16!important}.aspect-ratio-16x9{aspect-ratio:16/9}.aspect-ratio-16x9--force{aspect-ratio:16/9!important}.aspect-ratio-half{aspect-ratio:0.5}.aspect-ratio-half--force{aspect-ratio:0.5!important}.aspect-ratio-inherit{aspect-ratio:inherit}.aspect-ratio-inherit--force{aspect-ratio:inherit!important}.aspect-ratio-initial{aspect-ratio:initial}.aspect-ratio-initial--force{aspect-ratio:initial!important}.aspect-ratio-unset{aspect-ratio:unset}.aspect-ratio-unset--force{aspect-ratio:unset!important}.cursor-pointer{cursor:pointer}.cursor-pointer--force{cursor:pointer!important}.cursor-default{cursor:default}.cursor-default--force{cursor:default!important}.cursor-grab{cursor:grab}.cursor-grab--force{cursor:grab!important}.cursor-grabbing{cursor:grabbing}.cursor-grabbing--force{cursor:grabbing!important}.cursor-move{cursor:move}.cursor-move--force{cursor:move!important}.cursor-help{cursor:help}.cursor-help--force{cursor:help!important}.cursor-wait{cursor:wait}.cursor-wait--force{cursor:wait!important}.on-hover-hide:hover,.opacity-0{opacity:0}.opacity-0--force{opacity:0!important}.opacity-01{opacity:.1}.opacity-01--force{opacity:.1!important}.opacity-02{opacity:.2}.opacity-02--force{opacity:.2!important}.opacity-03{opacity:.3}.opacity-03--force{opacity:.3!important}.opacity-04{opacity:.4}.opacity-04--force{opacity:.4!important}.opacity-05{opacity:.5}.opacity-05--force{opacity:.5!important}.opacity-06{opacity:.6}.opacity-06--force{opacity:.6!important}.opacity-07{opacity:.7}.opacity-07--force{opacity:.7!important}.opacity-08{opacity:.8}.opacity-08--force{opacity:.8!important}.opacity-09{opacity:.9}.opacity-09--force{opacity:.9!important}.on-hover-show:hover,.opacity-1,.opacity-10{opacity:1}.opacity-1--force,.opacity-10--force{opacity:1!important}.clearfix::after{content:"";clear:both;display:table}.float-left{float:left}.float-right{float:right}.list-style-none{list-style:none}.list-style-disc{list-style:disc}.list-style-dot{list-style:dot}.text-decoration-strike,.text-line-through,.text-strike{text-decoration:line-through}.text-decoration-strike--force,.text-line-through--force,.text-strike--force{text-decoration:line-through!important}.text-decoration-none,.text-none{text-decoration:none}.text-decoration-none--force,.text-none--force{text-decoration:none!important}.text-super{vertical-align:super}.text-super--force{vertical-align:super!important}.text-sub{vertical-align:sub}.text-sub--force{vertical-align:sub!important}.text-capitalize{text-transform:capitalize}.text-capitalize--force{text-transform:capitalize!important}.text-lowercase{text-transform:lowercase}.text-lowercase--force{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase}.text-uppercase--force{text-transform:uppercase!important}.text-left{text-align:left}.text-left--force{text-align:left!important}.text-center{text-align:center}.text-center--force{text-align:center!important}.text-right{text-align:right}.text-right--force{text-align:right!important}.text-boxed{border-radius:2px;padding:4px 8px;margin:0 8px;font-size:11px;font-weight:600}.text-ellipsis,.text-truncate{display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.overflow-auto{overflow:auto}.overflow-auto--force{overflow:auto!important}.overflow-scroll{overflow:scroll}.overflow-scroll--force{overflow:scroll!important}.overflow-hidden{overflow:hidden}.overflow-hidden--force{overflow:hidden!important}.overflow-overlay{overflow:overlay}.overflow-overlay--force{overflow:overlay!important}.overflow-x-auto{overflow-x:auto}.overflow-x-auto--force{overflow-x:auto!important}.overflow-x-scroll{overflow-x:scroll}.overflow-x-scroll--force{overflow-x:scroll!important}.overflow-x-hidden{overflow-x:hidden}.overflow-x-hidden--force{overflow-x:hidden!important}.overflow-x-overlay{overflow-x:overlay}.overflow-x-overlay--force{overflow-x:overlay!important}.overflow-y-auto{overflow-y:auto}.overflow-y-auto--force{overflow-y:auto!important}.overflow-y-scroll{overflow-y:scroll}.overflow-y-scroll--force{overflow-y:scroll!important}.overflow-y-hidden{overflow-y:hidden}.overflow-y-hidden--force{overflow-y:hidden!important}.overflow-y-overlay{overflow-y:overlay}.overflow-y-overlay--force{overflow-y:overlay!important}.line-clamp-0,.line-clamp-1,.line-clamp-2,.line-clamp-3,.line-clamp-4,.line-clamp-5,.line-clamp-6{overflow:hidden;display:-webkit-box;text-overflow:ellipsis;word-break:break-word;white-space:initial;-webkit-box-orient:vertical}.b-0,.border-0{border:0 solid}.bb-0,.border-bottom-0{border-bottom:0 solid}.bb-0--force,.border-bottom-0--force{border-bottom:0 solid!important}.border-top-0,.bt-0{border-top:0 solid}.border-top-0--force,.bt-0--force{border-top:0 solid!important}.bl-0,.border-left-0{border-left:0 solid}.bl-0--force,.border-left-0--force{border-left:0 solid!important}.border-right-0,.br-0{border-right:0px solid}.border-right-0--force,.br-0--force{border-right:0px solid!important}.b-2,.border-2{border:2px solid}.bb-2,.border-bottom-2{border-bottom:2px solid}.bb-2--force,.border-bottom-2--force{border-bottom:2px solid!important}.border-top-2,.bt-2{border-top:2px solid}.border-top-2--force,.bt-2--force{border-top:2px solid!important}.bl-2,.border-left-2{border-left:2px solid}.bl-2--force,.border-left-2--force{border-left:2px solid!important}.border-right-2,.br-2{border-right:2px solid}.border-right-2--force,.br-2--force{border-right:2px solid!important}.b-4,.border-4{border:4px solid}.bb-4,.border-bottom-4{border-bottom:4px solid}.bb-4--force,.border-bottom-4--force{border-bottom:4px solid!important}.border-top-4,.bt-4{border-top:4px solid}.border-top-4--force,.bt-4--force{border-top:4px solid!important}.bl-4,.border-left-4{border-left:4px solid}.bl-4--force,.border-left-4--force{border-left:4px solid!important}.border-right-4,.br-4{border-right:4px solid}.border-right-4--force,.br-4--force{border-right:4px solid!important}.b-6,.border-6{border:6px solid}.bb-6,.border-bottom-6{border-bottom:6px solid}.bb-6--force,.border-bottom-6--force{border-bottom:6px solid!important}.border-top-6,.bt-6{border-top:6px solid}.border-top-6--force,.bt-6--force{border-top:6px solid!important}.bl-6,.border-left-6{border-left:6px solid}.bl-6--force,.border-left-6--force{border-left:6px solid!important}.border-right-6,.br-6{border-right:6px solid}.border-right-6--force,.br-6--force{border-right:6px solid!important}.b-8,.border-8{border:8px solid}.bb-8,.border-bottom-8{border-bottom:8px solid}.bb-8--force,.border-bottom-8--force{border-bottom:8px solid!important}.border-top-8,.bt-8{border-top:8px solid}.border-top-8--force,.bt-8--force{border-top:8px solid!important}.bl-8,.border-left-8{border-left:8px solid}.bl-8--force,.border-left-8--force{border-left:8px solid!important}.border-right-8,.br-8{border-right:8px solid}.border-right-8--force,.br-8--force{border-right:8px solid!important}.b-none,.border-none{border:none}.b-none--force,.border-none--force{border:none!important}.border-style-solid{border-style:solid}.border-style-solid--force{border-style:solid!important}.border-style-dashed{border-style:dashed}.border-style-dashed--force{border-style:dashed!important}.border-style-dotted{border-style:dotted}.border-style-dotted--force{border-style:dotted!important}.border-style-double{border-style:double}.border-style-double--force{border-style:double!important}.border-style-groove{border-style:groove}.border-style-groove--force{border-style:groove!important}.border-style-ridge{border-style:ridge}.border-style-ridge--force{border-style:ridge!important}.border-style-inset{border-style:inset}.border-style-inset--force{border-style:inset!important}.border-style-outset{border-style:outset}.border-style-outset--force{border-style:outset!important}.border-style-none{border-style:none}.border-style-none--force{border-style:none!important}.radius-0,.radius-bottom-0,.radius-left-0,.radius-none,.radius-right-0,.radius-top-0{border-radius:0}.radius-bottom-0--force,.radius-left-0--force,.radius-none--force,.radius-right-0--force,.radius-top-0--force{border-radius:0!important}.radius-2{border-radius:2px}.radius-bottom-2{border-radius:0 0 2px 2px}.radius-bottom-2--force{border-radius:0 0 2px 2px!important}.radius-top-2{border-radius:2px 2px 0 0}.radius-top-2--force{border-radius:2px 2px 0 0!important}.radius-left-2{border-radius:2px 0 0 2px}.radius-left-2--force{border-radius:2px 0 0 2px!important}.radius-right-2{border-radius:0 2px 2px 0}.radius-right-2--force{border-radius:0 2px 2px 0!important}.radius-4{border-radius:4px}.radius-bottom-4{border-radius:0 0 4px 4px}.radius-bottom-4--force{border-radius:0 0 4px 4px!important}.radius-top-4{border-radius:4px 4px 0 0}.radius-top-4--force{border-radius:4px 4px 0 0!important}.radius-left-4{border-radius:4px 0 0 4px}.radius-left-4--force{border-radius:4px 0 0 4px!important}.radius-right-4{border-radius:0 4px 4px 0}.radius-right-4--force{border-radius:0 4px 4px 0!important}.radius-6{border-radius:6px}.radius-bottom-6{border-radius:0 0 6px 6px}.radius-bottom-6--force{border-radius:0 0 6px 6px!important}.radius-top-6{border-radius:6px 6px 0 0}.radius-top-6--force{border-radius:6px 6px 0 0!important}.radius-left-6{border-radius:6px 0 0 6px}.radius-left-6--force{border-radius:6px 0 0 6px!important}.radius-right-6{border-radius:0 6px 6px 0}.radius-right-6--force{border-radius:0 6px 6px 0!important}.radius-8{border-radius:8px}.radius-bottom-8{border-radius:0 0 8px 8px}.radius-bottom-8--force{border-radius:0 0 8px 8px!important}.radius-top-8{border-radius:8px 8px 0 0}.radius-top-8--force{border-radius:8px 8px 0 0!important}.radius-left-8{border-radius:8px 0 0 8px}.radius-left-8--force{border-radius:8px 0 0 8px!important}.radius-right-8{border-radius:0 8px 8px 0}.radius-right-8--force{border-radius:0 8px 8px 0!important}.radius-10{border-radius:10px}.radius-bottom-10{border-radius:0 0 10px 10px}.radius-bottom-10--force{border-radius:0 0 10px 10px!important}.radius-top-10{border-radius:10px 10px 0 0}.radius-top-10--force{border-radius:10px 10px 0 0!important}.radius-left-10{border-radius:10px 0 0 10px}.radius-left-10--force{border-radius:10px 0 0 10px!important}.radius-right-10{border-radius:0 10px 10px 0}.radius-right-10--force{border-radius:0 10px 10px 0!important}.radius-12{border-radius:12px}.radius-bottom-12{border-radius:0 0 12px 12px}.radius-bottom-12--force{border-radius:0 0 12px 12px!important}.radius-top-12{border-radius:12px 12px 0 0}.radius-top-12--force{border-radius:12px 12px 0 0!important}.radius-left-12{border-radius:12px 0 0 12px}.radius-left-12--force{border-radius:12px 0 0 12px!important}.radius-right-12{border-radius:0 12px 12px 0}.radius-right-12--force{border-radius:0 12px 12px 0!important}.radius-14{border-radius:14px}.radius-bottom-14{border-radius:0 0 14px 14px}.radius-bottom-14--force{border-radius:0 0 14px 14px!important}.radius-top-14{border-radius:14px 14px 0 0}.radius-top-14--force{border-radius:14px 14px 0 0!important}.radius-left-14{border-radius:14px 0 0 14px}.radius-left-14--force{border-radius:14px 0 0 14px!important}.radius-right-14{border-radius:0 14px 14px 0}.radius-right-14--force{border-radius:0 14px 14px 0!important}.radius-16{border-radius:16px}.radius-bottom-16{border-radius:0 0 16px 16px}.radius-bottom-16--force{border-radius:0 0 16px 16px!important}.radius-top-16{border-radius:16px 16px 0 0}.radius-top-16--force{border-radius:16px 16px 0 0!important}.radius-left-16{border-radius:16px 0 0 16px}.radius-left-16--force{border-radius:16px 0 0 16px!important}.radius-right-16{border-radius:0 16px 16px 0}.radius-right-16--force{border-radius:0 16px 16px 0!important}.radius-18{border-radius:18px}.radius-bottom-18{border-radius:0 0 18px 18px}.radius-bottom-18--force{border-radius:0 0 18px 18px!important}.radius-top-18{border-radius:18px 18px 0 0}.radius-top-18--force{border-radius:18px 18px 0 0!important}.radius-left-18{border-radius:18px 0 0 18px}.radius-left-18--force{border-radius:18px 0 0 18px!important}.radius-right-18{border-radius:0 18px 18px 0}.radius-right-18--force{border-radius:0 18px 18px 0!important}.radius-20{border-radius:20px}.radius-bottom-20{border-radius:0 0 20px 20px}.radius-bottom-20--force{border-radius:0 0 20px 20px!important}.radius-top-20{border-radius:20px 20px 0 0}.radius-top-20--force{border-radius:20px 20px 0 0!important}.radius-left-20{border-radius:20px 0 0 20px}.radius-left-20--force{border-radius:20px 0 0 20px!important}.radius-right-20{border-radius:0 20px 20px 0}.radius-right-20--force{border-radius:0 20px 20px 0!important}.radius-22{border-radius:22px}.radius-bottom-22{border-radius:0 0 22px 22px}.radius-bottom-22--force{border-radius:0 0 22px 22px!important}.radius-top-22{border-radius:22px 22px 0 0}.radius-top-22--force{border-radius:22px 22px 0 0!important}.radius-left-22{border-radius:22px 0 0 22px}.radius-left-22--force{border-radius:22px 0 0 22px!important}.radius-right-22{border-radius:0 22px 22px 0}.radius-right-22--force{border-radius:0 22px 22px 0!important}.radius-24{border-radius:24px}.radius-bottom-24{border-radius:0 0 24px 24px}.radius-bottom-24--force{border-radius:0 0 24px 24px!important}.radius-top-24{border-radius:24px 24px 0 0}.radius-top-24--force{border-radius:24px 24px 0 0!important}.radius-left-24{border-radius:24px 0 0 24px}.radius-left-24--force{border-radius:24px 0 0 24px!important}.radius-right-24{border-radius:0 24px 24px 0}.radius-right-24--force{border-radius:0 24px 24px 0!important}.radius-full{border-radius:9999px}.radius-full--force{border-radius:9999px!important}.border-none{border:none!important}.ts-100-l{transition:.1s linear}.ts-100-ei{transition:.1s ease-in}.ts-100-eo{transition:.1s ease-out}.ts-100-eio{transition:.1s ease-in-out}.ts-300-l{transition:.3s linear}.ts-300-ei{transition:.3s ease-in}.ts-300-eo{transition:.3s ease-out}.ts-300-eio{transition:.3s ease-in-out}@keyframes spin{0%{transform:rotate(0)}100%{transform:rotate(360deg)}}.rotate-infinity-1s{animation:1s infinite spin}.rotate-infinity-2s{animation:2s infinite spin}.rotate-infinity-3s{animation:3s infinite spin}.line-clamp-0{-webkit-line-clamp:0;line-clamp:0}.line-clamp-1{-webkit-line-clamp:1;line-clamp:1}.line-clamp-2{-webkit-line-clamp:2;line-clamp:2}.line-clamp-3{-webkit-line-clamp:3;line-clamp:3}.line-clamp-4{-webkit-line-clamp:4;line-clamp:4}.line-clamp-5{-webkit-line-clamp:5;line-clamp:5}.line-clamp-6{-webkit-line-clamp:6;line-clamp:6}.line-clamp-none{overflow:visible;display:block;-webkit-box-orient:horizontal;-webkit-line-clamp:none;line-clamp:none}.masonry-1{column-count:1}.masonry-10>*,.masonry-11>*,.masonry-12>*,.masonry-1>*,.masonry-2>*,.masonry-3>*,.masonry-4>*,.masonry-5>*,.masonry-6>*,.masonry-7>*,.masonry-8>*,.masonry-9>*{break-inside:avoid;display:inline-block;width:100%}.masonry-2{column-count:2}.masonry-3{column-count:3}.masonry-4{column-count:4}.masonry-5{column-count:5}.masonry-6{column-count:6}.masonry-7{column-count:7}.masonry-8{column-count:8}.masonry-9{column-count:9}.masonry-10{column-count:10}.masonry-11{column-count:11}.masonry-12{column-count:12}.masonry-gap-0{column-gap:0}.masonry-gap-4{column-gap:4px}.masonry-gap-8{column-gap:8px}.masonry-gap-12{column-gap:12px}.masonry-gap-16{column-gap:16px}.masonry-gap-20{column-gap:20px}.masonry-gap-24{column-gap:24px}.masonry-gap-28{column-gap:28px}.masonry-gap-32{column-gap:32px}.masonry-gap-36{column-gap:36px}.masonry-gap-40{column-gap:40px}.masonry-gap-44{column-gap:44px}.masonry-gap-48{column-gap:48px}@media screen and (max-width:599px){.h-xs-0{height:0}.h-xs-0--force{height:0!important}.max-h-xs-0{max-height:0}.max-h-xs-0--force{max-height:0!important}.min-h-xs-0{min-height:0}.min-h-xs-0--force{min-height:0!important}.h-xs-4{height:4px}.h-xs-4--force{height:4px!important}.max-h-xs-4{max-height:4px}.max-h-xs-4--force{max-height:4px!important}.min-h-xs-4{min-height:4px}.min-h-xs-4--force{min-height:4px!important}.h-xs-8{height:8px}.h-xs-8--force{height:8px!important}.max-h-xs-8{max-height:8px}.max-h-xs-8--force{max-height:8px!important}.min-h-xs-8{min-height:8px}.min-h-xs-8--force{min-height:8px!important}.h-xs-12{height:12px}.h-xs-12--force{height:12px!important}.max-h-xs-12{max-height:12px}.max-h-xs-12--force{max-height:12px!important}.min-h-xs-12{min-height:12px}.min-h-xs-12--force{min-height:12px!important}.h-xs-16{height:16px}.h-xs-16--force{height:16px!important}.max-h-xs-16{max-height:16px}.max-h-xs-16--force{max-height:16px!important}.min-h-xs-16{min-height:16px}.min-h-xs-16--force{min-height:16px!important}.h-xs-20{height:20px}.h-xs-20--force{height:20px!important}.max-h-xs-20{max-height:20px}.max-h-xs-20--force{max-height:20px!important}.min-h-xs-20{min-height:20px}.min-h-xs-20--force{min-height:20px!important}.h-xs-24{height:24px}.h-xs-24--force{height:24px!important}.max-h-xs-24{max-height:24px}.max-h-xs-24--force{max-height:24px!important}.min-h-xs-24{min-height:24px}.min-h-xs-24--force{min-height:24px!important}.h-xs-28{height:28px}.h-xs-28--force{height:28px!important}.max-h-xs-28{max-height:28px}.max-h-xs-28--force{max-height:28px!important}.min-h-xs-28{min-height:28px}.min-h-xs-28--force{min-height:28px!important}.h-xs-32{height:32px}.h-xs-32--force{height:32px!important}.max-h-xs-32{max-height:32px}.max-h-xs-32--force{max-height:32px!important}.min-h-xs-32{min-height:32px}.min-h-xs-32--force{min-height:32px!important}.h-xs-36{height:36px}.h-xs-36--force{height:36px!important}.max-h-xs-36{max-height:36px}.max-h-xs-36--force{max-height:36px!important}.min-h-xs-36{min-height:36px}.min-h-xs-36--force{min-height:36px!important}.h-xs-40{height:40px}.h-xs-40--force{height:40px!important}.max-h-xs-40{max-height:40px}.max-h-xs-40--force{max-height:40px!important}.min-h-xs-40{min-height:40px}.min-h-xs-40--force{min-height:40px!important}.h-xs-44{height:44px}.h-xs-44--force{height:44px!important}.max-h-xs-44{max-height:44px}.max-h-xs-44--force{max-height:44px!important}.min-h-xs-44{min-height:44px}.min-h-xs-44--force{min-height:44px!important}.h-xs-48{height:48px}.h-xs-48--force{height:48px!important}.max-h-xs-48{max-height:48px}.max-h-xs-48--force{max-height:48px!important}.min-h-xs-48{min-height:48px}.min-h-xs-48--force{min-height:48px!important}.h-xs-52{height:52px}.h-xs-52--force{height:52px!important}.max-h-xs-52{max-height:52px}.max-h-xs-52--force{max-height:52px!important}.min-h-xs-52{min-height:52px}.min-h-xs-52--force{min-height:52px!important}.h-xs-56{height:56px}.h-xs-56--force{height:56px!important}.max-h-xs-56{max-height:56px}.max-h-xs-56--force{max-height:56px!important}.min-h-xs-56{min-height:56px}.min-h-xs-56--force{min-height:56px!important}.h-xs-60{height:60px}.h-xs-60--force{height:60px!important}.max-h-xs-60{max-height:60px}.max-h-xs-60--force{max-height:60px!important}.min-h-xs-60{min-height:60px}.min-h-xs-60--force{min-height:60px!important}.h-xs-64{height:64px}.h-xs-64--force{height:64px!important}.max-h-xs-64{max-height:64px}.max-h-xs-64--force{max-height:64px!important}.min-h-xs-64{min-height:64px}.min-h-xs-64--force{min-height:64px!important}.h-xs-68{height:68px}.h-xs-68--force{height:68px!important}.max-h-xs-68{max-height:68px}.max-h-xs-68--force{max-height:68px!important}.min-h-xs-68{min-height:68px}.min-h-xs-68--force{min-height:68px!important}.h-xs-72{height:72px}.h-xs-72--force{height:72px!important}.max-h-xs-72{max-height:72px}.max-h-xs-72--force{max-height:72px!important}.min-h-xs-72{min-height:72px}.min-h-xs-72--force{min-height:72px!important}.h-xs-76{height:76px}.h-xs-76--force{height:76px!important}.max-h-xs-76{max-height:76px}.max-h-xs-76--force{max-height:76px!important}.min-h-xs-76{min-height:76px}.min-h-xs-76--force{min-height:76px!important}.h-xs-80{height:80px}.h-xs-80--force{height:80px!important}.max-h-xs-80{max-height:80px}.max-h-xs-80--force{max-height:80px!important}.min-h-xs-80{min-height:80px}.min-h-xs-80--force{min-height:80px!important}.h-xs-84{height:84px}.h-xs-84--force{height:84px!important}.max-h-xs-84{max-height:84px}.max-h-xs-84--force{max-height:84px!important}.min-h-xs-84{min-height:84px}.min-h-xs-84--force{min-height:84px!important}.h-xs-88{height:88px}.h-xs-88--force{height:88px!important}.max-h-xs-88{max-height:88px}.max-h-xs-88--force{max-height:88px!important}.min-h-xs-88{min-height:88px}.min-h-xs-88--force{min-height:88px!important}.h-xs-92{height:92px}.h-xs-92--force{height:92px!important}.max-h-xs-92{max-height:92px}.max-h-xs-92--force{max-height:92px!important}.min-h-xs-92{min-height:92px}.min-h-xs-92--force{min-height:92px!important}.h-xs-96{height:96px}.h-xs-96--force{height:96px!important}.max-h-xs-96{max-height:96px}.max-h-xs-96--force{max-height:96px!important}.min-h-xs-96{min-height:96px}.min-h-xs-96--force{min-height:96px!important}.h-xs-100{height:100px}.h-xs-100--force{height:100px!important}.max-h-xs-100{max-height:100px}.max-h-xs-100--force{max-height:100px!important}.min-h-xs-100{min-height:100px}.min-h-xs-100--force{min-height:100px!important}.h-xs-104{height:104px}.h-xs-104--force{height:104px!important}.max-h-xs-104{max-height:104px}.max-h-xs-104--force{max-height:104px!important}.min-h-xs-104{min-height:104px}.min-h-xs-104--force{min-height:104px!important}.h-xs-108{height:108px}.h-xs-108--force{height:108px!important}.max-h-xs-108{max-height:108px}.max-h-xs-108--force{max-height:108px!important}.min-h-xs-108{min-height:108px}.min-h-xs-108--force{min-height:108px!important}.h-xs-112{height:112px}.h-xs-112--force{height:112px!important}.max-h-xs-112{max-height:112px}.max-h-xs-112--force{max-height:112px!important}.min-h-xs-112{min-height:112px}.min-h-xs-112--force{min-height:112px!important}.h-xs-116{height:116px}.h-xs-116--force{height:116px!important}.max-h-xs-116{max-height:116px}.max-h-xs-116--force{max-height:116px!important}.min-h-xs-116{min-height:116px}.min-h-xs-116--force{min-height:116px!important}.h-xs-120{height:120px}.h-xs-120--force{height:120px!important}.max-h-xs-120{max-height:120px}.max-h-xs-120--force{max-height:120px!important}.min-h-xs-120{min-height:120px}.min-h-xs-120--force{min-height:120px!important}.h-xs-124{height:124px}.h-xs-124--force{height:124px!important}.max-h-xs-124{max-height:124px}.max-h-xs-124--force{max-height:124px!important}.min-h-xs-124{min-height:124px}.min-h-xs-124--force{min-height:124px!important}.h-xs-128{height:128px}.h-xs-128--force{height:128px!important}.max-h-xs-128{max-height:128px}.max-h-xs-128--force{max-height:128px!important}.min-h-xs-128{min-height:128px}.min-h-xs-128--force{min-height:128px!important}.h-xs-132{height:132px}.h-xs-132--force{height:132px!important}.max-h-xs-132{max-height:132px}.max-h-xs-132--force{max-height:132px!important}.min-h-xs-132{min-height:132px}.min-h-xs-132--force{min-height:132px!important}.h-xs-136{height:136px}.h-xs-136--force{height:136px!important}.max-h-xs-136{max-height:136px}.max-h-xs-136--force{max-height:136px!important}.min-h-xs-136{min-height:136px}.min-h-xs-136--force{min-height:136px!important}.h-xs-140{height:140px}.h-xs-140--force{height:140px!important}.max-h-xs-140{max-height:140px}.max-h-xs-140--force{max-height:140px!important}.min-h-xs-140{min-height:140px}.min-h-xs-140--force{min-height:140px!important}.h-xs-144{height:144px}.h-xs-144--force{height:144px!important}.max-h-xs-144{max-height:144px}.max-h-xs-144--force{max-height:144px!important}.min-h-xs-144{min-height:144px}.min-h-xs-144--force{min-height:144px!important}.h-xs-148{height:148px}.h-xs-148--force{height:148px!important}.max-h-xs-148{max-height:148px}.max-h-xs-148--force{max-height:148px!important}.min-h-xs-148{min-height:148px}.min-h-xs-148--force{min-height:148px!important}.h-xs-152{height:152px}.h-xs-152--force{height:152px!important}.max-h-xs-152{max-height:152px}.max-h-xs-152--force{max-height:152px!important}.min-h-xs-152{min-height:152px}.min-h-xs-152--force{min-height:152px!important}.h-xs-156{height:156px}.h-xs-156--force{height:156px!important}.max-h-xs-156{max-height:156px}.max-h-xs-156--force{max-height:156px!important}.min-h-xs-156{min-height:156px}.min-h-xs-156--force{min-height:156px!important}.h-xs-160{height:160px}.h-xs-160--force{height:160px!important}.max-h-xs-160{max-height:160px}.max-h-xs-160--force{max-height:160px!important}.min-h-xs-160{min-height:160px}.min-h-xs-160--force{min-height:160px!important}.h-xs-164{height:164px}.h-xs-164--force{height:164px!important}.max-h-xs-164{max-height:164px}.max-h-xs-164--force{max-height:164px!important}.min-h-xs-164{min-height:164px}.min-h-xs-164--force{min-height:164px!important}.h-xs-168{height:168px}.h-xs-168--force{height:168px!important}.max-h-xs-168{max-height:168px}.max-h-xs-168--force{max-height:168px!important}.min-h-xs-168{min-height:168px}.min-h-xs-168--force{min-height:168px!important}.h-xs-172{height:172px}.h-xs-172--force{height:172px!important}.max-h-xs-172{max-height:172px}.max-h-xs-172--force{max-height:172px!important}.min-h-xs-172{min-height:172px}.min-h-xs-172--force{min-height:172px!important}.h-xs-176{height:176px}.h-xs-176--force{height:176px!important}.max-h-xs-176{max-height:176px}.max-h-xs-176--force{max-height:176px!important}.min-h-xs-176{min-height:176px}.min-h-xs-176--force{min-height:176px!important}.h-xs-180{height:180px}.h-xs-180--force{height:180px!important}.max-h-xs-180{max-height:180px}.max-h-xs-180--force{max-height:180px!important}.min-h-xs-180{min-height:180px}.min-h-xs-180--force{min-height:180px!important}.h-xs-184{height:184px}.h-xs-184--force{height:184px!important}.max-h-xs-184{max-height:184px}.max-h-xs-184--force{max-height:184px!important}.min-h-xs-184{min-height:184px}.min-h-xs-184--force{min-height:184px!important}.h-xs-188{height:188px}.h-xs-188--force{height:188px!important}.max-h-xs-188{max-height:188px}.max-h-xs-188--force{max-height:188px!important}.min-h-xs-188{min-height:188px}.min-h-xs-188--force{min-height:188px!important}.h-xs-192{height:192px}.h-xs-192--force{height:192px!important}.max-h-xs-192{max-height:192px}.max-h-xs-192--force{max-height:192px!important}.min-h-xs-192{min-height:192px}.min-h-xs-192--force{min-height:192px!important}.h-xs-196{height:196px}.h-xs-196--force{height:196px!important}.max-h-xs-196{max-height:196px}.max-h-xs-196--force{max-height:196px!important}.min-h-xs-196{min-height:196px}.min-h-xs-196--force{min-height:196px!important}.h-xs-200{height:200px}.h-xs-200--force{height:200px!important}.max-h-xs-200{max-height:200px}.max-h-xs-200--force{max-height:200px!important}.min-h-xs-200{min-height:200px}.min-h-xs-200--force{min-height:200px!important}.h-xs-204{height:204px}.h-xs-204--force{height:204px!important}.max-h-xs-204{max-height:204px}.max-h-xs-204--force{max-height:204px!important}.min-h-xs-204{min-height:204px}.min-h-xs-204--force{min-height:204px!important}.h-xs-208{height:208px}.h-xs-208--force{height:208px!important}.max-h-xs-208{max-height:208px}.max-h-xs-208--force{max-height:208px!important}.min-h-xs-208{min-height:208px}.min-h-xs-208--force{min-height:208px!important}.h-xs-212{height:212px}.h-xs-212--force{height:212px!important}.max-h-xs-212{max-height:212px}.max-h-xs-212--force{max-height:212px!important}.min-h-xs-212{min-height:212px}.min-h-xs-212--force{min-height:212px!important}.h-xs-216{height:216px}.h-xs-216--force{height:216px!important}.max-h-xs-216{max-height:216px}.max-h-xs-216--force{max-height:216px!important}.min-h-xs-216{min-height:216px}.min-h-xs-216--force{min-height:216px!important}.h-xs-220{height:220px}.h-xs-220--force{height:220px!important}.max-h-xs-220{max-height:220px}.max-h-xs-220--force{max-height:220px!important}.min-h-xs-220{min-height:220px}.min-h-xs-220--force{min-height:220px!important}.h-xs-224{height:224px}.h-xs-224--force{height:224px!important}.max-h-xs-224{max-height:224px}.max-h-xs-224--force{max-height:224px!important}.min-h-xs-224{min-height:224px}.min-h-xs-224--force{min-height:224px!important}.h-xs-228{height:228px}.h-xs-228--force{height:228px!important}.max-h-xs-228{max-height:228px}.max-h-xs-228--force{max-height:228px!important}.min-h-xs-228{min-height:228px}.min-h-xs-228--force{min-height:228px!important}.h-xs-232{height:232px}.h-xs-232--force{height:232px!important}.max-h-xs-232{max-height:232px}.max-h-xs-232--force{max-height:232px!important}.min-h-xs-232{min-height:232px}.min-h-xs-232--force{min-height:232px!important}.h-xs-236{height:236px}.h-xs-236--force{height:236px!important}.max-h-xs-236{max-height:236px}.max-h-xs-236--force{max-height:236px!important}.min-h-xs-236{min-height:236px}.min-h-xs-236--force{min-height:236px!important}.h-xs-240{height:240px}.h-xs-240--force{height:240px!important}.max-h-xs-240{max-height:240px}.max-h-xs-240--force{max-height:240px!important}.min-h-xs-240{min-height:240px}.min-h-xs-240--force{min-height:240px!important}.h-xs-244{height:244px}.h-xs-244--force{height:244px!important}.max-h-xs-244{max-height:244px}.max-h-xs-244--force{max-height:244px!important}.min-h-xs-244{min-height:244px}.min-h-xs-244--force{min-height:244px!important}.h-xs-248{height:248px}.h-xs-248--force{height:248px!important}.max-h-xs-248{max-height:248px}.max-h-xs-248--force{max-height:248px!important}.min-h-xs-248{min-height:248px}.min-h-xs-248--force{min-height:248px!important}.h-xs-252{height:252px}.h-xs-252--force{height:252px!important}.max-h-xs-252{max-height:252px}.max-h-xs-252--force{max-height:252px!important}.min-h-xs-252{min-height:252px}.min-h-xs-252--force{min-height:252px!important}.h-xs-256{height:256px}.h-xs-256--force{height:256px!important}.max-h-xs-256{max-height:256px}.max-h-xs-256--force{max-height:256px!important}.min-h-xs-256{min-height:256px}.min-h-xs-256--force{min-height:256px!important}.h-xs-0-p{height:0%}.h-xs-0-p--force{height:0%!important}.max-h-xs-0-p{max-height:0%}.max-h-xs-0-p--force{max-height:0%!important}.min-h-xs-0-p{min-height:0}.min-h-xs-0-p--force{min-height:0!important}.h-xs-5-p{height:5%}.h-xs-5-p--force{height:5%!important}.max-h-xs-5-p{max-height:5%}.max-h-xs-5-p--force{max-height:5%!important}.min-h-xs-5-p{min-height:5%}.min-h-xs-5-p--force{min-height:5%!important}.h-xs-10-p{height:10%}.h-xs-10-p--force{height:10%!important}.max-h-xs-10-p{max-height:10%}.max-h-xs-10-p--force{max-height:10%!important}.min-h-xs-10-p{min-height:10%}.min-h-xs-10-p--force{min-height:10%!important}.h-xs-15-p{height:15%}.h-xs-15-p--force{height:15%!important}.max-h-xs-15-p{max-height:15%}.max-h-xs-15-p--force{max-height:15%!important}.min-h-xs-15-p{min-height:15%}.min-h-xs-15-p--force{min-height:15%!important}.h-xs-20-p{height:20%}.h-xs-20-p--force{height:20%!important}.max-h-xs-20-p{max-height:20%}.max-h-xs-20-p--force{max-height:20%!important}.min-h-xs-20-p{min-height:20%}.min-h-xs-20-p--force{min-height:20%!important}.h-xs-25-p{height:25%}.h-xs-25-p--force{height:25%!important}.max-h-xs-25-p{max-height:25%}.max-h-xs-25-p--force{max-height:25%!important}.min-h-xs-25-p{min-height:25%}.min-h-xs-25-p--force{min-height:25%!important}.h-xs-30-p{height:30%}.h-xs-30-p--force{height:30%!important}.max-h-xs-30-p{max-height:30%}.max-h-xs-30-p--force{max-height:30%!important}.min-h-xs-30-p{min-height:30%}.min-h-xs-30-p--force{min-height:30%!important}.h-xs-35-p{height:35%}.h-xs-35-p--force{height:35%!important}.max-h-xs-35-p{max-height:35%}.max-h-xs-35-p--force{max-height:35%!important}.min-h-xs-35-p{min-height:35%}.min-h-xs-35-p--force{min-height:35%!important}.h-xs-40-p{height:40%}.h-xs-40-p--force{height:40%!important}.max-h-xs-40-p{max-height:40%}.max-h-xs-40-p--force{max-height:40%!important}.min-h-xs-40-p{min-height:40%}.min-h-xs-40-p--force{min-height:40%!important}.h-xs-45-p{height:45%}.h-xs-45-p--force{height:45%!important}.max-h-xs-45-p{max-height:45%}.max-h-xs-45-p--force{max-height:45%!important}.min-h-xs-45-p{min-height:45%}.min-h-xs-45-p--force{min-height:45%!important}.h-xs-50-p{height:50%}.h-xs-50-p--force{height:50%!important}.max-h-xs-50-p{max-height:50%}.max-h-xs-50-p--force{max-height:50%!important}.min-h-xs-50-p{min-height:50%}.min-h-xs-50-p--force{min-height:50%!important}.h-xs-55-p{height:55%}.h-xs-55-p--force{height:55%!important}.max-h-xs-55-p{max-height:55%}.max-h-xs-55-p--force{max-height:55%!important}.min-h-xs-55-p{min-height:55%}.min-h-xs-55-p--force{min-height:55%!important}.h-xs-60-p{height:60%}.h-xs-60-p--force{height:60%!important}.max-h-xs-60-p{max-height:60%}.max-h-xs-60-p--force{max-height:60%!important}.min-h-xs-60-p{min-height:60%}.min-h-xs-60-p--force{min-height:60%!important}.h-xs-65-p{height:65%}.h-xs-65-p--force{height:65%!important}.max-h-xs-65-p{max-height:65%}.max-h-xs-65-p--force{max-height:65%!important}.min-h-xs-65-p{min-height:65%}.min-h-xs-65-p--force{min-height:65%!important}.h-xs-70-p{height:70%}.h-xs-70-p--force{height:70%!important}.max-h-xs-70-p{max-height:70%}.max-h-xs-70-p--force{max-height:70%!important}.min-h-xs-70-p{min-height:70%}.min-h-xs-70-p--force{min-height:70%!important}.h-xs-75-p{height:75%}.h-xs-75-p--force{height:75%!important}.max-h-xs-75-p{max-height:75%}.max-h-xs-75-p--force{max-height:75%!important}.min-h-xs-75-p{min-height:75%}.min-h-xs-75-p--force{min-height:75%!important}.h-xs-80-p{height:80%}.h-xs-80-p--force{height:80%!important}.max-h-xs-80-p{max-height:80%}.max-h-xs-80-p--force{max-height:80%!important}.min-h-xs-80-p{min-height:80%}.min-h-xs-80-p--force{min-height:80%!important}.h-xs-85-p{height:85%}.h-xs-85-p--force{height:85%!important}.max-h-xs-85-p{max-height:85%}.max-h-xs-85-p--force{max-height:85%!important}.min-h-xs-85-p{min-height:85%}.min-h-xs-85-p--force{min-height:85%!important}.h-xs-90-p{height:90%}.h-xs-90-p--force{height:90%!important}.max-h-xs-90-p{max-height:90%}.max-h-xs-90-p--force{max-height:90%!important}.min-h-xs-90-p{min-height:90%}.min-h-xs-90-p--force{min-height:90%!important}.h-xs-95-p{height:95%}.h-xs-95-p--force{height:95%!important}.max-h-xs-95-p{max-height:95%}.max-h-xs-95-p--force{max-height:95%!important}.min-h-xs-95-p{min-height:95%}.min-h-xs-95-p--force{min-height:95%!important}.h-xs-100-p{height:100%}.h-xs-100-p--force{height:100%!important}.max-h-xs-100-p{max-height:100%}.max-h-xs-100-p--force{max-height:100%!important}.min-h-xs-100-p{min-height:100%}.min-h-xs-100-p--force{min-height:100%!important}.h-xs-300{height:300px}.h-xs-300--force{height:300px!important}.max-h-xs-300{max-height:300px}.max-h-xs-300--force{max-height:300px!important}.min-h-xs-300{min-height:300px}.min-h-xs-300--force{min-height:300px!important}.h-xs-400{height:400px}.h-xs-400--force{height:400px!important}.max-h-xs-400{max-height:400px}.max-h-xs-400--force{max-height:400px!important}.min-h-xs-400{min-height:400px}.min-h-xs-400--force{min-height:400px!important}.h-xs-500{height:500px}.h-xs-500--force{height:500px!important}.max-h-xs-500{max-height:500px}.max-h-xs-500--force{max-height:500px!important}.min-h-xs-500{min-height:500px}.min-h-xs-500--force{min-height:500px!important}.h-xs-600{height:600px}.h-xs-600--force{height:600px!important}.max-h-xs-600{max-height:600px}.max-h-xs-600--force{max-height:600px!important}.min-h-xs-600{min-height:600px}.min-h-xs-600--force{min-height:600px!important}.h-xs-700{height:700px}.h-xs-700--force{height:700px!important}.max-h-xs-700{max-height:700px}.max-h-xs-700--force{max-height:700px!important}.min-h-xs-700{min-height:700px}.min-h-xs-700--force{min-height:700px!important}.h-xs-800{height:800px}.h-xs-800--force{height:800px!important}.max-h-xs-800{max-height:800px}.max-h-xs-800--force{max-height:800px!important}.min-h-xs-800{min-height:800px}.min-h-xs-800--force{min-height:800px!important}.h-xs-900{height:900px}.h-xs-900--force{height:900px!important}.max-h-xs-900{max-height:900px}.max-h-xs-900--force{max-height:900px!important}.min-h-xs-900{min-height:900px}.min-h-xs-900--force{min-height:900px!important}.h-xs-1000{height:1000px}.h-xs-1000--force{height:1000px!important}.max-h-xs-1000{max-height:1000px}.max-h-xs-1000--force{max-height:1000px!important}.min-h-xs-1000{min-height:1000px}.min-h-xs-1000--force{min-height:1000px!important}.h-xs-1100{height:1100px}.h-xs-1100--force{height:1100px!important}.max-h-xs-1100{max-height:1100px}.max-h-xs-1100--force{max-height:1100px!important}.min-h-xs-1100{min-height:1100px}.min-h-xs-1100--force{min-height:1100px!important}.h-xs-1200{height:1200px}.h-xs-1200--force{height:1200px!important}.max-h-xs-1200{max-height:1200px}.max-h-xs-1200--force{max-height:1200px!important}.min-h-xs-1200{min-height:1200px}.min-h-xs-1200--force{min-height:1200px!important}.h-xs-1300{height:1300px}.h-xs-1300--force{height:1300px!important}.max-h-xs-1300{max-height:1300px}.max-h-xs-1300--force{max-height:1300px!important}.min-h-xs-1300{min-height:1300px}.min-h-xs-1300--force{min-height:1300px!important}.h-xs-1400{height:1400px}.h-xs-1400--force{height:1400px!important}.max-h-xs-1400{max-height:1400px}.max-h-xs-1400--force{max-height:1400px!important}.min-h-xs-1400{min-height:1400px}.min-h-xs-1400--force{min-height:1400px!important}.h-xs-1500{height:1500px}.h-xs-1500--force{height:1500px!important}.max-h-xs-1500{max-height:1500px}.max-h-xs-1500--force{max-height:1500px!important}.min-h-xs-1500{min-height:1500px}.min-h-xs-1500--force{min-height:1500px!important}.h-xs-1600{height:1600px}.h-xs-1600--force{height:1600px!important}.max-h-xs-1600{max-height:1600px}.max-h-xs-1600--force{max-height:1600px!important}.min-h-xs-1600{min-height:1600px}.min-h-xs-1600--force{min-height:1600px!important}.h-xs-1700{height:1700px}.h-xs-1700--force{height:1700px!important}.max-h-xs-1700{max-height:1700px}.max-h-xs-1700--force{max-height:1700px!important}.min-h-xs-1700{min-height:1700px}.min-h-xs-1700--force{min-height:1700px!important}.h-xs-1800{height:1800px}.h-xs-1800--force{height:1800px!important}.max-h-xs-1800{max-height:1800px}.max-h-xs-1800--force{max-height:1800px!important}.min-h-xs-1800{min-height:1800px}.min-h-xs-1800--force{min-height:1800px!important}.h-xs-1900{height:1900px}.h-xs-1900--force{height:1900px!important}.max-h-xs-1900{max-height:1900px}.max-h-xs-1900--force{max-height:1900px!important}.min-h-xs-1900{min-height:1900px}.min-h-xs-1900--force{min-height:1900px!important}.h-xs-2000{height:2000px}.h-xs-2000--force{height:2000px!important}.max-h-xs-2000{max-height:2000px}.max-h-xs-2000--force{max-height:2000px!important}.min-h-xs-2000{min-height:2000px}.min-h-xs-2000--force{min-height:2000px!important}.h-xs-auto{height:auto}.h-xs-auto--force{height:auto!important}.w-xs-0{width:0}.w-xs-0--force{width:0!important}.max-w-xs-0{max-width:0}.max-w-xs-0--force{max-width:0!important}.min-w-xs-0{min-width:0}.min-w-xs-0--force{min-width:0!important}.w-xs-4{width:4px}.w-xs-4--force{width:4px!important}.max-w-xs-4{max-width:4px}.max-w-xs-4--force{max-width:4px!important}.min-w-xs-4{min-width:4px}.min-w-xs-4--force{min-width:4px!important}.w-xs-8{width:8px}.w-xs-8--force{width:8px!important}.max-w-xs-8{max-width:8px}.max-w-xs-8--force{max-width:8px!important}.min-w-xs-8{min-width:8px}.min-w-xs-8--force{min-width:8px!important}.w-xs-12{width:12px}.w-xs-12--force{width:12px!important}.max-w-xs-12{max-width:12px}.max-w-xs-12--force{max-width:12px!important}.min-w-xs-12{min-width:12px}.min-w-xs-12--force{min-width:12px!important}.w-xs-16{width:16px}.w-xs-16--force{width:16px!important}.max-w-xs-16{max-width:16px}.max-w-xs-16--force{max-width:16px!important}.min-w-xs-16{min-width:16px}.min-w-xs-16--force{min-width:16px!important}.w-xs-20{width:20px}.w-xs-20--force{width:20px!important}.max-w-xs-20{max-width:20px}.max-w-xs-20--force{max-width:20px!important}.min-w-xs-20{min-width:20px}.min-w-xs-20--force{min-width:20px!important}.w-xs-24{width:24px}.w-xs-24--force{width:24px!important}.max-w-xs-24{max-width:24px}.max-w-xs-24--force{max-width:24px!important}.min-w-xs-24{min-width:24px}.min-w-xs-24--force{min-width:24px!important}.w-xs-28{width:28px}.w-xs-28--force{width:28px!important}.max-w-xs-28{max-width:28px}.max-w-xs-28--force{max-width:28px!important}.min-w-xs-28{min-width:28px}.min-w-xs-28--force{min-width:28px!important}.w-xs-32{width:32px}.w-xs-32--force{width:32px!important}.max-w-xs-32{max-width:32px}.max-w-xs-32--force{max-width:32px!important}.min-w-xs-32{min-width:32px}.min-w-xs-32--force{min-width:32px!important}.w-xs-36{width:36px}.w-xs-36--force{width:36px!important}.max-w-xs-36{max-width:36px}.max-w-xs-36--force{max-width:36px!important}.min-w-xs-36{min-width:36px}.min-w-xs-36--force{min-width:36px!important}.w-xs-40{width:40px}.w-xs-40--force{width:40px!important}.max-w-xs-40{max-width:40px}.max-w-xs-40--force{max-width:40px!important}.min-w-xs-40{min-width:40px}.min-w-xs-40--force{min-width:40px!important}.w-xs-44{width:44px}.w-xs-44--force{width:44px!important}.max-w-xs-44{max-width:44px}.max-w-xs-44--force{max-width:44px!important}.min-w-xs-44{min-width:44px}.min-w-xs-44--force{min-width:44px!important}.w-xs-48{width:48px}.w-xs-48--force{width:48px!important}.max-w-xs-48{max-width:48px}.max-w-xs-48--force{max-width:48px!important}.min-w-xs-48{min-width:48px}.min-w-xs-48--force{min-width:48px!important}.w-xs-52{width:52px}.w-xs-52--force{width:52px!important}.max-w-xs-52{max-width:52px}.max-w-xs-52--force{max-width:52px!important}.min-w-xs-52{min-width:52px}.min-w-xs-52--force{min-width:52px!important}.w-xs-56{width:56px}.w-xs-56--force{width:56px!important}.max-w-xs-56{max-width:56px}.max-w-xs-56--force{max-width:56px!important}.min-w-xs-56{min-width:56px}.min-w-xs-56--force{min-width:56px!important}.w-xs-60{width:60px}.w-xs-60--force{width:60px!important}.max-w-xs-60{max-width:60px}.max-w-xs-60--force{max-width:60px!important}.min-w-xs-60{min-width:60px}.min-w-xs-60--force{min-width:60px!important}.w-xs-64{width:64px}.w-xs-64--force{width:64px!important}.max-w-xs-64{max-width:64px}.max-w-xs-64--force{max-width:64px!important}.min-w-xs-64{min-width:64px}.min-w-xs-64--force{min-width:64px!important}.w-xs-68{width:68px}.w-xs-68--force{width:68px!important}.max-w-xs-68{max-width:68px}.max-w-xs-68--force{max-width:68px!important}.min-w-xs-68{min-width:68px}.min-w-xs-68--force{min-width:68px!important}.w-xs-72{width:72px}.w-xs-72--force{width:72px!important}.max-w-xs-72{max-width:72px}.max-w-xs-72--force{max-width:72px!important}.min-w-xs-72{min-width:72px}.min-w-xs-72--force{min-width:72px!important}.w-xs-76{width:76px}.w-xs-76--force{width:76px!important}.max-w-xs-76{max-width:76px}.max-w-xs-76--force{max-width:76px!important}.min-w-xs-76{min-width:76px}.min-w-xs-76--force{min-width:76px!important}.w-xs-80{width:80px}.w-xs-80--force{width:80px!important}.max-w-xs-80{max-width:80px}.max-w-xs-80--force{max-width:80px!important}.min-w-xs-80{min-width:80px}.min-w-xs-80--force{min-width:80px!important}.w-xs-84{width:84px}.w-xs-84--force{width:84px!important}.max-w-xs-84{max-width:84px}.max-w-xs-84--force{max-width:84px!important}.min-w-xs-84{min-width:84px}.min-w-xs-84--force{min-width:84px!important}.w-xs-88{width:88px}.w-xs-88--force{width:88px!important}.max-w-xs-88{max-width:88px}.max-w-xs-88--force{max-width:88px!important}.min-w-xs-88{min-width:88px}.min-w-xs-88--force{min-width:88px!important}.w-xs-92{width:92px}.w-xs-92--force{width:92px!important}.max-w-xs-92{max-width:92px}.max-w-xs-92--force{max-width:92px!important}.min-w-xs-92{min-width:92px}.min-w-xs-92--force{min-width:92px!important}.w-xs-96{width:96px}.w-xs-96--force{width:96px!important}.max-w-xs-96{max-width:96px}.max-w-xs-96--force{max-width:96px!important}.min-w-xs-96{min-width:96px}.min-w-xs-96--force{min-width:96px!important}.w-xs-100{width:100px}.w-xs-100--force{width:100px!important}.max-w-xs-100{max-width:100px}.max-w-xs-100--force{max-width:100px!important}.min-w-xs-100{min-width:100px}.min-w-xs-100--force{min-width:100px!important}.w-xs-104{width:104px}.w-xs-104--force{width:104px!important}.max-w-xs-104{max-width:104px}.max-w-xs-104--force{max-width:104px!important}.min-w-xs-104{min-width:104px}.min-w-xs-104--force{min-width:104px!important}.w-xs-108{width:108px}.w-xs-108--force{width:108px!important}.max-w-xs-108{max-width:108px}.max-w-xs-108--force{max-width:108px!important}.min-w-xs-108{min-width:108px}.min-w-xs-108--force{min-width:108px!important}.w-xs-112{width:112px}.w-xs-112--force{width:112px!important}.max-w-xs-112{max-width:112px}.max-w-xs-112--force{max-width:112px!important}.min-w-xs-112{min-width:112px}.min-w-xs-112--force{min-width:112px!important}.w-xs-116{width:116px}.w-xs-116--force{width:116px!important}.max-w-xs-116{max-width:116px}.max-w-xs-116--force{max-width:116px!important}.min-w-xs-116{min-width:116px}.min-w-xs-116--force{min-width:116px!important}.w-xs-120{width:120px}.w-xs-120--force{width:120px!important}.max-w-xs-120{max-width:120px}.max-w-xs-120--force{max-width:120px!important}.min-w-xs-120{min-width:120px}.min-w-xs-120--force{min-width:120px!important}.w-xs-124{width:124px}.w-xs-124--force{width:124px!important}.max-w-xs-124{max-width:124px}.max-w-xs-124--force{max-width:124px!important}.min-w-xs-124{min-width:124px}.min-w-xs-124--force{min-width:124px!important}.w-xs-128{width:128px}.w-xs-128--force{width:128px!important}.max-w-xs-128{max-width:128px}.max-w-xs-128--force{max-width:128px!important}.min-w-xs-128{min-width:128px}.min-w-xs-128--force{min-width:128px!important}.w-xs-132{width:132px}.w-xs-132--force{width:132px!important}.max-w-xs-132{max-width:132px}.max-w-xs-132--force{max-width:132px!important}.min-w-xs-132{min-width:132px}.min-w-xs-132--force{min-width:132px!important}.w-xs-136{width:136px}.w-xs-136--force{width:136px!important}.max-w-xs-136{max-width:136px}.max-w-xs-136--force{max-width:136px!important}.min-w-xs-136{min-width:136px}.min-w-xs-136--force{min-width:136px!important}.w-xs-140{width:140px}.w-xs-140--force{width:140px!important}.max-w-xs-140{max-width:140px}.max-w-xs-140--force{max-width:140px!important}.min-w-xs-140{min-width:140px}.min-w-xs-140--force{min-width:140px!important}.w-xs-144{width:144px}.w-xs-144--force{width:144px!important}.max-w-xs-144{max-width:144px}.max-w-xs-144--force{max-width:144px!important}.min-w-xs-144{min-width:144px}.min-w-xs-144--force{min-width:144px!important}.w-xs-148{width:148px}.w-xs-148--force{width:148px!important}.max-w-xs-148{max-width:148px}.max-w-xs-148--force{max-width:148px!important}.min-w-xs-148{min-width:148px}.min-w-xs-148--force{min-width:148px!important}.w-xs-152{width:152px}.w-xs-152--force{width:152px!important}.max-w-xs-152{max-width:152px}.max-w-xs-152--force{max-width:152px!important}.min-w-xs-152{min-width:152px}.min-w-xs-152--force{min-width:152px!important}.w-xs-156{width:156px}.w-xs-156--force{width:156px!important}.max-w-xs-156{max-width:156px}.max-w-xs-156--force{max-width:156px!important}.min-w-xs-156{min-width:156px}.min-w-xs-156--force{min-width:156px!important}.w-xs-160{width:160px}.w-xs-160--force{width:160px!important}.max-w-xs-160{max-width:160px}.max-w-xs-160--force{max-width:160px!important}.min-w-xs-160{min-width:160px}.min-w-xs-160--force{min-width:160px!important}.w-xs-164{width:164px}.w-xs-164--force{width:164px!important}.max-w-xs-164{max-width:164px}.max-w-xs-164--force{max-width:164px!important}.min-w-xs-164{min-width:164px}.min-w-xs-164--force{min-width:164px!important}.w-xs-168{width:168px}.w-xs-168--force{width:168px!important}.max-w-xs-168{max-width:168px}.max-w-xs-168--force{max-width:168px!important}.min-w-xs-168{min-width:168px}.min-w-xs-168--force{min-width:168px!important}.w-xs-172{width:172px}.w-xs-172--force{width:172px!important}.max-w-xs-172{max-width:172px}.max-w-xs-172--force{max-width:172px!important}.min-w-xs-172{min-width:172px}.min-w-xs-172--force{min-width:172px!important}.w-xs-176{width:176px}.w-xs-176--force{width:176px!important}.max-w-xs-176{max-width:176px}.max-w-xs-176--force{max-width:176px!important}.min-w-xs-176{min-width:176px}.min-w-xs-176--force{min-width:176px!important}.w-xs-180{width:180px}.w-xs-180--force{width:180px!important}.max-w-xs-180{max-width:180px}.max-w-xs-180--force{max-width:180px!important}.min-w-xs-180{min-width:180px}.min-w-xs-180--force{min-width:180px!important}.w-xs-184{width:184px}.w-xs-184--force{width:184px!important}.max-w-xs-184{max-width:184px}.max-w-xs-184--force{max-width:184px!important}.min-w-xs-184{min-width:184px}.min-w-xs-184--force{min-width:184px!important}.w-xs-188{width:188px}.w-xs-188--force{width:188px!important}.max-w-xs-188{max-width:188px}.max-w-xs-188--force{max-width:188px!important}.min-w-xs-188{min-width:188px}.min-w-xs-188--force{min-width:188px!important}.w-xs-192{width:192px}.w-xs-192--force{width:192px!important}.max-w-xs-192{max-width:192px}.max-w-xs-192--force{max-width:192px!important}.min-w-xs-192{min-width:192px}.min-w-xs-192--force{min-width:192px!important}.w-xs-196{width:196px}.w-xs-196--force{width:196px!important}.max-w-xs-196{max-width:196px}.max-w-xs-196--force{max-width:196px!important}.min-w-xs-196{min-width:196px}.min-w-xs-196--force{min-width:196px!important}.w-xs-200{width:200px}.w-xs-200--force{width:200px!important}.max-w-xs-200{max-width:200px}.max-w-xs-200--force{max-width:200px!important}.min-w-xs-200{min-width:200px}.min-w-xs-200--force{min-width:200px!important}.w-xs-204{width:204px}.w-xs-204--force{width:204px!important}.max-w-xs-204{max-width:204px}.max-w-xs-204--force{max-width:204px!important}.min-w-xs-204{min-width:204px}.min-w-xs-204--force{min-width:204px!important}.w-xs-208{width:208px}.w-xs-208--force{width:208px!important}.max-w-xs-208{max-width:208px}.max-w-xs-208--force{max-width:208px!important}.min-w-xs-208{min-width:208px}.min-w-xs-208--force{min-width:208px!important}.w-xs-212{width:212px}.w-xs-212--force{width:212px!important}.max-w-xs-212{max-width:212px}.max-w-xs-212--force{max-width:212px!important}.min-w-xs-212{min-width:212px}.min-w-xs-212--force{min-width:212px!important}.w-xs-216{width:216px}.w-xs-216--force{width:216px!important}.max-w-xs-216{max-width:216px}.max-w-xs-216--force{max-width:216px!important}.min-w-xs-216{min-width:216px}.min-w-xs-216--force{min-width:216px!important}.w-xs-220{width:220px}.w-xs-220--force{width:220px!important}.max-w-xs-220{max-width:220px}.max-w-xs-220--force{max-width:220px!important}.min-w-xs-220{min-width:220px}.min-w-xs-220--force{min-width:220px!important}.w-xs-224{width:224px}.w-xs-224--force{width:224px!important}.max-w-xs-224{max-width:224px}.max-w-xs-224--force{max-width:224px!important}.min-w-xs-224{min-width:224px}.min-w-xs-224--force{min-width:224px!important}.w-xs-228{width:228px}.w-xs-228--force{width:228px!important}.max-w-xs-228{max-width:228px}.max-w-xs-228--force{max-width:228px!important}.min-w-xs-228{min-width:228px}.min-w-xs-228--force{min-width:228px!important}.w-xs-232{width:232px}.w-xs-232--force{width:232px!important}.max-w-xs-232{max-width:232px}.max-w-xs-232--force{max-width:232px!important}.min-w-xs-232{min-width:232px}.min-w-xs-232--force{min-width:232px!important}.w-xs-236{width:236px}.w-xs-236--force{width:236px!important}.max-w-xs-236{max-width:236px}.max-w-xs-236--force{max-width:236px!important}.min-w-xs-236{min-width:236px}.min-w-xs-236--force{min-width:236px!important}.w-xs-240{width:240px}.w-xs-240--force{width:240px!important}.max-w-xs-240{max-width:240px}.max-w-xs-240--force{max-width:240px!important}.min-w-xs-240{min-width:240px}.min-w-xs-240--force{min-width:240px!important}.w-xs-244{width:244px}.w-xs-244--force{width:244px!important}.max-w-xs-244{max-width:244px}.max-w-xs-244--force{max-width:244px!important}.min-w-xs-244{min-width:244px}.min-w-xs-244--force{min-width:244px!important}.w-xs-248{width:248px}.w-xs-248--force{width:248px!important}.max-w-xs-248{max-width:248px}.max-w-xs-248--force{max-width:248px!important}.min-w-xs-248{min-width:248px}.min-w-xs-248--force{min-width:248px!important}.w-xs-252{width:252px}.w-xs-252--force{width:252px!important}.max-w-xs-252{max-width:252px}.max-w-xs-252--force{max-width:252px!important}.min-w-xs-252{min-width:252px}.min-w-xs-252--force{min-width:252px!important}.w-xs-256{width:256px}.w-xs-256--force{width:256px!important}.max-w-xs-256{max-width:256px}.max-w-xs-256--force{max-width:256px!important}.min-w-xs-256{min-width:256px}.min-w-xs-256--force{min-width:256px!important}.w-xs-0-p{width:0%}.w-xs-0-p--force{width:0%!important}.max-w-xs-0-p{max-width:0%}.max-w-xs-0-p--force{max-width:0%!important}.min-w-xs-0-p{min-width:0}.min-w-xs-0-p--force{min-width:0!important}.w-xs-5-p{width:5%}.w-xs-5-p--force{width:5%!important}.max-w-xs-5-p{max-width:5%}.max-w-xs-5-p--force{max-width:5%!important}.min-w-xs-5-p{min-width:5%}.min-w-xs-5-p--force{min-width:5%!important}.w-xs-10-p{width:10%}.w-xs-10-p--force{width:10%!important}.max-w-xs-10-p{max-width:10%}.max-w-xs-10-p--force{max-width:10%!important}.min-w-xs-10-p{min-width:10%}.min-w-xs-10-p--force{min-width:10%!important}.w-xs-15-p{width:15%}.w-xs-15-p--force{width:15%!important}.max-w-xs-15-p{max-width:15%}.max-w-xs-15-p--force{max-width:15%!important}.min-w-xs-15-p{min-width:15%}.min-w-xs-15-p--force{min-width:15%!important}.w-xs-20-p{width:20%}.w-xs-20-p--force{width:20%!important}.max-w-xs-20-p{max-width:20%}.max-w-xs-20-p--force{max-width:20%!important}.min-w-xs-20-p{min-width:20%}.min-w-xs-20-p--force{min-width:20%!important}.w-xs-25-p{width:25%}.w-xs-25-p--force{width:25%!important}.max-w-xs-25-p{max-width:25%}.max-w-xs-25-p--force{max-width:25%!important}.min-w-xs-25-p{min-width:25%}.min-w-xs-25-p--force{min-width:25%!important}.w-xs-30-p{width:30%}.w-xs-30-p--force{width:30%!important}.max-w-xs-30-p{max-width:30%}.max-w-xs-30-p--force{max-width:30%!important}.min-w-xs-30-p{min-width:30%}.min-w-xs-30-p--force{min-width:30%!important}.w-xs-35-p{width:35%}.w-xs-35-p--force{width:35%!important}.max-w-xs-35-p{max-width:35%}.max-w-xs-35-p--force{max-width:35%!important}.min-w-xs-35-p{min-width:35%}.min-w-xs-35-p--force{min-width:35%!important}.w-xs-40-p{width:40%}.w-xs-40-p--force{width:40%!important}.max-w-xs-40-p{max-width:40%}.max-w-xs-40-p--force{max-width:40%!important}.min-w-xs-40-p{min-width:40%}.min-w-xs-40-p--force{min-width:40%!important}.w-xs-45-p{width:45%}.w-xs-45-p--force{width:45%!important}.max-w-xs-45-p{max-width:45%}.max-w-xs-45-p--force{max-width:45%!important}.min-w-xs-45-p{min-width:45%}.min-w-xs-45-p--force{min-width:45%!important}.w-xs-50-p{width:50%}.w-xs-50-p--force{width:50%!important}.max-w-xs-50-p{max-width:50%}.max-w-xs-50-p--force{max-width:50%!important}.min-w-xs-50-p{min-width:50%}.min-w-xs-50-p--force{min-width:50%!important}.w-xs-55-p{width:55%}.w-xs-55-p--force{width:55%!important}.max-w-xs-55-p{max-width:55%}.max-w-xs-55-p--force{max-width:55%!important}.min-w-xs-55-p{min-width:55%}.min-w-xs-55-p--force{min-width:55%!important}.w-xs-60-p{width:60%}.w-xs-60-p--force{width:60%!important}.max-w-xs-60-p{max-width:60%}.max-w-xs-60-p--force{max-width:60%!important}.min-w-xs-60-p{min-width:60%}.min-w-xs-60-p--force{min-width:60%!important}.w-xs-65-p{width:65%}.w-xs-65-p--force{width:65%!important}.max-w-xs-65-p{max-width:65%}.max-w-xs-65-p--force{max-width:65%!important}.min-w-xs-65-p{min-width:65%}.min-w-xs-65-p--force{min-width:65%!important}.w-xs-70-p{width:70%}.w-xs-70-p--force{width:70%!important}.max-w-xs-70-p{max-width:70%}.max-w-xs-70-p--force{max-width:70%!important}.min-w-xs-70-p{min-width:70%}.min-w-xs-70-p--force{min-width:70%!important}.w-xs-75-p{width:75%}.w-xs-75-p--force{width:75%!important}.max-w-xs-75-p{max-width:75%}.max-w-xs-75-p--force{max-width:75%!important}.min-w-xs-75-p{min-width:75%}.min-w-xs-75-p--force{min-width:75%!important}.w-xs-80-p{width:80%}.w-xs-80-p--force{width:80%!important}.max-w-xs-80-p{max-width:80%}.max-w-xs-80-p--force{max-width:80%!important}.min-w-xs-80-p{min-width:80%}.min-w-xs-80-p--force{min-width:80%!important}.w-xs-85-p{width:85%}.w-xs-85-p--force{width:85%!important}.max-w-xs-85-p{max-width:85%}.max-w-xs-85-p--force{max-width:85%!important}.min-w-xs-85-p{min-width:85%}.min-w-xs-85-p--force{min-width:85%!important}.w-xs-90-p{width:90%}.w-xs-90-p--force{width:90%!important}.max-w-xs-90-p{max-width:90%}.max-w-xs-90-p--force{max-width:90%!important}.min-w-xs-90-p{min-width:90%}.min-w-xs-90-p--force{min-width:90%!important}.w-xs-95-p{width:95%}.w-xs-95-p--force{width:95%!important}.max-w-xs-95-p{max-width:95%}.max-w-xs-95-p--force{max-width:95%!important}.min-w-xs-95-p{min-width:95%}.min-w-xs-95-p--force{min-width:95%!important}.w-xs-100-p{width:100%}.w-xs-100-p--force{width:100%!important}.max-w-xs-100-p{max-width:100%}.max-w-xs-100-p--force{max-width:100%!important}.min-w-xs-100-p{min-width:100%}.min-w-xs-100-p--force{min-width:100%!important}.w-xs-300{width:300px}.w-xs-300--force{width:300px!important}.max-w-xs-300{max-width:300px}.max-w-xs-300--force{max-width:300px!important}.min-w-xs-300{min-width:300px}.min-w-xs-300--force{min-width:300px!important}.w-xs-400{width:400px}.w-xs-400--force{width:400px!important}.max-w-xs-400{max-width:400px}.max-w-xs-400--force{max-width:400px!important}.min-w-xs-400{min-width:400px}.min-w-xs-400--force{min-width:400px!important}.w-xs-500{width:500px}.w-xs-500--force{width:500px!important}.max-w-xs-500{max-width:500px}.max-w-xs-500--force{max-width:500px!important}.min-w-xs-500{min-width:500px}.min-w-xs-500--force{min-width:500px!important}.w-xs-600{width:600px}.w-xs-600--force{width:600px!important}.max-w-xs-600{max-width:600px}.max-w-xs-600--force{max-width:600px!important}.min-w-xs-600{min-width:600px}.min-w-xs-600--force{min-width:600px!important}.w-xs-700{width:700px}.w-xs-700--force{width:700px!important}.max-w-xs-700{max-width:700px}.max-w-xs-700--force{max-width:700px!important}.min-w-xs-700{min-width:700px}.min-w-xs-700--force{min-width:700px!important}.w-xs-800{width:800px}.w-xs-800--force{width:800px!important}.max-w-xs-800{max-width:800px}.max-w-xs-800--force{max-width:800px!important}.min-w-xs-800{min-width:800px}.min-w-xs-800--force{min-width:800px!important}.w-xs-900{width:900px}.w-xs-900--force{width:900px!important}.max-w-xs-900{max-width:900px}.max-w-xs-900--force{max-width:900px!important}.min-w-xs-900{min-width:900px}.min-w-xs-900--force{min-width:900px!important}.w-xs-1000{width:1000px}.w-xs-1000--force{width:1000px!important}.max-w-xs-1000{max-width:1000px}.max-w-xs-1000--force{max-width:1000px!important}.min-w-xs-1000{min-width:1000px}.min-w-xs-1000--force{min-width:1000px!important}.w-xs-1100{width:1100px}.w-xs-1100--force{width:1100px!important}.max-w-xs-1100{max-width:1100px}.max-w-xs-1100--force{max-width:1100px!important}.min-w-xs-1100{min-width:1100px}.min-w-xs-1100--force{min-width:1100px!important}.w-xs-1200{width:1200px}.w-xs-1200--force{width:1200px!important}.max-w-xs-1200{max-width:1200px}.max-w-xs-1200--force{max-width:1200px!important}.min-w-xs-1200{min-width:1200px}.min-w-xs-1200--force{min-width:1200px!important}.w-xs-1300{width:1300px}.w-xs-1300--force{width:1300px!important}.max-w-xs-1300{max-width:1300px}.max-w-xs-1300--force{max-width:1300px!important}.min-w-xs-1300{min-width:1300px}.min-w-xs-1300--force{min-width:1300px!important}.w-xs-1400{width:1400px}.w-xs-1400--force{width:1400px!important}.max-w-xs-1400{max-width:1400px}.max-w-xs-1400--force{max-width:1400px!important}.min-w-xs-1400{min-width:1400px}.min-w-xs-1400--force{min-width:1400px!important}.w-xs-1500{width:1500px}.w-xs-1500--force{width:1500px!important}.max-w-xs-1500{max-width:1500px}.max-w-xs-1500--force{max-width:1500px!important}.min-w-xs-1500{min-width:1500px}.min-w-xs-1500--force{min-width:1500px!important}.w-xs-1600{width:1600px}.w-xs-1600--force{width:1600px!important}.max-w-xs-1600{max-width:1600px}.max-w-xs-1600--force{max-width:1600px!important}.min-w-xs-1600{min-width:1600px}.min-w-xs-1600--force{min-width:1600px!important}.w-xs-1700{width:1700px}.w-xs-1700--force{width:1700px!important}.max-w-xs-1700{max-width:1700px}.max-w-xs-1700--force{max-width:1700px!important}.min-w-xs-1700{min-width:1700px}.min-w-xs-1700--force{min-width:1700px!important}.w-xs-1800{width:1800px}.w-xs-1800--force{width:1800px!important}.max-w-xs-1800{max-width:1800px}.max-w-xs-1800--force{max-width:1800px!important}.min-w-xs-1800{min-width:1800px}.min-w-xs-1800--force{min-width:1800px!important}.w-xs-1900{width:1900px}.w-xs-1900--force{width:1900px!important}.max-w-xs-1900{max-width:1900px}.max-w-xs-1900--force{max-width:1900px!important}.min-w-xs-1900{min-width:1900px}.min-w-xs-1900--force{min-width:1900px!important}.w-xs-2000{width:2000px}.w-xs-2000--force{width:2000px!important}.max-w-xs-2000{max-width:2000px}.max-w-xs-2000--force{max-width:2000px!important}.min-w-xs-2000{min-width:2000px}.min-w-xs-2000--force{min-width:2000px!important}.w-xs-auto{width:auto}.w-xs-auto--force{width:auto!important}.m-xs--64{margin:-64px}.m-xs--64--force{margin:-64px!important}.mx-xs--64{margin-right:-64px;margin-left:-64px}.mx-xs--64--force{margin-right:-64px!important;margin-left:-64px!important}.my-xs--64{margin-top:-64px;margin-bottom:-64px}.my-xs--64--force{margin-top:-64px!important;margin-bottom:-64px!important}.mt-xs--64{margin-top:-64px}.mt-xs--64--force{margin-top:-64px!important}.mr-xs--64{margin-right:-64px}.mr-xs--64--force{margin-right:-64px!important}.mb-xs--64{margin-bottom:-64px}.mb-xs--64--force{margin-bottom:-64px!important}.ml-xs--64{margin-left:-64px}.ml-xs--64--force{margin-left:-64px!important}.m-xs--60{margin:-60px}.m-xs--60--force{margin:-60px!important}.mx-xs--60{margin-right:-60px;margin-left:-60px}.mx-xs--60--force{margin-right:-60px!important;margin-left:-60px!important}.my-xs--60{margin-top:-60px;margin-bottom:-60px}.my-xs--60--force{margin-top:-60px!important;margin-bottom:-60px!important}.mt-xs--60{margin-top:-60px}.mt-xs--60--force{margin-top:-60px!important}.mr-xs--60{margin-right:-60px}.mr-xs--60--force{margin-right:-60px!important}.mb-xs--60{margin-bottom:-60px}.mb-xs--60--force{margin-bottom:-60px!important}.ml-xs--60{margin-left:-60px}.ml-xs--60--force{margin-left:-60px!important}.m-xs--56{margin:-56px}.m-xs--56--force{margin:-56px!important}.mx-xs--56{margin-right:-56px;margin-left:-56px}.mx-xs--56--force{margin-right:-56px!important;margin-left:-56px!important}.my-xs--56{margin-top:-56px;margin-bottom:-56px}.my-xs--56--force{margin-top:-56px!important;margin-bottom:-56px!important}.mt-xs--56{margin-top:-56px}.mt-xs--56--force{margin-top:-56px!important}.mr-xs--56{margin-right:-56px}.mr-xs--56--force{margin-right:-56px!important}.mb-xs--56{margin-bottom:-56px}.mb-xs--56--force{margin-bottom:-56px!important}.ml-xs--56{margin-left:-56px}.ml-xs--56--force{margin-left:-56px!important}.m-xs--52{margin:-52px}.m-xs--52--force{margin:-52px!important}.mx-xs--52{margin-right:-52px;margin-left:-52px}.mx-xs--52--force{margin-right:-52px!important;margin-left:-52px!important}.my-xs--52{margin-top:-52px;margin-bottom:-52px}.my-xs--52--force{margin-top:-52px!important;margin-bottom:-52px!important}.mt-xs--52{margin-top:-52px}.mt-xs--52--force{margin-top:-52px!important}.mr-xs--52{margin-right:-52px}.mr-xs--52--force{margin-right:-52px!important}.mb-xs--52{margin-bottom:-52px}.mb-xs--52--force{margin-bottom:-52px!important}.ml-xs--52{margin-left:-52px}.ml-xs--52--force{margin-left:-52px!important}.m-xs--48{margin:-48px}.m-xs--48--force{margin:-48px!important}.mx-xs--48{margin-right:-48px;margin-left:-48px}.mx-xs--48--force{margin-right:-48px!important;margin-left:-48px!important}.my-xs--48{margin-top:-48px;margin-bottom:-48px}.my-xs--48--force{margin-top:-48px!important;margin-bottom:-48px!important}.mt-xs--48{margin-top:-48px}.mt-xs--48--force{margin-top:-48px!important}.mr-xs--48{margin-right:-48px}.mr-xs--48--force{margin-right:-48px!important}.mb-xs--48{margin-bottom:-48px}.mb-xs--48--force{margin-bottom:-48px!important}.ml-xs--48{margin-left:-48px}.ml-xs--48--force{margin-left:-48px!important}.m-xs--44{margin:-44px}.m-xs--44--force{margin:-44px!important}.mx-xs--44{margin-right:-44px;margin-left:-44px}.mx-xs--44--force{margin-right:-44px!important;margin-left:-44px!important}.my-xs--44{margin-top:-44px;margin-bottom:-44px}.my-xs--44--force{margin-top:-44px!important;margin-bottom:-44px!important}.mt-xs--44{margin-top:-44px}.mt-xs--44--force{margin-top:-44px!important}.mr-xs--44{margin-right:-44px}.mr-xs--44--force{margin-right:-44px!important}.mb-xs--44{margin-bottom:-44px}.mb-xs--44--force{margin-bottom:-44px!important}.ml-xs--44{margin-left:-44px}.ml-xs--44--force{margin-left:-44px!important}.m-xs--40{margin:-40px}.m-xs--40--force{margin:-40px!important}.mx-xs--40{margin-right:-40px;margin-left:-40px}.mx-xs--40--force{margin-right:-40px!important;margin-left:-40px!important}.my-xs--40{margin-top:-40px;margin-bottom:-40px}.my-xs--40--force{margin-top:-40px!important;margin-bottom:-40px!important}.mt-xs--40{margin-top:-40px}.mt-xs--40--force{margin-top:-40px!important}.mr-xs--40{margin-right:-40px}.mr-xs--40--force{margin-right:-40px!important}.mb-xs--40{margin-bottom:-40px}.mb-xs--40--force{margin-bottom:-40px!important}.ml-xs--40{margin-left:-40px}.ml-xs--40--force{margin-left:-40px!important}.m-xs--36{margin:-36px}.m-xs--36--force{margin:-36px!important}.mx-xs--36{margin-right:-36px;margin-left:-36px}.mx-xs--36--force{margin-right:-36px!important;margin-left:-36px!important}.my-xs--36{margin-top:-36px;margin-bottom:-36px}.my-xs--36--force{margin-top:-36px!important;margin-bottom:-36px!important}.mt-xs--36{margin-top:-36px}.mt-xs--36--force{margin-top:-36px!important}.mr-xs--36{margin-right:-36px}.mr-xs--36--force{margin-right:-36px!important}.mb-xs--36{margin-bottom:-36px}.mb-xs--36--force{margin-bottom:-36px!important}.ml-xs--36{margin-left:-36px}.ml-xs--36--force{margin-left:-36px!important}.m-xs--32{margin:-32px}.m-xs--32--force{margin:-32px!important}.mx-xs--32{margin-right:-32px;margin-left:-32px}.mx-xs--32--force{margin-right:-32px!important;margin-left:-32px!important}.my-xs--32{margin-top:-32px;margin-bottom:-32px}.my-xs--32--force{margin-top:-32px!important;margin-bottom:-32px!important}.mt-xs--32{margin-top:-32px}.mt-xs--32--force{margin-top:-32px!important}.mr-xs--32{margin-right:-32px}.mr-xs--32--force{margin-right:-32px!important}.mb-xs--32{margin-bottom:-32px}.mb-xs--32--force{margin-bottom:-32px!important}.ml-xs--32{margin-left:-32px}.ml-xs--32--force{margin-left:-32px!important}.m-xs--28{margin:-28px}.m-xs--28--force{margin:-28px!important}.mx-xs--28{margin-right:-28px;margin-left:-28px}.mx-xs--28--force{margin-right:-28px!important;margin-left:-28px!important}.my-xs--28{margin-top:-28px;margin-bottom:-28px}.my-xs--28--force{margin-top:-28px!important;margin-bottom:-28px!important}.mt-xs--28{margin-top:-28px}.mt-xs--28--force{margin-top:-28px!important}.mr-xs--28{margin-right:-28px}.mr-xs--28--force{margin-right:-28px!important}.mb-xs--28{margin-bottom:-28px}.mb-xs--28--force{margin-bottom:-28px!important}.ml-xs--28{margin-left:-28px}.ml-xs--28--force{margin-left:-28px!important}.m-xs--24{margin:-24px}.m-xs--24--force{margin:-24px!important}.mx-xs--24{margin-right:-24px;margin-left:-24px}.mx-xs--24--force{margin-right:-24px!important;margin-left:-24px!important}.my-xs--24{margin-top:-24px;margin-bottom:-24px}.my-xs--24--force{margin-top:-24px!important;margin-bottom:-24px!important}.mt-xs--24{margin-top:-24px}.mt-xs--24--force{margin-top:-24px!important}.mr-xs--24{margin-right:-24px}.mr-xs--24--force{margin-right:-24px!important}.mb-xs--24{margin-bottom:-24px}.mb-xs--24--force{margin-bottom:-24px!important}.ml-xs--24{margin-left:-24px}.ml-xs--24--force{margin-left:-24px!important}.m-xs--20{margin:-20px}.m-xs--20--force{margin:-20px!important}.mx-xs--20{margin-right:-20px;margin-left:-20px}.mx-xs--20--force{margin-right:-20px!important;margin-left:-20px!important}.my-xs--20{margin-top:-20px;margin-bottom:-20px}.my-xs--20--force{margin-top:-20px!important;margin-bottom:-20px!important}.mt-xs--20{margin-top:-20px}.mt-xs--20--force{margin-top:-20px!important}.mr-xs--20{margin-right:-20px}.mr-xs--20--force{margin-right:-20px!important}.mb-xs--20{margin-bottom:-20px}.mb-xs--20--force{margin-bottom:-20px!important}.ml-xs--20{margin-left:-20px}.ml-xs--20--force{margin-left:-20px!important}.m-xs--16{margin:-16px}.m-xs--16--force{margin:-16px!important}.mx-xs--16{margin-right:-16px;margin-left:-16px}.mx-xs--16--force{margin-right:-16px!important;margin-left:-16px!important}.my-xs--16{margin-top:-16px;margin-bottom:-16px}.my-xs--16--force{margin-top:-16px!important;margin-bottom:-16px!important}.mt-xs--16{margin-top:-16px}.mt-xs--16--force{margin-top:-16px!important}.mr-xs--16{margin-right:-16px}.mr-xs--16--force{margin-right:-16px!important}.mb-xs--16{margin-bottom:-16px}.mb-xs--16--force{margin-bottom:-16px!important}.ml-xs--16{margin-left:-16px}.ml-xs--16--force{margin-left:-16px!important}.m-xs--12{margin:-12px}.m-xs--12--force{margin:-12px!important}.mx-xs--12{margin-right:-12px;margin-left:-12px}.mx-xs--12--force{margin-right:-12px!important;margin-left:-12px!important}.my-xs--12{margin-top:-12px;margin-bottom:-12px}.my-xs--12--force{margin-top:-12px!important;margin-bottom:-12px!important}.mt-xs--12{margin-top:-12px}.mt-xs--12--force{margin-top:-12px!important}.mr-xs--12{margin-right:-12px}.mr-xs--12--force{margin-right:-12px!important}.mb-xs--12{margin-bottom:-12px}.mb-xs--12--force{margin-bottom:-12px!important}.ml-xs--12{margin-left:-12px}.ml-xs--12--force{margin-left:-12px!important}.m-xs--8{margin:-8px}.m-xs--8--force{margin:-8px!important}.mx-xs--8{margin-right:-8px;margin-left:-8px}.mx-xs--8--force{margin-right:-8px!important;margin-left:-8px!important}.my-xs--8{margin-top:-8px;margin-bottom:-8px}.my-xs--8--force{margin-top:-8px!important;margin-bottom:-8px!important}.mt-xs--8{margin-top:-8px}.mt-xs--8--force{margin-top:-8px!important}.mr-xs--8{margin-right:-8px}.mr-xs--8--force{margin-right:-8px!important}.mb-xs--8{margin-bottom:-8px}.mb-xs--8--force{margin-bottom:-8px!important}.ml-xs--8{margin-left:-8px}.ml-xs--8--force{margin-left:-8px!important}.m-xs--4{margin:-4px}.m-xs--4--force{margin:-4px!important}.mx-xs--4{margin-right:-4px;margin-left:-4px}.mx-xs--4--force{margin-right:-4px!important;margin-left:-4px!important}.my-xs--4{margin-top:-4px;margin-bottom:-4px}.my-xs--4--force{margin-top:-4px!important;margin-bottom:-4px!important}.mt-xs--4{margin-top:-4px}.mt-xs--4--force{margin-top:-4px!important}.mr-xs--4{margin-right:-4px}.mr-xs--4--force{margin-right:-4px!important}.mb-xs--4{margin-bottom:-4px}.mb-xs--4--force{margin-bottom:-4px!important}.ml-xs--4{margin-left:-4px}.ml-xs--4--force{margin-left:-4px!important}.m-xs-0{margin:0}.m-xs-0--force{margin:0!important}.mx-xs-0{margin-right:0;margin-left:0}.mx-xs-0--force{margin-right:0!important;margin-left:0!important}.my-xs-0{margin-top:0;margin-bottom:0}.my-xs-0--force{margin-top:0!important;margin-bottom:0!important}.mt-xs-0{margin-top:0}.mt-xs-0--force{margin-top:0!important}.mr-xs-0{margin-right:0}.mr-xs-0--force{margin-right:0!important}.masonry-gap-xs-0>*,.mb-xs-0{margin-bottom:0}.mb-xs-0--force{margin-bottom:0!important}.ml-xs-0{margin-left:0}.ml-xs-0--force{margin-left:0!important}.m-xs-4{margin:4px}.m-xs-4--force{margin:4px!important}.mx-xs-4{margin-right:4px;margin-left:4px}.mx-xs-4--force{margin-right:4px!important;margin-left:4px!important}.my-xs-4{margin-top:4px;margin-bottom:4px}.my-xs-4--force{margin-top:4px!important;margin-bottom:4px!important}.mt-xs-4{margin-top:4px}.mt-xs-4--force{margin-top:4px!important}.mr-xs-4{margin-right:4px}.mr-xs-4--force{margin-right:4px!important}.masonry-gap-xs-4>*,.mb-xs-4{margin-bottom:4px}.mb-xs-4--force{margin-bottom:4px!important}.ml-xs-4{margin-left:4px}.ml-xs-4--force{margin-left:4px!important}.m-xs-8{margin:8px}.m-xs-8--force{margin:8px!important}.mx-xs-8{margin-right:8px;margin-left:8px}.mx-xs-8--force{margin-right:8px!important;margin-left:8px!important}.my-xs-8{margin-top:8px;margin-bottom:8px}.my-xs-8--force{margin-top:8px!important;margin-bottom:8px!important}.mt-xs-8{margin-top:8px}.mt-xs-8--force{margin-top:8px!important}.mr-xs-8{margin-right:8px}.mr-xs-8--force{margin-right:8px!important}.masonry-gap-xs-8>*,.mb-xs-8{margin-bottom:8px}.mb-xs-8--force{margin-bottom:8px!important}.ml-xs-8{margin-left:8px}.ml-xs-8--force{margin-left:8px!important}.m-xs-12{margin:12px}.m-xs-12--force{margin:12px!important}.mx-xs-12{margin-right:12px;margin-left:12px}.mx-xs-12--force{margin-right:12px!important;margin-left:12px!important}.my-xs-12{margin-top:12px;margin-bottom:12px}.my-xs-12--force{margin-top:12px!important;margin-bottom:12px!important}.mt-xs-12{margin-top:12px}.mt-xs-12--force{margin-top:12px!important}.mr-xs-12{margin-right:12px}.mr-xs-12--force{margin-right:12px!important}.masonry-gap-xs-12>*,.mb-xs-12{margin-bottom:12px}.mb-xs-12--force{margin-bottom:12px!important}.ml-xs-12{margin-left:12px}.ml-xs-12--force{margin-left:12px!important}.m-xs-16{margin:16px}.m-xs-16--force{margin:16px!important}.mx-xs-16{margin-right:16px;margin-left:16px}.mx-xs-16--force{margin-right:16px!important;margin-left:16px!important}.my-xs-16{margin-top:16px;margin-bottom:16px}.my-xs-16--force{margin-top:16px!important;margin-bottom:16px!important}.mt-xs-16{margin-top:16px}.mt-xs-16--force{margin-top:16px!important}.mr-xs-16{margin-right:16px}.mr-xs-16--force{margin-right:16px!important}.masonry-gap-xs-16>*,.mb-xs-16{margin-bottom:16px}.mb-xs-16--force{margin-bottom:16px!important}.ml-xs-16{margin-left:16px}.ml-xs-16--force{margin-left:16px!important}.m-xs-20{margin:20px}.m-xs-20--force{margin:20px!important}.mx-xs-20{margin-right:20px;margin-left:20px}.mx-xs-20--force{margin-right:20px!important;margin-left:20px!important}.my-xs-20{margin-top:20px;margin-bottom:20px}.my-xs-20--force{margin-top:20px!important;margin-bottom:20px!important}.mt-xs-20{margin-top:20px}.mt-xs-20--force{margin-top:20px!important}.mr-xs-20{margin-right:20px}.mr-xs-20--force{margin-right:20px!important}.masonry-gap-xs-20>*,.mb-xs-20{margin-bottom:20px}.mb-xs-20--force{margin-bottom:20px!important}.ml-xs-20{margin-left:20px}.ml-xs-20--force{margin-left:20px!important}.m-xs-24{margin:24px}.m-xs-24--force{margin:24px!important}.mx-xs-24{margin-right:24px;margin-left:24px}.mx-xs-24--force{margin-right:24px!important;margin-left:24px!important}.my-xs-24{margin-top:24px;margin-bottom:24px}.my-xs-24--force{margin-top:24px!important;margin-bottom:24px!important}.mt-xs-24{margin-top:24px}.mt-xs-24--force{margin-top:24px!important}.mr-xs-24{margin-right:24px}.mr-xs-24--force{margin-right:24px!important}.masonry-gap-xs-24>*,.mb-xs-24{margin-bottom:24px}.mb-xs-24--force{margin-bottom:24px!important}.ml-xs-24{margin-left:24px}.ml-xs-24--force{margin-left:24px!important}.m-xs-28{margin:28px}.m-xs-28--force{margin:28px!important}.mx-xs-28{margin-right:28px;margin-left:28px}.mx-xs-28--force{margin-right:28px!important;margin-left:28px!important}.my-xs-28{margin-top:28px;margin-bottom:28px}.my-xs-28--force{margin-top:28px!important;margin-bottom:28px!important}.mt-xs-28{margin-top:28px}.mt-xs-28--force{margin-top:28px!important}.mr-xs-28{margin-right:28px}.mr-xs-28--force{margin-right:28px!important}.masonry-gap-xs-28>*,.mb-xs-28{margin-bottom:28px}.mb-xs-28--force{margin-bottom:28px!important}.ml-xs-28{margin-left:28px}.ml-xs-28--force{margin-left:28px!important}.m-xs-32{margin:32px}.m-xs-32--force{margin:32px!important}.mx-xs-32{margin-right:32px;margin-left:32px}.mx-xs-32--force{margin-right:32px!important;margin-left:32px!important}.my-xs-32{margin-top:32px;margin-bottom:32px}.my-xs-32--force{margin-top:32px!important;margin-bottom:32px!important}.mt-xs-32{margin-top:32px}.mt-xs-32--force{margin-top:32px!important}.mr-xs-32{margin-right:32px}.mr-xs-32--force{margin-right:32px!important}.masonry-gap-xs-32>*,.mb-xs-32{margin-bottom:32px}.mb-xs-32--force{margin-bottom:32px!important}.ml-xs-32{margin-left:32px}.ml-xs-32--force{margin-left:32px!important}.m-xs-36{margin:36px}.m-xs-36--force{margin:36px!important}.mx-xs-36{margin-right:36px;margin-left:36px}.mx-xs-36--force{margin-right:36px!important;margin-left:36px!important}.my-xs-36{margin-top:36px;margin-bottom:36px}.my-xs-36--force{margin-top:36px!important;margin-bottom:36px!important}.mt-xs-36{margin-top:36px}.mt-xs-36--force{margin-top:36px!important}.mr-xs-36{margin-right:36px}.mr-xs-36--force{margin-right:36px!important}.masonry-gap-xs-36>*,.mb-xs-36{margin-bottom:36px}.mb-xs-36--force{margin-bottom:36px!important}.ml-xs-36{margin-left:36px}.ml-xs-36--force{margin-left:36px!important}.m-xs-40{margin:40px}.m-xs-40--force{margin:40px!important}.mx-xs-40{margin-right:40px;margin-left:40px}.mx-xs-40--force{margin-right:40px!important;margin-left:40px!important}.my-xs-40{margin-top:40px;margin-bottom:40px}.my-xs-40--force{margin-top:40px!important;margin-bottom:40px!important}.mt-xs-40{margin-top:40px}.mt-xs-40--force{margin-top:40px!important}.mr-xs-40{margin-right:40px}.mr-xs-40--force{margin-right:40px!important}.masonry-gap-xs-40>*,.mb-xs-40{margin-bottom:40px}.mb-xs-40--force{margin-bottom:40px!important}.ml-xs-40{margin-left:40px}.ml-xs-40--force{margin-left:40px!important}.m-xs-44{margin:44px}.m-xs-44--force{margin:44px!important}.mx-xs-44{margin-right:44px;margin-left:44px}.mx-xs-44--force{margin-right:44px!important;margin-left:44px!important}.my-xs-44{margin-top:44px;margin-bottom:44px}.my-xs-44--force{margin-top:44px!important;margin-bottom:44px!important}.mt-xs-44{margin-top:44px}.mt-xs-44--force{margin-top:44px!important}.mr-xs-44{margin-right:44px}.mr-xs-44--force{margin-right:44px!important}.masonry-gap-xs-44>*,.mb-xs-44{margin-bottom:44px}.mb-xs-44--force{margin-bottom:44px!important}.ml-xs-44{margin-left:44px}.ml-xs-44--force{margin-left:44px!important}.m-xs-48{margin:48px}.m-xs-48--force{margin:48px!important}.mx-xs-48{margin-right:48px;margin-left:48px}.mx-xs-48--force{margin-right:48px!important;margin-left:48px!important}.my-xs-48{margin-top:48px;margin-bottom:48px}.my-xs-48--force{margin-top:48px!important;margin-bottom:48px!important}.mt-xs-48{margin-top:48px}.mt-xs-48--force{margin-top:48px!important}.mr-xs-48{margin-right:48px}.mr-xs-48--force{margin-right:48px!important}.masonry-gap-xs-48>*,.mb-xs-48{margin-bottom:48px}.mb-xs-48--force{margin-bottom:48px!important}.ml-xs-48{margin-left:48px}.ml-xs-48--force{margin-left:48px!important}.m-xs-52{margin:52px}.m-xs-52--force{margin:52px!important}.mx-xs-52{margin-right:52px;margin-left:52px}.mx-xs-52--force{margin-right:52px!important;margin-left:52px!important}.my-xs-52{margin-top:52px;margin-bottom:52px}.my-xs-52--force{margin-top:52px!important;margin-bottom:52px!important}.mt-xs-52{margin-top:52px}.mt-xs-52--force{margin-top:52px!important}.mr-xs-52{margin-right:52px}.mr-xs-52--force{margin-right:52px!important}.mb-xs-52{margin-bottom:52px}.mb-xs-52--force{margin-bottom:52px!important}.ml-xs-52{margin-left:52px}.ml-xs-52--force{margin-left:52px!important}.m-xs-56{margin:56px}.m-xs-56--force{margin:56px!important}.mx-xs-56{margin-right:56px;margin-left:56px}.mx-xs-56--force{margin-right:56px!important;margin-left:56px!important}.my-xs-56{margin-top:56px;margin-bottom:56px}.my-xs-56--force{margin-top:56px!important;margin-bottom:56px!important}.mt-xs-56{margin-top:56px}.mt-xs-56--force{margin-top:56px!important}.mr-xs-56{margin-right:56px}.mr-xs-56--force{margin-right:56px!important}.mb-xs-56{margin-bottom:56px}.mb-xs-56--force{margin-bottom:56px!important}.ml-xs-56{margin-left:56px}.ml-xs-56--force{margin-left:56px!important}.m-xs-60{margin:60px}.m-xs-60--force{margin:60px!important}.mx-xs-60{margin-right:60px;margin-left:60px}.mx-xs-60--force{margin-right:60px!important;margin-left:60px!important}.my-xs-60{margin-top:60px;margin-bottom:60px}.my-xs-60--force{margin-top:60px!important;margin-bottom:60px!important}.mt-xs-60{margin-top:60px}.mt-xs-60--force{margin-top:60px!important}.mr-xs-60{margin-right:60px}.mr-xs-60--force{margin-right:60px!important}.mb-xs-60{margin-bottom:60px}.mb-xs-60--force{margin-bottom:60px!important}.ml-xs-60{margin-left:60px}.ml-xs-60--force{margin-left:60px!important}.m-xs-64{margin:64px}.m-xs-64--force{margin:64px!important}.mx-xs-64{margin-right:64px;margin-left:64px}.mx-xs-64--force{margin-right:64px!important;margin-left:64px!important}.my-xs-64{margin-top:64px;margin-bottom:64px}.my-xs-64--force{margin-top:64px!important;margin-bottom:64px!important}.mt-xs-64{margin-top:64px}.mt-xs-64--force{margin-top:64px!important}.mr-xs-64{margin-right:64px}.mr-xs-64--force{margin-right:64px!important}.mb-xs-64{margin-bottom:64px}.mb-xs-64--force{margin-bottom:64px!important}.ml-xs-64{margin-left:64px}.ml-xs-64--force{margin-left:64px!important}.m-xs-auto{margin:auto}.m-xs-auto--force{margin:auto!important}.mt-xs-auto{margin-top:auto}.mt-xs-auto--force{margin-top:auto!important}.mr-xs-auto{margin-right:auto}.mr-xs-auto--force{margin-right:auto!important}.mb-xs-auto{margin-bottom:auto}.mb-xs-auto--force{margin-bottom:auto!important}.ml-xs-auto{margin-left:auto}.ml-xs-auto--force{margin-left:auto!important}.mx-xs-auto{margin-right:auto;margin-left:auto}.mx-xs-auto--force{margin-right:auto!important;margin-left:auto!important}.my-xs-auto{margin-top:auto;margin-bottom:auto}.my-xs-auto--force{margin-top:auto!important;margin-bottom:auto!important}.p-xs-0{padding:0}.p-xs-0--force{padding:0!important}.px-xs-0{padding-right:0;padding-left:0}.px-xs-0--force{padding-right:0!important;padding-left:0!important}.py-xs-0{padding-top:0;padding-bottom:0}.py-xs-0--force{padding-top:0!important;padding-bottom:0!important}.pt-xs-0{padding-top:0}.pt-xs-0--force{padding-top:0!important}.pr-xs-0{padding-right:0}.pr-xs-0--force{padding-right:0!important}.pb-xs-0{padding-bottom:0}.pb-xs-0--force{padding-bottom:0!important}.pl-xs-0{padding-left:0}.pl-xs-0--force{padding-left:0!important}.p-xs-4{padding:4px}.p-xs-4--force{padding:4px!important}.px-xs-4{padding-right:4px;padding-left:4px}.px-xs-4--force{padding-right:4px!important;padding-left:4px!important}.py-xs-4{padding-top:4px;padding-bottom:4px}.py-xs-4--force{padding-top:4px!important;padding-bottom:4px!important}.pt-xs-4{padding-top:4px}.pt-xs-4--force{padding-top:4px!important}.pr-xs-4{padding-right:4px}.pr-xs-4--force{padding-right:4px!important}.pb-xs-4{padding-bottom:4px}.pb-xs-4--force{padding-bottom:4px!important}.pl-xs-4{padding-left:4px}.pl-xs-4--force{padding-left:4px!important}.p-xs-8{padding:8px}.p-xs-8--force{padding:8px!important}.px-xs-8{padding-right:8px;padding-left:8px}.px-xs-8--force{padding-right:8px!important;padding-left:8px!important}.py-xs-8{padding-top:8px;padding-bottom:8px}.py-xs-8--force{padding-top:8px!important;padding-bottom:8px!important}.pt-xs-8{padding-top:8px}.pt-xs-8--force{padding-top:8px!important}.pr-xs-8{padding-right:8px}.pr-xs-8--force{padding-right:8px!important}.pb-xs-8{padding-bottom:8px}.pb-xs-8--force{padding-bottom:8px!important}.pl-xs-8{padding-left:8px}.pl-xs-8--force{padding-left:8px!important}.p-xs-12{padding:12px}.p-xs-12--force{padding:12px!important}.px-xs-12{padding-right:12px;padding-left:12px}.px-xs-12--force{padding-right:12px!important;padding-left:12px!important}.py-xs-12{padding-top:12px;padding-bottom:12px}.py-xs-12--force{padding-top:12px!important;padding-bottom:12px!important}.pt-xs-12{padding-top:12px}.pt-xs-12--force{padding-top:12px!important}.pr-xs-12{padding-right:12px}.pr-xs-12--force{padding-right:12px!important}.pb-xs-12{padding-bottom:12px}.pb-xs-12--force{padding-bottom:12px!important}.pl-xs-12{padding-left:12px}.pl-xs-12--force{padding-left:12px!important}.p-xs-16{padding:16px}.p-xs-16--force{padding:16px!important}.px-xs-16{padding-right:16px;padding-left:16px}.px-xs-16--force{padding-right:16px!important;padding-left:16px!important}.py-xs-16{padding-top:16px;padding-bottom:16px}.py-xs-16--force{padding-top:16px!important;padding-bottom:16px!important}.pt-xs-16{padding-top:16px}.pt-xs-16--force{padding-top:16px!important}.pr-xs-16{padding-right:16px}.pr-xs-16--force{padding-right:16px!important}.pb-xs-16{padding-bottom:16px}.pb-xs-16--force{padding-bottom:16px!important}.pl-xs-16{padding-left:16px}.pl-xs-16--force{padding-left:16px!important}.p-xs-20{padding:20px}.p-xs-20--force{padding:20px!important}.px-xs-20{padding-right:20px;padding-left:20px}.px-xs-20--force{padding-right:20px!important;padding-left:20px!important}.py-xs-20{padding-top:20px;padding-bottom:20px}.py-xs-20--force{padding-top:20px!important;padding-bottom:20px!important}.pt-xs-20{padding-top:20px}.pt-xs-20--force{padding-top:20px!important}.pr-xs-20{padding-right:20px}.pr-xs-20--force{padding-right:20px!important}.pb-xs-20{padding-bottom:20px}.pb-xs-20--force{padding-bottom:20px!important}.pl-xs-20{padding-left:20px}.pl-xs-20--force{padding-left:20px!important}.p-xs-24{padding:24px}.p-xs-24--force{padding:24px!important}.px-xs-24{padding-right:24px;padding-left:24px}.px-xs-24--force{padding-right:24px!important;padding-left:24px!important}.py-xs-24{padding-top:24px;padding-bottom:24px}.py-xs-24--force{padding-top:24px!important;padding-bottom:24px!important}.pt-xs-24{padding-top:24px}.pt-xs-24--force{padding-top:24px!important}.pr-xs-24{padding-right:24px}.pr-xs-24--force{padding-right:24px!important}.pb-xs-24{padding-bottom:24px}.pb-xs-24--force{padding-bottom:24px!important}.pl-xs-24{padding-left:24px}.pl-xs-24--force{padding-left:24px!important}.p-xs-28{padding:28px}.p-xs-28--force{padding:28px!important}.px-xs-28{padding-right:28px;padding-left:28px}.px-xs-28--force{padding-right:28px!important;padding-left:28px!important}.py-xs-28{padding-top:28px;padding-bottom:28px}.py-xs-28--force{padding-top:28px!important;padding-bottom:28px!important}.pt-xs-28{padding-top:28px}.pt-xs-28--force{padding-top:28px!important}.pr-xs-28{padding-right:28px}.pr-xs-28--force{padding-right:28px!important}.pb-xs-28{padding-bottom:28px}.pb-xs-28--force{padding-bottom:28px!important}.pl-xs-28{padding-left:28px}.pl-xs-28--force{padding-left:28px!important}.p-xs-32{padding:32px}.p-xs-32--force{padding:32px!important}.px-xs-32{padding-right:32px;padding-left:32px}.px-xs-32--force{padding-right:32px!important;padding-left:32px!important}.py-xs-32{padding-top:32px;padding-bottom:32px}.py-xs-32--force{padding-top:32px!important;padding-bottom:32px!important}.pt-xs-32{padding-top:32px}.pt-xs-32--force{padding-top:32px!important}.pr-xs-32{padding-right:32px}.pr-xs-32--force{padding-right:32px!important}.pb-xs-32{padding-bottom:32px}.pb-xs-32--force{padding-bottom:32px!important}.pl-xs-32{padding-left:32px}.pl-xs-32--force{padding-left:32px!important}.p-xs-36{padding:36px}.p-xs-36--force{padding:36px!important}.px-xs-36{padding-right:36px;padding-left:36px}.px-xs-36--force{padding-right:36px!important;padding-left:36px!important}.py-xs-36{padding-top:36px;padding-bottom:36px}.py-xs-36--force{padding-top:36px!important;padding-bottom:36px!important}.pt-xs-36{padding-top:36px}.pt-xs-36--force{padding-top:36px!important}.pr-xs-36{padding-right:36px}.pr-xs-36--force{padding-right:36px!important}.pb-xs-36{padding-bottom:36px}.pb-xs-36--force{padding-bottom:36px!important}.pl-xs-36{padding-left:36px}.pl-xs-36--force{padding-left:36px!important}.p-xs-40{padding:40px}.p-xs-40--force{padding:40px!important}.px-xs-40{padding-right:40px;padding-left:40px}.px-xs-40--force{padding-right:40px!important;padding-left:40px!important}.py-xs-40{padding-top:40px;padding-bottom:40px}.py-xs-40--force{padding-top:40px!important;padding-bottom:40px!important}.pt-xs-40{padding-top:40px}.pt-xs-40--force{padding-top:40px!important}.pr-xs-40{padding-right:40px}.pr-xs-40--force{padding-right:40px!important}.pb-xs-40{padding-bottom:40px}.pb-xs-40--force{padding-bottom:40px!important}.pl-xs-40{padding-left:40px}.pl-xs-40--force{padding-left:40px!important}.p-xs-44{padding:44px}.p-xs-44--force{padding:44px!important}.px-xs-44{padding-right:44px;padding-left:44px}.px-xs-44--force{padding-right:44px!important;padding-left:44px!important}.py-xs-44{padding-top:44px;padding-bottom:44px}.py-xs-44--force{padding-top:44px!important;padding-bottom:44px!important}.pt-xs-44{padding-top:44px}.pt-xs-44--force{padding-top:44px!important}.pr-xs-44{padding-right:44px}.pr-xs-44--force{padding-right:44px!important}.pb-xs-44{padding-bottom:44px}.pb-xs-44--force{padding-bottom:44px!important}.pl-xs-44{padding-left:44px}.pl-xs-44--force{padding-left:44px!important}.p-xs-48{padding:48px}.p-xs-48--force{padding:48px!important}.px-xs-48{padding-right:48px;padding-left:48px}.px-xs-48--force{padding-right:48px!important;padding-left:48px!important}.py-xs-48{padding-top:48px;padding-bottom:48px}.py-xs-48--force{padding-top:48px!important;padding-bottom:48px!important}.pt-xs-48{padding-top:48px}.pt-xs-48--force{padding-top:48px!important}.pr-xs-48{padding-right:48px}.pr-xs-48--force{padding-right:48px!important}.pb-xs-48{padding-bottom:48px}.pb-xs-48--force{padding-bottom:48px!important}.pl-xs-48{padding-left:48px}.pl-xs-48--force{padding-left:48px!important}.p-xs-52{padding:52px}.p-xs-52--force{padding:52px!important}.px-xs-52{padding-right:52px;padding-left:52px}.px-xs-52--force{padding-right:52px!important;padding-left:52px!important}.py-xs-52{padding-top:52px;padding-bottom:52px}.py-xs-52--force{padding-top:52px!important;padding-bottom:52px!important}.pt-xs-52{padding-top:52px}.pt-xs-52--force{padding-top:52px!important}.pr-xs-52{padding-right:52px}.pr-xs-52--force{padding-right:52px!important}.pb-xs-52{padding-bottom:52px}.pb-xs-52--force{padding-bottom:52px!important}.pl-xs-52{padding-left:52px}.pl-xs-52--force{padding-left:52px!important}.p-xs-56{padding:56px}.p-xs-56--force{padding:56px!important}.px-xs-56{padding-right:56px;padding-left:56px}.px-xs-56--force{padding-right:56px!important;padding-left:56px!important}.py-xs-56{padding-top:56px;padding-bottom:56px}.py-xs-56--force{padding-top:56px!important;padding-bottom:56px!important}.pt-xs-56{padding-top:56px}.pt-xs-56--force{padding-top:56px!important}.pr-xs-56{padding-right:56px}.pr-xs-56--force{padding-right:56px!important}.pb-xs-56{padding-bottom:56px}.pb-xs-56--force{padding-bottom:56px!important}.pl-xs-56{padding-left:56px}.pl-xs-56--force{padding-left:56px!important}.p-xs-60{padding:60px}.p-xs-60--force{padding:60px!important}.px-xs-60{padding-right:60px;padding-left:60px}.px-xs-60--force{padding-right:60px!important;padding-left:60px!important}.py-xs-60{padding-top:60px;padding-bottom:60px}.py-xs-60--force{padding-top:60px!important;padding-bottom:60px!important}.pt-xs-60{padding-top:60px}.pt-xs-60--force{padding-top:60px!important}.pr-xs-60{padding-right:60px}.pr-xs-60--force{padding-right:60px!important}.pb-xs-60{padding-bottom:60px}.pb-xs-60--force{padding-bottom:60px!important}.pl-xs-60{padding-left:60px}.pl-xs-60--force{padding-left:60px!important}.p-xs-64{padding:64px}.p-xs-64--force{padding:64px!important}.px-xs-64{padding-right:64px;padding-left:64px}.px-xs-64--force{padding-right:64px!important;padding-left:64px!important}.py-xs-64{padding-top:64px;padding-bottom:64px}.py-xs-64--force{padding-top:64px!important;padding-bottom:64px!important}.pt-xs-64{padding-top:64px}.pt-xs-64--force{padding-top:64px!important}.pr-xs-64{padding-right:64px}.pr-xs-64--force{padding-right:64px!important}.pb-xs-64{padding-bottom:64px}.pb-xs-64--force{padding-bottom:64px!important}.pl-xs-64{padding-left:64px}.pl-xs-64--force{padding-left:64px!important}.p-xs-68{padding:68px}.p-xs-68--force{padding:68px!important}.px-xs-68{padding-right:68px;padding-left:68px}.px-xs-68--force{padding-right:68px!important;padding-left:68px!important}.py-xs-68{padding-top:68px;padding-bottom:68px}.py-xs-68--force{padding-top:68px!important;padding-bottom:68px!important}.pt-xs-68{padding-top:68px}.pt-xs-68--force{padding-top:68px!important}.pr-xs-68{padding-right:68px}.pr-xs-68--force{padding-right:68px!important}.pb-xs-68{padding-bottom:68px}.pb-xs-68--force{padding-bottom:68px!important}.pl-xs-68{padding-left:68px}.pl-xs-68--force{padding-left:68px!important}.p-xs-72{padding:72px}.p-xs-72--force{padding:72px!important}.px-xs-72{padding-right:72px;padding-left:72px}.px-xs-72--force{padding-right:72px!important;padding-left:72px!important}.py-xs-72{padding-top:72px;padding-bottom:72px}.py-xs-72--force{padding-top:72px!important;padding-bottom:72px!important}.pt-xs-72{padding-top:72px}.pt-xs-72--force{padding-top:72px!important}.pr-xs-72{padding-right:72px}.pr-xs-72--force{padding-right:72px!important}.pb-xs-72{padding-bottom:72px}.pb-xs-72--force{padding-bottom:72px!important}.pl-xs-72{padding-left:72px}.pl-xs-72--force{padding-left:72px!important}.p-xs-76{padding:76px}.p-xs-76--force{padding:76px!important}.px-xs-76{padding-right:76px;padding-left:76px}.px-xs-76--force{padding-right:76px!important;padding-left:76px!important}.py-xs-76{padding-top:76px;padding-bottom:76px}.py-xs-76--force{padding-top:76px!important;padding-bottom:76px!important}.pt-xs-76{padding-top:76px}.pt-xs-76--force{padding-top:76px!important}.pr-xs-76{padding-right:76px}.pr-xs-76--force{padding-right:76px!important}.pb-xs-76{padding-bottom:76px}.pb-xs-76--force{padding-bottom:76px!important}.pl-xs-76{padding-left:76px}.pl-xs-76--force{padding-left:76px!important}.p-xs-80{padding:80px}.p-xs-80--force{padding:80px!important}.px-xs-80{padding-right:80px;padding-left:80px}.px-xs-80--force{padding-right:80px!important;padding-left:80px!important}.py-xs-80{padding-top:80px;padding-bottom:80px}.py-xs-80--force{padding-top:80px!important;padding-bottom:80px!important}.pt-xs-80{padding-top:80px}.pt-xs-80--force{padding-top:80px!important}.pr-xs-80{padding-right:80px}.pr-xs-80--force{padding-right:80px!important}.pb-xs-80{padding-bottom:80px}.pb-xs-80--force{padding-bottom:80px!important}.pl-xs-80{padding-left:80px}.pl-xs-80--force{padding-left:80px!important}.p-xs-84{padding:84px}.p-xs-84--force{padding:84px!important}.px-xs-84{padding-right:84px;padding-left:84px}.px-xs-84--force{padding-right:84px!important;padding-left:84px!important}.py-xs-84{padding-top:84px;padding-bottom:84px}.py-xs-84--force{padding-top:84px!important;padding-bottom:84px!important}.pt-xs-84{padding-top:84px}.pt-xs-84--force{padding-top:84px!important}.pr-xs-84{padding-right:84px}.pr-xs-84--force{padding-right:84px!important}.pb-xs-84{padding-bottom:84px}.pb-xs-84--force{padding-bottom:84px!important}.pl-xs-84{padding-left:84px}.pl-xs-84--force{padding-left:84px!important}.p-xs-88{padding:88px}.p-xs-88--force{padding:88px!important}.px-xs-88{padding-right:88px;padding-left:88px}.px-xs-88--force{padding-right:88px!important;padding-left:88px!important}.py-xs-88{padding-top:88px;padding-bottom:88px}.py-xs-88--force{padding-top:88px!important;padding-bottom:88px!important}.pt-xs-88{padding-top:88px}.pt-xs-88--force{padding-top:88px!important}.pr-xs-88{padding-right:88px}.pr-xs-88--force{padding-right:88px!important}.pb-xs-88{padding-bottom:88px}.pb-xs-88--force{padding-bottom:88px!important}.pl-xs-88{padding-left:88px}.pl-xs-88--force{padding-left:88px!important}.p-xs-92{padding:92px}.p-xs-92--force{padding:92px!important}.px-xs-92{padding-right:92px;padding-left:92px}.px-xs-92--force{padding-right:92px!important;padding-left:92px!important}.py-xs-92{padding-top:92px;padding-bottom:92px}.py-xs-92--force{padding-top:92px!important;padding-bottom:92px!important}.pt-xs-92{padding-top:92px}.pt-xs-92--force{padding-top:92px!important}.pr-xs-92{padding-right:92px}.pr-xs-92--force{padding-right:92px!important}.pb-xs-92{padding-bottom:92px}.pb-xs-92--force{padding-bottom:92px!important}.pl-xs-92{padding-left:92px}.pl-xs-92--force{padding-left:92px!important}.p-xs-96{padding:96px}.p-xs-96--force{padding:96px!important}.px-xs-96{padding-right:96px;padding-left:96px}.px-xs-96--force{padding-right:96px!important;padding-left:96px!important}.py-xs-96{padding-top:96px;padding-bottom:96px}.py-xs-96--force{padding-top:96px!important;padding-bottom:96px!important}.pt-xs-96{padding-top:96px}.pt-xs-96--force{padding-top:96px!important}.pr-xs-96{padding-right:96px}.pr-xs-96--force{padding-right:96px!important}.pb-xs-96{padding-bottom:96px}.pb-xs-96--force{padding-bottom:96px!important}.pl-xs-96{padding-left:96px}.pl-xs-96--force{padding-left:96px!important}.d-xs-grid,.grid-xs-1,.grid-xs-10,.grid-xs-11,.grid-xs-12,.grid-xs-2,.grid-xs-3,.grid-xs-4,.grid-xs-5,.grid-xs-6,.grid-xs-7,.grid-xs-8,.grid-xs-9{display:grid}.grid-xs-1{grid-template-columns:repeat(1,minmax(0,1fr))}.colspan-xs-1,.span-xs-1c{grid-column-end:span 1}.rowspan-xs-1,.span-xs-1r{grid-row-end:span 1}.grid-xs-2{grid-template-columns:repeat(2,minmax(0,1fr))}.colspan-xs-2,.span-xs-2c{grid-column-end:span 2}.rowspan-xs-2,.span-xs-2r{grid-row-end:span 2}.grid-xs-3{grid-template-columns:repeat(3,minmax(0,1fr))}.colspan-xs-3,.span-xs-3c{grid-column-end:span 3}.rowspan-xs-3,.span-xs-3r{grid-row-end:span 3}.grid-xs-4{grid-template-columns:repeat(4,minmax(0,1fr))}.colspan-xs-4,.span-xs-4c{grid-column-end:span 4}.rowspan-xs-4,.span-xs-4r{grid-row-end:span 4}.grid-xs-5{grid-template-columns:repeat(5,minmax(0,1fr))}.colspan-xs-5,.span-xs-5c{grid-column-end:span 5}.rowspan-xs-5,.span-xs-5r{grid-row-end:span 5}.grid-xs-6{grid-template-columns:repeat(6,minmax(0,1fr))}.colspan-xs-6,.span-xs-6c{grid-column-end:span 6}.rowspan-xs-6,.span-xs-6r{grid-row-end:span 6}.grid-xs-7{grid-template-columns:repeat(7,minmax(0,1fr))}.colspan-xs-7,.span-xs-7c{grid-column-end:span 7}.rowspan-xs-7,.span-xs-7r{grid-row-end:span 7}.grid-xs-8{grid-template-columns:repeat(8,minmax(0,1fr))}.colspan-xs-8,.span-xs-8c{grid-column-end:span 8}.rowspan-xs-8,.span-xs-8r{grid-row-end:span 8}.grid-xs-9{grid-template-columns:repeat(9,minmax(0,1fr))}.colspan-xs-9,.span-xs-9c{grid-column-end:span 9}.rowspan-xs-9,.span-xs-9r{grid-row-end:span 9}.grid-xs-10{grid-template-columns:repeat(10,minmax(0,1fr))}.colspan-xs-10,.span-xs-10c{grid-column-end:span 10}.rowspan-xs-10,.span-xs-10r{grid-row-end:span 10}.grid-xs-11{grid-template-columns:repeat(11,minmax(0,1fr))}.colspan-xs-11,.span-xs-11c{grid-column-end:span 11}.rowspan-xs-11,.span-xs-11r{grid-row-end:span 11}.grid-xs-12{grid-template-columns:repeat(12,minmax(0,1fr))}.colspan-xs-12,.span-xs-12c{grid-column-end:span 12}.rowspan-xs-12,.span-xs-12r{grid-row-end:span 12}.row .col-xs-1{flex-basis:8.33333%}.row .col-offset-xs-1{margin-left:8.33333%}.row .col-xs-2{flex-basis:16.66667%}.row .col-offset-xs-2{margin-left:16.66667%}.row .col-xs-3{flex-basis:25%}.row .col-offset-xs-3{margin-left:25%}.row .col-xs-4{flex-basis:33.33333%}.row .col-offset-xs-4{margin-left:33.33333%}.row .col-xs-5{flex-basis:41.66667%}.row .col-offset-xs-5{margin-left:41.66667%}.row .col-xs-6{flex-basis:50%}.row .col-offset-xs-6{margin-left:50%}.row .col-xs-7{flex-basis:58.33333%}.row .col-offset-xs-7{margin-left:58.33333%}.row .col-xs-8{flex-basis:66.66667%}.row .col-offset-xs-8{margin-left:66.66667%}.row .col-xs-9{flex-basis:75%}.row .col-offset-xs-9{margin-left:75%}.row .col-xs-10{flex-basis:83.33333%}.row .col-offset-xs-10{margin-left:83.33333%}.row .col-xs-11{flex-basis:91.66667%}.row .col-offset-xs-11{margin-left:91.66667%}.flex-xs-basis-1,.row .col-xs-12{flex-basis:100%}.row .col-offset-xs-12{margin-left:100%}.row>div[class*=col-].align-start{align-self:flex-start}.row>div[class*=col-].align-center{align-self:center}.row>div[class*=col-].align-end{align-self:flex-end}.row.align-start{justify-content:flex-start}.row.align-center{justify-content:center}.row.align-end{justify-content:flex-end}.row.space-around{justify-content:space-around}.row.space-between{justify-content:space-between}.gap-xs-0{column-gap:0;row-gap:0}.gap-xs-4{column-gap:4px;row-gap:4px}.gap-xs-8{column-gap:8px;row-gap:8px}.gap-xs-12{column-gap:12px;row-gap:12px}.gap-xs-16{column-gap:16px;row-gap:16px}.gap-xs-20{column-gap:20px;row-gap:20px}.gap-xs-24{column-gap:24px;row-gap:24px}.gap-xs-28{column-gap:28px;row-gap:28px}.gap-xs-32{column-gap:32px;row-gap:32px}.gap-xs-36{column-gap:36px;row-gap:36px}.gap-xs-40{column-gap:40px;row-gap:40px}.gap-xs-44{column-gap:44px;row-gap:44px}.gap-xs-48{column-gap:48px;row-gap:48px}.z-index-xs--1{z-index:-1}.z-index-xs--1--force{z-index:-1!important}.z-index-xs-0{z-index:0}.z-index-xs-0--force{z-index:0!important}.z-index-xs-1{z-index:1}.z-index-xs-1--force{z-index:1!important}.z-index-xs-2{z-index:2}.z-index-xs-2--force{z-index:2!important}.z-index-xs-3{z-index:3}.z-index-xs-3--force{z-index:3!important}.z-index-xs-4{z-index:4}.z-index-xs-4--force{z-index:4!important}.z-index-xs-5{z-index:5}.z-index-xs-5--force{z-index:5!important}.z-index-xs-6{z-index:6}.z-index-xs-6--force{z-index:6!important}.z-index-xs-7{z-index:7}.z-index-xs-7--force{z-index:7!important}.z-index-xs-8{z-index:8}.z-index-xs-8--force{z-index:8!important}.z-index-xs-9{z-index:9}.z-index-xs-9--force{z-index:9!important}.z-index-xs-10{z-index:10}.z-index-xs-10--force{z-index:10!important}.z-index-xs-11{z-index:11}.z-index-xs-11--force{z-index:11!important}.z-index-xs-12{z-index:12}.z-index-xs-12--force{z-index:12!important}.z-index-xs-13{z-index:13}.z-index-xs-13--force{z-index:13!important}.z-index-xs-14{z-index:14}.z-index-xs-14--force{z-index:14!important}.z-index-xs-15{z-index:15}.z-index-xs-15--force{z-index:15!important}.z-index-xs-16{z-index:16}.z-index-xs-16--force{z-index:16!important}.z-index-xs-17{z-index:17}.z-index-xs-17--force{z-index:17!important}.z-index-xs-18{z-index:18}.z-index-xs-18--force{z-index:18!important}.z-index-xs-19{z-index:19}.z-index-xs-19--force{z-index:19!important}.z-index-xs-20{z-index:20}.z-index-xs-20--force{z-index:20!important}.z-index-xs-21{z-index:21}.z-index-xs-21--force{z-index:21!important}.z-index-xs-22{z-index:22}.z-index-xs-22--force{z-index:22!important}.z-index-xs-23{z-index:23}.z-index-xs-23--force{z-index:23!important}.z-index-xs-24{z-index:24}.z-index-xs-24--force{z-index:24!important}.order-xs--12{order:-12}.order-xs--12--force{order:-12!important}.order-xs--11{order:-11}.order-xs--11--force{order:-11!important}.order-xs--10{order:-10}.order-xs--10--force{order:-10!important}.order-xs--9{order:-9}.order-xs--9--force{order:-9!important}.order-xs--8{order:-8}.order-xs--8--force{order:-8!important}.order-xs--7{order:-7}.order-xs--7--force{order:-7!important}.order-xs--6{order:-6}.order-xs--6--force{order:-6!important}.order-xs--5{order:-5}.order-xs--5--force{order:-5!important}.order-xs--4{order:-4}.order-xs--4--force{order:-4!important}.order-xs--3{order:-3}.order-xs--3--force{order:-3!important}.order-xs--2{order:-2}.order-xs--2--force{order:-2!important}.order-xs--1{order:-1}.order-xs--1--force{order:-1!important}.order-xs-0{order:0}.order-xs-0--force{order:0!important}.order-xs-1{order:1}.order-xs-1--force{order:1!important}.order-xs-2{order:2}.order-xs-2--force{order:2!important}.order-xs-3{order:3}.order-xs-3--force{order:3!important}.order-xs-4{order:4}.order-xs-4--force{order:4!important}.order-xs-5{order:5}.order-xs-5--force{order:5!important}.order-xs-6{order:6}.order-xs-6--force{order:6!important}.order-xs-7{order:7}.order-xs-7--force{order:7!important}.order-xs-8{order:8}.order-xs-8--force{order:8!important}.order-xs-9{order:9}.order-xs-9--force{order:9!important}.order-xs-10{order:10}.order-xs-10--force{order:10!important}.order-xs-11{order:11}.order-xs-11--force{order:11!important}.order-xs-12{order:12}.order-xs-12--force{order:12!important}.order-xs-inherit{order:inherit}.order-xs-inherit--force{order:inherit!important}.order-xs-initial{order:initial}.order-xs-initial--force{order:initial!important}.place-xs-top{top:0}.place-xs-top--force{top:0!important}.place-xs-right{right:0}.place-xs-right--force{right:0!important}.place-xs-bottom{bottom:0}.place-xs-bottom--force{bottom:0!important}.place-xs-left{left:0}.place-xs-left--force{left:0!important}.position-xs-relative{position:relative}.position-xs-relative--force{position:relative!important}.position-xs-absolute{position:absolute}.position-xs-absolute--force{position:absolute!important}.position-xs-static{position:static}.position-xs-static--force{position:static!important}.position-xs-fixed{position:fixed}.position-xs-fixed--force{position:fixed!important}.d-xs-none{display:none}.d-xs-none--force{display:none!important}.d-xs-inline{display:inline}.d-xs-inline--force{display:inline!important}.d-xs-inline-block{display:inline-block}.d-xs-inline-block--force{display:inline-block!important}.d-xs-block{display:block}.d-xs-block--force{display:block!important}.d-xs-grid--force{display:grid!important}.d-xs-table{display:table}.d-xs-table--force{display:table!important}.d-xs-table-cell{display:table-cell}.d-xs-table-cell--force{display:table-cell!important}.d-xs-table-row{display:table-row}.d-xs-table-row--force{display:table-row!important}.d-xs-inline-flex{display:inline-flex}.d-xs-inline-flex--force{display:inline-flex!important}.d-xs-flex{display:flex}.d-xs-flex--force{display:flex!important}.flex-xs-row{display:flex;flex-direction:row}.flex-xs-row--force{display:flex!important;flex-direction:row!important}.flex-xs-row-reverse{display:flex;flex-direction:row-reverse}.flex-xs-row-reverse--force{display:flex!important;flex-direction:row-reverse!important}.flex-xs-column{display:flex;flex-direction:column}.flex-xs-column--force{display:flex!important;flex-direction:column!important}.flex-xs-column-reverse{display:flex;flex-direction:column-reverse}.flex-xs-column-reverse--force{display:flex!important;flex-direction:column-reverse!important}.flex-xs-nowrap{flex-wrap:nowrap}.flex-xs-nowrap--force{flex-wrap:nowrap!important}.flex-xs-wrap{flex-wrap:wrap}.flex-xs-wrap--force{flex-wrap:wrap!important}.flex-xs-align-center{display:flex;align-items:center}.flex-xs-align-center--force{display:flex!important;align-items:center!important}.flex-xs-align-start{display:flex;align-items:flex-start}.flex-xs-align-start--force{display:flex!important;align-items:flex-start!important}.flex-xs-align-end{display:flex;align-items:flex-end}.flex-xs-align-end--force{display:flex!important;align-items:flex-end!important}.flex-xs-align-inherit{display:flex;align-items:inherit}.flex-xs-align-inherit--force{display:flex!important;align-items:inherit!important}.flex-xs-align-initial{display:flex;align-items:initial}.flex-xs-align-initial--force{display:flex!important;align-items:initial!important}.flex-xs-align-self-end{display:flex;align-self:flex-end}.flex-xs-align-self-end--force{display:flex!important;align-self:flex-end!important}.flex-xs-align-self-start{display:flex;align-self:flex-start}.flex-xs-align-self-start--force{display:flex!important;align-self:flex-start!important}.flex-xs-align-self-inherit{display:flex;align-self:inherit}.flex-xs-align-self-inherit--force{display:flex!important;align-self:inherit!important}.flex-xs-align-self-initial{display:flex;align-self:initial}.flex-xs-align-self-initial--force{display:flex!important;align-self:initial!important}.flex-xs-center-center{display:flex;justify-content:center;align-items:center}.flex-xs-center-center--force{display:flex!important;justify-content:center!important;align-items:center!important}.flex-xs-center,.flex-xs-justify-center{display:flex;justify-content:center}.flex-xs-center--force,.flex-xs-justify-center--force{display:flex!important;justify-content:center!important}.flex-xs-end,.flex-xs-justify-end{display:flex;justify-content:flex-end}.flex-xs-end--force,.flex-xs-justify-end--force{display:flex!important;justify-content:flex-end!important}.flex-xs-justify-start,.flex-xs-start{display:flex;justify-content:flex-start}.flex-xs-justify-start--force,.flex-xs-start--force{display:flex!important;justify-content:flex-start!important}.flex-xs-inherit,.flex-xs-justify-inherit{display:flex;justify-content:inherit}.flex-xs-inherit--force,.flex-xs-justify-inherit--force{display:flex!important;justify-content:inherit!important}.flex-xs-initial,.flex-xs-justify-initial{display:flex;justify-content:initial}.flex-xs-initial--force,.flex-xs-justify-initial--force{display:flex!important;justify-content:initial!important}.flex-xs-left{display:flex;justify-content:left}.flex-xs-left--force{display:flex!important;justify-content:left!important}.flex-xs-right{display:flex;justify-content:right}.flex-xs-right--force{display:flex!important;justify-content:right!important}.flex-xs-normal{display:flex;justify-content:normal}.flex-xs-normal--force{display:flex!important;justify-content:normal!important}.flex-xs-revert{display:flex;justify-content:revert}.flex-xs-revert--force{display:flex!important;justify-content:revert!important}.flex-xs-around,.flex-xs-space-around{display:flex;justify-content:space-around}.flex-xs-around--force,.flex-xs-space-around--force{display:flex!important;justify-content:space-around!important}.flex-xs-between,.flex-xs-space-between{display:flex;justify-content:space-between}.flex-xs-between--force,.flex-xs-space-between--force{display:flex!important;justify-content:space-between!important}.flex-xs-evenly,.flex-xs-space-evenly{display:flex;justify-content:space-evenly}.flex-xs-evenly--force,.flex-xs-space-evenly--force{display:flex!important;justify-content:space-evenly!important}.flex-xs-stretch{display:flex;justify-content:stretch}.flex-xs-stretch--force{display:flex!important;justify-content:stretch!important}.flex-xs-unset{display:flex;justify-content:unset}.flex-xs-unset--force{display:flex!important;justify-content:unset!important}.flex-xs-grow-0{flex-grow:0}.flex-xs-shrink-0{flex-shrink:0}.flex-xs-grow-1{flex-grow:1}.flex-xs-shrink-1{flex-shrink:1}.flex-xs-grow-2{flex-grow:2}.flex-xs-shrink-2{flex-shrink:2}.flex-xs-grow-3{flex-grow:3}.flex-xs-shrink-3{flex-shrink:3}.flex-xs-full{flex-grow:1;flex-shrink:1;flex-basis:100%}.fw-xs-100{font-weight:100}.fw-xs-100--force{font-weight:100!important}.fw-xs-200{font-weight:200}.fw-xs-200--force{font-weight:200!important}.fw-xs-300{font-weight:300}.fw-xs-300--force{font-weight:300!important}.fw-xs-400{font-weight:400}.fw-xs-400--force{font-weight:400!important}.fw-xs-500{font-weight:500}.fw-xs-500--force{font-weight:500!important}.fw-xs-600{font-weight:600}.fw-xs-600--force{font-weight:600!important}.fw-xs-700{font-weight:700}.fw-xs-700--force{font-weight:700!important}.fw-xs-800{font-weight:800}.fw-xs-800--force{font-weight:800!important}.fw-xs-900{font-weight:900}.fw-xs-900--force{font-weight:900!important}.fs-xs-0{font-size:0px}.fs-xs-0--force{font-size:0px!important}.fs-xs-1{font-size:1px}.fs-xs-1--force{font-size:1px!important}.fs-xs-2{font-size:2px}.fs-xs-2--force{font-size:2px!important}.fs-xs-3{font-size:3px}.fs-xs-3--force{font-size:3px!important}.fs-xs-4{font-size:4px}.fs-xs-4--force{font-size:4px!important}.fs-xs-5{font-size:5px}.fs-xs-5--force{font-size:5px!important}.fs-xs-6{font-size:6px}.fs-xs-6--force{font-size:6px!important}.fs-xs-7{font-size:7px}.fs-xs-7--force{font-size:7px!important}.fs-xs-8{font-size:8px}.fs-xs-8--force{font-size:8px!important}.fs-xs-9{font-size:9px}.fs-xs-9--force{font-size:9px!important}.fs-xs-10{font-size:10px}.fs-xs-10--force{font-size:10px!important}.fs-xs-11{font-size:11px}.fs-xs-11--force{font-size:11px!important}.fs-xs-12{font-size:12px}.fs-xs-12--force{font-size:12px!important}.fs-xs-13{font-size:13px}.fs-xs-13--force{font-size:13px!important}.fs-xs-14{font-size:14px}.fs-xs-14--force{font-size:14px!important}.fs-xs-15{font-size:15px}.fs-xs-15--force{font-size:15px!important}.fs-xs-16{font-size:16px}.fs-xs-16--force{font-size:16px!important}.fs-xs-17{font-size:17px}.fs-xs-17--force{font-size:17px!important}.fs-xs-18{font-size:18px}.fs-xs-18--force{font-size:18px!important}.fs-xs-19{font-size:19px}.fs-xs-19--force{font-size:19px!important}.fs-xs-20{font-size:20px}.fs-xs-20--force{font-size:20px!important}.fs-xs-21{font-size:21px}.fs-xs-21--force{font-size:21px!important}.fs-xs-22{font-size:22px}.fs-xs-22--force{font-size:22px!important}.fs-xs-23{font-size:23px}.fs-xs-23--force{font-size:23px!important}.fs-xs-24{font-size:24px}.fs-xs-24--force{font-size:24px!important}.fs-xs-25{font-size:25px}.fs-xs-25--force{font-size:25px!important}.fs-xs-26{font-size:26px}.fs-xs-26--force{font-size:26px!important}.fs-xs-27{font-size:27px}.fs-xs-27--force{font-size:27px!important}.fs-xs-28{font-size:28px}.fs-xs-28--force{font-size:28px!important}.fs-xs-29{font-size:29px}.fs-xs-29--force{font-size:29px!important}.fs-xs-30{font-size:30px}.fs-xs-30--force{font-size:30px!important}.fs-xs-31{font-size:31px}.fs-xs-31--force{font-size:31px!important}.fs-xs-32{font-size:32px}.fs-xs-32--force{font-size:32px!important}.fs-xs-33{font-size:33px}.fs-xs-33--force{font-size:33px!important}.fs-xs-34{font-size:34px}.fs-xs-34--force{font-size:34px!important}.fs-xs-35{font-size:35px}.fs-xs-35--force{font-size:35px!important}.fs-xs-36{font-size:36px}.fs-xs-36--force{font-size:36px!important}.fs-xs-37{font-size:37px}.fs-xs-37--force{font-size:37px!important}.fs-xs-38{font-size:38px}.fs-xs-38--force{font-size:38px!important}.fs-xs-39{font-size:39px}.fs-xs-39--force{font-size:39px!important}.fs-xs-40{font-size:40px}.fs-xs-40--force{font-size:40px!important}.fs-xs-41{font-size:41px}.fs-xs-41--force{font-size:41px!important}.fs-xs-42{font-size:42px}.fs-xs-42--force{font-size:42px!important}.fs-xs-43{font-size:43px}.fs-xs-43--force{font-size:43px!important}.fs-xs-44{font-size:44px}.fs-xs-44--force{font-size:44px!important}.fs-xs-45{font-size:45px}.fs-xs-45--force{font-size:45px!important}.fs-xs-46{font-size:46px}.fs-xs-46--force{font-size:46px!important}.fs-xs-47{font-size:47px}.fs-xs-47--force{font-size:47px!important}.fs-xs-48{font-size:48px}.fs-xs-48--force{font-size:48px!important}.fs-xs-49{font-size:49px}.fs-xs-49--force{font-size:49px!important}.fs-xs-50{font-size:50px}.fs-xs-50--force{font-size:50px!important}.fs-xs-51{font-size:51px}.fs-xs-51--force{font-size:51px!important}.fs-xs-52{font-size:52px}.fs-xs-52--force{font-size:52px!important}.fs-xs-53{font-size:53px}.fs-xs-53--force{font-size:53px!important}.fs-xs-54{font-size:54px}.fs-xs-54--force{font-size:54px!important}.fs-xs-55{font-size:55px}.fs-xs-55--force{font-size:55px!important}.fs-xs-56{font-size:56px}.fs-xs-56--force{font-size:56px!important}.fs-xs-57{font-size:57px}.fs-xs-57--force{font-size:57px!important}.fs-xs-58{font-size:58px}.fs-xs-58--force{font-size:58px!important}.fs-xs-59{font-size:59px}.fs-xs-59--force{font-size:59px!important}.fs-xs-60{font-size:60px}.fs-xs-60--force{font-size:60px!important}.fs-xs-61{font-size:61px}.fs-xs-61--force{font-size:61px!important}.fs-xs-62{font-size:62px}.fs-xs-62--force{font-size:62px!important}.fs-xs-63{font-size:63px}.fs-xs-63--force{font-size:63px!important}.fs-xs-64{font-size:64px}.fs-xs-64--force{font-size:64px!important}.fs-xs-65{font-size:65px}.fs-xs-65--force{font-size:65px!important}.fs-xs-66{font-size:66px}.fs-xs-66--force{font-size:66px!important}.fs-xs-67{font-size:67px}.fs-xs-67--force{font-size:67px!important}.fs-xs-68{font-size:68px}.fs-xs-68--force{font-size:68px!important}.fs-xs-69{font-size:69px}.fs-xs-69--force{font-size:69px!important}.fs-xs-70{font-size:70px}.fs-xs-70--force{font-size:70px!important}.fs-xs-71{font-size:71px}.fs-xs-71--force{font-size:71px!important}.fs-xs-72{font-size:72px}.fs-xs-72--force{font-size:72px!important}.fs-xs-73{font-size:73px}.fs-xs-73--force{font-size:73px!important}.fs-xs-74{font-size:74px}.fs-xs-74--force{font-size:74px!important}.fs-xs-75{font-size:75px}.fs-xs-75--force{font-size:75px!important}.fs-xs-76{font-size:76px}.fs-xs-76--force{font-size:76px!important}.fs-xs-77{font-size:77px}.fs-xs-77--force{font-size:77px!important}.fs-xs-78{font-size:78px}.fs-xs-78--force{font-size:78px!important}.fs-xs-79{font-size:79px}.fs-xs-79--force{font-size:79px!important}.fs-xs-80{font-size:80px}.fs-xs-80--force{font-size:80px!important}.fs-xs-81{font-size:81px}.fs-xs-81--force{font-size:81px!important}.fs-xs-82{font-size:82px}.fs-xs-82--force{font-size:82px!important}.fs-xs-83{font-size:83px}.fs-xs-83--force{font-size:83px!important}.fs-xs-84{font-size:84px}.fs-xs-84--force{font-size:84px!important}.fs-xs-85{font-size:85px}.fs-xs-85--force{font-size:85px!important}.fs-xs-86{font-size:86px}.fs-xs-86--force{font-size:86px!important}.fs-xs-87{font-size:87px}.fs-xs-87--force{font-size:87px!important}.fs-xs-88{font-size:88px}.fs-xs-88--force{font-size:88px!important}.fs-xs-89{font-size:89px}.fs-xs-89--force{font-size:89px!important}.fs-xs-90{font-size:90px}.fs-xs-90--force{font-size:90px!important}.fs-xs-91{font-size:91px}.fs-xs-91--force{font-size:91px!important}.fs-xs-92{font-size:92px}.fs-xs-92--force{font-size:92px!important}.fs-xs-93{font-size:93px}.fs-xs-93--force{font-size:93px!important}.fs-xs-94{font-size:94px}.fs-xs-94--force{font-size:94px!important}.fs-xs-95{font-size:95px}.fs-xs-95--force{font-size:95px!important}.fs-xs-96{font-size:96px}.fs-xs-96--force{font-size:96px!important}.ls-xs-0{letter-spacing:0}.ls-xs-0--force{letter-spacing:0!important}.ls-xs-1{letter-spacing:.1em}.ls-xs-1--force{letter-spacing:.1em!important}.ls-xs-2{letter-spacing:.2em}.ls-xs-2--force{letter-spacing:.2em!important}.ls-xs-3{letter-spacing:.3em}.ls-xs-3--force{letter-spacing:.3em!important}.ls-xs-4{letter-spacing:.4em}.ls-xs-4--force{letter-spacing:.4em!important}.ls-xs-5{letter-spacing:.5em}.ls-xs-5--force{letter-spacing:.5em!important}.ls-xs-6{letter-spacing:.6em}.ls-xs-6--force{letter-spacing:.6em!important}.ls-xs-7{letter-spacing:.7em}.ls-xs-7--force{letter-spacing:.7em!important}.ls-xs-8{letter-spacing:.8em}.ls-xs-8--force{letter-spacing:.8em!important}.ls-xs-9{letter-spacing:.9em}.ls-xs-9--force{letter-spacing:.9em!important}.ls-xs-10{letter-spacing:1em}.ls-xs-10--force{letter-spacing:1em!important}.ls-xs-11{letter-spacing:1.1em}.ls-xs-11--force{letter-spacing:1.1em!important}.ls-xs-12{letter-spacing:1.2em}.ls-xs-12--force{letter-spacing:1.2em!important}.ls-xs-13{letter-spacing:1.3em}.ls-xs-13--force{letter-spacing:1.3em!important}.ls-xs-14{letter-spacing:1.4em}.ls-xs-14--force{letter-spacing:1.4em!important}.ls-xs-15{letter-spacing:1.5em}.ls-xs-15--force{letter-spacing:1.5em!important}.ls-xs-16{letter-spacing:1.6em}.ls-xs-16--force{letter-spacing:1.6em!important}.ls-xs-17{letter-spacing:1.7em}.ls-xs-17--force{letter-spacing:1.7em!important}.ls-xs-18{letter-spacing:1.8em}.ls-xs-18--force{letter-spacing:1.8em!important}.lh-xs-0{line-height:0}.lh-xs-0--force{line-height:0!important}.lh-xs-1{line-height:1px}.lh-xs-1--force{line-height:1px!important}.lh-xs-2{line-height:2px}.lh-xs-2--force{line-height:2px!important}.lh-xs-3{line-height:3px}.lh-xs-3--force{line-height:3px!important}.lh-xs-4{line-height:4px}.lh-xs-4--force{line-height:4px!important}.lh-xs-5{line-height:5px}.lh-xs-5--force{line-height:5px!important}.lh-xs-6{line-height:6px}.lh-xs-6--force{line-height:6px!important}.lh-xs-7{line-height:7px}.lh-xs-7--force{line-height:7px!important}.lh-xs-8{line-height:8px}.lh-xs-8--force{line-height:8px!important}.lh-xs-9{line-height:9px}.lh-xs-9--force{line-height:9px!important}.lh-xs-10{line-height:10px}.lh-xs-10--force{line-height:10px!important}.lh-xs-11{line-height:11px}.lh-xs-11--force{line-height:11px!important}.lh-xs-12{line-height:12px}.lh-xs-12--force{line-height:12px!important}.lh-xs-13{line-height:13px}.lh-xs-13--force{line-height:13px!important}.lh-xs-14{line-height:14px}.lh-xs-14--force{line-height:14px!important}.lh-xs-15{line-height:15px}.lh-xs-15--force{line-height:15px!important}.lh-xs-16{line-height:16px}.lh-xs-16--force{line-height:16px!important}.lh-xs-17{line-height:17px}.lh-xs-17--force{line-height:17px!important}.lh-xs-18{line-height:18px}.lh-xs-18--force{line-height:18px!important}.lh-xs-19{line-height:19px}.lh-xs-19--force{line-height:19px!important}.lh-xs-20{line-height:20px}.lh-xs-20--force{line-height:20px!important}.lh-xs-21{line-height:21px}.lh-xs-21--force{line-height:21px!important}.lh-xs-22{line-height:22px}.lh-xs-22--force{line-height:22px!important}.lh-xs-23{line-height:23px}.lh-xs-23--force{line-height:23px!important}.lh-xs-24{line-height:24px}.lh-xs-24--force{line-height:24px!important}.lh-xs-25{line-height:25px}.lh-xs-25--force{line-height:25px!important}.lh-xs-26{line-height:26px}.lh-xs-26--force{line-height:26px!important}.lh-xs-27{line-height:27px}.lh-xs-27--force{line-height:27px!important}.lh-xs-28{line-height:28px}.lh-xs-28--force{line-height:28px!important}.lh-xs-29{line-height:29px}.lh-xs-29--force{line-height:29px!important}.lh-xs-30{line-height:30px}.lh-xs-30--force{line-height:30px!important}.lh-xs-31{line-height:31px}.lh-xs-31--force{line-height:31px!important}.lh-xs-32{line-height:32px}.lh-xs-32--force{line-height:32px!important}.lh-xs-33{line-height:33px}.lh-xs-33--force{line-height:33px!important}.lh-xs-34{line-height:34px}.lh-xs-34--force{line-height:34px!important}.lh-xs-35{line-height:35px}.lh-xs-35--force{line-height:35px!important}.lh-xs-36{line-height:36px}.lh-xs-36--force{line-height:36px!important}.lh-xs-37{line-height:37px}.lh-xs-37--force{line-height:37px!important}.lh-xs-38{line-height:38px}.lh-xs-38--force{line-height:38px!important}.lh-xs-39{line-height:39px}.lh-xs-39--force{line-height:39px!important}.lh-xs-40{line-height:40px}.lh-xs-40--force{line-height:40px!important}.lh-xs-41{line-height:41px}.lh-xs-41--force{line-height:41px!important}.lh-xs-42{line-height:42px}.lh-xs-42--force{line-height:42px!important}.lh-xs-43{line-height:43px}.lh-xs-43--force{line-height:43px!important}.lh-xs-44{line-height:44px}.lh-xs-44--force{line-height:44px!important}.lh-xs-45{line-height:45px}.lh-xs-45--force{line-height:45px!important}.lh-xs-46{line-height:46px}.lh-xs-46--force{line-height:46px!important}.lh-xs-47{line-height:47px}.lh-xs-47--force{line-height:47px!important}.lh-xs-48{line-height:48px}.lh-xs-48--force{line-height:48px!important}.lh-xs-49{line-height:49px}.lh-xs-49--force{line-height:49px!important}.lh-xs-50{line-height:50px}.lh-xs-50--force{line-height:50px!important}.lh-xs-51{line-height:51px}.lh-xs-51--force{line-height:51px!important}.lh-xs-52{line-height:52px}.lh-xs-52--force{line-height:52px!important}.lh-xs-53{line-height:53px}.lh-xs-53--force{line-height:53px!important}.lh-xs-54{line-height:54px}.lh-xs-54--force{line-height:54px!important}.lh-xs-55{line-height:55px}.lh-xs-55--force{line-height:55px!important}.lh-xs-56{line-height:56px}.lh-xs-56--force{line-height:56px!important}.lh-xs-57{line-height:57px}.lh-xs-57--force{line-height:57px!important}.lh-xs-58{line-height:58px}.lh-xs-58--force{line-height:58px!important}.lh-xs-59{line-height:59px}.lh-xs-59--force{line-height:59px!important}.lh-xs-60{line-height:60px}.lh-xs-60--force{line-height:60px!important}.lh-xs-61{line-height:61px}.lh-xs-61--force{line-height:61px!important}.lh-xs-62{line-height:62px}.lh-xs-62--force{line-height:62px!important}.lh-xs-63{line-height:63px}.lh-xs-63--force{line-height:63px!important}.lh-xs-64{line-height:64px}.lh-xs-64--force{line-height:64px!important}.lh-xs-65{line-height:65px}.lh-xs-65--force{line-height:65px!important}.lh-xs-66{line-height:66px}.lh-xs-66--force{line-height:66px!important}.lh-xs-67{line-height:67px}.lh-xs-67--force{line-height:67px!important}.lh-xs-68{line-height:68px}.lh-xs-68--force{line-height:68px!important}.lh-xs-69{line-height:69px}.lh-xs-69--force{line-height:69px!important}.lh-xs-70{line-height:70px}.lh-xs-70--force{line-height:70px!important}.lh-xs-71{line-height:71px}.lh-xs-71--force{line-height:71px!important}.lh-xs-72{line-height:72px}.lh-xs-72--force{line-height:72px!important}.lh-xs-73{line-height:73px}.lh-xs-73--force{line-height:73px!important}.lh-xs-74{line-height:74px}.lh-xs-74--force{line-height:74px!important}.lh-xs-75{line-height:75px}.lh-xs-75--force{line-height:75px!important}.lh-xs-76{line-height:76px}.lh-xs-76--force{line-height:76px!important}.lh-xs-77{line-height:77px}.lh-xs-77--force{line-height:77px!important}.lh-xs-78{line-height:78px}.lh-xs-78--force{line-height:78px!important}.lh-xs-79{line-height:79px}.lh-xs-79--force{line-height:79px!important}.lh-xs-80{line-height:80px}.lh-xs-80--force{line-height:80px!important}.lh-xs-81{line-height:81px}.lh-xs-81--force{line-height:81px!important}.lh-xs-82{line-height:82px}.lh-xs-82--force{line-height:82px!important}.lh-xs-83{line-height:83px}.lh-xs-83--force{line-height:83px!important}.lh-xs-84{line-height:84px}.lh-xs-84--force{line-height:84px!important}.lh-xs-85{line-height:85px}.lh-xs-85--force{line-height:85px!important}.lh-xs-86{line-height:86px}.lh-xs-86--force{line-height:86px!important}.lh-xs-87{line-height:87px}.lh-xs-87--force{line-height:87px!important}.lh-xs-88{line-height:88px}.lh-xs-88--force{line-height:88px!important}.lh-xs-89{line-height:89px}.lh-xs-89--force{line-height:89px!important}.lh-xs-90{line-height:90px}.lh-xs-90--force{line-height:90px!important}.lh-xs-91{line-height:91px}.lh-xs-91--force{line-height:91px!important}.lh-xs-92{line-height:92px}.lh-xs-92--force{line-height:92px!important}.lh-xs-93{line-height:93px}.lh-xs-93--force{line-height:93px!important}.lh-xs-94{line-height:94px}.lh-xs-94--force{line-height:94px!important}.lh-xs-95{line-height:95px}.lh-xs-95--force{line-height:95px!important}.lh-xs-96{line-height:96px}.lh-xs-96--force{line-height:96px!important}.lh-xs-97{line-height:97px}.lh-xs-97--force{line-height:97px!important}.lh-xs-98{line-height:98px}.lh-xs-98--force{line-height:98px!important}.lh-xs-99{line-height:99px}.lh-xs-99--force{line-height:99px!important}.lh-xs-100{line-height:100px}.lh-xs-100--force{line-height:100px!important}.aspect-ratio-xs-auto{aspect-ratio:auto}.aspect-ratio-xs-auto--force{aspect-ratio:auto!important}.aspect-ratio-xs-1x1{aspect-ratio:1/1}.aspect-ratio-xs-1x1--force{aspect-ratio:1/1!important}.aspect-ratio-xs-1x2{aspect-ratio:1/2}.aspect-ratio-xs-1x2--force{aspect-ratio:1/2!important}.aspect-ratio-xs-2x1{aspect-ratio:2/1}.aspect-ratio-xs-2x1--force{aspect-ratio:2/1!important}.aspect-ratio-xs-3x4{aspect-ratio:3/4}.aspect-ratio-xs-3x4--force{aspect-ratio:3/4!important}.aspect-ratio-xs-4x3{aspect-ratio:4/3}.aspect-ratio-xs-4x3--force{aspect-ratio:4/3!important}.aspect-ratio-xs-9x16{aspect-ratio:9/16}.aspect-ratio-xs-9x16--force{aspect-ratio:9/16!important}.aspect-ratio-xs-16x9{aspect-ratio:16/9}.aspect-ratio-xs-16x9--force{aspect-ratio:16/9!important}.aspect-ratio-xs-half{aspect-ratio:0.5}.aspect-ratio-xs-half--force{aspect-ratio:0.5!important}.aspect-ratio-xs-inherit{aspect-ratio:inherit}.aspect-ratio-xs-inherit--force{aspect-ratio:inherit!important}.aspect-ratio-xs-initial{aspect-ratio:initial}.aspect-ratio-xs-initial--force{aspect-ratio:initial!important}.aspect-ratio-xs-unset{aspect-ratio:unset}.aspect-ratio-xs-unset--force{aspect-ratio:unset!important}.cursor-pointer-xs{cursor:pointer}.cursor-pointer-xs--force{cursor:pointer!important}.cursor-default-xs{cursor:default}.cursor-default-xs--force{cursor:default!important}.cursor-grab-xs{cursor:grab}.cursor-grab-xs--force{cursor:grab!important}.cursor-grabbing-xs{cursor:grabbing}.cursor-grabbing-xs--force{cursor:grabbing!important}.cursor-move-xs{cursor:move}.cursor-move-xs--force{cursor:move!important}.cursor-help-xs{cursor:help}.cursor-help-xs--force{cursor:help!important}.cursor-wait-xs{cursor:wait}.cursor-wait-xs--force{cursor:wait!important}.opacity-xs-0{opacity:0}.opacity-xs-0--force{opacity:0!important}.opacity-xs-01{opacity:.1}.opacity-xs-01--force{opacity:.1!important}.opacity-xs-02{opacity:.2}.opacity-xs-02--force{opacity:.2!important}.opacity-xs-03{opacity:.3}.opacity-xs-03--force{opacity:.3!important}.opacity-xs-04{opacity:.4}.opacity-xs-04--force{opacity:.4!important}.opacity-xs-05{opacity:.5}.opacity-xs-05--force{opacity:.5!important}.opacity-xs-06{opacity:.6}.opacity-xs-06--force{opacity:.6!important}.opacity-xs-07{opacity:.7}.opacity-xs-07--force{opacity:.7!important}.opacity-xs-08{opacity:.8}.opacity-xs-08--force{opacity:.8!important}.opacity-xs-09{opacity:.9}.opacity-xs-09--force{opacity:.9!important}.opacity-xs-10{opacity:1}.opacity-xs-10--force{opacity:1!important}.opacity-xs-1{opacity:1}.opacity-xs-1--force{opacity:1!important}.text-xs-decoration-strike,.text-xs-line-through,.text-xs-strike{text-decoration:line-through}.text-xs-decoration-strike--force,.text-xs-line-through--force,.text-xs-strike--force{text-decoration:line-through!important}.text-xs-decoration-none,.text-xs-none{text-decoration:none}.text-xs-decoration-none--force,.text-xs-none--force{text-decoration:none!important}.text-xs-super{vertical-align:super}.text-xs-super--force{vertical-align:super!important}.text-xs-sub{vertical-align:sub}.text-xs-sub--force{vertical-align:sub!important}.text-xs-capitalize{text-transform:capitalize}.text-xs-capitalize--force{text-transform:capitalize!important}.text-xs-lowercase{text-transform:lowercase}.text-xs-lowercase--force{text-transform:lowercase!important}.text-xs-uppercase{text-transform:uppercase}.text-xs-uppercase--force{text-transform:uppercase!important}.text-xs-nowrap{white-space:nowrap}.text-xs-left{text-align:left}.text-xs-left--force{text-align:left!important}.text-xs-center{text-align:center}.text-xs-center--force{text-align:center!important}.text-xs-right{text-align:right}.text-xs-right--force{text-align:right!important}.text-xs-boxed{border-radius:2px;padding:4px 8px;margin:0 8px;font-size:11px;font-weight:600;white-space:nowrap}.text-xs-ellipsis,.text-xs-truncate{display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.overflow-xs-auto{overflow:auto}.overflow-xs-auto--force{overflow:auto!important}.overflow-xs-scroll{overflow:scroll}.overflow-xs-scroll--force{overflow:scroll!important}.overflow-xs-hidden{overflow:hidden}.overflow-xs-hidden--force{overflow:hidden!important}.overflow-xs-overlay{overflow:overlay}.overflow-xs-overlay--force{overflow:overlay!important}.overflow-x-xs-auto{overflow-x:auto}.overflow-x-xs-auto--force{overflow-x:auto!important}.overflow-x-xs-scroll{overflow-x:scroll}.overflow-x-xs-scroll--force{overflow-x:scroll!important}.overflow-x-xs-hidden{overflow-x:hidden}.overflow-x-xs-hidden--force{overflow-x:hidden!important}.overflow-x-xs-overlay{overflow-x:overlay}.overflow-x-xs-overlay--force{overflow-x:overlay!important}.overflow-y-xs-auto{overflow-y:auto}.overflow-y-xs-auto--force{overflow-y:auto!important}.overflow-y-xs-scroll{overflow-y:scroll}.overflow-y-xs-scroll--force{overflow-y:scroll!important}.overflow-y-xs-hidden{overflow-y:hidden}.overflow-y-xs-hidden--force{overflow-y:hidden!important}.overflow-y-xs-overlay{overflow-y:overlay}.overflow-y-xs-overlay--force{overflow-y:overlay!important}.b-xs-0,.border-xs-0{border:0 solid}.bb-xs-0,.border-bottom-xs-0{border-bottom:0 solid}.bb-xs-0--force,.border-bottom-xs-0--force{border-bottom:0 solid!important}.border-top-xs-0,.bt-xs-0{border-top:0 solid}.border-top-xs-0--force,.bt-xs-0--force{border-top:0 solid!important}.bl-xs-0,.border-left-xs-0{border-left:0 solid}.bl-xs-0--force,.border-left-xs-0--force{border-left:0 solid!important}.border-right-xs-0,.br-xs-0{border-right:0px solid}.border-right-xs-0--force,.br-xs-0--force{border-right:0px solid!important}.b-xs-2,.border-xs-2{border:2px solid}.bb-xs-2,.border-bottom-xs-2{border-bottom:2px solid}.bb-xs-2--force,.border-bottom-xs-2--force{border-bottom:2px solid!important}.border-top-xs-2,.bt-xs-2{border-top:2px solid}.border-top-xs-2--force,.bt-xs-2--force{border-top:2px solid!important}.bl-xs-2,.border-left-xs-2{border-left:2px solid}.bl-xs-2--force,.border-left-xs-2--force{border-left:2px solid!important}.border-right-xs-2,.br-xs-2{border-right:2px solid}.border-right-xs-2--force,.br-xs-2--force{border-right:2px solid!important}.b-xs-4,.border-xs-4{border:4px solid}.bb-xs-4,.border-bottom-xs-4{border-bottom:4px solid}.bb-xs-4--force,.border-bottom-xs-4--force{border-bottom:4px solid!important}.border-top-xs-4,.bt-xs-4{border-top:4px solid}.border-top-xs-4--force,.bt-xs-4--force{border-top:4px solid!important}.bl-xs-4,.border-left-xs-4{border-left:4px solid}.bl-xs-4--force,.border-left-xs-4--force{border-left:4px solid!important}.border-right-xs-4,.br-xs-4{border-right:4px solid}.border-right-xs-4--force,.br-xs-4--force{border-right:4px solid!important}.b-xs-6,.border-xs-6{border:6px solid}.bb-xs-6,.border-bottom-xs-6{border-bottom:6px solid}.bb-xs-6--force,.border-bottom-xs-6--force{border-bottom:6px solid!important}.border-top-xs-6,.bt-xs-6{border-top:6px solid}.border-top-xs-6--force,.bt-xs-6--force{border-top:6px solid!important}.bl-xs-6,.border-left-xs-6{border-left:6px solid}.bl-xs-6--force,.border-left-xs-6--force{border-left:6px solid!important}.border-right-xs-6,.br-xs-6{border-right:6px solid}.border-right-xs-6--force,.br-xs-6--force{border-right:6px solid!important}.b-xs-8,.border-xs-8{border:8px solid}.bb-xs-8,.border-bottom-xs-8{border-bottom:8px solid}.bb-xs-8--force,.border-bottom-xs-8--force{border-bottom:8px solid!important}.border-top-xs-8,.bt-xs-8{border-top:8px solid}.border-top-xs-8--force,.bt-xs-8--force{border-top:8px solid!important}.bl-xs-8,.border-left-xs-8{border-left:8px solid}.bl-xs-8--force,.border-left-xs-8--force{border-left:8px solid!important}.border-right-xs-8,.br-xs-8{border-right:8px solid}.border-right-xs-8--force,.br-xs-8--force{border-right:8px solid!important}.b-xs-none,.border-xs-none{border:none}.b-xs-none--force,.border-xs-none--force{border:none!important}.border-style-xs-solid{border-style:solid}.border-style-xs-solid--force{border-style:solid!important}.border-style-xs-dashed{border-style:dashed}.border-style-xs-dashed--force{border-style:dashed!important}.border-style-xs-dotted{border-style:dotted}.border-style-xs-dotted--force{border-style:dotted!important}.border-style-xs-double{border-style:double}.border-style-xs-double--force{border-style:double!important}.border-style-xs-groove{border-style:groove}.border-style-xs-groove--force{border-style:groove!important}.border-style-xs-ridge{border-style:ridge}.border-style-xs-ridge--force{border-style:ridge!important}.border-style-xs-inset{border-style:inset}.border-style-xs-inset--force{border-style:inset!important}.border-style-xs-outset{border-style:outset}.border-style-xs-outset--force{border-style:outset!important}.border-style-xs-none{border-style:none}.border-style-xs-none--force{border-style:none!important}.radius-bottom-xs-0,.radius-left-xs-0,.radius-right-xs-0,.radius-top-xs-0,.radius-xs-0,.radius-xs-none{border-radius:0}.radius-bottom-xs-0--force,.radius-left-xs-0--force,.radius-right-xs-0--force,.radius-top-xs-0--force,.radius-xs-none--force{border-radius:0!important}.radius-xs-2{border-radius:2px}.radius-bottom-xs-2{border-radius:0 0 2px 2px}.radius-bottom-xs-2--force{border-radius:0 0 2px 2px!important}.radius-top-xs-2{border-radius:2px 2px 0 0}.radius-top-xs-2--force{border-radius:2px 2px 0 0!important}.radius-left-xs-2{border-radius:2px 0 0 2px}.radius-left-xs-2--force{border-radius:2px 0 0 2px!important}.radius-right-xs-2{border-radius:0 2px 2px 0}.radius-right-xs-2--force{border-radius:0 2px 2px 0!important}.radius-xs-4{border-radius:4px}.radius-bottom-xs-4{border-radius:0 0 4px 4px}.radius-bottom-xs-4--force{border-radius:0 0 4px 4px!important}.radius-top-xs-4{border-radius:4px 4px 0 0}.radius-top-xs-4--force{border-radius:4px 4px 0 0!important}.radius-left-xs-4{border-radius:4px 0 0 4px}.radius-left-xs-4--force{border-radius:4px 0 0 4px!important}.radius-right-xs-4{border-radius:0 4px 4px 0}.radius-right-xs-4--force{border-radius:0 4px 4px 0!important}.radius-xs-6{border-radius:6px}.radius-bottom-xs-6{border-radius:0 0 6px 6px}.radius-bottom-xs-6--force{border-radius:0 0 6px 6px!important}.radius-top-xs-6{border-radius:6px 6px 0 0}.radius-top-xs-6--force{border-radius:6px 6px 0 0!important}.radius-left-xs-6{border-radius:6px 0 0 6px}.radius-left-xs-6--force{border-radius:6px 0 0 6px!important}.radius-right-xs-6{border-radius:0 6px 6px 0}.radius-right-xs-6--force{border-radius:0 6px 6px 0!important}.radius-xs-8{border-radius:8px}.radius-bottom-xs-8{border-radius:0 0 8px 8px}.radius-bottom-xs-8--force{border-radius:0 0 8px 8px!important}.radius-top-xs-8{border-radius:8px 8px 0 0}.radius-top-xs-8--force{border-radius:8px 8px 0 0!important}.radius-left-xs-8{border-radius:8px 0 0 8px}.radius-left-xs-8--force{border-radius:8px 0 0 8px!important}.radius-right-xs-8{border-radius:0 8px 8px 0}.radius-right-xs-8--force{border-radius:0 8px 8px 0!important}.radius-xs-10{border-radius:10px}.radius-bottom-xs-10{border-radius:0 0 10px 10px}.radius-bottom-xs-10--force{border-radius:0 0 10px 10px!important}.radius-top-xs-10{border-radius:10px 10px 0 0}.radius-top-xs-10--force{border-radius:10px 10px 0 0!important}.radius-left-xs-10{border-radius:10px 0 0 10px}.radius-left-xs-10--force{border-radius:10px 0 0 10px!important}.radius-right-xs-10{border-radius:0 10px 10px 0}.radius-right-xs-10--force{border-radius:0 10px 10px 0!important}.radius-xs-12{border-radius:12px}.radius-bottom-xs-12{border-radius:0 0 12px 12px}.radius-bottom-xs-12--force{border-radius:0 0 12px 12px!important}.radius-top-xs-12{border-radius:12px 12px 0 0}.radius-top-xs-12--force{border-radius:12px 12px 0 0!important}.radius-left-xs-12{border-radius:12px 0 0 12px}.radius-left-xs-12--force{border-radius:12px 0 0 12px!important}.radius-right-xs-12{border-radius:0 12px 12px 0}.radius-right-xs-12--force{border-radius:0 12px 12px 0!important}.radius-xs-14{border-radius:14px}.radius-bottom-xs-14{border-radius:0 0 14px 14px}.radius-bottom-xs-14--force{border-radius:0 0 14px 14px!important}.radius-top-xs-14{border-radius:14px 14px 0 0}.radius-top-xs-14--force{border-radius:14px 14px 0 0!important}.radius-left-xs-14{border-radius:14px 0 0 14px}.radius-left-xs-14--force{border-radius:14px 0 0 14px!important}.radius-right-xs-14{border-radius:0 14px 14px 0}.radius-right-xs-14--force{border-radius:0 14px 14px 0!important}.radius-xs-16{border-radius:16px}.radius-bottom-xs-16{border-radius:0 0 16px 16px}.radius-bottom-xs-16--force{border-radius:0 0 16px 16px!important}.radius-top-xs-16{border-radius:16px 16px 0 0}.radius-top-xs-16--force{border-radius:16px 16px 0 0!important}.radius-left-xs-16{border-radius:16px 0 0 16px}.radius-left-xs-16--force{border-radius:16px 0 0 16px!important}.radius-right-xs-16{border-radius:0 16px 16px 0}.radius-right-xs-16--force{border-radius:0 16px 16px 0!important}.radius-xs-18{border-radius:18px}.radius-bottom-xs-18{border-radius:0 0 18px 18px}.radius-bottom-xs-18--force{border-radius:0 0 18px 18px!important}.radius-top-xs-18{border-radius:18px 18px 0 0}.radius-top-xs-18--force{border-radius:18px 18px 0 0!important}.radius-left-xs-18{border-radius:18px 0 0 18px}.radius-left-xs-18--force{border-radius:18px 0 0 18px!important}.radius-right-xs-18{border-radius:0 18px 18px 0}.radius-right-xs-18--force{border-radius:0 18px 18px 0!important}.radius-xs-20{border-radius:20px}.radius-bottom-xs-20{border-radius:0 0 20px 20px}.radius-bottom-xs-20--force{border-radius:0 0 20px 20px!important}.radius-top-xs-20{border-radius:20px 20px 0 0}.radius-top-xs-20--force{border-radius:20px 20px 0 0!important}.radius-left-xs-20{border-radius:20px 0 0 20px}.radius-left-xs-20--force{border-radius:20px 0 0 20px!important}.radius-right-xs-20{border-radius:0 20px 20px 0}.radius-right-xs-20--force{border-radius:0 20px 20px 0!important}.radius-xs-22{border-radius:22px}.radius-bottom-xs-22{border-radius:0 0 22px 22px}.radius-bottom-xs-22--force{border-radius:0 0 22px 22px!important}.radius-top-xs-22{border-radius:22px 22px 0 0}.radius-top-xs-22--force{border-radius:22px 22px 0 0!important}.radius-left-xs-22{border-radius:22px 0 0 22px}.radius-left-xs-22--force{border-radius:22px 0 0 22px!important}.radius-right-xs-22{border-radius:0 22px 22px 0}.radius-right-xs-22--force{border-radius:0 22px 22px 0!important}.radius-xs-24{border-radius:24px}.radius-bottom-xs-24{border-radius:0 0 24px 24px}.radius-bottom-xs-24--force{border-radius:0 0 24px 24px!important}.radius-top-xs-24{border-radius:24px 24px 0 0}.radius-top-xs-24--force{border-radius:24px 24px 0 0!important}.radius-left-xs-24{border-radius:24px 0 0 24px}.radius-left-xs-24--force{border-radius:24px 0 0 24px!important}.radius-right-xs-24{border-radius:0 24px 24px 0}.radius-right-xs-24--force{border-radius:0 24px 24px 0!important}.radius-xs-full{border-radius:9999px}.radius-xs-full--force{border-radius:9999px!important}.line-clamp-xs-0,.line-clamp-xs-1,.line-clamp-xs-2,.line-clamp-xs-3,.line-clamp-xs-4,.line-clamp-xs-5,.line-clamp-xs-6{overflow:hidden;display:-webkit-box;text-overflow:ellipsis;word-break:break-word;white-space:initial;-webkit-box-orient:vertical}.line-clamp-xs-0{-webkit-line-clamp:0;line-clamp:0}.line-clamp-xs-1{-webkit-line-clamp:1;line-clamp:1}.line-clamp-xs-2{-webkit-line-clamp:2;line-clamp:2}.line-clamp-xs-3{-webkit-line-clamp:3;line-clamp:3}.line-clamp-xs-4{-webkit-line-clamp:4;line-clamp:4}.line-clamp-xs-5{-webkit-line-clamp:5;line-clamp:5}.line-clamp-xs-6{-webkit-line-clamp:6;line-clamp:6}.line-clamp-xs-none{overflow:visible;display:block;-webkit-box-orient:horizontal;-webkit-line-clamp:none;line-clamp:none}.masonry-xs-1{column-count:1}.masonry-xs-10>*,.masonry-xs-11>*,.masonry-xs-12>*,.masonry-xs-1>*,.masonry-xs-2>*,.masonry-xs-3>*,.masonry-xs-4>*,.masonry-xs-5>*,.masonry-xs-6>*,.masonry-xs-7>*,.masonry-xs-8>*,.masonry-xs-9>*{break-inside:avoid;display:inline-block;width:100%}.masonry-xs-2{column-count:2}.masonry-xs-3{column-count:3}.masonry-xs-4{column-count:4}.masonry-xs-5{column-count:5}.masonry-xs-6{column-count:6}.masonry-xs-7{column-count:7}.masonry-xs-8{column-count:8}.masonry-xs-9{column-count:9}.masonry-xs-10{column-count:10}.masonry-xs-11{column-count:11}.masonry-xs-12{column-count:12}.masonry-gap-xs-0{column-gap:0}.masonry-gap-xs-4{column-gap:4px}.masonry-gap-xs-8{column-gap:8px}.masonry-gap-xs-12{column-gap:12px}.masonry-gap-xs-16{column-gap:16px}.masonry-gap-xs-20{column-gap:20px}.masonry-gap-xs-24{column-gap:24px}.masonry-gap-xs-28{column-gap:28px}.masonry-gap-xs-32{column-gap:32px}.masonry-gap-xs-36{column-gap:36px}.masonry-gap-xs-40{column-gap:40px}.masonry-gap-xs-44{column-gap:44px}.masonry-gap-xs-48{column-gap:48px}}@media screen and (min-width:600px){.h-sm-0{height:0}.h-sm-0--force{height:0!important}.max-h-sm-0{max-height:0}.max-h-sm-0--force{max-height:0!important}.min-h-sm-0{min-height:0}.min-h-sm-0--force{min-height:0!important}.h-sm-4{height:4px}.h-sm-4--force{height:4px!important}.max-h-sm-4{max-height:4px}.max-h-sm-4--force{max-height:4px!important}.min-h-sm-4{min-height:4px}.min-h-sm-4--force{min-height:4px!important}.h-sm-8{height:8px}.h-sm-8--force{height:8px!important}.max-h-sm-8{max-height:8px}.max-h-sm-8--force{max-height:8px!important}.min-h-sm-8{min-height:8px}.min-h-sm-8--force{min-height:8px!important}.h-sm-12{height:12px}.h-sm-12--force{height:12px!important}.max-h-sm-12{max-height:12px}.max-h-sm-12--force{max-height:12px!important}.min-h-sm-12{min-height:12px}.min-h-sm-12--force{min-height:12px!important}.h-sm-16{height:16px}.h-sm-16--force{height:16px!important}.max-h-sm-16{max-height:16px}.max-h-sm-16--force{max-height:16px!important}.min-h-sm-16{min-height:16px}.min-h-sm-16--force{min-height:16px!important}.h-sm-20{height:20px}.h-sm-20--force{height:20px!important}.max-h-sm-20{max-height:20px}.max-h-sm-20--force{max-height:20px!important}.min-h-sm-20{min-height:20px}.min-h-sm-20--force{min-height:20px!important}.h-sm-24{height:24px}.h-sm-24--force{height:24px!important}.max-h-sm-24{max-height:24px}.max-h-sm-24--force{max-height:24px!important}.min-h-sm-24{min-height:24px}.min-h-sm-24--force{min-height:24px!important}.h-sm-28{height:28px}.h-sm-28--force{height:28px!important}.max-h-sm-28{max-height:28px}.max-h-sm-28--force{max-height:28px!important}.min-h-sm-28{min-height:28px}.min-h-sm-28--force{min-height:28px!important}.h-sm-32{height:32px}.h-sm-32--force{height:32px!important}.max-h-sm-32{max-height:32px}.max-h-sm-32--force{max-height:32px!important}.min-h-sm-32{min-height:32px}.min-h-sm-32--force{min-height:32px!important}.h-sm-36{height:36px}.h-sm-36--force{height:36px!important}.max-h-sm-36{max-height:36px}.max-h-sm-36--force{max-height:36px!important}.min-h-sm-36{min-height:36px}.min-h-sm-36--force{min-height:36px!important}.h-sm-40{height:40px}.h-sm-40--force{height:40px!important}.max-h-sm-40{max-height:40px}.max-h-sm-40--force{max-height:40px!important}.min-h-sm-40{min-height:40px}.min-h-sm-40--force{min-height:40px!important}.h-sm-44{height:44px}.h-sm-44--force{height:44px!important}.max-h-sm-44{max-height:44px}.max-h-sm-44--force{max-height:44px!important}.min-h-sm-44{min-height:44px}.min-h-sm-44--force{min-height:44px!important}.h-sm-48{height:48px}.h-sm-48--force{height:48px!important}.max-h-sm-48{max-height:48px}.max-h-sm-48--force{max-height:48px!important}.min-h-sm-48{min-height:48px}.min-h-sm-48--force{min-height:48px!important}.h-sm-52{height:52px}.h-sm-52--force{height:52px!important}.max-h-sm-52{max-height:52px}.max-h-sm-52--force{max-height:52px!important}.min-h-sm-52{min-height:52px}.min-h-sm-52--force{min-height:52px!important}.h-sm-56{height:56px}.h-sm-56--force{height:56px!important}.max-h-sm-56{max-height:56px}.max-h-sm-56--force{max-height:56px!important}.min-h-sm-56{min-height:56px}.min-h-sm-56--force{min-height:56px!important}.h-sm-60{height:60px}.h-sm-60--force{height:60px!important}.max-h-sm-60{max-height:60px}.max-h-sm-60--force{max-height:60px!important}.min-h-sm-60{min-height:60px}.min-h-sm-60--force{min-height:60px!important}.h-sm-64{height:64px}.h-sm-64--force{height:64px!important}.max-h-sm-64{max-height:64px}.max-h-sm-64--force{max-height:64px!important}.min-h-sm-64{min-height:64px}.min-h-sm-64--force{min-height:64px!important}.h-sm-68{height:68px}.h-sm-68--force{height:68px!important}.max-h-sm-68{max-height:68px}.max-h-sm-68--force{max-height:68px!important}.min-h-sm-68{min-height:68px}.min-h-sm-68--force{min-height:68px!important}.h-sm-72{height:72px}.h-sm-72--force{height:72px!important}.max-h-sm-72{max-height:72px}.max-h-sm-72--force{max-height:72px!important}.min-h-sm-72{min-height:72px}.min-h-sm-72--force{min-height:72px!important}.h-sm-76{height:76px}.h-sm-76--force{height:76px!important}.max-h-sm-76{max-height:76px}.max-h-sm-76--force{max-height:76px!important}.min-h-sm-76{min-height:76px}.min-h-sm-76--force{min-height:76px!important}.h-sm-80{height:80px}.h-sm-80--force{height:80px!important}.max-h-sm-80{max-height:80px}.max-h-sm-80--force{max-height:80px!important}.min-h-sm-80{min-height:80px}.min-h-sm-80--force{min-height:80px!important}.h-sm-84{height:84px}.h-sm-84--force{height:84px!important}.max-h-sm-84{max-height:84px}.max-h-sm-84--force{max-height:84px!important}.min-h-sm-84{min-height:84px}.min-h-sm-84--force{min-height:84px!important}.h-sm-88{height:88px}.h-sm-88--force{height:88px!important}.max-h-sm-88{max-height:88px}.max-h-sm-88--force{max-height:88px!important}.min-h-sm-88{min-height:88px}.min-h-sm-88--force{min-height:88px!important}.h-sm-92{height:92px}.h-sm-92--force{height:92px!important}.max-h-sm-92{max-height:92px}.max-h-sm-92--force{max-height:92px!important}.min-h-sm-92{min-height:92px}.min-h-sm-92--force{min-height:92px!important}.h-sm-96{height:96px}.h-sm-96--force{height:96px!important}.max-h-sm-96{max-height:96px}.max-h-sm-96--force{max-height:96px!important}.min-h-sm-96{min-height:96px}.min-h-sm-96--force{min-height:96px!important}.h-sm-100{height:100px}.h-sm-100--force{height:100px!important}.max-h-sm-100{max-height:100px}.max-h-sm-100--force{max-height:100px!important}.min-h-sm-100{min-height:100px}.min-h-sm-100--force{min-height:100px!important}.h-sm-104{height:104px}.h-sm-104--force{height:104px!important}.max-h-sm-104{max-height:104px}.max-h-sm-104--force{max-height:104px!important}.min-h-sm-104{min-height:104px}.min-h-sm-104--force{min-height:104px!important}.h-sm-108{height:108px}.h-sm-108--force{height:108px!important}.max-h-sm-108{max-height:108px}.max-h-sm-108--force{max-height:108px!important}.min-h-sm-108{min-height:108px}.min-h-sm-108--force{min-height:108px!important}.h-sm-112{height:112px}.h-sm-112--force{height:112px!important}.max-h-sm-112{max-height:112px}.max-h-sm-112--force{max-height:112px!important}.min-h-sm-112{min-height:112px}.min-h-sm-112--force{min-height:112px!important}.h-sm-116{height:116px}.h-sm-116--force{height:116px!important}.max-h-sm-116{max-height:116px}.max-h-sm-116--force{max-height:116px!important}.min-h-sm-116{min-height:116px}.min-h-sm-116--force{min-height:116px!important}.h-sm-120{height:120px}.h-sm-120--force{height:120px!important}.max-h-sm-120{max-height:120px}.max-h-sm-120--force{max-height:120px!important}.min-h-sm-120{min-height:120px}.min-h-sm-120--force{min-height:120px!important}.h-sm-124{height:124px}.h-sm-124--force{height:124px!important}.max-h-sm-124{max-height:124px}.max-h-sm-124--force{max-height:124px!important}.min-h-sm-124{min-height:124px}.min-h-sm-124--force{min-height:124px!important}.h-sm-128{height:128px}.h-sm-128--force{height:128px!important}.max-h-sm-128{max-height:128px}.max-h-sm-128--force{max-height:128px!important}.min-h-sm-128{min-height:128px}.min-h-sm-128--force{min-height:128px!important}.h-sm-132{height:132px}.h-sm-132--force{height:132px!important}.max-h-sm-132{max-height:132px}.max-h-sm-132--force{max-height:132px!important}.min-h-sm-132{min-height:132px}.min-h-sm-132--force{min-height:132px!important}.h-sm-136{height:136px}.h-sm-136--force{height:136px!important}.max-h-sm-136{max-height:136px}.max-h-sm-136--force{max-height:136px!important}.min-h-sm-136{min-height:136px}.min-h-sm-136--force{min-height:136px!important}.h-sm-140{height:140px}.h-sm-140--force{height:140px!important}.max-h-sm-140{max-height:140px}.max-h-sm-140--force{max-height:140px!important}.min-h-sm-140{min-height:140px}.min-h-sm-140--force{min-height:140px!important}.h-sm-144{height:144px}.h-sm-144--force{height:144px!important}.max-h-sm-144{max-height:144px}.max-h-sm-144--force{max-height:144px!important}.min-h-sm-144{min-height:144px}.min-h-sm-144--force{min-height:144px!important}.h-sm-148{height:148px}.h-sm-148--force{height:148px!important}.max-h-sm-148{max-height:148px}.max-h-sm-148--force{max-height:148px!important}.min-h-sm-148{min-height:148px}.min-h-sm-148--force{min-height:148px!important}.h-sm-152{height:152px}.h-sm-152--force{height:152px!important}.max-h-sm-152{max-height:152px}.max-h-sm-152--force{max-height:152px!important}.min-h-sm-152{min-height:152px}.min-h-sm-152--force{min-height:152px!important}.h-sm-156{height:156px}.h-sm-156--force{height:156px!important}.max-h-sm-156{max-height:156px}.max-h-sm-156--force{max-height:156px!important}.min-h-sm-156{min-height:156px}.min-h-sm-156--force{min-height:156px!important}.h-sm-160{height:160px}.h-sm-160--force{height:160px!important}.max-h-sm-160{max-height:160px}.max-h-sm-160--force{max-height:160px!important}.min-h-sm-160{min-height:160px}.min-h-sm-160--force{min-height:160px!important}.h-sm-164{height:164px}.h-sm-164--force{height:164px!important}.max-h-sm-164{max-height:164px}.max-h-sm-164--force{max-height:164px!important}.min-h-sm-164{min-height:164px}.min-h-sm-164--force{min-height:164px!important}.h-sm-168{height:168px}.h-sm-168--force{height:168px!important}.max-h-sm-168{max-height:168px}.max-h-sm-168--force{max-height:168px!important}.min-h-sm-168{min-height:168px}.min-h-sm-168--force{min-height:168px!important}.h-sm-172{height:172px}.h-sm-172--force{height:172px!important}.max-h-sm-172{max-height:172px}.max-h-sm-172--force{max-height:172px!important}.min-h-sm-172{min-height:172px}.min-h-sm-172--force{min-height:172px!important}.h-sm-176{height:176px}.h-sm-176--force{height:176px!important}.max-h-sm-176{max-height:176px}.max-h-sm-176--force{max-height:176px!important}.min-h-sm-176{min-height:176px}.min-h-sm-176--force{min-height:176px!important}.h-sm-180{height:180px}.h-sm-180--force{height:180px!important}.max-h-sm-180{max-height:180px}.max-h-sm-180--force{max-height:180px!important}.min-h-sm-180{min-height:180px}.min-h-sm-180--force{min-height:180px!important}.h-sm-184{height:184px}.h-sm-184--force{height:184px!important}.max-h-sm-184{max-height:184px}.max-h-sm-184--force{max-height:184px!important}.min-h-sm-184{min-height:184px}.min-h-sm-184--force{min-height:184px!important}.h-sm-188{height:188px}.h-sm-188--force{height:188px!important}.max-h-sm-188{max-height:188px}.max-h-sm-188--force{max-height:188px!important}.min-h-sm-188{min-height:188px}.min-h-sm-188--force{min-height:188px!important}.h-sm-192{height:192px}.h-sm-192--force{height:192px!important}.max-h-sm-192{max-height:192px}.max-h-sm-192--force{max-height:192px!important}.min-h-sm-192{min-height:192px}.min-h-sm-192--force{min-height:192px!important}.h-sm-196{height:196px}.h-sm-196--force{height:196px!important}.max-h-sm-196{max-height:196px}.max-h-sm-196--force{max-height:196px!important}.min-h-sm-196{min-height:196px}.min-h-sm-196--force{min-height:196px!important}.h-sm-200{height:200px}.h-sm-200--force{height:200px!important}.max-h-sm-200{max-height:200px}.max-h-sm-200--force{max-height:200px!important}.min-h-sm-200{min-height:200px}.min-h-sm-200--force{min-height:200px!important}.h-sm-204{height:204px}.h-sm-204--force{height:204px!important}.max-h-sm-204{max-height:204px}.max-h-sm-204--force{max-height:204px!important}.min-h-sm-204{min-height:204px}.min-h-sm-204--force{min-height:204px!important}.h-sm-208{height:208px}.h-sm-208--force{height:208px!important}.max-h-sm-208{max-height:208px}.max-h-sm-208--force{max-height:208px!important}.min-h-sm-208{min-height:208px}.min-h-sm-208--force{min-height:208px!important}.h-sm-212{height:212px}.h-sm-212--force{height:212px!important}.max-h-sm-212{max-height:212px}.max-h-sm-212--force{max-height:212px!important}.min-h-sm-212{min-height:212px}.min-h-sm-212--force{min-height:212px!important}.h-sm-216{height:216px}.h-sm-216--force{height:216px!important}.max-h-sm-216{max-height:216px}.max-h-sm-216--force{max-height:216px!important}.min-h-sm-216{min-height:216px}.min-h-sm-216--force{min-height:216px!important}.h-sm-220{height:220px}.h-sm-220--force{height:220px!important}.max-h-sm-220{max-height:220px}.max-h-sm-220--force{max-height:220px!important}.min-h-sm-220{min-height:220px}.min-h-sm-220--force{min-height:220px!important}.h-sm-224{height:224px}.h-sm-224--force{height:224px!important}.max-h-sm-224{max-height:224px}.max-h-sm-224--force{max-height:224px!important}.min-h-sm-224{min-height:224px}.min-h-sm-224--force{min-height:224px!important}.h-sm-228{height:228px}.h-sm-228--force{height:228px!important}.max-h-sm-228{max-height:228px}.max-h-sm-228--force{max-height:228px!important}.min-h-sm-228{min-height:228px}.min-h-sm-228--force{min-height:228px!important}.h-sm-232{height:232px}.h-sm-232--force{height:232px!important}.max-h-sm-232{max-height:232px}.max-h-sm-232--force{max-height:232px!important}.min-h-sm-232{min-height:232px}.min-h-sm-232--force{min-height:232px!important}.h-sm-236{height:236px}.h-sm-236--force{height:236px!important}.max-h-sm-236{max-height:236px}.max-h-sm-236--force{max-height:236px!important}.min-h-sm-236{min-height:236px}.min-h-sm-236--force{min-height:236px!important}.h-sm-240{height:240px}.h-sm-240--force{height:240px!important}.max-h-sm-240{max-height:240px}.max-h-sm-240--force{max-height:240px!important}.min-h-sm-240{min-height:240px}.min-h-sm-240--force{min-height:240px!important}.h-sm-244{height:244px}.h-sm-244--force{height:244px!important}.max-h-sm-244{max-height:244px}.max-h-sm-244--force{max-height:244px!important}.min-h-sm-244{min-height:244px}.min-h-sm-244--force{min-height:244px!important}.h-sm-248{height:248px}.h-sm-248--force{height:248px!important}.max-h-sm-248{max-height:248px}.max-h-sm-248--force{max-height:248px!important}.min-h-sm-248{min-height:248px}.min-h-sm-248--force{min-height:248px!important}.h-sm-252{height:252px}.h-sm-252--force{height:252px!important}.max-h-sm-252{max-height:252px}.max-h-sm-252--force{max-height:252px!important}.min-h-sm-252{min-height:252px}.min-h-sm-252--force{min-height:252px!important}.h-sm-256{height:256px}.h-sm-256--force{height:256px!important}.max-h-sm-256{max-height:256px}.max-h-sm-256--force{max-height:256px!important}.min-h-sm-256{min-height:256px}.min-h-sm-256--force{min-height:256px!important}.h-sm-0-p{height:0%}.h-sm-0-p--force{height:0%!important}.max-h-sm-0-p{max-height:0%}.max-h-sm-0-p--force{max-height:0%!important}.min-h-sm-0-p{min-height:0}.min-h-sm-0-p--force{min-height:0!important}.h-sm-5-p{height:5%}.h-sm-5-p--force{height:5%!important}.max-h-sm-5-p{max-height:5%}.max-h-sm-5-p--force{max-height:5%!important}.min-h-sm-5-p{min-height:5%}.min-h-sm-5-p--force{min-height:5%!important}.h-sm-10-p{height:10%}.h-sm-10-p--force{height:10%!important}.max-h-sm-10-p{max-height:10%}.max-h-sm-10-p--force{max-height:10%!important}.min-h-sm-10-p{min-height:10%}.min-h-sm-10-p--force{min-height:10%!important}.h-sm-15-p{height:15%}.h-sm-15-p--force{height:15%!important}.max-h-sm-15-p{max-height:15%}.max-h-sm-15-p--force{max-height:15%!important}.min-h-sm-15-p{min-height:15%}.min-h-sm-15-p--force{min-height:15%!important}.h-sm-20-p{height:20%}.h-sm-20-p--force{height:20%!important}.max-h-sm-20-p{max-height:20%}.max-h-sm-20-p--force{max-height:20%!important}.min-h-sm-20-p{min-height:20%}.min-h-sm-20-p--force{min-height:20%!important}.h-sm-25-p{height:25%}.h-sm-25-p--force{height:25%!important}.max-h-sm-25-p{max-height:25%}.max-h-sm-25-p--force{max-height:25%!important}.min-h-sm-25-p{min-height:25%}.min-h-sm-25-p--force{min-height:25%!important}.h-sm-30-p{height:30%}.h-sm-30-p--force{height:30%!important}.max-h-sm-30-p{max-height:30%}.max-h-sm-30-p--force{max-height:30%!important}.min-h-sm-30-p{min-height:30%}.min-h-sm-30-p--force{min-height:30%!important}.h-sm-35-p{height:35%}.h-sm-35-p--force{height:35%!important}.max-h-sm-35-p{max-height:35%}.max-h-sm-35-p--force{max-height:35%!important}.min-h-sm-35-p{min-height:35%}.min-h-sm-35-p--force{min-height:35%!important}.h-sm-40-p{height:40%}.h-sm-40-p--force{height:40%!important}.max-h-sm-40-p{max-height:40%}.max-h-sm-40-p--force{max-height:40%!important}.min-h-sm-40-p{min-height:40%}.min-h-sm-40-p--force{min-height:40%!important}.h-sm-45-p{height:45%}.h-sm-45-p--force{height:45%!important}.max-h-sm-45-p{max-height:45%}.max-h-sm-45-p--force{max-height:45%!important}.min-h-sm-45-p{min-height:45%}.min-h-sm-45-p--force{min-height:45%!important}.h-sm-50-p{height:50%}.h-sm-50-p--force{height:50%!important}.max-h-sm-50-p{max-height:50%}.max-h-sm-50-p--force{max-height:50%!important}.min-h-sm-50-p{min-height:50%}.min-h-sm-50-p--force{min-height:50%!important}.h-sm-55-p{height:55%}.h-sm-55-p--force{height:55%!important}.max-h-sm-55-p{max-height:55%}.max-h-sm-55-p--force{max-height:55%!important}.min-h-sm-55-p{min-height:55%}.min-h-sm-55-p--force{min-height:55%!important}.h-sm-60-p{height:60%}.h-sm-60-p--force{height:60%!important}.max-h-sm-60-p{max-height:60%}.max-h-sm-60-p--force{max-height:60%!important}.min-h-sm-60-p{min-height:60%}.min-h-sm-60-p--force{min-height:60%!important}.h-sm-65-p{height:65%}.h-sm-65-p--force{height:65%!important}.max-h-sm-65-p{max-height:65%}.max-h-sm-65-p--force{max-height:65%!important}.min-h-sm-65-p{min-height:65%}.min-h-sm-65-p--force{min-height:65%!important}.h-sm-70-p{height:70%}.h-sm-70-p--force{height:70%!important}.max-h-sm-70-p{max-height:70%}.max-h-sm-70-p--force{max-height:70%!important}.min-h-sm-70-p{min-height:70%}.min-h-sm-70-p--force{min-height:70%!important}.h-sm-75-p{height:75%}.h-sm-75-p--force{height:75%!important}.max-h-sm-75-p{max-height:75%}.max-h-sm-75-p--force{max-height:75%!important}.min-h-sm-75-p{min-height:75%}.min-h-sm-75-p--force{min-height:75%!important}.h-sm-80-p{height:80%}.h-sm-80-p--force{height:80%!important}.max-h-sm-80-p{max-height:80%}.max-h-sm-80-p--force{max-height:80%!important}.min-h-sm-80-p{min-height:80%}.min-h-sm-80-p--force{min-height:80%!important}.h-sm-85-p{height:85%}.h-sm-85-p--force{height:85%!important}.max-h-sm-85-p{max-height:85%}.max-h-sm-85-p--force{max-height:85%!important}.min-h-sm-85-p{min-height:85%}.min-h-sm-85-p--force{min-height:85%!important}.h-sm-90-p{height:90%}.h-sm-90-p--force{height:90%!important}.max-h-sm-90-p{max-height:90%}.max-h-sm-90-p--force{max-height:90%!important}.min-h-sm-90-p{min-height:90%}.min-h-sm-90-p--force{min-height:90%!important}.h-sm-95-p{height:95%}.h-sm-95-p--force{height:95%!important}.max-h-sm-95-p{max-height:95%}.max-h-sm-95-p--force{max-height:95%!important}.min-h-sm-95-p{min-height:95%}.min-h-sm-95-p--force{min-height:95%!important}.h-sm-100-p{height:100%}.h-sm-100-p--force{height:100%!important}.max-h-sm-100-p{max-height:100%}.max-h-sm-100-p--force{max-height:100%!important}.min-h-sm-100-p{min-height:100%}.min-h-sm-100-p--force{min-height:100%!important}.h-sm-300{height:300px}.h-sm-300--force{height:300px!important}.max-h-sm-300{max-height:300px}.max-h-sm-300--force{max-height:300px!important}.min-h-sm-300{min-height:300px}.min-h-sm-300--force{min-height:300px!important}.h-sm-400{height:400px}.h-sm-400--force{height:400px!important}.max-h-sm-400{max-height:400px}.max-h-sm-400--force{max-height:400px!important}.min-h-sm-400{min-height:400px}.min-h-sm-400--force{min-height:400px!important}.h-sm-500{height:500px}.h-sm-500--force{height:500px!important}.max-h-sm-500{max-height:500px}.max-h-sm-500--force{max-height:500px!important}.min-h-sm-500{min-height:500px}.min-h-sm-500--force{min-height:500px!important}.h-sm-600{height:600px}.h-sm-600--force{height:600px!important}.max-h-sm-600{max-height:600px}.max-h-sm-600--force{max-height:600px!important}.min-h-sm-600{min-height:600px}.min-h-sm-600--force{min-height:600px!important}.h-sm-700{height:700px}.h-sm-700--force{height:700px!important}.max-h-sm-700{max-height:700px}.max-h-sm-700--force{max-height:700px!important}.min-h-sm-700{min-height:700px}.min-h-sm-700--force{min-height:700px!important}.h-sm-800{height:800px}.h-sm-800--force{height:800px!important}.max-h-sm-800{max-height:800px}.max-h-sm-800--force{max-height:800px!important}.min-h-sm-800{min-height:800px}.min-h-sm-800--force{min-height:800px!important}.h-sm-900{height:900px}.h-sm-900--force{height:900px!important}.max-h-sm-900{max-height:900px}.max-h-sm-900--force{max-height:900px!important}.min-h-sm-900{min-height:900px}.min-h-sm-900--force{min-height:900px!important}.h-sm-1000{height:1000px}.h-sm-1000--force{height:1000px!important}.max-h-sm-1000{max-height:1000px}.max-h-sm-1000--force{max-height:1000px!important}.min-h-sm-1000{min-height:1000px}.min-h-sm-1000--force{min-height:1000px!important}.h-sm-1100{height:1100px}.h-sm-1100--force{height:1100px!important}.max-h-sm-1100{max-height:1100px}.max-h-sm-1100--force{max-height:1100px!important}.min-h-sm-1100{min-height:1100px}.min-h-sm-1100--force{min-height:1100px!important}.h-sm-1200{height:1200px}.h-sm-1200--force{height:1200px!important}.max-h-sm-1200{max-height:1200px}.max-h-sm-1200--force{max-height:1200px!important}.min-h-sm-1200{min-height:1200px}.min-h-sm-1200--force{min-height:1200px!important}.h-sm-1300{height:1300px}.h-sm-1300--force{height:1300px!important}.max-h-sm-1300{max-height:1300px}.max-h-sm-1300--force{max-height:1300px!important}.min-h-sm-1300{min-height:1300px}.min-h-sm-1300--force{min-height:1300px!important}.h-sm-1400{height:1400px}.h-sm-1400--force{height:1400px!important}.max-h-sm-1400{max-height:1400px}.max-h-sm-1400--force{max-height:1400px!important}.min-h-sm-1400{min-height:1400px}.min-h-sm-1400--force{min-height:1400px!important}.h-sm-1500{height:1500px}.h-sm-1500--force{height:1500px!important}.max-h-sm-1500{max-height:1500px}.max-h-sm-1500--force{max-height:1500px!important}.min-h-sm-1500{min-height:1500px}.min-h-sm-1500--force{min-height:1500px!important}.h-sm-1600{height:1600px}.h-sm-1600--force{height:1600px!important}.max-h-sm-1600{max-height:1600px}.max-h-sm-1600--force{max-height:1600px!important}.min-h-sm-1600{min-height:1600px}.min-h-sm-1600--force{min-height:1600px!important}.h-sm-1700{height:1700px}.h-sm-1700--force{height:1700px!important}.max-h-sm-1700{max-height:1700px}.max-h-sm-1700--force{max-height:1700px!important}.min-h-sm-1700{min-height:1700px}.min-h-sm-1700--force{min-height:1700px!important}.h-sm-1800{height:1800px}.h-sm-1800--force{height:1800px!important}.max-h-sm-1800{max-height:1800px}.max-h-sm-1800--force{max-height:1800px!important}.min-h-sm-1800{min-height:1800px}.min-h-sm-1800--force{min-height:1800px!important}.h-sm-1900{height:1900px}.h-sm-1900--force{height:1900px!important}.max-h-sm-1900{max-height:1900px}.max-h-sm-1900--force{max-height:1900px!important}.min-h-sm-1900{min-height:1900px}.min-h-sm-1900--force{min-height:1900px!important}.h-sm-2000{height:2000px}.h-sm-2000--force{height:2000px!important}.max-h-sm-2000{max-height:2000px}.max-h-sm-2000--force{max-height:2000px!important}.min-h-sm-2000{min-height:2000px}.min-h-sm-2000--force{min-height:2000px!important}.h-sm-auto{height:auto}.h-sm-auto--force{height:auto!important}.w-sm-0{width:0}.w-sm-0--force{width:0!important}.max-w-sm-0{max-width:0}.max-w-sm-0--force{max-width:0!important}.min-w-sm-0{min-width:0}.min-w-sm-0--force{min-width:0!important}.w-sm-4{width:4px}.w-sm-4--force{width:4px!important}.max-w-sm-4{max-width:4px}.max-w-sm-4--force{max-width:4px!important}.min-w-sm-4{min-width:4px}.min-w-sm-4--force{min-width:4px!important}.w-sm-8{width:8px}.w-sm-8--force{width:8px!important}.max-w-sm-8{max-width:8px}.max-w-sm-8--force{max-width:8px!important}.min-w-sm-8{min-width:8px}.min-w-sm-8--force{min-width:8px!important}.w-sm-12{width:12px}.w-sm-12--force{width:12px!important}.max-w-sm-12{max-width:12px}.max-w-sm-12--force{max-width:12px!important}.min-w-sm-12{min-width:12px}.min-w-sm-12--force{min-width:12px!important}.w-sm-16{width:16px}.w-sm-16--force{width:16px!important}.max-w-sm-16{max-width:16px}.max-w-sm-16--force{max-width:16px!important}.min-w-sm-16{min-width:16px}.min-w-sm-16--force{min-width:16px!important}.w-sm-20{width:20px}.w-sm-20--force{width:20px!important}.max-w-sm-20{max-width:20px}.max-w-sm-20--force{max-width:20px!important}.min-w-sm-20{min-width:20px}.min-w-sm-20--force{min-width:20px!important}.w-sm-24{width:24px}.w-sm-24--force{width:24px!important}.max-w-sm-24{max-width:24px}.max-w-sm-24--force{max-width:24px!important}.min-w-sm-24{min-width:24px}.min-w-sm-24--force{min-width:24px!important}.w-sm-28{width:28px}.w-sm-28--force{width:28px!important}.max-w-sm-28{max-width:28px}.max-w-sm-28--force{max-width:28px!important}.min-w-sm-28{min-width:28px}.min-w-sm-28--force{min-width:28px!important}.w-sm-32{width:32px}.w-sm-32--force{width:32px!important}.max-w-sm-32{max-width:32px}.max-w-sm-32--force{max-width:32px!important}.min-w-sm-32{min-width:32px}.min-w-sm-32--force{min-width:32px!important}.w-sm-36{width:36px}.w-sm-36--force{width:36px!important}.max-w-sm-36{max-width:36px}.max-w-sm-36--force{max-width:36px!important}.min-w-sm-36{min-width:36px}.min-w-sm-36--force{min-width:36px!important}.w-sm-40{width:40px}.w-sm-40--force{width:40px!important}.max-w-sm-40{max-width:40px}.max-w-sm-40--force{max-width:40px!important}.min-w-sm-40{min-width:40px}.min-w-sm-40--force{min-width:40px!important}.w-sm-44{width:44px}.w-sm-44--force{width:44px!important}.max-w-sm-44{max-width:44px}.max-w-sm-44--force{max-width:44px!important}.min-w-sm-44{min-width:44px}.min-w-sm-44--force{min-width:44px!important}.w-sm-48{width:48px}.w-sm-48--force{width:48px!important}.max-w-sm-48{max-width:48px}.max-w-sm-48--force{max-width:48px!important}.min-w-sm-48{min-width:48px}.min-w-sm-48--force{min-width:48px!important}.w-sm-52{width:52px}.w-sm-52--force{width:52px!important}.max-w-sm-52{max-width:52px}.max-w-sm-52--force{max-width:52px!important}.min-w-sm-52{min-width:52px}.min-w-sm-52--force{min-width:52px!important}.w-sm-56{width:56px}.w-sm-56--force{width:56px!important}.max-w-sm-56{max-width:56px}.max-w-sm-56--force{max-width:56px!important}.min-w-sm-56{min-width:56px}.min-w-sm-56--force{min-width:56px!important}.w-sm-60{width:60px}.w-sm-60--force{width:60px!important}.max-w-sm-60{max-width:60px}.max-w-sm-60--force{max-width:60px!important}.min-w-sm-60{min-width:60px}.min-w-sm-60--force{min-width:60px!important}.w-sm-64{width:64px}.w-sm-64--force{width:64px!important}.max-w-sm-64{max-width:64px}.max-w-sm-64--force{max-width:64px!important}.min-w-sm-64{min-width:64px}.min-w-sm-64--force{min-width:64px!important}.w-sm-68{width:68px}.w-sm-68--force{width:68px!important}.max-w-sm-68{max-width:68px}.max-w-sm-68--force{max-width:68px!important}.min-w-sm-68{min-width:68px}.min-w-sm-68--force{min-width:68px!important}.w-sm-72{width:72px}.w-sm-72--force{width:72px!important}.max-w-sm-72{max-width:72px}.max-w-sm-72--force{max-width:72px!important}.min-w-sm-72{min-width:72px}.min-w-sm-72--force{min-width:72px!important}.w-sm-76{width:76px}.w-sm-76--force{width:76px!important}.max-w-sm-76{max-width:76px}.max-w-sm-76--force{max-width:76px!important}.min-w-sm-76{min-width:76px}.min-w-sm-76--force{min-width:76px!important}.w-sm-80{width:80px}.w-sm-80--force{width:80px!important}.max-w-sm-80{max-width:80px}.max-w-sm-80--force{max-width:80px!important}.min-w-sm-80{min-width:80px}.min-w-sm-80--force{min-width:80px!important}.w-sm-84{width:84px}.w-sm-84--force{width:84px!important}.max-w-sm-84{max-width:84px}.max-w-sm-84--force{max-width:84px!important}.min-w-sm-84{min-width:84px}.min-w-sm-84--force{min-width:84px!important}.w-sm-88{width:88px}.w-sm-88--force{width:88px!important}.max-w-sm-88{max-width:88px}.max-w-sm-88--force{max-width:88px!important}.min-w-sm-88{min-width:88px}.min-w-sm-88--force{min-width:88px!important}.w-sm-92{width:92px}.w-sm-92--force{width:92px!important}.max-w-sm-92{max-width:92px}.max-w-sm-92--force{max-width:92px!important}.min-w-sm-92{min-width:92px}.min-w-sm-92--force{min-width:92px!important}.w-sm-96{width:96px}.w-sm-96--force{width:96px!important}.max-w-sm-96{max-width:96px}.max-w-sm-96--force{max-width:96px!important}.min-w-sm-96{min-width:96px}.min-w-sm-96--force{min-width:96px!important}.w-sm-100{width:100px}.w-sm-100--force{width:100px!important}.max-w-sm-100{max-width:100px}.max-w-sm-100--force{max-width:100px!important}.min-w-sm-100{min-width:100px}.min-w-sm-100--force{min-width:100px!important}.w-sm-104{width:104px}.w-sm-104--force{width:104px!important}.max-w-sm-104{max-width:104px}.max-w-sm-104--force{max-width:104px!important}.min-w-sm-104{min-width:104px}.min-w-sm-104--force{min-width:104px!important}.w-sm-108{width:108px}.w-sm-108--force{width:108px!important}.max-w-sm-108{max-width:108px}.max-w-sm-108--force{max-width:108px!important}.min-w-sm-108{min-width:108px}.min-w-sm-108--force{min-width:108px!important}.w-sm-112{width:112px}.w-sm-112--force{width:112px!important}.max-w-sm-112{max-width:112px}.max-w-sm-112--force{max-width:112px!important}.min-w-sm-112{min-width:112px}.min-w-sm-112--force{min-width:112px!important}.w-sm-116{width:116px}.w-sm-116--force{width:116px!important}.max-w-sm-116{max-width:116px}.max-w-sm-116--force{max-width:116px!important}.min-w-sm-116{min-width:116px}.min-w-sm-116--force{min-width:116px!important}.w-sm-120{width:120px}.w-sm-120--force{width:120px!important}.max-w-sm-120{max-width:120px}.max-w-sm-120--force{max-width:120px!important}.min-w-sm-120{min-width:120px}.min-w-sm-120--force{min-width:120px!important}.w-sm-124{width:124px}.w-sm-124--force{width:124px!important}.max-w-sm-124{max-width:124px}.max-w-sm-124--force{max-width:124px!important}.min-w-sm-124{min-width:124px}.min-w-sm-124--force{min-width:124px!important}.w-sm-128{width:128px}.w-sm-128--force{width:128px!important}.max-w-sm-128{max-width:128px}.max-w-sm-128--force{max-width:128px!important}.min-w-sm-128{min-width:128px}.min-w-sm-128--force{min-width:128px!important}.w-sm-132{width:132px}.w-sm-132--force{width:132px!important}.max-w-sm-132{max-width:132px}.max-w-sm-132--force{max-width:132px!important}.min-w-sm-132{min-width:132px}.min-w-sm-132--force{min-width:132px!important}.w-sm-136{width:136px}.w-sm-136--force{width:136px!important}.max-w-sm-136{max-width:136px}.max-w-sm-136--force{max-width:136px!important}.min-w-sm-136{min-width:136px}.min-w-sm-136--force{min-width:136px!important}.w-sm-140{width:140px}.w-sm-140--force{width:140px!important}.max-w-sm-140{max-width:140px}.max-w-sm-140--force{max-width:140px!important}.min-w-sm-140{min-width:140px}.min-w-sm-140--force{min-width:140px!important}.w-sm-144{width:144px}.w-sm-144--force{width:144px!important}.max-w-sm-144{max-width:144px}.max-w-sm-144--force{max-width:144px!important}.min-w-sm-144{min-width:144px}.min-w-sm-144--force{min-width:144px!important}.w-sm-148{width:148px}.w-sm-148--force{width:148px!important}.max-w-sm-148{max-width:148px}.max-w-sm-148--force{max-width:148px!important}.min-w-sm-148{min-width:148px}.min-w-sm-148--force{min-width:148px!important}.w-sm-152{width:152px}.w-sm-152--force{width:152px!important}.max-w-sm-152{max-width:152px}.max-w-sm-152--force{max-width:152px!important}.min-w-sm-152{min-width:152px}.min-w-sm-152--force{min-width:152px!important}.w-sm-156{width:156px}.w-sm-156--force{width:156px!important}.max-w-sm-156{max-width:156px}.max-w-sm-156--force{max-width:156px!important}.min-w-sm-156{min-width:156px}.min-w-sm-156--force{min-width:156px!important}.w-sm-160{width:160px}.w-sm-160--force{width:160px!important}.max-w-sm-160{max-width:160px}.max-w-sm-160--force{max-width:160px!important}.min-w-sm-160{min-width:160px}.min-w-sm-160--force{min-width:160px!important}.w-sm-164{width:164px}.w-sm-164--force{width:164px!important}.max-w-sm-164{max-width:164px}.max-w-sm-164--force{max-width:164px!important}.min-w-sm-164{min-width:164px}.min-w-sm-164--force{min-width:164px!important}.w-sm-168{width:168px}.w-sm-168--force{width:168px!important}.max-w-sm-168{max-width:168px}.max-w-sm-168--force{max-width:168px!important}.min-w-sm-168{min-width:168px}.min-w-sm-168--force{min-width:168px!important}.w-sm-172{width:172px}.w-sm-172--force{width:172px!important}.max-w-sm-172{max-width:172px}.max-w-sm-172--force{max-width:172px!important}.min-w-sm-172{min-width:172px}.min-w-sm-172--force{min-width:172px!important}.w-sm-176{width:176px}.w-sm-176--force{width:176px!important}.max-w-sm-176{max-width:176px}.max-w-sm-176--force{max-width:176px!important}.min-w-sm-176{min-width:176px}.min-w-sm-176--force{min-width:176px!important}.w-sm-180{width:180px}.w-sm-180--force{width:180px!important}.max-w-sm-180{max-width:180px}.max-w-sm-180--force{max-width:180px!important}.min-w-sm-180{min-width:180px}.min-w-sm-180--force{min-width:180px!important}.w-sm-184{width:184px}.w-sm-184--force{width:184px!important}.max-w-sm-184{max-width:184px}.max-w-sm-184--force{max-width:184px!important}.min-w-sm-184{min-width:184px}.min-w-sm-184--force{min-width:184px!important}.w-sm-188{width:188px}.w-sm-188--force{width:188px!important}.max-w-sm-188{max-width:188px}.max-w-sm-188--force{max-width:188px!important}.min-w-sm-188{min-width:188px}.min-w-sm-188--force{min-width:188px!important}.w-sm-192{width:192px}.w-sm-192--force{width:192px!important}.max-w-sm-192{max-width:192px}.max-w-sm-192--force{max-width:192px!important}.min-w-sm-192{min-width:192px}.min-w-sm-192--force{min-width:192px!important}.w-sm-196{width:196px}.w-sm-196--force{width:196px!important}.max-w-sm-196{max-width:196px}.max-w-sm-196--force{max-width:196px!important}.min-w-sm-196{min-width:196px}.min-w-sm-196--force{min-width:196px!important}.w-sm-200{width:200px}.w-sm-200--force{width:200px!important}.max-w-sm-200{max-width:200px}.max-w-sm-200--force{max-width:200px!important}.min-w-sm-200{min-width:200px}.min-w-sm-200--force{min-width:200px!important}.w-sm-204{width:204px}.w-sm-204--force{width:204px!important}.max-w-sm-204{max-width:204px}.max-w-sm-204--force{max-width:204px!important}.min-w-sm-204{min-width:204px}.min-w-sm-204--force{min-width:204px!important}.w-sm-208{width:208px}.w-sm-208--force{width:208px!important}.max-w-sm-208{max-width:208px}.max-w-sm-208--force{max-width:208px!important}.min-w-sm-208{min-width:208px}.min-w-sm-208--force{min-width:208px!important}.w-sm-212{width:212px}.w-sm-212--force{width:212px!important}.max-w-sm-212{max-width:212px}.max-w-sm-212--force{max-width:212px!important}.min-w-sm-212{min-width:212px}.min-w-sm-212--force{min-width:212px!important}.w-sm-216{width:216px}.w-sm-216--force{width:216px!important}.max-w-sm-216{max-width:216px}.max-w-sm-216--force{max-width:216px!important}.min-w-sm-216{min-width:216px}.min-w-sm-216--force{min-width:216px!important}.w-sm-220{width:220px}.w-sm-220--force{width:220px!important}.max-w-sm-220{max-width:220px}.max-w-sm-220--force{max-width:220px!important}.min-w-sm-220{min-width:220px}.min-w-sm-220--force{min-width:220px!important}.w-sm-224{width:224px}.w-sm-224--force{width:224px!important}.max-w-sm-224{max-width:224px}.max-w-sm-224--force{max-width:224px!important}.min-w-sm-224{min-width:224px}.min-w-sm-224--force{min-width:224px!important}.w-sm-228{width:228px}.w-sm-228--force{width:228px!important}.max-w-sm-228{max-width:228px}.max-w-sm-228--force{max-width:228px!important}.min-w-sm-228{min-width:228px}.min-w-sm-228--force{min-width:228px!important}.w-sm-232{width:232px}.w-sm-232--force{width:232px!important}.max-w-sm-232{max-width:232px}.max-w-sm-232--force{max-width:232px!important}.min-w-sm-232{min-width:232px}.min-w-sm-232--force{min-width:232px!important}.w-sm-236{width:236px}.w-sm-236--force{width:236px!important}.max-w-sm-236{max-width:236px}.max-w-sm-236--force{max-width:236px!important}.min-w-sm-236{min-width:236px}.min-w-sm-236--force{min-width:236px!important}.w-sm-240{width:240px}.w-sm-240--force{width:240px!important}.max-w-sm-240{max-width:240px}.max-w-sm-240--force{max-width:240px!important}.min-w-sm-240{min-width:240px}.min-w-sm-240--force{min-width:240px!important}.w-sm-244{width:244px}.w-sm-244--force{width:244px!important}.max-w-sm-244{max-width:244px}.max-w-sm-244--force{max-width:244px!important}.min-w-sm-244{min-width:244px}.min-w-sm-244--force{min-width:244px!important}.w-sm-248{width:248px}.w-sm-248--force{width:248px!important}.max-w-sm-248{max-width:248px}.max-w-sm-248--force{max-width:248px!important}.min-w-sm-248{min-width:248px}.min-w-sm-248--force{min-width:248px!important}.w-sm-252{width:252px}.w-sm-252--force{width:252px!important}.max-w-sm-252{max-width:252px}.max-w-sm-252--force{max-width:252px!important}.min-w-sm-252{min-width:252px}.min-w-sm-252--force{min-width:252px!important}.w-sm-256{width:256px}.w-sm-256--force{width:256px!important}.max-w-sm-256{max-width:256px}.max-w-sm-256--force{max-width:256px!important}.min-w-sm-256{min-width:256px}.min-w-sm-256--force{min-width:256px!important}.w-sm-0-p{width:0%}.w-sm-0-p--force{width:0%!important}.max-w-sm-0-p{max-width:0%}.max-w-sm-0-p--force{max-width:0%!important}.min-w-sm-0-p{min-width:0}.min-w-sm-0-p--force{min-width:0!important}.w-sm-5-p{width:5%}.w-sm-5-p--force{width:5%!important}.max-w-sm-5-p{max-width:5%}.max-w-sm-5-p--force{max-width:5%!important}.min-w-sm-5-p{min-width:5%}.min-w-sm-5-p--force{min-width:5%!important}.w-sm-10-p{width:10%}.w-sm-10-p--force{width:10%!important}.max-w-sm-10-p{max-width:10%}.max-w-sm-10-p--force{max-width:10%!important}.min-w-sm-10-p{min-width:10%}.min-w-sm-10-p--force{min-width:10%!important}.w-sm-15-p{width:15%}.w-sm-15-p--force{width:15%!important}.max-w-sm-15-p{max-width:15%}.max-w-sm-15-p--force{max-width:15%!important}.min-w-sm-15-p{min-width:15%}.min-w-sm-15-p--force{min-width:15%!important}.w-sm-20-p{width:20%}.w-sm-20-p--force{width:20%!important}.max-w-sm-20-p{max-width:20%}.max-w-sm-20-p--force{max-width:20%!important}.min-w-sm-20-p{min-width:20%}.min-w-sm-20-p--force{min-width:20%!important}.w-sm-25-p{width:25%}.w-sm-25-p--force{width:25%!important}.max-w-sm-25-p{max-width:25%}.max-w-sm-25-p--force{max-width:25%!important}.min-w-sm-25-p{min-width:25%}.min-w-sm-25-p--force{min-width:25%!important}.w-sm-30-p{width:30%}.w-sm-30-p--force{width:30%!important}.max-w-sm-30-p{max-width:30%}.max-w-sm-30-p--force{max-width:30%!important}.min-w-sm-30-p{min-width:30%}.min-w-sm-30-p--force{min-width:30%!important}.w-sm-35-p{width:35%}.w-sm-35-p--force{width:35%!important}.max-w-sm-35-p{max-width:35%}.max-w-sm-35-p--force{max-width:35%!important}.min-w-sm-35-p{min-width:35%}.min-w-sm-35-p--force{min-width:35%!important}.w-sm-40-p{width:40%}.w-sm-40-p--force{width:40%!important}.max-w-sm-40-p{max-width:40%}.max-w-sm-40-p--force{max-width:40%!important}.min-w-sm-40-p{min-width:40%}.min-w-sm-40-p--force{min-width:40%!important}.w-sm-45-p{width:45%}.w-sm-45-p--force{width:45%!important}.max-w-sm-45-p{max-width:45%}.max-w-sm-45-p--force{max-width:45%!important}.min-w-sm-45-p{min-width:45%}.min-w-sm-45-p--force{min-width:45%!important}.w-sm-50-p{width:50%}.w-sm-50-p--force{width:50%!important}.max-w-sm-50-p{max-width:50%}.max-w-sm-50-p--force{max-width:50%!important}.min-w-sm-50-p{min-width:50%}.min-w-sm-50-p--force{min-width:50%!important}.w-sm-55-p{width:55%}.w-sm-55-p--force{width:55%!important}.max-w-sm-55-p{max-width:55%}.max-w-sm-55-p--force{max-width:55%!important}.min-w-sm-55-p{min-width:55%}.min-w-sm-55-p--force{min-width:55%!important}.w-sm-60-p{width:60%}.w-sm-60-p--force{width:60%!important}.max-w-sm-60-p{max-width:60%}.max-w-sm-60-p--force{max-width:60%!important}.min-w-sm-60-p{min-width:60%}.min-w-sm-60-p--force{min-width:60%!important}.w-sm-65-p{width:65%}.w-sm-65-p--force{width:65%!important}.max-w-sm-65-p{max-width:65%}.max-w-sm-65-p--force{max-width:65%!important}.min-w-sm-65-p{min-width:65%}.min-w-sm-65-p--force{min-width:65%!important}.w-sm-70-p{width:70%}.w-sm-70-p--force{width:70%!important}.max-w-sm-70-p{max-width:70%}.max-w-sm-70-p--force{max-width:70%!important}.min-w-sm-70-p{min-width:70%}.min-w-sm-70-p--force{min-width:70%!important}.w-sm-75-p{width:75%}.w-sm-75-p--force{width:75%!important}.max-w-sm-75-p{max-width:75%}.max-w-sm-75-p--force{max-width:75%!important}.min-w-sm-75-p{min-width:75%}.min-w-sm-75-p--force{min-width:75%!important}.w-sm-80-p{width:80%}.w-sm-80-p--force{width:80%!important}.max-w-sm-80-p{max-width:80%}.max-w-sm-80-p--force{max-width:80%!important}.min-w-sm-80-p{min-width:80%}.min-w-sm-80-p--force{min-width:80%!important}.w-sm-85-p{width:85%}.w-sm-85-p--force{width:85%!important}.max-w-sm-85-p{max-width:85%}.max-w-sm-85-p--force{max-width:85%!important}.min-w-sm-85-p{min-width:85%}.min-w-sm-85-p--force{min-width:85%!important}.w-sm-90-p{width:90%}.w-sm-90-p--force{width:90%!important}.max-w-sm-90-p{max-width:90%}.max-w-sm-90-p--force{max-width:90%!important}.min-w-sm-90-p{min-width:90%}.min-w-sm-90-p--force{min-width:90%!important}.w-sm-95-p{width:95%}.w-sm-95-p--force{width:95%!important}.max-w-sm-95-p{max-width:95%}.max-w-sm-95-p--force{max-width:95%!important}.min-w-sm-95-p{min-width:95%}.min-w-sm-95-p--force{min-width:95%!important}.w-sm-100-p{width:100%}.w-sm-100-p--force{width:100%!important}.max-w-sm-100-p{max-width:100%}.max-w-sm-100-p--force{max-width:100%!important}.min-w-sm-100-p{min-width:100%}.min-w-sm-100-p--force{min-width:100%!important}.w-sm-300{width:300px}.w-sm-300--force{width:300px!important}.max-w-sm-300{max-width:300px}.max-w-sm-300--force{max-width:300px!important}.min-w-sm-300{min-width:300px}.min-w-sm-300--force{min-width:300px!important}.w-sm-400{width:400px}.w-sm-400--force{width:400px!important}.max-w-sm-400{max-width:400px}.max-w-sm-400--force{max-width:400px!important}.min-w-sm-400{min-width:400px}.min-w-sm-400--force{min-width:400px!important}.w-sm-500{width:500px}.w-sm-500--force{width:500px!important}.max-w-sm-500{max-width:500px}.max-w-sm-500--force{max-width:500px!important}.min-w-sm-500{min-width:500px}.min-w-sm-500--force{min-width:500px!important}.w-sm-600{width:600px}.w-sm-600--force{width:600px!important}.max-w-sm-600{max-width:600px}.max-w-sm-600--force{max-width:600px!important}.min-w-sm-600{min-width:600px}.min-w-sm-600--force{min-width:600px!important}.w-sm-700{width:700px}.w-sm-700--force{width:700px!important}.max-w-sm-700{max-width:700px}.max-w-sm-700--force{max-width:700px!important}.min-w-sm-700{min-width:700px}.min-w-sm-700--force{min-width:700px!important}.w-sm-800{width:800px}.w-sm-800--force{width:800px!important}.max-w-sm-800{max-width:800px}.max-w-sm-800--force{max-width:800px!important}.min-w-sm-800{min-width:800px}.min-w-sm-800--force{min-width:800px!important}.w-sm-900{width:900px}.w-sm-900--force{width:900px!important}.max-w-sm-900{max-width:900px}.max-w-sm-900--force{max-width:900px!important}.min-w-sm-900{min-width:900px}.min-w-sm-900--force{min-width:900px!important}.w-sm-1000{width:1000px}.w-sm-1000--force{width:1000px!important}.max-w-sm-1000{max-width:1000px}.max-w-sm-1000--force{max-width:1000px!important}.min-w-sm-1000{min-width:1000px}.min-w-sm-1000--force{min-width:1000px!important}.w-sm-1100{width:1100px}.w-sm-1100--force{width:1100px!important}.max-w-sm-1100{max-width:1100px}.max-w-sm-1100--force{max-width:1100px!important}.min-w-sm-1100{min-width:1100px}.min-w-sm-1100--force{min-width:1100px!important}.w-sm-1200{width:1200px}.w-sm-1200--force{width:1200px!important}.max-w-sm-1200{max-width:1200px}.max-w-sm-1200--force{max-width:1200px!important}.min-w-sm-1200{min-width:1200px}.min-w-sm-1200--force{min-width:1200px!important}.w-sm-1300{width:1300px}.w-sm-1300--force{width:1300px!important}.max-w-sm-1300{max-width:1300px}.max-w-sm-1300--force{max-width:1300px!important}.min-w-sm-1300{min-width:1300px}.min-w-sm-1300--force{min-width:1300px!important}.w-sm-1400{width:1400px}.w-sm-1400--force{width:1400px!important}.max-w-sm-1400{max-width:1400px}.max-w-sm-1400--force{max-width:1400px!important}.min-w-sm-1400{min-width:1400px}.min-w-sm-1400--force{min-width:1400px!important}.w-sm-1500{width:1500px}.w-sm-1500--force{width:1500px!important}.max-w-sm-1500{max-width:1500px}.max-w-sm-1500--force{max-width:1500px!important}.min-w-sm-1500{min-width:1500px}.min-w-sm-1500--force{min-width:1500px!important}.w-sm-1600{width:1600px}.w-sm-1600--force{width:1600px!important}.max-w-sm-1600{max-width:1600px}.max-w-sm-1600--force{max-width:1600px!important}.min-w-sm-1600{min-width:1600px}.min-w-sm-1600--force{min-width:1600px!important}.w-sm-1700{width:1700px}.w-sm-1700--force{width:1700px!important}.max-w-sm-1700{max-width:1700px}.max-w-sm-1700--force{max-width:1700px!important}.min-w-sm-1700{min-width:1700px}.min-w-sm-1700--force{min-width:1700px!important}.w-sm-1800{width:1800px}.w-sm-1800--force{width:1800px!important}.max-w-sm-1800{max-width:1800px}.max-w-sm-1800--force{max-width:1800px!important}.min-w-sm-1800{min-width:1800px}.min-w-sm-1800--force{min-width:1800px!important}.w-sm-1900{width:1900px}.w-sm-1900--force{width:1900px!important}.max-w-sm-1900{max-width:1900px}.max-w-sm-1900--force{max-width:1900px!important}.min-w-sm-1900{min-width:1900px}.min-w-sm-1900--force{min-width:1900px!important}.w-sm-2000{width:2000px}.w-sm-2000--force{width:2000px!important}.max-w-sm-2000{max-width:2000px}.max-w-sm-2000--force{max-width:2000px!important}.min-w-sm-2000{min-width:2000px}.min-w-sm-2000--force{min-width:2000px!important}.w-sm-auto{width:auto}.w-sm-auto--force{width:auto!important}.m-sm--64{margin:-64px}.m-sm--64--force{margin:-64px!important}.mx-sm--64{margin-right:-64px;margin-left:-64px}.mx-sm--64--force{margin-right:-64px!important;margin-left:-64px!important}.my-sm--64{margin-top:-64px;margin-bottom:-64px}.my-sm--64--force{margin-top:-64px!important;margin-bottom:-64px!important}.mt-sm--64{margin-top:-64px}.mt-sm--64--force{margin-top:-64px!important}.mr-sm--64{margin-right:-64px}.mr-sm--64--force{margin-right:-64px!important}.mb-sm--64{margin-bottom:-64px}.mb-sm--64--force{margin-bottom:-64px!important}.ml-sm--64{margin-left:-64px}.ml-sm--64--force{margin-left:-64px!important}.m-sm--60{margin:-60px}.m-sm--60--force{margin:-60px!important}.mx-sm--60{margin-right:-60px;margin-left:-60px}.mx-sm--60--force{margin-right:-60px!important;margin-left:-60px!important}.my-sm--60{margin-top:-60px;margin-bottom:-60px}.my-sm--60--force{margin-top:-60px!important;margin-bottom:-60px!important}.mt-sm--60{margin-top:-60px}.mt-sm--60--force{margin-top:-60px!important}.mr-sm--60{margin-right:-60px}.mr-sm--60--force{margin-right:-60px!important}.mb-sm--60{margin-bottom:-60px}.mb-sm--60--force{margin-bottom:-60px!important}.ml-sm--60{margin-left:-60px}.ml-sm--60--force{margin-left:-60px!important}.m-sm--56{margin:-56px}.m-sm--56--force{margin:-56px!important}.mx-sm--56{margin-right:-56px;margin-left:-56px}.mx-sm--56--force{margin-right:-56px!important;margin-left:-56px!important}.my-sm--56{margin-top:-56px;margin-bottom:-56px}.my-sm--56--force{margin-top:-56px!important;margin-bottom:-56px!important}.mt-sm--56{margin-top:-56px}.mt-sm--56--force{margin-top:-56px!important}.mr-sm--56{margin-right:-56px}.mr-sm--56--force{margin-right:-56px!important}.mb-sm--56{margin-bottom:-56px}.mb-sm--56--force{margin-bottom:-56px!important}.ml-sm--56{margin-left:-56px}.ml-sm--56--force{margin-left:-56px!important}.m-sm--52{margin:-52px}.m-sm--52--force{margin:-52px!important}.mx-sm--52{margin-right:-52px;margin-left:-52px}.mx-sm--52--force{margin-right:-52px!important;margin-left:-52px!important}.my-sm--52{margin-top:-52px;margin-bottom:-52px}.my-sm--52--force{margin-top:-52px!important;margin-bottom:-52px!important}.mt-sm--52{margin-top:-52px}.mt-sm--52--force{margin-top:-52px!important}.mr-sm--52{margin-right:-52px}.mr-sm--52--force{margin-right:-52px!important}.mb-sm--52{margin-bottom:-52px}.mb-sm--52--force{margin-bottom:-52px!important}.ml-sm--52{margin-left:-52px}.ml-sm--52--force{margin-left:-52px!important}.m-sm--48{margin:-48px}.m-sm--48--force{margin:-48px!important}.mx-sm--48{margin-right:-48px;margin-left:-48px}.mx-sm--48--force{margin-right:-48px!important;margin-left:-48px!important}.my-sm--48{margin-top:-48px;margin-bottom:-48px}.my-sm--48--force{margin-top:-48px!important;margin-bottom:-48px!important}.mt-sm--48{margin-top:-48px}.mt-sm--48--force{margin-top:-48px!important}.mr-sm--48{margin-right:-48px}.mr-sm--48--force{margin-right:-48px!important}.mb-sm--48{margin-bottom:-48px}.mb-sm--48--force{margin-bottom:-48px!important}.ml-sm--48{margin-left:-48px}.ml-sm--48--force{margin-left:-48px!important}.m-sm--44{margin:-44px}.m-sm--44--force{margin:-44px!important}.mx-sm--44{margin-right:-44px;margin-left:-44px}.mx-sm--44--force{margin-right:-44px!important;margin-left:-44px!important}.my-sm--44{margin-top:-44px;margin-bottom:-44px}.my-sm--44--force{margin-top:-44px!important;margin-bottom:-44px!important}.mt-sm--44{margin-top:-44px}.mt-sm--44--force{margin-top:-44px!important}.mr-sm--44{margin-right:-44px}.mr-sm--44--force{margin-right:-44px!important}.mb-sm--44{margin-bottom:-44px}.mb-sm--44--force{margin-bottom:-44px!important}.ml-sm--44{margin-left:-44px}.ml-sm--44--force{margin-left:-44px!important}.m-sm--40{margin:-40px}.m-sm--40--force{margin:-40px!important}.mx-sm--40{margin-right:-40px;margin-left:-40px}.mx-sm--40--force{margin-right:-40px!important;margin-left:-40px!important}.my-sm--40{margin-top:-40px;margin-bottom:-40px}.my-sm--40--force{margin-top:-40px!important;margin-bottom:-40px!important}.mt-sm--40{margin-top:-40px}.mt-sm--40--force{margin-top:-40px!important}.mr-sm--40{margin-right:-40px}.mr-sm--40--force{margin-right:-40px!important}.mb-sm--40{margin-bottom:-40px}.mb-sm--40--force{margin-bottom:-40px!important}.ml-sm--40{margin-left:-40px}.ml-sm--40--force{margin-left:-40px!important}.m-sm--36{margin:-36px}.m-sm--36--force{margin:-36px!important}.mx-sm--36{margin-right:-36px;margin-left:-36px}.mx-sm--36--force{margin-right:-36px!important;margin-left:-36px!important}.my-sm--36{margin-top:-36px;margin-bottom:-36px}.my-sm--36--force{margin-top:-36px!important;margin-bottom:-36px!important}.mt-sm--36{margin-top:-36px}.mt-sm--36--force{margin-top:-36px!important}.mr-sm--36{margin-right:-36px}.mr-sm--36--force{margin-right:-36px!important}.mb-sm--36{margin-bottom:-36px}.mb-sm--36--force{margin-bottom:-36px!important}.ml-sm--36{margin-left:-36px}.ml-sm--36--force{margin-left:-36px!important}.m-sm--32{margin:-32px}.m-sm--32--force{margin:-32px!important}.mx-sm--32{margin-right:-32px;margin-left:-32px}.mx-sm--32--force{margin-right:-32px!important;margin-left:-32px!important}.my-sm--32{margin-top:-32px;margin-bottom:-32px}.my-sm--32--force{margin-top:-32px!important;margin-bottom:-32px!important}.mt-sm--32{margin-top:-32px}.mt-sm--32--force{margin-top:-32px!important}.mr-sm--32{margin-right:-32px}.mr-sm--32--force{margin-right:-32px!important}.mb-sm--32{margin-bottom:-32px}.mb-sm--32--force{margin-bottom:-32px!important}.ml-sm--32{margin-left:-32px}.ml-sm--32--force{margin-left:-32px!important}.m-sm--28{margin:-28px}.m-sm--28--force{margin:-28px!important}.mx-sm--28{margin-right:-28px;margin-left:-28px}.mx-sm--28--force{margin-right:-28px!important;margin-left:-28px!important}.my-sm--28{margin-top:-28px;margin-bottom:-28px}.my-sm--28--force{margin-top:-28px!important;margin-bottom:-28px!important}.mt-sm--28{margin-top:-28px}.mt-sm--28--force{margin-top:-28px!important}.mr-sm--28{margin-right:-28px}.mr-sm--28--force{margin-right:-28px!important}.mb-sm--28{margin-bottom:-28px}.mb-sm--28--force{margin-bottom:-28px!important}.ml-sm--28{margin-left:-28px}.ml-sm--28--force{margin-left:-28px!important}.m-sm--24{margin:-24px}.m-sm--24--force{margin:-24px!important}.mx-sm--24{margin-right:-24px;margin-left:-24px}.mx-sm--24--force{margin-right:-24px!important;margin-left:-24px!important}.my-sm--24{margin-top:-24px;margin-bottom:-24px}.my-sm--24--force{margin-top:-24px!important;margin-bottom:-24px!important}.mt-sm--24{margin-top:-24px}.mt-sm--24--force{margin-top:-24px!important}.mr-sm--24{margin-right:-24px}.mr-sm--24--force{margin-right:-24px!important}.mb-sm--24{margin-bottom:-24px}.mb-sm--24--force{margin-bottom:-24px!important}.ml-sm--24{margin-left:-24px}.ml-sm--24--force{margin-left:-24px!important}.m-sm--20{margin:-20px}.m-sm--20--force{margin:-20px!important}.mx-sm--20{margin-right:-20px;margin-left:-20px}.mx-sm--20--force{margin-right:-20px!important;margin-left:-20px!important}.my-sm--20{margin-top:-20px;margin-bottom:-20px}.my-sm--20--force{margin-top:-20px!important;margin-bottom:-20px!important}.mt-sm--20{margin-top:-20px}.mt-sm--20--force{margin-top:-20px!important}.mr-sm--20{margin-right:-20px}.mr-sm--20--force{margin-right:-20px!important}.mb-sm--20{margin-bottom:-20px}.mb-sm--20--force{margin-bottom:-20px!important}.ml-sm--20{margin-left:-20px}.ml-sm--20--force{margin-left:-20px!important}.m-sm--16{margin:-16px}.m-sm--16--force{margin:-16px!important}.mx-sm--16{margin-right:-16px;margin-left:-16px}.mx-sm--16--force{margin-right:-16px!important;margin-left:-16px!important}.my-sm--16{margin-top:-16px;margin-bottom:-16px}.my-sm--16--force{margin-top:-16px!important;margin-bottom:-16px!important}.mt-sm--16{margin-top:-16px}.mt-sm--16--force{margin-top:-16px!important}.mr-sm--16{margin-right:-16px}.mr-sm--16--force{margin-right:-16px!important}.mb-sm--16{margin-bottom:-16px}.mb-sm--16--force{margin-bottom:-16px!important}.ml-sm--16{margin-left:-16px}.ml-sm--16--force{margin-left:-16px!important}.m-sm--12{margin:-12px}.m-sm--12--force{margin:-12px!important}.mx-sm--12{margin-right:-12px;margin-left:-12px}.mx-sm--12--force{margin-right:-12px!important;margin-left:-12px!important}.my-sm--12{margin-top:-12px;margin-bottom:-12px}.my-sm--12--force{margin-top:-12px!important;margin-bottom:-12px!important}.mt-sm--12{margin-top:-12px}.mt-sm--12--force{margin-top:-12px!important}.mr-sm--12{margin-right:-12px}.mr-sm--12--force{margin-right:-12px!important}.mb-sm--12{margin-bottom:-12px}.mb-sm--12--force{margin-bottom:-12px!important}.ml-sm--12{margin-left:-12px}.ml-sm--12--force{margin-left:-12px!important}.m-sm--8{margin:-8px}.m-sm--8--force{margin:-8px!important}.mx-sm--8{margin-right:-8px;margin-left:-8px}.mx-sm--8--force{margin-right:-8px!important;margin-left:-8px!important}.my-sm--8{margin-top:-8px;margin-bottom:-8px}.my-sm--8--force{margin-top:-8px!important;margin-bottom:-8px!important}.mt-sm--8{margin-top:-8px}.mt-sm--8--force{margin-top:-8px!important}.mr-sm--8{margin-right:-8px}.mr-sm--8--force{margin-right:-8px!important}.mb-sm--8{margin-bottom:-8px}.mb-sm--8--force{margin-bottom:-8px!important}.ml-sm--8{margin-left:-8px}.ml-sm--8--force{margin-left:-8px!important}.m-sm--4{margin:-4px}.m-sm--4--force{margin:-4px!important}.mx-sm--4{margin-right:-4px;margin-left:-4px}.mx-sm--4--force{margin-right:-4px!important;margin-left:-4px!important}.my-sm--4{margin-top:-4px;margin-bottom:-4px}.my-sm--4--force{margin-top:-4px!important;margin-bottom:-4px!important}.mt-sm--4{margin-top:-4px}.mt-sm--4--force{margin-top:-4px!important}.mr-sm--4{margin-right:-4px}.mr-sm--4--force{margin-right:-4px!important}.mb-sm--4{margin-bottom:-4px}.mb-sm--4--force{margin-bottom:-4px!important}.ml-sm--4{margin-left:-4px}.ml-sm--4--force{margin-left:-4px!important}.m-sm-0{margin:0}.m-sm-0--force{margin:0!important}.mx-sm-0{margin-right:0;margin-left:0}.mx-sm-0--force{margin-right:0!important;margin-left:0!important}.my-sm-0{margin-top:0;margin-bottom:0}.my-sm-0--force{margin-top:0!important;margin-bottom:0!important}.mt-sm-0{margin-top:0}.mt-sm-0--force{margin-top:0!important}.mr-sm-0{margin-right:0}.mr-sm-0--force{margin-right:0!important}.masonry-gap-sm-0>*,.mb-sm-0{margin-bottom:0}.mb-sm-0--force{margin-bottom:0!important}.ml-sm-0{margin-left:0}.ml-sm-0--force{margin-left:0!important}.m-sm-4{margin:4px}.m-sm-4--force{margin:4px!important}.mx-sm-4{margin-right:4px;margin-left:4px}.mx-sm-4--force{margin-right:4px!important;margin-left:4px!important}.my-sm-4{margin-top:4px;margin-bottom:4px}.my-sm-4--force{margin-top:4px!important;margin-bottom:4px!important}.mt-sm-4{margin-top:4px}.mt-sm-4--force{margin-top:4px!important}.mr-sm-4{margin-right:4px}.mr-sm-4--force{margin-right:4px!important}.masonry-gap-sm-4>*,.mb-sm-4{margin-bottom:4px}.mb-sm-4--force{margin-bottom:4px!important}.ml-sm-4{margin-left:4px}.ml-sm-4--force{margin-left:4px!important}.m-sm-8{margin:8px}.m-sm-8--force{margin:8px!important}.mx-sm-8{margin-right:8px;margin-left:8px}.mx-sm-8--force{margin-right:8px!important;margin-left:8px!important}.my-sm-8{margin-top:8px;margin-bottom:8px}.my-sm-8--force{margin-top:8px!important;margin-bottom:8px!important}.mt-sm-8{margin-top:8px}.mt-sm-8--force{margin-top:8px!important}.mr-sm-8{margin-right:8px}.mr-sm-8--force{margin-right:8px!important}.masonry-gap-sm-8>*,.mb-sm-8{margin-bottom:8px}.mb-sm-8--force{margin-bottom:8px!important}.ml-sm-8{margin-left:8px}.ml-sm-8--force{margin-left:8px!important}.m-sm-12{margin:12px}.m-sm-12--force{margin:12px!important}.mx-sm-12{margin-right:12px;margin-left:12px}.mx-sm-12--force{margin-right:12px!important;margin-left:12px!important}.my-sm-12{margin-top:12px;margin-bottom:12px}.my-sm-12--force{margin-top:12px!important;margin-bottom:12px!important}.mt-sm-12{margin-top:12px}.mt-sm-12--force{margin-top:12px!important}.mr-sm-12{margin-right:12px}.mr-sm-12--force{margin-right:12px!important}.masonry-gap-sm-12>*,.mb-sm-12{margin-bottom:12px}.mb-sm-12--force{margin-bottom:12px!important}.ml-sm-12{margin-left:12px}.ml-sm-12--force{margin-left:12px!important}.m-sm-16{margin:16px}.m-sm-16--force{margin:16px!important}.mx-sm-16{margin-right:16px;margin-left:16px}.mx-sm-16--force{margin-right:16px!important;margin-left:16px!important}.my-sm-16{margin-top:16px;margin-bottom:16px}.my-sm-16--force{margin-top:16px!important;margin-bottom:16px!important}.mt-sm-16{margin-top:16px}.mt-sm-16--force{margin-top:16px!important}.mr-sm-16{margin-right:16px}.mr-sm-16--force{margin-right:16px!important}.masonry-gap-sm-16>*,.mb-sm-16{margin-bottom:16px}.mb-sm-16--force{margin-bottom:16px!important}.ml-sm-16{margin-left:16px}.ml-sm-16--force{margin-left:16px!important}.m-sm-20{margin:20px}.m-sm-20--force{margin:20px!important}.mx-sm-20{margin-right:20px;margin-left:20px}.mx-sm-20--force{margin-right:20px!important;margin-left:20px!important}.my-sm-20{margin-top:20px;margin-bottom:20px}.my-sm-20--force{margin-top:20px!important;margin-bottom:20px!important}.mt-sm-20{margin-top:20px}.mt-sm-20--force{margin-top:20px!important}.mr-sm-20{margin-right:20px}.mr-sm-20--force{margin-right:20px!important}.masonry-gap-sm-20>*,.mb-sm-20{margin-bottom:20px}.mb-sm-20--force{margin-bottom:20px!important}.ml-sm-20{margin-left:20px}.ml-sm-20--force{margin-left:20px!important}.m-sm-24{margin:24px}.m-sm-24--force{margin:24px!important}.mx-sm-24{margin-right:24px;margin-left:24px}.mx-sm-24--force{margin-right:24px!important;margin-left:24px!important}.my-sm-24{margin-top:24px;margin-bottom:24px}.my-sm-24--force{margin-top:24px!important;margin-bottom:24px!important}.mt-sm-24{margin-top:24px}.mt-sm-24--force{margin-top:24px!important}.mr-sm-24{margin-right:24px}.mr-sm-24--force{margin-right:24px!important}.masonry-gap-sm-24>*,.mb-sm-24{margin-bottom:24px}.mb-sm-24--force{margin-bottom:24px!important}.ml-sm-24{margin-left:24px}.ml-sm-24--force{margin-left:24px!important}.m-sm-28{margin:28px}.m-sm-28--force{margin:28px!important}.mx-sm-28{margin-right:28px;margin-left:28px}.mx-sm-28--force{margin-right:28px!important;margin-left:28px!important}.my-sm-28{margin-top:28px;margin-bottom:28px}.my-sm-28--force{margin-top:28px!important;margin-bottom:28px!important}.mt-sm-28{margin-top:28px}.mt-sm-28--force{margin-top:28px!important}.mr-sm-28{margin-right:28px}.mr-sm-28--force{margin-right:28px!important}.masonry-gap-sm-28>*,.mb-sm-28{margin-bottom:28px}.mb-sm-28--force{margin-bottom:28px!important}.ml-sm-28{margin-left:28px}.ml-sm-28--force{margin-left:28px!important}.m-sm-32{margin:32px}.m-sm-32--force{margin:32px!important}.mx-sm-32{margin-right:32px;margin-left:32px}.mx-sm-32--force{margin-right:32px!important;margin-left:32px!important}.my-sm-32{margin-top:32px;margin-bottom:32px}.my-sm-32--force{margin-top:32px!important;margin-bottom:32px!important}.mt-sm-32{margin-top:32px}.mt-sm-32--force{margin-top:32px!important}.mr-sm-32{margin-right:32px}.mr-sm-32--force{margin-right:32px!important}.masonry-gap-sm-32>*,.mb-sm-32{margin-bottom:32px}.mb-sm-32--force{margin-bottom:32px!important}.ml-sm-32{margin-left:32px}.ml-sm-32--force{margin-left:32px!important}.m-sm-36{margin:36px}.m-sm-36--force{margin:36px!important}.mx-sm-36{margin-right:36px;margin-left:36px}.mx-sm-36--force{margin-right:36px!important;margin-left:36px!important}.my-sm-36{margin-top:36px;margin-bottom:36px}.my-sm-36--force{margin-top:36px!important;margin-bottom:36px!important}.mt-sm-36{margin-top:36px}.mt-sm-36--force{margin-top:36px!important}.mr-sm-36{margin-right:36px}.mr-sm-36--force{margin-right:36px!important}.masonry-gap-sm-36>*,.mb-sm-36{margin-bottom:36px}.mb-sm-36--force{margin-bottom:36px!important}.ml-sm-36{margin-left:36px}.ml-sm-36--force{margin-left:36px!important}.m-sm-40{margin:40px}.m-sm-40--force{margin:40px!important}.mx-sm-40{margin-right:40px;margin-left:40px}.mx-sm-40--force{margin-right:40px!important;margin-left:40px!important}.my-sm-40{margin-top:40px;margin-bottom:40px}.my-sm-40--force{margin-top:40px!important;margin-bottom:40px!important}.mt-sm-40{margin-top:40px}.mt-sm-40--force{margin-top:40px!important}.mr-sm-40{margin-right:40px}.mr-sm-40--force{margin-right:40px!important}.masonry-gap-sm-40>*,.mb-sm-40{margin-bottom:40px}.mb-sm-40--force{margin-bottom:40px!important}.ml-sm-40{margin-left:40px}.ml-sm-40--force{margin-left:40px!important}.m-sm-44{margin:44px}.m-sm-44--force{margin:44px!important}.mx-sm-44{margin-right:44px;margin-left:44px}.mx-sm-44--force{margin-right:44px!important;margin-left:44px!important}.my-sm-44{margin-top:44px;margin-bottom:44px}.my-sm-44--force{margin-top:44px!important;margin-bottom:44px!important}.mt-sm-44{margin-top:44px}.mt-sm-44--force{margin-top:44px!important}.mr-sm-44{margin-right:44px}.mr-sm-44--force{margin-right:44px!important}.masonry-gap-sm-44>*,.mb-sm-44{margin-bottom:44px}.mb-sm-44--force{margin-bottom:44px!important}.ml-sm-44{margin-left:44px}.ml-sm-44--force{margin-left:44px!important}.m-sm-48{margin:48px}.m-sm-48--force{margin:48px!important}.mx-sm-48{margin-right:48px;margin-left:48px}.mx-sm-48--force{margin-right:48px!important;margin-left:48px!important}.my-sm-48{margin-top:48px;margin-bottom:48px}.my-sm-48--force{margin-top:48px!important;margin-bottom:48px!important}.mt-sm-48{margin-top:48px}.mt-sm-48--force{margin-top:48px!important}.mr-sm-48{margin-right:48px}.mr-sm-48--force{margin-right:48px!important}.masonry-gap-sm-48>*,.mb-sm-48{margin-bottom:48px}.mb-sm-48--force{margin-bottom:48px!important}.ml-sm-48{margin-left:48px}.ml-sm-48--force{margin-left:48px!important}.m-sm-52{margin:52px}.m-sm-52--force{margin:52px!important}.mx-sm-52{margin-right:52px;margin-left:52px}.mx-sm-52--force{margin-right:52px!important;margin-left:52px!important}.my-sm-52{margin-top:52px;margin-bottom:52px}.my-sm-52--force{margin-top:52px!important;margin-bottom:52px!important}.mt-sm-52{margin-top:52px}.mt-sm-52--force{margin-top:52px!important}.mr-sm-52{margin-right:52px}.mr-sm-52--force{margin-right:52px!important}.mb-sm-52{margin-bottom:52px}.mb-sm-52--force{margin-bottom:52px!important}.ml-sm-52{margin-left:52px}.ml-sm-52--force{margin-left:52px!important}.m-sm-56{margin:56px}.m-sm-56--force{margin:56px!important}.mx-sm-56{margin-right:56px;margin-left:56px}.mx-sm-56--force{margin-right:56px!important;margin-left:56px!important}.my-sm-56{margin-top:56px;margin-bottom:56px}.my-sm-56--force{margin-top:56px!important;margin-bottom:56px!important}.mt-sm-56{margin-top:56px}.mt-sm-56--force{margin-top:56px!important}.mr-sm-56{margin-right:56px}.mr-sm-56--force{margin-right:56px!important}.mb-sm-56{margin-bottom:56px}.mb-sm-56--force{margin-bottom:56px!important}.ml-sm-56{margin-left:56px}.ml-sm-56--force{margin-left:56px!important}.m-sm-60{margin:60px}.m-sm-60--force{margin:60px!important}.mx-sm-60{margin-right:60px;margin-left:60px}.mx-sm-60--force{margin-right:60px!important;margin-left:60px!important}.my-sm-60{margin-top:60px;margin-bottom:60px}.my-sm-60--force{margin-top:60px!important;margin-bottom:60px!important}.mt-sm-60{margin-top:60px}.mt-sm-60--force{margin-top:60px!important}.mr-sm-60{margin-right:60px}.mr-sm-60--force{margin-right:60px!important}.mb-sm-60{margin-bottom:60px}.mb-sm-60--force{margin-bottom:60px!important}.ml-sm-60{margin-left:60px}.ml-sm-60--force{margin-left:60px!important}.m-sm-64{margin:64px}.m-sm-64--force{margin:64px!important}.mx-sm-64{margin-right:64px;margin-left:64px}.mx-sm-64--force{margin-right:64px!important;margin-left:64px!important}.my-sm-64{margin-top:64px;margin-bottom:64px}.my-sm-64--force{margin-top:64px!important;margin-bottom:64px!important}.mt-sm-64{margin-top:64px}.mt-sm-64--force{margin-top:64px!important}.mr-sm-64{margin-right:64px}.mr-sm-64--force{margin-right:64px!important}.mb-sm-64{margin-bottom:64px}.mb-sm-64--force{margin-bottom:64px!important}.ml-sm-64{margin-left:64px}.ml-sm-64--force{margin-left:64px!important}.m-sm-auto{margin:auto}.m-sm-auto--force{margin:auto!important}.mt-sm-auto{margin-top:auto}.mt-sm-auto--force{margin-top:auto!important}.mr-sm-auto{margin-right:auto}.mr-sm-auto--force{margin-right:auto!important}.mb-sm-auto{margin-bottom:auto}.mb-sm-auto--force{margin-bottom:auto!important}.ml-sm-auto{margin-left:auto}.ml-sm-auto--force{margin-left:auto!important}.mx-sm-auto{margin-right:auto;margin-left:auto}.mx-sm-auto--force{margin-right:auto!important;margin-left:auto!important}.my-sm-auto{margin-top:auto;margin-bottom:auto}.my-sm-auto--force{margin-top:auto!important;margin-bottom:auto!important}.p-sm-0{padding:0}.p-sm-0--force{padding:0!important}.px-sm-0{padding-right:0;padding-left:0}.px-sm-0--force{padding-right:0!important;padding-left:0!important}.py-sm-0{padding-top:0;padding-bottom:0}.py-sm-0--force{padding-top:0!important;padding-bottom:0!important}.pt-sm-0{padding-top:0}.pt-sm-0--force{padding-top:0!important}.pr-sm-0{padding-right:0}.pr-sm-0--force{padding-right:0!important}.pb-sm-0{padding-bottom:0}.pb-sm-0--force{padding-bottom:0!important}.pl-sm-0{padding-left:0}.pl-sm-0--force{padding-left:0!important}.p-sm-4{padding:4px}.p-sm-4--force{padding:4px!important}.px-sm-4{padding-right:4px;padding-left:4px}.px-sm-4--force{padding-right:4px!important;padding-left:4px!important}.py-sm-4{padding-top:4px;padding-bottom:4px}.py-sm-4--force{padding-top:4px!important;padding-bottom:4px!important}.pt-sm-4{padding-top:4px}.pt-sm-4--force{padding-top:4px!important}.pr-sm-4{padding-right:4px}.pr-sm-4--force{padding-right:4px!important}.pb-sm-4{padding-bottom:4px}.pb-sm-4--force{padding-bottom:4px!important}.pl-sm-4{padding-left:4px}.pl-sm-4--force{padding-left:4px!important}.p-sm-8{padding:8px}.p-sm-8--force{padding:8px!important}.px-sm-8{padding-right:8px;padding-left:8px}.px-sm-8--force{padding-right:8px!important;padding-left:8px!important}.py-sm-8{padding-top:8px;padding-bottom:8px}.py-sm-8--force{padding-top:8px!important;padding-bottom:8px!important}.pt-sm-8{padding-top:8px}.pt-sm-8--force{padding-top:8px!important}.pr-sm-8{padding-right:8px}.pr-sm-8--force{padding-right:8px!important}.pb-sm-8{padding-bottom:8px}.pb-sm-8--force{padding-bottom:8px!important}.pl-sm-8{padding-left:8px}.pl-sm-8--force{padding-left:8px!important}.p-sm-12{padding:12px}.p-sm-12--force{padding:12px!important}.px-sm-12{padding-right:12px;padding-left:12px}.px-sm-12--force{padding-right:12px!important;padding-left:12px!important}.py-sm-12{padding-top:12px;padding-bottom:12px}.py-sm-12--force{padding-top:12px!important;padding-bottom:12px!important}.pt-sm-12{padding-top:12px}.pt-sm-12--force{padding-top:12px!important}.pr-sm-12{padding-right:12px}.pr-sm-12--force{padding-right:12px!important}.pb-sm-12{padding-bottom:12px}.pb-sm-12--force{padding-bottom:12px!important}.pl-sm-12{padding-left:12px}.pl-sm-12--force{padding-left:12px!important}.p-sm-16{padding:16px}.p-sm-16--force{padding:16px!important}.px-sm-16{padding-right:16px;padding-left:16px}.px-sm-16--force{padding-right:16px!important;padding-left:16px!important}.py-sm-16{padding-top:16px;padding-bottom:16px}.py-sm-16--force{padding-top:16px!important;padding-bottom:16px!important}.pt-sm-16{padding-top:16px}.pt-sm-16--force{padding-top:16px!important}.pr-sm-16{padding-right:16px}.pr-sm-16--force{padding-right:16px!important}.pb-sm-16{padding-bottom:16px}.pb-sm-16--force{padding-bottom:16px!important}.pl-sm-16{padding-left:16px}.pl-sm-16--force{padding-left:16px!important}.p-sm-20{padding:20px}.p-sm-20--force{padding:20px!important}.px-sm-20{padding-right:20px;padding-left:20px}.px-sm-20--force{padding-right:20px!important;padding-left:20px!important}.py-sm-20{padding-top:20px;padding-bottom:20px}.py-sm-20--force{padding-top:20px!important;padding-bottom:20px!important}.pt-sm-20{padding-top:20px}.pt-sm-20--force{padding-top:20px!important}.pr-sm-20{padding-right:20px}.pr-sm-20--force{padding-right:20px!important}.pb-sm-20{padding-bottom:20px}.pb-sm-20--force{padding-bottom:20px!important}.pl-sm-20{padding-left:20px}.pl-sm-20--force{padding-left:20px!important}.p-sm-24{padding:24px}.p-sm-24--force{padding:24px!important}.px-sm-24{padding-right:24px;padding-left:24px}.px-sm-24--force{padding-right:24px!important;padding-left:24px!important}.py-sm-24{padding-top:24px;padding-bottom:24px}.py-sm-24--force{padding-top:24px!important;padding-bottom:24px!important}.pt-sm-24{padding-top:24px}.pt-sm-24--force{padding-top:24px!important}.pr-sm-24{padding-right:24px}.pr-sm-24--force{padding-right:24px!important}.pb-sm-24{padding-bottom:24px}.pb-sm-24--force{padding-bottom:24px!important}.pl-sm-24{padding-left:24px}.pl-sm-24--force{padding-left:24px!important}.p-sm-28{padding:28px}.p-sm-28--force{padding:28px!important}.px-sm-28{padding-right:28px;padding-left:28px}.px-sm-28--force{padding-right:28px!important;padding-left:28px!important}.py-sm-28{padding-top:28px;padding-bottom:28px}.py-sm-28--force{padding-top:28px!important;padding-bottom:28px!important}.pt-sm-28{padding-top:28px}.pt-sm-28--force{padding-top:28px!important}.pr-sm-28{padding-right:28px}.pr-sm-28--force{padding-right:28px!important}.pb-sm-28{padding-bottom:28px}.pb-sm-28--force{padding-bottom:28px!important}.pl-sm-28{padding-left:28px}.pl-sm-28--force{padding-left:28px!important}.p-sm-32{padding:32px}.p-sm-32--force{padding:32px!important}.px-sm-32{padding-right:32px;padding-left:32px}.px-sm-32--force{padding-right:32px!important;padding-left:32px!important}.py-sm-32{padding-top:32px;padding-bottom:32px}.py-sm-32--force{padding-top:32px!important;padding-bottom:32px!important}.pt-sm-32{padding-top:32px}.pt-sm-32--force{padding-top:32px!important}.pr-sm-32{padding-right:32px}.pr-sm-32--force{padding-right:32px!important}.pb-sm-32{padding-bottom:32px}.pb-sm-32--force{padding-bottom:32px!important}.pl-sm-32{padding-left:32px}.pl-sm-32--force{padding-left:32px!important}.p-sm-36{padding:36px}.p-sm-36--force{padding:36px!important}.px-sm-36{padding-right:36px;padding-left:36px}.px-sm-36--force{padding-right:36px!important;padding-left:36px!important}.py-sm-36{padding-top:36px;padding-bottom:36px}.py-sm-36--force{padding-top:36px!important;padding-bottom:36px!important}.pt-sm-36{padding-top:36px}.pt-sm-36--force{padding-top:36px!important}.pr-sm-36{padding-right:36px}.pr-sm-36--force{padding-right:36px!important}.pb-sm-36{padding-bottom:36px}.pb-sm-36--force{padding-bottom:36px!important}.pl-sm-36{padding-left:36px}.pl-sm-36--force{padding-left:36px!important}.p-sm-40{padding:40px}.p-sm-40--force{padding:40px!important}.px-sm-40{padding-right:40px;padding-left:40px}.px-sm-40--force{padding-right:40px!important;padding-left:40px!important}.py-sm-40{padding-top:40px;padding-bottom:40px}.py-sm-40--force{padding-top:40px!important;padding-bottom:40px!important}.pt-sm-40{padding-top:40px}.pt-sm-40--force{padding-top:40px!important}.pr-sm-40{padding-right:40px}.pr-sm-40--force{padding-right:40px!important}.pb-sm-40{padding-bottom:40px}.pb-sm-40--force{padding-bottom:40px!important}.pl-sm-40{padding-left:40px}.pl-sm-40--force{padding-left:40px!important}.p-sm-44{padding:44px}.p-sm-44--force{padding:44px!important}.px-sm-44{padding-right:44px;padding-left:44px}.px-sm-44--force{padding-right:44px!important;padding-left:44px!important}.py-sm-44{padding-top:44px;padding-bottom:44px}.py-sm-44--force{padding-top:44px!important;padding-bottom:44px!important}.pt-sm-44{padding-top:44px}.pt-sm-44--force{padding-top:44px!important}.pr-sm-44{padding-right:44px}.pr-sm-44--force{padding-right:44px!important}.pb-sm-44{padding-bottom:44px}.pb-sm-44--force{padding-bottom:44px!important}.pl-sm-44{padding-left:44px}.pl-sm-44--force{padding-left:44px!important}.p-sm-48{padding:48px}.p-sm-48--force{padding:48px!important}.px-sm-48{padding-right:48px;padding-left:48px}.px-sm-48--force{padding-right:48px!important;padding-left:48px!important}.py-sm-48{padding-top:48px;padding-bottom:48px}.py-sm-48--force{padding-top:48px!important;padding-bottom:48px!important}.pt-sm-48{padding-top:48px}.pt-sm-48--force{padding-top:48px!important}.pr-sm-48{padding-right:48px}.pr-sm-48--force{padding-right:48px!important}.pb-sm-48{padding-bottom:48px}.pb-sm-48--force{padding-bottom:48px!important}.pl-sm-48{padding-left:48px}.pl-sm-48--force{padding-left:48px!important}.p-sm-52{padding:52px}.p-sm-52--force{padding:52px!important}.px-sm-52{padding-right:52px;padding-left:52px}.px-sm-52--force{padding-right:52px!important;padding-left:52px!important}.py-sm-52{padding-top:52px;padding-bottom:52px}.py-sm-52--force{padding-top:52px!important;padding-bottom:52px!important}.pt-sm-52{padding-top:52px}.pt-sm-52--force{padding-top:52px!important}.pr-sm-52{padding-right:52px}.pr-sm-52--force{padding-right:52px!important}.pb-sm-52{padding-bottom:52px}.pb-sm-52--force{padding-bottom:52px!important}.pl-sm-52{padding-left:52px}.pl-sm-52--force{padding-left:52px!important}.p-sm-56{padding:56px}.p-sm-56--force{padding:56px!important}.px-sm-56{padding-right:56px;padding-left:56px}.px-sm-56--force{padding-right:56px!important;padding-left:56px!important}.py-sm-56{padding-top:56px;padding-bottom:56px}.py-sm-56--force{padding-top:56px!important;padding-bottom:56px!important}.pt-sm-56{padding-top:56px}.pt-sm-56--force{padding-top:56px!important}.pr-sm-56{padding-right:56px}.pr-sm-56--force{padding-right:56px!important}.pb-sm-56{padding-bottom:56px}.pb-sm-56--force{padding-bottom:56px!important}.pl-sm-56{padding-left:56px}.pl-sm-56--force{padding-left:56px!important}.p-sm-60{padding:60px}.p-sm-60--force{padding:60px!important}.px-sm-60{padding-right:60px;padding-left:60px}.px-sm-60--force{padding-right:60px!important;padding-left:60px!important}.py-sm-60{padding-top:60px;padding-bottom:60px}.py-sm-60--force{padding-top:60px!important;padding-bottom:60px!important}.pt-sm-60{padding-top:60px}.pt-sm-60--force{padding-top:60px!important}.pr-sm-60{padding-right:60px}.pr-sm-60--force{padding-right:60px!important}.pb-sm-60{padding-bottom:60px}.pb-sm-60--force{padding-bottom:60px!important}.pl-sm-60{padding-left:60px}.pl-sm-60--force{padding-left:60px!important}.p-sm-64{padding:64px}.p-sm-64--force{padding:64px!important}.px-sm-64{padding-right:64px;padding-left:64px}.px-sm-64--force{padding-right:64px!important;padding-left:64px!important}.py-sm-64{padding-top:64px;padding-bottom:64px}.py-sm-64--force{padding-top:64px!important;padding-bottom:64px!important}.pt-sm-64{padding-top:64px}.pt-sm-64--force{padding-top:64px!important}.pr-sm-64{padding-right:64px}.pr-sm-64--force{padding-right:64px!important}.pb-sm-64{padding-bottom:64px}.pb-sm-64--force{padding-bottom:64px!important}.pl-sm-64{padding-left:64px}.pl-sm-64--force{padding-left:64px!important}.p-sm-68{padding:68px}.p-sm-68--force{padding:68px!important}.px-sm-68{padding-right:68px;padding-left:68px}.px-sm-68--force{padding-right:68px!important;padding-left:68px!important}.py-sm-68{padding-top:68px;padding-bottom:68px}.py-sm-68--force{padding-top:68px!important;padding-bottom:68px!important}.pt-sm-68{padding-top:68px}.pt-sm-68--force{padding-top:68px!important}.pr-sm-68{padding-right:68px}.pr-sm-68--force{padding-right:68px!important}.pb-sm-68{padding-bottom:68px}.pb-sm-68--force{padding-bottom:68px!important}.pl-sm-68{padding-left:68px}.pl-sm-68--force{padding-left:68px!important}.p-sm-72{padding:72px}.p-sm-72--force{padding:72px!important}.px-sm-72{padding-right:72px;padding-left:72px}.px-sm-72--force{padding-right:72px!important;padding-left:72px!important}.py-sm-72{padding-top:72px;padding-bottom:72px}.py-sm-72--force{padding-top:72px!important;padding-bottom:72px!important}.pt-sm-72{padding-top:72px}.pt-sm-72--force{padding-top:72px!important}.pr-sm-72{padding-right:72px}.pr-sm-72--force{padding-right:72px!important}.pb-sm-72{padding-bottom:72px}.pb-sm-72--force{padding-bottom:72px!important}.pl-sm-72{padding-left:72px}.pl-sm-72--force{padding-left:72px!important}.p-sm-76{padding:76px}.p-sm-76--force{padding:76px!important}.px-sm-76{padding-right:76px;padding-left:76px}.px-sm-76--force{padding-right:76px!important;padding-left:76px!important}.py-sm-76{padding-top:76px;padding-bottom:76px}.py-sm-76--force{padding-top:76px!important;padding-bottom:76px!important}.pt-sm-76{padding-top:76px}.pt-sm-76--force{padding-top:76px!important}.pr-sm-76{padding-right:76px}.pr-sm-76--force{padding-right:76px!important}.pb-sm-76{padding-bottom:76px}.pb-sm-76--force{padding-bottom:76px!important}.pl-sm-76{padding-left:76px}.pl-sm-76--force{padding-left:76px!important}.p-sm-80{padding:80px}.p-sm-80--force{padding:80px!important}.px-sm-80{padding-right:80px;padding-left:80px}.px-sm-80--force{padding-right:80px!important;padding-left:80px!important}.py-sm-80{padding-top:80px;padding-bottom:80px}.py-sm-80--force{padding-top:80px!important;padding-bottom:80px!important}.pt-sm-80{padding-top:80px}.pt-sm-80--force{padding-top:80px!important}.pr-sm-80{padding-right:80px}.pr-sm-80--force{padding-right:80px!important}.pb-sm-80{padding-bottom:80px}.pb-sm-80--force{padding-bottom:80px!important}.pl-sm-80{padding-left:80px}.pl-sm-80--force{padding-left:80px!important}.p-sm-84{padding:84px}.p-sm-84--force{padding:84px!important}.px-sm-84{padding-right:84px;padding-left:84px}.px-sm-84--force{padding-right:84px!important;padding-left:84px!important}.py-sm-84{padding-top:84px;padding-bottom:84px}.py-sm-84--force{padding-top:84px!important;padding-bottom:84px!important}.pt-sm-84{padding-top:84px}.pt-sm-84--force{padding-top:84px!important}.pr-sm-84{padding-right:84px}.pr-sm-84--force{padding-right:84px!important}.pb-sm-84{padding-bottom:84px}.pb-sm-84--force{padding-bottom:84px!important}.pl-sm-84{padding-left:84px}.pl-sm-84--force{padding-left:84px!important}.p-sm-88{padding:88px}.p-sm-88--force{padding:88px!important}.px-sm-88{padding-right:88px;padding-left:88px}.px-sm-88--force{padding-right:88px!important;padding-left:88px!important}.py-sm-88{padding-top:88px;padding-bottom:88px}.py-sm-88--force{padding-top:88px!important;padding-bottom:88px!important}.pt-sm-88{padding-top:88px}.pt-sm-88--force{padding-top:88px!important}.pr-sm-88{padding-right:88px}.pr-sm-88--force{padding-right:88px!important}.pb-sm-88{padding-bottom:88px}.pb-sm-88--force{padding-bottom:88px!important}.pl-sm-88{padding-left:88px}.pl-sm-88--force{padding-left:88px!important}.p-sm-92{padding:92px}.p-sm-92--force{padding:92px!important}.px-sm-92{padding-right:92px;padding-left:92px}.px-sm-92--force{padding-right:92px!important;padding-left:92px!important}.py-sm-92{padding-top:92px;padding-bottom:92px}.py-sm-92--force{padding-top:92px!important;padding-bottom:92px!important}.pt-sm-92{padding-top:92px}.pt-sm-92--force{padding-top:92px!important}.pr-sm-92{padding-right:92px}.pr-sm-92--force{padding-right:92px!important}.pb-sm-92{padding-bottom:92px}.pb-sm-92--force{padding-bottom:92px!important}.pl-sm-92{padding-left:92px}.pl-sm-92--force{padding-left:92px!important}.p-sm-96{padding:96px}.p-sm-96--force{padding:96px!important}.px-sm-96{padding-right:96px;padding-left:96px}.px-sm-96--force{padding-right:96px!important;padding-left:96px!important}.py-sm-96{padding-top:96px;padding-bottom:96px}.py-sm-96--force{padding-top:96px!important;padding-bottom:96px!important}.pt-sm-96{padding-top:96px}.pt-sm-96--force{padding-top:96px!important}.pr-sm-96{padding-right:96px}.pr-sm-96--force{padding-right:96px!important}.pb-sm-96{padding-bottom:96px}.pb-sm-96--force{padding-bottom:96px!important}.pl-sm-96{padding-left:96px}.pl-sm-96--force{padding-left:96px!important}.d-sm-grid,.grid-sm-1,.grid-sm-10,.grid-sm-11,.grid-sm-12,.grid-sm-2,.grid-sm-3,.grid-sm-4,.grid-sm-5,.grid-sm-6,.grid-sm-7,.grid-sm-8,.grid-sm-9{display:grid}.grid-sm-1{grid-template-columns:repeat(1,minmax(0,1fr))}.colspan-sm-1,.span-sm-1c{grid-column-end:span 1}.rowspan-sm-1,.span-sm-1r{grid-row-end:span 1}.grid-sm-2{grid-template-columns:repeat(2,minmax(0,1fr))}.colspan-sm-2,.span-sm-2c{grid-column-end:span 2}.rowspan-sm-2,.span-sm-2r{grid-row-end:span 2}.grid-sm-3{grid-template-columns:repeat(3,minmax(0,1fr))}.colspan-sm-3,.span-sm-3c{grid-column-end:span 3}.rowspan-sm-3,.span-sm-3r{grid-row-end:span 3}.grid-sm-4{grid-template-columns:repeat(4,minmax(0,1fr))}.colspan-sm-4,.span-sm-4c{grid-column-end:span 4}.rowspan-sm-4,.span-sm-4r{grid-row-end:span 4}.grid-sm-5{grid-template-columns:repeat(5,minmax(0,1fr))}.colspan-sm-5,.span-sm-5c{grid-column-end:span 5}.rowspan-sm-5,.span-sm-5r{grid-row-end:span 5}.grid-sm-6{grid-template-columns:repeat(6,minmax(0,1fr))}.colspan-sm-6,.span-sm-6c{grid-column-end:span 6}.rowspan-sm-6,.span-sm-6r{grid-row-end:span 6}.grid-sm-7{grid-template-columns:repeat(7,minmax(0,1fr))}.colspan-sm-7,.span-sm-7c{grid-column-end:span 7}.rowspan-sm-7,.span-sm-7r{grid-row-end:span 7}.grid-sm-8{grid-template-columns:repeat(8,minmax(0,1fr))}.colspan-sm-8,.span-sm-8c{grid-column-end:span 8}.rowspan-sm-8,.span-sm-8r{grid-row-end:span 8}.grid-sm-9{grid-template-columns:repeat(9,minmax(0,1fr))}.colspan-sm-9,.span-sm-9c{grid-column-end:span 9}.rowspan-sm-9,.span-sm-9r{grid-row-end:span 9}.grid-sm-10{grid-template-columns:repeat(10,minmax(0,1fr))}.colspan-sm-10,.span-sm-10c{grid-column-end:span 10}.rowspan-sm-10,.span-sm-10r{grid-row-end:span 10}.grid-sm-11{grid-template-columns:repeat(11,minmax(0,1fr))}.colspan-sm-11,.span-sm-11c{grid-column-end:span 11}.rowspan-sm-11,.span-sm-11r{grid-row-end:span 11}.grid-sm-12{grid-template-columns:repeat(12,minmax(0,1fr))}.colspan-sm-12,.span-sm-12c{grid-column-end:span 12}.rowspan-sm-12,.span-sm-12r{grid-row-end:span 12}.row .col-sm-1{flex-basis:8.33333%}.row .col-offset-sm-1{margin-left:8.33333%}.row .col-sm-2{flex-basis:16.66667%}.row .col-offset-sm-2{margin-left:16.66667%}.row .col-sm-3{flex-basis:25%}.row .col-offset-sm-3{margin-left:25%}.row .col-sm-4{flex-basis:33.33333%}.row .col-offset-sm-4{margin-left:33.33333%}.row .col-sm-5{flex-basis:41.66667%}.row .col-offset-sm-5{margin-left:41.66667%}.row .col-sm-6{flex-basis:50%}.row .col-offset-sm-6{margin-left:50%}.row .col-sm-7{flex-basis:58.33333%}.row .col-offset-sm-7{margin-left:58.33333%}.row .col-sm-8{flex-basis:66.66667%}.row .col-offset-sm-8{margin-left:66.66667%}.row .col-sm-9{flex-basis:75%}.row .col-offset-sm-9{margin-left:75%}.row .col-sm-10{flex-basis:83.33333%}.row .col-offset-sm-10{margin-left:83.33333%}.row .col-sm-11{flex-basis:91.66667%}.row .col-offset-sm-11{margin-left:91.66667%}.flex-sm-basis-1,.row .col-sm-12{flex-basis:100%}.row .col-offset-sm-12{margin-left:100%}.row>div[class*=col-].align-start{align-self:flex-start}.row>div[class*=col-].align-center{align-self:center}.row>div[class*=col-].align-end{align-self:flex-end}.row.align-start{justify-content:flex-start}.row.align-center{justify-content:center}.row.align-end{justify-content:flex-end}.row.space-around{justify-content:space-around}.row.space-between{justify-content:space-between}.gap-sm-0{column-gap:0;row-gap:0}.gap-sm-4{column-gap:4px;row-gap:4px}.gap-sm-8{column-gap:8px;row-gap:8px}.gap-sm-12{column-gap:12px;row-gap:12px}.gap-sm-16{column-gap:16px;row-gap:16px}.gap-sm-20{column-gap:20px;row-gap:20px}.gap-sm-24{column-gap:24px;row-gap:24px}.gap-sm-28{column-gap:28px;row-gap:28px}.gap-sm-32{column-gap:32px;row-gap:32px}.gap-sm-36{column-gap:36px;row-gap:36px}.gap-sm-40{column-gap:40px;row-gap:40px}.gap-sm-44{column-gap:44px;row-gap:44px}.gap-sm-48{column-gap:48px;row-gap:48px}.gap-outside{column-gap:24px;row-gap:24px}.z-index-sm--1{z-index:-1}.z-index-sm--1--force{z-index:-1!important}.z-index-sm-0{z-index:0}.z-index-sm-0--force{z-index:0!important}.z-index-sm-1{z-index:1}.z-index-sm-1--force{z-index:1!important}.z-index-sm-2{z-index:2}.z-index-sm-2--force{z-index:2!important}.z-index-sm-3{z-index:3}.z-index-sm-3--force{z-index:3!important}.z-index-sm-4{z-index:4}.z-index-sm-4--force{z-index:4!important}.z-index-sm-5{z-index:5}.z-index-sm-5--force{z-index:5!important}.z-index-sm-6{z-index:6}.z-index-sm-6--force{z-index:6!important}.z-index-sm-7{z-index:7}.z-index-sm-7--force{z-index:7!important}.z-index-sm-8{z-index:8}.z-index-sm-8--force{z-index:8!important}.z-index-sm-9{z-index:9}.z-index-sm-9--force{z-index:9!important}.z-index-sm-10{z-index:10}.z-index-sm-10--force{z-index:10!important}.z-index-sm-11{z-index:11}.z-index-sm-11--force{z-index:11!important}.z-index-sm-12{z-index:12}.z-index-sm-12--force{z-index:12!important}.z-index-sm-13{z-index:13}.z-index-sm-13--force{z-index:13!important}.z-index-sm-14{z-index:14}.z-index-sm-14--force{z-index:14!important}.z-index-sm-15{z-index:15}.z-index-sm-15--force{z-index:15!important}.z-index-sm-16{z-index:16}.z-index-sm-16--force{z-index:16!important}.z-index-sm-17{z-index:17}.z-index-sm-17--force{z-index:17!important}.z-index-sm-18{z-index:18}.z-index-sm-18--force{z-index:18!important}.z-index-sm-19{z-index:19}.z-index-sm-19--force{z-index:19!important}.z-index-sm-20{z-index:20}.z-index-sm-20--force{z-index:20!important}.z-index-sm-21{z-index:21}.z-index-sm-21--force{z-index:21!important}.z-index-sm-22{z-index:22}.z-index-sm-22--force{z-index:22!important}.z-index-sm-23{z-index:23}.z-index-sm-23--force{z-index:23!important}.z-index-sm-24{z-index:24}.z-index-sm-24--force{z-index:24!important}.order-sm--12{order:-12}.order-sm--12--force{order:-12!important}.order-sm--11{order:-11}.order-sm--11--force{order:-11!important}.order-sm--10{order:-10}.order-sm--10--force{order:-10!important}.order-sm--9{order:-9}.order-sm--9--force{order:-9!important}.order-sm--8{order:-8}.order-sm--8--force{order:-8!important}.order-sm--7{order:-7}.order-sm--7--force{order:-7!important}.order-sm--6{order:-6}.order-sm--6--force{order:-6!important}.order-sm--5{order:-5}.order-sm--5--force{order:-5!important}.order-sm--4{order:-4}.order-sm--4--force{order:-4!important}.order-sm--3{order:-3}.order-sm--3--force{order:-3!important}.order-sm--2{order:-2}.order-sm--2--force{order:-2!important}.order-sm--1{order:-1}.order-sm--1--force{order:-1!important}.order-sm-0{order:0}.order-sm-0--force{order:0!important}.order-sm-1{order:1}.order-sm-1--force{order:1!important}.order-sm-2{order:2}.order-sm-2--force{order:2!important}.order-sm-3{order:3}.order-sm-3--force{order:3!important}.order-sm-4{order:4}.order-sm-4--force{order:4!important}.order-sm-5{order:5}.order-sm-5--force{order:5!important}.order-sm-6{order:6}.order-sm-6--force{order:6!important}.order-sm-7{order:7}.order-sm-7--force{order:7!important}.order-sm-8{order:8}.order-sm-8--force{order:8!important}.order-sm-9{order:9}.order-sm-9--force{order:9!important}.order-sm-10{order:10}.order-sm-10--force{order:10!important}.order-sm-11{order:11}.order-sm-11--force{order:11!important}.order-sm-12{order:12}.order-sm-12--force{order:12!important}.order-sm-inherit{order:inherit}.order-sm-inherit--force{order:inherit!important}.order-sm-initial{order:initial}.order-sm-initial--force{order:initial!important}.place-sm-top{top:0}.place-sm-top--force{top:0!important}.place-sm-right{right:0}.place-sm-right--force{right:0!important}.place-sm-bottom{bottom:0}.place-sm-bottom--force{bottom:0!important}.place-sm-left{left:0}.place-sm-left--force{left:0!important}.position-sm-relative{position:relative}.position-sm-relative--force{position:relative!important}.position-sm-absolute{position:absolute}.position-sm-absolute--force{position:absolute!important}.position-sm-static{position:static}.position-sm-static--force{position:static!important}.position-sm-fixed{position:fixed}.position-sm-fixed--force{position:fixed!important}.d-sm-none{display:none}.d-sm-none--force{display:none!important}.d-sm-inline{display:inline}.d-sm-inline--force{display:inline!important}.d-sm-inline-block{display:inline-block}.d-sm-inline-block--force{display:inline-block!important}.d-sm-block{display:block}.d-sm-block--force{display:block!important}.d-sm-grid--force{display:grid!important}.d-sm-table{display:table}.d-sm-table--force{display:table!important}.d-sm-table-cell{display:table-cell}.d-sm-table-cell--force{display:table-cell!important}.d-sm-table-row{display:table-row}.d-sm-table-row--force{display:table-row!important}.d-sm-inline-flex{display:inline-flex}.d-sm-inline-flex--force{display:inline-flex!important}.d-sm-flex{display:flex}.d-sm-flex--force{display:flex!important}.flex-sm-row{display:flex;flex-direction:row}.flex-sm-row--force{display:flex!important;flex-direction:row!important}.flex-sm-row-reverse{display:flex;flex-direction:row-reverse}.flex-sm-row-reverse--force{display:flex!important;flex-direction:row-reverse!important}.flex-sm-column{display:flex;flex-direction:column}.flex-sm-column--force{display:flex!important;flex-direction:column!important}.flex-sm-column-reverse{display:flex;flex-direction:column-reverse}.flex-sm-column-reverse--force{display:flex!important;flex-direction:column-reverse!important}.flex-sm-nowrap{flex-wrap:nowrap}.flex-sm-nowrap--force{flex-wrap:nowrap!important}.flex-sm-wrap{flex-wrap:wrap}.flex-sm-wrap--force{flex-wrap:wrap!important}.flex-sm-align-center{display:flex;align-items:center}.flex-sm-align-center--force{display:flex!important;align-items:center!important}.flex-sm-align-start{display:flex;align-items:flex-start}.flex-sm-align-start--force{display:flex!important;align-items:flex-start!important}.flex-sm-align-end{display:flex;align-items:flex-end}.flex-sm-align-end--force{display:flex!important;align-items:flex-end!important}.flex-sm-align-inherit{display:flex;align-items:inherit}.flex-sm-align-inherit--force{display:flex!important;align-items:inherit!important}.flex-sm-align-initial{display:flex;align-items:initial}.flex-sm-align-initial--force{display:flex!important;align-items:initial!important}.flex-sm-align-self-end{display:flex;align-self:flex-end}.flex-sm-align-self-end--force{display:flex!important;align-self:flex-end!important}.flex-sm-align-self-start{display:flex;align-self:flex-start}.flex-sm-align-self-start--force{display:flex!important;align-self:flex-start!important}.flex-sm-align-self-inherit{display:flex;align-self:inherit}.flex-sm-align-self-inherit--force{display:flex!important;align-self:inherit!important}.flex-sm-align-self-initial{display:flex;align-self:initial}.flex-sm-align-self-initial--force{display:flex!important;align-self:initial!important}.flex-sm-center-center{display:flex;justify-content:center;align-items:center}.flex-sm-center-center--force{display:flex!important;justify-content:center!important;align-items:center!important}.flex-sm-center,.flex-sm-justify-center{display:flex;justify-content:center}.flex-sm-center--force,.flex-sm-justify-center--force{display:flex!important;justify-content:center!important}.flex-sm-end,.flex-sm-justify-end{display:flex;justify-content:flex-end}.flex-sm-end--force,.flex-sm-justify-end--force{display:flex!important;justify-content:flex-end!important}.flex-sm-justify-start,.flex-sm-start{display:flex;justify-content:flex-start}.flex-sm-justify-start--force,.flex-sm-start--force{display:flex!important;justify-content:flex-start!important}.flex-sm-inherit,.flex-sm-justify-inherit{display:flex;justify-content:inherit}.flex-sm-inherit--force,.flex-sm-justify-inherit--force{display:flex!important;justify-content:inherit!important}.flex-sm-initial,.flex-sm-justify-initial{display:flex;justify-content:initial}.flex-sm-initial--force,.flex-sm-justify-initial--force{display:flex!important;justify-content:initial!important}.flex-sm-left{display:flex;justify-content:left}.flex-sm-left--force{display:flex!important;justify-content:left!important}.flex-sm-right{display:flex;justify-content:right}.flex-sm-right--force{display:flex!important;justify-content:right!important}.flex-sm-normal{display:flex;justify-content:normal}.flex-sm-normal--force{display:flex!important;justify-content:normal!important}.flex-sm-revert{display:flex;justify-content:revert}.flex-sm-revert--force{display:flex!important;justify-content:revert!important}.flex-sm-around,.flex-sm-space-around{display:flex;justify-content:space-around}.flex-sm-around--force,.flex-sm-space-around--force{display:flex!important;justify-content:space-around!important}.flex-sm-between,.flex-sm-space-between{display:flex;justify-content:space-between}.flex-sm-between--force,.flex-sm-space-between--force{display:flex!important;justify-content:space-between!important}.flex-sm-evenly,.flex-sm-space-evenly{display:flex;justify-content:space-evenly}.flex-sm-evenly--force,.flex-sm-space-evenly--force{display:flex!important;justify-content:space-evenly!important}.flex-sm-stretch{display:flex;justify-content:stretch}.flex-sm-stretch--force{display:flex!important;justify-content:stretch!important}.flex-sm-unset{display:flex;justify-content:unset}.flex-sm-unset--force{display:flex!important;justify-content:unset!important}.flex-sm-grow-0{flex-grow:0}.flex-sm-shrink-0{flex-shrink:0}.flex-sm-grow-1{flex-grow:1}.flex-sm-shrink-1{flex-shrink:1}.flex-sm-grow-2{flex-grow:2}.flex-sm-shrink-2{flex-shrink:2}.flex-sm-grow-3{flex-grow:3}.flex-sm-shrink-3{flex-shrink:3}.flex-sm-full{flex-grow:1;flex-shrink:1;flex-basis:100%}.fw-sm-100{font-weight:100}.fw-sm-100--force{font-weight:100!important}.fw-sm-200{font-weight:200}.fw-sm-200--force{font-weight:200!important}.fw-sm-300{font-weight:300}.fw-sm-300--force{font-weight:300!important}.fw-sm-400{font-weight:400}.fw-sm-400--force{font-weight:400!important}.fw-sm-500{font-weight:500}.fw-sm-500--force{font-weight:500!important}.fw-sm-600{font-weight:600}.fw-sm-600--force{font-weight:600!important}.fw-sm-700{font-weight:700}.fw-sm-700--force{font-weight:700!important}.fw-sm-800{font-weight:800}.fw-sm-800--force{font-weight:800!important}.fw-sm-900{font-weight:900}.fw-sm-900--force{font-weight:900!important}.fs-sm-0{font-size:0px}.fs-sm-0--force{font-size:0px!important}.fs-sm-1{font-size:1px}.fs-sm-1--force{font-size:1px!important}.fs-sm-2{font-size:2px}.fs-sm-2--force{font-size:2px!important}.fs-sm-3{font-size:3px}.fs-sm-3--force{font-size:3px!important}.fs-sm-4{font-size:4px}.fs-sm-4--force{font-size:4px!important}.fs-sm-5{font-size:5px}.fs-sm-5--force{font-size:5px!important}.fs-sm-6{font-size:6px}.fs-sm-6--force{font-size:6px!important}.fs-sm-7{font-size:7px}.fs-sm-7--force{font-size:7px!important}.fs-sm-8{font-size:8px}.fs-sm-8--force{font-size:8px!important}.fs-sm-9{font-size:9px}.fs-sm-9--force{font-size:9px!important}.fs-sm-10{font-size:10px}.fs-sm-10--force{font-size:10px!important}.fs-sm-11{font-size:11px}.fs-sm-11--force{font-size:11px!important}.fs-sm-12{font-size:12px}.fs-sm-12--force{font-size:12px!important}.fs-sm-13{font-size:13px}.fs-sm-13--force{font-size:13px!important}.fs-sm-14{font-size:14px}.fs-sm-14--force{font-size:14px!important}.fs-sm-15{font-size:15px}.fs-sm-15--force{font-size:15px!important}.fs-sm-16{font-size:16px}.fs-sm-16--force{font-size:16px!important}.fs-sm-17{font-size:17px}.fs-sm-17--force{font-size:17px!important}.fs-sm-18{font-size:18px}.fs-sm-18--force{font-size:18px!important}.fs-sm-19{font-size:19px}.fs-sm-19--force{font-size:19px!important}.fs-sm-20{font-size:20px}.fs-sm-20--force{font-size:20px!important}.fs-sm-21{font-size:21px}.fs-sm-21--force{font-size:21px!important}.fs-sm-22{font-size:22px}.fs-sm-22--force{font-size:22px!important}.fs-sm-23{font-size:23px}.fs-sm-23--force{font-size:23px!important}.fs-sm-24{font-size:24px}.fs-sm-24--force{font-size:24px!important}.fs-sm-25{font-size:25px}.fs-sm-25--force{font-size:25px!important}.fs-sm-26{font-size:26px}.fs-sm-26--force{font-size:26px!important}.fs-sm-27{font-size:27px}.fs-sm-27--force{font-size:27px!important}.fs-sm-28{font-size:28px}.fs-sm-28--force{font-size:28px!important}.fs-sm-29{font-size:29px}.fs-sm-29--force{font-size:29px!important}.fs-sm-30{font-size:30px}.fs-sm-30--force{font-size:30px!important}.fs-sm-31{font-size:31px}.fs-sm-31--force{font-size:31px!important}.fs-sm-32{font-size:32px}.fs-sm-32--force{font-size:32px!important}.fs-sm-33{font-size:33px}.fs-sm-33--force{font-size:33px!important}.fs-sm-34{font-size:34px}.fs-sm-34--force{font-size:34px!important}.fs-sm-35{font-size:35px}.fs-sm-35--force{font-size:35px!important}.fs-sm-36{font-size:36px}.fs-sm-36--force{font-size:36px!important}.fs-sm-37{font-size:37px}.fs-sm-37--force{font-size:37px!important}.fs-sm-38{font-size:38px}.fs-sm-38--force{font-size:38px!important}.fs-sm-39{font-size:39px}.fs-sm-39--force{font-size:39px!important}.fs-sm-40{font-size:40px}.fs-sm-40--force{font-size:40px!important}.fs-sm-41{font-size:41px}.fs-sm-41--force{font-size:41px!important}.fs-sm-42{font-size:42px}.fs-sm-42--force{font-size:42px!important}.fs-sm-43{font-size:43px}.fs-sm-43--force{font-size:43px!important}.fs-sm-44{font-size:44px}.fs-sm-44--force{font-size:44px!important}.fs-sm-45{font-size:45px}.fs-sm-45--force{font-size:45px!important}.fs-sm-46{font-size:46px}.fs-sm-46--force{font-size:46px!important}.fs-sm-47{font-size:47px}.fs-sm-47--force{font-size:47px!important}.fs-sm-48{font-size:48px}.fs-sm-48--force{font-size:48px!important}.fs-sm-49{font-size:49px}.fs-sm-49--force{font-size:49px!important}.fs-sm-50{font-size:50px}.fs-sm-50--force{font-size:50px!important}.fs-sm-51{font-size:51px}.fs-sm-51--force{font-size:51px!important}.fs-sm-52{font-size:52px}.fs-sm-52--force{font-size:52px!important}.fs-sm-53{font-size:53px}.fs-sm-53--force{font-size:53px!important}.fs-sm-54{font-size:54px}.fs-sm-54--force{font-size:54px!important}.fs-sm-55{font-size:55px}.fs-sm-55--force{font-size:55px!important}.fs-sm-56{font-size:56px}.fs-sm-56--force{font-size:56px!important}.fs-sm-57{font-size:57px}.fs-sm-57--force{font-size:57px!important}.fs-sm-58{font-size:58px}.fs-sm-58--force{font-size:58px!important}.fs-sm-59{font-size:59px}.fs-sm-59--force{font-size:59px!important}.fs-sm-60{font-size:60px}.fs-sm-60--force{font-size:60px!important}.fs-sm-61{font-size:61px}.fs-sm-61--force{font-size:61px!important}.fs-sm-62{font-size:62px}.fs-sm-62--force{font-size:62px!important}.fs-sm-63{font-size:63px}.fs-sm-63--force{font-size:63px!important}.fs-sm-64{font-size:64px}.fs-sm-64--force{font-size:64px!important}.fs-sm-65{font-size:65px}.fs-sm-65--force{font-size:65px!important}.fs-sm-66{font-size:66px}.fs-sm-66--force{font-size:66px!important}.fs-sm-67{font-size:67px}.fs-sm-67--force{font-size:67px!important}.fs-sm-68{font-size:68px}.fs-sm-68--force{font-size:68px!important}.fs-sm-69{font-size:69px}.fs-sm-69--force{font-size:69px!important}.fs-sm-70{font-size:70px}.fs-sm-70--force{font-size:70px!important}.fs-sm-71{font-size:71px}.fs-sm-71--force{font-size:71px!important}.fs-sm-72{font-size:72px}.fs-sm-72--force{font-size:72px!important}.fs-sm-73{font-size:73px}.fs-sm-73--force{font-size:73px!important}.fs-sm-74{font-size:74px}.fs-sm-74--force{font-size:74px!important}.fs-sm-75{font-size:75px}.fs-sm-75--force{font-size:75px!important}.fs-sm-76{font-size:76px}.fs-sm-76--force{font-size:76px!important}.fs-sm-77{font-size:77px}.fs-sm-77--force{font-size:77px!important}.fs-sm-78{font-size:78px}.fs-sm-78--force{font-size:78px!important}.fs-sm-79{font-size:79px}.fs-sm-79--force{font-size:79px!important}.fs-sm-80{font-size:80px}.fs-sm-80--force{font-size:80px!important}.fs-sm-81{font-size:81px}.fs-sm-81--force{font-size:81px!important}.fs-sm-82{font-size:82px}.fs-sm-82--force{font-size:82px!important}.fs-sm-83{font-size:83px}.fs-sm-83--force{font-size:83px!important}.fs-sm-84{font-size:84px}.fs-sm-84--force{font-size:84px!important}.fs-sm-85{font-size:85px}.fs-sm-85--force{font-size:85px!important}.fs-sm-86{font-size:86px}.fs-sm-86--force{font-size:86px!important}.fs-sm-87{font-size:87px}.fs-sm-87--force{font-size:87px!important}.fs-sm-88{font-size:88px}.fs-sm-88--force{font-size:88px!important}.fs-sm-89{font-size:89px}.fs-sm-89--force{font-size:89px!important}.fs-sm-90{font-size:90px}.fs-sm-90--force{font-size:90px!important}.fs-sm-91{font-size:91px}.fs-sm-91--force{font-size:91px!important}.fs-sm-92{font-size:92px}.fs-sm-92--force{font-size:92px!important}.fs-sm-93{font-size:93px}.fs-sm-93--force{font-size:93px!important}.fs-sm-94{font-size:94px}.fs-sm-94--force{font-size:94px!important}.fs-sm-95{font-size:95px}.fs-sm-95--force{font-size:95px!important}.fs-sm-96{font-size:96px}.fs-sm-96--force{font-size:96px!important}.ls-sm-0{letter-spacing:0}.ls-sm-0--force{letter-spacing:0!important}.ls-sm-1{letter-spacing:.1em}.ls-sm-1--force{letter-spacing:.1em!important}.ls-sm-2{letter-spacing:.2em}.ls-sm-2--force{letter-spacing:.2em!important}.ls-sm-3{letter-spacing:.3em}.ls-sm-3--force{letter-spacing:.3em!important}.ls-sm-4{letter-spacing:.4em}.ls-sm-4--force{letter-spacing:.4em!important}.ls-sm-5{letter-spacing:.5em}.ls-sm-5--force{letter-spacing:.5em!important}.ls-sm-6{letter-spacing:.6em}.ls-sm-6--force{letter-spacing:.6em!important}.ls-sm-7{letter-spacing:.7em}.ls-sm-7--force{letter-spacing:.7em!important}.ls-sm-8{letter-spacing:.8em}.ls-sm-8--force{letter-spacing:.8em!important}.ls-sm-9{letter-spacing:.9em}.ls-sm-9--force{letter-spacing:.9em!important}.ls-sm-10{letter-spacing:1em}.ls-sm-10--force{letter-spacing:1em!important}.ls-sm-11{letter-spacing:1.1em}.ls-sm-11--force{letter-spacing:1.1em!important}.ls-sm-12{letter-spacing:1.2em}.ls-sm-12--force{letter-spacing:1.2em!important}.ls-sm-13{letter-spacing:1.3em}.ls-sm-13--force{letter-spacing:1.3em!important}.ls-sm-14{letter-spacing:1.4em}.ls-sm-14--force{letter-spacing:1.4em!important}.ls-sm-15{letter-spacing:1.5em}.ls-sm-15--force{letter-spacing:1.5em!important}.ls-sm-16{letter-spacing:1.6em}.ls-sm-16--force{letter-spacing:1.6em!important}.ls-sm-17{letter-spacing:1.7em}.ls-sm-17--force{letter-spacing:1.7em!important}.ls-sm-18{letter-spacing:1.8em}.ls-sm-18--force{letter-spacing:1.8em!important}.lh-sm-0{line-height:0}.lh-sm-0--force{line-height:0!important}.lh-sm-1{line-height:1px}.lh-sm-1--force{line-height:1px!important}.lh-sm-2{line-height:2px}.lh-sm-2--force{line-height:2px!important}.lh-sm-3{line-height:3px}.lh-sm-3--force{line-height:3px!important}.lh-sm-4{line-height:4px}.lh-sm-4--force{line-height:4px!important}.lh-sm-5{line-height:5px}.lh-sm-5--force{line-height:5px!important}.lh-sm-6{line-height:6px}.lh-sm-6--force{line-height:6px!important}.lh-sm-7{line-height:7px}.lh-sm-7--force{line-height:7px!important}.lh-sm-8{line-height:8px}.lh-sm-8--force{line-height:8px!important}.lh-sm-9{line-height:9px}.lh-sm-9--force{line-height:9px!important}.lh-sm-10{line-height:10px}.lh-sm-10--force{line-height:10px!important}.lh-sm-11{line-height:11px}.lh-sm-11--force{line-height:11px!important}.lh-sm-12{line-height:12px}.lh-sm-12--force{line-height:12px!important}.lh-sm-13{line-height:13px}.lh-sm-13--force{line-height:13px!important}.lh-sm-14{line-height:14px}.lh-sm-14--force{line-height:14px!important}.lh-sm-15{line-height:15px}.lh-sm-15--force{line-height:15px!important}.lh-sm-16{line-height:16px}.lh-sm-16--force{line-height:16px!important}.lh-sm-17{line-height:17px}.lh-sm-17--force{line-height:17px!important}.lh-sm-18{line-height:18px}.lh-sm-18--force{line-height:18px!important}.lh-sm-19{line-height:19px}.lh-sm-19--force{line-height:19px!important}.lh-sm-20{line-height:20px}.lh-sm-20--force{line-height:20px!important}.lh-sm-21{line-height:21px}.lh-sm-21--force{line-height:21px!important}.lh-sm-22{line-height:22px}.lh-sm-22--force{line-height:22px!important}.lh-sm-23{line-height:23px}.lh-sm-23--force{line-height:23px!important}.lh-sm-24{line-height:24px}.lh-sm-24--force{line-height:24px!important}.lh-sm-25{line-height:25px}.lh-sm-25--force{line-height:25px!important}.lh-sm-26{line-height:26px}.lh-sm-26--force{line-height:26px!important}.lh-sm-27{line-height:27px}.lh-sm-27--force{line-height:27px!important}.lh-sm-28{line-height:28px}.lh-sm-28--force{line-height:28px!important}.lh-sm-29{line-height:29px}.lh-sm-29--force{line-height:29px!important}.lh-sm-30{line-height:30px}.lh-sm-30--force{line-height:30px!important}.lh-sm-31{line-height:31px}.lh-sm-31--force{line-height:31px!important}.lh-sm-32{line-height:32px}.lh-sm-32--force{line-height:32px!important}.lh-sm-33{line-height:33px}.lh-sm-33--force{line-height:33px!important}.lh-sm-34{line-height:34px}.lh-sm-34--force{line-height:34px!important}.lh-sm-35{line-height:35px}.lh-sm-35--force{line-height:35px!important}.lh-sm-36{line-height:36px}.lh-sm-36--force{line-height:36px!important}.lh-sm-37{line-height:37px}.lh-sm-37--force{line-height:37px!important}.lh-sm-38{line-height:38px}.lh-sm-38--force{line-height:38px!important}.lh-sm-39{line-height:39px}.lh-sm-39--force{line-height:39px!important}.lh-sm-40{line-height:40px}.lh-sm-40--force{line-height:40px!important}.lh-sm-41{line-height:41px}.lh-sm-41--force{line-height:41px!important}.lh-sm-42{line-height:42px}.lh-sm-42--force{line-height:42px!important}.lh-sm-43{line-height:43px}.lh-sm-43--force{line-height:43px!important}.lh-sm-44{line-height:44px}.lh-sm-44--force{line-height:44px!important}.lh-sm-45{line-height:45px}.lh-sm-45--force{line-height:45px!important}.lh-sm-46{line-height:46px}.lh-sm-46--force{line-height:46px!important}.lh-sm-47{line-height:47px}.lh-sm-47--force{line-height:47px!important}.lh-sm-48{line-height:48px}.lh-sm-48--force{line-height:48px!important}.lh-sm-49{line-height:49px}.lh-sm-49--force{line-height:49px!important}.lh-sm-50{line-height:50px}.lh-sm-50--force{line-height:50px!important}.lh-sm-51{line-height:51px}.lh-sm-51--force{line-height:51px!important}.lh-sm-52{line-height:52px}.lh-sm-52--force{line-height:52px!important}.lh-sm-53{line-height:53px}.lh-sm-53--force{line-height:53px!important}.lh-sm-54{line-height:54px}.lh-sm-54--force{line-height:54px!important}.lh-sm-55{line-height:55px}.lh-sm-55--force{line-height:55px!important}.lh-sm-56{line-height:56px}.lh-sm-56--force{line-height:56px!important}.lh-sm-57{line-height:57px}.lh-sm-57--force{line-height:57px!important}.lh-sm-58{line-height:58px}.lh-sm-58--force{line-height:58px!important}.lh-sm-59{line-height:59px}.lh-sm-59--force{line-height:59px!important}.lh-sm-60{line-height:60px}.lh-sm-60--force{line-height:60px!important}.lh-sm-61{line-height:61px}.lh-sm-61--force{line-height:61px!important}.lh-sm-62{line-height:62px}.lh-sm-62--force{line-height:62px!important}.lh-sm-63{line-height:63px}.lh-sm-63--force{line-height:63px!important}.lh-sm-64{line-height:64px}.lh-sm-64--force{line-height:64px!important}.lh-sm-65{line-height:65px}.lh-sm-65--force{line-height:65px!important}.lh-sm-66{line-height:66px}.lh-sm-66--force{line-height:66px!important}.lh-sm-67{line-height:67px}.lh-sm-67--force{line-height:67px!important}.lh-sm-68{line-height:68px}.lh-sm-68--force{line-height:68px!important}.lh-sm-69{line-height:69px}.lh-sm-69--force{line-height:69px!important}.lh-sm-70{line-height:70px}.lh-sm-70--force{line-height:70px!important}.lh-sm-71{line-height:71px}.lh-sm-71--force{line-height:71px!important}.lh-sm-72{line-height:72px}.lh-sm-72--force{line-height:72px!important}.lh-sm-73{line-height:73px}.lh-sm-73--force{line-height:73px!important}.lh-sm-74{line-height:74px}.lh-sm-74--force{line-height:74px!important}.lh-sm-75{line-height:75px}.lh-sm-75--force{line-height:75px!important}.lh-sm-76{line-height:76px}.lh-sm-76--force{line-height:76px!important}.lh-sm-77{line-height:77px}.lh-sm-77--force{line-height:77px!important}.lh-sm-78{line-height:78px}.lh-sm-78--force{line-height:78px!important}.lh-sm-79{line-height:79px}.lh-sm-79--force{line-height:79px!important}.lh-sm-80{line-height:80px}.lh-sm-80--force{line-height:80px!important}.lh-sm-81{line-height:81px}.lh-sm-81--force{line-height:81px!important}.lh-sm-82{line-height:82px}.lh-sm-82--force{line-height:82px!important}.lh-sm-83{line-height:83px}.lh-sm-83--force{line-height:83px!important}.lh-sm-84{line-height:84px}.lh-sm-84--force{line-height:84px!important}.lh-sm-85{line-height:85px}.lh-sm-85--force{line-height:85px!important}.lh-sm-86{line-height:86px}.lh-sm-86--force{line-height:86px!important}.lh-sm-87{line-height:87px}.lh-sm-87--force{line-height:87px!important}.lh-sm-88{line-height:88px}.lh-sm-88--force{line-height:88px!important}.lh-sm-89{line-height:89px}.lh-sm-89--force{line-height:89px!important}.lh-sm-90{line-height:90px}.lh-sm-90--force{line-height:90px!important}.lh-sm-91{line-height:91px}.lh-sm-91--force{line-height:91px!important}.lh-sm-92{line-height:92px}.lh-sm-92--force{line-height:92px!important}.lh-sm-93{line-height:93px}.lh-sm-93--force{line-height:93px!important}.lh-sm-94{line-height:94px}.lh-sm-94--force{line-height:94px!important}.lh-sm-95{line-height:95px}.lh-sm-95--force{line-height:95px!important}.lh-sm-96{line-height:96px}.lh-sm-96--force{line-height:96px!important}.lh-sm-97{line-height:97px}.lh-sm-97--force{line-height:97px!important}.lh-sm-98{line-height:98px}.lh-sm-98--force{line-height:98px!important}.lh-sm-99{line-height:99px}.lh-sm-99--force{line-height:99px!important}.lh-sm-100{line-height:100px}.lh-sm-100--force{line-height:100px!important}.aspect-ratio-sm-auto{aspect-ratio:auto}.aspect-ratio-sm-auto--force{aspect-ratio:auto!important}.aspect-ratio-sm-1x1{aspect-ratio:1/1}.aspect-ratio-sm-1x1--force{aspect-ratio:1/1!important}.aspect-ratio-sm-1x2{aspect-ratio:1/2}.aspect-ratio-sm-1x2--force{aspect-ratio:1/2!important}.aspect-ratio-sm-2x1{aspect-ratio:2/1}.aspect-ratio-sm-2x1--force{aspect-ratio:2/1!important}.aspect-ratio-sm-3x4{aspect-ratio:3/4}.aspect-ratio-sm-3x4--force{aspect-ratio:3/4!important}.aspect-ratio-sm-4x3{aspect-ratio:4/3}.aspect-ratio-sm-4x3--force{aspect-ratio:4/3!important}.aspect-ratio-sm-9x16{aspect-ratio:9/16}.aspect-ratio-sm-9x16--force{aspect-ratio:9/16!important}.aspect-ratio-sm-16x9{aspect-ratio:16/9}.aspect-ratio-sm-16x9--force{aspect-ratio:16/9!important}.aspect-ratio-sm-half{aspect-ratio:0.5}.aspect-ratio-sm-half--force{aspect-ratio:0.5!important}.aspect-ratio-sm-inherit{aspect-ratio:inherit}.aspect-ratio-sm-inherit--force{aspect-ratio:inherit!important}.aspect-ratio-sm-initial{aspect-ratio:initial}.aspect-ratio-sm-initial--force{aspect-ratio:initial!important}.aspect-ratio-sm-unset{aspect-ratio:unset}.aspect-ratio-sm-unset--force{aspect-ratio:unset!important}.cursor-pointer-sm{cursor:pointer}.cursor-pointer-sm--force{cursor:pointer!important}.cursor-default-sm{cursor:default}.cursor-default-sm--force{cursor:default!important}.cursor-grab-sm{cursor:grab}.cursor-grab-sm--force{cursor:grab!important}.cursor-grabbing-sm{cursor:grabbing}.cursor-grabbing-sm--force{cursor:grabbing!important}.cursor-move-sm{cursor:move}.cursor-move-sm--force{cursor:move!important}.cursor-help-sm{cursor:help}.cursor-help-sm--force{cursor:help!important}.cursor-wait-sm{cursor:wait}.cursor-wait-sm--force{cursor:wait!important}.opacity-sm-0{opacity:0}.opacity-sm-0--force{opacity:0!important}.opacity-sm-01{opacity:.1}.opacity-sm-01--force{opacity:.1!important}.opacity-sm-02{opacity:.2}.opacity-sm-02--force{opacity:.2!important}.opacity-sm-03{opacity:.3}.opacity-sm-03--force{opacity:.3!important}.opacity-sm-04{opacity:.4}.opacity-sm-04--force{opacity:.4!important}.opacity-sm-05{opacity:.5}.opacity-sm-05--force{opacity:.5!important}.opacity-sm-06{opacity:.6}.opacity-sm-06--force{opacity:.6!important}.opacity-sm-07{opacity:.7}.opacity-sm-07--force{opacity:.7!important}.opacity-sm-08{opacity:.8}.opacity-sm-08--force{opacity:.8!important}.opacity-sm-09{opacity:.9}.opacity-sm-09--force{opacity:.9!important}.opacity-sm-10{opacity:1}.opacity-sm-10--force{opacity:1!important}.opacity-sm-1{opacity:1}.opacity-sm-1--force{opacity:1!important}.text-sm-decoration-strike,.text-sm-line-through,.text-sm-strike{text-decoration:line-through}.text-sm-decoration-strike--force,.text-sm-line-through--force,.text-sm-strike--force{text-decoration:line-through!important}.text-sm-decoration-none,.text-sm-none{text-decoration:none}.text-sm-decoration-none--force,.text-sm-none--force{text-decoration:none!important}.text-sm-super{vertical-align:super}.text-sm-super--force{vertical-align:super!important}.text-sm-sub{vertical-align:sub}.text-sm-sub--force{vertical-align:sub!important}.text-sm-capitalize{text-transform:capitalize}.text-sm-capitalize--force{text-transform:capitalize!important}.text-sm-lowercase{text-transform:lowercase}.text-sm-lowercase--force{text-transform:lowercase!important}.text-sm-uppercase{text-transform:uppercase}.text-sm-uppercase--force{text-transform:uppercase!important}.text-sm-nowrap{white-space:nowrap}.text-sm-left{text-align:left}.text-sm-left--force{text-align:left!important}.text-sm-center{text-align:center}.text-sm-center--force{text-align:center!important}.text-sm-right{text-align:right}.text-sm-right--force{text-align:right!important}.text-sm-boxed{border-radius:2px;padding:4px 8px;margin:0 8px;font-size:11px;font-weight:600;white-space:nowrap}.text-sm-ellipsis,.text-sm-truncate{display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.overflow-sm-auto{overflow:auto}.overflow-sm-auto--force{overflow:auto!important}.overflow-sm-scroll{overflow:scroll}.overflow-sm-scroll--force{overflow:scroll!important}.overflow-sm-hidden{overflow:hidden}.overflow-sm-hidden--force{overflow:hidden!important}.overflow-sm-overlay{overflow:overlay}.overflow-sm-overlay--force{overflow:overlay!important}.overflow-x-sm-auto{overflow-x:auto}.overflow-x-sm-auto--force{overflow-x:auto!important}.overflow-x-sm-scroll{overflow-x:scroll}.overflow-x-sm-scroll--force{overflow-x:scroll!important}.overflow-x-sm-hidden{overflow-x:hidden}.overflow-x-sm-hidden--force{overflow-x:hidden!important}.overflow-x-sm-overlay{overflow-x:overlay}.overflow-x-sm-overlay--force{overflow-x:overlay!important}.overflow-y-sm-auto{overflow-y:auto}.overflow-y-sm-auto--force{overflow-y:auto!important}.overflow-y-sm-scroll{overflow-y:scroll}.overflow-y-sm-scroll--force{overflow-y:scroll!important}.overflow-y-sm-hidden{overflow-y:hidden}.overflow-y-sm-hidden--force{overflow-y:hidden!important}.overflow-y-sm-overlay{overflow-y:overlay}.overflow-y-sm-overlay--force{overflow-y:overlay!important}.b-sm-0,.border-sm-0{border:0 solid}.bb-sm-0,.border-bottom-sm-0{border-bottom:0 solid}.bb-sm-0--force,.border-bottom-sm-0--force{border-bottom:0 solid!important}.border-top-sm-0,.bt-sm-0{border-top:0 solid}.border-top-sm-0--force,.bt-sm-0--force{border-top:0 solid!important}.bl-sm-0,.border-left-sm-0{border-left:0 solid}.bl-sm-0--force,.border-left-sm-0--force{border-left:0 solid!important}.border-right-sm-0,.br-sm-0{border-right:0px solid}.border-right-sm-0--force,.br-sm-0--force{border-right:0px solid!important}.b-sm-2,.border-sm-2{border:2px solid}.bb-sm-2,.border-bottom-sm-2{border-bottom:2px solid}.bb-sm-2--force,.border-bottom-sm-2--force{border-bottom:2px solid!important}.border-top-sm-2,.bt-sm-2{border-top:2px solid}.border-top-sm-2--force,.bt-sm-2--force{border-top:2px solid!important}.bl-sm-2,.border-left-sm-2{border-left:2px solid}.bl-sm-2--force,.border-left-sm-2--force{border-left:2px solid!important}.border-right-sm-2,.br-sm-2{border-right:2px solid}.border-right-sm-2--force,.br-sm-2--force{border-right:2px solid!important}.b-sm-4,.border-sm-4{border:4px solid}.bb-sm-4,.border-bottom-sm-4{border-bottom:4px solid}.bb-sm-4--force,.border-bottom-sm-4--force{border-bottom:4px solid!important}.border-top-sm-4,.bt-sm-4{border-top:4px solid}.border-top-sm-4--force,.bt-sm-4--force{border-top:4px solid!important}.bl-sm-4,.border-left-sm-4{border-left:4px solid}.bl-sm-4--force,.border-left-sm-4--force{border-left:4px solid!important}.border-right-sm-4,.br-sm-4{border-right:4px solid}.border-right-sm-4--force,.br-sm-4--force{border-right:4px solid!important}.b-sm-6,.border-sm-6{border:6px solid}.bb-sm-6,.border-bottom-sm-6{border-bottom:6px solid}.bb-sm-6--force,.border-bottom-sm-6--force{border-bottom:6px solid!important}.border-top-sm-6,.bt-sm-6{border-top:6px solid}.border-top-sm-6--force,.bt-sm-6--force{border-top:6px solid!important}.bl-sm-6,.border-left-sm-6{border-left:6px solid}.bl-sm-6--force,.border-left-sm-6--force{border-left:6px solid!important}.border-right-sm-6,.br-sm-6{border-right:6px solid}.border-right-sm-6--force,.br-sm-6--force{border-right:6px solid!important}.b-sm-8,.border-sm-8{border:8px solid}.bb-sm-8,.border-bottom-sm-8{border-bottom:8px solid}.bb-sm-8--force,.border-bottom-sm-8--force{border-bottom:8px solid!important}.border-top-sm-8,.bt-sm-8{border-top:8px solid}.border-top-sm-8--force,.bt-sm-8--force{border-top:8px solid!important}.bl-sm-8,.border-left-sm-8{border-left:8px solid}.bl-sm-8--force,.border-left-sm-8--force{border-left:8px solid!important}.border-right-sm-8,.br-sm-8{border-right:8px solid}.border-right-sm-8--force,.br-sm-8--force{border-right:8px solid!important}.b-sm-none,.border-sm-none{border:none}.b-sm-none--force,.border-sm-none--force{border:none!important}.border-style-sm-solid{border-style:solid}.border-style-sm-solid--force{border-style:solid!important}.border-style-sm-dashed{border-style:dashed}.border-style-sm-dashed--force{border-style:dashed!important}.border-style-sm-dotted{border-style:dotted}.border-style-sm-dotted--force{border-style:dotted!important}.border-style-sm-double{border-style:double}.border-style-sm-double--force{border-style:double!important}.border-style-sm-groove{border-style:groove}.border-style-sm-groove--force{border-style:groove!important}.border-style-sm-ridge{border-style:ridge}.border-style-sm-ridge--force{border-style:ridge!important}.border-style-sm-inset{border-style:inset}.border-style-sm-inset--force{border-style:inset!important}.border-style-sm-outset{border-style:outset}.border-style-sm-outset--force{border-style:outset!important}.border-style-sm-none{border-style:none}.border-style-sm-none--force{border-style:none!important}.radius-bottom-sm-0,.radius-left-sm-0,.radius-right-sm-0,.radius-sm-0,.radius-sm-none,.radius-top-sm-0{border-radius:0}.radius-bottom-sm-0--force,.radius-left-sm-0--force,.radius-right-sm-0--force,.radius-sm-none--force,.radius-top-sm-0--force{border-radius:0!important}.radius-sm-2{border-radius:2px}.radius-bottom-sm-2{border-radius:0 0 2px 2px}.radius-bottom-sm-2--force{border-radius:0 0 2px 2px!important}.radius-top-sm-2{border-radius:2px 2px 0 0}.radius-top-sm-2--force{border-radius:2px 2px 0 0!important}.radius-left-sm-2{border-radius:2px 0 0 2px}.radius-left-sm-2--force{border-radius:2px 0 0 2px!important}.radius-right-sm-2{border-radius:0 2px 2px 0}.radius-right-sm-2--force{border-radius:0 2px 2px 0!important}.radius-sm-4{border-radius:4px}.radius-bottom-sm-4{border-radius:0 0 4px 4px}.radius-bottom-sm-4--force{border-radius:0 0 4px 4px!important}.radius-top-sm-4{border-radius:4px 4px 0 0}.radius-top-sm-4--force{border-radius:4px 4px 0 0!important}.radius-left-sm-4{border-radius:4px 0 0 4px}.radius-left-sm-4--force{border-radius:4px 0 0 4px!important}.radius-right-sm-4{border-radius:0 4px 4px 0}.radius-right-sm-4--force{border-radius:0 4px 4px 0!important}.radius-sm-6{border-radius:6px}.radius-bottom-sm-6{border-radius:0 0 6px 6px}.radius-bottom-sm-6--force{border-radius:0 0 6px 6px!important}.radius-top-sm-6{border-radius:6px 6px 0 0}.radius-top-sm-6--force{border-radius:6px 6px 0 0!important}.radius-left-sm-6{border-radius:6px 0 0 6px}.radius-left-sm-6--force{border-radius:6px 0 0 6px!important}.radius-right-sm-6{border-radius:0 6px 6px 0}.radius-right-sm-6--force{border-radius:0 6px 6px 0!important}.radius-sm-8{border-radius:8px}.radius-bottom-sm-8{border-radius:0 0 8px 8px}.radius-bottom-sm-8--force{border-radius:0 0 8px 8px!important}.radius-top-sm-8{border-radius:8px 8px 0 0}.radius-top-sm-8--force{border-radius:8px 8px 0 0!important}.radius-left-sm-8{border-radius:8px 0 0 8px}.radius-left-sm-8--force{border-radius:8px 0 0 8px!important}.radius-right-sm-8{border-radius:0 8px 8px 0}.radius-right-sm-8--force{border-radius:0 8px 8px 0!important}.radius-sm-10{border-radius:10px}.radius-bottom-sm-10{border-radius:0 0 10px 10px}.radius-bottom-sm-10--force{border-radius:0 0 10px 10px!important}.radius-top-sm-10{border-radius:10px 10px 0 0}.radius-top-sm-10--force{border-radius:10px 10px 0 0!important}.radius-left-sm-10{border-radius:10px 0 0 10px}.radius-left-sm-10--force{border-radius:10px 0 0 10px!important}.radius-right-sm-10{border-radius:0 10px 10px 0}.radius-right-sm-10--force{border-radius:0 10px 10px 0!important}.radius-sm-12{border-radius:12px}.radius-bottom-sm-12{border-radius:0 0 12px 12px}.radius-bottom-sm-12--force{border-radius:0 0 12px 12px!important}.radius-top-sm-12{border-radius:12px 12px 0 0}.radius-top-sm-12--force{border-radius:12px 12px 0 0!important}.radius-left-sm-12{border-radius:12px 0 0 12px}.radius-left-sm-12--force{border-radius:12px 0 0 12px!important}.radius-right-sm-12{border-radius:0 12px 12px 0}.radius-right-sm-12--force{border-radius:0 12px 12px 0!important}.radius-sm-14{border-radius:14px}.radius-bottom-sm-14{border-radius:0 0 14px 14px}.radius-bottom-sm-14--force{border-radius:0 0 14px 14px!important}.radius-top-sm-14{border-radius:14px 14px 0 0}.radius-top-sm-14--force{border-radius:14px 14px 0 0!important}.radius-left-sm-14{border-radius:14px 0 0 14px}.radius-left-sm-14--force{border-radius:14px 0 0 14px!important}.radius-right-sm-14{border-radius:0 14px 14px 0}.radius-right-sm-14--force{border-radius:0 14px 14px 0!important}.radius-sm-16{border-radius:16px}.radius-bottom-sm-16{border-radius:0 0 16px 16px}.radius-bottom-sm-16--force{border-radius:0 0 16px 16px!important}.radius-top-sm-16{border-radius:16px 16px 0 0}.radius-top-sm-16--force{border-radius:16px 16px 0 0!important}.radius-left-sm-16{border-radius:16px 0 0 16px}.radius-left-sm-16--force{border-radius:16px 0 0 16px!important}.radius-right-sm-16{border-radius:0 16px 16px 0}.radius-right-sm-16--force{border-radius:0 16px 16px 0!important}.radius-sm-18{border-radius:18px}.radius-bottom-sm-18{border-radius:0 0 18px 18px}.radius-bottom-sm-18--force{border-radius:0 0 18px 18px!important}.radius-top-sm-18{border-radius:18px 18px 0 0}.radius-top-sm-18--force{border-radius:18px 18px 0 0!important}.radius-left-sm-18{border-radius:18px 0 0 18px}.radius-left-sm-18--force{border-radius:18px 0 0 18px!important}.radius-right-sm-18{border-radius:0 18px 18px 0}.radius-right-sm-18--force{border-radius:0 18px 18px 0!important}.radius-sm-20{border-radius:20px}.radius-bottom-sm-20{border-radius:0 0 20px 20px}.radius-bottom-sm-20--force{border-radius:0 0 20px 20px!important}.radius-top-sm-20{border-radius:20px 20px 0 0}.radius-top-sm-20--force{border-radius:20px 20px 0 0!important}.radius-left-sm-20{border-radius:20px 0 0 20px}.radius-left-sm-20--force{border-radius:20px 0 0 20px!important}.radius-right-sm-20{border-radius:0 20px 20px 0}.radius-right-sm-20--force{border-radius:0 20px 20px 0!important}.radius-sm-22{border-radius:22px}.radius-bottom-sm-22{border-radius:0 0 22px 22px}.radius-bottom-sm-22--force{border-radius:0 0 22px 22px!important}.radius-top-sm-22{border-radius:22px 22px 0 0}.radius-top-sm-22--force{border-radius:22px 22px 0 0!important}.radius-left-sm-22{border-radius:22px 0 0 22px}.radius-left-sm-22--force{border-radius:22px 0 0 22px!important}.radius-right-sm-22{border-radius:0 22px 22px 0}.radius-right-sm-22--force{border-radius:0 22px 22px 0!important}.radius-sm-24{border-radius:24px}.radius-bottom-sm-24{border-radius:0 0 24px 24px}.radius-bottom-sm-24--force{border-radius:0 0 24px 24px!important}.radius-top-sm-24{border-radius:24px 24px 0 0}.radius-top-sm-24--force{border-radius:24px 24px 0 0!important}.radius-left-sm-24{border-radius:24px 0 0 24px}.radius-left-sm-24--force{border-radius:24px 0 0 24px!important}.radius-right-sm-24{border-radius:0 24px 24px 0}.radius-right-sm-24--force{border-radius:0 24px 24px 0!important}.radius-sm-full{border-radius:9999px}.radius-sm-full--force{border-radius:9999px!important}.line-clamp-sm-0,.line-clamp-sm-1,.line-clamp-sm-2,.line-clamp-sm-3,.line-clamp-sm-4,.line-clamp-sm-5,.line-clamp-sm-6{overflow:hidden;display:-webkit-box;text-overflow:ellipsis;word-break:break-word;white-space:initial;-webkit-box-orient:vertical}.line-clamp-sm-0{-webkit-line-clamp:0;line-clamp:0}.line-clamp-sm-1{-webkit-line-clamp:1;line-clamp:1}.line-clamp-sm-2{-webkit-line-clamp:2;line-clamp:2}.line-clamp-sm-3{-webkit-line-clamp:3;line-clamp:3}.line-clamp-sm-4{-webkit-line-clamp:4;line-clamp:4}.line-clamp-sm-5{-webkit-line-clamp:5;line-clamp:5}.line-clamp-sm-6{-webkit-line-clamp:6;line-clamp:6}.line-clamp-sm-none{overflow:visible;display:block;-webkit-box-orient:horizontal;-webkit-line-clamp:none;line-clamp:none}.masonry-sm-1{column-count:1}.masonry-sm-10>*,.masonry-sm-11>*,.masonry-sm-12>*,.masonry-sm-1>*,.masonry-sm-2>*,.masonry-sm-3>*,.masonry-sm-4>*,.masonry-sm-5>*,.masonry-sm-6>*,.masonry-sm-7>*,.masonry-sm-8>*,.masonry-sm-9>*{break-inside:avoid;display:inline-block;width:100%}.masonry-sm-2{column-count:2}.masonry-sm-3{column-count:3}.masonry-sm-4{column-count:4}.masonry-sm-5{column-count:5}.masonry-sm-6{column-count:6}.masonry-sm-7{column-count:7}.masonry-sm-8{column-count:8}.masonry-sm-9{column-count:9}.masonry-sm-10{column-count:10}.masonry-sm-11{column-count:11}.masonry-sm-12{column-count:12}.masonry-gap-sm-0{column-gap:0}.masonry-gap-sm-4{column-gap:4px}.masonry-gap-sm-8{column-gap:8px}.masonry-gap-sm-12{column-gap:12px}.masonry-gap-sm-16{column-gap:16px}.masonry-gap-sm-20{column-gap:20px}.masonry-gap-sm-24{column-gap:24px}.masonry-gap-sm-28{column-gap:28px}.masonry-gap-sm-32{column-gap:32px}.masonry-gap-sm-36{column-gap:36px}.masonry-gap-sm-40{column-gap:40px}.masonry-gap-sm-44{column-gap:44px}.masonry-gap-sm-48{column-gap:48px}}@media screen and (min-width:1024px){.h-md-0{height:0}.h-md-0--force{height:0!important}.max-h-md-0{max-height:0}.max-h-md-0--force{max-height:0!important}.min-h-md-0{min-height:0}.min-h-md-0--force{min-height:0!important}.h-md-4{height:4px}.h-md-4--force{height:4px!important}.max-h-md-4{max-height:4px}.max-h-md-4--force{max-height:4px!important}.min-h-md-4{min-height:4px}.min-h-md-4--force{min-height:4px!important}.h-md-8{height:8px}.h-md-8--force{height:8px!important}.max-h-md-8{max-height:8px}.max-h-md-8--force{max-height:8px!important}.min-h-md-8{min-height:8px}.min-h-md-8--force{min-height:8px!important}.h-md-12{height:12px}.h-md-12--force{height:12px!important}.max-h-md-12{max-height:12px}.max-h-md-12--force{max-height:12px!important}.min-h-md-12{min-height:12px}.min-h-md-12--force{min-height:12px!important}.h-md-16{height:16px}.h-md-16--force{height:16px!important}.max-h-md-16{max-height:16px}.max-h-md-16--force{max-height:16px!important}.min-h-md-16{min-height:16px}.min-h-md-16--force{min-height:16px!important}.h-md-20{height:20px}.h-md-20--force{height:20px!important}.max-h-md-20{max-height:20px}.max-h-md-20--force{max-height:20px!important}.min-h-md-20{min-height:20px}.min-h-md-20--force{min-height:20px!important}.h-md-24{height:24px}.h-md-24--force{height:24px!important}.max-h-md-24{max-height:24px}.max-h-md-24--force{max-height:24px!important}.min-h-md-24{min-height:24px}.min-h-md-24--force{min-height:24px!important}.h-md-28{height:28px}.h-md-28--force{height:28px!important}.max-h-md-28{max-height:28px}.max-h-md-28--force{max-height:28px!important}.min-h-md-28{min-height:28px}.min-h-md-28--force{min-height:28px!important}.h-md-32{height:32px}.h-md-32--force{height:32px!important}.max-h-md-32{max-height:32px}.max-h-md-32--force{max-height:32px!important}.min-h-md-32{min-height:32px}.min-h-md-32--force{min-height:32px!important}.h-md-36{height:36px}.h-md-36--force{height:36px!important}.max-h-md-36{max-height:36px}.max-h-md-36--force{max-height:36px!important}.min-h-md-36{min-height:36px}.min-h-md-36--force{min-height:36px!important}.h-md-40{height:40px}.h-md-40--force{height:40px!important}.max-h-md-40{max-height:40px}.max-h-md-40--force{max-height:40px!important}.min-h-md-40{min-height:40px}.min-h-md-40--force{min-height:40px!important}.h-md-44{height:44px}.h-md-44--force{height:44px!important}.max-h-md-44{max-height:44px}.max-h-md-44--force{max-height:44px!important}.min-h-md-44{min-height:44px}.min-h-md-44--force{min-height:44px!important}.h-md-48{height:48px}.h-md-48--force{height:48px!important}.max-h-md-48{max-height:48px}.max-h-md-48--force{max-height:48px!important}.min-h-md-48{min-height:48px}.min-h-md-48--force{min-height:48px!important}.h-md-52{height:52px}.h-md-52--force{height:52px!important}.max-h-md-52{max-height:52px}.max-h-md-52--force{max-height:52px!important}.min-h-md-52{min-height:52px}.min-h-md-52--force{min-height:52px!important}.h-md-56{height:56px}.h-md-56--force{height:56px!important}.max-h-md-56{max-height:56px}.max-h-md-56--force{max-height:56px!important}.min-h-md-56{min-height:56px}.min-h-md-56--force{min-height:56px!important}.h-md-60{height:60px}.h-md-60--force{height:60px!important}.max-h-md-60{max-height:60px}.max-h-md-60--force{max-height:60px!important}.min-h-md-60{min-height:60px}.min-h-md-60--force{min-height:60px!important}.h-md-64{height:64px}.h-md-64--force{height:64px!important}.max-h-md-64{max-height:64px}.max-h-md-64--force{max-height:64px!important}.min-h-md-64{min-height:64px}.min-h-md-64--force{min-height:64px!important}.h-md-68{height:68px}.h-md-68--force{height:68px!important}.max-h-md-68{max-height:68px}.max-h-md-68--force{max-height:68px!important}.min-h-md-68{min-height:68px}.min-h-md-68--force{min-height:68px!important}.h-md-72{height:72px}.h-md-72--force{height:72px!important}.max-h-md-72{max-height:72px}.max-h-md-72--force{max-height:72px!important}.min-h-md-72{min-height:72px}.min-h-md-72--force{min-height:72px!important}.h-md-76{height:76px}.h-md-76--force{height:76px!important}.max-h-md-76{max-height:76px}.max-h-md-76--force{max-height:76px!important}.min-h-md-76{min-height:76px}.min-h-md-76--force{min-height:76px!important}.h-md-80{height:80px}.h-md-80--force{height:80px!important}.max-h-md-80{max-height:80px}.max-h-md-80--force{max-height:80px!important}.min-h-md-80{min-height:80px}.min-h-md-80--force{min-height:80px!important}.h-md-84{height:84px}.h-md-84--force{height:84px!important}.max-h-md-84{max-height:84px}.max-h-md-84--force{max-height:84px!important}.min-h-md-84{min-height:84px}.min-h-md-84--force{min-height:84px!important}.h-md-88{height:88px}.h-md-88--force{height:88px!important}.max-h-md-88{max-height:88px}.max-h-md-88--force{max-height:88px!important}.min-h-md-88{min-height:88px}.min-h-md-88--force{min-height:88px!important}.h-md-92{height:92px}.h-md-92--force{height:92px!important}.max-h-md-92{max-height:92px}.max-h-md-92--force{max-height:92px!important}.min-h-md-92{min-height:92px}.min-h-md-92--force{min-height:92px!important}.h-md-96{height:96px}.h-md-96--force{height:96px!important}.max-h-md-96{max-height:96px}.max-h-md-96--force{max-height:96px!important}.min-h-md-96{min-height:96px}.min-h-md-96--force{min-height:96px!important}.h-md-100{height:100px}.h-md-100--force{height:100px!important}.max-h-md-100{max-height:100px}.max-h-md-100--force{max-height:100px!important}.min-h-md-100{min-height:100px}.min-h-md-100--force{min-height:100px!important}.h-md-104{height:104px}.h-md-104--force{height:104px!important}.max-h-md-104{max-height:104px}.max-h-md-104--force{max-height:104px!important}.min-h-md-104{min-height:104px}.min-h-md-104--force{min-height:104px!important}.h-md-108{height:108px}.h-md-108--force{height:108px!important}.max-h-md-108{max-height:108px}.max-h-md-108--force{max-height:108px!important}.min-h-md-108{min-height:108px}.min-h-md-108--force{min-height:108px!important}.h-md-112{height:112px}.h-md-112--force{height:112px!important}.max-h-md-112{max-height:112px}.max-h-md-112--force{max-height:112px!important}.min-h-md-112{min-height:112px}.min-h-md-112--force{min-height:112px!important}.h-md-116{height:116px}.h-md-116--force{height:116px!important}.max-h-md-116{max-height:116px}.max-h-md-116--force{max-height:116px!important}.min-h-md-116{min-height:116px}.min-h-md-116--force{min-height:116px!important}.h-md-120{height:120px}.h-md-120--force{height:120px!important}.max-h-md-120{max-height:120px}.max-h-md-120--force{max-height:120px!important}.min-h-md-120{min-height:120px}.min-h-md-120--force{min-height:120px!important}.h-md-124{height:124px}.h-md-124--force{height:124px!important}.max-h-md-124{max-height:124px}.max-h-md-124--force{max-height:124px!important}.min-h-md-124{min-height:124px}.min-h-md-124--force{min-height:124px!important}.h-md-128{height:128px}.h-md-128--force{height:128px!important}.max-h-md-128{max-height:128px}.max-h-md-128--force{max-height:128px!important}.min-h-md-128{min-height:128px}.min-h-md-128--force{min-height:128px!important}.h-md-132{height:132px}.h-md-132--force{height:132px!important}.max-h-md-132{max-height:132px}.max-h-md-132--force{max-height:132px!important}.min-h-md-132{min-height:132px}.min-h-md-132--force{min-height:132px!important}.h-md-136{height:136px}.h-md-136--force{height:136px!important}.max-h-md-136{max-height:136px}.max-h-md-136--force{max-height:136px!important}.min-h-md-136{min-height:136px}.min-h-md-136--force{min-height:136px!important}.h-md-140{height:140px}.h-md-140--force{height:140px!important}.max-h-md-140{max-height:140px}.max-h-md-140--force{max-height:140px!important}.min-h-md-140{min-height:140px}.min-h-md-140--force{min-height:140px!important}.h-md-144{height:144px}.h-md-144--force{height:144px!important}.max-h-md-144{max-height:144px}.max-h-md-144--force{max-height:144px!important}.min-h-md-144{min-height:144px}.min-h-md-144--force{min-height:144px!important}.h-md-148{height:148px}.h-md-148--force{height:148px!important}.max-h-md-148{max-height:148px}.max-h-md-148--force{max-height:148px!important}.min-h-md-148{min-height:148px}.min-h-md-148--force{min-height:148px!important}.h-md-152{height:152px}.h-md-152--force{height:152px!important}.max-h-md-152{max-height:152px}.max-h-md-152--force{max-height:152px!important}.min-h-md-152{min-height:152px}.min-h-md-152--force{min-height:152px!important}.h-md-156{height:156px}.h-md-156--force{height:156px!important}.max-h-md-156{max-height:156px}.max-h-md-156--force{max-height:156px!important}.min-h-md-156{min-height:156px}.min-h-md-156--force{min-height:156px!important}.h-md-160{height:160px}.h-md-160--force{height:160px!important}.max-h-md-160{max-height:160px}.max-h-md-160--force{max-height:160px!important}.min-h-md-160{min-height:160px}.min-h-md-160--force{min-height:160px!important}.h-md-164{height:164px}.h-md-164--force{height:164px!important}.max-h-md-164{max-height:164px}.max-h-md-164--force{max-height:164px!important}.min-h-md-164{min-height:164px}.min-h-md-164--force{min-height:164px!important}.h-md-168{height:168px}.h-md-168--force{height:168px!important}.max-h-md-168{max-height:168px}.max-h-md-168--force{max-height:168px!important}.min-h-md-168{min-height:168px}.min-h-md-168--force{min-height:168px!important}.h-md-172{height:172px}.h-md-172--force{height:172px!important}.max-h-md-172{max-height:172px}.max-h-md-172--force{max-height:172px!important}.min-h-md-172{min-height:172px}.min-h-md-172--force{min-height:172px!important}.h-md-176{height:176px}.h-md-176--force{height:176px!important}.max-h-md-176{max-height:176px}.max-h-md-176--force{max-height:176px!important}.min-h-md-176{min-height:176px}.min-h-md-176--force{min-height:176px!important}.h-md-180{height:180px}.h-md-180--force{height:180px!important}.max-h-md-180{max-height:180px}.max-h-md-180--force{max-height:180px!important}.min-h-md-180{min-height:180px}.min-h-md-180--force{min-height:180px!important}.h-md-184{height:184px}.h-md-184--force{height:184px!important}.max-h-md-184{max-height:184px}.max-h-md-184--force{max-height:184px!important}.min-h-md-184{min-height:184px}.min-h-md-184--force{min-height:184px!important}.h-md-188{height:188px}.h-md-188--force{height:188px!important}.max-h-md-188{max-height:188px}.max-h-md-188--force{max-height:188px!important}.min-h-md-188{min-height:188px}.min-h-md-188--force{min-height:188px!important}.h-md-192{height:192px}.h-md-192--force{height:192px!important}.max-h-md-192{max-height:192px}.max-h-md-192--force{max-height:192px!important}.min-h-md-192{min-height:192px}.min-h-md-192--force{min-height:192px!important}.h-md-196{height:196px}.h-md-196--force{height:196px!important}.max-h-md-196{max-height:196px}.max-h-md-196--force{max-height:196px!important}.min-h-md-196{min-height:196px}.min-h-md-196--force{min-height:196px!important}.h-md-200{height:200px}.h-md-200--force{height:200px!important}.max-h-md-200{max-height:200px}.max-h-md-200--force{max-height:200px!important}.min-h-md-200{min-height:200px}.min-h-md-200--force{min-height:200px!important}.h-md-204{height:204px}.h-md-204--force{height:204px!important}.max-h-md-204{max-height:204px}.max-h-md-204--force{max-height:204px!important}.min-h-md-204{min-height:204px}.min-h-md-204--force{min-height:204px!important}.h-md-208{height:208px}.h-md-208--force{height:208px!important}.max-h-md-208{max-height:208px}.max-h-md-208--force{max-height:208px!important}.min-h-md-208{min-height:208px}.min-h-md-208--force{min-height:208px!important}.h-md-212{height:212px}.h-md-212--force{height:212px!important}.max-h-md-212{max-height:212px}.max-h-md-212--force{max-height:212px!important}.min-h-md-212{min-height:212px}.min-h-md-212--force{min-height:212px!important}.h-md-216{height:216px}.h-md-216--force{height:216px!important}.max-h-md-216{max-height:216px}.max-h-md-216--force{max-height:216px!important}.min-h-md-216{min-height:216px}.min-h-md-216--force{min-height:216px!important}.h-md-220{height:220px}.h-md-220--force{height:220px!important}.max-h-md-220{max-height:220px}.max-h-md-220--force{max-height:220px!important}.min-h-md-220{min-height:220px}.min-h-md-220--force{min-height:220px!important}.h-md-224{height:224px}.h-md-224--force{height:224px!important}.max-h-md-224{max-height:224px}.max-h-md-224--force{max-height:224px!important}.min-h-md-224{min-height:224px}.min-h-md-224--force{min-height:224px!important}.h-md-228{height:228px}.h-md-228--force{height:228px!important}.max-h-md-228{max-height:228px}.max-h-md-228--force{max-height:228px!important}.min-h-md-228{min-height:228px}.min-h-md-228--force{min-height:228px!important}.h-md-232{height:232px}.h-md-232--force{height:232px!important}.max-h-md-232{max-height:232px}.max-h-md-232--force{max-height:232px!important}.min-h-md-232{min-height:232px}.min-h-md-232--force{min-height:232px!important}.h-md-236{height:236px}.h-md-236--force{height:236px!important}.max-h-md-236{max-height:236px}.max-h-md-236--force{max-height:236px!important}.min-h-md-236{min-height:236px}.min-h-md-236--force{min-height:236px!important}.h-md-240{height:240px}.h-md-240--force{height:240px!important}.max-h-md-240{max-height:240px}.max-h-md-240--force{max-height:240px!important}.min-h-md-240{min-height:240px}.min-h-md-240--force{min-height:240px!important}.h-md-244{height:244px}.h-md-244--force{height:244px!important}.max-h-md-244{max-height:244px}.max-h-md-244--force{max-height:244px!important}.min-h-md-244{min-height:244px}.min-h-md-244--force{min-height:244px!important}.h-md-248{height:248px}.h-md-248--force{height:248px!important}.max-h-md-248{max-height:248px}.max-h-md-248--force{max-height:248px!important}.min-h-md-248{min-height:248px}.min-h-md-248--force{min-height:248px!important}.h-md-252{height:252px}.h-md-252--force{height:252px!important}.max-h-md-252{max-height:252px}.max-h-md-252--force{max-height:252px!important}.min-h-md-252{min-height:252px}.min-h-md-252--force{min-height:252px!important}.h-md-256{height:256px}.h-md-256--force{height:256px!important}.max-h-md-256{max-height:256px}.max-h-md-256--force{max-height:256px!important}.min-h-md-256{min-height:256px}.min-h-md-256--force{min-height:256px!important}.h-md-0-p{height:0%}.h-md-0-p--force{height:0%!important}.max-h-md-0-p{max-height:0%}.max-h-md-0-p--force{max-height:0%!important}.min-h-md-0-p{min-height:0}.min-h-md-0-p--force{min-height:0!important}.h-md-5-p{height:5%}.h-md-5-p--force{height:5%!important}.max-h-md-5-p{max-height:5%}.max-h-md-5-p--force{max-height:5%!important}.min-h-md-5-p{min-height:5%}.min-h-md-5-p--force{min-height:5%!important}.h-md-10-p{height:10%}.h-md-10-p--force{height:10%!important}.max-h-md-10-p{max-height:10%}.max-h-md-10-p--force{max-height:10%!important}.min-h-md-10-p{min-height:10%}.min-h-md-10-p--force{min-height:10%!important}.h-md-15-p{height:15%}.h-md-15-p--force{height:15%!important}.max-h-md-15-p{max-height:15%}.max-h-md-15-p--force{max-height:15%!important}.min-h-md-15-p{min-height:15%}.min-h-md-15-p--force{min-height:15%!important}.h-md-20-p{height:20%}.h-md-20-p--force{height:20%!important}.max-h-md-20-p{max-height:20%}.max-h-md-20-p--force{max-height:20%!important}.min-h-md-20-p{min-height:20%}.min-h-md-20-p--force{min-height:20%!important}.h-md-25-p{height:25%}.h-md-25-p--force{height:25%!important}.max-h-md-25-p{max-height:25%}.max-h-md-25-p--force{max-height:25%!important}.min-h-md-25-p{min-height:25%}.min-h-md-25-p--force{min-height:25%!important}.h-md-30-p{height:30%}.h-md-30-p--force{height:30%!important}.max-h-md-30-p{max-height:30%}.max-h-md-30-p--force{max-height:30%!important}.min-h-md-30-p{min-height:30%}.min-h-md-30-p--force{min-height:30%!important}.h-md-35-p{height:35%}.h-md-35-p--force{height:35%!important}.max-h-md-35-p{max-height:35%}.max-h-md-35-p--force{max-height:35%!important}.min-h-md-35-p{min-height:35%}.min-h-md-35-p--force{min-height:35%!important}.h-md-40-p{height:40%}.h-md-40-p--force{height:40%!important}.max-h-md-40-p{max-height:40%}.max-h-md-40-p--force{max-height:40%!important}.min-h-md-40-p{min-height:40%}.min-h-md-40-p--force{min-height:40%!important}.h-md-45-p{height:45%}.h-md-45-p--force{height:45%!important}.max-h-md-45-p{max-height:45%}.max-h-md-45-p--force{max-height:45%!important}.min-h-md-45-p{min-height:45%}.min-h-md-45-p--force{min-height:45%!important}.h-md-50-p{height:50%}.h-md-50-p--force{height:50%!important}.max-h-md-50-p{max-height:50%}.max-h-md-50-p--force{max-height:50%!important}.min-h-md-50-p{min-height:50%}.min-h-md-50-p--force{min-height:50%!important}.h-md-55-p{height:55%}.h-md-55-p--force{height:55%!important}.max-h-md-55-p{max-height:55%}.max-h-md-55-p--force{max-height:55%!important}.min-h-md-55-p{min-height:55%}.min-h-md-55-p--force{min-height:55%!important}.h-md-60-p{height:60%}.h-md-60-p--force{height:60%!important}.max-h-md-60-p{max-height:60%}.max-h-md-60-p--force{max-height:60%!important}.min-h-md-60-p{min-height:60%}.min-h-md-60-p--force{min-height:60%!important}.h-md-65-p{height:65%}.h-md-65-p--force{height:65%!important}.max-h-md-65-p{max-height:65%}.max-h-md-65-p--force{max-height:65%!important}.min-h-md-65-p{min-height:65%}.min-h-md-65-p--force{min-height:65%!important}.h-md-70-p{height:70%}.h-md-70-p--force{height:70%!important}.max-h-md-70-p{max-height:70%}.max-h-md-70-p--force{max-height:70%!important}.min-h-md-70-p{min-height:70%}.min-h-md-70-p--force{min-height:70%!important}.h-md-75-p{height:75%}.h-md-75-p--force{height:75%!important}.max-h-md-75-p{max-height:75%}.max-h-md-75-p--force{max-height:75%!important}.min-h-md-75-p{min-height:75%}.min-h-md-75-p--force{min-height:75%!important}.h-md-80-p{height:80%}.h-md-80-p--force{height:80%!important}.max-h-md-80-p{max-height:80%}.max-h-md-80-p--force{max-height:80%!important}.min-h-md-80-p{min-height:80%}.min-h-md-80-p--force{min-height:80%!important}.h-md-85-p{height:85%}.h-md-85-p--force{height:85%!important}.max-h-md-85-p{max-height:85%}.max-h-md-85-p--force{max-height:85%!important}.min-h-md-85-p{min-height:85%}.min-h-md-85-p--force{min-height:85%!important}.h-md-90-p{height:90%}.h-md-90-p--force{height:90%!important}.max-h-md-90-p{max-height:90%}.max-h-md-90-p--force{max-height:90%!important}.min-h-md-90-p{min-height:90%}.min-h-md-90-p--force{min-height:90%!important}.h-md-95-p{height:95%}.h-md-95-p--force{height:95%!important}.max-h-md-95-p{max-height:95%}.max-h-md-95-p--force{max-height:95%!important}.min-h-md-95-p{min-height:95%}.min-h-md-95-p--force{min-height:95%!important}.h-md-100-p{height:100%}.h-md-100-p--force{height:100%!important}.max-h-md-100-p{max-height:100%}.max-h-md-100-p--force{max-height:100%!important}.min-h-md-100-p{min-height:100%}.min-h-md-100-p--force{min-height:100%!important}.h-md-300{height:300px}.h-md-300--force{height:300px!important}.max-h-md-300{max-height:300px}.max-h-md-300--force{max-height:300px!important}.min-h-md-300{min-height:300px}.min-h-md-300--force{min-height:300px!important}.h-md-400{height:400px}.h-md-400--force{height:400px!important}.max-h-md-400{max-height:400px}.max-h-md-400--force{max-height:400px!important}.min-h-md-400{min-height:400px}.min-h-md-400--force{min-height:400px!important}.h-md-500{height:500px}.h-md-500--force{height:500px!important}.max-h-md-500{max-height:500px}.max-h-md-500--force{max-height:500px!important}.min-h-md-500{min-height:500px}.min-h-md-500--force{min-height:500px!important}.h-md-600{height:600px}.h-md-600--force{height:600px!important}.max-h-md-600{max-height:600px}.max-h-md-600--force{max-height:600px!important}.min-h-md-600{min-height:600px}.min-h-md-600--force{min-height:600px!important}.h-md-700{height:700px}.h-md-700--force{height:700px!important}.max-h-md-700{max-height:700px}.max-h-md-700--force{max-height:700px!important}.min-h-md-700{min-height:700px}.min-h-md-700--force{min-height:700px!important}.h-md-800{height:800px}.h-md-800--force{height:800px!important}.max-h-md-800{max-height:800px}.max-h-md-800--force{max-height:800px!important}.min-h-md-800{min-height:800px}.min-h-md-800--force{min-height:800px!important}.h-md-900{height:900px}.h-md-900--force{height:900px!important}.max-h-md-900{max-height:900px}.max-h-md-900--force{max-height:900px!important}.min-h-md-900{min-height:900px}.min-h-md-900--force{min-height:900px!important}.h-md-1000{height:1000px}.h-md-1000--force{height:1000px!important}.max-h-md-1000{max-height:1000px}.max-h-md-1000--force{max-height:1000px!important}.min-h-md-1000{min-height:1000px}.min-h-md-1000--force{min-height:1000px!important}.h-md-1100{height:1100px}.h-md-1100--force{height:1100px!important}.max-h-md-1100{max-height:1100px}.max-h-md-1100--force{max-height:1100px!important}.min-h-md-1100{min-height:1100px}.min-h-md-1100--force{min-height:1100px!important}.h-md-1200{height:1200px}.h-md-1200--force{height:1200px!important}.max-h-md-1200{max-height:1200px}.max-h-md-1200--force{max-height:1200px!important}.min-h-md-1200{min-height:1200px}.min-h-md-1200--force{min-height:1200px!important}.h-md-1300{height:1300px}.h-md-1300--force{height:1300px!important}.max-h-md-1300{max-height:1300px}.max-h-md-1300--force{max-height:1300px!important}.min-h-md-1300{min-height:1300px}.min-h-md-1300--force{min-height:1300px!important}.h-md-1400{height:1400px}.h-md-1400--force{height:1400px!important}.max-h-md-1400{max-height:1400px}.max-h-md-1400--force{max-height:1400px!important}.min-h-md-1400{min-height:1400px}.min-h-md-1400--force{min-height:1400px!important}.h-md-1500{height:1500px}.h-md-1500--force{height:1500px!important}.max-h-md-1500{max-height:1500px}.max-h-md-1500--force{max-height:1500px!important}.min-h-md-1500{min-height:1500px}.min-h-md-1500--force{min-height:1500px!important}.h-md-1600{height:1600px}.h-md-1600--force{height:1600px!important}.max-h-md-1600{max-height:1600px}.max-h-md-1600--force{max-height:1600px!important}.min-h-md-1600{min-height:1600px}.min-h-md-1600--force{min-height:1600px!important}.h-md-1700{height:1700px}.h-md-1700--force{height:1700px!important}.max-h-md-1700{max-height:1700px}.max-h-md-1700--force{max-height:1700px!important}.min-h-md-1700{min-height:1700px}.min-h-md-1700--force{min-height:1700px!important}.h-md-1800{height:1800px}.h-md-1800--force{height:1800px!important}.max-h-md-1800{max-height:1800px}.max-h-md-1800--force{max-height:1800px!important}.min-h-md-1800{min-height:1800px}.min-h-md-1800--force{min-height:1800px!important}.h-md-1900{height:1900px}.h-md-1900--force{height:1900px!important}.max-h-md-1900{max-height:1900px}.max-h-md-1900--force{max-height:1900px!important}.min-h-md-1900{min-height:1900px}.min-h-md-1900--force{min-height:1900px!important}.h-md-2000{height:2000px}.h-md-2000--force{height:2000px!important}.max-h-md-2000{max-height:2000px}.max-h-md-2000--force{max-height:2000px!important}.min-h-md-2000{min-height:2000px}.min-h-md-2000--force{min-height:2000px!important}.h-md-auto{height:auto}.h-md-auto--force{height:auto!important}.w-md-0{width:0}.w-md-0--force{width:0!important}.max-w-md-0{max-width:0}.max-w-md-0--force{max-width:0!important}.min-w-md-0{min-width:0}.min-w-md-0--force{min-width:0!important}.w-md-4{width:4px}.w-md-4--force{width:4px!important}.max-w-md-4{max-width:4px}.max-w-md-4--force{max-width:4px!important}.min-w-md-4{min-width:4px}.min-w-md-4--force{min-width:4px!important}.w-md-8{width:8px}.w-md-8--force{width:8px!important}.max-w-md-8{max-width:8px}.max-w-md-8--force{max-width:8px!important}.min-w-md-8{min-width:8px}.min-w-md-8--force{min-width:8px!important}.w-md-12{width:12px}.w-md-12--force{width:12px!important}.max-w-md-12{max-width:12px}.max-w-md-12--force{max-width:12px!important}.min-w-md-12{min-width:12px}.min-w-md-12--force{min-width:12px!important}.w-md-16{width:16px}.w-md-16--force{width:16px!important}.max-w-md-16{max-width:16px}.max-w-md-16--force{max-width:16px!important}.min-w-md-16{min-width:16px}.min-w-md-16--force{min-width:16px!important}.w-md-20{width:20px}.w-md-20--force{width:20px!important}.max-w-md-20{max-width:20px}.max-w-md-20--force{max-width:20px!important}.min-w-md-20{min-width:20px}.min-w-md-20--force{min-width:20px!important}.w-md-24{width:24px}.w-md-24--force{width:24px!important}.max-w-md-24{max-width:24px}.max-w-md-24--force{max-width:24px!important}.min-w-md-24{min-width:24px}.min-w-md-24--force{min-width:24px!important}.w-md-28{width:28px}.w-md-28--force{width:28px!important}.max-w-md-28{max-width:28px}.max-w-md-28--force{max-width:28px!important}.min-w-md-28{min-width:28px}.min-w-md-28--force{min-width:28px!important}.w-md-32{width:32px}.w-md-32--force{width:32px!important}.max-w-md-32{max-width:32px}.max-w-md-32--force{max-width:32px!important}.min-w-md-32{min-width:32px}.min-w-md-32--force{min-width:32px!important}.w-md-36{width:36px}.w-md-36--force{width:36px!important}.max-w-md-36{max-width:36px}.max-w-md-36--force{max-width:36px!important}.min-w-md-36{min-width:36px}.min-w-md-36--force{min-width:36px!important}.w-md-40{width:40px}.w-md-40--force{width:40px!important}.max-w-md-40{max-width:40px}.max-w-md-40--force{max-width:40px!important}.min-w-md-40{min-width:40px}.min-w-md-40--force{min-width:40px!important}.w-md-44{width:44px}.w-md-44--force{width:44px!important}.max-w-md-44{max-width:44px}.max-w-md-44--force{max-width:44px!important}.min-w-md-44{min-width:44px}.min-w-md-44--force{min-width:44px!important}.w-md-48{width:48px}.w-md-48--force{width:48px!important}.max-w-md-48{max-width:48px}.max-w-md-48--force{max-width:48px!important}.min-w-md-48{min-width:48px}.min-w-md-48--force{min-width:48px!important}.w-md-52{width:52px}.w-md-52--force{width:52px!important}.max-w-md-52{max-width:52px}.max-w-md-52--force{max-width:52px!important}.min-w-md-52{min-width:52px}.min-w-md-52--force{min-width:52px!important}.w-md-56{width:56px}.w-md-56--force{width:56px!important}.max-w-md-56{max-width:56px}.max-w-md-56--force{max-width:56px!important}.min-w-md-56{min-width:56px}.min-w-md-56--force{min-width:56px!important}.w-md-60{width:60px}.w-md-60--force{width:60px!important}.max-w-md-60{max-width:60px}.max-w-md-60--force{max-width:60px!important}.min-w-md-60{min-width:60px}.min-w-md-60--force{min-width:60px!important}.w-md-64{width:64px}.w-md-64--force{width:64px!important}.max-w-md-64{max-width:64px}.max-w-md-64--force{max-width:64px!important}.min-w-md-64{min-width:64px}.min-w-md-64--force{min-width:64px!important}.w-md-68{width:68px}.w-md-68--force{width:68px!important}.max-w-md-68{max-width:68px}.max-w-md-68--force{max-width:68px!important}.min-w-md-68{min-width:68px}.min-w-md-68--force{min-width:68px!important}.w-md-72{width:72px}.w-md-72--force{width:72px!important}.max-w-md-72{max-width:72px}.max-w-md-72--force{max-width:72px!important}.min-w-md-72{min-width:72px}.min-w-md-72--force{min-width:72px!important}.w-md-76{width:76px}.w-md-76--force{width:76px!important}.max-w-md-76{max-width:76px}.max-w-md-76--force{max-width:76px!important}.min-w-md-76{min-width:76px}.min-w-md-76--force{min-width:76px!important}.w-md-80{width:80px}.w-md-80--force{width:80px!important}.max-w-md-80{max-width:80px}.max-w-md-80--force{max-width:80px!important}.min-w-md-80{min-width:80px}.min-w-md-80--force{min-width:80px!important}.w-md-84{width:84px}.w-md-84--force{width:84px!important}.max-w-md-84{max-width:84px}.max-w-md-84--force{max-width:84px!important}.min-w-md-84{min-width:84px}.min-w-md-84--force{min-width:84px!important}.w-md-88{width:88px}.w-md-88--force{width:88px!important}.max-w-md-88{max-width:88px}.max-w-md-88--force{max-width:88px!important}.min-w-md-88{min-width:88px}.min-w-md-88--force{min-width:88px!important}.w-md-92{width:92px}.w-md-92--force{width:92px!important}.max-w-md-92{max-width:92px}.max-w-md-92--force{max-width:92px!important}.min-w-md-92{min-width:92px}.min-w-md-92--force{min-width:92px!important}.w-md-96{width:96px}.w-md-96--force{width:96px!important}.max-w-md-96{max-width:96px}.max-w-md-96--force{max-width:96px!important}.min-w-md-96{min-width:96px}.min-w-md-96--force{min-width:96px!important}.w-md-100{width:100px}.w-md-100--force{width:100px!important}.max-w-md-100{max-width:100px}.max-w-md-100--force{max-width:100px!important}.min-w-md-100{min-width:100px}.min-w-md-100--force{min-width:100px!important}.w-md-104{width:104px}.w-md-104--force{width:104px!important}.max-w-md-104{max-width:104px}.max-w-md-104--force{max-width:104px!important}.min-w-md-104{min-width:104px}.min-w-md-104--force{min-width:104px!important}.w-md-108{width:108px}.w-md-108--force{width:108px!important}.max-w-md-108{max-width:108px}.max-w-md-108--force{max-width:108px!important}.min-w-md-108{min-width:108px}.min-w-md-108--force{min-width:108px!important}.w-md-112{width:112px}.w-md-112--force{width:112px!important}.max-w-md-112{max-width:112px}.max-w-md-112--force{max-width:112px!important}.min-w-md-112{min-width:112px}.min-w-md-112--force{min-width:112px!important}.w-md-116{width:116px}.w-md-116--force{width:116px!important}.max-w-md-116{max-width:116px}.max-w-md-116--force{max-width:116px!important}.min-w-md-116{min-width:116px}.min-w-md-116--force{min-width:116px!important}.w-md-120{width:120px}.w-md-120--force{width:120px!important}.max-w-md-120{max-width:120px}.max-w-md-120--force{max-width:120px!important}.min-w-md-120{min-width:120px}.min-w-md-120--force{min-width:120px!important}.w-md-124{width:124px}.w-md-124--force{width:124px!important}.max-w-md-124{max-width:124px}.max-w-md-124--force{max-width:124px!important}.min-w-md-124{min-width:124px}.min-w-md-124--force{min-width:124px!important}.w-md-128{width:128px}.w-md-128--force{width:128px!important}.max-w-md-128{max-width:128px}.max-w-md-128--force{max-width:128px!important}.min-w-md-128{min-width:128px}.min-w-md-128--force{min-width:128px!important}.w-md-132{width:132px}.w-md-132--force{width:132px!important}.max-w-md-132{max-width:132px}.max-w-md-132--force{max-width:132px!important}.min-w-md-132{min-width:132px}.min-w-md-132--force{min-width:132px!important}.w-md-136{width:136px}.w-md-136--force{width:136px!important}.max-w-md-136{max-width:136px}.max-w-md-136--force{max-width:136px!important}.min-w-md-136{min-width:136px}.min-w-md-136--force{min-width:136px!important}.w-md-140{width:140px}.w-md-140--force{width:140px!important}.max-w-md-140{max-width:140px}.max-w-md-140--force{max-width:140px!important}.min-w-md-140{min-width:140px}.min-w-md-140--force{min-width:140px!important}.w-md-144{width:144px}.w-md-144--force{width:144px!important}.max-w-md-144{max-width:144px}.max-w-md-144--force{max-width:144px!important}.min-w-md-144{min-width:144px}.min-w-md-144--force{min-width:144px!important}.w-md-148{width:148px}.w-md-148--force{width:148px!important}.max-w-md-148{max-width:148px}.max-w-md-148--force{max-width:148px!important}.min-w-md-148{min-width:148px}.min-w-md-148--force{min-width:148px!important}.w-md-152{width:152px}.w-md-152--force{width:152px!important}.max-w-md-152{max-width:152px}.max-w-md-152--force{max-width:152px!important}.min-w-md-152{min-width:152px}.min-w-md-152--force{min-width:152px!important}.w-md-156{width:156px}.w-md-156--force{width:156px!important}.max-w-md-156{max-width:156px}.max-w-md-156--force{max-width:156px!important}.min-w-md-156{min-width:156px}.min-w-md-156--force{min-width:156px!important}.w-md-160{width:160px}.w-md-160--force{width:160px!important}.max-w-md-160{max-width:160px}.max-w-md-160--force{max-width:160px!important}.min-w-md-160{min-width:160px}.min-w-md-160--force{min-width:160px!important}.w-md-164{width:164px}.w-md-164--force{width:164px!important}.max-w-md-164{max-width:164px}.max-w-md-164--force{max-width:164px!important}.min-w-md-164{min-width:164px}.min-w-md-164--force{min-width:164px!important}.w-md-168{width:168px}.w-md-168--force{width:168px!important}.max-w-md-168{max-width:168px}.max-w-md-168--force{max-width:168px!important}.min-w-md-168{min-width:168px}.min-w-md-168--force{min-width:168px!important}.w-md-172{width:172px}.w-md-172--force{width:172px!important}.max-w-md-172{max-width:172px}.max-w-md-172--force{max-width:172px!important}.min-w-md-172{min-width:172px}.min-w-md-172--force{min-width:172px!important}.w-md-176{width:176px}.w-md-176--force{width:176px!important}.max-w-md-176{max-width:176px}.max-w-md-176--force{max-width:176px!important}.min-w-md-176{min-width:176px}.min-w-md-176--force{min-width:176px!important}.w-md-180{width:180px}.w-md-180--force{width:180px!important}.max-w-md-180{max-width:180px}.max-w-md-180--force{max-width:180px!important}.min-w-md-180{min-width:180px}.min-w-md-180--force{min-width:180px!important}.w-md-184{width:184px}.w-md-184--force{width:184px!important}.max-w-md-184{max-width:184px}.max-w-md-184--force{max-width:184px!important}.min-w-md-184{min-width:184px}.min-w-md-184--force{min-width:184px!important}.w-md-188{width:188px}.w-md-188--force{width:188px!important}.max-w-md-188{max-width:188px}.max-w-md-188--force{max-width:188px!important}.min-w-md-188{min-width:188px}.min-w-md-188--force{min-width:188px!important}.w-md-192{width:192px}.w-md-192--force{width:192px!important}.max-w-md-192{max-width:192px}.max-w-md-192--force{max-width:192px!important}.min-w-md-192{min-width:192px}.min-w-md-192--force{min-width:192px!important}.w-md-196{width:196px}.w-md-196--force{width:196px!important}.max-w-md-196{max-width:196px}.max-w-md-196--force{max-width:196px!important}.min-w-md-196{min-width:196px}.min-w-md-196--force{min-width:196px!important}.w-md-200{width:200px}.w-md-200--force{width:200px!important}.max-w-md-200{max-width:200px}.max-w-md-200--force{max-width:200px!important}.min-w-md-200{min-width:200px}.min-w-md-200--force{min-width:200px!important}.w-md-204{width:204px}.w-md-204--force{width:204px!important}.max-w-md-204{max-width:204px}.max-w-md-204--force{max-width:204px!important}.min-w-md-204{min-width:204px}.min-w-md-204--force{min-width:204px!important}.w-md-208{width:208px}.w-md-208--force{width:208px!important}.max-w-md-208{max-width:208px}.max-w-md-208--force{max-width:208px!important}.min-w-md-208{min-width:208px}.min-w-md-208--force{min-width:208px!important}.w-md-212{width:212px}.w-md-212--force{width:212px!important}.max-w-md-212{max-width:212px}.max-w-md-212--force{max-width:212px!important}.min-w-md-212{min-width:212px}.min-w-md-212--force{min-width:212px!important}.w-md-216{width:216px}.w-md-216--force{width:216px!important}.max-w-md-216{max-width:216px}.max-w-md-216--force{max-width:216px!important}.min-w-md-216{min-width:216px}.min-w-md-216--force{min-width:216px!important}.w-md-220{width:220px}.w-md-220--force{width:220px!important}.max-w-md-220{max-width:220px}.max-w-md-220--force{max-width:220px!important}.min-w-md-220{min-width:220px}.min-w-md-220--force{min-width:220px!important}.w-md-224{width:224px}.w-md-224--force{width:224px!important}.max-w-md-224{max-width:224px}.max-w-md-224--force{max-width:224px!important}.min-w-md-224{min-width:224px}.min-w-md-224--force{min-width:224px!important}.w-md-228{width:228px}.w-md-228--force{width:228px!important}.max-w-md-228{max-width:228px}.max-w-md-228--force{max-width:228px!important}.min-w-md-228{min-width:228px}.min-w-md-228--force{min-width:228px!important}.w-md-232{width:232px}.w-md-232--force{width:232px!important}.max-w-md-232{max-width:232px}.max-w-md-232--force{max-width:232px!important}.min-w-md-232{min-width:232px}.min-w-md-232--force{min-width:232px!important}.w-md-236{width:236px}.w-md-236--force{width:236px!important}.max-w-md-236{max-width:236px}.max-w-md-236--force{max-width:236px!important}.min-w-md-236{min-width:236px}.min-w-md-236--force{min-width:236px!important}.w-md-240{width:240px}.w-md-240--force{width:240px!important}.max-w-md-240{max-width:240px}.max-w-md-240--force{max-width:240px!important}.min-w-md-240{min-width:240px}.min-w-md-240--force{min-width:240px!important}.w-md-244{width:244px}.w-md-244--force{width:244px!important}.max-w-md-244{max-width:244px}.max-w-md-244--force{max-width:244px!important}.min-w-md-244{min-width:244px}.min-w-md-244--force{min-width:244px!important}.w-md-248{width:248px}.w-md-248--force{width:248px!important}.max-w-md-248{max-width:248px}.max-w-md-248--force{max-width:248px!important}.min-w-md-248{min-width:248px}.min-w-md-248--force{min-width:248px!important}.w-md-252{width:252px}.w-md-252--force{width:252px!important}.max-w-md-252{max-width:252px}.max-w-md-252--force{max-width:252px!important}.min-w-md-252{min-width:252px}.min-w-md-252--force{min-width:252px!important}.w-md-256{width:256px}.w-md-256--force{width:256px!important}.max-w-md-256{max-width:256px}.max-w-md-256--force{max-width:256px!important}.min-w-md-256{min-width:256px}.min-w-md-256--force{min-width:256px!important}.w-md-0-p{width:0%}.w-md-0-p--force{width:0%!important}.max-w-md-0-p{max-width:0%}.max-w-md-0-p--force{max-width:0%!important}.min-w-md-0-p{min-width:0}.min-w-md-0-p--force{min-width:0!important}.w-md-5-p{width:5%}.w-md-5-p--force{width:5%!important}.max-w-md-5-p{max-width:5%}.max-w-md-5-p--force{max-width:5%!important}.min-w-md-5-p{min-width:5%}.min-w-md-5-p--force{min-width:5%!important}.w-md-10-p{width:10%}.w-md-10-p--force{width:10%!important}.max-w-md-10-p{max-width:10%}.max-w-md-10-p--force{max-width:10%!important}.min-w-md-10-p{min-width:10%}.min-w-md-10-p--force{min-width:10%!important}.w-md-15-p{width:15%}.w-md-15-p--force{width:15%!important}.max-w-md-15-p{max-width:15%}.max-w-md-15-p--force{max-width:15%!important}.min-w-md-15-p{min-width:15%}.min-w-md-15-p--force{min-width:15%!important}.w-md-20-p{width:20%}.w-md-20-p--force{width:20%!important}.max-w-md-20-p{max-width:20%}.max-w-md-20-p--force{max-width:20%!important}.min-w-md-20-p{min-width:20%}.min-w-md-20-p--force{min-width:20%!important}.w-md-25-p{width:25%}.w-md-25-p--force{width:25%!important}.max-w-md-25-p{max-width:25%}.max-w-md-25-p--force{max-width:25%!important}.min-w-md-25-p{min-width:25%}.min-w-md-25-p--force{min-width:25%!important}.w-md-30-p{width:30%}.w-md-30-p--force{width:30%!important}.max-w-md-30-p{max-width:30%}.max-w-md-30-p--force{max-width:30%!important}.min-w-md-30-p{min-width:30%}.min-w-md-30-p--force{min-width:30%!important}.w-md-35-p{width:35%}.w-md-35-p--force{width:35%!important}.max-w-md-35-p{max-width:35%}.max-w-md-35-p--force{max-width:35%!important}.min-w-md-35-p{min-width:35%}.min-w-md-35-p--force{min-width:35%!important}.w-md-40-p{width:40%}.w-md-40-p--force{width:40%!important}.max-w-md-40-p{max-width:40%}.max-w-md-40-p--force{max-width:40%!important}.min-w-md-40-p{min-width:40%}.min-w-md-40-p--force{min-width:40%!important}.w-md-45-p{width:45%}.w-md-45-p--force{width:45%!important}.max-w-md-45-p{max-width:45%}.max-w-md-45-p--force{max-width:45%!important}.min-w-md-45-p{min-width:45%}.min-w-md-45-p--force{min-width:45%!important}.w-md-50-p{width:50%}.w-md-50-p--force{width:50%!important}.max-w-md-50-p{max-width:50%}.max-w-md-50-p--force{max-width:50%!important}.min-w-md-50-p{min-width:50%}.min-w-md-50-p--force{min-width:50%!important}.w-md-55-p{width:55%}.w-md-55-p--force{width:55%!important}.max-w-md-55-p{max-width:55%}.max-w-md-55-p--force{max-width:55%!important}.min-w-md-55-p{min-width:55%}.min-w-md-55-p--force{min-width:55%!important}.w-md-60-p{width:60%}.w-md-60-p--force{width:60%!important}.max-w-md-60-p{max-width:60%}.max-w-md-60-p--force{max-width:60%!important}.min-w-md-60-p{min-width:60%}.min-w-md-60-p--force{min-width:60%!important}.w-md-65-p{width:65%}.w-md-65-p--force{width:65%!important}.max-w-md-65-p{max-width:65%}.max-w-md-65-p--force{max-width:65%!important}.min-w-md-65-p{min-width:65%}.min-w-md-65-p--force{min-width:65%!important}.w-md-70-p{width:70%}.w-md-70-p--force{width:70%!important}.max-w-md-70-p{max-width:70%}.max-w-md-70-p--force{max-width:70%!important}.min-w-md-70-p{min-width:70%}.min-w-md-70-p--force{min-width:70%!important}.w-md-75-p{width:75%}.w-md-75-p--force{width:75%!important}.max-w-md-75-p{max-width:75%}.max-w-md-75-p--force{max-width:75%!important}.min-w-md-75-p{min-width:75%}.min-w-md-75-p--force{min-width:75%!important}.w-md-80-p{width:80%}.w-md-80-p--force{width:80%!important}.max-w-md-80-p{max-width:80%}.max-w-md-80-p--force{max-width:80%!important}.min-w-md-80-p{min-width:80%}.min-w-md-80-p--force{min-width:80%!important}.w-md-85-p{width:85%}.w-md-85-p--force{width:85%!important}.max-w-md-85-p{max-width:85%}.max-w-md-85-p--force{max-width:85%!important}.min-w-md-85-p{min-width:85%}.min-w-md-85-p--force{min-width:85%!important}.w-md-90-p{width:90%}.w-md-90-p--force{width:90%!important}.max-w-md-90-p{max-width:90%}.max-w-md-90-p--force{max-width:90%!important}.min-w-md-90-p{min-width:90%}.min-w-md-90-p--force{min-width:90%!important}.w-md-95-p{width:95%}.w-md-95-p--force{width:95%!important}.max-w-md-95-p{max-width:95%}.max-w-md-95-p--force{max-width:95%!important}.min-w-md-95-p{min-width:95%}.min-w-md-95-p--force{min-width:95%!important}.w-md-100-p{width:100%}.w-md-100-p--force{width:100%!important}.max-w-md-100-p{max-width:100%}.max-w-md-100-p--force{max-width:100%!important}.min-w-md-100-p{min-width:100%}.min-w-md-100-p--force{min-width:100%!important}.w-md-300{width:300px}.w-md-300--force{width:300px!important}.max-w-md-300{max-width:300px}.max-w-md-300--force{max-width:300px!important}.min-w-md-300{min-width:300px}.min-w-md-300--force{min-width:300px!important}.w-md-400{width:400px}.w-md-400--force{width:400px!important}.max-w-md-400{max-width:400px}.max-w-md-400--force{max-width:400px!important}.min-w-md-400{min-width:400px}.min-w-md-400--force{min-width:400px!important}.w-md-500{width:500px}.w-md-500--force{width:500px!important}.max-w-md-500{max-width:500px}.max-w-md-500--force{max-width:500px!important}.min-w-md-500{min-width:500px}.min-w-md-500--force{min-width:500px!important}.w-md-600{width:600px}.w-md-600--force{width:600px!important}.max-w-md-600{max-width:600px}.max-w-md-600--force{max-width:600px!important}.min-w-md-600{min-width:600px}.min-w-md-600--force{min-width:600px!important}.w-md-700{width:700px}.w-md-700--force{width:700px!important}.max-w-md-700{max-width:700px}.max-w-md-700--force{max-width:700px!important}.min-w-md-700{min-width:700px}.min-w-md-700--force{min-width:700px!important}.w-md-800{width:800px}.w-md-800--force{width:800px!important}.max-w-md-800{max-width:800px}.max-w-md-800--force{max-width:800px!important}.min-w-md-800{min-width:800px}.min-w-md-800--force{min-width:800px!important}.w-md-900{width:900px}.w-md-900--force{width:900px!important}.max-w-md-900{max-width:900px}.max-w-md-900--force{max-width:900px!important}.min-w-md-900{min-width:900px}.min-w-md-900--force{min-width:900px!important}.w-md-1000{width:1000px}.w-md-1000--force{width:1000px!important}.max-w-md-1000{max-width:1000px}.max-w-md-1000--force{max-width:1000px!important}.min-w-md-1000{min-width:1000px}.min-w-md-1000--force{min-width:1000px!important}.w-md-1100{width:1100px}.w-md-1100--force{width:1100px!important}.max-w-md-1100{max-width:1100px}.max-w-md-1100--force{max-width:1100px!important}.min-w-md-1100{min-width:1100px}.min-w-md-1100--force{min-width:1100px!important}.w-md-1200{width:1200px}.w-md-1200--force{width:1200px!important}.max-w-md-1200{max-width:1200px}.max-w-md-1200--force{max-width:1200px!important}.min-w-md-1200{min-width:1200px}.min-w-md-1200--force{min-width:1200px!important}.w-md-1300{width:1300px}.w-md-1300--force{width:1300px!important}.max-w-md-1300{max-width:1300px}.max-w-md-1300--force{max-width:1300px!important}.min-w-md-1300{min-width:1300px}.min-w-md-1300--force{min-width:1300px!important}.w-md-1400{width:1400px}.w-md-1400--force{width:1400px!important}.max-w-md-1400{max-width:1400px}.max-w-md-1400--force{max-width:1400px!important}.min-w-md-1400{min-width:1400px}.min-w-md-1400--force{min-width:1400px!important}.w-md-1500{width:1500px}.w-md-1500--force{width:1500px!important}.max-w-md-1500{max-width:1500px}.max-w-md-1500--force{max-width:1500px!important}.min-w-md-1500{min-width:1500px}.min-w-md-1500--force{min-width:1500px!important}.w-md-1600{width:1600px}.w-md-1600--force{width:1600px!important}.max-w-md-1600{max-width:1600px}.max-w-md-1600--force{max-width:1600px!important}.min-w-md-1600{min-width:1600px}.min-w-md-1600--force{min-width:1600px!important}.w-md-1700{width:1700px}.w-md-1700--force{width:1700px!important}.max-w-md-1700{max-width:1700px}.max-w-md-1700--force{max-width:1700px!important}.min-w-md-1700{min-width:1700px}.min-w-md-1700--force{min-width:1700px!important}.w-md-1800{width:1800px}.w-md-1800--force{width:1800px!important}.max-w-md-1800{max-width:1800px}.max-w-md-1800--force{max-width:1800px!important}.min-w-md-1800{min-width:1800px}.min-w-md-1800--force{min-width:1800px!important}.w-md-1900{width:1900px}.w-md-1900--force{width:1900px!important}.max-w-md-1900{max-width:1900px}.max-w-md-1900--force{max-width:1900px!important}.min-w-md-1900{min-width:1900px}.min-w-md-1900--force{min-width:1900px!important}.w-md-2000{width:2000px}.w-md-2000--force{width:2000px!important}.max-w-md-2000{max-width:2000px}.max-w-md-2000--force{max-width:2000px!important}.min-w-md-2000{min-width:2000px}.min-w-md-2000--force{min-width:2000px!important}.w-md-auto{width:auto}.w-md-auto--force{width:auto!important}.m-md--64{margin:-64px}.m-md--64--force{margin:-64px!important}.mx-md--64{margin-right:-64px;margin-left:-64px}.mx-md--64--force{margin-right:-64px!important;margin-left:-64px!important}.my-md--64{margin-top:-64px;margin-bottom:-64px}.my-md--64--force{margin-top:-64px!important;margin-bottom:-64px!important}.mt-md--64{margin-top:-64px}.mt-md--64--force{margin-top:-64px!important}.mr-md--64{margin-right:-64px}.mr-md--64--force{margin-right:-64px!important}.mb-md--64{margin-bottom:-64px}.mb-md--64--force{margin-bottom:-64px!important}.ml-md--64{margin-left:-64px}.ml-md--64--force{margin-left:-64px!important}.m-md--60{margin:-60px}.m-md--60--force{margin:-60px!important}.mx-md--60{margin-right:-60px;margin-left:-60px}.mx-md--60--force{margin-right:-60px!important;margin-left:-60px!important}.my-md--60{margin-top:-60px;margin-bottom:-60px}.my-md--60--force{margin-top:-60px!important;margin-bottom:-60px!important}.mt-md--60{margin-top:-60px}.mt-md--60--force{margin-top:-60px!important}.mr-md--60{margin-right:-60px}.mr-md--60--force{margin-right:-60px!important}.mb-md--60{margin-bottom:-60px}.mb-md--60--force{margin-bottom:-60px!important}.ml-md--60{margin-left:-60px}.ml-md--60--force{margin-left:-60px!important}.m-md--56{margin:-56px}.m-md--56--force{margin:-56px!important}.mx-md--56{margin-right:-56px;margin-left:-56px}.mx-md--56--force{margin-right:-56px!important;margin-left:-56px!important}.my-md--56{margin-top:-56px;margin-bottom:-56px}.my-md--56--force{margin-top:-56px!important;margin-bottom:-56px!important}.mt-md--56{margin-top:-56px}.mt-md--56--force{margin-top:-56px!important}.mr-md--56{margin-right:-56px}.mr-md--56--force{margin-right:-56px!important}.mb-md--56{margin-bottom:-56px}.mb-md--56--force{margin-bottom:-56px!important}.ml-md--56{margin-left:-56px}.ml-md--56--force{margin-left:-56px!important}.m-md--52{margin:-52px}.m-md--52--force{margin:-52px!important}.mx-md--52{margin-right:-52px;margin-left:-52px}.mx-md--52--force{margin-right:-52px!important;margin-left:-52px!important}.my-md--52{margin-top:-52px;margin-bottom:-52px}.my-md--52--force{margin-top:-52px!important;margin-bottom:-52px!important}.mt-md--52{margin-top:-52px}.mt-md--52--force{margin-top:-52px!important}.mr-md--52{margin-right:-52px}.mr-md--52--force{margin-right:-52px!important}.mb-md--52{margin-bottom:-52px}.mb-md--52--force{margin-bottom:-52px!important}.ml-md--52{margin-left:-52px}.ml-md--52--force{margin-left:-52px!important}.m-md--48{margin:-48px}.m-md--48--force{margin:-48px!important}.mx-md--48{margin-right:-48px;margin-left:-48px}.mx-md--48--force{margin-right:-48px!important;margin-left:-48px!important}.my-md--48{margin-top:-48px;margin-bottom:-48px}.my-md--48--force{margin-top:-48px!important;margin-bottom:-48px!important}.mt-md--48{margin-top:-48px}.mt-md--48--force{margin-top:-48px!important}.mr-md--48{margin-right:-48px}.mr-md--48--force{margin-right:-48px!important}.mb-md--48{margin-bottom:-48px}.mb-md--48--force{margin-bottom:-48px!important}.ml-md--48{margin-left:-48px}.ml-md--48--force{margin-left:-48px!important}.m-md--44{margin:-44px}.m-md--44--force{margin:-44px!important}.mx-md--44{margin-right:-44px;margin-left:-44px}.mx-md--44--force{margin-right:-44px!important;margin-left:-44px!important}.my-md--44{margin-top:-44px;margin-bottom:-44px}.my-md--44--force{margin-top:-44px!important;margin-bottom:-44px!important}.mt-md--44{margin-top:-44px}.mt-md--44--force{margin-top:-44px!important}.mr-md--44{margin-right:-44px}.mr-md--44--force{margin-right:-44px!important}.mb-md--44{margin-bottom:-44px}.mb-md--44--force{margin-bottom:-44px!important}.ml-md--44{margin-left:-44px}.ml-md--44--force{margin-left:-44px!important}.m-md--40{margin:-40px}.m-md--40--force{margin:-40px!important}.mx-md--40{margin-right:-40px;margin-left:-40px}.mx-md--40--force{margin-right:-40px!important;margin-left:-40px!important}.my-md--40{margin-top:-40px;margin-bottom:-40px}.my-md--40--force{margin-top:-40px!important;margin-bottom:-40px!important}.mt-md--40{margin-top:-40px}.mt-md--40--force{margin-top:-40px!important}.mr-md--40{margin-right:-40px}.mr-md--40--force{margin-right:-40px!important}.mb-md--40{margin-bottom:-40px}.mb-md--40--force{margin-bottom:-40px!important}.ml-md--40{margin-left:-40px}.ml-md--40--force{margin-left:-40px!important}.m-md--36{margin:-36px}.m-md--36--force{margin:-36px!important}.mx-md--36{margin-right:-36px;margin-left:-36px}.mx-md--36--force{margin-right:-36px!important;margin-left:-36px!important}.my-md--36{margin-top:-36px;margin-bottom:-36px}.my-md--36--force{margin-top:-36px!important;margin-bottom:-36px!important}.mt-md--36{margin-top:-36px}.mt-md--36--force{margin-top:-36px!important}.mr-md--36{margin-right:-36px}.mr-md--36--force{margin-right:-36px!important}.mb-md--36{margin-bottom:-36px}.mb-md--36--force{margin-bottom:-36px!important}.ml-md--36{margin-left:-36px}.ml-md--36--force{margin-left:-36px!important}.m-md--32{margin:-32px}.m-md--32--force{margin:-32px!important}.mx-md--32{margin-right:-32px;margin-left:-32px}.mx-md--32--force{margin-right:-32px!important;margin-left:-32px!important}.my-md--32{margin-top:-32px;margin-bottom:-32px}.my-md--32--force{margin-top:-32px!important;margin-bottom:-32px!important}.mt-md--32{margin-top:-32px}.mt-md--32--force{margin-top:-32px!important}.mr-md--32{margin-right:-32px}.mr-md--32--force{margin-right:-32px!important}.mb-md--32{margin-bottom:-32px}.mb-md--32--force{margin-bottom:-32px!important}.ml-md--32{margin-left:-32px}.ml-md--32--force{margin-left:-32px!important}.m-md--28{margin:-28px}.m-md--28--force{margin:-28px!important}.mx-md--28{margin-right:-28px;margin-left:-28px}.mx-md--28--force{margin-right:-28px!important;margin-left:-28px!important}.my-md--28{margin-top:-28px;margin-bottom:-28px}.my-md--28--force{margin-top:-28px!important;margin-bottom:-28px!important}.mt-md--28{margin-top:-28px}.mt-md--28--force{margin-top:-28px!important}.mr-md--28{margin-right:-28px}.mr-md--28--force{margin-right:-28px!important}.mb-md--28{margin-bottom:-28px}.mb-md--28--force{margin-bottom:-28px!important}.ml-md--28{margin-left:-28px}.ml-md--28--force{margin-left:-28px!important}.m-md--24{margin:-24px}.m-md--24--force{margin:-24px!important}.mx-md--24{margin-right:-24px;margin-left:-24px}.mx-md--24--force{margin-right:-24px!important;margin-left:-24px!important}.my-md--24{margin-top:-24px;margin-bottom:-24px}.my-md--24--force{margin-top:-24px!important;margin-bottom:-24px!important}.mt-md--24{margin-top:-24px}.mt-md--24--force{margin-top:-24px!important}.mr-md--24{margin-right:-24px}.mr-md--24--force{margin-right:-24px!important}.mb-md--24{margin-bottom:-24px}.mb-md--24--force{margin-bottom:-24px!important}.ml-md--24{margin-left:-24px}.ml-md--24--force{margin-left:-24px!important}.m-md--20{margin:-20px}.m-md--20--force{margin:-20px!important}.mx-md--20{margin-right:-20px;margin-left:-20px}.mx-md--20--force{margin-right:-20px!important;margin-left:-20px!important}.my-md--20{margin-top:-20px;margin-bottom:-20px}.my-md--20--force{margin-top:-20px!important;margin-bottom:-20px!important}.mt-md--20{margin-top:-20px}.mt-md--20--force{margin-top:-20px!important}.mr-md--20{margin-right:-20px}.mr-md--20--force{margin-right:-20px!important}.mb-md--20{margin-bottom:-20px}.mb-md--20--force{margin-bottom:-20px!important}.ml-md--20{margin-left:-20px}.ml-md--20--force{margin-left:-20px!important}.m-md--16{margin:-16px}.m-md--16--force{margin:-16px!important}.mx-md--16{margin-right:-16px;margin-left:-16px}.mx-md--16--force{margin-right:-16px!important;margin-left:-16px!important}.my-md--16{margin-top:-16px;margin-bottom:-16px}.my-md--16--force{margin-top:-16px!important;margin-bottom:-16px!important}.mt-md--16{margin-top:-16px}.mt-md--16--force{margin-top:-16px!important}.mr-md--16{margin-right:-16px}.mr-md--16--force{margin-right:-16px!important}.mb-md--16{margin-bottom:-16px}.mb-md--16--force{margin-bottom:-16px!important}.ml-md--16{margin-left:-16px}.ml-md--16--force{margin-left:-16px!important}.m-md--12{margin:-12px}.m-md--12--force{margin:-12px!important}.mx-md--12{margin-right:-12px;margin-left:-12px}.mx-md--12--force{margin-right:-12px!important;margin-left:-12px!important}.my-md--12{margin-top:-12px;margin-bottom:-12px}.my-md--12--force{margin-top:-12px!important;margin-bottom:-12px!important}.mt-md--12{margin-top:-12px}.mt-md--12--force{margin-top:-12px!important}.mr-md--12{margin-right:-12px}.mr-md--12--force{margin-right:-12px!important}.mb-md--12{margin-bottom:-12px}.mb-md--12--force{margin-bottom:-12px!important}.ml-md--12{margin-left:-12px}.ml-md--12--force{margin-left:-12px!important}.m-md--8{margin:-8px}.m-md--8--force{margin:-8px!important}.mx-md--8{margin-right:-8px;margin-left:-8px}.mx-md--8--force{margin-right:-8px!important;margin-left:-8px!important}.my-md--8{margin-top:-8px;margin-bottom:-8px}.my-md--8--force{margin-top:-8px!important;margin-bottom:-8px!important}.mt-md--8{margin-top:-8px}.mt-md--8--force{margin-top:-8px!important}.mr-md--8{margin-right:-8px}.mr-md--8--force{margin-right:-8px!important}.mb-md--8{margin-bottom:-8px}.mb-md--8--force{margin-bottom:-8px!important}.ml-md--8{margin-left:-8px}.ml-md--8--force{margin-left:-8px!important}.m-md--4{margin:-4px}.m-md--4--force{margin:-4px!important}.mx-md--4{margin-right:-4px;margin-left:-4px}.mx-md--4--force{margin-right:-4px!important;margin-left:-4px!important}.my-md--4{margin-top:-4px;margin-bottom:-4px}.my-md--4--force{margin-top:-4px!important;margin-bottom:-4px!important}.mt-md--4{margin-top:-4px}.mt-md--4--force{margin-top:-4px!important}.mr-md--4{margin-right:-4px}.mr-md--4--force{margin-right:-4px!important}.mb-md--4{margin-bottom:-4px}.mb-md--4--force{margin-bottom:-4px!important}.ml-md--4{margin-left:-4px}.ml-md--4--force{margin-left:-4px!important}.m-md-0{margin:0}.m-md-0--force{margin:0!important}.mx-md-0{margin-right:0;margin-left:0}.mx-md-0--force{margin-right:0!important;margin-left:0!important}.my-md-0{margin-top:0;margin-bottom:0}.my-md-0--force{margin-top:0!important;margin-bottom:0!important}.mt-md-0{margin-top:0}.mt-md-0--force{margin-top:0!important}.mr-md-0{margin-right:0}.mr-md-0--force{margin-right:0!important}.masonry-gap-md-0>*,.mb-md-0{margin-bottom:0}.mb-md-0--force{margin-bottom:0!important}.ml-md-0{margin-left:0}.ml-md-0--force{margin-left:0!important}.m-md-4{margin:4px}.m-md-4--force{margin:4px!important}.mx-md-4{margin-right:4px;margin-left:4px}.mx-md-4--force{margin-right:4px!important;margin-left:4px!important}.my-md-4{margin-top:4px;margin-bottom:4px}.my-md-4--force{margin-top:4px!important;margin-bottom:4px!important}.mt-md-4{margin-top:4px}.mt-md-4--force{margin-top:4px!important}.mr-md-4{margin-right:4px}.mr-md-4--force{margin-right:4px!important}.masonry-gap-md-4>*,.mb-md-4{margin-bottom:4px}.mb-md-4--force{margin-bottom:4px!important}.ml-md-4{margin-left:4px}.ml-md-4--force{margin-left:4px!important}.m-md-8{margin:8px}.m-md-8--force{margin:8px!important}.mx-md-8{margin-right:8px;margin-left:8px}.mx-md-8--force{margin-right:8px!important;margin-left:8px!important}.my-md-8{margin-top:8px;margin-bottom:8px}.my-md-8--force{margin-top:8px!important;margin-bottom:8px!important}.mt-md-8{margin-top:8px}.mt-md-8--force{margin-top:8px!important}.mr-md-8{margin-right:8px}.mr-md-8--force{margin-right:8px!important}.masonry-gap-md-8>*,.mb-md-8{margin-bottom:8px}.mb-md-8--force{margin-bottom:8px!important}.ml-md-8{margin-left:8px}.ml-md-8--force{margin-left:8px!important}.m-md-12{margin:12px}.m-md-12--force{margin:12px!important}.mx-md-12{margin-right:12px;margin-left:12px}.mx-md-12--force{margin-right:12px!important;margin-left:12px!important}.my-md-12{margin-top:12px;margin-bottom:12px}.my-md-12--force{margin-top:12px!important;margin-bottom:12px!important}.mt-md-12{margin-top:12px}.mt-md-12--force{margin-top:12px!important}.mr-md-12{margin-right:12px}.mr-md-12--force{margin-right:12px!important}.masonry-gap-md-12>*,.mb-md-12{margin-bottom:12px}.mb-md-12--force{margin-bottom:12px!important}.ml-md-12{margin-left:12px}.ml-md-12--force{margin-left:12px!important}.m-md-16{margin:16px}.m-md-16--force{margin:16px!important}.mx-md-16{margin-right:16px;margin-left:16px}.mx-md-16--force{margin-right:16px!important;margin-left:16px!important}.my-md-16{margin-top:16px;margin-bottom:16px}.my-md-16--force{margin-top:16px!important;margin-bottom:16px!important}.mt-md-16{margin-top:16px}.mt-md-16--force{margin-top:16px!important}.mr-md-16{margin-right:16px}.mr-md-16--force{margin-right:16px!important}.masonry-gap-md-16>*,.mb-md-16{margin-bottom:16px}.mb-md-16--force{margin-bottom:16px!important}.ml-md-16{margin-left:16px}.ml-md-16--force{margin-left:16px!important}.m-md-20{margin:20px}.m-md-20--force{margin:20px!important}.mx-md-20{margin-right:20px;margin-left:20px}.mx-md-20--force{margin-right:20px!important;margin-left:20px!important}.my-md-20{margin-top:20px;margin-bottom:20px}.my-md-20--force{margin-top:20px!important;margin-bottom:20px!important}.mt-md-20{margin-top:20px}.mt-md-20--force{margin-top:20px!important}.mr-md-20{margin-right:20px}.mr-md-20--force{margin-right:20px!important}.masonry-gap-md-20>*,.mb-md-20{margin-bottom:20px}.mb-md-20--force{margin-bottom:20px!important}.ml-md-20{margin-left:20px}.ml-md-20--force{margin-left:20px!important}.m-md-24{margin:24px}.m-md-24--force{margin:24px!important}.mx-md-24{margin-right:24px;margin-left:24px}.mx-md-24--force{margin-right:24px!important;margin-left:24px!important}.my-md-24{margin-top:24px;margin-bottom:24px}.my-md-24--force{margin-top:24px!important;margin-bottom:24px!important}.mt-md-24{margin-top:24px}.mt-md-24--force{margin-top:24px!important}.mr-md-24{margin-right:24px}.mr-md-24--force{margin-right:24px!important}.masonry-gap-md-24>*,.mb-md-24{margin-bottom:24px}.mb-md-24--force{margin-bottom:24px!important}.ml-md-24{margin-left:24px}.ml-md-24--force{margin-left:24px!important}.m-md-28{margin:28px}.m-md-28--force{margin:28px!important}.mx-md-28{margin-right:28px;margin-left:28px}.mx-md-28--force{margin-right:28px!important;margin-left:28px!important}.my-md-28{margin-top:28px;margin-bottom:28px}.my-md-28--force{margin-top:28px!important;margin-bottom:28px!important}.mt-md-28{margin-top:28px}.mt-md-28--force{margin-top:28px!important}.mr-md-28{margin-right:28px}.mr-md-28--force{margin-right:28px!important}.masonry-gap-md-28>*,.mb-md-28{margin-bottom:28px}.mb-md-28--force{margin-bottom:28px!important}.ml-md-28{margin-left:28px}.ml-md-28--force{margin-left:28px!important}.m-md-32{margin:32px}.m-md-32--force{margin:32px!important}.mx-md-32{margin-right:32px;margin-left:32px}.mx-md-32--force{margin-right:32px!important;margin-left:32px!important}.my-md-32{margin-top:32px;margin-bottom:32px}.my-md-32--force{margin-top:32px!important;margin-bottom:32px!important}.mt-md-32{margin-top:32px}.mt-md-32--force{margin-top:32px!important}.mr-md-32{margin-right:32px}.mr-md-32--force{margin-right:32px!important}.masonry-gap-md-32>*,.mb-md-32{margin-bottom:32px}.mb-md-32--force{margin-bottom:32px!important}.ml-md-32{margin-left:32px}.ml-md-32--force{margin-left:32px!important}.m-md-36{margin:36px}.m-md-36--force{margin:36px!important}.mx-md-36{margin-right:36px;margin-left:36px}.mx-md-36--force{margin-right:36px!important;margin-left:36px!important}.my-md-36{margin-top:36px;margin-bottom:36px}.my-md-36--force{margin-top:36px!important;margin-bottom:36px!important}.mt-md-36{margin-top:36px}.mt-md-36--force{margin-top:36px!important}.mr-md-36{margin-right:36px}.mr-md-36--force{margin-right:36px!important}.masonry-gap-md-36>*,.mb-md-36{margin-bottom:36px}.mb-md-36--force{margin-bottom:36px!important}.ml-md-36{margin-left:36px}.ml-md-36--force{margin-left:36px!important}.m-md-40{margin:40px}.m-md-40--force{margin:40px!important}.mx-md-40{margin-right:40px;margin-left:40px}.mx-md-40--force{margin-right:40px!important;margin-left:40px!important}.my-md-40{margin-top:40px;margin-bottom:40px}.my-md-40--force{margin-top:40px!important;margin-bottom:40px!important}.mt-md-40{margin-top:40px}.mt-md-40--force{margin-top:40px!important}.mr-md-40{margin-right:40px}.mr-md-40--force{margin-right:40px!important}.masonry-gap-md-40>*,.mb-md-40{margin-bottom:40px}.mb-md-40--force{margin-bottom:40px!important}.ml-md-40{margin-left:40px}.ml-md-40--force{margin-left:40px!important}.m-md-44{margin:44px}.m-md-44--force{margin:44px!important}.mx-md-44{margin-right:44px;margin-left:44px}.mx-md-44--force{margin-right:44px!important;margin-left:44px!important}.my-md-44{margin-top:44px;margin-bottom:44px}.my-md-44--force{margin-top:44px!important;margin-bottom:44px!important}.mt-md-44{margin-top:44px}.mt-md-44--force{margin-top:44px!important}.mr-md-44{margin-right:44px}.mr-md-44--force{margin-right:44px!important}.masonry-gap-md-44>*,.mb-md-44{margin-bottom:44px}.mb-md-44--force{margin-bottom:44px!important}.ml-md-44{margin-left:44px}.ml-md-44--force{margin-left:44px!important}.m-md-48{margin:48px}.m-md-48--force{margin:48px!important}.mx-md-48{margin-right:48px;margin-left:48px}.mx-md-48--force{margin-right:48px!important;margin-left:48px!important}.my-md-48{margin-top:48px;margin-bottom:48px}.my-md-48--force{margin-top:48px!important;margin-bottom:48px!important}.mt-md-48{margin-top:48px}.mt-md-48--force{margin-top:48px!important}.mr-md-48{margin-right:48px}.mr-md-48--force{margin-right:48px!important}.masonry-gap-md-48>*,.mb-md-48{margin-bottom:48px}.mb-md-48--force{margin-bottom:48px!important}.ml-md-48{margin-left:48px}.ml-md-48--force{margin-left:48px!important}.m-md-52{margin:52px}.m-md-52--force{margin:52px!important}.mx-md-52{margin-right:52px;margin-left:52px}.mx-md-52--force{margin-right:52px!important;margin-left:52px!important}.my-md-52{margin-top:52px;margin-bottom:52px}.my-md-52--force{margin-top:52px!important;margin-bottom:52px!important}.mt-md-52{margin-top:52px}.mt-md-52--force{margin-top:52px!important}.mr-md-52{margin-right:52px}.mr-md-52--force{margin-right:52px!important}.mb-md-52{margin-bottom:52px}.mb-md-52--force{margin-bottom:52px!important}.ml-md-52{margin-left:52px}.ml-md-52--force{margin-left:52px!important}.m-md-56{margin:56px}.m-md-56--force{margin:56px!important}.mx-md-56{margin-right:56px;margin-left:56px}.mx-md-56--force{margin-right:56px!important;margin-left:56px!important}.my-md-56{margin-top:56px;margin-bottom:56px}.my-md-56--force{margin-top:56px!important;margin-bottom:56px!important}.mt-md-56{margin-top:56px}.mt-md-56--force{margin-top:56px!important}.mr-md-56{margin-right:56px}.mr-md-56--force{margin-right:56px!important}.mb-md-56{margin-bottom:56px}.mb-md-56--force{margin-bottom:56px!important}.ml-md-56{margin-left:56px}.ml-md-56--force{margin-left:56px!important}.m-md-60{margin:60px}.m-md-60--force{margin:60px!important}.mx-md-60{margin-right:60px;margin-left:60px}.mx-md-60--force{margin-right:60px!important;margin-left:60px!important}.my-md-60{margin-top:60px;margin-bottom:60px}.my-md-60--force{margin-top:60px!important;margin-bottom:60px!important}.mt-md-60{margin-top:60px}.mt-md-60--force{margin-top:60px!important}.mr-md-60{margin-right:60px}.mr-md-60--force{margin-right:60px!important}.mb-md-60{margin-bottom:60px}.mb-md-60--force{margin-bottom:60px!important}.ml-md-60{margin-left:60px}.ml-md-60--force{margin-left:60px!important}.m-md-64{margin:64px}.m-md-64--force{margin:64px!important}.mx-md-64{margin-right:64px;margin-left:64px}.mx-md-64--force{margin-right:64px!important;margin-left:64px!important}.my-md-64{margin-top:64px;margin-bottom:64px}.my-md-64--force{margin-top:64px!important;margin-bottom:64px!important}.mt-md-64{margin-top:64px}.mt-md-64--force{margin-top:64px!important}.mr-md-64{margin-right:64px}.mr-md-64--force{margin-right:64px!important}.mb-md-64{margin-bottom:64px}.mb-md-64--force{margin-bottom:64px!important}.ml-md-64{margin-left:64px}.ml-md-64--force{margin-left:64px!important}.m-md-auto{margin:auto}.m-md-auto--force{margin:auto!important}.mt-md-auto{margin-top:auto}.mt-md-auto--force{margin-top:auto!important}.mr-md-auto{margin-right:auto}.mr-md-auto--force{margin-right:auto!important}.mb-md-auto{margin-bottom:auto}.mb-md-auto--force{margin-bottom:auto!important}.ml-md-auto{margin-left:auto}.ml-md-auto--force{margin-left:auto!important}.mx-md-auto{margin-right:auto;margin-left:auto}.mx-md-auto--force{margin-right:auto!important;margin-left:auto!important}.my-md-auto{margin-top:auto;margin-bottom:auto}.my-md-auto--force{margin-top:auto!important;margin-bottom:auto!important}.p-md-0{padding:0}.p-md-0--force{padding:0!important}.px-md-0{padding-right:0;padding-left:0}.px-md-0--force{padding-right:0!important;padding-left:0!important}.py-md-0{padding-top:0;padding-bottom:0}.py-md-0--force{padding-top:0!important;padding-bottom:0!important}.pt-md-0{padding-top:0}.pt-md-0--force{padding-top:0!important}.pr-md-0{padding-right:0}.pr-md-0--force{padding-right:0!important}.pb-md-0{padding-bottom:0}.pb-md-0--force{padding-bottom:0!important}.pl-md-0{padding-left:0}.pl-md-0--force{padding-left:0!important}.p-md-4{padding:4px}.p-md-4--force{padding:4px!important}.px-md-4{padding-right:4px;padding-left:4px}.px-md-4--force{padding-right:4px!important;padding-left:4px!important}.py-md-4{padding-top:4px;padding-bottom:4px}.py-md-4--force{padding-top:4px!important;padding-bottom:4px!important}.pt-md-4{padding-top:4px}.pt-md-4--force{padding-top:4px!important}.pr-md-4{padding-right:4px}.pr-md-4--force{padding-right:4px!important}.pb-md-4{padding-bottom:4px}.pb-md-4--force{padding-bottom:4px!important}.pl-md-4{padding-left:4px}.pl-md-4--force{padding-left:4px!important}.p-md-8{padding:8px}.p-md-8--force{padding:8px!important}.px-md-8{padding-right:8px;padding-left:8px}.px-md-8--force{padding-right:8px!important;padding-left:8px!important}.py-md-8{padding-top:8px;padding-bottom:8px}.py-md-8--force{padding-top:8px!important;padding-bottom:8px!important}.pt-md-8{padding-top:8px}.pt-md-8--force{padding-top:8px!important}.pr-md-8{padding-right:8px}.pr-md-8--force{padding-right:8px!important}.pb-md-8{padding-bottom:8px}.pb-md-8--force{padding-bottom:8px!important}.pl-md-8{padding-left:8px}.pl-md-8--force{padding-left:8px!important}.p-md-12{padding:12px}.p-md-12--force{padding:12px!important}.px-md-12{padding-right:12px;padding-left:12px}.px-md-12--force{padding-right:12px!important;padding-left:12px!important}.py-md-12{padding-top:12px;padding-bottom:12px}.py-md-12--force{padding-top:12px!important;padding-bottom:12px!important}.pt-md-12{padding-top:12px}.pt-md-12--force{padding-top:12px!important}.pr-md-12{padding-right:12px}.pr-md-12--force{padding-right:12px!important}.pb-md-12{padding-bottom:12px}.pb-md-12--force{padding-bottom:12px!important}.pl-md-12{padding-left:12px}.pl-md-12--force{padding-left:12px!important}.p-md-16{padding:16px}.p-md-16--force{padding:16px!important}.px-md-16{padding-right:16px;padding-left:16px}.px-md-16--force{padding-right:16px!important;padding-left:16px!important}.py-md-16{padding-top:16px;padding-bottom:16px}.py-md-16--force{padding-top:16px!important;padding-bottom:16px!important}.pt-md-16{padding-top:16px}.pt-md-16--force{padding-top:16px!important}.pr-md-16{padding-right:16px}.pr-md-16--force{padding-right:16px!important}.pb-md-16{padding-bottom:16px}.pb-md-16--force{padding-bottom:16px!important}.pl-md-16{padding-left:16px}.pl-md-16--force{padding-left:16px!important}.p-md-20{padding:20px}.p-md-20--force{padding:20px!important}.px-md-20{padding-right:20px;padding-left:20px}.px-md-20--force{padding-right:20px!important;padding-left:20px!important}.py-md-20{padding-top:20px;padding-bottom:20px}.py-md-20--force{padding-top:20px!important;padding-bottom:20px!important}.pt-md-20{padding-top:20px}.pt-md-20--force{padding-top:20px!important}.pr-md-20{padding-right:20px}.pr-md-20--force{padding-right:20px!important}.pb-md-20{padding-bottom:20px}.pb-md-20--force{padding-bottom:20px!important}.pl-md-20{padding-left:20px}.pl-md-20--force{padding-left:20px!important}.p-md-24{padding:24px}.p-md-24--force{padding:24px!important}.px-md-24{padding-right:24px;padding-left:24px}.px-md-24--force{padding-right:24px!important;padding-left:24px!important}.py-md-24{padding-top:24px;padding-bottom:24px}.py-md-24--force{padding-top:24px!important;padding-bottom:24px!important}.pt-md-24{padding-top:24px}.pt-md-24--force{padding-top:24px!important}.pr-md-24{padding-right:24px}.pr-md-24--force{padding-right:24px!important}.pb-md-24{padding-bottom:24px}.pb-md-24--force{padding-bottom:24px!important}.pl-md-24{padding-left:24px}.pl-md-24--force{padding-left:24px!important}.p-md-28{padding:28px}.p-md-28--force{padding:28px!important}.px-md-28{padding-right:28px;padding-left:28px}.px-md-28--force{padding-right:28px!important;padding-left:28px!important}.py-md-28{padding-top:28px;padding-bottom:28px}.py-md-28--force{padding-top:28px!important;padding-bottom:28px!important}.pt-md-28{padding-top:28px}.pt-md-28--force{padding-top:28px!important}.pr-md-28{padding-right:28px}.pr-md-28--force{padding-right:28px!important}.pb-md-28{padding-bottom:28px}.pb-md-28--force{padding-bottom:28px!important}.pl-md-28{padding-left:28px}.pl-md-28--force{padding-left:28px!important}.p-md-32{padding:32px}.p-md-32--force{padding:32px!important}.px-md-32{padding-right:32px;padding-left:32px}.px-md-32--force{padding-right:32px!important;padding-left:32px!important}.py-md-32{padding-top:32px;padding-bottom:32px}.py-md-32--force{padding-top:32px!important;padding-bottom:32px!important}.pt-md-32{padding-top:32px}.pt-md-32--force{padding-top:32px!important}.pr-md-32{padding-right:32px}.pr-md-32--force{padding-right:32px!important}.pb-md-32{padding-bottom:32px}.pb-md-32--force{padding-bottom:32px!important}.pl-md-32{padding-left:32px}.pl-md-32--force{padding-left:32px!important}.p-md-36{padding:36px}.p-md-36--force{padding:36px!important}.px-md-36{padding-right:36px;padding-left:36px}.px-md-36--force{padding-right:36px!important;padding-left:36px!important}.py-md-36{padding-top:36px;padding-bottom:36px}.py-md-36--force{padding-top:36px!important;padding-bottom:36px!important}.pt-md-36{padding-top:36px}.pt-md-36--force{padding-top:36px!important}.pr-md-36{padding-right:36px}.pr-md-36--force{padding-right:36px!important}.pb-md-36{padding-bottom:36px}.pb-md-36--force{padding-bottom:36px!important}.pl-md-36{padding-left:36px}.pl-md-36--force{padding-left:36px!important}.p-md-40{padding:40px}.p-md-40--force{padding:40px!important}.px-md-40{padding-right:40px;padding-left:40px}.px-md-40--force{padding-right:40px!important;padding-left:40px!important}.py-md-40{padding-top:40px;padding-bottom:40px}.py-md-40--force{padding-top:40px!important;padding-bottom:40px!important}.pt-md-40{padding-top:40px}.pt-md-40--force{padding-top:40px!important}.pr-md-40{padding-right:40px}.pr-md-40--force{padding-right:40px!important}.pb-md-40{padding-bottom:40px}.pb-md-40--force{padding-bottom:40px!important}.pl-md-40{padding-left:40px}.pl-md-40--force{padding-left:40px!important}.p-md-44{padding:44px}.p-md-44--force{padding:44px!important}.px-md-44{padding-right:44px;padding-left:44px}.px-md-44--force{padding-right:44px!important;padding-left:44px!important}.py-md-44{padding-top:44px;padding-bottom:44px}.py-md-44--force{padding-top:44px!important;padding-bottom:44px!important}.pt-md-44{padding-top:44px}.pt-md-44--force{padding-top:44px!important}.pr-md-44{padding-right:44px}.pr-md-44--force{padding-right:44px!important}.pb-md-44{padding-bottom:44px}.pb-md-44--force{padding-bottom:44px!important}.pl-md-44{padding-left:44px}.pl-md-44--force{padding-left:44px!important}.p-md-48{padding:48px}.p-md-48--force{padding:48px!important}.px-md-48{padding-right:48px;padding-left:48px}.px-md-48--force{padding-right:48px!important;padding-left:48px!important}.py-md-48{padding-top:48px;padding-bottom:48px}.py-md-48--force{padding-top:48px!important;padding-bottom:48px!important}.pt-md-48{padding-top:48px}.pt-md-48--force{padding-top:48px!important}.pr-md-48{padding-right:48px}.pr-md-48--force{padding-right:48px!important}.pb-md-48{padding-bottom:48px}.pb-md-48--force{padding-bottom:48px!important}.pl-md-48{padding-left:48px}.pl-md-48--force{padding-left:48px!important}.p-md-52{padding:52px}.p-md-52--force{padding:52px!important}.px-md-52{padding-right:52px;padding-left:52px}.px-md-52--force{padding-right:52px!important;padding-left:52px!important}.py-md-52{padding-top:52px;padding-bottom:52px}.py-md-52--force{padding-top:52px!important;padding-bottom:52px!important}.pt-md-52{padding-top:52px}.pt-md-52--force{padding-top:52px!important}.pr-md-52{padding-right:52px}.pr-md-52--force{padding-right:52px!important}.pb-md-52{padding-bottom:52px}.pb-md-52--force{padding-bottom:52px!important}.pl-md-52{padding-left:52px}.pl-md-52--force{padding-left:52px!important}.p-md-56{padding:56px}.p-md-56--force{padding:56px!important}.px-md-56{padding-right:56px;padding-left:56px}.px-md-56--force{padding-right:56px!important;padding-left:56px!important}.py-md-56{padding-top:56px;padding-bottom:56px}.py-md-56--force{padding-top:56px!important;padding-bottom:56px!important}.pt-md-56{padding-top:56px}.pt-md-56--force{padding-top:56px!important}.pr-md-56{padding-right:56px}.pr-md-56--force{padding-right:56px!important}.pb-md-56{padding-bottom:56px}.pb-md-56--force{padding-bottom:56px!important}.pl-md-56{padding-left:56px}.pl-md-56--force{padding-left:56px!important}.p-md-60{padding:60px}.p-md-60--force{padding:60px!important}.px-md-60{padding-right:60px;padding-left:60px}.px-md-60--force{padding-right:60px!important;padding-left:60px!important}.py-md-60{padding-top:60px;padding-bottom:60px}.py-md-60--force{padding-top:60px!important;padding-bottom:60px!important}.pt-md-60{padding-top:60px}.pt-md-60--force{padding-top:60px!important}.pr-md-60{padding-right:60px}.pr-md-60--force{padding-right:60px!important}.pb-md-60{padding-bottom:60px}.pb-md-60--force{padding-bottom:60px!important}.pl-md-60{padding-left:60px}.pl-md-60--force{padding-left:60px!important}.p-md-64{padding:64px}.p-md-64--force{padding:64px!important}.px-md-64{padding-right:64px;padding-left:64px}.px-md-64--force{padding-right:64px!important;padding-left:64px!important}.py-md-64{padding-top:64px;padding-bottom:64px}.py-md-64--force{padding-top:64px!important;padding-bottom:64px!important}.pt-md-64{padding-top:64px}.pt-md-64--force{padding-top:64px!important}.pr-md-64{padding-right:64px}.pr-md-64--force{padding-right:64px!important}.pb-md-64{padding-bottom:64px}.pb-md-64--force{padding-bottom:64px!important}.pl-md-64{padding-left:64px}.pl-md-64--force{padding-left:64px!important}.p-md-68{padding:68px}.p-md-68--force{padding:68px!important}.px-md-68{padding-right:68px;padding-left:68px}.px-md-68--force{padding-right:68px!important;padding-left:68px!important}.py-md-68{padding-top:68px;padding-bottom:68px}.py-md-68--force{padding-top:68px!important;padding-bottom:68px!important}.pt-md-68{padding-top:68px}.pt-md-68--force{padding-top:68px!important}.pr-md-68{padding-right:68px}.pr-md-68--force{padding-right:68px!important}.pb-md-68{padding-bottom:68px}.pb-md-68--force{padding-bottom:68px!important}.pl-md-68{padding-left:68px}.pl-md-68--force{padding-left:68px!important}.p-md-72{padding:72px}.p-md-72--force{padding:72px!important}.px-md-72{padding-right:72px;padding-left:72px}.px-md-72--force{padding-right:72px!important;padding-left:72px!important}.py-md-72{padding-top:72px;padding-bottom:72px}.py-md-72--force{padding-top:72px!important;padding-bottom:72px!important}.pt-md-72{padding-top:72px}.pt-md-72--force{padding-top:72px!important}.pr-md-72{padding-right:72px}.pr-md-72--force{padding-right:72px!important}.pb-md-72{padding-bottom:72px}.pb-md-72--force{padding-bottom:72px!important}.pl-md-72{padding-left:72px}.pl-md-72--force{padding-left:72px!important}.p-md-76{padding:76px}.p-md-76--force{padding:76px!important}.px-md-76{padding-right:76px;padding-left:76px}.px-md-76--force{padding-right:76px!important;padding-left:76px!important}.py-md-76{padding-top:76px;padding-bottom:76px}.py-md-76--force{padding-top:76px!important;padding-bottom:76px!important}.pt-md-76{padding-top:76px}.pt-md-76--force{padding-top:76px!important}.pr-md-76{padding-right:76px}.pr-md-76--force{padding-right:76px!important}.pb-md-76{padding-bottom:76px}.pb-md-76--force{padding-bottom:76px!important}.pl-md-76{padding-left:76px}.pl-md-76--force{padding-left:76px!important}.p-md-80{padding:80px}.p-md-80--force{padding:80px!important}.px-md-80{padding-right:80px;padding-left:80px}.px-md-80--force{padding-right:80px!important;padding-left:80px!important}.py-md-80{padding-top:80px;padding-bottom:80px}.py-md-80--force{padding-top:80px!important;padding-bottom:80px!important}.pt-md-80{padding-top:80px}.pt-md-80--force{padding-top:80px!important}.pr-md-80{padding-right:80px}.pr-md-80--force{padding-right:80px!important}.pb-md-80{padding-bottom:80px}.pb-md-80--force{padding-bottom:80px!important}.pl-md-80{padding-left:80px}.pl-md-80--force{padding-left:80px!important}.p-md-84{padding:84px}.p-md-84--force{padding:84px!important}.px-md-84{padding-right:84px;padding-left:84px}.px-md-84--force{padding-right:84px!important;padding-left:84px!important}.py-md-84{padding-top:84px;padding-bottom:84px}.py-md-84--force{padding-top:84px!important;padding-bottom:84px!important}.pt-md-84{padding-top:84px}.pt-md-84--force{padding-top:84px!important}.pr-md-84{padding-right:84px}.pr-md-84--force{padding-right:84px!important}.pb-md-84{padding-bottom:84px}.pb-md-84--force{padding-bottom:84px!important}.pl-md-84{padding-left:84px}.pl-md-84--force{padding-left:84px!important}.p-md-88{padding:88px}.p-md-88--force{padding:88px!important}.px-md-88{padding-right:88px;padding-left:88px}.px-md-88--force{padding-right:88px!important;padding-left:88px!important}.py-md-88{padding-top:88px;padding-bottom:88px}.py-md-88--force{padding-top:88px!important;padding-bottom:88px!important}.pt-md-88{padding-top:88px}.pt-md-88--force{padding-top:88px!important}.pr-md-88{padding-right:88px}.pr-md-88--force{padding-right:88px!important}.pb-md-88{padding-bottom:88px}.pb-md-88--force{padding-bottom:88px!important}.pl-md-88{padding-left:88px}.pl-md-88--force{padding-left:88px!important}.p-md-92{padding:92px}.p-md-92--force{padding:92px!important}.px-md-92{padding-right:92px;padding-left:92px}.px-md-92--force{padding-right:92px!important;padding-left:92px!important}.py-md-92{padding-top:92px;padding-bottom:92px}.py-md-92--force{padding-top:92px!important;padding-bottom:92px!important}.pt-md-92{padding-top:92px}.pt-md-92--force{padding-top:92px!important}.pr-md-92{padding-right:92px}.pr-md-92--force{padding-right:92px!important}.pb-md-92{padding-bottom:92px}.pb-md-92--force{padding-bottom:92px!important}.pl-md-92{padding-left:92px}.pl-md-92--force{padding-left:92px!important}.p-md-96{padding:96px}.p-md-96--force{padding:96px!important}.px-md-96{padding-right:96px;padding-left:96px}.px-md-96--force{padding-right:96px!important;padding-left:96px!important}.py-md-96{padding-top:96px;padding-bottom:96px}.py-md-96--force{padding-top:96px!important;padding-bottom:96px!important}.pt-md-96{padding-top:96px}.pt-md-96--force{padding-top:96px!important}.pr-md-96{padding-right:96px}.pr-md-96--force{padding-right:96px!important}.pb-md-96{padding-bottom:96px}.pb-md-96--force{padding-bottom:96px!important}.pl-md-96{padding-left:96px}.pl-md-96--force{padding-left:96px!important}.d-md-grid,.grid-md-1,.grid-md-10,.grid-md-11,.grid-md-12,.grid-md-2,.grid-md-3,.grid-md-4,.grid-md-5,.grid-md-6,.grid-md-7,.grid-md-8,.grid-md-9{display:grid}.grid-md-1{grid-template-columns:repeat(1,minmax(0,1fr))}.colspan-md-1,.span-md-1c{grid-column-end:span 1}.rowspan-md-1,.span-md-1r{grid-row-end:span 1}.grid-md-2{grid-template-columns:repeat(2,minmax(0,1fr))}.colspan-md-2,.span-md-2c{grid-column-end:span 2}.rowspan-md-2,.span-md-2r{grid-row-end:span 2}.grid-md-3{grid-template-columns:repeat(3,minmax(0,1fr))}.colspan-md-3,.span-md-3c{grid-column-end:span 3}.rowspan-md-3,.span-md-3r{grid-row-end:span 3}.grid-md-4{grid-template-columns:repeat(4,minmax(0,1fr))}.colspan-md-4,.span-md-4c{grid-column-end:span 4}.rowspan-md-4,.span-md-4r{grid-row-end:span 4}.grid-md-5{grid-template-columns:repeat(5,minmax(0,1fr))}.colspan-md-5,.span-md-5c{grid-column-end:span 5}.rowspan-md-5,.span-md-5r{grid-row-end:span 5}.grid-md-6{grid-template-columns:repeat(6,minmax(0,1fr))}.colspan-md-6,.span-md-6c{grid-column-end:span 6}.rowspan-md-6,.span-md-6r{grid-row-end:span 6}.grid-md-7{grid-template-columns:repeat(7,minmax(0,1fr))}.colspan-md-7,.span-md-7c{grid-column-end:span 7}.rowspan-md-7,.span-md-7r{grid-row-end:span 7}.grid-md-8{grid-template-columns:repeat(8,minmax(0,1fr))}.colspan-md-8,.span-md-8c{grid-column-end:span 8}.rowspan-md-8,.span-md-8r{grid-row-end:span 8}.grid-md-9{grid-template-columns:repeat(9,minmax(0,1fr))}.colspan-md-9,.span-md-9c{grid-column-end:span 9}.rowspan-md-9,.span-md-9r{grid-row-end:span 9}.grid-md-10{grid-template-columns:repeat(10,minmax(0,1fr))}.colspan-md-10,.span-md-10c{grid-column-end:span 10}.rowspan-md-10,.span-md-10r{grid-row-end:span 10}.grid-md-11{grid-template-columns:repeat(11,minmax(0,1fr))}.colspan-md-11,.span-md-11c{grid-column-end:span 11}.rowspan-md-11,.span-md-11r{grid-row-end:span 11}.grid-md-12{grid-template-columns:repeat(12,minmax(0,1fr))}.colspan-md-12,.span-md-12c{grid-column-end:span 12}.rowspan-md-12,.span-md-12r{grid-row-end:span 12}.row .col-md-1{flex-basis:8.33333%}.row .col-offset-md-1{margin-left:8.33333%}.row .col-md-2{flex-basis:16.66667%}.row .col-offset-md-2{margin-left:16.66667%}.row .col-md-3{flex-basis:25%}.row .col-offset-md-3{margin-left:25%}.row .col-md-4{flex-basis:33.33333%}.row .col-offset-md-4{margin-left:33.33333%}.row .col-md-5{flex-basis:41.66667%}.row .col-offset-md-5{margin-left:41.66667%}.row .col-md-6{flex-basis:50%}.row .col-offset-md-6{margin-left:50%}.row .col-md-7{flex-basis:58.33333%}.row .col-offset-md-7{margin-left:58.33333%}.row .col-md-8{flex-basis:66.66667%}.row .col-offset-md-8{margin-left:66.66667%}.row .col-md-9{flex-basis:75%}.row .col-offset-md-9{margin-left:75%}.row .col-md-10{flex-basis:83.33333%}.row .col-offset-md-10{margin-left:83.33333%}.row .col-md-11{flex-basis:91.66667%}.row .col-offset-md-11{margin-left:91.66667%}.flex-md-basis-1,.row .col-md-12{flex-basis:100%}.row .col-offset-md-12{margin-left:100%}.row>div[class*=col-].align-start{align-self:flex-start}.row>div[class*=col-].align-center{align-self:center}.row>div[class*=col-].align-end{align-self:flex-end}.row.align-start{justify-content:flex-start}.row.align-center{justify-content:center}.row.align-end{justify-content:flex-end}.row.space-around{justify-content:space-around}.row.space-between{justify-content:space-between}.gap-md-0{column-gap:0;row-gap:0}.gap-md-4{column-gap:4px;row-gap:4px}.gap-md-8{column-gap:8px;row-gap:8px}.gap-md-12{column-gap:12px;row-gap:12px}.gap-md-16{column-gap:16px;row-gap:16px}.gap-md-20{column-gap:20px;row-gap:20px}.gap-md-24{column-gap:24px;row-gap:24px}.gap-md-28{column-gap:28px;row-gap:28px}.gap-md-32{column-gap:32px;row-gap:32px}.gap-md-36{column-gap:36px;row-gap:36px}.gap-md-40{column-gap:40px;row-gap:40px}.gap-md-44{column-gap:44px;row-gap:44px}.gap-md-48{column-gap:48px;row-gap:48px}.z-index-md--1{z-index:-1}.z-index-md--1--force{z-index:-1!important}.z-index-md-0{z-index:0}.z-index-md-0--force{z-index:0!important}.z-index-md-1{z-index:1}.z-index-md-1--force{z-index:1!important}.z-index-md-2{z-index:2}.z-index-md-2--force{z-index:2!important}.z-index-md-3{z-index:3}.z-index-md-3--force{z-index:3!important}.z-index-md-4{z-index:4}.z-index-md-4--force{z-index:4!important}.z-index-md-5{z-index:5}.z-index-md-5--force{z-index:5!important}.z-index-md-6{z-index:6}.z-index-md-6--force{z-index:6!important}.z-index-md-7{z-index:7}.z-index-md-7--force{z-index:7!important}.z-index-md-8{z-index:8}.z-index-md-8--force{z-index:8!important}.z-index-md-9{z-index:9}.z-index-md-9--force{z-index:9!important}.z-index-md-10{z-index:10}.z-index-md-10--force{z-index:10!important}.z-index-md-11{z-index:11}.z-index-md-11--force{z-index:11!important}.z-index-md-12{z-index:12}.z-index-md-12--force{z-index:12!important}.z-index-md-13{z-index:13}.z-index-md-13--force{z-index:13!important}.z-index-md-14{z-index:14}.z-index-md-14--force{z-index:14!important}.z-index-md-15{z-index:15}.z-index-md-15--force{z-index:15!important}.z-index-md-16{z-index:16}.z-index-md-16--force{z-index:16!important}.z-index-md-17{z-index:17}.z-index-md-17--force{z-index:17!important}.z-index-md-18{z-index:18}.z-index-md-18--force{z-index:18!important}.z-index-md-19{z-index:19}.z-index-md-19--force{z-index:19!important}.z-index-md-20{z-index:20}.z-index-md-20--force{z-index:20!important}.z-index-md-21{z-index:21}.z-index-md-21--force{z-index:21!important}.z-index-md-22{z-index:22}.z-index-md-22--force{z-index:22!important}.z-index-md-23{z-index:23}.z-index-md-23--force{z-index:23!important}.z-index-md-24{z-index:24}.z-index-md-24--force{z-index:24!important}.order-md--12{order:-12}.order-md--12--force{order:-12!important}.order-md--11{order:-11}.order-md--11--force{order:-11!important}.order-md--10{order:-10}.order-md--10--force{order:-10!important}.order-md--9{order:-9}.order-md--9--force{order:-9!important}.order-md--8{order:-8}.order-md--8--force{order:-8!important}.order-md--7{order:-7}.order-md--7--force{order:-7!important}.order-md--6{order:-6}.order-md--6--force{order:-6!important}.order-md--5{order:-5}.order-md--5--force{order:-5!important}.order-md--4{order:-4}.order-md--4--force{order:-4!important}.order-md--3{order:-3}.order-md--3--force{order:-3!important}.order-md--2{order:-2}.order-md--2--force{order:-2!important}.order-md--1{order:-1}.order-md--1--force{order:-1!important}.order-md-0{order:0}.order-md-0--force{order:0!important}.order-md-1{order:1}.order-md-1--force{order:1!important}.order-md-2{order:2}.order-md-2--force{order:2!important}.order-md-3{order:3}.order-md-3--force{order:3!important}.order-md-4{order:4}.order-md-4--force{order:4!important}.order-md-5{order:5}.order-md-5--force{order:5!important}.order-md-6{order:6}.order-md-6--force{order:6!important}.order-md-7{order:7}.order-md-7--force{order:7!important}.order-md-8{order:8}.order-md-8--force{order:8!important}.order-md-9{order:9}.order-md-9--force{order:9!important}.order-md-10{order:10}.order-md-10--force{order:10!important}.order-md-11{order:11}.order-md-11--force{order:11!important}.order-md-12{order:12}.order-md-12--force{order:12!important}.order-md-inherit{order:inherit}.order-md-inherit--force{order:inherit!important}.order-md-initial{order:initial}.order-md-initial--force{order:initial!important}.place-md-top{top:0}.place-md-top--force{top:0!important}.place-md-right{right:0}.place-md-right--force{right:0!important}.place-md-bottom{bottom:0}.place-md-bottom--force{bottom:0!important}.place-md-left{left:0}.place-md-left--force{left:0!important}.position-md-relative{position:relative}.position-md-relative--force{position:relative!important}.position-md-absolute{position:absolute}.position-md-absolute--force{position:absolute!important}.position-md-static{position:static}.position-md-static--force{position:static!important}.position-md-fixed{position:fixed}.position-md-fixed--force{position:fixed!important}.d-md-none{display:none}.d-md-none--force{display:none!important}.d-md-inline{display:inline}.d-md-inline--force{display:inline!important}.d-md-inline-block{display:inline-block}.d-md-inline-block--force{display:inline-block!important}.d-md-block{display:block}.d-md-block--force{display:block!important}.d-md-grid--force{display:grid!important}.d-md-table{display:table}.d-md-table--force{display:table!important}.d-md-table-cell{display:table-cell}.d-md-table-cell--force{display:table-cell!important}.d-md-table-row{display:table-row}.d-md-table-row--force{display:table-row!important}.d-md-inline-flex{display:inline-flex}.d-md-inline-flex--force{display:inline-flex!important}.d-md-flex{display:flex}.d-md-flex--force{display:flex!important}.flex-md-row{display:flex;flex-direction:row}.flex-md-row--force{display:flex!important;flex-direction:row!important}.flex-md-row-reverse{display:flex;flex-direction:row-reverse}.flex-md-row-reverse--force{display:flex!important;flex-direction:row-reverse!important}.flex-md-column{display:flex;flex-direction:column}.flex-md-column--force{display:flex!important;flex-direction:column!important}.flex-md-column-reverse{display:flex;flex-direction:column-reverse}.flex-md-column-reverse--force{display:flex!important;flex-direction:column-reverse!important}.flex-md-nowrap{flex-wrap:nowrap}.flex-md-nowrap--force{flex-wrap:nowrap!important}.flex-md-wrap{flex-wrap:wrap}.flex-md-wrap--force{flex-wrap:wrap!important}.flex-md-align-center{display:flex;align-items:center}.flex-md-align-center--force{display:flex!important;align-items:center!important}.flex-md-align-start{display:flex;align-items:flex-start}.flex-md-align-start--force{display:flex!important;align-items:flex-start!important}.flex-md-align-end{display:flex;align-items:flex-end}.flex-md-align-end--force{display:flex!important;align-items:flex-end!important}.flex-md-align-inherit{display:flex;align-items:inherit}.flex-md-align-inherit--force{display:flex!important;align-items:inherit!important}.flex-md-align-initial{display:flex;align-items:initial}.flex-md-align-initial--force{display:flex!important;align-items:initial!important}.flex-md-align-self-end{display:flex;align-self:flex-end}.flex-md-align-self-end--force{display:flex!important;align-self:flex-end!important}.flex-md-align-self-start{display:flex;align-self:flex-start}.flex-md-align-self-start--force{display:flex!important;align-self:flex-start!important}.flex-md-align-self-inherit{display:flex;align-self:inherit}.flex-md-align-self-inherit--force{display:flex!important;align-self:inherit!important}.flex-md-align-self-initial{display:flex;align-self:initial}.flex-md-align-self-initial--force{display:flex!important;align-self:initial!important}.flex-md-center-center{display:flex;justify-content:center;align-items:center}.flex-md-center-center--force{display:flex!important;justify-content:center!important;align-items:center!important}.flex-md-center,.flex-md-justify-center{display:flex;justify-content:center}.flex-md-center--force,.flex-md-justify-center--force{display:flex!important;justify-content:center!important}.flex-md-end,.flex-md-justify-end{display:flex;justify-content:flex-end}.flex-md-end--force,.flex-md-justify-end--force{display:flex!important;justify-content:flex-end!important}.flex-md-justify-start,.flex-md-start{display:flex;justify-content:flex-start}.flex-md-justify-start--force,.flex-md-start--force{display:flex!important;justify-content:flex-start!important}.flex-md-inherit,.flex-md-justify-inherit{display:flex;justify-content:inherit}.flex-md-inherit--force,.flex-md-justify-inherit--force{display:flex!important;justify-content:inherit!important}.flex-md-initial,.flex-md-justify-initial{display:flex;justify-content:initial}.flex-md-initial--force,.flex-md-justify-initial--force{display:flex!important;justify-content:initial!important}.flex-md-left{display:flex;justify-content:left}.flex-md-left--force{display:flex!important;justify-content:left!important}.flex-md-right{display:flex;justify-content:right}.flex-md-right--force{display:flex!important;justify-content:right!important}.flex-md-normal{display:flex;justify-content:normal}.flex-md-normal--force{display:flex!important;justify-content:normal!important}.flex-md-revert{display:flex;justify-content:revert}.flex-md-revert--force{display:flex!important;justify-content:revert!important}.flex-md-around,.flex-md-space-around{display:flex;justify-content:space-around}.flex-md-around--force,.flex-md-space-around--force{display:flex!important;justify-content:space-around!important}.flex-md-between,.flex-md-space-between{display:flex;justify-content:space-between}.flex-md-between--force,.flex-md-space-between--force{display:flex!important;justify-content:space-between!important}.flex-md-evenly,.flex-md-space-evenly{display:flex;justify-content:space-evenly}.flex-md-evenly--force,.flex-md-space-evenly--force{display:flex!important;justify-content:space-evenly!important}.flex-md-stretch{display:flex;justify-content:stretch}.flex-md-stretch--force{display:flex!important;justify-content:stretch!important}.flex-md-unset{display:flex;justify-content:unset}.flex-md-unset--force{display:flex!important;justify-content:unset!important}.flex-md-grow-0{flex-grow:0}.flex-md-shrink-0{flex-shrink:0}.flex-md-grow-1{flex-grow:1}.flex-md-shrink-1{flex-shrink:1}.flex-md-grow-2{flex-grow:2}.flex-md-shrink-2{flex-shrink:2}.flex-md-grow-3{flex-grow:3}.flex-md-shrink-3{flex-shrink:3}.flex-md-full{flex-grow:1;flex-shrink:1;flex-basis:100%}.fw-md-100{font-weight:100}.fw-md-100--force{font-weight:100!important}.fw-md-200{font-weight:200}.fw-md-200--force{font-weight:200!important}.fw-md-300{font-weight:300}.fw-md-300--force{font-weight:300!important}.fw-md-400{font-weight:400}.fw-md-400--force{font-weight:400!important}.fw-md-500{font-weight:500}.fw-md-500--force{font-weight:500!important}.fw-md-600{font-weight:600}.fw-md-600--force{font-weight:600!important}.fw-md-700{font-weight:700}.fw-md-700--force{font-weight:700!important}.fw-md-800{font-weight:800}.fw-md-800--force{font-weight:800!important}.fw-md-900{font-weight:900}.fw-md-900--force{font-weight:900!important}.fs-md-0{font-size:0px}.fs-md-0--force{font-size:0px!important}.fs-md-1{font-size:1px}.fs-md-1--force{font-size:1px!important}.fs-md-2{font-size:2px}.fs-md-2--force{font-size:2px!important}.fs-md-3{font-size:3px}.fs-md-3--force{font-size:3px!important}.fs-md-4{font-size:4px}.fs-md-4--force{font-size:4px!important}.fs-md-5{font-size:5px}.fs-md-5--force{font-size:5px!important}.fs-md-6{font-size:6px}.fs-md-6--force{font-size:6px!important}.fs-md-7{font-size:7px}.fs-md-7--force{font-size:7px!important}.fs-md-8{font-size:8px}.fs-md-8--force{font-size:8px!important}.fs-md-9{font-size:9px}.fs-md-9--force{font-size:9px!important}.fs-md-10{font-size:10px}.fs-md-10--force{font-size:10px!important}.fs-md-11{font-size:11px}.fs-md-11--force{font-size:11px!important}.fs-md-12{font-size:12px}.fs-md-12--force{font-size:12px!important}.fs-md-13{font-size:13px}.fs-md-13--force{font-size:13px!important}.fs-md-14{font-size:14px}.fs-md-14--force{font-size:14px!important}.fs-md-15{font-size:15px}.fs-md-15--force{font-size:15px!important}.fs-md-16{font-size:16px}.fs-md-16--force{font-size:16px!important}.fs-md-17{font-size:17px}.fs-md-17--force{font-size:17px!important}.fs-md-18{font-size:18px}.fs-md-18--force{font-size:18px!important}.fs-md-19{font-size:19px}.fs-md-19--force{font-size:19px!important}.fs-md-20{font-size:20px}.fs-md-20--force{font-size:20px!important}.fs-md-21{font-size:21px}.fs-md-21--force{font-size:21px!important}.fs-md-22{font-size:22px}.fs-md-22--force{font-size:22px!important}.fs-md-23{font-size:23px}.fs-md-23--force{font-size:23px!important}.fs-md-24{font-size:24px}.fs-md-24--force{font-size:24px!important}.fs-md-25{font-size:25px}.fs-md-25--force{font-size:25px!important}.fs-md-26{font-size:26px}.fs-md-26--force{font-size:26px!important}.fs-md-27{font-size:27px}.fs-md-27--force{font-size:27px!important}.fs-md-28{font-size:28px}.fs-md-28--force{font-size:28px!important}.fs-md-29{font-size:29px}.fs-md-29--force{font-size:29px!important}.fs-md-30{font-size:30px}.fs-md-30--force{font-size:30px!important}.fs-md-31{font-size:31px}.fs-md-31--force{font-size:31px!important}.fs-md-32{font-size:32px}.fs-md-32--force{font-size:32px!important}.fs-md-33{font-size:33px}.fs-md-33--force{font-size:33px!important}.fs-md-34{font-size:34px}.fs-md-34--force{font-size:34px!important}.fs-md-35{font-size:35px}.fs-md-35--force{font-size:35px!important}.fs-md-36{font-size:36px}.fs-md-36--force{font-size:36px!important}.fs-md-37{font-size:37px}.fs-md-37--force{font-size:37px!important}.fs-md-38{font-size:38px}.fs-md-38--force{font-size:38px!important}.fs-md-39{font-size:39px}.fs-md-39--force{font-size:39px!important}.fs-md-40{font-size:40px}.fs-md-40--force{font-size:40px!important}.fs-md-41{font-size:41px}.fs-md-41--force{font-size:41px!important}.fs-md-42{font-size:42px}.fs-md-42--force{font-size:42px!important}.fs-md-43{font-size:43px}.fs-md-43--force{font-size:43px!important}.fs-md-44{font-size:44px}.fs-md-44--force{font-size:44px!important}.fs-md-45{font-size:45px}.fs-md-45--force{font-size:45px!important}.fs-md-46{font-size:46px}.fs-md-46--force{font-size:46px!important}.fs-md-47{font-size:47px}.fs-md-47--force{font-size:47px!important}.fs-md-48{font-size:48px}.fs-md-48--force{font-size:48px!important}.fs-md-49{font-size:49px}.fs-md-49--force{font-size:49px!important}.fs-md-50{font-size:50px}.fs-md-50--force{font-size:50px!important}.fs-md-51{font-size:51px}.fs-md-51--force{font-size:51px!important}.fs-md-52{font-size:52px}.fs-md-52--force{font-size:52px!important}.fs-md-53{font-size:53px}.fs-md-53--force{font-size:53px!important}.fs-md-54{font-size:54px}.fs-md-54--force{font-size:54px!important}.fs-md-55{font-size:55px}.fs-md-55--force{font-size:55px!important}.fs-md-56{font-size:56px}.fs-md-56--force{font-size:56px!important}.fs-md-57{font-size:57px}.fs-md-57--force{font-size:57px!important}.fs-md-58{font-size:58px}.fs-md-58--force{font-size:58px!important}.fs-md-59{font-size:59px}.fs-md-59--force{font-size:59px!important}.fs-md-60{font-size:60px}.fs-md-60--force{font-size:60px!important}.fs-md-61{font-size:61px}.fs-md-61--force{font-size:61px!important}.fs-md-62{font-size:62px}.fs-md-62--force{font-size:62px!important}.fs-md-63{font-size:63px}.fs-md-63--force{font-size:63px!important}.fs-md-64{font-size:64px}.fs-md-64--force{font-size:64px!important}.fs-md-65{font-size:65px}.fs-md-65--force{font-size:65px!important}.fs-md-66{font-size:66px}.fs-md-66--force{font-size:66px!important}.fs-md-67{font-size:67px}.fs-md-67--force{font-size:67px!important}.fs-md-68{font-size:68px}.fs-md-68--force{font-size:68px!important}.fs-md-69{font-size:69px}.fs-md-69--force{font-size:69px!important}.fs-md-70{font-size:70px}.fs-md-70--force{font-size:70px!important}.fs-md-71{font-size:71px}.fs-md-71--force{font-size:71px!important}.fs-md-72{font-size:72px}.fs-md-72--force{font-size:72px!important}.fs-md-73{font-size:73px}.fs-md-73--force{font-size:73px!important}.fs-md-74{font-size:74px}.fs-md-74--force{font-size:74px!important}.fs-md-75{font-size:75px}.fs-md-75--force{font-size:75px!important}.fs-md-76{font-size:76px}.fs-md-76--force{font-size:76px!important}.fs-md-77{font-size:77px}.fs-md-77--force{font-size:77px!important}.fs-md-78{font-size:78px}.fs-md-78--force{font-size:78px!important}.fs-md-79{font-size:79px}.fs-md-79--force{font-size:79px!important}.fs-md-80{font-size:80px}.fs-md-80--force{font-size:80px!important}.fs-md-81{font-size:81px}.fs-md-81--force{font-size:81px!important}.fs-md-82{font-size:82px}.fs-md-82--force{font-size:82px!important}.fs-md-83{font-size:83px}.fs-md-83--force{font-size:83px!important}.fs-md-84{font-size:84px}.fs-md-84--force{font-size:84px!important}.fs-md-85{font-size:85px}.fs-md-85--force{font-size:85px!important}.fs-md-86{font-size:86px}.fs-md-86--force{font-size:86px!important}.fs-md-87{font-size:87px}.fs-md-87--force{font-size:87px!important}.fs-md-88{font-size:88px}.fs-md-88--force{font-size:88px!important}.fs-md-89{font-size:89px}.fs-md-89--force{font-size:89px!important}.fs-md-90{font-size:90px}.fs-md-90--force{font-size:90px!important}.fs-md-91{font-size:91px}.fs-md-91--force{font-size:91px!important}.fs-md-92{font-size:92px}.fs-md-92--force{font-size:92px!important}.fs-md-93{font-size:93px}.fs-md-93--force{font-size:93px!important}.fs-md-94{font-size:94px}.fs-md-94--force{font-size:94px!important}.fs-md-95{font-size:95px}.fs-md-95--force{font-size:95px!important}.fs-md-96{font-size:96px}.fs-md-96--force{font-size:96px!important}.ls-md-0{letter-spacing:0}.ls-md-0--force{letter-spacing:0!important}.ls-md-1{letter-spacing:.1em}.ls-md-1--force{letter-spacing:.1em!important}.ls-md-2{letter-spacing:.2em}.ls-md-2--force{letter-spacing:.2em!important}.ls-md-3{letter-spacing:.3em}.ls-md-3--force{letter-spacing:.3em!important}.ls-md-4{letter-spacing:.4em}.ls-md-4--force{letter-spacing:.4em!important}.ls-md-5{letter-spacing:.5em}.ls-md-5--force{letter-spacing:.5em!important}.ls-md-6{letter-spacing:.6em}.ls-md-6--force{letter-spacing:.6em!important}.ls-md-7{letter-spacing:.7em}.ls-md-7--force{letter-spacing:.7em!important}.ls-md-8{letter-spacing:.8em}.ls-md-8--force{letter-spacing:.8em!important}.ls-md-9{letter-spacing:.9em}.ls-md-9--force{letter-spacing:.9em!important}.ls-md-10{letter-spacing:1em}.ls-md-10--force{letter-spacing:1em!important}.ls-md-11{letter-spacing:1.1em}.ls-md-11--force{letter-spacing:1.1em!important}.ls-md-12{letter-spacing:1.2em}.ls-md-12--force{letter-spacing:1.2em!important}.ls-md-13{letter-spacing:1.3em}.ls-md-13--force{letter-spacing:1.3em!important}.ls-md-14{letter-spacing:1.4em}.ls-md-14--force{letter-spacing:1.4em!important}.ls-md-15{letter-spacing:1.5em}.ls-md-15--force{letter-spacing:1.5em!important}.ls-md-16{letter-spacing:1.6em}.ls-md-16--force{letter-spacing:1.6em!important}.ls-md-17{letter-spacing:1.7em}.ls-md-17--force{letter-spacing:1.7em!important}.ls-md-18{letter-spacing:1.8em}.ls-md-18--force{letter-spacing:1.8em!important}.lh-md-0{line-height:0}.lh-md-0--force{line-height:0!important}.lh-md-1{line-height:1px}.lh-md-1--force{line-height:1px!important}.lh-md-2{line-height:2px}.lh-md-2--force{line-height:2px!important}.lh-md-3{line-height:3px}.lh-md-3--force{line-height:3px!important}.lh-md-4{line-height:4px}.lh-md-4--force{line-height:4px!important}.lh-md-5{line-height:5px}.lh-md-5--force{line-height:5px!important}.lh-md-6{line-height:6px}.lh-md-6--force{line-height:6px!important}.lh-md-7{line-height:7px}.lh-md-7--force{line-height:7px!important}.lh-md-8{line-height:8px}.lh-md-8--force{line-height:8px!important}.lh-md-9{line-height:9px}.lh-md-9--force{line-height:9px!important}.lh-md-10{line-height:10px}.lh-md-10--force{line-height:10px!important}.lh-md-11{line-height:11px}.lh-md-11--force{line-height:11px!important}.lh-md-12{line-height:12px}.lh-md-12--force{line-height:12px!important}.lh-md-13{line-height:13px}.lh-md-13--force{line-height:13px!important}.lh-md-14{line-height:14px}.lh-md-14--force{line-height:14px!important}.lh-md-15{line-height:15px}.lh-md-15--force{line-height:15px!important}.lh-md-16{line-height:16px}.lh-md-16--force{line-height:16px!important}.lh-md-17{line-height:17px}.lh-md-17--force{line-height:17px!important}.lh-md-18{line-height:18px}.lh-md-18--force{line-height:18px!important}.lh-md-19{line-height:19px}.lh-md-19--force{line-height:19px!important}.lh-md-20{line-height:20px}.lh-md-20--force{line-height:20px!important}.lh-md-21{line-height:21px}.lh-md-21--force{line-height:21px!important}.lh-md-22{line-height:22px}.lh-md-22--force{line-height:22px!important}.lh-md-23{line-height:23px}.lh-md-23--force{line-height:23px!important}.lh-md-24{line-height:24px}.lh-md-24--force{line-height:24px!important}.lh-md-25{line-height:25px}.lh-md-25--force{line-height:25px!important}.lh-md-26{line-height:26px}.lh-md-26--force{line-height:26px!important}.lh-md-27{line-height:27px}.lh-md-27--force{line-height:27px!important}.lh-md-28{line-height:28px}.lh-md-28--force{line-height:28px!important}.lh-md-29{line-height:29px}.lh-md-29--force{line-height:29px!important}.lh-md-30{line-height:30px}.lh-md-30--force{line-height:30px!important}.lh-md-31{line-height:31px}.lh-md-31--force{line-height:31px!important}.lh-md-32{line-height:32px}.lh-md-32--force{line-height:32px!important}.lh-md-33{line-height:33px}.lh-md-33--force{line-height:33px!important}.lh-md-34{line-height:34px}.lh-md-34--force{line-height:34px!important}.lh-md-35{line-height:35px}.lh-md-35--force{line-height:35px!important}.lh-md-36{line-height:36px}.lh-md-36--force{line-height:36px!important}.lh-md-37{line-height:37px}.lh-md-37--force{line-height:37px!important}.lh-md-38{line-height:38px}.lh-md-38--force{line-height:38px!important}.lh-md-39{line-height:39px}.lh-md-39--force{line-height:39px!important}.lh-md-40{line-height:40px}.lh-md-40--force{line-height:40px!important}.lh-md-41{line-height:41px}.lh-md-41--force{line-height:41px!important}.lh-md-42{line-height:42px}.lh-md-42--force{line-height:42px!important}.lh-md-43{line-height:43px}.lh-md-43--force{line-height:43px!important}.lh-md-44{line-height:44px}.lh-md-44--force{line-height:44px!important}.lh-md-45{line-height:45px}.lh-md-45--force{line-height:45px!important}.lh-md-46{line-height:46px}.lh-md-46--force{line-height:46px!important}.lh-md-47{line-height:47px}.lh-md-47--force{line-height:47px!important}.lh-md-48{line-height:48px}.lh-md-48--force{line-height:48px!important}.lh-md-49{line-height:49px}.lh-md-49--force{line-height:49px!important}.lh-md-50{line-height:50px}.lh-md-50--force{line-height:50px!important}.lh-md-51{line-height:51px}.lh-md-51--force{line-height:51px!important}.lh-md-52{line-height:52px}.lh-md-52--force{line-height:52px!important}.lh-md-53{line-height:53px}.lh-md-53--force{line-height:53px!important}.lh-md-54{line-height:54px}.lh-md-54--force{line-height:54px!important}.lh-md-55{line-height:55px}.lh-md-55--force{line-height:55px!important}.lh-md-56{line-height:56px}.lh-md-56--force{line-height:56px!important}.lh-md-57{line-height:57px}.lh-md-57--force{line-height:57px!important}.lh-md-58{line-height:58px}.lh-md-58--force{line-height:58px!important}.lh-md-59{line-height:59px}.lh-md-59--force{line-height:59px!important}.lh-md-60{line-height:60px}.lh-md-60--force{line-height:60px!important}.lh-md-61{line-height:61px}.lh-md-61--force{line-height:61px!important}.lh-md-62{line-height:62px}.lh-md-62--force{line-height:62px!important}.lh-md-63{line-height:63px}.lh-md-63--force{line-height:63px!important}.lh-md-64{line-height:64px}.lh-md-64--force{line-height:64px!important}.lh-md-65{line-height:65px}.lh-md-65--force{line-height:65px!important}.lh-md-66{line-height:66px}.lh-md-66--force{line-height:66px!important}.lh-md-67{line-height:67px}.lh-md-67--force{line-height:67px!important}.lh-md-68{line-height:68px}.lh-md-68--force{line-height:68px!important}.lh-md-69{line-height:69px}.lh-md-69--force{line-height:69px!important}.lh-md-70{line-height:70px}.lh-md-70--force{line-height:70px!important}.lh-md-71{line-height:71px}.lh-md-71--force{line-height:71px!important}.lh-md-72{line-height:72px}.lh-md-72--force{line-height:72px!important}.lh-md-73{line-height:73px}.lh-md-73--force{line-height:73px!important}.lh-md-74{line-height:74px}.lh-md-74--force{line-height:74px!important}.lh-md-75{line-height:75px}.lh-md-75--force{line-height:75px!important}.lh-md-76{line-height:76px}.lh-md-76--force{line-height:76px!important}.lh-md-77{line-height:77px}.lh-md-77--force{line-height:77px!important}.lh-md-78{line-height:78px}.lh-md-78--force{line-height:78px!important}.lh-md-79{line-height:79px}.lh-md-79--force{line-height:79px!important}.lh-md-80{line-height:80px}.lh-md-80--force{line-height:80px!important}.lh-md-81{line-height:81px}.lh-md-81--force{line-height:81px!important}.lh-md-82{line-height:82px}.lh-md-82--force{line-height:82px!important}.lh-md-83{line-height:83px}.lh-md-83--force{line-height:83px!important}.lh-md-84{line-height:84px}.lh-md-84--force{line-height:84px!important}.lh-md-85{line-height:85px}.lh-md-85--force{line-height:85px!important}.lh-md-86{line-height:86px}.lh-md-86--force{line-height:86px!important}.lh-md-87{line-height:87px}.lh-md-87--force{line-height:87px!important}.lh-md-88{line-height:88px}.lh-md-88--force{line-height:88px!important}.lh-md-89{line-height:89px}.lh-md-89--force{line-height:89px!important}.lh-md-90{line-height:90px}.lh-md-90--force{line-height:90px!important}.lh-md-91{line-height:91px}.lh-md-91--force{line-height:91px!important}.lh-md-92{line-height:92px}.lh-md-92--force{line-height:92px!important}.lh-md-93{line-height:93px}.lh-md-93--force{line-height:93px!important}.lh-md-94{line-height:94px}.lh-md-94--force{line-height:94px!important}.lh-md-95{line-height:95px}.lh-md-95--force{line-height:95px!important}.lh-md-96{line-height:96px}.lh-md-96--force{line-height:96px!important}.lh-md-97{line-height:97px}.lh-md-97--force{line-height:97px!important}.lh-md-98{line-height:98px}.lh-md-98--force{line-height:98px!important}.lh-md-99{line-height:99px}.lh-md-99--force{line-height:99px!important}.lh-md-100{line-height:100px}.lh-md-100--force{line-height:100px!important}.aspect-ratio-md-auto{aspect-ratio:auto}.aspect-ratio-md-auto--force{aspect-ratio:auto!important}.aspect-ratio-md-1x1{aspect-ratio:1/1}.aspect-ratio-md-1x1--force{aspect-ratio:1/1!important}.aspect-ratio-md-1x2{aspect-ratio:1/2}.aspect-ratio-md-1x2--force{aspect-ratio:1/2!important}.aspect-ratio-md-2x1{aspect-ratio:2/1}.aspect-ratio-md-2x1--force{aspect-ratio:2/1!important}.aspect-ratio-md-3x4{aspect-ratio:3/4}.aspect-ratio-md-3x4--force{aspect-ratio:3/4!important}.aspect-ratio-md-4x3{aspect-ratio:4/3}.aspect-ratio-md-4x3--force{aspect-ratio:4/3!important}.aspect-ratio-md-9x16{aspect-ratio:9/16}.aspect-ratio-md-9x16--force{aspect-ratio:9/16!important}.aspect-ratio-md-16x9{aspect-ratio:16/9}.aspect-ratio-md-16x9--force{aspect-ratio:16/9!important}.aspect-ratio-md-half{aspect-ratio:0.5}.aspect-ratio-md-half--force{aspect-ratio:0.5!important}.aspect-ratio-md-inherit{aspect-ratio:inherit}.aspect-ratio-md-inherit--force{aspect-ratio:inherit!important}.aspect-ratio-md-initial{aspect-ratio:initial}.aspect-ratio-md-initial--force{aspect-ratio:initial!important}.aspect-ratio-md-unset{aspect-ratio:unset}.aspect-ratio-md-unset--force{aspect-ratio:unset!important}.cursor-pointer-md{cursor:pointer}.cursor-pointer-md--force{cursor:pointer!important}.cursor-default-md{cursor:default}.cursor-default-md--force{cursor:default!important}.cursor-grab-md{cursor:grab}.cursor-grab-md--force{cursor:grab!important}.cursor-grabbing-md{cursor:grabbing}.cursor-grabbing-md--force{cursor:grabbing!important}.cursor-move-md{cursor:move}.cursor-move-md--force{cursor:move!important}.cursor-help-md{cursor:help}.cursor-help-md--force{cursor:help!important}.cursor-wait-md{cursor:wait}.cursor-wait-md--force{cursor:wait!important}.opacity-md-0{opacity:0}.opacity-md-0--force{opacity:0!important}.opacity-md-01{opacity:.1}.opacity-md-01--force{opacity:.1!important}.opacity-md-02{opacity:.2}.opacity-md-02--force{opacity:.2!important}.opacity-md-03{opacity:.3}.opacity-md-03--force{opacity:.3!important}.opacity-md-04{opacity:.4}.opacity-md-04--force{opacity:.4!important}.opacity-md-05{opacity:.5}.opacity-md-05--force{opacity:.5!important}.opacity-md-06{opacity:.6}.opacity-md-06--force{opacity:.6!important}.opacity-md-07{opacity:.7}.opacity-md-07--force{opacity:.7!important}.opacity-md-08{opacity:.8}.opacity-md-08--force{opacity:.8!important}.opacity-md-09{opacity:.9}.opacity-md-09--force{opacity:.9!important}.opacity-md-10{opacity:1}.opacity-md-10--force{opacity:1!important}.opacity-md-1{opacity:1}.opacity-md-1--force{opacity:1!important}.text-md-decoration-strike,.text-md-line-through,.text-md-strike{text-decoration:line-through}.text-md-decoration-strike--force,.text-md-line-through--force,.text-md-strike--force{text-decoration:line-through!important}.text-md-decoration-none,.text-md-none{text-decoration:none}.text-md-decoration-none--force,.text-md-none--force{text-decoration:none!important}.text-md-super{vertical-align:super}.text-md-super--force{vertical-align:super!important}.text-md-sub{vertical-align:sub}.text-md-sub--force{vertical-align:sub!important}.text-md-capitalize{text-transform:capitalize}.text-md-capitalize--force{text-transform:capitalize!important}.text-md-lowercase{text-transform:lowercase}.text-md-lowercase--force{text-transform:lowercase!important}.text-md-uppercase{text-transform:uppercase}.text-md-uppercase--force{text-transform:uppercase!important}.text-md-nowrap{white-space:nowrap}.text-md-left{text-align:left}.text-md-left--force{text-align:left!important}.text-md-center{text-align:center}.text-md-center--force{text-align:center!important}.text-md-right{text-align:right}.text-md-right--force{text-align:right!important}.text-md-boxed{border-radius:2px;padding:4px 8px;margin:0 8px;font-size:11px;font-weight:600;white-space:nowrap}.text-md-ellipsis,.text-md-truncate{display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.overflow-md-auto{overflow:auto}.overflow-md-auto--force{overflow:auto!important}.overflow-md-scroll{overflow:scroll}.overflow-md-scroll--force{overflow:scroll!important}.overflow-md-hidden{overflow:hidden}.overflow-md-hidden--force{overflow:hidden!important}.overflow-md-overlay{overflow:overlay}.overflow-md-overlay--force{overflow:overlay!important}.overflow-x-md-auto{overflow-x:auto}.overflow-x-md-auto--force{overflow-x:auto!important}.overflow-x-md-scroll{overflow-x:scroll}.overflow-x-md-scroll--force{overflow-x:scroll!important}.overflow-x-md-hidden{overflow-x:hidden}.overflow-x-md-hidden--force{overflow-x:hidden!important}.overflow-x-md-overlay{overflow-x:overlay}.overflow-x-md-overlay--force{overflow-x:overlay!important}.overflow-y-md-auto{overflow-y:auto}.overflow-y-md-auto--force{overflow-y:auto!important}.overflow-y-md-scroll{overflow-y:scroll}.overflow-y-md-scroll--force{overflow-y:scroll!important}.overflow-y-md-hidden{overflow-y:hidden}.overflow-y-md-hidden--force{overflow-y:hidden!important}.overflow-y-md-overlay{overflow-y:overlay}.overflow-y-md-overlay--force{overflow-y:overlay!important}.b-md-0,.border-md-0{border:0 solid}.bb-md-0,.border-bottom-md-0{border-bottom:0 solid}.bb-md-0--force,.border-bottom-md-0--force{border-bottom:0 solid!important}.border-top-md-0,.bt-md-0{border-top:0 solid}.border-top-md-0--force,.bt-md-0--force{border-top:0 solid!important}.bl-md-0,.border-left-md-0{border-left:0 solid}.bl-md-0--force,.border-left-md-0--force{border-left:0 solid!important}.border-right-md-0,.br-md-0{border-right:0px solid}.border-right-md-0--force,.br-md-0--force{border-right:0px solid!important}.b-md-2,.border-md-2{border:2px solid}.bb-md-2,.border-bottom-md-2{border-bottom:2px solid}.bb-md-2--force,.border-bottom-md-2--force{border-bottom:2px solid!important}.border-top-md-2,.bt-md-2{border-top:2px solid}.border-top-md-2--force,.bt-md-2--force{border-top:2px solid!important}.bl-md-2,.border-left-md-2{border-left:2px solid}.bl-md-2--force,.border-left-md-2--force{border-left:2px solid!important}.border-right-md-2,.br-md-2{border-right:2px solid}.border-right-md-2--force,.br-md-2--force{border-right:2px solid!important}.b-md-4,.border-md-4{border:4px solid}.bb-md-4,.border-bottom-md-4{border-bottom:4px solid}.bb-md-4--force,.border-bottom-md-4--force{border-bottom:4px solid!important}.border-top-md-4,.bt-md-4{border-top:4px solid}.border-top-md-4--force,.bt-md-4--force{border-top:4px solid!important}.bl-md-4,.border-left-md-4{border-left:4px solid}.bl-md-4--force,.border-left-md-4--force{border-left:4px solid!important}.border-right-md-4,.br-md-4{border-right:4px solid}.border-right-md-4--force,.br-md-4--force{border-right:4px solid!important}.b-md-6,.border-md-6{border:6px solid}.bb-md-6,.border-bottom-md-6{border-bottom:6px solid}.bb-md-6--force,.border-bottom-md-6--force{border-bottom:6px solid!important}.border-top-md-6,.bt-md-6{border-top:6px solid}.border-top-md-6--force,.bt-md-6--force{border-top:6px solid!important}.bl-md-6,.border-left-md-6{border-left:6px solid}.bl-md-6--force,.border-left-md-6--force{border-left:6px solid!important}.border-right-md-6,.br-md-6{border-right:6px solid}.border-right-md-6--force,.br-md-6--force{border-right:6px solid!important}.b-md-8,.border-md-8{border:8px solid}.bb-md-8,.border-bottom-md-8{border-bottom:8px solid}.bb-md-8--force,.border-bottom-md-8--force{border-bottom:8px solid!important}.border-top-md-8,.bt-md-8{border-top:8px solid}.border-top-md-8--force,.bt-md-8--force{border-top:8px solid!important}.bl-md-8,.border-left-md-8{border-left:8px solid}.bl-md-8--force,.border-left-md-8--force{border-left:8px solid!important}.border-right-md-8,.br-md-8{border-right:8px solid}.border-right-md-8--force,.br-md-8--force{border-right:8px solid!important}.b-md-none,.border-md-none{border:none}.b-md-none--force,.border-md-none--force{border:none!important}.border-style-md-solid{border-style:solid}.border-style-md-solid--force{border-style:solid!important}.border-style-md-dashed{border-style:dashed}.border-style-md-dashed--force{border-style:dashed!important}.border-style-md-dotted{border-style:dotted}.border-style-md-dotted--force{border-style:dotted!important}.border-style-md-double{border-style:double}.border-style-md-double--force{border-style:double!important}.border-style-md-groove{border-style:groove}.border-style-md-groove--force{border-style:groove!important}.border-style-md-ridge{border-style:ridge}.border-style-md-ridge--force{border-style:ridge!important}.border-style-md-inset{border-style:inset}.border-style-md-inset--force{border-style:inset!important}.border-style-md-outset{border-style:outset}.border-style-md-outset--force{border-style:outset!important}.border-style-md-none{border-style:none}.border-style-md-none--force{border-style:none!important}.radius-bottom-md-0,.radius-left-md-0,.radius-md-0,.radius-md-none,.radius-right-md-0,.radius-top-md-0{border-radius:0}.radius-bottom-md-0--force,.radius-left-md-0--force,.radius-md-none--force,.radius-right-md-0--force,.radius-top-md-0--force{border-radius:0!important}.radius-md-2{border-radius:2px}.radius-bottom-md-2{border-radius:0 0 2px 2px}.radius-bottom-md-2--force{border-radius:0 0 2px 2px!important}.radius-top-md-2{border-radius:2px 2px 0 0}.radius-top-md-2--force{border-radius:2px 2px 0 0!important}.radius-left-md-2{border-radius:2px 0 0 2px}.radius-left-md-2--force{border-radius:2px 0 0 2px!important}.radius-right-md-2{border-radius:0 2px 2px 0}.radius-right-md-2--force{border-radius:0 2px 2px 0!important}.radius-md-4{border-radius:4px}.radius-bottom-md-4{border-radius:0 0 4px 4px}.radius-bottom-md-4--force{border-radius:0 0 4px 4px!important}.radius-top-md-4{border-radius:4px 4px 0 0}.radius-top-md-4--force{border-radius:4px 4px 0 0!important}.radius-left-md-4{border-radius:4px 0 0 4px}.radius-left-md-4--force{border-radius:4px 0 0 4px!important}.radius-right-md-4{border-radius:0 4px 4px 0}.radius-right-md-4--force{border-radius:0 4px 4px 0!important}.radius-md-6{border-radius:6px}.radius-bottom-md-6{border-radius:0 0 6px 6px}.radius-bottom-md-6--force{border-radius:0 0 6px 6px!important}.radius-top-md-6{border-radius:6px 6px 0 0}.radius-top-md-6--force{border-radius:6px 6px 0 0!important}.radius-left-md-6{border-radius:6px 0 0 6px}.radius-left-md-6--force{border-radius:6px 0 0 6px!important}.radius-right-md-6{border-radius:0 6px 6px 0}.radius-right-md-6--force{border-radius:0 6px 6px 0!important}.radius-md-8{border-radius:8px}.radius-bottom-md-8{border-radius:0 0 8px 8px}.radius-bottom-md-8--force{border-radius:0 0 8px 8px!important}.radius-top-md-8{border-radius:8px 8px 0 0}.radius-top-md-8--force{border-radius:8px 8px 0 0!important}.radius-left-md-8{border-radius:8px 0 0 8px}.radius-left-md-8--force{border-radius:8px 0 0 8px!important}.radius-right-md-8{border-radius:0 8px 8px 0}.radius-right-md-8--force{border-radius:0 8px 8px 0!important}.radius-md-10{border-radius:10px}.radius-bottom-md-10{border-radius:0 0 10px 10px}.radius-bottom-md-10--force{border-radius:0 0 10px 10px!important}.radius-top-md-10{border-radius:10px 10px 0 0}.radius-top-md-10--force{border-radius:10px 10px 0 0!important}.radius-left-md-10{border-radius:10px 0 0 10px}.radius-left-md-10--force{border-radius:10px 0 0 10px!important}.radius-right-md-10{border-radius:0 10px 10px 0}.radius-right-md-10--force{border-radius:0 10px 10px 0!important}.radius-md-12{border-radius:12px}.radius-bottom-md-12{border-radius:0 0 12px 12px}.radius-bottom-md-12--force{border-radius:0 0 12px 12px!important}.radius-top-md-12{border-radius:12px 12px 0 0}.radius-top-md-12--force{border-radius:12px 12px 0 0!important}.radius-left-md-12{border-radius:12px 0 0 12px}.radius-left-md-12--force{border-radius:12px 0 0 12px!important}.radius-right-md-12{border-radius:0 12px 12px 0}.radius-right-md-12--force{border-radius:0 12px 12px 0!important}.radius-md-14{border-radius:14px}.radius-bottom-md-14{border-radius:0 0 14px 14px}.radius-bottom-md-14--force{border-radius:0 0 14px 14px!important}.radius-top-md-14{border-radius:14px 14px 0 0}.radius-top-md-14--force{border-radius:14px 14px 0 0!important}.radius-left-md-14{border-radius:14px 0 0 14px}.radius-left-md-14--force{border-radius:14px 0 0 14px!important}.radius-right-md-14{border-radius:0 14px 14px 0}.radius-right-md-14--force{border-radius:0 14px 14px 0!important}.radius-md-16{border-radius:16px}.radius-bottom-md-16{border-radius:0 0 16px 16px}.radius-bottom-md-16--force{border-radius:0 0 16px 16px!important}.radius-top-md-16{border-radius:16px 16px 0 0}.radius-top-md-16--force{border-radius:16px 16px 0 0!important}.radius-left-md-16{border-radius:16px 0 0 16px}.radius-left-md-16--force{border-radius:16px 0 0 16px!important}.radius-right-md-16{border-radius:0 16px 16px 0}.radius-right-md-16--force{border-radius:0 16px 16px 0!important}.radius-md-18{border-radius:18px}.radius-bottom-md-18{border-radius:0 0 18px 18px}.radius-bottom-md-18--force{border-radius:0 0 18px 18px!important}.radius-top-md-18{border-radius:18px 18px 0 0}.radius-top-md-18--force{border-radius:18px 18px 0 0!important}.radius-left-md-18{border-radius:18px 0 0 18px}.radius-left-md-18--force{border-radius:18px 0 0 18px!important}.radius-right-md-18{border-radius:0 18px 18px 0}.radius-right-md-18--force{border-radius:0 18px 18px 0!important}.radius-md-20{border-radius:20px}.radius-bottom-md-20{border-radius:0 0 20px 20px}.radius-bottom-md-20--force{border-radius:0 0 20px 20px!important}.radius-top-md-20{border-radius:20px 20px 0 0}.radius-top-md-20--force{border-radius:20px 20px 0 0!important}.radius-left-md-20{border-radius:20px 0 0 20px}.radius-left-md-20--force{border-radius:20px 0 0 20px!important}.radius-right-md-20{border-radius:0 20px 20px 0}.radius-right-md-20--force{border-radius:0 20px 20px 0!important}.radius-md-22{border-radius:22px}.radius-bottom-md-22{border-radius:0 0 22px 22px}.radius-bottom-md-22--force{border-radius:0 0 22px 22px!important}.radius-top-md-22{border-radius:22px 22px 0 0}.radius-top-md-22--force{border-radius:22px 22px 0 0!important}.radius-left-md-22{border-radius:22px 0 0 22px}.radius-left-md-22--force{border-radius:22px 0 0 22px!important}.radius-right-md-22{border-radius:0 22px 22px 0}.radius-right-md-22--force{border-radius:0 22px 22px 0!important}.radius-md-24{border-radius:24px}.radius-bottom-md-24{border-radius:0 0 24px 24px}.radius-bottom-md-24--force{border-radius:0 0 24px 24px!important}.radius-top-md-24{border-radius:24px 24px 0 0}.radius-top-md-24--force{border-radius:24px 24px 0 0!important}.radius-left-md-24{border-radius:24px 0 0 24px}.radius-left-md-24--force{border-radius:24px 0 0 24px!important}.radius-right-md-24{border-radius:0 24px 24px 0}.radius-right-md-24--force{border-radius:0 24px 24px 0!important}.radius-md-full{border-radius:9999px}.radius-md-full--force{border-radius:9999px!important}.line-clamp-md-0,.line-clamp-md-1,.line-clamp-md-2,.line-clamp-md-3,.line-clamp-md-4,.line-clamp-md-5,.line-clamp-md-6{overflow:hidden;display:-webkit-box;text-overflow:ellipsis;word-break:break-word;white-space:initial;-webkit-box-orient:vertical}.line-clamp-md-0{-webkit-line-clamp:0;line-clamp:0}.line-clamp-md-1{-webkit-line-clamp:1;line-clamp:1}.line-clamp-md-2{-webkit-line-clamp:2;line-clamp:2}.line-clamp-md-3{-webkit-line-clamp:3;line-clamp:3}.line-clamp-md-4{-webkit-line-clamp:4;line-clamp:4}.line-clamp-md-5{-webkit-line-clamp:5;line-clamp:5}.line-clamp-md-6{-webkit-line-clamp:6;line-clamp:6}.line-clamp-md-none{overflow:visible;display:block;-webkit-box-orient:horizontal;-webkit-line-clamp:none;line-clamp:none}.masonry-md-1{column-count:1}.masonry-md-10>*,.masonry-md-11>*,.masonry-md-12>*,.masonry-md-1>*,.masonry-md-2>*,.masonry-md-3>*,.masonry-md-4>*,.masonry-md-5>*,.masonry-md-6>*,.masonry-md-7>*,.masonry-md-8>*,.masonry-md-9>*{break-inside:avoid;display:inline-block;width:100%}.masonry-md-2{column-count:2}.masonry-md-3{column-count:3}.masonry-md-4{column-count:4}.masonry-md-5{column-count:5}.masonry-md-6{column-count:6}.masonry-md-7{column-count:7}.masonry-md-8{column-count:8}.masonry-md-9{column-count:9}.masonry-md-10{column-count:10}.masonry-md-11{column-count:11}.masonry-md-12{column-count:12}.masonry-gap-md-0{column-gap:0}.masonry-gap-md-4{column-gap:4px}.masonry-gap-md-8{column-gap:8px}.masonry-gap-md-12{column-gap:12px}.masonry-gap-md-16{column-gap:16px}.masonry-gap-md-20{column-gap:20px}.masonry-gap-md-24{column-gap:24px}.masonry-gap-md-28{column-gap:28px}.masonry-gap-md-32{column-gap:32px}.masonry-gap-md-36{column-gap:36px}.masonry-gap-md-40{column-gap:40px}.masonry-gap-md-44{column-gap:44px}.masonry-gap-md-48{column-gap:48px}}@media screen and (min-width:1440px){.h-lg-0{height:0}.h-lg-0--force{height:0!important}.max-h-lg-0{max-height:0}.max-h-lg-0--force{max-height:0!important}.min-h-lg-0{min-height:0}.min-h-lg-0--force{min-height:0!important}.h-lg-4{height:4px}.h-lg-4--force{height:4px!important}.max-h-lg-4{max-height:4px}.max-h-lg-4--force{max-height:4px!important}.min-h-lg-4{min-height:4px}.min-h-lg-4--force{min-height:4px!important}.h-lg-8{height:8px}.h-lg-8--force{height:8px!important}.max-h-lg-8{max-height:8px}.max-h-lg-8--force{max-height:8px!important}.min-h-lg-8{min-height:8px}.min-h-lg-8--force{min-height:8px!important}.h-lg-12{height:12px}.h-lg-12--force{height:12px!important}.max-h-lg-12{max-height:12px}.max-h-lg-12--force{max-height:12px!important}.min-h-lg-12{min-height:12px}.min-h-lg-12--force{min-height:12px!important}.h-lg-16{height:16px}.h-lg-16--force{height:16px!important}.max-h-lg-16{max-height:16px}.max-h-lg-16--force{max-height:16px!important}.min-h-lg-16{min-height:16px}.min-h-lg-16--force{min-height:16px!important}.h-lg-20{height:20px}.h-lg-20--force{height:20px!important}.max-h-lg-20{max-height:20px}.max-h-lg-20--force{max-height:20px!important}.min-h-lg-20{min-height:20px}.min-h-lg-20--force{min-height:20px!important}.h-lg-24{height:24px}.h-lg-24--force{height:24px!important}.max-h-lg-24{max-height:24px}.max-h-lg-24--force{max-height:24px!important}.min-h-lg-24{min-height:24px}.min-h-lg-24--force{min-height:24px!important}.h-lg-28{height:28px}.h-lg-28--force{height:28px!important}.max-h-lg-28{max-height:28px}.max-h-lg-28--force{max-height:28px!important}.min-h-lg-28{min-height:28px}.min-h-lg-28--force{min-height:28px!important}.h-lg-32{height:32px}.h-lg-32--force{height:32px!important}.max-h-lg-32{max-height:32px}.max-h-lg-32--force{max-height:32px!important}.min-h-lg-32{min-height:32px}.min-h-lg-32--force{min-height:32px!important}.h-lg-36{height:36px}.h-lg-36--force{height:36px!important}.max-h-lg-36{max-height:36px}.max-h-lg-36--force{max-height:36px!important}.min-h-lg-36{min-height:36px}.min-h-lg-36--force{min-height:36px!important}.h-lg-40{height:40px}.h-lg-40--force{height:40px!important}.max-h-lg-40{max-height:40px}.max-h-lg-40--force{max-height:40px!important}.min-h-lg-40{min-height:40px}.min-h-lg-40--force{min-height:40px!important}.h-lg-44{height:44px}.h-lg-44--force{height:44px!important}.max-h-lg-44{max-height:44px}.max-h-lg-44--force{max-height:44px!important}.min-h-lg-44{min-height:44px}.min-h-lg-44--force{min-height:44px!important}.h-lg-48{height:48px}.h-lg-48--force{height:48px!important}.max-h-lg-48{max-height:48px}.max-h-lg-48--force{max-height:48px!important}.min-h-lg-48{min-height:48px}.min-h-lg-48--force{min-height:48px!important}.h-lg-52{height:52px}.h-lg-52--force{height:52px!important}.max-h-lg-52{max-height:52px}.max-h-lg-52--force{max-height:52px!important}.min-h-lg-52{min-height:52px}.min-h-lg-52--force{min-height:52px!important}.h-lg-56{height:56px}.h-lg-56--force{height:56px!important}.max-h-lg-56{max-height:56px}.max-h-lg-56--force{max-height:56px!important}.min-h-lg-56{min-height:56px}.min-h-lg-56--force{min-height:56px!important}.h-lg-60{height:60px}.h-lg-60--force{height:60px!important}.max-h-lg-60{max-height:60px}.max-h-lg-60--force{max-height:60px!important}.min-h-lg-60{min-height:60px}.min-h-lg-60--force{min-height:60px!important}.h-lg-64{height:64px}.h-lg-64--force{height:64px!important}.max-h-lg-64{max-height:64px}.max-h-lg-64--force{max-height:64px!important}.min-h-lg-64{min-height:64px}.min-h-lg-64--force{min-height:64px!important}.h-lg-68{height:68px}.h-lg-68--force{height:68px!important}.max-h-lg-68{max-height:68px}.max-h-lg-68--force{max-height:68px!important}.min-h-lg-68{min-height:68px}.min-h-lg-68--force{min-height:68px!important}.h-lg-72{height:72px}.h-lg-72--force{height:72px!important}.max-h-lg-72{max-height:72px}.max-h-lg-72--force{max-height:72px!important}.min-h-lg-72{min-height:72px}.min-h-lg-72--force{min-height:72px!important}.h-lg-76{height:76px}.h-lg-76--force{height:76px!important}.max-h-lg-76{max-height:76px}.max-h-lg-76--force{max-height:76px!important}.min-h-lg-76{min-height:76px}.min-h-lg-76--force{min-height:76px!important}.h-lg-80{height:80px}.h-lg-80--force{height:80px!important}.max-h-lg-80{max-height:80px}.max-h-lg-80--force{max-height:80px!important}.min-h-lg-80{min-height:80px}.min-h-lg-80--force{min-height:80px!important}.h-lg-84{height:84px}.h-lg-84--force{height:84px!important}.max-h-lg-84{max-height:84px}.max-h-lg-84--force{max-height:84px!important}.min-h-lg-84{min-height:84px}.min-h-lg-84--force{min-height:84px!important}.h-lg-88{height:88px}.h-lg-88--force{height:88px!important}.max-h-lg-88{max-height:88px}.max-h-lg-88--force{max-height:88px!important}.min-h-lg-88{min-height:88px}.min-h-lg-88--force{min-height:88px!important}.h-lg-92{height:92px}.h-lg-92--force{height:92px!important}.max-h-lg-92{max-height:92px}.max-h-lg-92--force{max-height:92px!important}.min-h-lg-92{min-height:92px}.min-h-lg-92--force{min-height:92px!important}.h-lg-96{height:96px}.h-lg-96--force{height:96px!important}.max-h-lg-96{max-height:96px}.max-h-lg-96--force{max-height:96px!important}.min-h-lg-96{min-height:96px}.min-h-lg-96--force{min-height:96px!important}.h-lg-100{height:100px}.h-lg-100--force{height:100px!important}.max-h-lg-100{max-height:100px}.max-h-lg-100--force{max-height:100px!important}.min-h-lg-100{min-height:100px}.min-h-lg-100--force{min-height:100px!important}.h-lg-104{height:104px}.h-lg-104--force{height:104px!important}.max-h-lg-104{max-height:104px}.max-h-lg-104--force{max-height:104px!important}.min-h-lg-104{min-height:104px}.min-h-lg-104--force{min-height:104px!important}.h-lg-108{height:108px}.h-lg-108--force{height:108px!important}.max-h-lg-108{max-height:108px}.max-h-lg-108--force{max-height:108px!important}.min-h-lg-108{min-height:108px}.min-h-lg-108--force{min-height:108px!important}.h-lg-112{height:112px}.h-lg-112--force{height:112px!important}.max-h-lg-112{max-height:112px}.max-h-lg-112--force{max-height:112px!important}.min-h-lg-112{min-height:112px}.min-h-lg-112--force{min-height:112px!important}.h-lg-116{height:116px}.h-lg-116--force{height:116px!important}.max-h-lg-116{max-height:116px}.max-h-lg-116--force{max-height:116px!important}.min-h-lg-116{min-height:116px}.min-h-lg-116--force{min-height:116px!important}.h-lg-120{height:120px}.h-lg-120--force{height:120px!important}.max-h-lg-120{max-height:120px}.max-h-lg-120--force{max-height:120px!important}.min-h-lg-120{min-height:120px}.min-h-lg-120--force{min-height:120px!important}.h-lg-124{height:124px}.h-lg-124--force{height:124px!important}.max-h-lg-124{max-height:124px}.max-h-lg-124--force{max-height:124px!important}.min-h-lg-124{min-height:124px}.min-h-lg-124--force{min-height:124px!important}.h-lg-128{height:128px}.h-lg-128--force{height:128px!important}.max-h-lg-128{max-height:128px}.max-h-lg-128--force{max-height:128px!important}.min-h-lg-128{min-height:128px}.min-h-lg-128--force{min-height:128px!important}.h-lg-132{height:132px}.h-lg-132--force{height:132px!important}.max-h-lg-132{max-height:132px}.max-h-lg-132--force{max-height:132px!important}.min-h-lg-132{min-height:132px}.min-h-lg-132--force{min-height:132px!important}.h-lg-136{height:136px}.h-lg-136--force{height:136px!important}.max-h-lg-136{max-height:136px}.max-h-lg-136--force{max-height:136px!important}.min-h-lg-136{min-height:136px}.min-h-lg-136--force{min-height:136px!important}.h-lg-140{height:140px}.h-lg-140--force{height:140px!important}.max-h-lg-140{max-height:140px}.max-h-lg-140--force{max-height:140px!important}.min-h-lg-140{min-height:140px}.min-h-lg-140--force{min-height:140px!important}.h-lg-144{height:144px}.h-lg-144--force{height:144px!important}.max-h-lg-144{max-height:144px}.max-h-lg-144--force{max-height:144px!important}.min-h-lg-144{min-height:144px}.min-h-lg-144--force{min-height:144px!important}.h-lg-148{height:148px}.h-lg-148--force{height:148px!important}.max-h-lg-148{max-height:148px}.max-h-lg-148--force{max-height:148px!important}.min-h-lg-148{min-height:148px}.min-h-lg-148--force{min-height:148px!important}.h-lg-152{height:152px}.h-lg-152--force{height:152px!important}.max-h-lg-152{max-height:152px}.max-h-lg-152--force{max-height:152px!important}.min-h-lg-152{min-height:152px}.min-h-lg-152--force{min-height:152px!important}.h-lg-156{height:156px}.h-lg-156--force{height:156px!important}.max-h-lg-156{max-height:156px}.max-h-lg-156--force{max-height:156px!important}.min-h-lg-156{min-height:156px}.min-h-lg-156--force{min-height:156px!important}.h-lg-160{height:160px}.h-lg-160--force{height:160px!important}.max-h-lg-160{max-height:160px}.max-h-lg-160--force{max-height:160px!important}.min-h-lg-160{min-height:160px}.min-h-lg-160--force{min-height:160px!important}.h-lg-164{height:164px}.h-lg-164--force{height:164px!important}.max-h-lg-164{max-height:164px}.max-h-lg-164--force{max-height:164px!important}.min-h-lg-164{min-height:164px}.min-h-lg-164--force{min-height:164px!important}.h-lg-168{height:168px}.h-lg-168--force{height:168px!important}.max-h-lg-168{max-height:168px}.max-h-lg-168--force{max-height:168px!important}.min-h-lg-168{min-height:168px}.min-h-lg-168--force{min-height:168px!important}.h-lg-172{height:172px}.h-lg-172--force{height:172px!important}.max-h-lg-172{max-height:172px}.max-h-lg-172--force{max-height:172px!important}.min-h-lg-172{min-height:172px}.min-h-lg-172--force{min-height:172px!important}.h-lg-176{height:176px}.h-lg-176--force{height:176px!important}.max-h-lg-176{max-height:176px}.max-h-lg-176--force{max-height:176px!important}.min-h-lg-176{min-height:176px}.min-h-lg-176--force{min-height:176px!important}.h-lg-180{height:180px}.h-lg-180--force{height:180px!important}.max-h-lg-180{max-height:180px}.max-h-lg-180--force{max-height:180px!important}.min-h-lg-180{min-height:180px}.min-h-lg-180--force{min-height:180px!important}.h-lg-184{height:184px}.h-lg-184--force{height:184px!important}.max-h-lg-184{max-height:184px}.max-h-lg-184--force{max-height:184px!important}.min-h-lg-184{min-height:184px}.min-h-lg-184--force{min-height:184px!important}.h-lg-188{height:188px}.h-lg-188--force{height:188px!important}.max-h-lg-188{max-height:188px}.max-h-lg-188--force{max-height:188px!important}.min-h-lg-188{min-height:188px}.min-h-lg-188--force{min-height:188px!important}.h-lg-192{height:192px}.h-lg-192--force{height:192px!important}.max-h-lg-192{max-height:192px}.max-h-lg-192--force{max-height:192px!important}.min-h-lg-192{min-height:192px}.min-h-lg-192--force{min-height:192px!important}.h-lg-196{height:196px}.h-lg-196--force{height:196px!important}.max-h-lg-196{max-height:196px}.max-h-lg-196--force{max-height:196px!important}.min-h-lg-196{min-height:196px}.min-h-lg-196--force{min-height:196px!important}.h-lg-200{height:200px}.h-lg-200--force{height:200px!important}.max-h-lg-200{max-height:200px}.max-h-lg-200--force{max-height:200px!important}.min-h-lg-200{min-height:200px}.min-h-lg-200--force{min-height:200px!important}.h-lg-204{height:204px}.h-lg-204--force{height:204px!important}.max-h-lg-204{max-height:204px}.max-h-lg-204--force{max-height:204px!important}.min-h-lg-204{min-height:204px}.min-h-lg-204--force{min-height:204px!important}.h-lg-208{height:208px}.h-lg-208--force{height:208px!important}.max-h-lg-208{max-height:208px}.max-h-lg-208--force{max-height:208px!important}.min-h-lg-208{min-height:208px}.min-h-lg-208--force{min-height:208px!important}.h-lg-212{height:212px}.h-lg-212--force{height:212px!important}.max-h-lg-212{max-height:212px}.max-h-lg-212--force{max-height:212px!important}.min-h-lg-212{min-height:212px}.min-h-lg-212--force{min-height:212px!important}.h-lg-216{height:216px}.h-lg-216--force{height:216px!important}.max-h-lg-216{max-height:216px}.max-h-lg-216--force{max-height:216px!important}.min-h-lg-216{min-height:216px}.min-h-lg-216--force{min-height:216px!important}.h-lg-220{height:220px}.h-lg-220--force{height:220px!important}.max-h-lg-220{max-height:220px}.max-h-lg-220--force{max-height:220px!important}.min-h-lg-220{min-height:220px}.min-h-lg-220--force{min-height:220px!important}.h-lg-224{height:224px}.h-lg-224--force{height:224px!important}.max-h-lg-224{max-height:224px}.max-h-lg-224--force{max-height:224px!important}.min-h-lg-224{min-height:224px}.min-h-lg-224--force{min-height:224px!important}.h-lg-228{height:228px}.h-lg-228--force{height:228px!important}.max-h-lg-228{max-height:228px}.max-h-lg-228--force{max-height:228px!important}.min-h-lg-228{min-height:228px}.min-h-lg-228--force{min-height:228px!important}.h-lg-232{height:232px}.h-lg-232--force{height:232px!important}.max-h-lg-232{max-height:232px}.max-h-lg-232--force{max-height:232px!important}.min-h-lg-232{min-height:232px}.min-h-lg-232--force{min-height:232px!important}.h-lg-236{height:236px}.h-lg-236--force{height:236px!important}.max-h-lg-236{max-height:236px}.max-h-lg-236--force{max-height:236px!important}.min-h-lg-236{min-height:236px}.min-h-lg-236--force{min-height:236px!important}.h-lg-240{height:240px}.h-lg-240--force{height:240px!important}.max-h-lg-240{max-height:240px}.max-h-lg-240--force{max-height:240px!important}.min-h-lg-240{min-height:240px}.min-h-lg-240--force{min-height:240px!important}.h-lg-244{height:244px}.h-lg-244--force{height:244px!important}.max-h-lg-244{max-height:244px}.max-h-lg-244--force{max-height:244px!important}.min-h-lg-244{min-height:244px}.min-h-lg-244--force{min-height:244px!important}.h-lg-248{height:248px}.h-lg-248--force{height:248px!important}.max-h-lg-248{max-height:248px}.max-h-lg-248--force{max-height:248px!important}.min-h-lg-248{min-height:248px}.min-h-lg-248--force{min-height:248px!important}.h-lg-252{height:252px}.h-lg-252--force{height:252px!important}.max-h-lg-252{max-height:252px}.max-h-lg-252--force{max-height:252px!important}.min-h-lg-252{min-height:252px}.min-h-lg-252--force{min-height:252px!important}.h-lg-256{height:256px}.h-lg-256--force{height:256px!important}.max-h-lg-256{max-height:256px}.max-h-lg-256--force{max-height:256px!important}.min-h-lg-256{min-height:256px}.min-h-lg-256--force{min-height:256px!important}.h-lg-0-p{height:0%}.h-lg-0-p--force{height:0%!important}.max-h-lg-0-p{max-height:0%}.max-h-lg-0-p--force{max-height:0%!important}.min-h-lg-0-p{min-height:0}.min-h-lg-0-p--force{min-height:0!important}.h-lg-5-p{height:5%}.h-lg-5-p--force{height:5%!important}.max-h-lg-5-p{max-height:5%}.max-h-lg-5-p--force{max-height:5%!important}.min-h-lg-5-p{min-height:5%}.min-h-lg-5-p--force{min-height:5%!important}.h-lg-10-p{height:10%}.h-lg-10-p--force{height:10%!important}.max-h-lg-10-p{max-height:10%}.max-h-lg-10-p--force{max-height:10%!important}.min-h-lg-10-p{min-height:10%}.min-h-lg-10-p--force{min-height:10%!important}.h-lg-15-p{height:15%}.h-lg-15-p--force{height:15%!important}.max-h-lg-15-p{max-height:15%}.max-h-lg-15-p--force{max-height:15%!important}.min-h-lg-15-p{min-height:15%}.min-h-lg-15-p--force{min-height:15%!important}.h-lg-20-p{height:20%}.h-lg-20-p--force{height:20%!important}.max-h-lg-20-p{max-height:20%}.max-h-lg-20-p--force{max-height:20%!important}.min-h-lg-20-p{min-height:20%}.min-h-lg-20-p--force{min-height:20%!important}.h-lg-25-p{height:25%}.h-lg-25-p--force{height:25%!important}.max-h-lg-25-p{max-height:25%}.max-h-lg-25-p--force{max-height:25%!important}.min-h-lg-25-p{min-height:25%}.min-h-lg-25-p--force{min-height:25%!important}.h-lg-30-p{height:30%}.h-lg-30-p--force{height:30%!important}.max-h-lg-30-p{max-height:30%}.max-h-lg-30-p--force{max-height:30%!important}.min-h-lg-30-p{min-height:30%}.min-h-lg-30-p--force{min-height:30%!important}.h-lg-35-p{height:35%}.h-lg-35-p--force{height:35%!important}.max-h-lg-35-p{max-height:35%}.max-h-lg-35-p--force{max-height:35%!important}.min-h-lg-35-p{min-height:35%}.min-h-lg-35-p--force{min-height:35%!important}.h-lg-40-p{height:40%}.h-lg-40-p--force{height:40%!important}.max-h-lg-40-p{max-height:40%}.max-h-lg-40-p--force{max-height:40%!important}.min-h-lg-40-p{min-height:40%}.min-h-lg-40-p--force{min-height:40%!important}.h-lg-45-p{height:45%}.h-lg-45-p--force{height:45%!important}.max-h-lg-45-p{max-height:45%}.max-h-lg-45-p--force{max-height:45%!important}.min-h-lg-45-p{min-height:45%}.min-h-lg-45-p--force{min-height:45%!important}.h-lg-50-p{height:50%}.h-lg-50-p--force{height:50%!important}.max-h-lg-50-p{max-height:50%}.max-h-lg-50-p--force{max-height:50%!important}.min-h-lg-50-p{min-height:50%}.min-h-lg-50-p--force{min-height:50%!important}.h-lg-55-p{height:55%}.h-lg-55-p--force{height:55%!important}.max-h-lg-55-p{max-height:55%}.max-h-lg-55-p--force{max-height:55%!important}.min-h-lg-55-p{min-height:55%}.min-h-lg-55-p--force{min-height:55%!important}.h-lg-60-p{height:60%}.h-lg-60-p--force{height:60%!important}.max-h-lg-60-p{max-height:60%}.max-h-lg-60-p--force{max-height:60%!important}.min-h-lg-60-p{min-height:60%}.min-h-lg-60-p--force{min-height:60%!important}.h-lg-65-p{height:65%}.h-lg-65-p--force{height:65%!important}.max-h-lg-65-p{max-height:65%}.max-h-lg-65-p--force{max-height:65%!important}.min-h-lg-65-p{min-height:65%}.min-h-lg-65-p--force{min-height:65%!important}.h-lg-70-p{height:70%}.h-lg-70-p--force{height:70%!important}.max-h-lg-70-p{max-height:70%}.max-h-lg-70-p--force{max-height:70%!important}.min-h-lg-70-p{min-height:70%}.min-h-lg-70-p--force{min-height:70%!important}.h-lg-75-p{height:75%}.h-lg-75-p--force{height:75%!important}.max-h-lg-75-p{max-height:75%}.max-h-lg-75-p--force{max-height:75%!important}.min-h-lg-75-p{min-height:75%}.min-h-lg-75-p--force{min-height:75%!important}.h-lg-80-p{height:80%}.h-lg-80-p--force{height:80%!important}.max-h-lg-80-p{max-height:80%}.max-h-lg-80-p--force{max-height:80%!important}.min-h-lg-80-p{min-height:80%}.min-h-lg-80-p--force{min-height:80%!important}.h-lg-85-p{height:85%}.h-lg-85-p--force{height:85%!important}.max-h-lg-85-p{max-height:85%}.max-h-lg-85-p--force{max-height:85%!important}.min-h-lg-85-p{min-height:85%}.min-h-lg-85-p--force{min-height:85%!important}.h-lg-90-p{height:90%}.h-lg-90-p--force{height:90%!important}.max-h-lg-90-p{max-height:90%}.max-h-lg-90-p--force{max-height:90%!important}.min-h-lg-90-p{min-height:90%}.min-h-lg-90-p--force{min-height:90%!important}.h-lg-95-p{height:95%}.h-lg-95-p--force{height:95%!important}.max-h-lg-95-p{max-height:95%}.max-h-lg-95-p--force{max-height:95%!important}.min-h-lg-95-p{min-height:95%}.min-h-lg-95-p--force{min-height:95%!important}.h-lg-100-p{height:100%}.h-lg-100-p--force{height:100%!important}.max-h-lg-100-p{max-height:100%}.max-h-lg-100-p--force{max-height:100%!important}.min-h-lg-100-p{min-height:100%}.min-h-lg-100-p--force{min-height:100%!important}.h-lg-300{height:300px}.h-lg-300--force{height:300px!important}.max-h-lg-300{max-height:300px}.max-h-lg-300--force{max-height:300px!important}.min-h-lg-300{min-height:300px}.min-h-lg-300--force{min-height:300px!important}.h-lg-400{height:400px}.h-lg-400--force{height:400px!important}.max-h-lg-400{max-height:400px}.max-h-lg-400--force{max-height:400px!important}.min-h-lg-400{min-height:400px}.min-h-lg-400--force{min-height:400px!important}.h-lg-500{height:500px}.h-lg-500--force{height:500px!important}.max-h-lg-500{max-height:500px}.max-h-lg-500--force{max-height:500px!important}.min-h-lg-500{min-height:500px}.min-h-lg-500--force{min-height:500px!important}.h-lg-600{height:600px}.h-lg-600--force{height:600px!important}.max-h-lg-600{max-height:600px}.max-h-lg-600--force{max-height:600px!important}.min-h-lg-600{min-height:600px}.min-h-lg-600--force{min-height:600px!important}.h-lg-700{height:700px}.h-lg-700--force{height:700px!important}.max-h-lg-700{max-height:700px}.max-h-lg-700--force{max-height:700px!important}.min-h-lg-700{min-height:700px}.min-h-lg-700--force{min-height:700px!important}.h-lg-800{height:800px}.h-lg-800--force{height:800px!important}.max-h-lg-800{max-height:800px}.max-h-lg-800--force{max-height:800px!important}.min-h-lg-800{min-height:800px}.min-h-lg-800--force{min-height:800px!important}.h-lg-900{height:900px}.h-lg-900--force{height:900px!important}.max-h-lg-900{max-height:900px}.max-h-lg-900--force{max-height:900px!important}.min-h-lg-900{min-height:900px}.min-h-lg-900--force{min-height:900px!important}.h-lg-1000{height:1000px}.h-lg-1000--force{height:1000px!important}.max-h-lg-1000{max-height:1000px}.max-h-lg-1000--force{max-height:1000px!important}.min-h-lg-1000{min-height:1000px}.min-h-lg-1000--force{min-height:1000px!important}.h-lg-1100{height:1100px}.h-lg-1100--force{height:1100px!important}.max-h-lg-1100{max-height:1100px}.max-h-lg-1100--force{max-height:1100px!important}.min-h-lg-1100{min-height:1100px}.min-h-lg-1100--force{min-height:1100px!important}.h-lg-1200{height:1200px}.h-lg-1200--force{height:1200px!important}.max-h-lg-1200{max-height:1200px}.max-h-lg-1200--force{max-height:1200px!important}.min-h-lg-1200{min-height:1200px}.min-h-lg-1200--force{min-height:1200px!important}.h-lg-1300{height:1300px}.h-lg-1300--force{height:1300px!important}.max-h-lg-1300{max-height:1300px}.max-h-lg-1300--force{max-height:1300px!important}.min-h-lg-1300{min-height:1300px}.min-h-lg-1300--force{min-height:1300px!important}.h-lg-1400{height:1400px}.h-lg-1400--force{height:1400px!important}.max-h-lg-1400{max-height:1400px}.max-h-lg-1400--force{max-height:1400px!important}.min-h-lg-1400{min-height:1400px}.min-h-lg-1400--force{min-height:1400px!important}.h-lg-1500{height:1500px}.h-lg-1500--force{height:1500px!important}.max-h-lg-1500{max-height:1500px}.max-h-lg-1500--force{max-height:1500px!important}.min-h-lg-1500{min-height:1500px}.min-h-lg-1500--force{min-height:1500px!important}.h-lg-1600{height:1600px}.h-lg-1600--force{height:1600px!important}.max-h-lg-1600{max-height:1600px}.max-h-lg-1600--force{max-height:1600px!important}.min-h-lg-1600{min-height:1600px}.min-h-lg-1600--force{min-height:1600px!important}.h-lg-1700{height:1700px}.h-lg-1700--force{height:1700px!important}.max-h-lg-1700{max-height:1700px}.max-h-lg-1700--force{max-height:1700px!important}.min-h-lg-1700{min-height:1700px}.min-h-lg-1700--force{min-height:1700px!important}.h-lg-1800{height:1800px}.h-lg-1800--force{height:1800px!important}.max-h-lg-1800{max-height:1800px}.max-h-lg-1800--force{max-height:1800px!important}.min-h-lg-1800{min-height:1800px}.min-h-lg-1800--force{min-height:1800px!important}.h-lg-1900{height:1900px}.h-lg-1900--force{height:1900px!important}.max-h-lg-1900{max-height:1900px}.max-h-lg-1900--force{max-height:1900px!important}.min-h-lg-1900{min-height:1900px}.min-h-lg-1900--force{min-height:1900px!important}.h-lg-2000{height:2000px}.h-lg-2000--force{height:2000px!important}.max-h-lg-2000{max-height:2000px}.max-h-lg-2000--force{max-height:2000px!important}.min-h-lg-2000{min-height:2000px}.min-h-lg-2000--force{min-height:2000px!important}.h-lg-auto{height:auto}.h-lg-auto--force{height:auto!important}.w-lg-0{width:0}.w-lg-0--force{width:0!important}.max-w-lg-0{max-width:0}.max-w-lg-0--force{max-width:0!important}.min-w-lg-0{min-width:0}.min-w-lg-0--force{min-width:0!important}.w-lg-4{width:4px}.w-lg-4--force{width:4px!important}.max-w-lg-4{max-width:4px}.max-w-lg-4--force{max-width:4px!important}.min-w-lg-4{min-width:4px}.min-w-lg-4--force{min-width:4px!important}.w-lg-8{width:8px}.w-lg-8--force{width:8px!important}.max-w-lg-8{max-width:8px}.max-w-lg-8--force{max-width:8px!important}.min-w-lg-8{min-width:8px}.min-w-lg-8--force{min-width:8px!important}.w-lg-12{width:12px}.w-lg-12--force{width:12px!important}.max-w-lg-12{max-width:12px}.max-w-lg-12--force{max-width:12px!important}.min-w-lg-12{min-width:12px}.min-w-lg-12--force{min-width:12px!important}.w-lg-16{width:16px}.w-lg-16--force{width:16px!important}.max-w-lg-16{max-width:16px}.max-w-lg-16--force{max-width:16px!important}.min-w-lg-16{min-width:16px}.min-w-lg-16--force{min-width:16px!important}.w-lg-20{width:20px}.w-lg-20--force{width:20px!important}.max-w-lg-20{max-width:20px}.max-w-lg-20--force{max-width:20px!important}.min-w-lg-20{min-width:20px}.min-w-lg-20--force{min-width:20px!important}.w-lg-24{width:24px}.w-lg-24--force{width:24px!important}.max-w-lg-24{max-width:24px}.max-w-lg-24--force{max-width:24px!important}.min-w-lg-24{min-width:24px}.min-w-lg-24--force{min-width:24px!important}.w-lg-28{width:28px}.w-lg-28--force{width:28px!important}.max-w-lg-28{max-width:28px}.max-w-lg-28--force{max-width:28px!important}.min-w-lg-28{min-width:28px}.min-w-lg-28--force{min-width:28px!important}.w-lg-32{width:32px}.w-lg-32--force{width:32px!important}.max-w-lg-32{max-width:32px}.max-w-lg-32--force{max-width:32px!important}.min-w-lg-32{min-width:32px}.min-w-lg-32--force{min-width:32px!important}.w-lg-36{width:36px}.w-lg-36--force{width:36px!important}.max-w-lg-36{max-width:36px}.max-w-lg-36--force{max-width:36px!important}.min-w-lg-36{min-width:36px}.min-w-lg-36--force{min-width:36px!important}.w-lg-40{width:40px}.w-lg-40--force{width:40px!important}.max-w-lg-40{max-width:40px}.max-w-lg-40--force{max-width:40px!important}.min-w-lg-40{min-width:40px}.min-w-lg-40--force{min-width:40px!important}.w-lg-44{width:44px}.w-lg-44--force{width:44px!important}.max-w-lg-44{max-width:44px}.max-w-lg-44--force{max-width:44px!important}.min-w-lg-44{min-width:44px}.min-w-lg-44--force{min-width:44px!important}.w-lg-48{width:48px}.w-lg-48--force{width:48px!important}.max-w-lg-48{max-width:48px}.max-w-lg-48--force{max-width:48px!important}.min-w-lg-48{min-width:48px}.min-w-lg-48--force{min-width:48px!important}.w-lg-52{width:52px}.w-lg-52--force{width:52px!important}.max-w-lg-52{max-width:52px}.max-w-lg-52--force{max-width:52px!important}.min-w-lg-52{min-width:52px}.min-w-lg-52--force{min-width:52px!important}.w-lg-56{width:56px}.w-lg-56--force{width:56px!important}.max-w-lg-56{max-width:56px}.max-w-lg-56--force{max-width:56px!important}.min-w-lg-56{min-width:56px}.min-w-lg-56--force{min-width:56px!important}.w-lg-60{width:60px}.w-lg-60--force{width:60px!important}.max-w-lg-60{max-width:60px}.max-w-lg-60--force{max-width:60px!important}.min-w-lg-60{min-width:60px}.min-w-lg-60--force{min-width:60px!important}.w-lg-64{width:64px}.w-lg-64--force{width:64px!important}.max-w-lg-64{max-width:64px}.max-w-lg-64--force{max-width:64px!important}.min-w-lg-64{min-width:64px}.min-w-lg-64--force{min-width:64px!important}.w-lg-68{width:68px}.w-lg-68--force{width:68px!important}.max-w-lg-68{max-width:68px}.max-w-lg-68--force{max-width:68px!important}.min-w-lg-68{min-width:68px}.min-w-lg-68--force{min-width:68px!important}.w-lg-72{width:72px}.w-lg-72--force{width:72px!important}.max-w-lg-72{max-width:72px}.max-w-lg-72--force{max-width:72px!important}.min-w-lg-72{min-width:72px}.min-w-lg-72--force{min-width:72px!important}.w-lg-76{width:76px}.w-lg-76--force{width:76px!important}.max-w-lg-76{max-width:76px}.max-w-lg-76--force{max-width:76px!important}.min-w-lg-76{min-width:76px}.min-w-lg-76--force{min-width:76px!important}.w-lg-80{width:80px}.w-lg-80--force{width:80px!important}.max-w-lg-80{max-width:80px}.max-w-lg-80--force{max-width:80px!important}.min-w-lg-80{min-width:80px}.min-w-lg-80--force{min-width:80px!important}.w-lg-84{width:84px}.w-lg-84--force{width:84px!important}.max-w-lg-84{max-width:84px}.max-w-lg-84--force{max-width:84px!important}.min-w-lg-84{min-width:84px}.min-w-lg-84--force{min-width:84px!important}.w-lg-88{width:88px}.w-lg-88--force{width:88px!important}.max-w-lg-88{max-width:88px}.max-w-lg-88--force{max-width:88px!important}.min-w-lg-88{min-width:88px}.min-w-lg-88--force{min-width:88px!important}.w-lg-92{width:92px}.w-lg-92--force{width:92px!important}.max-w-lg-92{max-width:92px}.max-w-lg-92--force{max-width:92px!important}.min-w-lg-92{min-width:92px}.min-w-lg-92--force{min-width:92px!important}.w-lg-96{width:96px}.w-lg-96--force{width:96px!important}.max-w-lg-96{max-width:96px}.max-w-lg-96--force{max-width:96px!important}.min-w-lg-96{min-width:96px}.min-w-lg-96--force{min-width:96px!important}.w-lg-100{width:100px}.w-lg-100--force{width:100px!important}.max-w-lg-100{max-width:100px}.max-w-lg-100--force{max-width:100px!important}.min-w-lg-100{min-width:100px}.min-w-lg-100--force{min-width:100px!important}.w-lg-104{width:104px}.w-lg-104--force{width:104px!important}.max-w-lg-104{max-width:104px}.max-w-lg-104--force{max-width:104px!important}.min-w-lg-104{min-width:104px}.min-w-lg-104--force{min-width:104px!important}.w-lg-108{width:108px}.w-lg-108--force{width:108px!important}.max-w-lg-108{max-width:108px}.max-w-lg-108--force{max-width:108px!important}.min-w-lg-108{min-width:108px}.min-w-lg-108--force{min-width:108px!important}.w-lg-112{width:112px}.w-lg-112--force{width:112px!important}.max-w-lg-112{max-width:112px}.max-w-lg-112--force{max-width:112px!important}.min-w-lg-112{min-width:112px}.min-w-lg-112--force{min-width:112px!important}.w-lg-116{width:116px}.w-lg-116--force{width:116px!important}.max-w-lg-116{max-width:116px}.max-w-lg-116--force{max-width:116px!important}.min-w-lg-116{min-width:116px}.min-w-lg-116--force{min-width:116px!important}.w-lg-120{width:120px}.w-lg-120--force{width:120px!important}.max-w-lg-120{max-width:120px}.max-w-lg-120--force{max-width:120px!important}.min-w-lg-120{min-width:120px}.min-w-lg-120--force{min-width:120px!important}.w-lg-124{width:124px}.w-lg-124--force{width:124px!important}.max-w-lg-124{max-width:124px}.max-w-lg-124--force{max-width:124px!important}.min-w-lg-124{min-width:124px}.min-w-lg-124--force{min-width:124px!important}.w-lg-128{width:128px}.w-lg-128--force{width:128px!important}.max-w-lg-128{max-width:128px}.max-w-lg-128--force{max-width:128px!important}.min-w-lg-128{min-width:128px}.min-w-lg-128--force{min-width:128px!important}.w-lg-132{width:132px}.w-lg-132--force{width:132px!important}.max-w-lg-132{max-width:132px}.max-w-lg-132--force{max-width:132px!important}.min-w-lg-132{min-width:132px}.min-w-lg-132--force{min-width:132px!important}.w-lg-136{width:136px}.w-lg-136--force{width:136px!important}.max-w-lg-136{max-width:136px}.max-w-lg-136--force{max-width:136px!important}.min-w-lg-136{min-width:136px}.min-w-lg-136--force{min-width:136px!important}.w-lg-140{width:140px}.w-lg-140--force{width:140px!important}.max-w-lg-140{max-width:140px}.max-w-lg-140--force{max-width:140px!important}.min-w-lg-140{min-width:140px}.min-w-lg-140--force{min-width:140px!important}.w-lg-144{width:144px}.w-lg-144--force{width:144px!important}.max-w-lg-144{max-width:144px}.max-w-lg-144--force{max-width:144px!important}.min-w-lg-144{min-width:144px}.min-w-lg-144--force{min-width:144px!important}.w-lg-148{width:148px}.w-lg-148--force{width:148px!important}.max-w-lg-148{max-width:148px}.max-w-lg-148--force{max-width:148px!important}.min-w-lg-148{min-width:148px}.min-w-lg-148--force{min-width:148px!important}.w-lg-152{width:152px}.w-lg-152--force{width:152px!important}.max-w-lg-152{max-width:152px}.max-w-lg-152--force{max-width:152px!important}.min-w-lg-152{min-width:152px}.min-w-lg-152--force{min-width:152px!important}.w-lg-156{width:156px}.w-lg-156--force{width:156px!important}.max-w-lg-156{max-width:156px}.max-w-lg-156--force{max-width:156px!important}.min-w-lg-156{min-width:156px}.min-w-lg-156--force{min-width:156px!important}.w-lg-160{width:160px}.w-lg-160--force{width:160px!important}.max-w-lg-160{max-width:160px}.max-w-lg-160--force{max-width:160px!important}.min-w-lg-160{min-width:160px}.min-w-lg-160--force{min-width:160px!important}.w-lg-164{width:164px}.w-lg-164--force{width:164px!important}.max-w-lg-164{max-width:164px}.max-w-lg-164--force{max-width:164px!important}.min-w-lg-164{min-width:164px}.min-w-lg-164--force{min-width:164px!important}.w-lg-168{width:168px}.w-lg-168--force{width:168px!important}.max-w-lg-168{max-width:168px}.max-w-lg-168--force{max-width:168px!important}.min-w-lg-168{min-width:168px}.min-w-lg-168--force{min-width:168px!important}.w-lg-172{width:172px}.w-lg-172--force{width:172px!important}.max-w-lg-172{max-width:172px}.max-w-lg-172--force{max-width:172px!important}.min-w-lg-172{min-width:172px}.min-w-lg-172--force{min-width:172px!important}.w-lg-176{width:176px}.w-lg-176--force{width:176px!important}.max-w-lg-176{max-width:176px}.max-w-lg-176--force{max-width:176px!important}.min-w-lg-176{min-width:176px}.min-w-lg-176--force{min-width:176px!important}.w-lg-180{width:180px}.w-lg-180--force{width:180px!important}.max-w-lg-180{max-width:180px}.max-w-lg-180--force{max-width:180px!important}.min-w-lg-180{min-width:180px}.min-w-lg-180--force{min-width:180px!important}.w-lg-184{width:184px}.w-lg-184--force{width:184px!important}.max-w-lg-184{max-width:184px}.max-w-lg-184--force{max-width:184px!important}.min-w-lg-184{min-width:184px}.min-w-lg-184--force{min-width:184px!important}.w-lg-188{width:188px}.w-lg-188--force{width:188px!important}.max-w-lg-188{max-width:188px}.max-w-lg-188--force{max-width:188px!important}.min-w-lg-188{min-width:188px}.min-w-lg-188--force{min-width:188px!important}.w-lg-192{width:192px}.w-lg-192--force{width:192px!important}.max-w-lg-192{max-width:192px}.max-w-lg-192--force{max-width:192px!important}.min-w-lg-192{min-width:192px}.min-w-lg-192--force{min-width:192px!important}.w-lg-196{width:196px}.w-lg-196--force{width:196px!important}.max-w-lg-196{max-width:196px}.max-w-lg-196--force{max-width:196px!important}.min-w-lg-196{min-width:196px}.min-w-lg-196--force{min-width:196px!important}.w-lg-200{width:200px}.w-lg-200--force{width:200px!important}.max-w-lg-200{max-width:200px}.max-w-lg-200--force{max-width:200px!important}.min-w-lg-200{min-width:200px}.min-w-lg-200--force{min-width:200px!important}.w-lg-204{width:204px}.w-lg-204--force{width:204px!important}.max-w-lg-204{max-width:204px}.max-w-lg-204--force{max-width:204px!important}.min-w-lg-204{min-width:204px}.min-w-lg-204--force{min-width:204px!important}.w-lg-208{width:208px}.w-lg-208--force{width:208px!important}.max-w-lg-208{max-width:208px}.max-w-lg-208--force{max-width:208px!important}.min-w-lg-208{min-width:208px}.min-w-lg-208--force{min-width:208px!important}.w-lg-212{width:212px}.w-lg-212--force{width:212px!important}.max-w-lg-212{max-width:212px}.max-w-lg-212--force{max-width:212px!important}.min-w-lg-212{min-width:212px}.min-w-lg-212--force{min-width:212px!important}.w-lg-216{width:216px}.w-lg-216--force{width:216px!important}.max-w-lg-216{max-width:216px}.max-w-lg-216--force{max-width:216px!important}.min-w-lg-216{min-width:216px}.min-w-lg-216--force{min-width:216px!important}.w-lg-220{width:220px}.w-lg-220--force{width:220px!important}.max-w-lg-220{max-width:220px}.max-w-lg-220--force{max-width:220px!important}.min-w-lg-220{min-width:220px}.min-w-lg-220--force{min-width:220px!important}.w-lg-224{width:224px}.w-lg-224--force{width:224px!important}.max-w-lg-224{max-width:224px}.max-w-lg-224--force{max-width:224px!important}.min-w-lg-224{min-width:224px}.min-w-lg-224--force{min-width:224px!important}.w-lg-228{width:228px}.w-lg-228--force{width:228px!important}.max-w-lg-228{max-width:228px}.max-w-lg-228--force{max-width:228px!important}.min-w-lg-228{min-width:228px}.min-w-lg-228--force{min-width:228px!important}.w-lg-232{width:232px}.w-lg-232--force{width:232px!important}.max-w-lg-232{max-width:232px}.max-w-lg-232--force{max-width:232px!important}.min-w-lg-232{min-width:232px}.min-w-lg-232--force{min-width:232px!important}.w-lg-236{width:236px}.w-lg-236--force{width:236px!important}.max-w-lg-236{max-width:236px}.max-w-lg-236--force{max-width:236px!important}.min-w-lg-236{min-width:236px}.min-w-lg-236--force{min-width:236px!important}.w-lg-240{width:240px}.w-lg-240--force{width:240px!important}.max-w-lg-240{max-width:240px}.max-w-lg-240--force{max-width:240px!important}.min-w-lg-240{min-width:240px}.min-w-lg-240--force{min-width:240px!important}.w-lg-244{width:244px}.w-lg-244--force{width:244px!important}.max-w-lg-244{max-width:244px}.max-w-lg-244--force{max-width:244px!important}.min-w-lg-244{min-width:244px}.min-w-lg-244--force{min-width:244px!important}.w-lg-248{width:248px}.w-lg-248--force{width:248px!important}.max-w-lg-248{max-width:248px}.max-w-lg-248--force{max-width:248px!important}.min-w-lg-248{min-width:248px}.min-w-lg-248--force{min-width:248px!important}.w-lg-252{width:252px}.w-lg-252--force{width:252px!important}.max-w-lg-252{max-width:252px}.max-w-lg-252--force{max-width:252px!important}.min-w-lg-252{min-width:252px}.min-w-lg-252--force{min-width:252px!important}.w-lg-256{width:256px}.w-lg-256--force{width:256px!important}.max-w-lg-256{max-width:256px}.max-w-lg-256--force{max-width:256px!important}.min-w-lg-256{min-width:256px}.min-w-lg-256--force{min-width:256px!important}.w-lg-0-p{width:0%}.w-lg-0-p--force{width:0%!important}.max-w-lg-0-p{max-width:0%}.max-w-lg-0-p--force{max-width:0%!important}.min-w-lg-0-p{min-width:0}.min-w-lg-0-p--force{min-width:0!important}.w-lg-5-p{width:5%}.w-lg-5-p--force{width:5%!important}.max-w-lg-5-p{max-width:5%}.max-w-lg-5-p--force{max-width:5%!important}.min-w-lg-5-p{min-width:5%}.min-w-lg-5-p--force{min-width:5%!important}.w-lg-10-p{width:10%}.w-lg-10-p--force{width:10%!important}.max-w-lg-10-p{max-width:10%}.max-w-lg-10-p--force{max-width:10%!important}.min-w-lg-10-p{min-width:10%}.min-w-lg-10-p--force{min-width:10%!important}.w-lg-15-p{width:15%}.w-lg-15-p--force{width:15%!important}.max-w-lg-15-p{max-width:15%}.max-w-lg-15-p--force{max-width:15%!important}.min-w-lg-15-p{min-width:15%}.min-w-lg-15-p--force{min-width:15%!important}.w-lg-20-p{width:20%}.w-lg-20-p--force{width:20%!important}.max-w-lg-20-p{max-width:20%}.max-w-lg-20-p--force{max-width:20%!important}.min-w-lg-20-p{min-width:20%}.min-w-lg-20-p--force{min-width:20%!important}.w-lg-25-p{width:25%}.w-lg-25-p--force{width:25%!important}.max-w-lg-25-p{max-width:25%}.max-w-lg-25-p--force{max-width:25%!important}.min-w-lg-25-p{min-width:25%}.min-w-lg-25-p--force{min-width:25%!important}.w-lg-30-p{width:30%}.w-lg-30-p--force{width:30%!important}.max-w-lg-30-p{max-width:30%}.max-w-lg-30-p--force{max-width:30%!important}.min-w-lg-30-p{min-width:30%}.min-w-lg-30-p--force{min-width:30%!important}.w-lg-35-p{width:35%}.w-lg-35-p--force{width:35%!important}.max-w-lg-35-p{max-width:35%}.max-w-lg-35-p--force{max-width:35%!important}.min-w-lg-35-p{min-width:35%}.min-w-lg-35-p--force{min-width:35%!important}.w-lg-40-p{width:40%}.w-lg-40-p--force{width:40%!important}.max-w-lg-40-p{max-width:40%}.max-w-lg-40-p--force{max-width:40%!important}.min-w-lg-40-p{min-width:40%}.min-w-lg-40-p--force{min-width:40%!important}.w-lg-45-p{width:45%}.w-lg-45-p--force{width:45%!important}.max-w-lg-45-p{max-width:45%}.max-w-lg-45-p--force{max-width:45%!important}.min-w-lg-45-p{min-width:45%}.min-w-lg-45-p--force{min-width:45%!important}.w-lg-50-p{width:50%}.w-lg-50-p--force{width:50%!important}.max-w-lg-50-p{max-width:50%}.max-w-lg-50-p--force{max-width:50%!important}.min-w-lg-50-p{min-width:50%}.min-w-lg-50-p--force{min-width:50%!important}.w-lg-55-p{width:55%}.w-lg-55-p--force{width:55%!important}.max-w-lg-55-p{max-width:55%}.max-w-lg-55-p--force{max-width:55%!important}.min-w-lg-55-p{min-width:55%}.min-w-lg-55-p--force{min-width:55%!important}.w-lg-60-p{width:60%}.w-lg-60-p--force{width:60%!important}.max-w-lg-60-p{max-width:60%}.max-w-lg-60-p--force{max-width:60%!important}.min-w-lg-60-p{min-width:60%}.min-w-lg-60-p--force{min-width:60%!important}.w-lg-65-p{width:65%}.w-lg-65-p--force{width:65%!important}.max-w-lg-65-p{max-width:65%}.max-w-lg-65-p--force{max-width:65%!important}.min-w-lg-65-p{min-width:65%}.min-w-lg-65-p--force{min-width:65%!important}.w-lg-70-p{width:70%}.w-lg-70-p--force{width:70%!important}.max-w-lg-70-p{max-width:70%}.max-w-lg-70-p--force{max-width:70%!important}.min-w-lg-70-p{min-width:70%}.min-w-lg-70-p--force{min-width:70%!important}.w-lg-75-p{width:75%}.w-lg-75-p--force{width:75%!important}.max-w-lg-75-p{max-width:75%}.max-w-lg-75-p--force{max-width:75%!important}.min-w-lg-75-p{min-width:75%}.min-w-lg-75-p--force{min-width:75%!important}.w-lg-80-p{width:80%}.w-lg-80-p--force{width:80%!important}.max-w-lg-80-p{max-width:80%}.max-w-lg-80-p--force{max-width:80%!important}.min-w-lg-80-p{min-width:80%}.min-w-lg-80-p--force{min-width:80%!important}.w-lg-85-p{width:85%}.w-lg-85-p--force{width:85%!important}.max-w-lg-85-p{max-width:85%}.max-w-lg-85-p--force{max-width:85%!important}.min-w-lg-85-p{min-width:85%}.min-w-lg-85-p--force{min-width:85%!important}.w-lg-90-p{width:90%}.w-lg-90-p--force{width:90%!important}.max-w-lg-90-p{max-width:90%}.max-w-lg-90-p--force{max-width:90%!important}.min-w-lg-90-p{min-width:90%}.min-w-lg-90-p--force{min-width:90%!important}.w-lg-95-p{width:95%}.w-lg-95-p--force{width:95%!important}.max-w-lg-95-p{max-width:95%}.max-w-lg-95-p--force{max-width:95%!important}.min-w-lg-95-p{min-width:95%}.min-w-lg-95-p--force{min-width:95%!important}.w-lg-100-p{width:100%}.w-lg-100-p--force{width:100%!important}.max-w-lg-100-p{max-width:100%}.max-w-lg-100-p--force{max-width:100%!important}.min-w-lg-100-p{min-width:100%}.min-w-lg-100-p--force{min-width:100%!important}.w-lg-300{width:300px}.w-lg-300--force{width:300px!important}.max-w-lg-300{max-width:300px}.max-w-lg-300--force{max-width:300px!important}.min-w-lg-300{min-width:300px}.min-w-lg-300--force{min-width:300px!important}.w-lg-400{width:400px}.w-lg-400--force{width:400px!important}.max-w-lg-400{max-width:400px}.max-w-lg-400--force{max-width:400px!important}.min-w-lg-400{min-width:400px}.min-w-lg-400--force{min-width:400px!important}.w-lg-500{width:500px}.w-lg-500--force{width:500px!important}.max-w-lg-500{max-width:500px}.max-w-lg-500--force{max-width:500px!important}.min-w-lg-500{min-width:500px}.min-w-lg-500--force{min-width:500px!important}.w-lg-600{width:600px}.w-lg-600--force{width:600px!important}.max-w-lg-600{max-width:600px}.max-w-lg-600--force{max-width:600px!important}.min-w-lg-600{min-width:600px}.min-w-lg-600--force{min-width:600px!important}.w-lg-700{width:700px}.w-lg-700--force{width:700px!important}.max-w-lg-700{max-width:700px}.max-w-lg-700--force{max-width:700px!important}.min-w-lg-700{min-width:700px}.min-w-lg-700--force{min-width:700px!important}.w-lg-800{width:800px}.w-lg-800--force{width:800px!important}.max-w-lg-800{max-width:800px}.max-w-lg-800--force{max-width:800px!important}.min-w-lg-800{min-width:800px}.min-w-lg-800--force{min-width:800px!important}.w-lg-900{width:900px}.w-lg-900--force{width:900px!important}.max-w-lg-900{max-width:900px}.max-w-lg-900--force{max-width:900px!important}.min-w-lg-900{min-width:900px}.min-w-lg-900--force{min-width:900px!important}.w-lg-1000{width:1000px}.w-lg-1000--force{width:1000px!important}.max-w-lg-1000{max-width:1000px}.max-w-lg-1000--force{max-width:1000px!important}.min-w-lg-1000{min-width:1000px}.min-w-lg-1000--force{min-width:1000px!important}.w-lg-1100{width:1100px}.w-lg-1100--force{width:1100px!important}.max-w-lg-1100{max-width:1100px}.max-w-lg-1100--force{max-width:1100px!important}.min-w-lg-1100{min-width:1100px}.min-w-lg-1100--force{min-width:1100px!important}.w-lg-1200{width:1200px}.w-lg-1200--force{width:1200px!important}.max-w-lg-1200{max-width:1200px}.max-w-lg-1200--force{max-width:1200px!important}.min-w-lg-1200{min-width:1200px}.min-w-lg-1200--force{min-width:1200px!important}.w-lg-1300{width:1300px}.w-lg-1300--force{width:1300px!important}.max-w-lg-1300{max-width:1300px}.max-w-lg-1300--force{max-width:1300px!important}.min-w-lg-1300{min-width:1300px}.min-w-lg-1300--force{min-width:1300px!important}.w-lg-1400{width:1400px}.w-lg-1400--force{width:1400px!important}.max-w-lg-1400{max-width:1400px}.max-w-lg-1400--force{max-width:1400px!important}.min-w-lg-1400{min-width:1400px}.min-w-lg-1400--force{min-width:1400px!important}.w-lg-1500{width:1500px}.w-lg-1500--force{width:1500px!important}.max-w-lg-1500{max-width:1500px}.max-w-lg-1500--force{max-width:1500px!important}.min-w-lg-1500{min-width:1500px}.min-w-lg-1500--force{min-width:1500px!important}.w-lg-1600{width:1600px}.w-lg-1600--force{width:1600px!important}.max-w-lg-1600{max-width:1600px}.max-w-lg-1600--force{max-width:1600px!important}.min-w-lg-1600{min-width:1600px}.min-w-lg-1600--force{min-width:1600px!important}.w-lg-1700{width:1700px}.w-lg-1700--force{width:1700px!important}.max-w-lg-1700{max-width:1700px}.max-w-lg-1700--force{max-width:1700px!important}.min-w-lg-1700{min-width:1700px}.min-w-lg-1700--force{min-width:1700px!important}.w-lg-1800{width:1800px}.w-lg-1800--force{width:1800px!important}.max-w-lg-1800{max-width:1800px}.max-w-lg-1800--force{max-width:1800px!important}.min-w-lg-1800{min-width:1800px}.min-w-lg-1800--force{min-width:1800px!important}.w-lg-1900{width:1900px}.w-lg-1900--force{width:1900px!important}.max-w-lg-1900{max-width:1900px}.max-w-lg-1900--force{max-width:1900px!important}.min-w-lg-1900{min-width:1900px}.min-w-lg-1900--force{min-width:1900px!important}.w-lg-2000{width:2000px}.w-lg-2000--force{width:2000px!important}.max-w-lg-2000{max-width:2000px}.max-w-lg-2000--force{max-width:2000px!important}.min-w-lg-2000{min-width:2000px}.min-w-lg-2000--force{min-width:2000px!important}.w-lg-auto{width:auto}.w-lg-auto--force{width:auto!important}.m-lg--64{margin:-64px}.m-lg--64--force{margin:-64px!important}.mx-lg--64{margin-right:-64px;margin-left:-64px}.mx-lg--64--force{margin-right:-64px!important;margin-left:-64px!important}.my-lg--64{margin-top:-64px;margin-bottom:-64px}.my-lg--64--force{margin-top:-64px!important;margin-bottom:-64px!important}.mt-lg--64{margin-top:-64px}.mt-lg--64--force{margin-top:-64px!important}.mr-lg--64{margin-right:-64px}.mr-lg--64--force{margin-right:-64px!important}.mb-lg--64{margin-bottom:-64px}.mb-lg--64--force{margin-bottom:-64px!important}.ml-lg--64{margin-left:-64px}.ml-lg--64--force{margin-left:-64px!important}.m-lg--60{margin:-60px}.m-lg--60--force{margin:-60px!important}.mx-lg--60{margin-right:-60px;margin-left:-60px}.mx-lg--60--force{margin-right:-60px!important;margin-left:-60px!important}.my-lg--60{margin-top:-60px;margin-bottom:-60px}.my-lg--60--force{margin-top:-60px!important;margin-bottom:-60px!important}.mt-lg--60{margin-top:-60px}.mt-lg--60--force{margin-top:-60px!important}.mr-lg--60{margin-right:-60px}.mr-lg--60--force{margin-right:-60px!important}.mb-lg--60{margin-bottom:-60px}.mb-lg--60--force{margin-bottom:-60px!important}.ml-lg--60{margin-left:-60px}.ml-lg--60--force{margin-left:-60px!important}.m-lg--56{margin:-56px}.m-lg--56--force{margin:-56px!important}.mx-lg--56{margin-right:-56px;margin-left:-56px}.mx-lg--56--force{margin-right:-56px!important;margin-left:-56px!important}.my-lg--56{margin-top:-56px;margin-bottom:-56px}.my-lg--56--force{margin-top:-56px!important;margin-bottom:-56px!important}.mt-lg--56{margin-top:-56px}.mt-lg--56--force{margin-top:-56px!important}.mr-lg--56{margin-right:-56px}.mr-lg--56--force{margin-right:-56px!important}.mb-lg--56{margin-bottom:-56px}.mb-lg--56--force{margin-bottom:-56px!important}.ml-lg--56{margin-left:-56px}.ml-lg--56--force{margin-left:-56px!important}.m-lg--52{margin:-52px}.m-lg--52--force{margin:-52px!important}.mx-lg--52{margin-right:-52px;margin-left:-52px}.mx-lg--52--force{margin-right:-52px!important;margin-left:-52px!important}.my-lg--52{margin-top:-52px;margin-bottom:-52px}.my-lg--52--force{margin-top:-52px!important;margin-bottom:-52px!important}.mt-lg--52{margin-top:-52px}.mt-lg--52--force{margin-top:-52px!important}.mr-lg--52{margin-right:-52px}.mr-lg--52--force{margin-right:-52px!important}.mb-lg--52{margin-bottom:-52px}.mb-lg--52--force{margin-bottom:-52px!important}.ml-lg--52{margin-left:-52px}.ml-lg--52--force{margin-left:-52px!important}.m-lg--48{margin:-48px}.m-lg--48--force{margin:-48px!important}.mx-lg--48{margin-right:-48px;margin-left:-48px}.mx-lg--48--force{margin-right:-48px!important;margin-left:-48px!important}.my-lg--48{margin-top:-48px;margin-bottom:-48px}.my-lg--48--force{margin-top:-48px!important;margin-bottom:-48px!important}.mt-lg--48{margin-top:-48px}.mt-lg--48--force{margin-top:-48px!important}.mr-lg--48{margin-right:-48px}.mr-lg--48--force{margin-right:-48px!important}.mb-lg--48{margin-bottom:-48px}.mb-lg--48--force{margin-bottom:-48px!important}.ml-lg--48{margin-left:-48px}.ml-lg--48--force{margin-left:-48px!important}.m-lg--44{margin:-44px}.m-lg--44--force{margin:-44px!important}.mx-lg--44{margin-right:-44px;margin-left:-44px}.mx-lg--44--force{margin-right:-44px!important;margin-left:-44px!important}.my-lg--44{margin-top:-44px;margin-bottom:-44px}.my-lg--44--force{margin-top:-44px!important;margin-bottom:-44px!important}.mt-lg--44{margin-top:-44px}.mt-lg--44--force{margin-top:-44px!important}.mr-lg--44{margin-right:-44px}.mr-lg--44--force{margin-right:-44px!important}.mb-lg--44{margin-bottom:-44px}.mb-lg--44--force{margin-bottom:-44px!important}.ml-lg--44{margin-left:-44px}.ml-lg--44--force{margin-left:-44px!important}.m-lg--40{margin:-40px}.m-lg--40--force{margin:-40px!important}.mx-lg--40{margin-right:-40px;margin-left:-40px}.mx-lg--40--force{margin-right:-40px!important;margin-left:-40px!important}.my-lg--40{margin-top:-40px;margin-bottom:-40px}.my-lg--40--force{margin-top:-40px!important;margin-bottom:-40px!important}.mt-lg--40{margin-top:-40px}.mt-lg--40--force{margin-top:-40px!important}.mr-lg--40{margin-right:-40px}.mr-lg--40--force{margin-right:-40px!important}.mb-lg--40{margin-bottom:-40px}.mb-lg--40--force{margin-bottom:-40px!important}.ml-lg--40{margin-left:-40px}.ml-lg--40--force{margin-left:-40px!important}.m-lg--36{margin:-36px}.m-lg--36--force{margin:-36px!important}.mx-lg--36{margin-right:-36px;margin-left:-36px}.mx-lg--36--force{margin-right:-36px!important;margin-left:-36px!important}.my-lg--36{margin-top:-36px;margin-bottom:-36px}.my-lg--36--force{margin-top:-36px!important;margin-bottom:-36px!important}.mt-lg--36{margin-top:-36px}.mt-lg--36--force{margin-top:-36px!important}.mr-lg--36{margin-right:-36px}.mr-lg--36--force{margin-right:-36px!important}.mb-lg--36{margin-bottom:-36px}.mb-lg--36--force{margin-bottom:-36px!important}.ml-lg--36{margin-left:-36px}.ml-lg--36--force{margin-left:-36px!important}.m-lg--32{margin:-32px}.m-lg--32--force{margin:-32px!important}.mx-lg--32{margin-right:-32px;margin-left:-32px}.mx-lg--32--force{margin-right:-32px!important;margin-left:-32px!important}.my-lg--32{margin-top:-32px;margin-bottom:-32px}.my-lg--32--force{margin-top:-32px!important;margin-bottom:-32px!important}.mt-lg--32{margin-top:-32px}.mt-lg--32--force{margin-top:-32px!important}.mr-lg--32{margin-right:-32px}.mr-lg--32--force{margin-right:-32px!important}.mb-lg--32{margin-bottom:-32px}.mb-lg--32--force{margin-bottom:-32px!important}.ml-lg--32{margin-left:-32px}.ml-lg--32--force{margin-left:-32px!important}.m-lg--28{margin:-28px}.m-lg--28--force{margin:-28px!important}.mx-lg--28{margin-right:-28px;margin-left:-28px}.mx-lg--28--force{margin-right:-28px!important;margin-left:-28px!important}.my-lg--28{margin-top:-28px;margin-bottom:-28px}.my-lg--28--force{margin-top:-28px!important;margin-bottom:-28px!important}.mt-lg--28{margin-top:-28px}.mt-lg--28--force{margin-top:-28px!important}.mr-lg--28{margin-right:-28px}.mr-lg--28--force{margin-right:-28px!important}.mb-lg--28{margin-bottom:-28px}.mb-lg--28--force{margin-bottom:-28px!important}.ml-lg--28{margin-left:-28px}.ml-lg--28--force{margin-left:-28px!important}.m-lg--24{margin:-24px}.m-lg--24--force{margin:-24px!important}.mx-lg--24{margin-right:-24px;margin-left:-24px}.mx-lg--24--force{margin-right:-24px!important;margin-left:-24px!important}.my-lg--24{margin-top:-24px;margin-bottom:-24px}.my-lg--24--force{margin-top:-24px!important;margin-bottom:-24px!important}.mt-lg--24{margin-top:-24px}.mt-lg--24--force{margin-top:-24px!important}.mr-lg--24{margin-right:-24px}.mr-lg--24--force{margin-right:-24px!important}.mb-lg--24{margin-bottom:-24px}.mb-lg--24--force{margin-bottom:-24px!important}.ml-lg--24{margin-left:-24px}.ml-lg--24--force{margin-left:-24px!important}.m-lg--20{margin:-20px}.m-lg--20--force{margin:-20px!important}.mx-lg--20{margin-right:-20px;margin-left:-20px}.mx-lg--20--force{margin-right:-20px!important;margin-left:-20px!important}.my-lg--20{margin-top:-20px;margin-bottom:-20px}.my-lg--20--force{margin-top:-20px!important;margin-bottom:-20px!important}.mt-lg--20{margin-top:-20px}.mt-lg--20--force{margin-top:-20px!important}.mr-lg--20{margin-right:-20px}.mr-lg--20--force{margin-right:-20px!important}.mb-lg--20{margin-bottom:-20px}.mb-lg--20--force{margin-bottom:-20px!important}.ml-lg--20{margin-left:-20px}.ml-lg--20--force{margin-left:-20px!important}.m-lg--16{margin:-16px}.m-lg--16--force{margin:-16px!important}.mx-lg--16{margin-right:-16px;margin-left:-16px}.mx-lg--16--force{margin-right:-16px!important;margin-left:-16px!important}.my-lg--16{margin-top:-16px;margin-bottom:-16px}.my-lg--16--force{margin-top:-16px!important;margin-bottom:-16px!important}.mt-lg--16{margin-top:-16px}.mt-lg--16--force{margin-top:-16px!important}.mr-lg--16{margin-right:-16px}.mr-lg--16--force{margin-right:-16px!important}.mb-lg--16{margin-bottom:-16px}.mb-lg--16--force{margin-bottom:-16px!important}.ml-lg--16{margin-left:-16px}.ml-lg--16--force{margin-left:-16px!important}.m-lg--12{margin:-12px}.m-lg--12--force{margin:-12px!important}.mx-lg--12{margin-right:-12px;margin-left:-12px}.mx-lg--12--force{margin-right:-12px!important;margin-left:-12px!important}.my-lg--12{margin-top:-12px;margin-bottom:-12px}.my-lg--12--force{margin-top:-12px!important;margin-bottom:-12px!important}.mt-lg--12{margin-top:-12px}.mt-lg--12--force{margin-top:-12px!important}.mr-lg--12{margin-right:-12px}.mr-lg--12--force{margin-right:-12px!important}.mb-lg--12{margin-bottom:-12px}.mb-lg--12--force{margin-bottom:-12px!important}.ml-lg--12{margin-left:-12px}.ml-lg--12--force{margin-left:-12px!important}.m-lg--8{margin:-8px}.m-lg--8--force{margin:-8px!important}.mx-lg--8{margin-right:-8px;margin-left:-8px}.mx-lg--8--force{margin-right:-8px!important;margin-left:-8px!important}.my-lg--8{margin-top:-8px;margin-bottom:-8px}.my-lg--8--force{margin-top:-8px!important;margin-bottom:-8px!important}.mt-lg--8{margin-top:-8px}.mt-lg--8--force{margin-top:-8px!important}.mr-lg--8{margin-right:-8px}.mr-lg--8--force{margin-right:-8px!important}.mb-lg--8{margin-bottom:-8px}.mb-lg--8--force{margin-bottom:-8px!important}.ml-lg--8{margin-left:-8px}.ml-lg--8--force{margin-left:-8px!important}.m-lg--4{margin:-4px}.m-lg--4--force{margin:-4px!important}.mx-lg--4{margin-right:-4px;margin-left:-4px}.mx-lg--4--force{margin-right:-4px!important;margin-left:-4px!important}.my-lg--4{margin-top:-4px;margin-bottom:-4px}.my-lg--4--force{margin-top:-4px!important;margin-bottom:-4px!important}.mt-lg--4{margin-top:-4px}.mt-lg--4--force{margin-top:-4px!important}.mr-lg--4{margin-right:-4px}.mr-lg--4--force{margin-right:-4px!important}.mb-lg--4{margin-bottom:-4px}.mb-lg--4--force{margin-bottom:-4px!important}.ml-lg--4{margin-left:-4px}.ml-lg--4--force{margin-left:-4px!important}.m-lg-0{margin:0}.m-lg-0--force{margin:0!important}.mx-lg-0{margin-right:0;margin-left:0}.mx-lg-0--force{margin-right:0!important;margin-left:0!important}.my-lg-0{margin-top:0;margin-bottom:0}.my-lg-0--force{margin-top:0!important;margin-bottom:0!important}.mt-lg-0{margin-top:0}.mt-lg-0--force{margin-top:0!important}.mr-lg-0{margin-right:0}.mr-lg-0--force{margin-right:0!important}.masonry-gap-lg-0>*,.mb-lg-0{margin-bottom:0}.mb-lg-0--force{margin-bottom:0!important}.ml-lg-0{margin-left:0}.ml-lg-0--force{margin-left:0!important}.m-lg-4{margin:4px}.m-lg-4--force{margin:4px!important}.mx-lg-4{margin-right:4px;margin-left:4px}.mx-lg-4--force{margin-right:4px!important;margin-left:4px!important}.my-lg-4{margin-top:4px;margin-bottom:4px}.my-lg-4--force{margin-top:4px!important;margin-bottom:4px!important}.mt-lg-4{margin-top:4px}.mt-lg-4--force{margin-top:4px!important}.mr-lg-4{margin-right:4px}.mr-lg-4--force{margin-right:4px!important}.masonry-gap-lg-4>*,.mb-lg-4{margin-bottom:4px}.mb-lg-4--force{margin-bottom:4px!important}.ml-lg-4{margin-left:4px}.ml-lg-4--force{margin-left:4px!important}.m-lg-8{margin:8px}.m-lg-8--force{margin:8px!important}.mx-lg-8{margin-right:8px;margin-left:8px}.mx-lg-8--force{margin-right:8px!important;margin-left:8px!important}.my-lg-8{margin-top:8px;margin-bottom:8px}.my-lg-8--force{margin-top:8px!important;margin-bottom:8px!important}.mt-lg-8{margin-top:8px}.mt-lg-8--force{margin-top:8px!important}.mr-lg-8{margin-right:8px}.mr-lg-8--force{margin-right:8px!important}.masonry-gap-lg-8>*,.mb-lg-8{margin-bottom:8px}.mb-lg-8--force{margin-bottom:8px!important}.ml-lg-8{margin-left:8px}.ml-lg-8--force{margin-left:8px!important}.m-lg-12{margin:12px}.m-lg-12--force{margin:12px!important}.mx-lg-12{margin-right:12px;margin-left:12px}.mx-lg-12--force{margin-right:12px!important;margin-left:12px!important}.my-lg-12{margin-top:12px;margin-bottom:12px}.my-lg-12--force{margin-top:12px!important;margin-bottom:12px!important}.mt-lg-12{margin-top:12px}.mt-lg-12--force{margin-top:12px!important}.mr-lg-12{margin-right:12px}.mr-lg-12--force{margin-right:12px!important}.masonry-gap-lg-12>*,.mb-lg-12{margin-bottom:12px}.mb-lg-12--force{margin-bottom:12px!important}.ml-lg-12{margin-left:12px}.ml-lg-12--force{margin-left:12px!important}.m-lg-16{margin:16px}.m-lg-16--force{margin:16px!important}.mx-lg-16{margin-right:16px;margin-left:16px}.mx-lg-16--force{margin-right:16px!important;margin-left:16px!important}.my-lg-16{margin-top:16px;margin-bottom:16px}.my-lg-16--force{margin-top:16px!important;margin-bottom:16px!important}.mt-lg-16{margin-top:16px}.mt-lg-16--force{margin-top:16px!important}.mr-lg-16{margin-right:16px}.mr-lg-16--force{margin-right:16px!important}.masonry-gap-lg-16>*,.mb-lg-16{margin-bottom:16px}.mb-lg-16--force{margin-bottom:16px!important}.ml-lg-16{margin-left:16px}.ml-lg-16--force{margin-left:16px!important}.m-lg-20{margin:20px}.m-lg-20--force{margin:20px!important}.mx-lg-20{margin-right:20px;margin-left:20px}.mx-lg-20--force{margin-right:20px!important;margin-left:20px!important}.my-lg-20{margin-top:20px;margin-bottom:20px}.my-lg-20--force{margin-top:20px!important;margin-bottom:20px!important}.mt-lg-20{margin-top:20px}.mt-lg-20--force{margin-top:20px!important}.mr-lg-20{margin-right:20px}.mr-lg-20--force{margin-right:20px!important}.masonry-gap-lg-20>*,.mb-lg-20{margin-bottom:20px}.mb-lg-20--force{margin-bottom:20px!important}.ml-lg-20{margin-left:20px}.ml-lg-20--force{margin-left:20px!important}.m-lg-24{margin:24px}.m-lg-24--force{margin:24px!important}.mx-lg-24{margin-right:24px;margin-left:24px}.mx-lg-24--force{margin-right:24px!important;margin-left:24px!important}.my-lg-24{margin-top:24px;margin-bottom:24px}.my-lg-24--force{margin-top:24px!important;margin-bottom:24px!important}.mt-lg-24{margin-top:24px}.mt-lg-24--force{margin-top:24px!important}.mr-lg-24{margin-right:24px}.mr-lg-24--force{margin-right:24px!important}.masonry-gap-lg-24>*,.mb-lg-24{margin-bottom:24px}.mb-lg-24--force{margin-bottom:24px!important}.ml-lg-24{margin-left:24px}.ml-lg-24--force{margin-left:24px!important}.m-lg-28{margin:28px}.m-lg-28--force{margin:28px!important}.mx-lg-28{margin-right:28px;margin-left:28px}.mx-lg-28--force{margin-right:28px!important;margin-left:28px!important}.my-lg-28{margin-top:28px;margin-bottom:28px}.my-lg-28--force{margin-top:28px!important;margin-bottom:28px!important}.mt-lg-28{margin-top:28px}.mt-lg-28--force{margin-top:28px!important}.mr-lg-28{margin-right:28px}.mr-lg-28--force{margin-right:28px!important}.masonry-gap-lg-28>*,.mb-lg-28{margin-bottom:28px}.mb-lg-28--force{margin-bottom:28px!important}.ml-lg-28{margin-left:28px}.ml-lg-28--force{margin-left:28px!important}.m-lg-32{margin:32px}.m-lg-32--force{margin:32px!important}.mx-lg-32{margin-right:32px;margin-left:32px}.mx-lg-32--force{margin-right:32px!important;margin-left:32px!important}.my-lg-32{margin-top:32px;margin-bottom:32px}.my-lg-32--force{margin-top:32px!important;margin-bottom:32px!important}.mt-lg-32{margin-top:32px}.mt-lg-32--force{margin-top:32px!important}.mr-lg-32{margin-right:32px}.mr-lg-32--force{margin-right:32px!important}.masonry-gap-lg-32>*,.mb-lg-32{margin-bottom:32px}.mb-lg-32--force{margin-bottom:32px!important}.ml-lg-32{margin-left:32px}.ml-lg-32--force{margin-left:32px!important}.m-lg-36{margin:36px}.m-lg-36--force{margin:36px!important}.mx-lg-36{margin-right:36px;margin-left:36px}.mx-lg-36--force{margin-right:36px!important;margin-left:36px!important}.my-lg-36{margin-top:36px;margin-bottom:36px}.my-lg-36--force{margin-top:36px!important;margin-bottom:36px!important}.mt-lg-36{margin-top:36px}.mt-lg-36--force{margin-top:36px!important}.mr-lg-36{margin-right:36px}.mr-lg-36--force{margin-right:36px!important}.masonry-gap-lg-36>*,.mb-lg-36{margin-bottom:36px}.mb-lg-36--force{margin-bottom:36px!important}.ml-lg-36{margin-left:36px}.ml-lg-36--force{margin-left:36px!important}.m-lg-40{margin:40px}.m-lg-40--force{margin:40px!important}.mx-lg-40{margin-right:40px;margin-left:40px}.mx-lg-40--force{margin-right:40px!important;margin-left:40px!important}.my-lg-40{margin-top:40px;margin-bottom:40px}.my-lg-40--force{margin-top:40px!important;margin-bottom:40px!important}.mt-lg-40{margin-top:40px}.mt-lg-40--force{margin-top:40px!important}.mr-lg-40{margin-right:40px}.mr-lg-40--force{margin-right:40px!important}.masonry-gap-lg-40>*,.mb-lg-40{margin-bottom:40px}.mb-lg-40--force{margin-bottom:40px!important}.ml-lg-40{margin-left:40px}.ml-lg-40--force{margin-left:40px!important}.m-lg-44{margin:44px}.m-lg-44--force{margin:44px!important}.mx-lg-44{margin-right:44px;margin-left:44px}.mx-lg-44--force{margin-right:44px!important;margin-left:44px!important}.my-lg-44{margin-top:44px;margin-bottom:44px}.my-lg-44--force{margin-top:44px!important;margin-bottom:44px!important}.mt-lg-44{margin-top:44px}.mt-lg-44--force{margin-top:44px!important}.mr-lg-44{margin-right:44px}.mr-lg-44--force{margin-right:44px!important}.masonry-gap-lg-44>*,.mb-lg-44{margin-bottom:44px}.mb-lg-44--force{margin-bottom:44px!important}.ml-lg-44{margin-left:44px}.ml-lg-44--force{margin-left:44px!important}.m-lg-48{margin:48px}.m-lg-48--force{margin:48px!important}.mx-lg-48{margin-right:48px;margin-left:48px}.mx-lg-48--force{margin-right:48px!important;margin-left:48px!important}.my-lg-48{margin-top:48px;margin-bottom:48px}.my-lg-48--force{margin-top:48px!important;margin-bottom:48px!important}.mt-lg-48{margin-top:48px}.mt-lg-48--force{margin-top:48px!important}.mr-lg-48{margin-right:48px}.mr-lg-48--force{margin-right:48px!important}.masonry-gap-lg-48>*,.mb-lg-48{margin-bottom:48px}.mb-lg-48--force{margin-bottom:48px!important}.ml-lg-48{margin-left:48px}.ml-lg-48--force{margin-left:48px!important}.m-lg-52{margin:52px}.m-lg-52--force{margin:52px!important}.mx-lg-52{margin-right:52px;margin-left:52px}.mx-lg-52--force{margin-right:52px!important;margin-left:52px!important}.my-lg-52{margin-top:52px;margin-bottom:52px}.my-lg-52--force{margin-top:52px!important;margin-bottom:52px!important}.mt-lg-52{margin-top:52px}.mt-lg-52--force{margin-top:52px!important}.mr-lg-52{margin-right:52px}.mr-lg-52--force{margin-right:52px!important}.mb-lg-52{margin-bottom:52px}.mb-lg-52--force{margin-bottom:52px!important}.ml-lg-52{margin-left:52px}.ml-lg-52--force{margin-left:52px!important}.m-lg-56{margin:56px}.m-lg-56--force{margin:56px!important}.mx-lg-56{margin-right:56px;margin-left:56px}.mx-lg-56--force{margin-right:56px!important;margin-left:56px!important}.my-lg-56{margin-top:56px;margin-bottom:56px}.my-lg-56--force{margin-top:56px!important;margin-bottom:56px!important}.mt-lg-56{margin-top:56px}.mt-lg-56--force{margin-top:56px!important}.mr-lg-56{margin-right:56px}.mr-lg-56--force{margin-right:56px!important}.mb-lg-56{margin-bottom:56px}.mb-lg-56--force{margin-bottom:56px!important}.ml-lg-56{margin-left:56px}.ml-lg-56--force{margin-left:56px!important}.m-lg-60{margin:60px}.m-lg-60--force{margin:60px!important}.mx-lg-60{margin-right:60px;margin-left:60px}.mx-lg-60--force{margin-right:60px!important;margin-left:60px!important}.my-lg-60{margin-top:60px;margin-bottom:60px}.my-lg-60--force{margin-top:60px!important;margin-bottom:60px!important}.mt-lg-60{margin-top:60px}.mt-lg-60--force{margin-top:60px!important}.mr-lg-60{margin-right:60px}.mr-lg-60--force{margin-right:60px!important}.mb-lg-60{margin-bottom:60px}.mb-lg-60--force{margin-bottom:60px!important}.ml-lg-60{margin-left:60px}.ml-lg-60--force{margin-left:60px!important}.m-lg-64{margin:64px}.m-lg-64--force{margin:64px!important}.mx-lg-64{margin-right:64px;margin-left:64px}.mx-lg-64--force{margin-right:64px!important;margin-left:64px!important}.my-lg-64{margin-top:64px;margin-bottom:64px}.my-lg-64--force{margin-top:64px!important;margin-bottom:64px!important}.mt-lg-64{margin-top:64px}.mt-lg-64--force{margin-top:64px!important}.mr-lg-64{margin-right:64px}.mr-lg-64--force{margin-right:64px!important}.mb-lg-64{margin-bottom:64px}.mb-lg-64--force{margin-bottom:64px!important}.ml-lg-64{margin-left:64px}.ml-lg-64--force{margin-left:64px!important}.m-lg-auto{margin:auto}.m-lg-auto--force{margin:auto!important}.mt-lg-auto{margin-top:auto}.mt-lg-auto--force{margin-top:auto!important}.mr-lg-auto{margin-right:auto}.mr-lg-auto--force{margin-right:auto!important}.mb-lg-auto{margin-bottom:auto}.mb-lg-auto--force{margin-bottom:auto!important}.ml-lg-auto{margin-left:auto}.ml-lg-auto--force{margin-left:auto!important}.mx-lg-auto{margin-right:auto;margin-left:auto}.mx-lg-auto--force{margin-right:auto!important;margin-left:auto!important}.my-lg-auto{margin-top:auto;margin-bottom:auto}.my-lg-auto--force{margin-top:auto!important;margin-bottom:auto!important}.p-lg-0{padding:0}.p-lg-0--force{padding:0!important}.px-lg-0{padding-right:0;padding-left:0}.px-lg-0--force{padding-right:0!important;padding-left:0!important}.py-lg-0{padding-top:0;padding-bottom:0}.py-lg-0--force{padding-top:0!important;padding-bottom:0!important}.pt-lg-0{padding-top:0}.pt-lg-0--force{padding-top:0!important}.pr-lg-0{padding-right:0}.pr-lg-0--force{padding-right:0!important}.pb-lg-0{padding-bottom:0}.pb-lg-0--force{padding-bottom:0!important}.pl-lg-0{padding-left:0}.pl-lg-0--force{padding-left:0!important}.p-lg-4{padding:4px}.p-lg-4--force{padding:4px!important}.px-lg-4{padding-right:4px;padding-left:4px}.px-lg-4--force{padding-right:4px!important;padding-left:4px!important}.py-lg-4{padding-top:4px;padding-bottom:4px}.py-lg-4--force{padding-top:4px!important;padding-bottom:4px!important}.pt-lg-4{padding-top:4px}.pt-lg-4--force{padding-top:4px!important}.pr-lg-4{padding-right:4px}.pr-lg-4--force{padding-right:4px!important}.pb-lg-4{padding-bottom:4px}.pb-lg-4--force{padding-bottom:4px!important}.pl-lg-4{padding-left:4px}.pl-lg-4--force{padding-left:4px!important}.p-lg-8{padding:8px}.p-lg-8--force{padding:8px!important}.px-lg-8{padding-right:8px;padding-left:8px}.px-lg-8--force{padding-right:8px!important;padding-left:8px!important}.py-lg-8{padding-top:8px;padding-bottom:8px}.py-lg-8--force{padding-top:8px!important;padding-bottom:8px!important}.pt-lg-8{padding-top:8px}.pt-lg-8--force{padding-top:8px!important}.pr-lg-8{padding-right:8px}.pr-lg-8--force{padding-right:8px!important}.pb-lg-8{padding-bottom:8px}.pb-lg-8--force{padding-bottom:8px!important}.pl-lg-8{padding-left:8px}.pl-lg-8--force{padding-left:8px!important}.p-lg-12{padding:12px}.p-lg-12--force{padding:12px!important}.px-lg-12{padding-right:12px;padding-left:12px}.px-lg-12--force{padding-right:12px!important;padding-left:12px!important}.py-lg-12{padding-top:12px;padding-bottom:12px}.py-lg-12--force{padding-top:12px!important;padding-bottom:12px!important}.pt-lg-12{padding-top:12px}.pt-lg-12--force{padding-top:12px!important}.pr-lg-12{padding-right:12px}.pr-lg-12--force{padding-right:12px!important}.pb-lg-12{padding-bottom:12px}.pb-lg-12--force{padding-bottom:12px!important}.pl-lg-12{padding-left:12px}.pl-lg-12--force{padding-left:12px!important}.p-lg-16{padding:16px}.p-lg-16--force{padding:16px!important}.px-lg-16{padding-right:16px;padding-left:16px}.px-lg-16--force{padding-right:16px!important;padding-left:16px!important}.py-lg-16{padding-top:16px;padding-bottom:16px}.py-lg-16--force{padding-top:16px!important;padding-bottom:16px!important}.pt-lg-16{padding-top:16px}.pt-lg-16--force{padding-top:16px!important}.pr-lg-16{padding-right:16px}.pr-lg-16--force{padding-right:16px!important}.pb-lg-16{padding-bottom:16px}.pb-lg-16--force{padding-bottom:16px!important}.pl-lg-16{padding-left:16px}.pl-lg-16--force{padding-left:16px!important}.p-lg-20{padding:20px}.p-lg-20--force{padding:20px!important}.px-lg-20{padding-right:20px;padding-left:20px}.px-lg-20--force{padding-right:20px!important;padding-left:20px!important}.py-lg-20{padding-top:20px;padding-bottom:20px}.py-lg-20--force{padding-top:20px!important;padding-bottom:20px!important}.pt-lg-20{padding-top:20px}.pt-lg-20--force{padding-top:20px!important}.pr-lg-20{padding-right:20px}.pr-lg-20--force{padding-right:20px!important}.pb-lg-20{padding-bottom:20px}.pb-lg-20--force{padding-bottom:20px!important}.pl-lg-20{padding-left:20px}.pl-lg-20--force{padding-left:20px!important}.p-lg-24{padding:24px}.p-lg-24--force{padding:24px!important}.px-lg-24{padding-right:24px;padding-left:24px}.px-lg-24--force{padding-right:24px!important;padding-left:24px!important}.py-lg-24{padding-top:24px;padding-bottom:24px}.py-lg-24--force{padding-top:24px!important;padding-bottom:24px!important}.pt-lg-24{padding-top:24px}.pt-lg-24--force{padding-top:24px!important}.pr-lg-24{padding-right:24px}.pr-lg-24--force{padding-right:24px!important}.pb-lg-24{padding-bottom:24px}.pb-lg-24--force{padding-bottom:24px!important}.pl-lg-24{padding-left:24px}.pl-lg-24--force{padding-left:24px!important}.p-lg-28{padding:28px}.p-lg-28--force{padding:28px!important}.px-lg-28{padding-right:28px;padding-left:28px}.px-lg-28--force{padding-right:28px!important;padding-left:28px!important}.py-lg-28{padding-top:28px;padding-bottom:28px}.py-lg-28--force{padding-top:28px!important;padding-bottom:28px!important}.pt-lg-28{padding-top:28px}.pt-lg-28--force{padding-top:28px!important}.pr-lg-28{padding-right:28px}.pr-lg-28--force{padding-right:28px!important}.pb-lg-28{padding-bottom:28px}.pb-lg-28--force{padding-bottom:28px!important}.pl-lg-28{padding-left:28px}.pl-lg-28--force{padding-left:28px!important}.p-lg-32{padding:32px}.p-lg-32--force{padding:32px!important}.px-lg-32{padding-right:32px;padding-left:32px}.px-lg-32--force{padding-right:32px!important;padding-left:32px!important}.py-lg-32{padding-top:32px;padding-bottom:32px}.py-lg-32--force{padding-top:32px!important;padding-bottom:32px!important}.pt-lg-32{padding-top:32px}.pt-lg-32--force{padding-top:32px!important}.pr-lg-32{padding-right:32px}.pr-lg-32--force{padding-right:32px!important}.pb-lg-32{padding-bottom:32px}.pb-lg-32--force{padding-bottom:32px!important}.pl-lg-32{padding-left:32px}.pl-lg-32--force{padding-left:32px!important}.p-lg-36{padding:36px}.p-lg-36--force{padding:36px!important}.px-lg-36{padding-right:36px;padding-left:36px}.px-lg-36--force{padding-right:36px!important;padding-left:36px!important}.py-lg-36{padding-top:36px;padding-bottom:36px}.py-lg-36--force{padding-top:36px!important;padding-bottom:36px!important}.pt-lg-36{padding-top:36px}.pt-lg-36--force{padding-top:36px!important}.pr-lg-36{padding-right:36px}.pr-lg-36--force{padding-right:36px!important}.pb-lg-36{padding-bottom:36px}.pb-lg-36--force{padding-bottom:36px!important}.pl-lg-36{padding-left:36px}.pl-lg-36--force{padding-left:36px!important}.p-lg-40{padding:40px}.p-lg-40--force{padding:40px!important}.px-lg-40{padding-right:40px;padding-left:40px}.px-lg-40--force{padding-right:40px!important;padding-left:40px!important}.py-lg-40{padding-top:40px;padding-bottom:40px}.py-lg-40--force{padding-top:40px!important;padding-bottom:40px!important}.pt-lg-40{padding-top:40px}.pt-lg-40--force{padding-top:40px!important}.pr-lg-40{padding-right:40px}.pr-lg-40--force{padding-right:40px!important}.pb-lg-40{padding-bottom:40px}.pb-lg-40--force{padding-bottom:40px!important}.pl-lg-40{padding-left:40px}.pl-lg-40--force{padding-left:40px!important}.p-lg-44{padding:44px}.p-lg-44--force{padding:44px!important}.px-lg-44{padding-right:44px;padding-left:44px}.px-lg-44--force{padding-right:44px!important;padding-left:44px!important}.py-lg-44{padding-top:44px;padding-bottom:44px}.py-lg-44--force{padding-top:44px!important;padding-bottom:44px!important}.pt-lg-44{padding-top:44px}.pt-lg-44--force{padding-top:44px!important}.pr-lg-44{padding-right:44px}.pr-lg-44--force{padding-right:44px!important}.pb-lg-44{padding-bottom:44px}.pb-lg-44--force{padding-bottom:44px!important}.pl-lg-44{padding-left:44px}.pl-lg-44--force{padding-left:44px!important}.p-lg-48{padding:48px}.p-lg-48--force{padding:48px!important}.px-lg-48{padding-right:48px;padding-left:48px}.px-lg-48--force{padding-right:48px!important;padding-left:48px!important}.py-lg-48{padding-top:48px;padding-bottom:48px}.py-lg-48--force{padding-top:48px!important;padding-bottom:48px!important}.pt-lg-48{padding-top:48px}.pt-lg-48--force{padding-top:48px!important}.pr-lg-48{padding-right:48px}.pr-lg-48--force{padding-right:48px!important}.pb-lg-48{padding-bottom:48px}.pb-lg-48--force{padding-bottom:48px!important}.pl-lg-48{padding-left:48px}.pl-lg-48--force{padding-left:48px!important}.p-lg-52{padding:52px}.p-lg-52--force{padding:52px!important}.px-lg-52{padding-right:52px;padding-left:52px}.px-lg-52--force{padding-right:52px!important;padding-left:52px!important}.py-lg-52{padding-top:52px;padding-bottom:52px}.py-lg-52--force{padding-top:52px!important;padding-bottom:52px!important}.pt-lg-52{padding-top:52px}.pt-lg-52--force{padding-top:52px!important}.pr-lg-52{padding-right:52px}.pr-lg-52--force{padding-right:52px!important}.pb-lg-52{padding-bottom:52px}.pb-lg-52--force{padding-bottom:52px!important}.pl-lg-52{padding-left:52px}.pl-lg-52--force{padding-left:52px!important}.p-lg-56{padding:56px}.p-lg-56--force{padding:56px!important}.px-lg-56{padding-right:56px;padding-left:56px}.px-lg-56--force{padding-right:56px!important;padding-left:56px!important}.py-lg-56{padding-top:56px;padding-bottom:56px}.py-lg-56--force{padding-top:56px!important;padding-bottom:56px!important}.pt-lg-56{padding-top:56px}.pt-lg-56--force{padding-top:56px!important}.pr-lg-56{padding-right:56px}.pr-lg-56--force{padding-right:56px!important}.pb-lg-56{padding-bottom:56px}.pb-lg-56--force{padding-bottom:56px!important}.pl-lg-56{padding-left:56px}.pl-lg-56--force{padding-left:56px!important}.p-lg-60{padding:60px}.p-lg-60--force{padding:60px!important}.px-lg-60{padding-right:60px;padding-left:60px}.px-lg-60--force{padding-right:60px!important;padding-left:60px!important}.py-lg-60{padding-top:60px;padding-bottom:60px}.py-lg-60--force{padding-top:60px!important;padding-bottom:60px!important}.pt-lg-60{padding-top:60px}.pt-lg-60--force{padding-top:60px!important}.pr-lg-60{padding-right:60px}.pr-lg-60--force{padding-right:60px!important}.pb-lg-60{padding-bottom:60px}.pb-lg-60--force{padding-bottom:60px!important}.pl-lg-60{padding-left:60px}.pl-lg-60--force{padding-left:60px!important}.p-lg-64{padding:64px}.p-lg-64--force{padding:64px!important}.px-lg-64{padding-right:64px;padding-left:64px}.px-lg-64--force{padding-right:64px!important;padding-left:64px!important}.py-lg-64{padding-top:64px;padding-bottom:64px}.py-lg-64--force{padding-top:64px!important;padding-bottom:64px!important}.pt-lg-64{padding-top:64px}.pt-lg-64--force{padding-top:64px!important}.pr-lg-64{padding-right:64px}.pr-lg-64--force{padding-right:64px!important}.pb-lg-64{padding-bottom:64px}.pb-lg-64--force{padding-bottom:64px!important}.pl-lg-64{padding-left:64px}.pl-lg-64--force{padding-left:64px!important}.p-lg-68{padding:68px}.p-lg-68--force{padding:68px!important}.px-lg-68{padding-right:68px;padding-left:68px}.px-lg-68--force{padding-right:68px!important;padding-left:68px!important}.py-lg-68{padding-top:68px;padding-bottom:68px}.py-lg-68--force{padding-top:68px!important;padding-bottom:68px!important}.pt-lg-68{padding-top:68px}.pt-lg-68--force{padding-top:68px!important}.pr-lg-68{padding-right:68px}.pr-lg-68--force{padding-right:68px!important}.pb-lg-68{padding-bottom:68px}.pb-lg-68--force{padding-bottom:68px!important}.pl-lg-68{padding-left:68px}.pl-lg-68--force{padding-left:68px!important}.p-lg-72{padding:72px}.p-lg-72--force{padding:72px!important}.px-lg-72{padding-right:72px;padding-left:72px}.px-lg-72--force{padding-right:72px!important;padding-left:72px!important}.py-lg-72{padding-top:72px;padding-bottom:72px}.py-lg-72--force{padding-top:72px!important;padding-bottom:72px!important}.pt-lg-72{padding-top:72px}.pt-lg-72--force{padding-top:72px!important}.pr-lg-72{padding-right:72px}.pr-lg-72--force{padding-right:72px!important}.pb-lg-72{padding-bottom:72px}.pb-lg-72--force{padding-bottom:72px!important}.pl-lg-72{padding-left:72px}.pl-lg-72--force{padding-left:72px!important}.p-lg-76{padding:76px}.p-lg-76--force{padding:76px!important}.px-lg-76{padding-right:76px;padding-left:76px}.px-lg-76--force{padding-right:76px!important;padding-left:76px!important}.py-lg-76{padding-top:76px;padding-bottom:76px}.py-lg-76--force{padding-top:76px!important;padding-bottom:76px!important}.pt-lg-76{padding-top:76px}.pt-lg-76--force{padding-top:76px!important}.pr-lg-76{padding-right:76px}.pr-lg-76--force{padding-right:76px!important}.pb-lg-76{padding-bottom:76px}.pb-lg-76--force{padding-bottom:76px!important}.pl-lg-76{padding-left:76px}.pl-lg-76--force{padding-left:76px!important}.p-lg-80{padding:80px}.p-lg-80--force{padding:80px!important}.px-lg-80{padding-right:80px;padding-left:80px}.px-lg-80--force{padding-right:80px!important;padding-left:80px!important}.py-lg-80{padding-top:80px;padding-bottom:80px}.py-lg-80--force{padding-top:80px!important;padding-bottom:80px!important}.pt-lg-80{padding-top:80px}.pt-lg-80--force{padding-top:80px!important}.pr-lg-80{padding-right:80px}.pr-lg-80--force{padding-right:80px!important}.pb-lg-80{padding-bottom:80px}.pb-lg-80--force{padding-bottom:80px!important}.pl-lg-80{padding-left:80px}.pl-lg-80--force{padding-left:80px!important}.p-lg-84{padding:84px}.p-lg-84--force{padding:84px!important}.px-lg-84{padding-right:84px;padding-left:84px}.px-lg-84--force{padding-right:84px!important;padding-left:84px!important}.py-lg-84{padding-top:84px;padding-bottom:84px}.py-lg-84--force{padding-top:84px!important;padding-bottom:84px!important}.pt-lg-84{padding-top:84px}.pt-lg-84--force{padding-top:84px!important}.pr-lg-84{padding-right:84px}.pr-lg-84--force{padding-right:84px!important}.pb-lg-84{padding-bottom:84px}.pb-lg-84--force{padding-bottom:84px!important}.pl-lg-84{padding-left:84px}.pl-lg-84--force{padding-left:84px!important}.p-lg-88{padding:88px}.p-lg-88--force{padding:88px!important}.px-lg-88{padding-right:88px;padding-left:88px}.px-lg-88--force{padding-right:88px!important;padding-left:88px!important}.py-lg-88{padding-top:88px;padding-bottom:88px}.py-lg-88--force{padding-top:88px!important;padding-bottom:88px!important}.pt-lg-88{padding-top:88px}.pt-lg-88--force{padding-top:88px!important}.pr-lg-88{padding-right:88px}.pr-lg-88--force{padding-right:88px!important}.pb-lg-88{padding-bottom:88px}.pb-lg-88--force{padding-bottom:88px!important}.pl-lg-88{padding-left:88px}.pl-lg-88--force{padding-left:88px!important}.p-lg-92{padding:92px}.p-lg-92--force{padding:92px!important}.px-lg-92{padding-right:92px;padding-left:92px}.px-lg-92--force{padding-right:92px!important;padding-left:92px!important}.py-lg-92{padding-top:92px;padding-bottom:92px}.py-lg-92--force{padding-top:92px!important;padding-bottom:92px!important}.pt-lg-92{padding-top:92px}.pt-lg-92--force{padding-top:92px!important}.pr-lg-92{padding-right:92px}.pr-lg-92--force{padding-right:92px!important}.pb-lg-92{padding-bottom:92px}.pb-lg-92--force{padding-bottom:92px!important}.pl-lg-92{padding-left:92px}.pl-lg-92--force{padding-left:92px!important}.p-lg-96{padding:96px}.p-lg-96--force{padding:96px!important}.px-lg-96{padding-right:96px;padding-left:96px}.px-lg-96--force{padding-right:96px!important;padding-left:96px!important}.py-lg-96{padding-top:96px;padding-bottom:96px}.py-lg-96--force{padding-top:96px!important;padding-bottom:96px!important}.pt-lg-96{padding-top:96px}.pt-lg-96--force{padding-top:96px!important}.pr-lg-96{padding-right:96px}.pr-lg-96--force{padding-right:96px!important}.pb-lg-96{padding-bottom:96px}.pb-lg-96--force{padding-bottom:96px!important}.pl-lg-96{padding-left:96px}.pl-lg-96--force{padding-left:96px!important}.d-lg-grid,.grid-lg-1,.grid-lg-10,.grid-lg-11,.grid-lg-12,.grid-lg-2,.grid-lg-3,.grid-lg-4,.grid-lg-5,.grid-lg-6,.grid-lg-7,.grid-lg-8,.grid-lg-9{display:grid}.grid-lg-1{grid-template-columns:repeat(1,minmax(0,1fr))}.colspan-lg-1,.span-lg-1c{grid-column-end:span 1}.rowspan-lg-1,.span-lg-1r{grid-row-end:span 1}.grid-lg-2{grid-template-columns:repeat(2,minmax(0,1fr))}.colspan-lg-2,.span-lg-2c{grid-column-end:span 2}.rowspan-lg-2,.span-lg-2r{grid-row-end:span 2}.grid-lg-3{grid-template-columns:repeat(3,minmax(0,1fr))}.colspan-lg-3,.span-lg-3c{grid-column-end:span 3}.rowspan-lg-3,.span-lg-3r{grid-row-end:span 3}.grid-lg-4{grid-template-columns:repeat(4,minmax(0,1fr))}.colspan-lg-4,.span-lg-4c{grid-column-end:span 4}.rowspan-lg-4,.span-lg-4r{grid-row-end:span 4}.grid-lg-5{grid-template-columns:repeat(5,minmax(0,1fr))}.colspan-lg-5,.span-lg-5c{grid-column-end:span 5}.rowspan-lg-5,.span-lg-5r{grid-row-end:span 5}.grid-lg-6{grid-template-columns:repeat(6,minmax(0,1fr))}.colspan-lg-6,.span-lg-6c{grid-column-end:span 6}.rowspan-lg-6,.span-lg-6r{grid-row-end:span 6}.grid-lg-7{grid-template-columns:repeat(7,minmax(0,1fr))}.colspan-lg-7,.span-lg-7c{grid-column-end:span 7}.rowspan-lg-7,.span-lg-7r{grid-row-end:span 7}.grid-lg-8{grid-template-columns:repeat(8,minmax(0,1fr))}.colspan-lg-8,.span-lg-8c{grid-column-end:span 8}.rowspan-lg-8,.span-lg-8r{grid-row-end:span 8}.grid-lg-9{grid-template-columns:repeat(9,minmax(0,1fr))}.colspan-lg-9,.span-lg-9c{grid-column-end:span 9}.rowspan-lg-9,.span-lg-9r{grid-row-end:span 9}.grid-lg-10{grid-template-columns:repeat(10,minmax(0,1fr))}.colspan-lg-10,.span-lg-10c{grid-column-end:span 10}.rowspan-lg-10,.span-lg-10r{grid-row-end:span 10}.grid-lg-11{grid-template-columns:repeat(11,minmax(0,1fr))}.colspan-lg-11,.span-lg-11c{grid-column-end:span 11}.rowspan-lg-11,.span-lg-11r{grid-row-end:span 11}.grid-lg-12{grid-template-columns:repeat(12,minmax(0,1fr))}.colspan-lg-12,.span-lg-12c{grid-column-end:span 12}.rowspan-lg-12,.span-lg-12r{grid-row-end:span 12}.row .col-lg-1{flex-basis:8.33333%}.row .col-offset-lg-1{margin-left:8.33333%}.row .col-lg-2{flex-basis:16.66667%}.row .col-offset-lg-2{margin-left:16.66667%}.row .col-lg-3{flex-basis:25%}.row .col-offset-lg-3{margin-left:25%}.row .col-lg-4{flex-basis:33.33333%}.row .col-offset-lg-4{margin-left:33.33333%}.row .col-lg-5{flex-basis:41.66667%}.row .col-offset-lg-5{margin-left:41.66667%}.row .col-lg-6{flex-basis:50%}.row .col-offset-lg-6{margin-left:50%}.row .col-lg-7{flex-basis:58.33333%}.row .col-offset-lg-7{margin-left:58.33333%}.row .col-lg-8{flex-basis:66.66667%}.row .col-offset-lg-8{margin-left:66.66667%}.row .col-lg-9{flex-basis:75%}.row .col-offset-lg-9{margin-left:75%}.row .col-lg-10{flex-basis:83.33333%}.row .col-offset-lg-10{margin-left:83.33333%}.row .col-lg-11{flex-basis:91.66667%}.row .col-offset-lg-11{margin-left:91.66667%}.flex-lg-basis-1,.row .col-lg-12{flex-basis:100%}.row .col-offset-lg-12{margin-left:100%}.row>div[class*=col-].align-start{align-self:flex-start}.row>div[class*=col-].align-center{align-self:center}.row>div[class*=col-].align-end{align-self:flex-end}.row.align-start{justify-content:flex-start}.row.align-center{justify-content:center}.row.align-end{justify-content:flex-end}.row.space-around{justify-content:space-around}.row.space-between{justify-content:space-between}.gap-lg-0{column-gap:0;row-gap:0}.gap-lg-4{column-gap:4px;row-gap:4px}.gap-lg-8{column-gap:8px;row-gap:8px}.gap-lg-12{column-gap:12px;row-gap:12px}.gap-lg-16{column-gap:16px;row-gap:16px}.gap-lg-20{column-gap:20px;row-gap:20px}.gap-lg-24{column-gap:24px;row-gap:24px}.gap-lg-28{column-gap:28px;row-gap:28px}.gap-lg-32{column-gap:32px;row-gap:32px}.gap-lg-36{column-gap:36px;row-gap:36px}.gap-lg-40{column-gap:40px;row-gap:40px}.gap-lg-44{column-gap:44px;row-gap:44px}.gap-lg-48{column-gap:48px;row-gap:48px}.z-index-lg--1{z-index:-1}.z-index-lg--1--force{z-index:-1!important}.z-index-lg-0{z-index:0}.z-index-lg-0--force{z-index:0!important}.z-index-lg-1{z-index:1}.z-index-lg-1--force{z-index:1!important}.z-index-lg-2{z-index:2}.z-index-lg-2--force{z-index:2!important}.z-index-lg-3{z-index:3}.z-index-lg-3--force{z-index:3!important}.z-index-lg-4{z-index:4}.z-index-lg-4--force{z-index:4!important}.z-index-lg-5{z-index:5}.z-index-lg-5--force{z-index:5!important}.z-index-lg-6{z-index:6}.z-index-lg-6--force{z-index:6!important}.z-index-lg-7{z-index:7}.z-index-lg-7--force{z-index:7!important}.z-index-lg-8{z-index:8}.z-index-lg-8--force{z-index:8!important}.z-index-lg-9{z-index:9}.z-index-lg-9--force{z-index:9!important}.z-index-lg-10{z-index:10}.z-index-lg-10--force{z-index:10!important}.z-index-lg-11{z-index:11}.z-index-lg-11--force{z-index:11!important}.z-index-lg-12{z-index:12}.z-index-lg-12--force{z-index:12!important}.z-index-lg-13{z-index:13}.z-index-lg-13--force{z-index:13!important}.z-index-lg-14{z-index:14}.z-index-lg-14--force{z-index:14!important}.z-index-lg-15{z-index:15}.z-index-lg-15--force{z-index:15!important}.z-index-lg-16{z-index:16}.z-index-lg-16--force{z-index:16!important}.z-index-lg-17{z-index:17}.z-index-lg-17--force{z-index:17!important}.z-index-lg-18{z-index:18}.z-index-lg-18--force{z-index:18!important}.z-index-lg-19{z-index:19}.z-index-lg-19--force{z-index:19!important}.z-index-lg-20{z-index:20}.z-index-lg-20--force{z-index:20!important}.z-index-lg-21{z-index:21}.z-index-lg-21--force{z-index:21!important}.z-index-lg-22{z-index:22}.z-index-lg-22--force{z-index:22!important}.z-index-lg-23{z-index:23}.z-index-lg-23--force{z-index:23!important}.z-index-lg-24{z-index:24}.z-index-lg-24--force{z-index:24!important}.order-lg--12{order:-12}.order-lg--12--force{order:-12!important}.order-lg--11{order:-11}.order-lg--11--force{order:-11!important}.order-lg--10{order:-10}.order-lg--10--force{order:-10!important}.order-lg--9{order:-9}.order-lg--9--force{order:-9!important}.order-lg--8{order:-8}.order-lg--8--force{order:-8!important}.order-lg--7{order:-7}.order-lg--7--force{order:-7!important}.order-lg--6{order:-6}.order-lg--6--force{order:-6!important}.order-lg--5{order:-5}.order-lg--5--force{order:-5!important}.order-lg--4{order:-4}.order-lg--4--force{order:-4!important}.order-lg--3{order:-3}.order-lg--3--force{order:-3!important}.order-lg--2{order:-2}.order-lg--2--force{order:-2!important}.order-lg--1{order:-1}.order-lg--1--force{order:-1!important}.order-lg-0{order:0}.order-lg-0--force{order:0!important}.order-lg-1{order:1}.order-lg-1--force{order:1!important}.order-lg-2{order:2}.order-lg-2--force{order:2!important}.order-lg-3{order:3}.order-lg-3--force{order:3!important}.order-lg-4{order:4}.order-lg-4--force{order:4!important}.order-lg-5{order:5}.order-lg-5--force{order:5!important}.order-lg-6{order:6}.order-lg-6--force{order:6!important}.order-lg-7{order:7}.order-lg-7--force{order:7!important}.order-lg-8{order:8}.order-lg-8--force{order:8!important}.order-lg-9{order:9}.order-lg-9--force{order:9!important}.order-lg-10{order:10}.order-lg-10--force{order:10!important}.order-lg-11{order:11}.order-lg-11--force{order:11!important}.order-lg-12{order:12}.order-lg-12--force{order:12!important}.order-lg-inherit{order:inherit}.order-lg-inherit--force{order:inherit!important}.order-lg-initial{order:initial}.order-lg-initial--force{order:initial!important}.place-lg-top{top:0}.place-lg-top--force{top:0!important}.place-lg-right{right:0}.place-lg-right--force{right:0!important}.place-lg-bottom{bottom:0}.place-lg-bottom--force{bottom:0!important}.place-lg-left{left:0}.place-lg-left--force{left:0!important}.position-lg-relative{position:relative}.position-lg-relative--force{position:relative!important}.position-lg-absolute{position:absolute}.position-lg-absolute--force{position:absolute!important}.position-lg-static{position:static}.position-lg-static--force{position:static!important}.position-lg-fixed{position:fixed}.position-lg-fixed--force{position:fixed!important}.d-lg-none{display:none}.d-lg-none--force{display:none!important}.d-lg-inline{display:inline}.d-lg-inline--force{display:inline!important}.d-lg-inline-block{display:inline-block}.d-lg-inline-block--force{display:inline-block!important}.d-lg-block{display:block}.d-lg-block--force{display:block!important}.d-lg-grid--force{display:grid!important}.d-lg-table{display:table}.d-lg-table--force{display:table!important}.d-lg-table-cell{display:table-cell}.d-lg-table-cell--force{display:table-cell!important}.d-lg-table-row{display:table-row}.d-lg-table-row--force{display:table-row!important}.d-lg-inline-flex{display:inline-flex}.d-lg-inline-flex--force{display:inline-flex!important}.d-lg-flex{display:flex}.d-lg-flex--force{display:flex!important}.flex-lg-row{display:flex;flex-direction:row}.flex-lg-row--force{display:flex!important;flex-direction:row!important}.flex-lg-row-reverse{display:flex;flex-direction:row-reverse}.flex-lg-row-reverse--force{display:flex!important;flex-direction:row-reverse!important}.flex-lg-column{display:flex;flex-direction:column}.flex-lg-column--force{display:flex!important;flex-direction:column!important}.flex-lg-column-reverse{display:flex;flex-direction:column-reverse}.flex-lg-column-reverse--force{display:flex!important;flex-direction:column-reverse!important}.flex-lg-nowrap{flex-wrap:nowrap}.flex-lg-nowrap--force{flex-wrap:nowrap!important}.flex-lg-wrap{flex-wrap:wrap}.flex-lg-wrap--force{flex-wrap:wrap!important}.flex-lg-align-center{display:flex;align-items:center}.flex-lg-align-center--force{display:flex!important;align-items:center!important}.flex-lg-align-start{display:flex;align-items:flex-start}.flex-lg-align-start--force{display:flex!important;align-items:flex-start!important}.flex-lg-align-end{display:flex;align-items:flex-end}.flex-lg-align-end--force{display:flex!important;align-items:flex-end!important}.flex-lg-align-inherit{display:flex;align-items:inherit}.flex-lg-align-inherit--force{display:flex!important;align-items:inherit!important}.flex-lg-align-initial{display:flex;align-items:initial}.flex-lg-align-initial--force{display:flex!important;align-items:initial!important}.flex-lg-align-self-end{display:flex;align-self:flex-end}.flex-lg-align-self-end--force{display:flex!important;align-self:flex-end!important}.flex-lg-align-self-start{display:flex;align-self:flex-start}.flex-lg-align-self-start--force{display:flex!important;align-self:flex-start!important}.flex-lg-align-self-inherit{display:flex;align-self:inherit}.flex-lg-align-self-inherit--force{display:flex!important;align-self:inherit!important}.flex-lg-align-self-initial{display:flex;align-self:initial}.flex-lg-align-self-initial--force{display:flex!important;align-self:initial!important}.flex-lg-center-center{display:flex;justify-content:center;align-items:center}.flex-lg-center-center--force{display:flex!important;justify-content:center!important;align-items:center!important}.flex-lg-center,.flex-lg-justify-center{display:flex;justify-content:center}.flex-lg-center--force,.flex-lg-justify-center--force{display:flex!important;justify-content:center!important}.flex-lg-end,.flex-lg-justify-end{display:flex;justify-content:flex-end}.flex-lg-end--force,.flex-lg-justify-end--force{display:flex!important;justify-content:flex-end!important}.flex-lg-justify-start,.flex-lg-start{display:flex;justify-content:flex-start}.flex-lg-justify-start--force,.flex-lg-start--force{display:flex!important;justify-content:flex-start!important}.flex-lg-inherit,.flex-lg-justify-inherit{display:flex;justify-content:inherit}.flex-lg-inherit--force,.flex-lg-justify-inherit--force{display:flex!important;justify-content:inherit!important}.flex-lg-initial,.flex-lg-justify-initial{display:flex;justify-content:initial}.flex-lg-initial--force,.flex-lg-justify-initial--force{display:flex!important;justify-content:initial!important}.flex-lg-left{display:flex;justify-content:left}.flex-lg-left--force{display:flex!important;justify-content:left!important}.flex-lg-right{display:flex;justify-content:right}.flex-lg-right--force{display:flex!important;justify-content:right!important}.flex-lg-normal{display:flex;justify-content:normal}.flex-lg-normal--force{display:flex!important;justify-content:normal!important}.flex-lg-revert{display:flex;justify-content:revert}.flex-lg-revert--force{display:flex!important;justify-content:revert!important}.flex-lg-around,.flex-lg-space-around{display:flex;justify-content:space-around}.flex-lg-around--force,.flex-lg-space-around--force{display:flex!important;justify-content:space-around!important}.flex-lg-between,.flex-lg-space-between{display:flex;justify-content:space-between}.flex-lg-between--force,.flex-lg-space-between--force{display:flex!important;justify-content:space-between!important}.flex-lg-evenly,.flex-lg-space-evenly{display:flex;justify-content:space-evenly}.flex-lg-evenly--force,.flex-lg-space-evenly--force{display:flex!important;justify-content:space-evenly!important}.flex-lg-stretch{display:flex;justify-content:stretch}.flex-lg-stretch--force{display:flex!important;justify-content:stretch!important}.flex-lg-unset{display:flex;justify-content:unset}.flex-lg-unset--force{display:flex!important;justify-content:unset!important}.flex-lg-grow-0{flex-grow:0}.flex-lg-shrink-0{flex-shrink:0}.flex-lg-grow-1{flex-grow:1}.flex-lg-shrink-1{flex-shrink:1}.flex-lg-grow-2{flex-grow:2}.flex-lg-shrink-2{flex-shrink:2}.flex-lg-grow-3{flex-grow:3}.flex-lg-shrink-3{flex-shrink:3}.flex-lg-full{flex-grow:1;flex-shrink:1;flex-basis:100%}.fw-lg-100{font-weight:100}.fw-lg-100--force{font-weight:100!important}.fw-lg-200{font-weight:200}.fw-lg-200--force{font-weight:200!important}.fw-lg-300{font-weight:300}.fw-lg-300--force{font-weight:300!important}.fw-lg-400{font-weight:400}.fw-lg-400--force{font-weight:400!important}.fw-lg-500{font-weight:500}.fw-lg-500--force{font-weight:500!important}.fw-lg-600{font-weight:600}.fw-lg-600--force{font-weight:600!important}.fw-lg-700{font-weight:700}.fw-lg-700--force{font-weight:700!important}.fw-lg-800{font-weight:800}.fw-lg-800--force{font-weight:800!important}.fw-lg-900{font-weight:900}.fw-lg-900--force{font-weight:900!important}.fs-lg-0{font-size:0px}.fs-lg-0--force{font-size:0px!important}.fs-lg-1{font-size:1px}.fs-lg-1--force{font-size:1px!important}.fs-lg-2{font-size:2px}.fs-lg-2--force{font-size:2px!important}.fs-lg-3{font-size:3px}.fs-lg-3--force{font-size:3px!important}.fs-lg-4{font-size:4px}.fs-lg-4--force{font-size:4px!important}.fs-lg-5{font-size:5px}.fs-lg-5--force{font-size:5px!important}.fs-lg-6{font-size:6px}.fs-lg-6--force{font-size:6px!important}.fs-lg-7{font-size:7px}.fs-lg-7--force{font-size:7px!important}.fs-lg-8{font-size:8px}.fs-lg-8--force{font-size:8px!important}.fs-lg-9{font-size:9px}.fs-lg-9--force{font-size:9px!important}.fs-lg-10{font-size:10px}.fs-lg-10--force{font-size:10px!important}.fs-lg-11{font-size:11px}.fs-lg-11--force{font-size:11px!important}.fs-lg-12{font-size:12px}.fs-lg-12--force{font-size:12px!important}.fs-lg-13{font-size:13px}.fs-lg-13--force{font-size:13px!important}.fs-lg-14{font-size:14px}.fs-lg-14--force{font-size:14px!important}.fs-lg-15{font-size:15px}.fs-lg-15--force{font-size:15px!important}.fs-lg-16{font-size:16px}.fs-lg-16--force{font-size:16px!important}.fs-lg-17{font-size:17px}.fs-lg-17--force{font-size:17px!important}.fs-lg-18{font-size:18px}.fs-lg-18--force{font-size:18px!important}.fs-lg-19{font-size:19px}.fs-lg-19--force{font-size:19px!important}.fs-lg-20{font-size:20px}.fs-lg-20--force{font-size:20px!important}.fs-lg-21{font-size:21px}.fs-lg-21--force{font-size:21px!important}.fs-lg-22{font-size:22px}.fs-lg-22--force{font-size:22px!important}.fs-lg-23{font-size:23px}.fs-lg-23--force{font-size:23px!important}.fs-lg-24{font-size:24px}.fs-lg-24--force{font-size:24px!important}.fs-lg-25{font-size:25px}.fs-lg-25--force{font-size:25px!important}.fs-lg-26{font-size:26px}.fs-lg-26--force{font-size:26px!important}.fs-lg-27{font-size:27px}.fs-lg-27--force{font-size:27px!important}.fs-lg-28{font-size:28px}.fs-lg-28--force{font-size:28px!important}.fs-lg-29{font-size:29px}.fs-lg-29--force{font-size:29px!important}.fs-lg-30{font-size:30px}.fs-lg-30--force{font-size:30px!important}.fs-lg-31{font-size:31px}.fs-lg-31--force{font-size:31px!important}.fs-lg-32{font-size:32px}.fs-lg-32--force{font-size:32px!important}.fs-lg-33{font-size:33px}.fs-lg-33--force{font-size:33px!important}.fs-lg-34{font-size:34px}.fs-lg-34--force{font-size:34px!important}.fs-lg-35{font-size:35px}.fs-lg-35--force{font-size:35px!important}.fs-lg-36{font-size:36px}.fs-lg-36--force{font-size:36px!important}.fs-lg-37{font-size:37px}.fs-lg-37--force{font-size:37px!important}.fs-lg-38{font-size:38px}.fs-lg-38--force{font-size:38px!important}.fs-lg-39{font-size:39px}.fs-lg-39--force{font-size:39px!important}.fs-lg-40{font-size:40px}.fs-lg-40--force{font-size:40px!important}.fs-lg-41{font-size:41px}.fs-lg-41--force{font-size:41px!important}.fs-lg-42{font-size:42px}.fs-lg-42--force{font-size:42px!important}.fs-lg-43{font-size:43px}.fs-lg-43--force{font-size:43px!important}.fs-lg-44{font-size:44px}.fs-lg-44--force{font-size:44px!important}.fs-lg-45{font-size:45px}.fs-lg-45--force{font-size:45px!important}.fs-lg-46{font-size:46px}.fs-lg-46--force{font-size:46px!important}.fs-lg-47{font-size:47px}.fs-lg-47--force{font-size:47px!important}.fs-lg-48{font-size:48px}.fs-lg-48--force{font-size:48px!important}.fs-lg-49{font-size:49px}.fs-lg-49--force{font-size:49px!important}.fs-lg-50{font-size:50px}.fs-lg-50--force{font-size:50px!important}.fs-lg-51{font-size:51px}.fs-lg-51--force{font-size:51px!important}.fs-lg-52{font-size:52px}.fs-lg-52--force{font-size:52px!important}.fs-lg-53{font-size:53px}.fs-lg-53--force{font-size:53px!important}.fs-lg-54{font-size:54px}.fs-lg-54--force{font-size:54px!important}.fs-lg-55{font-size:55px}.fs-lg-55--force{font-size:55px!important}.fs-lg-56{font-size:56px}.fs-lg-56--force{font-size:56px!important}.fs-lg-57{font-size:57px}.fs-lg-57--force{font-size:57px!important}.fs-lg-58{font-size:58px}.fs-lg-58--force{font-size:58px!important}.fs-lg-59{font-size:59px}.fs-lg-59--force{font-size:59px!important}.fs-lg-60{font-size:60px}.fs-lg-60--force{font-size:60px!important}.fs-lg-61{font-size:61px}.fs-lg-61--force{font-size:61px!important}.fs-lg-62{font-size:62px}.fs-lg-62--force{font-size:62px!important}.fs-lg-63{font-size:63px}.fs-lg-63--force{font-size:63px!important}.fs-lg-64{font-size:64px}.fs-lg-64--force{font-size:64px!important}.fs-lg-65{font-size:65px}.fs-lg-65--force{font-size:65px!important}.fs-lg-66{font-size:66px}.fs-lg-66--force{font-size:66px!important}.fs-lg-67{font-size:67px}.fs-lg-67--force{font-size:67px!important}.fs-lg-68{font-size:68px}.fs-lg-68--force{font-size:68px!important}.fs-lg-69{font-size:69px}.fs-lg-69--force{font-size:69px!important}.fs-lg-70{font-size:70px}.fs-lg-70--force{font-size:70px!important}.fs-lg-71{font-size:71px}.fs-lg-71--force{font-size:71px!important}.fs-lg-72{font-size:72px}.fs-lg-72--force{font-size:72px!important}.fs-lg-73{font-size:73px}.fs-lg-73--force{font-size:73px!important}.fs-lg-74{font-size:74px}.fs-lg-74--force{font-size:74px!important}.fs-lg-75{font-size:75px}.fs-lg-75--force{font-size:75px!important}.fs-lg-76{font-size:76px}.fs-lg-76--force{font-size:76px!important}.fs-lg-77{font-size:77px}.fs-lg-77--force{font-size:77px!important}.fs-lg-78{font-size:78px}.fs-lg-78--force{font-size:78px!important}.fs-lg-79{font-size:79px}.fs-lg-79--force{font-size:79px!important}.fs-lg-80{font-size:80px}.fs-lg-80--force{font-size:80px!important}.fs-lg-81{font-size:81px}.fs-lg-81--force{font-size:81px!important}.fs-lg-82{font-size:82px}.fs-lg-82--force{font-size:82px!important}.fs-lg-83{font-size:83px}.fs-lg-83--force{font-size:83px!important}.fs-lg-84{font-size:84px}.fs-lg-84--force{font-size:84px!important}.fs-lg-85{font-size:85px}.fs-lg-85--force{font-size:85px!important}.fs-lg-86{font-size:86px}.fs-lg-86--force{font-size:86px!important}.fs-lg-87{font-size:87px}.fs-lg-87--force{font-size:87px!important}.fs-lg-88{font-size:88px}.fs-lg-88--force{font-size:88px!important}.fs-lg-89{font-size:89px}.fs-lg-89--force{font-size:89px!important}.fs-lg-90{font-size:90px}.fs-lg-90--force{font-size:90px!important}.fs-lg-91{font-size:91px}.fs-lg-91--force{font-size:91px!important}.fs-lg-92{font-size:92px}.fs-lg-92--force{font-size:92px!important}.fs-lg-93{font-size:93px}.fs-lg-93--force{font-size:93px!important}.fs-lg-94{font-size:94px}.fs-lg-94--force{font-size:94px!important}.fs-lg-95{font-size:95px}.fs-lg-95--force{font-size:95px!important}.fs-lg-96{font-size:96px}.fs-lg-96--force{font-size:96px!important}.ls-lg-0{letter-spacing:0}.ls-lg-0--force{letter-spacing:0!important}.ls-lg-1{letter-spacing:.1em}.ls-lg-1--force{letter-spacing:.1em!important}.ls-lg-2{letter-spacing:.2em}.ls-lg-2--force{letter-spacing:.2em!important}.ls-lg-3{letter-spacing:.3em}.ls-lg-3--force{letter-spacing:.3em!important}.ls-lg-4{letter-spacing:.4em}.ls-lg-4--force{letter-spacing:.4em!important}.ls-lg-5{letter-spacing:.5em}.ls-lg-5--force{letter-spacing:.5em!important}.ls-lg-6{letter-spacing:.6em}.ls-lg-6--force{letter-spacing:.6em!important}.ls-lg-7{letter-spacing:.7em}.ls-lg-7--force{letter-spacing:.7em!important}.ls-lg-8{letter-spacing:.8em}.ls-lg-8--force{letter-spacing:.8em!important}.ls-lg-9{letter-spacing:.9em}.ls-lg-9--force{letter-spacing:.9em!important}.ls-lg-10{letter-spacing:1em}.ls-lg-10--force{letter-spacing:1em!important}.ls-lg-11{letter-spacing:1.1em}.ls-lg-11--force{letter-spacing:1.1em!important}.ls-lg-12{letter-spacing:1.2em}.ls-lg-12--force{letter-spacing:1.2em!important}.ls-lg-13{letter-spacing:1.3em}.ls-lg-13--force{letter-spacing:1.3em!important}.ls-lg-14{letter-spacing:1.4em}.ls-lg-14--force{letter-spacing:1.4em!important}.ls-lg-15{letter-spacing:1.5em}.ls-lg-15--force{letter-spacing:1.5em!important}.ls-lg-16{letter-spacing:1.6em}.ls-lg-16--force{letter-spacing:1.6em!important}.ls-lg-17{letter-spacing:1.7em}.ls-lg-17--force{letter-spacing:1.7em!important}.ls-lg-18{letter-spacing:1.8em}.ls-lg-18--force{letter-spacing:1.8em!important}.lh-lg-0{line-height:0}.lh-lg-0--force{line-height:0!important}.lh-lg-1{line-height:1px}.lh-lg-1--force{line-height:1px!important}.lh-lg-2{line-height:2px}.lh-lg-2--force{line-height:2px!important}.lh-lg-3{line-height:3px}.lh-lg-3--force{line-height:3px!important}.lh-lg-4{line-height:4px}.lh-lg-4--force{line-height:4px!important}.lh-lg-5{line-height:5px}.lh-lg-5--force{line-height:5px!important}.lh-lg-6{line-height:6px}.lh-lg-6--force{line-height:6px!important}.lh-lg-7{line-height:7px}.lh-lg-7--force{line-height:7px!important}.lh-lg-8{line-height:8px}.lh-lg-8--force{line-height:8px!important}.lh-lg-9{line-height:9px}.lh-lg-9--force{line-height:9px!important}.lh-lg-10{line-height:10px}.lh-lg-10--force{line-height:10px!important}.lh-lg-11{line-height:11px}.lh-lg-11--force{line-height:11px!important}.lh-lg-12{line-height:12px}.lh-lg-12--force{line-height:12px!important}.lh-lg-13{line-height:13px}.lh-lg-13--force{line-height:13px!important}.lh-lg-14{line-height:14px}.lh-lg-14--force{line-height:14px!important}.lh-lg-15{line-height:15px}.lh-lg-15--force{line-height:15px!important}.lh-lg-16{line-height:16px}.lh-lg-16--force{line-height:16px!important}.lh-lg-17{line-height:17px}.lh-lg-17--force{line-height:17px!important}.lh-lg-18{line-height:18px}.lh-lg-18--force{line-height:18px!important}.lh-lg-19{line-height:19px}.lh-lg-19--force{line-height:19px!important}.lh-lg-20{line-height:20px}.lh-lg-20--force{line-height:20px!important}.lh-lg-21{line-height:21px}.lh-lg-21--force{line-height:21px!important}.lh-lg-22{line-height:22px}.lh-lg-22--force{line-height:22px!important}.lh-lg-23{line-height:23px}.lh-lg-23--force{line-height:23px!important}.lh-lg-24{line-height:24px}.lh-lg-24--force{line-height:24px!important}.lh-lg-25{line-height:25px}.lh-lg-25--force{line-height:25px!important}.lh-lg-26{line-height:26px}.lh-lg-26--force{line-height:26px!important}.lh-lg-27{line-height:27px}.lh-lg-27--force{line-height:27px!important}.lh-lg-28{line-height:28px}.lh-lg-28--force{line-height:28px!important}.lh-lg-29{line-height:29px}.lh-lg-29--force{line-height:29px!important}.lh-lg-30{line-height:30px}.lh-lg-30--force{line-height:30px!important}.lh-lg-31{line-height:31px}.lh-lg-31--force{line-height:31px!important}.lh-lg-32{line-height:32px}.lh-lg-32--force{line-height:32px!important}.lh-lg-33{line-height:33px}.lh-lg-33--force{line-height:33px!important}.lh-lg-34{line-height:34px}.lh-lg-34--force{line-height:34px!important}.lh-lg-35{line-height:35px}.lh-lg-35--force{line-height:35px!important}.lh-lg-36{line-height:36px}.lh-lg-36--force{line-height:36px!important}.lh-lg-37{line-height:37px}.lh-lg-37--force{line-height:37px!important}.lh-lg-38{line-height:38px}.lh-lg-38--force{line-height:38px!important}.lh-lg-39{line-height:39px}.lh-lg-39--force{line-height:39px!important}.lh-lg-40{line-height:40px}.lh-lg-40--force{line-height:40px!important}.lh-lg-41{line-height:41px}.lh-lg-41--force{line-height:41px!important}.lh-lg-42{line-height:42px}.lh-lg-42--force{line-height:42px!important}.lh-lg-43{line-height:43px}.lh-lg-43--force{line-height:43px!important}.lh-lg-44{line-height:44px}.lh-lg-44--force{line-height:44px!important}.lh-lg-45{line-height:45px}.lh-lg-45--force{line-height:45px!important}.lh-lg-46{line-height:46px}.lh-lg-46--force{line-height:46px!important}.lh-lg-47{line-height:47px}.lh-lg-47--force{line-height:47px!important}.lh-lg-48{line-height:48px}.lh-lg-48--force{line-height:48px!important}.lh-lg-49{line-height:49px}.lh-lg-49--force{line-height:49px!important}.lh-lg-50{line-height:50px}.lh-lg-50--force{line-height:50px!important}.lh-lg-51{line-height:51px}.lh-lg-51--force{line-height:51px!important}.lh-lg-52{line-height:52px}.lh-lg-52--force{line-height:52px!important}.lh-lg-53{line-height:53px}.lh-lg-53--force{line-height:53px!important}.lh-lg-54{line-height:54px}.lh-lg-54--force{line-height:54px!important}.lh-lg-55{line-height:55px}.lh-lg-55--force{line-height:55px!important}.lh-lg-56{line-height:56px}.lh-lg-56--force{line-height:56px!important}.lh-lg-57{line-height:57px}.lh-lg-57--force{line-height:57px!important}.lh-lg-58{line-height:58px}.lh-lg-58--force{line-height:58px!important}.lh-lg-59{line-height:59px}.lh-lg-59--force{line-height:59px!important}.lh-lg-60{line-height:60px}.lh-lg-60--force{line-height:60px!important}.lh-lg-61{line-height:61px}.lh-lg-61--force{line-height:61px!important}.lh-lg-62{line-height:62px}.lh-lg-62--force{line-height:62px!important}.lh-lg-63{line-height:63px}.lh-lg-63--force{line-height:63px!important}.lh-lg-64{line-height:64px}.lh-lg-64--force{line-height:64px!important}.lh-lg-65{line-height:65px}.lh-lg-65--force{line-height:65px!important}.lh-lg-66{line-height:66px}.lh-lg-66--force{line-height:66px!important}.lh-lg-67{line-height:67px}.lh-lg-67--force{line-height:67px!important}.lh-lg-68{line-height:68px}.lh-lg-68--force{line-height:68px!important}.lh-lg-69{line-height:69px}.lh-lg-69--force{line-height:69px!important}.lh-lg-70{line-height:70px}.lh-lg-70--force{line-height:70px!important}.lh-lg-71{line-height:71px}.lh-lg-71--force{line-height:71px!important}.lh-lg-72{line-height:72px}.lh-lg-72--force{line-height:72px!important}.lh-lg-73{line-height:73px}.lh-lg-73--force{line-height:73px!important}.lh-lg-74{line-height:74px}.lh-lg-74--force{line-height:74px!important}.lh-lg-75{line-height:75px}.lh-lg-75--force{line-height:75px!important}.lh-lg-76{line-height:76px}.lh-lg-76--force{line-height:76px!important}.lh-lg-77{line-height:77px}.lh-lg-77--force{line-height:77px!important}.lh-lg-78{line-height:78px}.lh-lg-78--force{line-height:78px!important}.lh-lg-79{line-height:79px}.lh-lg-79--force{line-height:79px!important}.lh-lg-80{line-height:80px}.lh-lg-80--force{line-height:80px!important}.lh-lg-81{line-height:81px}.lh-lg-81--force{line-height:81px!important}.lh-lg-82{line-height:82px}.lh-lg-82--force{line-height:82px!important}.lh-lg-83{line-height:83px}.lh-lg-83--force{line-height:83px!important}.lh-lg-84{line-height:84px}.lh-lg-84--force{line-height:84px!important}.lh-lg-85{line-height:85px}.lh-lg-85--force{line-height:85px!important}.lh-lg-86{line-height:86px}.lh-lg-86--force{line-height:86px!important}.lh-lg-87{line-height:87px}.lh-lg-87--force{line-height:87px!important}.lh-lg-88{line-height:88px}.lh-lg-88--force{line-height:88px!important}.lh-lg-89{line-height:89px}.lh-lg-89--force{line-height:89px!important}.lh-lg-90{line-height:90px}.lh-lg-90--force{line-height:90px!important}.lh-lg-91{line-height:91px}.lh-lg-91--force{line-height:91px!important}.lh-lg-92{line-height:92px}.lh-lg-92--force{line-height:92px!important}.lh-lg-93{line-height:93px}.lh-lg-93--force{line-height:93px!important}.lh-lg-94{line-height:94px}.lh-lg-94--force{line-height:94px!important}.lh-lg-95{line-height:95px}.lh-lg-95--force{line-height:95px!important}.lh-lg-96{line-height:96px}.lh-lg-96--force{line-height:96px!important}.lh-lg-97{line-height:97px}.lh-lg-97--force{line-height:97px!important}.lh-lg-98{line-height:98px}.lh-lg-98--force{line-height:98px!important}.lh-lg-99{line-height:99px}.lh-lg-99--force{line-height:99px!important}.lh-lg-100{line-height:100px}.lh-lg-100--force{line-height:100px!important}.aspect-ratio-lg-auto{aspect-ratio:auto}.aspect-ratio-lg-auto--force{aspect-ratio:auto!important}.aspect-ratio-lg-1x1{aspect-ratio:1/1}.aspect-ratio-lg-1x1--force{aspect-ratio:1/1!important}.aspect-ratio-lg-1x2{aspect-ratio:1/2}.aspect-ratio-lg-1x2--force{aspect-ratio:1/2!important}.aspect-ratio-lg-2x1{aspect-ratio:2/1}.aspect-ratio-lg-2x1--force{aspect-ratio:2/1!important}.aspect-ratio-lg-3x4{aspect-ratio:3/4}.aspect-ratio-lg-3x4--force{aspect-ratio:3/4!important}.aspect-ratio-lg-4x3{aspect-ratio:4/3}.aspect-ratio-lg-4x3--force{aspect-ratio:4/3!important}.aspect-ratio-lg-9x16{aspect-ratio:9/16}.aspect-ratio-lg-9x16--force{aspect-ratio:9/16!important}.aspect-ratio-lg-16x9{aspect-ratio:16/9}.aspect-ratio-lg-16x9--force{aspect-ratio:16/9!important}.aspect-ratio-lg-half{aspect-ratio:0.5}.aspect-ratio-lg-half--force{aspect-ratio:0.5!important}.aspect-ratio-lg-inherit{aspect-ratio:inherit}.aspect-ratio-lg-inherit--force{aspect-ratio:inherit!important}.aspect-ratio-lg-initial{aspect-ratio:initial}.aspect-ratio-lg-initial--force{aspect-ratio:initial!important}.aspect-ratio-lg-unset{aspect-ratio:unset}.aspect-ratio-lg-unset--force{aspect-ratio:unset!important}.cursor-pointer-lg{cursor:pointer}.cursor-pointer-lg--force{cursor:pointer!important}.cursor-default-lg{cursor:default}.cursor-default-lg--force{cursor:default!important}.cursor-grab-lg{cursor:grab}.cursor-grab-lg--force{cursor:grab!important}.cursor-grabbing-lg{cursor:grabbing}.cursor-grabbing-lg--force{cursor:grabbing!important}.cursor-move-lg{cursor:move}.cursor-move-lg--force{cursor:move!important}.cursor-help-lg{cursor:help}.cursor-help-lg--force{cursor:help!important}.cursor-wait-lg{cursor:wait}.cursor-wait-lg--force{cursor:wait!important}.opacity-lg-0{opacity:0}.opacity-lg-0--force{opacity:0!important}.opacity-lg-01{opacity:.1}.opacity-lg-01--force{opacity:.1!important}.opacity-lg-02{opacity:.2}.opacity-lg-02--force{opacity:.2!important}.opacity-lg-03{opacity:.3}.opacity-lg-03--force{opacity:.3!important}.opacity-lg-04{opacity:.4}.opacity-lg-04--force{opacity:.4!important}.opacity-lg-05{opacity:.5}.opacity-lg-05--force{opacity:.5!important}.opacity-lg-06{opacity:.6}.opacity-lg-06--force{opacity:.6!important}.opacity-lg-07{opacity:.7}.opacity-lg-07--force{opacity:.7!important}.opacity-lg-08{opacity:.8}.opacity-lg-08--force{opacity:.8!important}.opacity-lg-09{opacity:.9}.opacity-lg-09--force{opacity:.9!important}.opacity-lg-10{opacity:1}.opacity-lg-10--force{opacity:1!important}.opacity-lg-1{opacity:1}.opacity-lg-1--force{opacity:1!important}.text-lg-decoration-strike,.text-lg-line-through,.text-lg-strike{text-decoration:line-through}.text-lg-decoration-strike--force,.text-lg-line-through--force,.text-lg-strike--force{text-decoration:line-through!important}.text-lg-decoration-none,.text-lg-none{text-decoration:none}.text-lg-decoration-none--force,.text-lg-none--force{text-decoration:none!important}.text-lg-super{vertical-align:super}.text-lg-super--force{vertical-align:super!important}.text-lg-sub{vertical-align:sub}.text-lg-sub--force{vertical-align:sub!important}.text-lg-capitalize{text-transform:capitalize}.text-lg-capitalize--force{text-transform:capitalize!important}.text-lg-lowercase{text-transform:lowercase}.text-lg-lowercase--force{text-transform:lowercase!important}.text-lg-uppercase{text-transform:uppercase}.text-lg-uppercase--force{text-transform:uppercase!important}.text-lg-nowrap{white-space:nowrap}.text-lg-left{text-align:left}.text-lg-left--force{text-align:left!important}.text-lg-center{text-align:center}.text-lg-center--force{text-align:center!important}.text-lg-right{text-align:right}.text-lg-right--force{text-align:right!important}.text-lg-boxed{border-radius:2px;padding:4px 8px;margin:0 8px;font-size:11px;font-weight:600;white-space:nowrap}.text-lg-ellipsis,.text-lg-truncate{display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.overflow-lg-auto{overflow:auto}.overflow-lg-auto--force{overflow:auto!important}.overflow-lg-scroll{overflow:scroll}.overflow-lg-scroll--force{overflow:scroll!important}.overflow-lg-hidden{overflow:hidden}.overflow-lg-hidden--force{overflow:hidden!important}.overflow-lg-overlay{overflow:overlay}.overflow-lg-overlay--force{overflow:overlay!important}.overflow-x-lg-auto{overflow-x:auto}.overflow-x-lg-auto--force{overflow-x:auto!important}.overflow-x-lg-scroll{overflow-x:scroll}.overflow-x-lg-scroll--force{overflow-x:scroll!important}.overflow-x-lg-hidden{overflow-x:hidden}.overflow-x-lg-hidden--force{overflow-x:hidden!important}.overflow-x-lg-overlay{overflow-x:overlay}.overflow-x-lg-overlay--force{overflow-x:overlay!important}.overflow-y-lg-auto{overflow-y:auto}.overflow-y-lg-auto--force{overflow-y:auto!important}.overflow-y-lg-scroll{overflow-y:scroll}.overflow-y-lg-scroll--force{overflow-y:scroll!important}.overflow-y-lg-hidden{overflow-y:hidden}.overflow-y-lg-hidden--force{overflow-y:hidden!important}.overflow-y-lg-overlay{overflow-y:overlay}.overflow-y-lg-overlay--force{overflow-y:overlay!important}.b-lg-0,.border-lg-0{border:0 solid}.bb-lg-0,.border-bottom-lg-0{border-bottom:0 solid}.bb-lg-0--force,.border-bottom-lg-0--force{border-bottom:0 solid!important}.border-top-lg-0,.bt-lg-0{border-top:0 solid}.border-top-lg-0--force,.bt-lg-0--force{border-top:0 solid!important}.bl-lg-0,.border-left-lg-0{border-left:0 solid}.bl-lg-0--force,.border-left-lg-0--force{border-left:0 solid!important}.border-right-lg-0,.br-lg-0{border-right:0px solid}.border-right-lg-0--force,.br-lg-0--force{border-right:0px solid!important}.b-lg-2,.border-lg-2{border:2px solid}.bb-lg-2,.border-bottom-lg-2{border-bottom:2px solid}.bb-lg-2--force,.border-bottom-lg-2--force{border-bottom:2px solid!important}.border-top-lg-2,.bt-lg-2{border-top:2px solid}.border-top-lg-2--force,.bt-lg-2--force{border-top:2px solid!important}.bl-lg-2,.border-left-lg-2{border-left:2px solid}.bl-lg-2--force,.border-left-lg-2--force{border-left:2px solid!important}.border-right-lg-2,.br-lg-2{border-right:2px solid}.border-right-lg-2--force,.br-lg-2--force{border-right:2px solid!important}.b-lg-4,.border-lg-4{border:4px solid}.bb-lg-4,.border-bottom-lg-4{border-bottom:4px solid}.bb-lg-4--force,.border-bottom-lg-4--force{border-bottom:4px solid!important}.border-top-lg-4,.bt-lg-4{border-top:4px solid}.border-top-lg-4--force,.bt-lg-4--force{border-top:4px solid!important}.bl-lg-4,.border-left-lg-4{border-left:4px solid}.bl-lg-4--force,.border-left-lg-4--force{border-left:4px solid!important}.border-right-lg-4,.br-lg-4{border-right:4px solid}.border-right-lg-4--force,.br-lg-4--force{border-right:4px solid!important}.b-lg-6,.border-lg-6{border:6px solid}.bb-lg-6,.border-bottom-lg-6{border-bottom:6px solid}.bb-lg-6--force,.border-bottom-lg-6--force{border-bottom:6px solid!important}.border-top-lg-6,.bt-lg-6{border-top:6px solid}.border-top-lg-6--force,.bt-lg-6--force{border-top:6px solid!important}.bl-lg-6,.border-left-lg-6{border-left:6px solid}.bl-lg-6--force,.border-left-lg-6--force{border-left:6px solid!important}.border-right-lg-6,.br-lg-6{border-right:6px solid}.border-right-lg-6--force,.br-lg-6--force{border-right:6px solid!important}.b-lg-8,.border-lg-8{border:8px solid}.bb-lg-8,.border-bottom-lg-8{border-bottom:8px solid}.bb-lg-8--force,.border-bottom-lg-8--force{border-bottom:8px solid!important}.border-top-lg-8,.bt-lg-8{border-top:8px solid}.border-top-lg-8--force,.bt-lg-8--force{border-top:8px solid!important}.bl-lg-8,.border-left-lg-8{border-left:8px solid}.bl-lg-8--force,.border-left-lg-8--force{border-left:8px solid!important}.border-right-lg-8,.br-lg-8{border-right:8px solid}.border-right-lg-8--force,.br-lg-8--force{border-right:8px solid!important}.b-lg-none,.border-lg-none{border:none}.b-lg-none--force,.border-lg-none--force{border:none!important}.border-style-lg-solid{border-style:solid}.border-style-lg-solid--force{border-style:solid!important}.border-style-lg-dashed{border-style:dashed}.border-style-lg-dashed--force{border-style:dashed!important}.border-style-lg-dotted{border-style:dotted}.border-style-lg-dotted--force{border-style:dotted!important}.border-style-lg-double{border-style:double}.border-style-lg-double--force{border-style:double!important}.border-style-lg-groove{border-style:groove}.border-style-lg-groove--force{border-style:groove!important}.border-style-lg-ridge{border-style:ridge}.border-style-lg-ridge--force{border-style:ridge!important}.border-style-lg-inset{border-style:inset}.border-style-lg-inset--force{border-style:inset!important}.border-style-lg-outset{border-style:outset}.border-style-lg-outset--force{border-style:outset!important}.border-style-lg-none{border-style:none}.border-style-lg-none--force{border-style:none!important}.radius-bottom-lg-0,.radius-left-lg-0,.radius-lg-0,.radius-lg-none,.radius-right-lg-0,.radius-top-lg-0{border-radius:0}.radius-bottom-lg-0--force,.radius-left-lg-0--force,.radius-lg-none--force,.radius-right-lg-0--force,.radius-top-lg-0--force{border-radius:0!important}.radius-lg-2{border-radius:2px}.radius-bottom-lg-2{border-radius:0 0 2px 2px}.radius-bottom-lg-2--force{border-radius:0 0 2px 2px!important}.radius-top-lg-2{border-radius:2px 2px 0 0}.radius-top-lg-2--force{border-radius:2px 2px 0 0!important}.radius-left-lg-2{border-radius:2px 0 0 2px}.radius-left-lg-2--force{border-radius:2px 0 0 2px!important}.radius-right-lg-2{border-radius:0 2px 2px 0}.radius-right-lg-2--force{border-radius:0 2px 2px 0!important}.radius-lg-4{border-radius:4px}.radius-bottom-lg-4{border-radius:0 0 4px 4px}.radius-bottom-lg-4--force{border-radius:0 0 4px 4px!important}.radius-top-lg-4{border-radius:4px 4px 0 0}.radius-top-lg-4--force{border-radius:4px 4px 0 0!important}.radius-left-lg-4{border-radius:4px 0 0 4px}.radius-left-lg-4--force{border-radius:4px 0 0 4px!important}.radius-right-lg-4{border-radius:0 4px 4px 0}.radius-right-lg-4--force{border-radius:0 4px 4px 0!important}.radius-lg-6{border-radius:6px}.radius-bottom-lg-6{border-radius:0 0 6px 6px}.radius-bottom-lg-6--force{border-radius:0 0 6px 6px!important}.radius-top-lg-6{border-radius:6px 6px 0 0}.radius-top-lg-6--force{border-radius:6px 6px 0 0!important}.radius-left-lg-6{border-radius:6px 0 0 6px}.radius-left-lg-6--force{border-radius:6px 0 0 6px!important}.radius-right-lg-6{border-radius:0 6px 6px 0}.radius-right-lg-6--force{border-radius:0 6px 6px 0!important}.radius-lg-8{border-radius:8px}.radius-bottom-lg-8{border-radius:0 0 8px 8px}.radius-bottom-lg-8--force{border-radius:0 0 8px 8px!important}.radius-top-lg-8{border-radius:8px 8px 0 0}.radius-top-lg-8--force{border-radius:8px 8px 0 0!important}.radius-left-lg-8{border-radius:8px 0 0 8px}.radius-left-lg-8--force{border-radius:8px 0 0 8px!important}.radius-right-lg-8{border-radius:0 8px 8px 0}.radius-right-lg-8--force{border-radius:0 8px 8px 0!important}.radius-lg-10{border-radius:10px}.radius-bottom-lg-10{border-radius:0 0 10px 10px}.radius-bottom-lg-10--force{border-radius:0 0 10px 10px!important}.radius-top-lg-10{border-radius:10px 10px 0 0}.radius-top-lg-10--force{border-radius:10px 10px 0 0!important}.radius-left-lg-10{border-radius:10px 0 0 10px}.radius-left-lg-10--force{border-radius:10px 0 0 10px!important}.radius-right-lg-10{border-radius:0 10px 10px 0}.radius-right-lg-10--force{border-radius:0 10px 10px 0!important}.radius-lg-12{border-radius:12px}.radius-bottom-lg-12{border-radius:0 0 12px 12px}.radius-bottom-lg-12--force{border-radius:0 0 12px 12px!important}.radius-top-lg-12{border-radius:12px 12px 0 0}.radius-top-lg-12--force{border-radius:12px 12px 0 0!important}.radius-left-lg-12{border-radius:12px 0 0 12px}.radius-left-lg-12--force{border-radius:12px 0 0 12px!important}.radius-right-lg-12{border-radius:0 12px 12px 0}.radius-right-lg-12--force{border-radius:0 12px 12px 0!important}.radius-lg-14{border-radius:14px}.radius-bottom-lg-14{border-radius:0 0 14px 14px}.radius-bottom-lg-14--force{border-radius:0 0 14px 14px!important}.radius-top-lg-14{border-radius:14px 14px 0 0}.radius-top-lg-14--force{border-radius:14px 14px 0 0!important}.radius-left-lg-14{border-radius:14px 0 0 14px}.radius-left-lg-14--force{border-radius:14px 0 0 14px!important}.radius-right-lg-14{border-radius:0 14px 14px 0}.radius-right-lg-14--force{border-radius:0 14px 14px 0!important}.radius-lg-16{border-radius:16px}.radius-bottom-lg-16{border-radius:0 0 16px 16px}.radius-bottom-lg-16--force{border-radius:0 0 16px 16px!important}.radius-top-lg-16{border-radius:16px 16px 0 0}.radius-top-lg-16--force{border-radius:16px 16px 0 0!important}.radius-left-lg-16{border-radius:16px 0 0 16px}.radius-left-lg-16--force{border-radius:16px 0 0 16px!important}.radius-right-lg-16{border-radius:0 16px 16px 0}.radius-right-lg-16--force{border-radius:0 16px 16px 0!important}.radius-lg-18{border-radius:18px}.radius-bottom-lg-18{border-radius:0 0 18px 18px}.radius-bottom-lg-18--force{border-radius:0 0 18px 18px!important}.radius-top-lg-18{border-radius:18px 18px 0 0}.radius-top-lg-18--force{border-radius:18px 18px 0 0!important}.radius-left-lg-18{border-radius:18px 0 0 18px}.radius-left-lg-18--force{border-radius:18px 0 0 18px!important}.radius-right-lg-18{border-radius:0 18px 18px 0}.radius-right-lg-18--force{border-radius:0 18px 18px 0!important}.radius-lg-20{border-radius:20px}.radius-bottom-lg-20{border-radius:0 0 20px 20px}.radius-bottom-lg-20--force{border-radius:0 0 20px 20px!important}.radius-top-lg-20{border-radius:20px 20px 0 0}.radius-top-lg-20--force{border-radius:20px 20px 0 0!important}.radius-left-lg-20{border-radius:20px 0 0 20px}.radius-left-lg-20--force{border-radius:20px 0 0 20px!important}.radius-right-lg-20{border-radius:0 20px 20px 0}.radius-right-lg-20--force{border-radius:0 20px 20px 0!important}.radius-lg-22{border-radius:22px}.radius-bottom-lg-22{border-radius:0 0 22px 22px}.radius-bottom-lg-22--force{border-radius:0 0 22px 22px!important}.radius-top-lg-22{border-radius:22px 22px 0 0}.radius-top-lg-22--force{border-radius:22px 22px 0 0!important}.radius-left-lg-22{border-radius:22px 0 0 22px}.radius-left-lg-22--force{border-radius:22px 0 0 22px!important}.radius-right-lg-22{border-radius:0 22px 22px 0}.radius-right-lg-22--force{border-radius:0 22px 22px 0!important}.radius-lg-24{border-radius:24px}.radius-bottom-lg-24{border-radius:0 0 24px 24px}.radius-bottom-lg-24--force{border-radius:0 0 24px 24px!important}.radius-top-lg-24{border-radius:24px 24px 0 0}.radius-top-lg-24--force{border-radius:24px 24px 0 0!important}.radius-left-lg-24{border-radius:24px 0 0 24px}.radius-left-lg-24--force{border-radius:24px 0 0 24px!important}.radius-right-lg-24{border-radius:0 24px 24px 0}.radius-right-lg-24--force{border-radius:0 24px 24px 0!important}.radius-lg-full{border-radius:9999px}.radius-lg-full--force{border-radius:9999px!important}.line-clamp-lg-0,.line-clamp-lg-1,.line-clamp-lg-2,.line-clamp-lg-3,.line-clamp-lg-4,.line-clamp-lg-5,.line-clamp-lg-6{overflow:hidden;display:-webkit-box;text-overflow:ellipsis;word-break:break-word;white-space:initial;-webkit-box-orient:vertical}.line-clamp-lg-0{-webkit-line-clamp:0;line-clamp:0}.line-clamp-lg-1{-webkit-line-clamp:1;line-clamp:1}.line-clamp-lg-2{-webkit-line-clamp:2;line-clamp:2}.line-clamp-lg-3{-webkit-line-clamp:3;line-clamp:3}.line-clamp-lg-4{-webkit-line-clamp:4;line-clamp:4}.line-clamp-lg-5{-webkit-line-clamp:5;line-clamp:5}.line-clamp-lg-6{-webkit-line-clamp:6;line-clamp:6}.line-clamp-lg-none{overflow:visible;display:block;-webkit-box-orient:horizontal;-webkit-line-clamp:none;line-clamp:none}.masonry-lg-1{column-count:1}.masonry-lg-10>*,.masonry-lg-11>*,.masonry-lg-12>*,.masonry-lg-1>*,.masonry-lg-2>*,.masonry-lg-3>*,.masonry-lg-4>*,.masonry-lg-5>*,.masonry-lg-6>*,.masonry-lg-7>*,.masonry-lg-8>*,.masonry-lg-9>*{break-inside:avoid;display:inline-block;width:100%}.masonry-lg-2{column-count:2}.masonry-lg-3{column-count:3}.masonry-lg-4{column-count:4}.masonry-lg-5{column-count:5}.masonry-lg-6{column-count:6}.masonry-lg-7{column-count:7}.masonry-lg-8{column-count:8}.masonry-lg-9{column-count:9}.masonry-lg-10{column-count:10}.masonry-lg-11{column-count:11}.masonry-lg-12{column-count:12}.masonry-gap-lg-0{column-gap:0}.masonry-gap-lg-4{column-gap:4px}.masonry-gap-lg-8{column-gap:8px}.masonry-gap-lg-12{column-gap:12px}.masonry-gap-lg-16{column-gap:16px}.masonry-gap-lg-20{column-gap:20px}.masonry-gap-lg-24{column-gap:24px}.masonry-gap-lg-28{column-gap:28px}.masonry-gap-lg-32{column-gap:32px}.masonry-gap-lg-36{column-gap:36px}.masonry-gap-lg-40{column-gap:40px}.masonry-gap-lg-44{column-gap:44px}.masonry-gap-lg-48{column-gap:48px}}@media screen and (min-width:1920px){.h-xl-0{height:0}.h-xl-0--force{height:0!important}.max-h-xl-0{max-height:0}.max-h-xl-0--force{max-height:0!important}.min-h-xl-0{min-height:0}.min-h-xl-0--force{min-height:0!important}.h-xl-4{height:4px}.h-xl-4--force{height:4px!important}.max-h-xl-4{max-height:4px}.max-h-xl-4--force{max-height:4px!important}.min-h-xl-4{min-height:4px}.min-h-xl-4--force{min-height:4px!important}.h-xl-8{height:8px}.h-xl-8--force{height:8px!important}.max-h-xl-8{max-height:8px}.max-h-xl-8--force{max-height:8px!important}.min-h-xl-8{min-height:8px}.min-h-xl-8--force{min-height:8px!important}.h-xl-12{height:12px}.h-xl-12--force{height:12px!important}.max-h-xl-12{max-height:12px}.max-h-xl-12--force{max-height:12px!important}.min-h-xl-12{min-height:12px}.min-h-xl-12--force{min-height:12px!important}.h-xl-16{height:16px}.h-xl-16--force{height:16px!important}.max-h-xl-16{max-height:16px}.max-h-xl-16--force{max-height:16px!important}.min-h-xl-16{min-height:16px}.min-h-xl-16--force{min-height:16px!important}.h-xl-20{height:20px}.h-xl-20--force{height:20px!important}.max-h-xl-20{max-height:20px}.max-h-xl-20--force{max-height:20px!important}.min-h-xl-20{min-height:20px}.min-h-xl-20--force{min-height:20px!important}.h-xl-24{height:24px}.h-xl-24--force{height:24px!important}.max-h-xl-24{max-height:24px}.max-h-xl-24--force{max-height:24px!important}.min-h-xl-24{min-height:24px}.min-h-xl-24--force{min-height:24px!important}.h-xl-28{height:28px}.h-xl-28--force{height:28px!important}.max-h-xl-28{max-height:28px}.max-h-xl-28--force{max-height:28px!important}.min-h-xl-28{min-height:28px}.min-h-xl-28--force{min-height:28px!important}.h-xl-32{height:32px}.h-xl-32--force{height:32px!important}.max-h-xl-32{max-height:32px}.max-h-xl-32--force{max-height:32px!important}.min-h-xl-32{min-height:32px}.min-h-xl-32--force{min-height:32px!important}.h-xl-36{height:36px}.h-xl-36--force{height:36px!important}.max-h-xl-36{max-height:36px}.max-h-xl-36--force{max-height:36px!important}.min-h-xl-36{min-height:36px}.min-h-xl-36--force{min-height:36px!important}.h-xl-40{height:40px}.h-xl-40--force{height:40px!important}.max-h-xl-40{max-height:40px}.max-h-xl-40--force{max-height:40px!important}.min-h-xl-40{min-height:40px}.min-h-xl-40--force{min-height:40px!important}.h-xl-44{height:44px}.h-xl-44--force{height:44px!important}.max-h-xl-44{max-height:44px}.max-h-xl-44--force{max-height:44px!important}.min-h-xl-44{min-height:44px}.min-h-xl-44--force{min-height:44px!important}.h-xl-48{height:48px}.h-xl-48--force{height:48px!important}.max-h-xl-48{max-height:48px}.max-h-xl-48--force{max-height:48px!important}.min-h-xl-48{min-height:48px}.min-h-xl-48--force{min-height:48px!important}.h-xl-52{height:52px}.h-xl-52--force{height:52px!important}.max-h-xl-52{max-height:52px}.max-h-xl-52--force{max-height:52px!important}.min-h-xl-52{min-height:52px}.min-h-xl-52--force{min-height:52px!important}.h-xl-56{height:56px}.h-xl-56--force{height:56px!important}.max-h-xl-56{max-height:56px}.max-h-xl-56--force{max-height:56px!important}.min-h-xl-56{min-height:56px}.min-h-xl-56--force{min-height:56px!important}.h-xl-60{height:60px}.h-xl-60--force{height:60px!important}.max-h-xl-60{max-height:60px}.max-h-xl-60--force{max-height:60px!important}.min-h-xl-60{min-height:60px}.min-h-xl-60--force{min-height:60px!important}.h-xl-64{height:64px}.h-xl-64--force{height:64px!important}.max-h-xl-64{max-height:64px}.max-h-xl-64--force{max-height:64px!important}.min-h-xl-64{min-height:64px}.min-h-xl-64--force{min-height:64px!important}.h-xl-68{height:68px}.h-xl-68--force{height:68px!important}.max-h-xl-68{max-height:68px}.max-h-xl-68--force{max-height:68px!important}.min-h-xl-68{min-height:68px}.min-h-xl-68--force{min-height:68px!important}.h-xl-72{height:72px}.h-xl-72--force{height:72px!important}.max-h-xl-72{max-height:72px}.max-h-xl-72--force{max-height:72px!important}.min-h-xl-72{min-height:72px}.min-h-xl-72--force{min-height:72px!important}.h-xl-76{height:76px}.h-xl-76--force{height:76px!important}.max-h-xl-76{max-height:76px}.max-h-xl-76--force{max-height:76px!important}.min-h-xl-76{min-height:76px}.min-h-xl-76--force{min-height:76px!important}.h-xl-80{height:80px}.h-xl-80--force{height:80px!important}.max-h-xl-80{max-height:80px}.max-h-xl-80--force{max-height:80px!important}.min-h-xl-80{min-height:80px}.min-h-xl-80--force{min-height:80px!important}.h-xl-84{height:84px}.h-xl-84--force{height:84px!important}.max-h-xl-84{max-height:84px}.max-h-xl-84--force{max-height:84px!important}.min-h-xl-84{min-height:84px}.min-h-xl-84--force{min-height:84px!important}.h-xl-88{height:88px}.h-xl-88--force{height:88px!important}.max-h-xl-88{max-height:88px}.max-h-xl-88--force{max-height:88px!important}.min-h-xl-88{min-height:88px}.min-h-xl-88--force{min-height:88px!important}.h-xl-92{height:92px}.h-xl-92--force{height:92px!important}.max-h-xl-92{max-height:92px}.max-h-xl-92--force{max-height:92px!important}.min-h-xl-92{min-height:92px}.min-h-xl-92--force{min-height:92px!important}.h-xl-96{height:96px}.h-xl-96--force{height:96px!important}.max-h-xl-96{max-height:96px}.max-h-xl-96--force{max-height:96px!important}.min-h-xl-96{min-height:96px}.min-h-xl-96--force{min-height:96px!important}.h-xl-100{height:100px}.h-xl-100--force{height:100px!important}.max-h-xl-100{max-height:100px}.max-h-xl-100--force{max-height:100px!important}.min-h-xl-100{min-height:100px}.min-h-xl-100--force{min-height:100px!important}.h-xl-104{height:104px}.h-xl-104--force{height:104px!important}.max-h-xl-104{max-height:104px}.max-h-xl-104--force{max-height:104px!important}.min-h-xl-104{min-height:104px}.min-h-xl-104--force{min-height:104px!important}.h-xl-108{height:108px}.h-xl-108--force{height:108px!important}.max-h-xl-108{max-height:108px}.max-h-xl-108--force{max-height:108px!important}.min-h-xl-108{min-height:108px}.min-h-xl-108--force{min-height:108px!important}.h-xl-112{height:112px}.h-xl-112--force{height:112px!important}.max-h-xl-112{max-height:112px}.max-h-xl-112--force{max-height:112px!important}.min-h-xl-112{min-height:112px}.min-h-xl-112--force{min-height:112px!important}.h-xl-116{height:116px}.h-xl-116--force{height:116px!important}.max-h-xl-116{max-height:116px}.max-h-xl-116--force{max-height:116px!important}.min-h-xl-116{min-height:116px}.min-h-xl-116--force{min-height:116px!important}.h-xl-120{height:120px}.h-xl-120--force{height:120px!important}.max-h-xl-120{max-height:120px}.max-h-xl-120--force{max-height:120px!important}.min-h-xl-120{min-height:120px}.min-h-xl-120--force{min-height:120px!important}.h-xl-124{height:124px}.h-xl-124--force{height:124px!important}.max-h-xl-124{max-height:124px}.max-h-xl-124--force{max-height:124px!important}.min-h-xl-124{min-height:124px}.min-h-xl-124--force{min-height:124px!important}.h-xl-128{height:128px}.h-xl-128--force{height:128px!important}.max-h-xl-128{max-height:128px}.max-h-xl-128--force{max-height:128px!important}.min-h-xl-128{min-height:128px}.min-h-xl-128--force{min-height:128px!important}.h-xl-132{height:132px}.h-xl-132--force{height:132px!important}.max-h-xl-132{max-height:132px}.max-h-xl-132--force{max-height:132px!important}.min-h-xl-132{min-height:132px}.min-h-xl-132--force{min-height:132px!important}.h-xl-136{height:136px}.h-xl-136--force{height:136px!important}.max-h-xl-136{max-height:136px}.max-h-xl-136--force{max-height:136px!important}.min-h-xl-136{min-height:136px}.min-h-xl-136--force{min-height:136px!important}.h-xl-140{height:140px}.h-xl-140--force{height:140px!important}.max-h-xl-140{max-height:140px}.max-h-xl-140--force{max-height:140px!important}.min-h-xl-140{min-height:140px}.min-h-xl-140--force{min-height:140px!important}.h-xl-144{height:144px}.h-xl-144--force{height:144px!important}.max-h-xl-144{max-height:144px}.max-h-xl-144--force{max-height:144px!important}.min-h-xl-144{min-height:144px}.min-h-xl-144--force{min-height:144px!important}.h-xl-148{height:148px}.h-xl-148--force{height:148px!important}.max-h-xl-148{max-height:148px}.max-h-xl-148--force{max-height:148px!important}.min-h-xl-148{min-height:148px}.min-h-xl-148--force{min-height:148px!important}.h-xl-152{height:152px}.h-xl-152--force{height:152px!important}.max-h-xl-152{max-height:152px}.max-h-xl-152--force{max-height:152px!important}.min-h-xl-152{min-height:152px}.min-h-xl-152--force{min-height:152px!important}.h-xl-156{height:156px}.h-xl-156--force{height:156px!important}.max-h-xl-156{max-height:156px}.max-h-xl-156--force{max-height:156px!important}.min-h-xl-156{min-height:156px}.min-h-xl-156--force{min-height:156px!important}.h-xl-160{height:160px}.h-xl-160--force{height:160px!important}.max-h-xl-160{max-height:160px}.max-h-xl-160--force{max-height:160px!important}.min-h-xl-160{min-height:160px}.min-h-xl-160--force{min-height:160px!important}.h-xl-164{height:164px}.h-xl-164--force{height:164px!important}.max-h-xl-164{max-height:164px}.max-h-xl-164--force{max-height:164px!important}.min-h-xl-164{min-height:164px}.min-h-xl-164--force{min-height:164px!important}.h-xl-168{height:168px}.h-xl-168--force{height:168px!important}.max-h-xl-168{max-height:168px}.max-h-xl-168--force{max-height:168px!important}.min-h-xl-168{min-height:168px}.min-h-xl-168--force{min-height:168px!important}.h-xl-172{height:172px}.h-xl-172--force{height:172px!important}.max-h-xl-172{max-height:172px}.max-h-xl-172--force{max-height:172px!important}.min-h-xl-172{min-height:172px}.min-h-xl-172--force{min-height:172px!important}.h-xl-176{height:176px}.h-xl-176--force{height:176px!important}.max-h-xl-176{max-height:176px}.max-h-xl-176--force{max-height:176px!important}.min-h-xl-176{min-height:176px}.min-h-xl-176--force{min-height:176px!important}.h-xl-180{height:180px}.h-xl-180--force{height:180px!important}.max-h-xl-180{max-height:180px}.max-h-xl-180--force{max-height:180px!important}.min-h-xl-180{min-height:180px}.min-h-xl-180--force{min-height:180px!important}.h-xl-184{height:184px}.h-xl-184--force{height:184px!important}.max-h-xl-184{max-height:184px}.max-h-xl-184--force{max-height:184px!important}.min-h-xl-184{min-height:184px}.min-h-xl-184--force{min-height:184px!important}.h-xl-188{height:188px}.h-xl-188--force{height:188px!important}.max-h-xl-188{max-height:188px}.max-h-xl-188--force{max-height:188px!important}.min-h-xl-188{min-height:188px}.min-h-xl-188--force{min-height:188px!important}.h-xl-192{height:192px}.h-xl-192--force{height:192px!important}.max-h-xl-192{max-height:192px}.max-h-xl-192--force{max-height:192px!important}.min-h-xl-192{min-height:192px}.min-h-xl-192--force{min-height:192px!important}.h-xl-196{height:196px}.h-xl-196--force{height:196px!important}.max-h-xl-196{max-height:196px}.max-h-xl-196--force{max-height:196px!important}.min-h-xl-196{min-height:196px}.min-h-xl-196--force{min-height:196px!important}.h-xl-200{height:200px}.h-xl-200--force{height:200px!important}.max-h-xl-200{max-height:200px}.max-h-xl-200--force{max-height:200px!important}.min-h-xl-200{min-height:200px}.min-h-xl-200--force{min-height:200px!important}.h-xl-204{height:204px}.h-xl-204--force{height:204px!important}.max-h-xl-204{max-height:204px}.max-h-xl-204--force{max-height:204px!important}.min-h-xl-204{min-height:204px}.min-h-xl-204--force{min-height:204px!important}.h-xl-208{height:208px}.h-xl-208--force{height:208px!important}.max-h-xl-208{max-height:208px}.max-h-xl-208--force{max-height:208px!important}.min-h-xl-208{min-height:208px}.min-h-xl-208--force{min-height:208px!important}.h-xl-212{height:212px}.h-xl-212--force{height:212px!important}.max-h-xl-212{max-height:212px}.max-h-xl-212--force{max-height:212px!important}.min-h-xl-212{min-height:212px}.min-h-xl-212--force{min-height:212px!important}.h-xl-216{height:216px}.h-xl-216--force{height:216px!important}.max-h-xl-216{max-height:216px}.max-h-xl-216--force{max-height:216px!important}.min-h-xl-216{min-height:216px}.min-h-xl-216--force{min-height:216px!important}.h-xl-220{height:220px}.h-xl-220--force{height:220px!important}.max-h-xl-220{max-height:220px}.max-h-xl-220--force{max-height:220px!important}.min-h-xl-220{min-height:220px}.min-h-xl-220--force{min-height:220px!important}.h-xl-224{height:224px}.h-xl-224--force{height:224px!important}.max-h-xl-224{max-height:224px}.max-h-xl-224--force{max-height:224px!important}.min-h-xl-224{min-height:224px}.min-h-xl-224--force{min-height:224px!important}.h-xl-228{height:228px}.h-xl-228--force{height:228px!important}.max-h-xl-228{max-height:228px}.max-h-xl-228--force{max-height:228px!important}.min-h-xl-228{min-height:228px}.min-h-xl-228--force{min-height:228px!important}.h-xl-232{height:232px}.h-xl-232--force{height:232px!important}.max-h-xl-232{max-height:232px}.max-h-xl-232--force{max-height:232px!important}.min-h-xl-232{min-height:232px}.min-h-xl-232--force{min-height:232px!important}.h-xl-236{height:236px}.h-xl-236--force{height:236px!important}.max-h-xl-236{max-height:236px}.max-h-xl-236--force{max-height:236px!important}.min-h-xl-236{min-height:236px}.min-h-xl-236--force{min-height:236px!important}.h-xl-240{height:240px}.h-xl-240--force{height:240px!important}.max-h-xl-240{max-height:240px}.max-h-xl-240--force{max-height:240px!important}.min-h-xl-240{min-height:240px}.min-h-xl-240--force{min-height:240px!important}.h-xl-244{height:244px}.h-xl-244--force{height:244px!important}.max-h-xl-244{max-height:244px}.max-h-xl-244--force{max-height:244px!important}.min-h-xl-244{min-height:244px}.min-h-xl-244--force{min-height:244px!important}.h-xl-248{height:248px}.h-xl-248--force{height:248px!important}.max-h-xl-248{max-height:248px}.max-h-xl-248--force{max-height:248px!important}.min-h-xl-248{min-height:248px}.min-h-xl-248--force{min-height:248px!important}.h-xl-252{height:252px}.h-xl-252--force{height:252px!important}.max-h-xl-252{max-height:252px}.max-h-xl-252--force{max-height:252px!important}.min-h-xl-252{min-height:252px}.min-h-xl-252--force{min-height:252px!important}.h-xl-256{height:256px}.h-xl-256--force{height:256px!important}.max-h-xl-256{max-height:256px}.max-h-xl-256--force{max-height:256px!important}.min-h-xl-256{min-height:256px}.min-h-xl-256--force{min-height:256px!important}.h-xl-0-p{height:0%}.h-xl-0-p--force{height:0%!important}.max-h-xl-0-p{max-height:0%}.max-h-xl-0-p--force{max-height:0%!important}.min-h-xl-0-p{min-height:0}.min-h-xl-0-p--force{min-height:0!important}.h-xl-5-p{height:5%}.h-xl-5-p--force{height:5%!important}.max-h-xl-5-p{max-height:5%}.max-h-xl-5-p--force{max-height:5%!important}.min-h-xl-5-p{min-height:5%}.min-h-xl-5-p--force{min-height:5%!important}.h-xl-10-p{height:10%}.h-xl-10-p--force{height:10%!important}.max-h-xl-10-p{max-height:10%}.max-h-xl-10-p--force{max-height:10%!important}.min-h-xl-10-p{min-height:10%}.min-h-xl-10-p--force{min-height:10%!important}.h-xl-15-p{height:15%}.h-xl-15-p--force{height:15%!important}.max-h-xl-15-p{max-height:15%}.max-h-xl-15-p--force{max-height:15%!important}.min-h-xl-15-p{min-height:15%}.min-h-xl-15-p--force{min-height:15%!important}.h-xl-20-p{height:20%}.h-xl-20-p--force{height:20%!important}.max-h-xl-20-p{max-height:20%}.max-h-xl-20-p--force{max-height:20%!important}.min-h-xl-20-p{min-height:20%}.min-h-xl-20-p--force{min-height:20%!important}.h-xl-25-p{height:25%}.h-xl-25-p--force{height:25%!important}.max-h-xl-25-p{max-height:25%}.max-h-xl-25-p--force{max-height:25%!important}.min-h-xl-25-p{min-height:25%}.min-h-xl-25-p--force{min-height:25%!important}.h-xl-30-p{height:30%}.h-xl-30-p--force{height:30%!important}.max-h-xl-30-p{max-height:30%}.max-h-xl-30-p--force{max-height:30%!important}.min-h-xl-30-p{min-height:30%}.min-h-xl-30-p--force{min-height:30%!important}.h-xl-35-p{height:35%}.h-xl-35-p--force{height:35%!important}.max-h-xl-35-p{max-height:35%}.max-h-xl-35-p--force{max-height:35%!important}.min-h-xl-35-p{min-height:35%}.min-h-xl-35-p--force{min-height:35%!important}.h-xl-40-p{height:40%}.h-xl-40-p--force{height:40%!important}.max-h-xl-40-p{max-height:40%}.max-h-xl-40-p--force{max-height:40%!important}.min-h-xl-40-p{min-height:40%}.min-h-xl-40-p--force{min-height:40%!important}.h-xl-45-p{height:45%}.h-xl-45-p--force{height:45%!important}.max-h-xl-45-p{max-height:45%}.max-h-xl-45-p--force{max-height:45%!important}.min-h-xl-45-p{min-height:45%}.min-h-xl-45-p--force{min-height:45%!important}.h-xl-50-p{height:50%}.h-xl-50-p--force{height:50%!important}.max-h-xl-50-p{max-height:50%}.max-h-xl-50-p--force{max-height:50%!important}.min-h-xl-50-p{min-height:50%}.min-h-xl-50-p--force{min-height:50%!important}.h-xl-55-p{height:55%}.h-xl-55-p--force{height:55%!important}.max-h-xl-55-p{max-height:55%}.max-h-xl-55-p--force{max-height:55%!important}.min-h-xl-55-p{min-height:55%}.min-h-xl-55-p--force{min-height:55%!important}.h-xl-60-p{height:60%}.h-xl-60-p--force{height:60%!important}.max-h-xl-60-p{max-height:60%}.max-h-xl-60-p--force{max-height:60%!important}.min-h-xl-60-p{min-height:60%}.min-h-xl-60-p--force{min-height:60%!important}.h-xl-65-p{height:65%}.h-xl-65-p--force{height:65%!important}.max-h-xl-65-p{max-height:65%}.max-h-xl-65-p--force{max-height:65%!important}.min-h-xl-65-p{min-height:65%}.min-h-xl-65-p--force{min-height:65%!important}.h-xl-70-p{height:70%}.h-xl-70-p--force{height:70%!important}.max-h-xl-70-p{max-height:70%}.max-h-xl-70-p--force{max-height:70%!important}.min-h-xl-70-p{min-height:70%}.min-h-xl-70-p--force{min-height:70%!important}.h-xl-75-p{height:75%}.h-xl-75-p--force{height:75%!important}.max-h-xl-75-p{max-height:75%}.max-h-xl-75-p--force{max-height:75%!important}.min-h-xl-75-p{min-height:75%}.min-h-xl-75-p--force{min-height:75%!important}.h-xl-80-p{height:80%}.h-xl-80-p--force{height:80%!important}.max-h-xl-80-p{max-height:80%}.max-h-xl-80-p--force{max-height:80%!important}.min-h-xl-80-p{min-height:80%}.min-h-xl-80-p--force{min-height:80%!important}.h-xl-85-p{height:85%}.h-xl-85-p--force{height:85%!important}.max-h-xl-85-p{max-height:85%}.max-h-xl-85-p--force{max-height:85%!important}.min-h-xl-85-p{min-height:85%}.min-h-xl-85-p--force{min-height:85%!important}.h-xl-90-p{height:90%}.h-xl-90-p--force{height:90%!important}.max-h-xl-90-p{max-height:90%}.max-h-xl-90-p--force{max-height:90%!important}.min-h-xl-90-p{min-height:90%}.min-h-xl-90-p--force{min-height:90%!important}.h-xl-95-p{height:95%}.h-xl-95-p--force{height:95%!important}.max-h-xl-95-p{max-height:95%}.max-h-xl-95-p--force{max-height:95%!important}.min-h-xl-95-p{min-height:95%}.min-h-xl-95-p--force{min-height:95%!important}.h-xl-100-p{height:100%}.h-xl-100-p--force{height:100%!important}.max-h-xl-100-p{max-height:100%}.max-h-xl-100-p--force{max-height:100%!important}.min-h-xl-100-p{min-height:100%}.min-h-xl-100-p--force{min-height:100%!important}.h-xl-300{height:300px}.h-xl-300--force{height:300px!important}.max-h-xl-300{max-height:300px}.max-h-xl-300--force{max-height:300px!important}.min-h-xl-300{min-height:300px}.min-h-xl-300--force{min-height:300px!important}.h-xl-400{height:400px}.h-xl-400--force{height:400px!important}.max-h-xl-400{max-height:400px}.max-h-xl-400--force{max-height:400px!important}.min-h-xl-400{min-height:400px}.min-h-xl-400--force{min-height:400px!important}.h-xl-500{height:500px}.h-xl-500--force{height:500px!important}.max-h-xl-500{max-height:500px}.max-h-xl-500--force{max-height:500px!important}.min-h-xl-500{min-height:500px}.min-h-xl-500--force{min-height:500px!important}.h-xl-600{height:600px}.h-xl-600--force{height:600px!important}.max-h-xl-600{max-height:600px}.max-h-xl-600--force{max-height:600px!important}.min-h-xl-600{min-height:600px}.min-h-xl-600--force{min-height:600px!important}.h-xl-700{height:700px}.h-xl-700--force{height:700px!important}.max-h-xl-700{max-height:700px}.max-h-xl-700--force{max-height:700px!important}.min-h-xl-700{min-height:700px}.min-h-xl-700--force{min-height:700px!important}.h-xl-800{height:800px}.h-xl-800--force{height:800px!important}.max-h-xl-800{max-height:800px}.max-h-xl-800--force{max-height:800px!important}.min-h-xl-800{min-height:800px}.min-h-xl-800--force{min-height:800px!important}.h-xl-900{height:900px}.h-xl-900--force{height:900px!important}.max-h-xl-900{max-height:900px}.max-h-xl-900--force{max-height:900px!important}.min-h-xl-900{min-height:900px}.min-h-xl-900--force{min-height:900px!important}.h-xl-1000{height:1000px}.h-xl-1000--force{height:1000px!important}.max-h-xl-1000{max-height:1000px}.max-h-xl-1000--force{max-height:1000px!important}.min-h-xl-1000{min-height:1000px}.min-h-xl-1000--force{min-height:1000px!important}.h-xl-1100{height:1100px}.h-xl-1100--force{height:1100px!important}.max-h-xl-1100{max-height:1100px}.max-h-xl-1100--force{max-height:1100px!important}.min-h-xl-1100{min-height:1100px}.min-h-xl-1100--force{min-height:1100px!important}.h-xl-1200{height:1200px}.h-xl-1200--force{height:1200px!important}.max-h-xl-1200{max-height:1200px}.max-h-xl-1200--force{max-height:1200px!important}.min-h-xl-1200{min-height:1200px}.min-h-xl-1200--force{min-height:1200px!important}.h-xl-1300{height:1300px}.h-xl-1300--force{height:1300px!important}.max-h-xl-1300{max-height:1300px}.max-h-xl-1300--force{max-height:1300px!important}.min-h-xl-1300{min-height:1300px}.min-h-xl-1300--force{min-height:1300px!important}.h-xl-1400{height:1400px}.h-xl-1400--force{height:1400px!important}.max-h-xl-1400{max-height:1400px}.max-h-xl-1400--force{max-height:1400px!important}.min-h-xl-1400{min-height:1400px}.min-h-xl-1400--force{min-height:1400px!important}.h-xl-1500{height:1500px}.h-xl-1500--force{height:1500px!important}.max-h-xl-1500{max-height:1500px}.max-h-xl-1500--force{max-height:1500px!important}.min-h-xl-1500{min-height:1500px}.min-h-xl-1500--force{min-height:1500px!important}.h-xl-1600{height:1600px}.h-xl-1600--force{height:1600px!important}.max-h-xl-1600{max-height:1600px}.max-h-xl-1600--force{max-height:1600px!important}.min-h-xl-1600{min-height:1600px}.min-h-xl-1600--force{min-height:1600px!important}.h-xl-1700{height:1700px}.h-xl-1700--force{height:1700px!important}.max-h-xl-1700{max-height:1700px}.max-h-xl-1700--force{max-height:1700px!important}.min-h-xl-1700{min-height:1700px}.min-h-xl-1700--force{min-height:1700px!important}.h-xl-1800{height:1800px}.h-xl-1800--force{height:1800px!important}.max-h-xl-1800{max-height:1800px}.max-h-xl-1800--force{max-height:1800px!important}.min-h-xl-1800{min-height:1800px}.min-h-xl-1800--force{min-height:1800px!important}.h-xl-1900{height:1900px}.h-xl-1900--force{height:1900px!important}.max-h-xl-1900{max-height:1900px}.max-h-xl-1900--force{max-height:1900px!important}.min-h-xl-1900{min-height:1900px}.min-h-xl-1900--force{min-height:1900px!important}.h-xl-2000{height:2000px}.h-xl-2000--force{height:2000px!important}.max-h-xl-2000{max-height:2000px}.max-h-xl-2000--force{max-height:2000px!important}.min-h-xl-2000{min-height:2000px}.min-h-xl-2000--force{min-height:2000px!important}.h-xl-auto{height:auto}.h-xl-auto--force{height:auto!important}.w-xl-0{width:0}.w-xl-0--force{width:0!important}.max-w-xl-0{max-width:0}.max-w-xl-0--force{max-width:0!important}.min-w-xl-0{min-width:0}.min-w-xl-0--force{min-width:0!important}.w-xl-4{width:4px}.w-xl-4--force{width:4px!important}.max-w-xl-4{max-width:4px}.max-w-xl-4--force{max-width:4px!important}.min-w-xl-4{min-width:4px}.min-w-xl-4--force{min-width:4px!important}.w-xl-8{width:8px}.w-xl-8--force{width:8px!important}.max-w-xl-8{max-width:8px}.max-w-xl-8--force{max-width:8px!important}.min-w-xl-8{min-width:8px}.min-w-xl-8--force{min-width:8px!important}.w-xl-12{width:12px}.w-xl-12--force{width:12px!important}.max-w-xl-12{max-width:12px}.max-w-xl-12--force{max-width:12px!important}.min-w-xl-12{min-width:12px}.min-w-xl-12--force{min-width:12px!important}.w-xl-16{width:16px}.w-xl-16--force{width:16px!important}.max-w-xl-16{max-width:16px}.max-w-xl-16--force{max-width:16px!important}.min-w-xl-16{min-width:16px}.min-w-xl-16--force{min-width:16px!important}.w-xl-20{width:20px}.w-xl-20--force{width:20px!important}.max-w-xl-20{max-width:20px}.max-w-xl-20--force{max-width:20px!important}.min-w-xl-20{min-width:20px}.min-w-xl-20--force{min-width:20px!important}.w-xl-24{width:24px}.w-xl-24--force{width:24px!important}.max-w-xl-24{max-width:24px}.max-w-xl-24--force{max-width:24px!important}.min-w-xl-24{min-width:24px}.min-w-xl-24--force{min-width:24px!important}.w-xl-28{width:28px}.w-xl-28--force{width:28px!important}.max-w-xl-28{max-width:28px}.max-w-xl-28--force{max-width:28px!important}.min-w-xl-28{min-width:28px}.min-w-xl-28--force{min-width:28px!important}.w-xl-32{width:32px}.w-xl-32--force{width:32px!important}.max-w-xl-32{max-width:32px}.max-w-xl-32--force{max-width:32px!important}.min-w-xl-32{min-width:32px}.min-w-xl-32--force{min-width:32px!important}.w-xl-36{width:36px}.w-xl-36--force{width:36px!important}.max-w-xl-36{max-width:36px}.max-w-xl-36--force{max-width:36px!important}.min-w-xl-36{min-width:36px}.min-w-xl-36--force{min-width:36px!important}.w-xl-40{width:40px}.w-xl-40--force{width:40px!important}.max-w-xl-40{max-width:40px}.max-w-xl-40--force{max-width:40px!important}.min-w-xl-40{min-width:40px}.min-w-xl-40--force{min-width:40px!important}.w-xl-44{width:44px}.w-xl-44--force{width:44px!important}.max-w-xl-44{max-width:44px}.max-w-xl-44--force{max-width:44px!important}.min-w-xl-44{min-width:44px}.min-w-xl-44--force{min-width:44px!important}.w-xl-48{width:48px}.w-xl-48--force{width:48px!important}.max-w-xl-48{max-width:48px}.max-w-xl-48--force{max-width:48px!important}.min-w-xl-48{min-width:48px}.min-w-xl-48--force{min-width:48px!important}.w-xl-52{width:52px}.w-xl-52--force{width:52px!important}.max-w-xl-52{max-width:52px}.max-w-xl-52--force{max-width:52px!important}.min-w-xl-52{min-width:52px}.min-w-xl-52--force{min-width:52px!important}.w-xl-56{width:56px}.w-xl-56--force{width:56px!important}.max-w-xl-56{max-width:56px}.max-w-xl-56--force{max-width:56px!important}.min-w-xl-56{min-width:56px}.min-w-xl-56--force{min-width:56px!important}.w-xl-60{width:60px}.w-xl-60--force{width:60px!important}.max-w-xl-60{max-width:60px}.max-w-xl-60--force{max-width:60px!important}.min-w-xl-60{min-width:60px}.min-w-xl-60--force{min-width:60px!important}.w-xl-64{width:64px}.w-xl-64--force{width:64px!important}.max-w-xl-64{max-width:64px}.max-w-xl-64--force{max-width:64px!important}.min-w-xl-64{min-width:64px}.min-w-xl-64--force{min-width:64px!important}.w-xl-68{width:68px}.w-xl-68--force{width:68px!important}.max-w-xl-68{max-width:68px}.max-w-xl-68--force{max-width:68px!important}.min-w-xl-68{min-width:68px}.min-w-xl-68--force{min-width:68px!important}.w-xl-72{width:72px}.w-xl-72--force{width:72px!important}.max-w-xl-72{max-width:72px}.max-w-xl-72--force{max-width:72px!important}.min-w-xl-72{min-width:72px}.min-w-xl-72--force{min-width:72px!important}.w-xl-76{width:76px}.w-xl-76--force{width:76px!important}.max-w-xl-76{max-width:76px}.max-w-xl-76--force{max-width:76px!important}.min-w-xl-76{min-width:76px}.min-w-xl-76--force{min-width:76px!important}.w-xl-80{width:80px}.w-xl-80--force{width:80px!important}.max-w-xl-80{max-width:80px}.max-w-xl-80--force{max-width:80px!important}.min-w-xl-80{min-width:80px}.min-w-xl-80--force{min-width:80px!important}.w-xl-84{width:84px}.w-xl-84--force{width:84px!important}.max-w-xl-84{max-width:84px}.max-w-xl-84--force{max-width:84px!important}.min-w-xl-84{min-width:84px}.min-w-xl-84--force{min-width:84px!important}.w-xl-88{width:88px}.w-xl-88--force{width:88px!important}.max-w-xl-88{max-width:88px}.max-w-xl-88--force{max-width:88px!important}.min-w-xl-88{min-width:88px}.min-w-xl-88--force{min-width:88px!important}.w-xl-92{width:92px}.w-xl-92--force{width:92px!important}.max-w-xl-92{max-width:92px}.max-w-xl-92--force{max-width:92px!important}.min-w-xl-92{min-width:92px}.min-w-xl-92--force{min-width:92px!important}.w-xl-96{width:96px}.w-xl-96--force{width:96px!important}.max-w-xl-96{max-width:96px}.max-w-xl-96--force{max-width:96px!important}.min-w-xl-96{min-width:96px}.min-w-xl-96--force{min-width:96px!important}.w-xl-100{width:100px}.w-xl-100--force{width:100px!important}.max-w-xl-100{max-width:100px}.max-w-xl-100--force{max-width:100px!important}.min-w-xl-100{min-width:100px}.min-w-xl-100--force{min-width:100px!important}.w-xl-104{width:104px}.w-xl-104--force{width:104px!important}.max-w-xl-104{max-width:104px}.max-w-xl-104--force{max-width:104px!important}.min-w-xl-104{min-width:104px}.min-w-xl-104--force{min-width:104px!important}.w-xl-108{width:108px}.w-xl-108--force{width:108px!important}.max-w-xl-108{max-width:108px}.max-w-xl-108--force{max-width:108px!important}.min-w-xl-108{min-width:108px}.min-w-xl-108--force{min-width:108px!important}.w-xl-112{width:112px}.w-xl-112--force{width:112px!important}.max-w-xl-112{max-width:112px}.max-w-xl-112--force{max-width:112px!important}.min-w-xl-112{min-width:112px}.min-w-xl-112--force{min-width:112px!important}.w-xl-116{width:116px}.w-xl-116--force{width:116px!important}.max-w-xl-116{max-width:116px}.max-w-xl-116--force{max-width:116px!important}.min-w-xl-116{min-width:116px}.min-w-xl-116--force{min-width:116px!important}.w-xl-120{width:120px}.w-xl-120--force{width:120px!important}.max-w-xl-120{max-width:120px}.max-w-xl-120--force{max-width:120px!important}.min-w-xl-120{min-width:120px}.min-w-xl-120--force{min-width:120px!important}.w-xl-124{width:124px}.w-xl-124--force{width:124px!important}.max-w-xl-124{max-width:124px}.max-w-xl-124--force{max-width:124px!important}.min-w-xl-124{min-width:124px}.min-w-xl-124--force{min-width:124px!important}.w-xl-128{width:128px}.w-xl-128--force{width:128px!important}.max-w-xl-128{max-width:128px}.max-w-xl-128--force{max-width:128px!important}.min-w-xl-128{min-width:128px}.min-w-xl-128--force{min-width:128px!important}.w-xl-132{width:132px}.w-xl-132--force{width:132px!important}.max-w-xl-132{max-width:132px}.max-w-xl-132--force{max-width:132px!important}.min-w-xl-132{min-width:132px}.min-w-xl-132--force{min-width:132px!important}.w-xl-136{width:136px}.w-xl-136--force{width:136px!important}.max-w-xl-136{max-width:136px}.max-w-xl-136--force{max-width:136px!important}.min-w-xl-136{min-width:136px}.min-w-xl-136--force{min-width:136px!important}.w-xl-140{width:140px}.w-xl-140--force{width:140px!important}.max-w-xl-140{max-width:140px}.max-w-xl-140--force{max-width:140px!important}.min-w-xl-140{min-width:140px}.min-w-xl-140--force{min-width:140px!important}.w-xl-144{width:144px}.w-xl-144--force{width:144px!important}.max-w-xl-144{max-width:144px}.max-w-xl-144--force{max-width:144px!important}.min-w-xl-144{min-width:144px}.min-w-xl-144--force{min-width:144px!important}.w-xl-148{width:148px}.w-xl-148--force{width:148px!important}.max-w-xl-148{max-width:148px}.max-w-xl-148--force{max-width:148px!important}.min-w-xl-148{min-width:148px}.min-w-xl-148--force{min-width:148px!important}.w-xl-152{width:152px}.w-xl-152--force{width:152px!important}.max-w-xl-152{max-width:152px}.max-w-xl-152--force{max-width:152px!important}.min-w-xl-152{min-width:152px}.min-w-xl-152--force{min-width:152px!important}.w-xl-156{width:156px}.w-xl-156--force{width:156px!important}.max-w-xl-156{max-width:156px}.max-w-xl-156--force{max-width:156px!important}.min-w-xl-156{min-width:156px}.min-w-xl-156--force{min-width:156px!important}.w-xl-160{width:160px}.w-xl-160--force{width:160px!important}.max-w-xl-160{max-width:160px}.max-w-xl-160--force{max-width:160px!important}.min-w-xl-160{min-width:160px}.min-w-xl-160--force{min-width:160px!important}.w-xl-164{width:164px}.w-xl-164--force{width:164px!important}.max-w-xl-164{max-width:164px}.max-w-xl-164--force{max-width:164px!important}.min-w-xl-164{min-width:164px}.min-w-xl-164--force{min-width:164px!important}.w-xl-168{width:168px}.w-xl-168--force{width:168px!important}.max-w-xl-168{max-width:168px}.max-w-xl-168--force{max-width:168px!important}.min-w-xl-168{min-width:168px}.min-w-xl-168--force{min-width:168px!important}.w-xl-172{width:172px}.w-xl-172--force{width:172px!important}.max-w-xl-172{max-width:172px}.max-w-xl-172--force{max-width:172px!important}.min-w-xl-172{min-width:172px}.min-w-xl-172--force{min-width:172px!important}.w-xl-176{width:176px}.w-xl-176--force{width:176px!important}.max-w-xl-176{max-width:176px}.max-w-xl-176--force{max-width:176px!important}.min-w-xl-176{min-width:176px}.min-w-xl-176--force{min-width:176px!important}.w-xl-180{width:180px}.w-xl-180--force{width:180px!important}.max-w-xl-180{max-width:180px}.max-w-xl-180--force{max-width:180px!important}.min-w-xl-180{min-width:180px}.min-w-xl-180--force{min-width:180px!important}.w-xl-184{width:184px}.w-xl-184--force{width:184px!important}.max-w-xl-184{max-width:184px}.max-w-xl-184--force{max-width:184px!important}.min-w-xl-184{min-width:184px}.min-w-xl-184--force{min-width:184px!important}.w-xl-188{width:188px}.w-xl-188--force{width:188px!important}.max-w-xl-188{max-width:188px}.max-w-xl-188--force{max-width:188px!important}.min-w-xl-188{min-width:188px}.min-w-xl-188--force{min-width:188px!important}.w-xl-192{width:192px}.w-xl-192--force{width:192px!important}.max-w-xl-192{max-width:192px}.max-w-xl-192--force{max-width:192px!important}.min-w-xl-192{min-width:192px}.min-w-xl-192--force{min-width:192px!important}.w-xl-196{width:196px}.w-xl-196--force{width:196px!important}.max-w-xl-196{max-width:196px}.max-w-xl-196--force{max-width:196px!important}.min-w-xl-196{min-width:196px}.min-w-xl-196--force{min-width:196px!important}.w-xl-200{width:200px}.w-xl-200--force{width:200px!important}.max-w-xl-200{max-width:200px}.max-w-xl-200--force{max-width:200px!important}.min-w-xl-200{min-width:200px}.min-w-xl-200--force{min-width:200px!important}.w-xl-204{width:204px}.w-xl-204--force{width:204px!important}.max-w-xl-204{max-width:204px}.max-w-xl-204--force{max-width:204px!important}.min-w-xl-204{min-width:204px}.min-w-xl-204--force{min-width:204px!important}.w-xl-208{width:208px}.w-xl-208--force{width:208px!important}.max-w-xl-208{max-width:208px}.max-w-xl-208--force{max-width:208px!important}.min-w-xl-208{min-width:208px}.min-w-xl-208--force{min-width:208px!important}.w-xl-212{width:212px}.w-xl-212--force{width:212px!important}.max-w-xl-212{max-width:212px}.max-w-xl-212--force{max-width:212px!important}.min-w-xl-212{min-width:212px}.min-w-xl-212--force{min-width:212px!important}.w-xl-216{width:216px}.w-xl-216--force{width:216px!important}.max-w-xl-216{max-width:216px}.max-w-xl-216--force{max-width:216px!important}.min-w-xl-216{min-width:216px}.min-w-xl-216--force{min-width:216px!important}.w-xl-220{width:220px}.w-xl-220--force{width:220px!important}.max-w-xl-220{max-width:220px}.max-w-xl-220--force{max-width:220px!important}.min-w-xl-220{min-width:220px}.min-w-xl-220--force{min-width:220px!important}.w-xl-224{width:224px}.w-xl-224--force{width:224px!important}.max-w-xl-224{max-width:224px}.max-w-xl-224--force{max-width:224px!important}.min-w-xl-224{min-width:224px}.min-w-xl-224--force{min-width:224px!important}.w-xl-228{width:228px}.w-xl-228--force{width:228px!important}.max-w-xl-228{max-width:228px}.max-w-xl-228--force{max-width:228px!important}.min-w-xl-228{min-width:228px}.min-w-xl-228--force{min-width:228px!important}.w-xl-232{width:232px}.w-xl-232--force{width:232px!important}.max-w-xl-232{max-width:232px}.max-w-xl-232--force{max-width:232px!important}.min-w-xl-232{min-width:232px}.min-w-xl-232--force{min-width:232px!important}.w-xl-236{width:236px}.w-xl-236--force{width:236px!important}.max-w-xl-236{max-width:236px}.max-w-xl-236--force{max-width:236px!important}.min-w-xl-236{min-width:236px}.min-w-xl-236--force{min-width:236px!important}.w-xl-240{width:240px}.w-xl-240--force{width:240px!important}.max-w-xl-240{max-width:240px}.max-w-xl-240--force{max-width:240px!important}.min-w-xl-240{min-width:240px}.min-w-xl-240--force{min-width:240px!important}.w-xl-244{width:244px}.w-xl-244--force{width:244px!important}.max-w-xl-244{max-width:244px}.max-w-xl-244--force{max-width:244px!important}.min-w-xl-244{min-width:244px}.min-w-xl-244--force{min-width:244px!important}.w-xl-248{width:248px}.w-xl-248--force{width:248px!important}.max-w-xl-248{max-width:248px}.max-w-xl-248--force{max-width:248px!important}.min-w-xl-248{min-width:248px}.min-w-xl-248--force{min-width:248px!important}.w-xl-252{width:252px}.w-xl-252--force{width:252px!important}.max-w-xl-252{max-width:252px}.max-w-xl-252--force{max-width:252px!important}.min-w-xl-252{min-width:252px}.min-w-xl-252--force{min-width:252px!important}.w-xl-256{width:256px}.w-xl-256--force{width:256px!important}.max-w-xl-256{max-width:256px}.max-w-xl-256--force{max-width:256px!important}.min-w-xl-256{min-width:256px}.min-w-xl-256--force{min-width:256px!important}.w-xl-0-p{width:0%}.w-xl-0-p--force{width:0%!important}.max-w-xl-0-p{max-width:0%}.max-w-xl-0-p--force{max-width:0%!important}.min-w-xl-0-p{min-width:0}.min-w-xl-0-p--force{min-width:0!important}.w-xl-5-p{width:5%}.w-xl-5-p--force{width:5%!important}.max-w-xl-5-p{max-width:5%}.max-w-xl-5-p--force{max-width:5%!important}.min-w-xl-5-p{min-width:5%}.min-w-xl-5-p--force{min-width:5%!important}.w-xl-10-p{width:10%}.w-xl-10-p--force{width:10%!important}.max-w-xl-10-p{max-width:10%}.max-w-xl-10-p--force{max-width:10%!important}.min-w-xl-10-p{min-width:10%}.min-w-xl-10-p--force{min-width:10%!important}.w-xl-15-p{width:15%}.w-xl-15-p--force{width:15%!important}.max-w-xl-15-p{max-width:15%}.max-w-xl-15-p--force{max-width:15%!important}.min-w-xl-15-p{min-width:15%}.min-w-xl-15-p--force{min-width:15%!important}.w-xl-20-p{width:20%}.w-xl-20-p--force{width:20%!important}.max-w-xl-20-p{max-width:20%}.max-w-xl-20-p--force{max-width:20%!important}.min-w-xl-20-p{min-width:20%}.min-w-xl-20-p--force{min-width:20%!important}.w-xl-25-p{width:25%}.w-xl-25-p--force{width:25%!important}.max-w-xl-25-p{max-width:25%}.max-w-xl-25-p--force{max-width:25%!important}.min-w-xl-25-p{min-width:25%}.min-w-xl-25-p--force{min-width:25%!important}.w-xl-30-p{width:30%}.w-xl-30-p--force{width:30%!important}.max-w-xl-30-p{max-width:30%}.max-w-xl-30-p--force{max-width:30%!important}.min-w-xl-30-p{min-width:30%}.min-w-xl-30-p--force{min-width:30%!important}.w-xl-35-p{width:35%}.w-xl-35-p--force{width:35%!important}.max-w-xl-35-p{max-width:35%}.max-w-xl-35-p--force{max-width:35%!important}.min-w-xl-35-p{min-width:35%}.min-w-xl-35-p--force{min-width:35%!important}.w-xl-40-p{width:40%}.w-xl-40-p--force{width:40%!important}.max-w-xl-40-p{max-width:40%}.max-w-xl-40-p--force{max-width:40%!important}.min-w-xl-40-p{min-width:40%}.min-w-xl-40-p--force{min-width:40%!important}.w-xl-45-p{width:45%}.w-xl-45-p--force{width:45%!important}.max-w-xl-45-p{max-width:45%}.max-w-xl-45-p--force{max-width:45%!important}.min-w-xl-45-p{min-width:45%}.min-w-xl-45-p--force{min-width:45%!important}.w-xl-50-p{width:50%}.w-xl-50-p--force{width:50%!important}.max-w-xl-50-p{max-width:50%}.max-w-xl-50-p--force{max-width:50%!important}.min-w-xl-50-p{min-width:50%}.min-w-xl-50-p--force{min-width:50%!important}.w-xl-55-p{width:55%}.w-xl-55-p--force{width:55%!important}.max-w-xl-55-p{max-width:55%}.max-w-xl-55-p--force{max-width:55%!important}.min-w-xl-55-p{min-width:55%}.min-w-xl-55-p--force{min-width:55%!important}.w-xl-60-p{width:60%}.w-xl-60-p--force{width:60%!important}.max-w-xl-60-p{max-width:60%}.max-w-xl-60-p--force{max-width:60%!important}.min-w-xl-60-p{min-width:60%}.min-w-xl-60-p--force{min-width:60%!important}.w-xl-65-p{width:65%}.w-xl-65-p--force{width:65%!important}.max-w-xl-65-p{max-width:65%}.max-w-xl-65-p--force{max-width:65%!important}.min-w-xl-65-p{min-width:65%}.min-w-xl-65-p--force{min-width:65%!important}.w-xl-70-p{width:70%}.w-xl-70-p--force{width:70%!important}.max-w-xl-70-p{max-width:70%}.max-w-xl-70-p--force{max-width:70%!important}.min-w-xl-70-p{min-width:70%}.min-w-xl-70-p--force{min-width:70%!important}.w-xl-75-p{width:75%}.w-xl-75-p--force{width:75%!important}.max-w-xl-75-p{max-width:75%}.max-w-xl-75-p--force{max-width:75%!important}.min-w-xl-75-p{min-width:75%}.min-w-xl-75-p--force{min-width:75%!important}.w-xl-80-p{width:80%}.w-xl-80-p--force{width:80%!important}.max-w-xl-80-p{max-width:80%}.max-w-xl-80-p--force{max-width:80%!important}.min-w-xl-80-p{min-width:80%}.min-w-xl-80-p--force{min-width:80%!important}.w-xl-85-p{width:85%}.w-xl-85-p--force{width:85%!important}.max-w-xl-85-p{max-width:85%}.max-w-xl-85-p--force{max-width:85%!important}.min-w-xl-85-p{min-width:85%}.min-w-xl-85-p--force{min-width:85%!important}.w-xl-90-p{width:90%}.w-xl-90-p--force{width:90%!important}.max-w-xl-90-p{max-width:90%}.max-w-xl-90-p--force{max-width:90%!important}.min-w-xl-90-p{min-width:90%}.min-w-xl-90-p--force{min-width:90%!important}.w-xl-95-p{width:95%}.w-xl-95-p--force{width:95%!important}.max-w-xl-95-p{max-width:95%}.max-w-xl-95-p--force{max-width:95%!important}.min-w-xl-95-p{min-width:95%}.min-w-xl-95-p--force{min-width:95%!important}.w-xl-100-p{width:100%}.w-xl-100-p--force{width:100%!important}.max-w-xl-100-p{max-width:100%}.max-w-xl-100-p--force{max-width:100%!important}.min-w-xl-100-p{min-width:100%}.min-w-xl-100-p--force{min-width:100%!important}.w-xl-300{width:300px}.w-xl-300--force{width:300px!important}.max-w-xl-300{max-width:300px}.max-w-xl-300--force{max-width:300px!important}.min-w-xl-300{min-width:300px}.min-w-xl-300--force{min-width:300px!important}.w-xl-400{width:400px}.w-xl-400--force{width:400px!important}.max-w-xl-400{max-width:400px}.max-w-xl-400--force{max-width:400px!important}.min-w-xl-400{min-width:400px}.min-w-xl-400--force{min-width:400px!important}.w-xl-500{width:500px}.w-xl-500--force{width:500px!important}.max-w-xl-500{max-width:500px}.max-w-xl-500--force{max-width:500px!important}.min-w-xl-500{min-width:500px}.min-w-xl-500--force{min-width:500px!important}.w-xl-600{width:600px}.w-xl-600--force{width:600px!important}.max-w-xl-600{max-width:600px}.max-w-xl-600--force{max-width:600px!important}.min-w-xl-600{min-width:600px}.min-w-xl-600--force{min-width:600px!important}.w-xl-700{width:700px}.w-xl-700--force{width:700px!important}.max-w-xl-700{max-width:700px}.max-w-xl-700--force{max-width:700px!important}.min-w-xl-700{min-width:700px}.min-w-xl-700--force{min-width:700px!important}.w-xl-800{width:800px}.w-xl-800--force{width:800px!important}.max-w-xl-800{max-width:800px}.max-w-xl-800--force{max-width:800px!important}.min-w-xl-800{min-width:800px}.min-w-xl-800--force{min-width:800px!important}.w-xl-900{width:900px}.w-xl-900--force{width:900px!important}.max-w-xl-900{max-width:900px}.max-w-xl-900--force{max-width:900px!important}.min-w-xl-900{min-width:900px}.min-w-xl-900--force{min-width:900px!important}.w-xl-1000{width:1000px}.w-xl-1000--force{width:1000px!important}.max-w-xl-1000{max-width:1000px}.max-w-xl-1000--force{max-width:1000px!important}.min-w-xl-1000{min-width:1000px}.min-w-xl-1000--force{min-width:1000px!important}.w-xl-1100{width:1100px}.w-xl-1100--force{width:1100px!important}.max-w-xl-1100{max-width:1100px}.max-w-xl-1100--force{max-width:1100px!important}.min-w-xl-1100{min-width:1100px}.min-w-xl-1100--force{min-width:1100px!important}.w-xl-1200{width:1200px}.w-xl-1200--force{width:1200px!important}.max-w-xl-1200{max-width:1200px}.max-w-xl-1200--force{max-width:1200px!important}.min-w-xl-1200{min-width:1200px}.min-w-xl-1200--force{min-width:1200px!important}.w-xl-1300{width:1300px}.w-xl-1300--force{width:1300px!important}.max-w-xl-1300{max-width:1300px}.max-w-xl-1300--force{max-width:1300px!important}.min-w-xl-1300{min-width:1300px}.min-w-xl-1300--force{min-width:1300px!important}.w-xl-1400{width:1400px}.w-xl-1400--force{width:1400px!important}.max-w-xl-1400{max-width:1400px}.max-w-xl-1400--force{max-width:1400px!important}.min-w-xl-1400{min-width:1400px}.min-w-xl-1400--force{min-width:1400px!important}.w-xl-1500{width:1500px}.w-xl-1500--force{width:1500px!important}.max-w-xl-1500{max-width:1500px}.max-w-xl-1500--force{max-width:1500px!important}.min-w-xl-1500{min-width:1500px}.min-w-xl-1500--force{min-width:1500px!important}.w-xl-1600{width:1600px}.w-xl-1600--force{width:1600px!important}.max-w-xl-1600{max-width:1600px}.max-w-xl-1600--force{max-width:1600px!important}.min-w-xl-1600{min-width:1600px}.min-w-xl-1600--force{min-width:1600px!important}.w-xl-1700{width:1700px}.w-xl-1700--force{width:1700px!important}.max-w-xl-1700{max-width:1700px}.max-w-xl-1700--force{max-width:1700px!important}.min-w-xl-1700{min-width:1700px}.min-w-xl-1700--force{min-width:1700px!important}.w-xl-1800{width:1800px}.w-xl-1800--force{width:1800px!important}.max-w-xl-1800{max-width:1800px}.max-w-xl-1800--force{max-width:1800px!important}.min-w-xl-1800{min-width:1800px}.min-w-xl-1800--force{min-width:1800px!important}.w-xl-1900{width:1900px}.w-xl-1900--force{width:1900px!important}.max-w-xl-1900{max-width:1900px}.max-w-xl-1900--force{max-width:1900px!important}.min-w-xl-1900{min-width:1900px}.min-w-xl-1900--force{min-width:1900px!important}.w-xl-2000{width:2000px}.w-xl-2000--force{width:2000px!important}.max-w-xl-2000{max-width:2000px}.max-w-xl-2000--force{max-width:2000px!important}.min-w-xl-2000{min-width:2000px}.min-w-xl-2000--force{min-width:2000px!important}.w-xl-auto{width:auto}.w-xl-auto--force{width:auto!important}.m-xl--64{margin:-64px}.m-xl--64--force{margin:-64px!important}.mx-xl--64{margin-right:-64px;margin-left:-64px}.mx-xl--64--force{margin-right:-64px!important;margin-left:-64px!important}.my-xl--64{margin-top:-64px;margin-bottom:-64px}.my-xl--64--force{margin-top:-64px!important;margin-bottom:-64px!important}.mt-xl--64{margin-top:-64px}.mt-xl--64--force{margin-top:-64px!important}.mr-xl--64{margin-right:-64px}.mr-xl--64--force{margin-right:-64px!important}.mb-xl--64{margin-bottom:-64px}.mb-xl--64--force{margin-bottom:-64px!important}.ml-xl--64{margin-left:-64px}.ml-xl--64--force{margin-left:-64px!important}.m-xl--60{margin:-60px}.m-xl--60--force{margin:-60px!important}.mx-xl--60{margin-right:-60px;margin-left:-60px}.mx-xl--60--force{margin-right:-60px!important;margin-left:-60px!important}.my-xl--60{margin-top:-60px;margin-bottom:-60px}.my-xl--60--force{margin-top:-60px!important;margin-bottom:-60px!important}.mt-xl--60{margin-top:-60px}.mt-xl--60--force{margin-top:-60px!important}.mr-xl--60{margin-right:-60px}.mr-xl--60--force{margin-right:-60px!important}.mb-xl--60{margin-bottom:-60px}.mb-xl--60--force{margin-bottom:-60px!important}.ml-xl--60{margin-left:-60px}.ml-xl--60--force{margin-left:-60px!important}.m-xl--56{margin:-56px}.m-xl--56--force{margin:-56px!important}.mx-xl--56{margin-right:-56px;margin-left:-56px}.mx-xl--56--force{margin-right:-56px!important;margin-left:-56px!important}.my-xl--56{margin-top:-56px;margin-bottom:-56px}.my-xl--56--force{margin-top:-56px!important;margin-bottom:-56px!important}.mt-xl--56{margin-top:-56px}.mt-xl--56--force{margin-top:-56px!important}.mr-xl--56{margin-right:-56px}.mr-xl--56--force{margin-right:-56px!important}.mb-xl--56{margin-bottom:-56px}.mb-xl--56--force{margin-bottom:-56px!important}.ml-xl--56{margin-left:-56px}.ml-xl--56--force{margin-left:-56px!important}.m-xl--52{margin:-52px}.m-xl--52--force{margin:-52px!important}.mx-xl--52{margin-right:-52px;margin-left:-52px}.mx-xl--52--force{margin-right:-52px!important;margin-left:-52px!important}.my-xl--52{margin-top:-52px;margin-bottom:-52px}.my-xl--52--force{margin-top:-52px!important;margin-bottom:-52px!important}.mt-xl--52{margin-top:-52px}.mt-xl--52--force{margin-top:-52px!important}.mr-xl--52{margin-right:-52px}.mr-xl--52--force{margin-right:-52px!important}.mb-xl--52{margin-bottom:-52px}.mb-xl--52--force{margin-bottom:-52px!important}.ml-xl--52{margin-left:-52px}.ml-xl--52--force{margin-left:-52px!important}.m-xl--48{margin:-48px}.m-xl--48--force{margin:-48px!important}.mx-xl--48{margin-right:-48px;margin-left:-48px}.mx-xl--48--force{margin-right:-48px!important;margin-left:-48px!important}.my-xl--48{margin-top:-48px;margin-bottom:-48px}.my-xl--48--force{margin-top:-48px!important;margin-bottom:-48px!important}.mt-xl--48{margin-top:-48px}.mt-xl--48--force{margin-top:-48px!important}.mr-xl--48{margin-right:-48px}.mr-xl--48--force{margin-right:-48px!important}.mb-xl--48{margin-bottom:-48px}.mb-xl--48--force{margin-bottom:-48px!important}.ml-xl--48{margin-left:-48px}.ml-xl--48--force{margin-left:-48px!important}.m-xl--44{margin:-44px}.m-xl--44--force{margin:-44px!important}.mx-xl--44{margin-right:-44px;margin-left:-44px}.mx-xl--44--force{margin-right:-44px!important;margin-left:-44px!important}.my-xl--44{margin-top:-44px;margin-bottom:-44px}.my-xl--44--force{margin-top:-44px!important;margin-bottom:-44px!important}.mt-xl--44{margin-top:-44px}.mt-xl--44--force{margin-top:-44px!important}.mr-xl--44{margin-right:-44px}.mr-xl--44--force{margin-right:-44px!important}.mb-xl--44{margin-bottom:-44px}.mb-xl--44--force{margin-bottom:-44px!important}.ml-xl--44{margin-left:-44px}.ml-xl--44--force{margin-left:-44px!important}.m-xl--40{margin:-40px}.m-xl--40--force{margin:-40px!important}.mx-xl--40{margin-right:-40px;margin-left:-40px}.mx-xl--40--force{margin-right:-40px!important;margin-left:-40px!important}.my-xl--40{margin-top:-40px;margin-bottom:-40px}.my-xl--40--force{margin-top:-40px!important;margin-bottom:-40px!important}.mt-xl--40{margin-top:-40px}.mt-xl--40--force{margin-top:-40px!important}.mr-xl--40{margin-right:-40px}.mr-xl--40--force{margin-right:-40px!important}.mb-xl--40{margin-bottom:-40px}.mb-xl--40--force{margin-bottom:-40px!important}.ml-xl--40{margin-left:-40px}.ml-xl--40--force{margin-left:-40px!important}.m-xl--36{margin:-36px}.m-xl--36--force{margin:-36px!important}.mx-xl--36{margin-right:-36px;margin-left:-36px}.mx-xl--36--force{margin-right:-36px!important;margin-left:-36px!important}.my-xl--36{margin-top:-36px;margin-bottom:-36px}.my-xl--36--force{margin-top:-36px!important;margin-bottom:-36px!important}.mt-xl--36{margin-top:-36px}.mt-xl--36--force{margin-top:-36px!important}.mr-xl--36{margin-right:-36px}.mr-xl--36--force{margin-right:-36px!important}.mb-xl--36{margin-bottom:-36px}.mb-xl--36--force{margin-bottom:-36px!important}.ml-xl--36{margin-left:-36px}.ml-xl--36--force{margin-left:-36px!important}.m-xl--32{margin:-32px}.m-xl--32--force{margin:-32px!important}.mx-xl--32{margin-right:-32px;margin-left:-32px}.mx-xl--32--force{margin-right:-32px!important;margin-left:-32px!important}.my-xl--32{margin-top:-32px;margin-bottom:-32px}.my-xl--32--force{margin-top:-32px!important;margin-bottom:-32px!important}.mt-xl--32{margin-top:-32px}.mt-xl--32--force{margin-top:-32px!important}.mr-xl--32{margin-right:-32px}.mr-xl--32--force{margin-right:-32px!important}.mb-xl--32{margin-bottom:-32px}.mb-xl--32--force{margin-bottom:-32px!important}.ml-xl--32{margin-left:-32px}.ml-xl--32--force{margin-left:-32px!important}.m-xl--28{margin:-28px}.m-xl--28--force{margin:-28px!important}.mx-xl--28{margin-right:-28px;margin-left:-28px}.mx-xl--28--force{margin-right:-28px!important;margin-left:-28px!important}.my-xl--28{margin-top:-28px;margin-bottom:-28px}.my-xl--28--force{margin-top:-28px!important;margin-bottom:-28px!important}.mt-xl--28{margin-top:-28px}.mt-xl--28--force{margin-top:-28px!important}.mr-xl--28{margin-right:-28px}.mr-xl--28--force{margin-right:-28px!important}.mb-xl--28{margin-bottom:-28px}.mb-xl--28--force{margin-bottom:-28px!important}.ml-xl--28{margin-left:-28px}.ml-xl--28--force{margin-left:-28px!important}.m-xl--24{margin:-24px}.m-xl--24--force{margin:-24px!important}.mx-xl--24{margin-right:-24px;margin-left:-24px}.mx-xl--24--force{margin-right:-24px!important;margin-left:-24px!important}.my-xl--24{margin-top:-24px;margin-bottom:-24px}.my-xl--24--force{margin-top:-24px!important;margin-bottom:-24px!important}.mt-xl--24{margin-top:-24px}.mt-xl--24--force{margin-top:-24px!important}.mr-xl--24{margin-right:-24px}.mr-xl--24--force{margin-right:-24px!important}.mb-xl--24{margin-bottom:-24px}.mb-xl--24--force{margin-bottom:-24px!important}.ml-xl--24{margin-left:-24px}.ml-xl--24--force{margin-left:-24px!important}.m-xl--20{margin:-20px}.m-xl--20--force{margin:-20px!important}.mx-xl--20{margin-right:-20px;margin-left:-20px}.mx-xl--20--force{margin-right:-20px!important;margin-left:-20px!important}.my-xl--20{margin-top:-20px;margin-bottom:-20px}.my-xl--20--force{margin-top:-20px!important;margin-bottom:-20px!important}.mt-xl--20{margin-top:-20px}.mt-xl--20--force{margin-top:-20px!important}.mr-xl--20{margin-right:-20px}.mr-xl--20--force{margin-right:-20px!important}.mb-xl--20{margin-bottom:-20px}.mb-xl--20--force{margin-bottom:-20px!important}.ml-xl--20{margin-left:-20px}.ml-xl--20--force{margin-left:-20px!important}.m-xl--16{margin:-16px}.m-xl--16--force{margin:-16px!important}.mx-xl--16{margin-right:-16px;margin-left:-16px}.mx-xl--16--force{margin-right:-16px!important;margin-left:-16px!important}.my-xl--16{margin-top:-16px;margin-bottom:-16px}.my-xl--16--force{margin-top:-16px!important;margin-bottom:-16px!important}.mt-xl--16{margin-top:-16px}.mt-xl--16--force{margin-top:-16px!important}.mr-xl--16{margin-right:-16px}.mr-xl--16--force{margin-right:-16px!important}.mb-xl--16{margin-bottom:-16px}.mb-xl--16--force{margin-bottom:-16px!important}.ml-xl--16{margin-left:-16px}.ml-xl--16--force{margin-left:-16px!important}.m-xl--12{margin:-12px}.m-xl--12--force{margin:-12px!important}.mx-xl--12{margin-right:-12px;margin-left:-12px}.mx-xl--12--force{margin-right:-12px!important;margin-left:-12px!important}.my-xl--12{margin-top:-12px;margin-bottom:-12px}.my-xl--12--force{margin-top:-12px!important;margin-bottom:-12px!important}.mt-xl--12{margin-top:-12px}.mt-xl--12--force{margin-top:-12px!important}.mr-xl--12{margin-right:-12px}.mr-xl--12--force{margin-right:-12px!important}.mb-xl--12{margin-bottom:-12px}.mb-xl--12--force{margin-bottom:-12px!important}.ml-xl--12{margin-left:-12px}.ml-xl--12--force{margin-left:-12px!important}.m-xl--8{margin:-8px}.m-xl--8--force{margin:-8px!important}.mx-xl--8{margin-right:-8px;margin-left:-8px}.mx-xl--8--force{margin-right:-8px!important;margin-left:-8px!important}.my-xl--8{margin-top:-8px;margin-bottom:-8px}.my-xl--8--force{margin-top:-8px!important;margin-bottom:-8px!important}.mt-xl--8{margin-top:-8px}.mt-xl--8--force{margin-top:-8px!important}.mr-xl--8{margin-right:-8px}.mr-xl--8--force{margin-right:-8px!important}.mb-xl--8{margin-bottom:-8px}.mb-xl--8--force{margin-bottom:-8px!important}.ml-xl--8{margin-left:-8px}.ml-xl--8--force{margin-left:-8px!important}.m-xl--4{margin:-4px}.m-xl--4--force{margin:-4px!important}.mx-xl--4{margin-right:-4px;margin-left:-4px}.mx-xl--4--force{margin-right:-4px!important;margin-left:-4px!important}.my-xl--4{margin-top:-4px;margin-bottom:-4px}.my-xl--4--force{margin-top:-4px!important;margin-bottom:-4px!important}.mt-xl--4{margin-top:-4px}.mt-xl--4--force{margin-top:-4px!important}.mr-xl--4{margin-right:-4px}.mr-xl--4--force{margin-right:-4px!important}.mb-xl--4{margin-bottom:-4px}.mb-xl--4--force{margin-bottom:-4px!important}.ml-xl--4{margin-left:-4px}.ml-xl--4--force{margin-left:-4px!important}.m-xl-0{margin:0}.m-xl-0--force{margin:0!important}.mx-xl-0{margin-right:0;margin-left:0}.mx-xl-0--force{margin-right:0!important;margin-left:0!important}.my-xl-0{margin-top:0;margin-bottom:0}.my-xl-0--force{margin-top:0!important;margin-bottom:0!important}.mt-xl-0{margin-top:0}.mt-xl-0--force{margin-top:0!important}.mr-xl-0{margin-right:0}.mr-xl-0--force{margin-right:0!important}.masonry-gap-xl-0>*,.mb-xl-0{margin-bottom:0}.mb-xl-0--force{margin-bottom:0!important}.ml-xl-0{margin-left:0}.ml-xl-0--force{margin-left:0!important}.m-xl-4{margin:4px}.m-xl-4--force{margin:4px!important}.mx-xl-4{margin-right:4px;margin-left:4px}.mx-xl-4--force{margin-right:4px!important;margin-left:4px!important}.my-xl-4{margin-top:4px;margin-bottom:4px}.my-xl-4--force{margin-top:4px!important;margin-bottom:4px!important}.mt-xl-4{margin-top:4px}.mt-xl-4--force{margin-top:4px!important}.mr-xl-4{margin-right:4px}.mr-xl-4--force{margin-right:4px!important}.masonry-gap-xl-4>*,.mb-xl-4{margin-bottom:4px}.mb-xl-4--force{margin-bottom:4px!important}.ml-xl-4{margin-left:4px}.ml-xl-4--force{margin-left:4px!important}.m-xl-8{margin:8px}.m-xl-8--force{margin:8px!important}.mx-xl-8{margin-right:8px;margin-left:8px}.mx-xl-8--force{margin-right:8px!important;margin-left:8px!important}.my-xl-8{margin-top:8px;margin-bottom:8px}.my-xl-8--force{margin-top:8px!important;margin-bottom:8px!important}.mt-xl-8{margin-top:8px}.mt-xl-8--force{margin-top:8px!important}.mr-xl-8{margin-right:8px}.mr-xl-8--force{margin-right:8px!important}.masonry-gap-xl-8>*,.mb-xl-8{margin-bottom:8px}.mb-xl-8--force{margin-bottom:8px!important}.ml-xl-8{margin-left:8px}.ml-xl-8--force{margin-left:8px!important}.m-xl-12{margin:12px}.m-xl-12--force{margin:12px!important}.mx-xl-12{margin-right:12px;margin-left:12px}.mx-xl-12--force{margin-right:12px!important;margin-left:12px!important}.my-xl-12{margin-top:12px;margin-bottom:12px}.my-xl-12--force{margin-top:12px!important;margin-bottom:12px!important}.mt-xl-12{margin-top:12px}.mt-xl-12--force{margin-top:12px!important}.mr-xl-12{margin-right:12px}.mr-xl-12--force{margin-right:12px!important}.masonry-gap-xl-12>*,.mb-xl-12{margin-bottom:12px}.mb-xl-12--force{margin-bottom:12px!important}.ml-xl-12{margin-left:12px}.ml-xl-12--force{margin-left:12px!important}.m-xl-16{margin:16px}.m-xl-16--force{margin:16px!important}.mx-xl-16{margin-right:16px;margin-left:16px}.mx-xl-16--force{margin-right:16px!important;margin-left:16px!important}.my-xl-16{margin-top:16px;margin-bottom:16px}.my-xl-16--force{margin-top:16px!important;margin-bottom:16px!important}.mt-xl-16{margin-top:16px}.mt-xl-16--force{margin-top:16px!important}.mr-xl-16{margin-right:16px}.mr-xl-16--force{margin-right:16px!important}.masonry-gap-xl-16>*,.mb-xl-16{margin-bottom:16px}.mb-xl-16--force{margin-bottom:16px!important}.ml-xl-16{margin-left:16px}.ml-xl-16--force{margin-left:16px!important}.m-xl-20{margin:20px}.m-xl-20--force{margin:20px!important}.mx-xl-20{margin-right:20px;margin-left:20px}.mx-xl-20--force{margin-right:20px!important;margin-left:20px!important}.my-xl-20{margin-top:20px;margin-bottom:20px}.my-xl-20--force{margin-top:20px!important;margin-bottom:20px!important}.mt-xl-20{margin-top:20px}.mt-xl-20--force{margin-top:20px!important}.mr-xl-20{margin-right:20px}.mr-xl-20--force{margin-right:20px!important}.masonry-gap-xl-20>*,.mb-xl-20{margin-bottom:20px}.mb-xl-20--force{margin-bottom:20px!important}.ml-xl-20{margin-left:20px}.ml-xl-20--force{margin-left:20px!important}.m-xl-24{margin:24px}.m-xl-24--force{margin:24px!important}.mx-xl-24{margin-right:24px;margin-left:24px}.mx-xl-24--force{margin-right:24px!important;margin-left:24px!important}.my-xl-24{margin-top:24px;margin-bottom:24px}.my-xl-24--force{margin-top:24px!important;margin-bottom:24px!important}.mt-xl-24{margin-top:24px}.mt-xl-24--force{margin-top:24px!important}.mr-xl-24{margin-right:24px}.mr-xl-24--force{margin-right:24px!important}.masonry-gap-xl-24>*,.mb-xl-24{margin-bottom:24px}.mb-xl-24--force{margin-bottom:24px!important}.ml-xl-24{margin-left:24px}.ml-xl-24--force{margin-left:24px!important}.m-xl-28{margin:28px}.m-xl-28--force{margin:28px!important}.mx-xl-28{margin-right:28px;margin-left:28px}.mx-xl-28--force{margin-right:28px!important;margin-left:28px!important}.my-xl-28{margin-top:28px;margin-bottom:28px}.my-xl-28--force{margin-top:28px!important;margin-bottom:28px!important}.mt-xl-28{margin-top:28px}.mt-xl-28--force{margin-top:28px!important}.mr-xl-28{margin-right:28px}.mr-xl-28--force{margin-right:28px!important}.masonry-gap-xl-28>*,.mb-xl-28{margin-bottom:28px}.mb-xl-28--force{margin-bottom:28px!important}.ml-xl-28{margin-left:28px}.ml-xl-28--force{margin-left:28px!important}.m-xl-32{margin:32px}.m-xl-32--force{margin:32px!important}.mx-xl-32{margin-right:32px;margin-left:32px}.mx-xl-32--force{margin-right:32px!important;margin-left:32px!important}.my-xl-32{margin-top:32px;margin-bottom:32px}.my-xl-32--force{margin-top:32px!important;margin-bottom:32px!important}.mt-xl-32{margin-top:32px}.mt-xl-32--force{margin-top:32px!important}.mr-xl-32{margin-right:32px}.mr-xl-32--force{margin-right:32px!important}.masonry-gap-xl-32>*,.mb-xl-32{margin-bottom:32px}.mb-xl-32--force{margin-bottom:32px!important}.ml-xl-32{margin-left:32px}.ml-xl-32--force{margin-left:32px!important}.m-xl-36{margin:36px}.m-xl-36--force{margin:36px!important}.mx-xl-36{margin-right:36px;margin-left:36px}.mx-xl-36--force{margin-right:36px!important;margin-left:36px!important}.my-xl-36{margin-top:36px;margin-bottom:36px}.my-xl-36--force{margin-top:36px!important;margin-bottom:36px!important}.mt-xl-36{margin-top:36px}.mt-xl-36--force{margin-top:36px!important}.mr-xl-36{margin-right:36px}.mr-xl-36--force{margin-right:36px!important}.masonry-gap-xl-36>*,.mb-xl-36{margin-bottom:36px}.mb-xl-36--force{margin-bottom:36px!important}.ml-xl-36{margin-left:36px}.ml-xl-36--force{margin-left:36px!important}.m-xl-40{margin:40px}.m-xl-40--force{margin:40px!important}.mx-xl-40{margin-right:40px;margin-left:40px}.mx-xl-40--force{margin-right:40px!important;margin-left:40px!important}.my-xl-40{margin-top:40px;margin-bottom:40px}.my-xl-40--force{margin-top:40px!important;margin-bottom:40px!important}.mt-xl-40{margin-top:40px}.mt-xl-40--force{margin-top:40px!important}.mr-xl-40{margin-right:40px}.mr-xl-40--force{margin-right:40px!important}.masonry-gap-xl-40>*,.mb-xl-40{margin-bottom:40px}.mb-xl-40--force{margin-bottom:40px!important}.ml-xl-40{margin-left:40px}.ml-xl-40--force{margin-left:40px!important}.m-xl-44{margin:44px}.m-xl-44--force{margin:44px!important}.mx-xl-44{margin-right:44px;margin-left:44px}.mx-xl-44--force{margin-right:44px!important;margin-left:44px!important}.my-xl-44{margin-top:44px;margin-bottom:44px}.my-xl-44--force{margin-top:44px!important;margin-bottom:44px!important}.mt-xl-44{margin-top:44px}.mt-xl-44--force{margin-top:44px!important}.mr-xl-44{margin-right:44px}.mr-xl-44--force{margin-right:44px!important}.masonry-gap-xl-44>*,.mb-xl-44{margin-bottom:44px}.mb-xl-44--force{margin-bottom:44px!important}.ml-xl-44{margin-left:44px}.ml-xl-44--force{margin-left:44px!important}.m-xl-48{margin:48px}.m-xl-48--force{margin:48px!important}.mx-xl-48{margin-right:48px;margin-left:48px}.mx-xl-48--force{margin-right:48px!important;margin-left:48px!important}.my-xl-48{margin-top:48px;margin-bottom:48px}.my-xl-48--force{margin-top:48px!important;margin-bottom:48px!important}.mt-xl-48{margin-top:48px}.mt-xl-48--force{margin-top:48px!important}.mr-xl-48{margin-right:48px}.mr-xl-48--force{margin-right:48px!important}.masonry-gap-xl-48>*,.mb-xl-48{margin-bottom:48px}.mb-xl-48--force{margin-bottom:48px!important}.ml-xl-48{margin-left:48px}.ml-xl-48--force{margin-left:48px!important}.m-xl-52{margin:52px}.m-xl-52--force{margin:52px!important}.mx-xl-52{margin-right:52px;margin-left:52px}.mx-xl-52--force{margin-right:52px!important;margin-left:52px!important}.my-xl-52{margin-top:52px;margin-bottom:52px}.my-xl-52--force{margin-top:52px!important;margin-bottom:52px!important}.mt-xl-52{margin-top:52px}.mt-xl-52--force{margin-top:52px!important}.mr-xl-52{margin-right:52px}.mr-xl-52--force{margin-right:52px!important}.mb-xl-52{margin-bottom:52px}.mb-xl-52--force{margin-bottom:52px!important}.ml-xl-52{margin-left:52px}.ml-xl-52--force{margin-left:52px!important}.m-xl-56{margin:56px}.m-xl-56--force{margin:56px!important}.mx-xl-56{margin-right:56px;margin-left:56px}.mx-xl-56--force{margin-right:56px!important;margin-left:56px!important}.my-xl-56{margin-top:56px;margin-bottom:56px}.my-xl-56--force{margin-top:56px!important;margin-bottom:56px!important}.mt-xl-56{margin-top:56px}.mt-xl-56--force{margin-top:56px!important}.mr-xl-56{margin-right:56px}.mr-xl-56--force{margin-right:56px!important}.mb-xl-56{margin-bottom:56px}.mb-xl-56--force{margin-bottom:56px!important}.ml-xl-56{margin-left:56px}.ml-xl-56--force{margin-left:56px!important}.m-xl-60{margin:60px}.m-xl-60--force{margin:60px!important}.mx-xl-60{margin-right:60px;margin-left:60px}.mx-xl-60--force{margin-right:60px!important;margin-left:60px!important}.my-xl-60{margin-top:60px;margin-bottom:60px}.my-xl-60--force{margin-top:60px!important;margin-bottom:60px!important}.mt-xl-60{margin-top:60px}.mt-xl-60--force{margin-top:60px!important}.mr-xl-60{margin-right:60px}.mr-xl-60--force{margin-right:60px!important}.mb-xl-60{margin-bottom:60px}.mb-xl-60--force{margin-bottom:60px!important}.ml-xl-60{margin-left:60px}.ml-xl-60--force{margin-left:60px!important}.m-xl-64{margin:64px}.m-xl-64--force{margin:64px!important}.mx-xl-64{margin-right:64px;margin-left:64px}.mx-xl-64--force{margin-right:64px!important;margin-left:64px!important}.my-xl-64{margin-top:64px;margin-bottom:64px}.my-xl-64--force{margin-top:64px!important;margin-bottom:64px!important}.mt-xl-64{margin-top:64px}.mt-xl-64--force{margin-top:64px!important}.mr-xl-64{margin-right:64px}.mr-xl-64--force{margin-right:64px!important}.mb-xl-64{margin-bottom:64px}.mb-xl-64--force{margin-bottom:64px!important}.ml-xl-64{margin-left:64px}.ml-xl-64--force{margin-left:64px!important}.m-xl-auto{margin:auto}.m-xl-auto--force{margin:auto!important}.mt-xl-auto{margin-top:auto}.mt-xl-auto--force{margin-top:auto!important}.mr-xl-auto{margin-right:auto}.mr-xl-auto--force{margin-right:auto!important}.mb-xl-auto{margin-bottom:auto}.mb-xl-auto--force{margin-bottom:auto!important}.ml-xl-auto{margin-left:auto}.ml-xl-auto--force{margin-left:auto!important}.mx-xl-auto{margin-right:auto;margin-left:auto}.mx-xl-auto--force{margin-right:auto!important;margin-left:auto!important}.my-xl-auto{margin-top:auto;margin-bottom:auto}.my-xl-auto--force{margin-top:auto!important;margin-bottom:auto!important}.p-xl-0{padding:0}.p-xl-0--force{padding:0!important}.px-xl-0{padding-right:0;padding-left:0}.px-xl-0--force{padding-right:0!important;padding-left:0!important}.py-xl-0{padding-top:0;padding-bottom:0}.py-xl-0--force{padding-top:0!important;padding-bottom:0!important}.pt-xl-0{padding-top:0}.pt-xl-0--force{padding-top:0!important}.pr-xl-0{padding-right:0}.pr-xl-0--force{padding-right:0!important}.pb-xl-0{padding-bottom:0}.pb-xl-0--force{padding-bottom:0!important}.pl-xl-0{padding-left:0}.pl-xl-0--force{padding-left:0!important}.p-xl-4{padding:4px}.p-xl-4--force{padding:4px!important}.px-xl-4{padding-right:4px;padding-left:4px}.px-xl-4--force{padding-right:4px!important;padding-left:4px!important}.py-xl-4{padding-top:4px;padding-bottom:4px}.py-xl-4--force{padding-top:4px!important;padding-bottom:4px!important}.pt-xl-4{padding-top:4px}.pt-xl-4--force{padding-top:4px!important}.pr-xl-4{padding-right:4px}.pr-xl-4--force{padding-right:4px!important}.pb-xl-4{padding-bottom:4px}.pb-xl-4--force{padding-bottom:4px!important}.pl-xl-4{padding-left:4px}.pl-xl-4--force{padding-left:4px!important}.p-xl-8{padding:8px}.p-xl-8--force{padding:8px!important}.px-xl-8{padding-right:8px;padding-left:8px}.px-xl-8--force{padding-right:8px!important;padding-left:8px!important}.py-xl-8{padding-top:8px;padding-bottom:8px}.py-xl-8--force{padding-top:8px!important;padding-bottom:8px!important}.pt-xl-8{padding-top:8px}.pt-xl-8--force{padding-top:8px!important}.pr-xl-8{padding-right:8px}.pr-xl-8--force{padding-right:8px!important}.pb-xl-8{padding-bottom:8px}.pb-xl-8--force{padding-bottom:8px!important}.pl-xl-8{padding-left:8px}.pl-xl-8--force{padding-left:8px!important}.p-xl-12{padding:12px}.p-xl-12--force{padding:12px!important}.px-xl-12{padding-right:12px;padding-left:12px}.px-xl-12--force{padding-right:12px!important;padding-left:12px!important}.py-xl-12{padding-top:12px;padding-bottom:12px}.py-xl-12--force{padding-top:12px!important;padding-bottom:12px!important}.pt-xl-12{padding-top:12px}.pt-xl-12--force{padding-top:12px!important}.pr-xl-12{padding-right:12px}.pr-xl-12--force{padding-right:12px!important}.pb-xl-12{padding-bottom:12px}.pb-xl-12--force{padding-bottom:12px!important}.pl-xl-12{padding-left:12px}.pl-xl-12--force{padding-left:12px!important}.p-xl-16{padding:16px}.p-xl-16--force{padding:16px!important}.px-xl-16{padding-right:16px;padding-left:16px}.px-xl-16--force{padding-right:16px!important;padding-left:16px!important}.py-xl-16{padding-top:16px;padding-bottom:16px}.py-xl-16--force{padding-top:16px!important;padding-bottom:16px!important}.pt-xl-16{padding-top:16px}.pt-xl-16--force{padding-top:16px!important}.pr-xl-16{padding-right:16px}.pr-xl-16--force{padding-right:16px!important}.pb-xl-16{padding-bottom:16px}.pb-xl-16--force{padding-bottom:16px!important}.pl-xl-16{padding-left:16px}.pl-xl-16--force{padding-left:16px!important}.p-xl-20{padding:20px}.p-xl-20--force{padding:20px!important}.px-xl-20{padding-right:20px;padding-left:20px}.px-xl-20--force{padding-right:20px!important;padding-left:20px!important}.py-xl-20{padding-top:20px;padding-bottom:20px}.py-xl-20--force{padding-top:20px!important;padding-bottom:20px!important}.pt-xl-20{padding-top:20px}.pt-xl-20--force{padding-top:20px!important}.pr-xl-20{padding-right:20px}.pr-xl-20--force{padding-right:20px!important}.pb-xl-20{padding-bottom:20px}.pb-xl-20--force{padding-bottom:20px!important}.pl-xl-20{padding-left:20px}.pl-xl-20--force{padding-left:20px!important}.p-xl-24{padding:24px}.p-xl-24--force{padding:24px!important}.px-xl-24{padding-right:24px;padding-left:24px}.px-xl-24--force{padding-right:24px!important;padding-left:24px!important}.py-xl-24{padding-top:24px;padding-bottom:24px}.py-xl-24--force{padding-top:24px!important;padding-bottom:24px!important}.pt-xl-24{padding-top:24px}.pt-xl-24--force{padding-top:24px!important}.pr-xl-24{padding-right:24px}.pr-xl-24--force{padding-right:24px!important}.pb-xl-24{padding-bottom:24px}.pb-xl-24--force{padding-bottom:24px!important}.pl-xl-24{padding-left:24px}.pl-xl-24--force{padding-left:24px!important}.p-xl-28{padding:28px}.p-xl-28--force{padding:28px!important}.px-xl-28{padding-right:28px;padding-left:28px}.px-xl-28--force{padding-right:28px!important;padding-left:28px!important}.py-xl-28{padding-top:28px;padding-bottom:28px}.py-xl-28--force{padding-top:28px!important;padding-bottom:28px!important}.pt-xl-28{padding-top:28px}.pt-xl-28--force{padding-top:28px!important}.pr-xl-28{padding-right:28px}.pr-xl-28--force{padding-right:28px!important}.pb-xl-28{padding-bottom:28px}.pb-xl-28--force{padding-bottom:28px!important}.pl-xl-28{padding-left:28px}.pl-xl-28--force{padding-left:28px!important}.p-xl-32{padding:32px}.p-xl-32--force{padding:32px!important}.px-xl-32{padding-right:32px;padding-left:32px}.px-xl-32--force{padding-right:32px!important;padding-left:32px!important}.py-xl-32{padding-top:32px;padding-bottom:32px}.py-xl-32--force{padding-top:32px!important;padding-bottom:32px!important}.pt-xl-32{padding-top:32px}.pt-xl-32--force{padding-top:32px!important}.pr-xl-32{padding-right:32px}.pr-xl-32--force{padding-right:32px!important}.pb-xl-32{padding-bottom:32px}.pb-xl-32--force{padding-bottom:32px!important}.pl-xl-32{padding-left:32px}.pl-xl-32--force{padding-left:32px!important}.p-xl-36{padding:36px}.p-xl-36--force{padding:36px!important}.px-xl-36{padding-right:36px;padding-left:36px}.px-xl-36--force{padding-right:36px!important;padding-left:36px!important}.py-xl-36{padding-top:36px;padding-bottom:36px}.py-xl-36--force{padding-top:36px!important;padding-bottom:36px!important}.pt-xl-36{padding-top:36px}.pt-xl-36--force{padding-top:36px!important}.pr-xl-36{padding-right:36px}.pr-xl-36--force{padding-right:36px!important}.pb-xl-36{padding-bottom:36px}.pb-xl-36--force{padding-bottom:36px!important}.pl-xl-36{padding-left:36px}.pl-xl-36--force{padding-left:36px!important}.p-xl-40{padding:40px}.p-xl-40--force{padding:40px!important}.px-xl-40{padding-right:40px;padding-left:40px}.px-xl-40--force{padding-right:40px!important;padding-left:40px!important}.py-xl-40{padding-top:40px;padding-bottom:40px}.py-xl-40--force{padding-top:40px!important;padding-bottom:40px!important}.pt-xl-40{padding-top:40px}.pt-xl-40--force{padding-top:40px!important}.pr-xl-40{padding-right:40px}.pr-xl-40--force{padding-right:40px!important}.pb-xl-40{padding-bottom:40px}.pb-xl-40--force{padding-bottom:40px!important}.pl-xl-40{padding-left:40px}.pl-xl-40--force{padding-left:40px!important}.p-xl-44{padding:44px}.p-xl-44--force{padding:44px!important}.px-xl-44{padding-right:44px;padding-left:44px}.px-xl-44--force{padding-right:44px!important;padding-left:44px!important}.py-xl-44{padding-top:44px;padding-bottom:44px}.py-xl-44--force{padding-top:44px!important;padding-bottom:44px!important}.pt-xl-44{padding-top:44px}.pt-xl-44--force{padding-top:44px!important}.pr-xl-44{padding-right:44px}.pr-xl-44--force{padding-right:44px!important}.pb-xl-44{padding-bottom:44px}.pb-xl-44--force{padding-bottom:44px!important}.pl-xl-44{padding-left:44px}.pl-xl-44--force{padding-left:44px!important}.p-xl-48{padding:48px}.p-xl-48--force{padding:48px!important}.px-xl-48{padding-right:48px;padding-left:48px}.px-xl-48--force{padding-right:48px!important;padding-left:48px!important}.py-xl-48{padding-top:48px;padding-bottom:48px}.py-xl-48--force{padding-top:48px!important;padding-bottom:48px!important}.pt-xl-48{padding-top:48px}.pt-xl-48--force{padding-top:48px!important}.pr-xl-48{padding-right:48px}.pr-xl-48--force{padding-right:48px!important}.pb-xl-48{padding-bottom:48px}.pb-xl-48--force{padding-bottom:48px!important}.pl-xl-48{padding-left:48px}.pl-xl-48--force{padding-left:48px!important}.p-xl-52{padding:52px}.p-xl-52--force{padding:52px!important}.px-xl-52{padding-right:52px;padding-left:52px}.px-xl-52--force{padding-right:52px!important;padding-left:52px!important}.py-xl-52{padding-top:52px;padding-bottom:52px}.py-xl-52--force{padding-top:52px!important;padding-bottom:52px!important}.pt-xl-52{padding-top:52px}.pt-xl-52--force{padding-top:52px!important}.pr-xl-52{padding-right:52px}.pr-xl-52--force{padding-right:52px!important}.pb-xl-52{padding-bottom:52px}.pb-xl-52--force{padding-bottom:52px!important}.pl-xl-52{padding-left:52px}.pl-xl-52--force{padding-left:52px!important}.p-xl-56{padding:56px}.p-xl-56--force{padding:56px!important}.px-xl-56{padding-right:56px;padding-left:56px}.px-xl-56--force{padding-right:56px!important;padding-left:56px!important}.py-xl-56{padding-top:56px;padding-bottom:56px}.py-xl-56--force{padding-top:56px!important;padding-bottom:56px!important}.pt-xl-56{padding-top:56px}.pt-xl-56--force{padding-top:56px!important}.pr-xl-56{padding-right:56px}.pr-xl-56--force{padding-right:56px!important}.pb-xl-56{padding-bottom:56px}.pb-xl-56--force{padding-bottom:56px!important}.pl-xl-56{padding-left:56px}.pl-xl-56--force{padding-left:56px!important}.p-xl-60{padding:60px}.p-xl-60--force{padding:60px!important}.px-xl-60{padding-right:60px;padding-left:60px}.px-xl-60--force{padding-right:60px!important;padding-left:60px!important}.py-xl-60{padding-top:60px;padding-bottom:60px}.py-xl-60--force{padding-top:60px!important;padding-bottom:60px!important}.pt-xl-60{padding-top:60px}.pt-xl-60--force{padding-top:60px!important}.pr-xl-60{padding-right:60px}.pr-xl-60--force{padding-right:60px!important}.pb-xl-60{padding-bottom:60px}.pb-xl-60--force{padding-bottom:60px!important}.pl-xl-60{padding-left:60px}.pl-xl-60--force{padding-left:60px!important}.p-xl-64{padding:64px}.p-xl-64--force{padding:64px!important}.px-xl-64{padding-right:64px;padding-left:64px}.px-xl-64--force{padding-right:64px!important;padding-left:64px!important}.py-xl-64{padding-top:64px;padding-bottom:64px}.py-xl-64--force{padding-top:64px!important;padding-bottom:64px!important}.pt-xl-64{padding-top:64px}.pt-xl-64--force{padding-top:64px!important}.pr-xl-64{padding-right:64px}.pr-xl-64--force{padding-right:64px!important}.pb-xl-64{padding-bottom:64px}.pb-xl-64--force{padding-bottom:64px!important}.pl-xl-64{padding-left:64px}.pl-xl-64--force{padding-left:64px!important}.p-xl-68{padding:68px}.p-xl-68--force{padding:68px!important}.px-xl-68{padding-right:68px;padding-left:68px}.px-xl-68--force{padding-right:68px!important;padding-left:68px!important}.py-xl-68{padding-top:68px;padding-bottom:68px}.py-xl-68--force{padding-top:68px!important;padding-bottom:68px!important}.pt-xl-68{padding-top:68px}.pt-xl-68--force{padding-top:68px!important}.pr-xl-68{padding-right:68px}.pr-xl-68--force{padding-right:68px!important}.pb-xl-68{padding-bottom:68px}.pb-xl-68--force{padding-bottom:68px!important}.pl-xl-68{padding-left:68px}.pl-xl-68--force{padding-left:68px!important}.p-xl-72{padding:72px}.p-xl-72--force{padding:72px!important}.px-xl-72{padding-right:72px;padding-left:72px}.px-xl-72--force{padding-right:72px!important;padding-left:72px!important}.py-xl-72{padding-top:72px;padding-bottom:72px}.py-xl-72--force{padding-top:72px!important;padding-bottom:72px!important}.pt-xl-72{padding-top:72px}.pt-xl-72--force{padding-top:72px!important}.pr-xl-72{padding-right:72px}.pr-xl-72--force{padding-right:72px!important}.pb-xl-72{padding-bottom:72px}.pb-xl-72--force{padding-bottom:72px!important}.pl-xl-72{padding-left:72px}.pl-xl-72--force{padding-left:72px!important}.p-xl-76{padding:76px}.p-xl-76--force{padding:76px!important}.px-xl-76{padding-right:76px;padding-left:76px}.px-xl-76--force{padding-right:76px!important;padding-left:76px!important}.py-xl-76{padding-top:76px;padding-bottom:76px}.py-xl-76--force{padding-top:76px!important;padding-bottom:76px!important}.pt-xl-76{padding-top:76px}.pt-xl-76--force{padding-top:76px!important}.pr-xl-76{padding-right:76px}.pr-xl-76--force{padding-right:76px!important}.pb-xl-76{padding-bottom:76px}.pb-xl-76--force{padding-bottom:76px!important}.pl-xl-76{padding-left:76px}.pl-xl-76--force{padding-left:76px!important}.p-xl-80{padding:80px}.p-xl-80--force{padding:80px!important}.px-xl-80{padding-right:80px;padding-left:80px}.px-xl-80--force{padding-right:80px!important;padding-left:80px!important}.py-xl-80{padding-top:80px;padding-bottom:80px}.py-xl-80--force{padding-top:80px!important;padding-bottom:80px!important}.pt-xl-80{padding-top:80px}.pt-xl-80--force{padding-top:80px!important}.pr-xl-80{padding-right:80px}.pr-xl-80--force{padding-right:80px!important}.pb-xl-80{padding-bottom:80px}.pb-xl-80--force{padding-bottom:80px!important}.pl-xl-80{padding-left:80px}.pl-xl-80--force{padding-left:80px!important}.p-xl-84{padding:84px}.p-xl-84--force{padding:84px!important}.px-xl-84{padding-right:84px;padding-left:84px}.px-xl-84--force{padding-right:84px!important;padding-left:84px!important}.py-xl-84{padding-top:84px;padding-bottom:84px}.py-xl-84--force{padding-top:84px!important;padding-bottom:84px!important}.pt-xl-84{padding-top:84px}.pt-xl-84--force{padding-top:84px!important}.pr-xl-84{padding-right:84px}.pr-xl-84--force{padding-right:84px!important}.pb-xl-84{padding-bottom:84px}.pb-xl-84--force{padding-bottom:84px!important}.pl-xl-84{padding-left:84px}.pl-xl-84--force{padding-left:84px!important}.p-xl-88{padding:88px}.p-xl-88--force{padding:88px!important}.px-xl-88{padding-right:88px;padding-left:88px}.px-xl-88--force{padding-right:88px!important;padding-left:88px!important}.py-xl-88{padding-top:88px;padding-bottom:88px}.py-xl-88--force{padding-top:88px!important;padding-bottom:88px!important}.pt-xl-88{padding-top:88px}.pt-xl-88--force{padding-top:88px!important}.pr-xl-88{padding-right:88px}.pr-xl-88--force{padding-right:88px!important}.pb-xl-88{padding-bottom:88px}.pb-xl-88--force{padding-bottom:88px!important}.pl-xl-88{padding-left:88px}.pl-xl-88--force{padding-left:88px!important}.p-xl-92{padding:92px}.p-xl-92--force{padding:92px!important}.px-xl-92{padding-right:92px;padding-left:92px}.px-xl-92--force{padding-right:92px!important;padding-left:92px!important}.py-xl-92{padding-top:92px;padding-bottom:92px}.py-xl-92--force{padding-top:92px!important;padding-bottom:92px!important}.pt-xl-92{padding-top:92px}.pt-xl-92--force{padding-top:92px!important}.pr-xl-92{padding-right:92px}.pr-xl-92--force{padding-right:92px!important}.pb-xl-92{padding-bottom:92px}.pb-xl-92--force{padding-bottom:92px!important}.pl-xl-92{padding-left:92px}.pl-xl-92--force{padding-left:92px!important}.p-xl-96{padding:96px}.p-xl-96--force{padding:96px!important}.px-xl-96{padding-right:96px;padding-left:96px}.px-xl-96--force{padding-right:96px!important;padding-left:96px!important}.py-xl-96{padding-top:96px;padding-bottom:96px}.py-xl-96--force{padding-top:96px!important;padding-bottom:96px!important}.pt-xl-96{padding-top:96px}.pt-xl-96--force{padding-top:96px!important}.pr-xl-96{padding-right:96px}.pr-xl-96--force{padding-right:96px!important}.pb-xl-96{padding-bottom:96px}.pb-xl-96--force{padding-bottom:96px!important}.pl-xl-96{padding-left:96px}.pl-xl-96--force{padding-left:96px!important}.d-xl-grid,.grid-xl-1,.grid-xl-10,.grid-xl-11,.grid-xl-12,.grid-xl-2,.grid-xl-3,.grid-xl-4,.grid-xl-5,.grid-xl-6,.grid-xl-7,.grid-xl-8,.grid-xl-9{display:grid}.grid-xl-1{grid-template-columns:repeat(1,minmax(0,1fr))}.colspan-xl-1,.span-xl-1c{grid-column-end:span 1}.rowspan-xl-1,.span-xl-1r{grid-row-end:span 1}.grid-xl-2{grid-template-columns:repeat(2,minmax(0,1fr))}.colspan-xl-2,.span-xl-2c{grid-column-end:span 2}.rowspan-xl-2,.span-xl-2r{grid-row-end:span 2}.grid-xl-3{grid-template-columns:repeat(3,minmax(0,1fr))}.colspan-xl-3,.span-xl-3c{grid-column-end:span 3}.rowspan-xl-3,.span-xl-3r{grid-row-end:span 3}.grid-xl-4{grid-template-columns:repeat(4,minmax(0,1fr))}.colspan-xl-4,.span-xl-4c{grid-column-end:span 4}.rowspan-xl-4,.span-xl-4r{grid-row-end:span 4}.grid-xl-5{grid-template-columns:repeat(5,minmax(0,1fr))}.colspan-xl-5,.span-xl-5c{grid-column-end:span 5}.rowspan-xl-5,.span-xl-5r{grid-row-end:span 5}.grid-xl-6{grid-template-columns:repeat(6,minmax(0,1fr))}.colspan-xl-6,.span-xl-6c{grid-column-end:span 6}.rowspan-xl-6,.span-xl-6r{grid-row-end:span 6}.grid-xl-7{grid-template-columns:repeat(7,minmax(0,1fr))}.colspan-xl-7,.span-xl-7c{grid-column-end:span 7}.rowspan-xl-7,.span-xl-7r{grid-row-end:span 7}.grid-xl-8{grid-template-columns:repeat(8,minmax(0,1fr))}.colspan-xl-8,.span-xl-8c{grid-column-end:span 8}.rowspan-xl-8,.span-xl-8r{grid-row-end:span 8}.grid-xl-9{grid-template-columns:repeat(9,minmax(0,1fr))}.colspan-xl-9,.span-xl-9c{grid-column-end:span 9}.rowspan-xl-9,.span-xl-9r{grid-row-end:span 9}.grid-xl-10{grid-template-columns:repeat(10,minmax(0,1fr))}.colspan-xl-10,.span-xl-10c{grid-column-end:span 10}.rowspan-xl-10,.span-xl-10r{grid-row-end:span 10}.grid-xl-11{grid-template-columns:repeat(11,minmax(0,1fr))}.colspan-xl-11,.span-xl-11c{grid-column-end:span 11}.rowspan-xl-11,.span-xl-11r{grid-row-end:span 11}.grid-xl-12{grid-template-columns:repeat(12,minmax(0,1fr))}.colspan-xl-12,.span-xl-12c{grid-column-end:span 12}.rowspan-xl-12,.span-xl-12r{grid-row-end:span 12}.row .col-xl-1{flex-basis:8.33333%}.row .col-offset-xl-1{margin-left:8.33333%}.row .col-xl-2{flex-basis:16.66667%}.row .col-offset-xl-2{margin-left:16.66667%}.row .col-xl-3{flex-basis:25%}.row .col-offset-xl-3{margin-left:25%}.row .col-xl-4{flex-basis:33.33333%}.row .col-offset-xl-4{margin-left:33.33333%}.row .col-xl-5{flex-basis:41.66667%}.row .col-offset-xl-5{margin-left:41.66667%}.row .col-xl-6{flex-basis:50%}.row .col-offset-xl-6{margin-left:50%}.row .col-xl-7{flex-basis:58.33333%}.row .col-offset-xl-7{margin-left:58.33333%}.row .col-xl-8{flex-basis:66.66667%}.row .col-offset-xl-8{margin-left:66.66667%}.row .col-xl-9{flex-basis:75%}.row .col-offset-xl-9{margin-left:75%}.row .col-xl-10{flex-basis:83.33333%}.row .col-offset-xl-10{margin-left:83.33333%}.row .col-xl-11{flex-basis:91.66667%}.row .col-offset-xl-11{margin-left:91.66667%}.flex-xl-basis-1,.row .col-xl-12{flex-basis:100%}.row .col-offset-xl-12{margin-left:100%}.row>div[class*=col-].align-start{align-self:flex-start}.row>div[class*=col-].align-center{align-self:center}.row>div[class*=col-].align-end{align-self:flex-end}.row.align-start{justify-content:flex-start}.row.align-center{justify-content:center}.row.align-end{justify-content:flex-end}.row.space-around{justify-content:space-around}.row.space-between{justify-content:space-between}.gap-xl-0{column-gap:0;row-gap:0}.gap-xl-4{column-gap:4px;row-gap:4px}.gap-xl-8{column-gap:8px;row-gap:8px}.gap-xl-12{column-gap:12px;row-gap:12px}.gap-xl-16{column-gap:16px;row-gap:16px}.gap-xl-20{column-gap:20px;row-gap:20px}.gap-xl-24{column-gap:24px;row-gap:24px}.gap-xl-28{column-gap:28px;row-gap:28px}.gap-xl-32{column-gap:32px;row-gap:32px}.gap-xl-36{column-gap:36px;row-gap:36px}.gap-xl-40{column-gap:40px;row-gap:40px}.gap-xl-44{column-gap:44px;row-gap:44px}.gap-xl-48{column-gap:48px;row-gap:48px}.z-index-xl--1{z-index:-1}.z-index-xl--1--force{z-index:-1!important}.z-index-xl-0{z-index:0}.z-index-xl-0--force{z-index:0!important}.z-index-xl-1{z-index:1}.z-index-xl-1--force{z-index:1!important}.z-index-xl-2{z-index:2}.z-index-xl-2--force{z-index:2!important}.z-index-xl-3{z-index:3}.z-index-xl-3--force{z-index:3!important}.z-index-xl-4{z-index:4}.z-index-xl-4--force{z-index:4!important}.z-index-xl-5{z-index:5}.z-index-xl-5--force{z-index:5!important}.z-index-xl-6{z-index:6}.z-index-xl-6--force{z-index:6!important}.z-index-xl-7{z-index:7}.z-index-xl-7--force{z-index:7!important}.z-index-xl-8{z-index:8}.z-index-xl-8--force{z-index:8!important}.z-index-xl-9{z-index:9}.z-index-xl-9--force{z-index:9!important}.z-index-xl-10{z-index:10}.z-index-xl-10--force{z-index:10!important}.z-index-xl-11{z-index:11}.z-index-xl-11--force{z-index:11!important}.z-index-xl-12{z-index:12}.z-index-xl-12--force{z-index:12!important}.z-index-xl-13{z-index:13}.z-index-xl-13--force{z-index:13!important}.z-index-xl-14{z-index:14}.z-index-xl-14--force{z-index:14!important}.z-index-xl-15{z-index:15}.z-index-xl-15--force{z-index:15!important}.z-index-xl-16{z-index:16}.z-index-xl-16--force{z-index:16!important}.z-index-xl-17{z-index:17}.z-index-xl-17--force{z-index:17!important}.z-index-xl-18{z-index:18}.z-index-xl-18--force{z-index:18!important}.z-index-xl-19{z-index:19}.z-index-xl-19--force{z-index:19!important}.z-index-xl-20{z-index:20}.z-index-xl-20--force{z-index:20!important}.z-index-xl-21{z-index:21}.z-index-xl-21--force{z-index:21!important}.z-index-xl-22{z-index:22}.z-index-xl-22--force{z-index:22!important}.z-index-xl-23{z-index:23}.z-index-xl-23--force{z-index:23!important}.z-index-xl-24{z-index:24}.z-index-xl-24--force{z-index:24!important}.order-xl--12{order:-12}.order-xl--12--force{order:-12!important}.order-xl--11{order:-11}.order-xl--11--force{order:-11!important}.order-xl--10{order:-10}.order-xl--10--force{order:-10!important}.order-xl--9{order:-9}.order-xl--9--force{order:-9!important}.order-xl--8{order:-8}.order-xl--8--force{order:-8!important}.order-xl--7{order:-7}.order-xl--7--force{order:-7!important}.order-xl--6{order:-6}.order-xl--6--force{order:-6!important}.order-xl--5{order:-5}.order-xl--5--force{order:-5!important}.order-xl--4{order:-4}.order-xl--4--force{order:-4!important}.order-xl--3{order:-3}.order-xl--3--force{order:-3!important}.order-xl--2{order:-2}.order-xl--2--force{order:-2!important}.order-xl--1{order:-1}.order-xl--1--force{order:-1!important}.order-xl-0{order:0}.order-xl-0--force{order:0!important}.order-xl-1{order:1}.order-xl-1--force{order:1!important}.order-xl-2{order:2}.order-xl-2--force{order:2!important}.order-xl-3{order:3}.order-xl-3--force{order:3!important}.order-xl-4{order:4}.order-xl-4--force{order:4!important}.order-xl-5{order:5}.order-xl-5--force{order:5!important}.order-xl-6{order:6}.order-xl-6--force{order:6!important}.order-xl-7{order:7}.order-xl-7--force{order:7!important}.order-xl-8{order:8}.order-xl-8--force{order:8!important}.order-xl-9{order:9}.order-xl-9--force{order:9!important}.order-xl-10{order:10}.order-xl-10--force{order:10!important}.order-xl-11{order:11}.order-xl-11--force{order:11!important}.order-xl-12{order:12}.order-xl-12--force{order:12!important}.order-xl-inherit{order:inherit}.order-xl-inherit--force{order:inherit!important}.order-xl-initial{order:initial}.order-xl-initial--force{order:initial!important}.place-xl-top{top:0}.place-xl-top--force{top:0!important}.place-xl-right{right:0}.place-xl-right--force{right:0!important}.place-xl-bottom{bottom:0}.place-xl-bottom--force{bottom:0!important}.place-xl-left{left:0}.place-xl-left--force{left:0!important}.position-xl-relative{position:relative}.position-xl-relative--force{position:relative!important}.position-xl-absolute{position:absolute}.position-xl-absolute--force{position:absolute!important}.position-xl-static{position:static}.position-xl-static--force{position:static!important}.position-xl-fixed{position:fixed}.position-xl-fixed--force{position:fixed!important}.d-xl-none{display:none}.d-xl-none--force{display:none!important}.d-xl-inline{display:inline}.d-xl-inline--force{display:inline!important}.d-xl-inline-block{display:inline-block}.d-xl-inline-block--force{display:inline-block!important}.d-xl-block{display:block}.d-xl-block--force{display:block!important}.d-xl-grid--force{display:grid!important}.d-xl-table{display:table}.d-xl-table--force{display:table!important}.d-xl-table-cell{display:table-cell}.d-xl-table-cell--force{display:table-cell!important}.d-xl-table-row{display:table-row}.d-xl-table-row--force{display:table-row!important}.d-xl-inline-flex{display:inline-flex}.d-xl-inline-flex--force{display:inline-flex!important}.d-xl-flex{display:flex}.d-xl-flex--force{display:flex!important}.flex-xl-row{display:flex;flex-direction:row}.flex-xl-row--force{display:flex!important;flex-direction:row!important}.flex-xl-row-reverse{display:flex;flex-direction:row-reverse}.flex-xl-row-reverse--force{display:flex!important;flex-direction:row-reverse!important}.flex-xl-column{display:flex;flex-direction:column}.flex-xl-column--force{display:flex!important;flex-direction:column!important}.flex-xl-column-reverse{display:flex;flex-direction:column-reverse}.flex-xl-column-reverse--force{display:flex!important;flex-direction:column-reverse!important}.flex-xl-nowrap{flex-wrap:nowrap}.flex-xl-nowrap--force{flex-wrap:nowrap!important}.flex-xl-wrap{flex-wrap:wrap}.flex-xl-wrap--force{flex-wrap:wrap!important}.flex-xl-align-center{display:flex;align-items:center}.flex-xl-align-center--force{display:flex!important;align-items:center!important}.flex-xl-align-start{display:flex;align-items:flex-start}.flex-xl-align-start--force{display:flex!important;align-items:flex-start!important}.flex-xl-align-end{display:flex;align-items:flex-end}.flex-xl-align-end--force{display:flex!important;align-items:flex-end!important}.flex-xl-align-inherit{display:flex;align-items:inherit}.flex-xl-align-inherit--force{display:flex!important;align-items:inherit!important}.flex-xl-align-initial{display:flex;align-items:initial}.flex-xl-align-initial--force{display:flex!important;align-items:initial!important}.flex-xl-align-self-end{display:flex;align-self:flex-end}.flex-xl-align-self-end--force{display:flex!important;align-self:flex-end!important}.flex-xl-align-self-start{display:flex;align-self:flex-start}.flex-xl-align-self-start--force{display:flex!important;align-self:flex-start!important}.flex-xl-align-self-inherit{display:flex;align-self:inherit}.flex-xl-align-self-inherit--force{display:flex!important;align-self:inherit!important}.flex-xl-align-self-initial{display:flex;align-self:initial}.flex-xl-align-self-initial--force{display:flex!important;align-self:initial!important}.flex-xl-center-center{display:flex;justify-content:center;align-items:center}.flex-xl-center-center--force{display:flex!important;justify-content:center!important;align-items:center!important}.flex-xl-center,.flex-xl-justify-center{display:flex;justify-content:center}.flex-xl-center--force,.flex-xl-justify-center--force{display:flex!important;justify-content:center!important}.flex-xl-end,.flex-xl-justify-end{display:flex;justify-content:flex-end}.flex-xl-end--force,.flex-xl-justify-end--force{display:flex!important;justify-content:flex-end!important}.flex-xl-justify-start,.flex-xl-start{display:flex;justify-content:flex-start}.flex-xl-justify-start--force,.flex-xl-start--force{display:flex!important;justify-content:flex-start!important}.flex-xl-inherit,.flex-xl-justify-inherit{display:flex;justify-content:inherit}.flex-xl-inherit--force,.flex-xl-justify-inherit--force{display:flex!important;justify-content:inherit!important}.flex-xl-initial,.flex-xl-justify-initial{display:flex;justify-content:initial}.flex-xl-initial--force,.flex-xl-justify-initial--force{display:flex!important;justify-content:initial!important}.flex-xl-left{display:flex;justify-content:left}.flex-xl-left--force{display:flex!important;justify-content:left!important}.flex-xl-right{display:flex;justify-content:right}.flex-xl-right--force{display:flex!important;justify-content:right!important}.flex-xl-normal{display:flex;justify-content:normal}.flex-xl-normal--force{display:flex!important;justify-content:normal!important}.flex-xl-revert{display:flex;justify-content:revert}.flex-xl-revert--force{display:flex!important;justify-content:revert!important}.flex-xl-around,.flex-xl-space-around{display:flex;justify-content:space-around}.flex-xl-around--force,.flex-xl-space-around--force{display:flex!important;justify-content:space-around!important}.flex-xl-between,.flex-xl-space-between{display:flex;justify-content:space-between}.flex-xl-between--force,.flex-xl-space-between--force{display:flex!important;justify-content:space-between!important}.flex-xl-evenly,.flex-xl-space-evenly{display:flex;justify-content:space-evenly}.flex-xl-evenly--force,.flex-xl-space-evenly--force{display:flex!important;justify-content:space-evenly!important}.flex-xl-stretch{display:flex;justify-content:stretch}.flex-xl-stretch--force{display:flex!important;justify-content:stretch!important}.flex-xl-unset{display:flex;justify-content:unset}.flex-xl-unset--force{display:flex!important;justify-content:unset!important}.flex-xl-grow-0{flex-grow:0}.flex-xl-shrink-0{flex-shrink:0}.flex-xl-grow-1{flex-grow:1}.flex-xl-shrink-1{flex-shrink:1}.flex-xl-grow-2{flex-grow:2}.flex-xl-shrink-2{flex-shrink:2}.flex-xl-grow-3{flex-grow:3}.flex-xl-shrink-3{flex-shrink:3}.flex-xl-full{flex-grow:1;flex-shrink:1;flex-basis:100%}.fw-xl-100{font-weight:100}.fw-xl-100--force{font-weight:100!important}.fw-xl-200{font-weight:200}.fw-xl-200--force{font-weight:200!important}.fw-xl-300{font-weight:300}.fw-xl-300--force{font-weight:300!important}.fw-xl-400{font-weight:400}.fw-xl-400--force{font-weight:400!important}.fw-xl-500{font-weight:500}.fw-xl-500--force{font-weight:500!important}.fw-xl-600{font-weight:600}.fw-xl-600--force{font-weight:600!important}.fw-xl-700{font-weight:700}.fw-xl-700--force{font-weight:700!important}.fw-xl-800{font-weight:800}.fw-xl-800--force{font-weight:800!important}.fw-xl-900{font-weight:900}.fw-xl-900--force{font-weight:900!important}.fs-xl-0{font-size:0px}.fs-xl-0--force{font-size:0px!important}.fs-xl-1{font-size:1px}.fs-xl-1--force{font-size:1px!important}.fs-xl-2{font-size:2px}.fs-xl-2--force{font-size:2px!important}.fs-xl-3{font-size:3px}.fs-xl-3--force{font-size:3px!important}.fs-xl-4{font-size:4px}.fs-xl-4--force{font-size:4px!important}.fs-xl-5{font-size:5px}.fs-xl-5--force{font-size:5px!important}.fs-xl-6{font-size:6px}.fs-xl-6--force{font-size:6px!important}.fs-xl-7{font-size:7px}.fs-xl-7--force{font-size:7px!important}.fs-xl-8{font-size:8px}.fs-xl-8--force{font-size:8px!important}.fs-xl-9{font-size:9px}.fs-xl-9--force{font-size:9px!important}.fs-xl-10{font-size:10px}.fs-xl-10--force{font-size:10px!important}.fs-xl-11{font-size:11px}.fs-xl-11--force{font-size:11px!important}.fs-xl-12{font-size:12px}.fs-xl-12--force{font-size:12px!important}.fs-xl-13{font-size:13px}.fs-xl-13--force{font-size:13px!important}.fs-xl-14{font-size:14px}.fs-xl-14--force{font-size:14px!important}.fs-xl-15{font-size:15px}.fs-xl-15--force{font-size:15px!important}.fs-xl-16{font-size:16px}.fs-xl-16--force{font-size:16px!important}.fs-xl-17{font-size:17px}.fs-xl-17--force{font-size:17px!important}.fs-xl-18{font-size:18px}.fs-xl-18--force{font-size:18px!important}.fs-xl-19{font-size:19px}.fs-xl-19--force{font-size:19px!important}.fs-xl-20{font-size:20px}.fs-xl-20--force{font-size:20px!important}.fs-xl-21{font-size:21px}.fs-xl-21--force{font-size:21px!important}.fs-xl-22{font-size:22px}.fs-xl-22--force{font-size:22px!important}.fs-xl-23{font-size:23px}.fs-xl-23--force{font-size:23px!important}.fs-xl-24{font-size:24px}.fs-xl-24--force{font-size:24px!important}.fs-xl-25{font-size:25px}.fs-xl-25--force{font-size:25px!important}.fs-xl-26{font-size:26px}.fs-xl-26--force{font-size:26px!important}.fs-xl-27{font-size:27px}.fs-xl-27--force{font-size:27px!important}.fs-xl-28{font-size:28px}.fs-xl-28--force{font-size:28px!important}.fs-xl-29{font-size:29px}.fs-xl-29--force{font-size:29px!important}.fs-xl-30{font-size:30px}.fs-xl-30--force{font-size:30px!important}.fs-xl-31{font-size:31px}.fs-xl-31--force{font-size:31px!important}.fs-xl-32{font-size:32px}.fs-xl-32--force{font-size:32px!important}.fs-xl-33{font-size:33px}.fs-xl-33--force{font-size:33px!important}.fs-xl-34{font-size:34px}.fs-xl-34--force{font-size:34px!important}.fs-xl-35{font-size:35px}.fs-xl-35--force{font-size:35px!important}.fs-xl-36{font-size:36px}.fs-xl-36--force{font-size:36px!important}.fs-xl-37{font-size:37px}.fs-xl-37--force{font-size:37px!important}.fs-xl-38{font-size:38px}.fs-xl-38--force{font-size:38px!important}.fs-xl-39{font-size:39px}.fs-xl-39--force{font-size:39px!important}.fs-xl-40{font-size:40px}.fs-xl-40--force{font-size:40px!important}.fs-xl-41{font-size:41px}.fs-xl-41--force{font-size:41px!important}.fs-xl-42{font-size:42px}.fs-xl-42--force{font-size:42px!important}.fs-xl-43{font-size:43px}.fs-xl-43--force{font-size:43px!important}.fs-xl-44{font-size:44px}.fs-xl-44--force{font-size:44px!important}.fs-xl-45{font-size:45px}.fs-xl-45--force{font-size:45px!important}.fs-xl-46{font-size:46px}.fs-xl-46--force{font-size:46px!important}.fs-xl-47{font-size:47px}.fs-xl-47--force{font-size:47px!important}.fs-xl-48{font-size:48px}.fs-xl-48--force{font-size:48px!important}.fs-xl-49{font-size:49px}.fs-xl-49--force{font-size:49px!important}.fs-xl-50{font-size:50px}.fs-xl-50--force{font-size:50px!important}.fs-xl-51{font-size:51px}.fs-xl-51--force{font-size:51px!important}.fs-xl-52{font-size:52px}.fs-xl-52--force{font-size:52px!important}.fs-xl-53{font-size:53px}.fs-xl-53--force{font-size:53px!important}.fs-xl-54{font-size:54px}.fs-xl-54--force{font-size:54px!important}.fs-xl-55{font-size:55px}.fs-xl-55--force{font-size:55px!important}.fs-xl-56{font-size:56px}.fs-xl-56--force{font-size:56px!important}.fs-xl-57{font-size:57px}.fs-xl-57--force{font-size:57px!important}.fs-xl-58{font-size:58px}.fs-xl-58--force{font-size:58px!important}.fs-xl-59{font-size:59px}.fs-xl-59--force{font-size:59px!important}.fs-xl-60{font-size:60px}.fs-xl-60--force{font-size:60px!important}.fs-xl-61{font-size:61px}.fs-xl-61--force{font-size:61px!important}.fs-xl-62{font-size:62px}.fs-xl-62--force{font-size:62px!important}.fs-xl-63{font-size:63px}.fs-xl-63--force{font-size:63px!important}.fs-xl-64{font-size:64px}.fs-xl-64--force{font-size:64px!important}.fs-xl-65{font-size:65px}.fs-xl-65--force{font-size:65px!important}.fs-xl-66{font-size:66px}.fs-xl-66--force{font-size:66px!important}.fs-xl-67{font-size:67px}.fs-xl-67--force{font-size:67px!important}.fs-xl-68{font-size:68px}.fs-xl-68--force{font-size:68px!important}.fs-xl-69{font-size:69px}.fs-xl-69--force{font-size:69px!important}.fs-xl-70{font-size:70px}.fs-xl-70--force{font-size:70px!important}.fs-xl-71{font-size:71px}.fs-xl-71--force{font-size:71px!important}.fs-xl-72{font-size:72px}.fs-xl-72--force{font-size:72px!important}.fs-xl-73{font-size:73px}.fs-xl-73--force{font-size:73px!important}.fs-xl-74{font-size:74px}.fs-xl-74--force{font-size:74px!important}.fs-xl-75{font-size:75px}.fs-xl-75--force{font-size:75px!important}.fs-xl-76{font-size:76px}.fs-xl-76--force{font-size:76px!important}.fs-xl-77{font-size:77px}.fs-xl-77--force{font-size:77px!important}.fs-xl-78{font-size:78px}.fs-xl-78--force{font-size:78px!important}.fs-xl-79{font-size:79px}.fs-xl-79--force{font-size:79px!important}.fs-xl-80{font-size:80px}.fs-xl-80--force{font-size:80px!important}.fs-xl-81{font-size:81px}.fs-xl-81--force{font-size:81px!important}.fs-xl-82{font-size:82px}.fs-xl-82--force{font-size:82px!important}.fs-xl-83{font-size:83px}.fs-xl-83--force{font-size:83px!important}.fs-xl-84{font-size:84px}.fs-xl-84--force{font-size:84px!important}.fs-xl-85{font-size:85px}.fs-xl-85--force{font-size:85px!important}.fs-xl-86{font-size:86px}.fs-xl-86--force{font-size:86px!important}.fs-xl-87{font-size:87px}.fs-xl-87--force{font-size:87px!important}.fs-xl-88{font-size:88px}.fs-xl-88--force{font-size:88px!important}.fs-xl-89{font-size:89px}.fs-xl-89--force{font-size:89px!important}.fs-xl-90{font-size:90px}.fs-xl-90--force{font-size:90px!important}.fs-xl-91{font-size:91px}.fs-xl-91--force{font-size:91px!important}.fs-xl-92{font-size:92px}.fs-xl-92--force{font-size:92px!important}.fs-xl-93{font-size:93px}.fs-xl-93--force{font-size:93px!important}.fs-xl-94{font-size:94px}.fs-xl-94--force{font-size:94px!important}.fs-xl-95{font-size:95px}.fs-xl-95--force{font-size:95px!important}.fs-xl-96{font-size:96px}.fs-xl-96--force{font-size:96px!important}.ls-xl-0{letter-spacing:0}.ls-xl-0--force{letter-spacing:0!important}.ls-xl-1{letter-spacing:.1em}.ls-xl-1--force{letter-spacing:.1em!important}.ls-xl-2{letter-spacing:.2em}.ls-xl-2--force{letter-spacing:.2em!important}.ls-xl-3{letter-spacing:.3em}.ls-xl-3--force{letter-spacing:.3em!important}.ls-xl-4{letter-spacing:.4em}.ls-xl-4--force{letter-spacing:.4em!important}.ls-xl-5{letter-spacing:.5em}.ls-xl-5--force{letter-spacing:.5em!important}.ls-xl-6{letter-spacing:.6em}.ls-xl-6--force{letter-spacing:.6em!important}.ls-xl-7{letter-spacing:.7em}.ls-xl-7--force{letter-spacing:.7em!important}.ls-xl-8{letter-spacing:.8em}.ls-xl-8--force{letter-spacing:.8em!important}.ls-xl-9{letter-spacing:.9em}.ls-xl-9--force{letter-spacing:.9em!important}.ls-xl-10{letter-spacing:1em}.ls-xl-10--force{letter-spacing:1em!important}.ls-xl-11{letter-spacing:1.1em}.ls-xl-11--force{letter-spacing:1.1em!important}.ls-xl-12{letter-spacing:1.2em}.ls-xl-12--force{letter-spacing:1.2em!important}.ls-xl-13{letter-spacing:1.3em}.ls-xl-13--force{letter-spacing:1.3em!important}.ls-xl-14{letter-spacing:1.4em}.ls-xl-14--force{letter-spacing:1.4em!important}.ls-xl-15{letter-spacing:1.5em}.ls-xl-15--force{letter-spacing:1.5em!important}.ls-xl-16{letter-spacing:1.6em}.ls-xl-16--force{letter-spacing:1.6em!important}.ls-xl-17{letter-spacing:1.7em}.ls-xl-17--force{letter-spacing:1.7em!important}.ls-xl-18{letter-spacing:1.8em}.ls-xl-18--force{letter-spacing:1.8em!important}.lh-xl-0{line-height:0}.lh-xl-0--force{line-height:0!important}.lh-xl-1{line-height:1px}.lh-xl-1--force{line-height:1px!important}.lh-xl-2{line-height:2px}.lh-xl-2--force{line-height:2px!important}.lh-xl-3{line-height:3px}.lh-xl-3--force{line-height:3px!important}.lh-xl-4{line-height:4px}.lh-xl-4--force{line-height:4px!important}.lh-xl-5{line-height:5px}.lh-xl-5--force{line-height:5px!important}.lh-xl-6{line-height:6px}.lh-xl-6--force{line-height:6px!important}.lh-xl-7{line-height:7px}.lh-xl-7--force{line-height:7px!important}.lh-xl-8{line-height:8px}.lh-xl-8--force{line-height:8px!important}.lh-xl-9{line-height:9px}.lh-xl-9--force{line-height:9px!important}.lh-xl-10{line-height:10px}.lh-xl-10--force{line-height:10px!important}.lh-xl-11{line-height:11px}.lh-xl-11--force{line-height:11px!important}.lh-xl-12{line-height:12px}.lh-xl-12--force{line-height:12px!important}.lh-xl-13{line-height:13px}.lh-xl-13--force{line-height:13px!important}.lh-xl-14{line-height:14px}.lh-xl-14--force{line-height:14px!important}.lh-xl-15{line-height:15px}.lh-xl-15--force{line-height:15px!important}.lh-xl-16{line-height:16px}.lh-xl-16--force{line-height:16px!important}.lh-xl-17{line-height:17px}.lh-xl-17--force{line-height:17px!important}.lh-xl-18{line-height:18px}.lh-xl-18--force{line-height:18px!important}.lh-xl-19{line-height:19px}.lh-xl-19--force{line-height:19px!important}.lh-xl-20{line-height:20px}.lh-xl-20--force{line-height:20px!important}.lh-xl-21{line-height:21px}.lh-xl-21--force{line-height:21px!important}.lh-xl-22{line-height:22px}.lh-xl-22--force{line-height:22px!important}.lh-xl-23{line-height:23px}.lh-xl-23--force{line-height:23px!important}.lh-xl-24{line-height:24px}.lh-xl-24--force{line-height:24px!important}.lh-xl-25{line-height:25px}.lh-xl-25--force{line-height:25px!important}.lh-xl-26{line-height:26px}.lh-xl-26--force{line-height:26px!important}.lh-xl-27{line-height:27px}.lh-xl-27--force{line-height:27px!important}.lh-xl-28{line-height:28px}.lh-xl-28--force{line-height:28px!important}.lh-xl-29{line-height:29px}.lh-xl-29--force{line-height:29px!important}.lh-xl-30{line-height:30px}.lh-xl-30--force{line-height:30px!important}.lh-xl-31{line-height:31px}.lh-xl-31--force{line-height:31px!important}.lh-xl-32{line-height:32px}.lh-xl-32--force{line-height:32px!important}.lh-xl-33{line-height:33px}.lh-xl-33--force{line-height:33px!important}.lh-xl-34{line-height:34px}.lh-xl-34--force{line-height:34px!important}.lh-xl-35{line-height:35px}.lh-xl-35--force{line-height:35px!important}.lh-xl-36{line-height:36px}.lh-xl-36--force{line-height:36px!important}.lh-xl-37{line-height:37px}.lh-xl-37--force{line-height:37px!important}.lh-xl-38{line-height:38px}.lh-xl-38--force{line-height:38px!important}.lh-xl-39{line-height:39px}.lh-xl-39--force{line-height:39px!important}.lh-xl-40{line-height:40px}.lh-xl-40--force{line-height:40px!important}.lh-xl-41{line-height:41px}.lh-xl-41--force{line-height:41px!important}.lh-xl-42{line-height:42px}.lh-xl-42--force{line-height:42px!important}.lh-xl-43{line-height:43px}.lh-xl-43--force{line-height:43px!important}.lh-xl-44{line-height:44px}.lh-xl-44--force{line-height:44px!important}.lh-xl-45{line-height:45px}.lh-xl-45--force{line-height:45px!important}.lh-xl-46{line-height:46px}.lh-xl-46--force{line-height:46px!important}.lh-xl-47{line-height:47px}.lh-xl-47--force{line-height:47px!important}.lh-xl-48{line-height:48px}.lh-xl-48--force{line-height:48px!important}.lh-xl-49{line-height:49px}.lh-xl-49--force{line-height:49px!important}.lh-xl-50{line-height:50px}.lh-xl-50--force{line-height:50px!important}.lh-xl-51{line-height:51px}.lh-xl-51--force{line-height:51px!important}.lh-xl-52{line-height:52px}.lh-xl-52--force{line-height:52px!important}.lh-xl-53{line-height:53px}.lh-xl-53--force{line-height:53px!important}.lh-xl-54{line-height:54px}.lh-xl-54--force{line-height:54px!important}.lh-xl-55{line-height:55px}.lh-xl-55--force{line-height:55px!important}.lh-xl-56{line-height:56px}.lh-xl-56--force{line-height:56px!important}.lh-xl-57{line-height:57px}.lh-xl-57--force{line-height:57px!important}.lh-xl-58{line-height:58px}.lh-xl-58--force{line-height:58px!important}.lh-xl-59{line-height:59px}.lh-xl-59--force{line-height:59px!important}.lh-xl-60{line-height:60px}.lh-xl-60--force{line-height:60px!important}.lh-xl-61{line-height:61px}.lh-xl-61--force{line-height:61px!important}.lh-xl-62{line-height:62px}.lh-xl-62--force{line-height:62px!important}.lh-xl-63{line-height:63px}.lh-xl-63--force{line-height:63px!important}.lh-xl-64{line-height:64px}.lh-xl-64--force{line-height:64px!important}.lh-xl-65{line-height:65px}.lh-xl-65--force{line-height:65px!important}.lh-xl-66{line-height:66px}.lh-xl-66--force{line-height:66px!important}.lh-xl-67{line-height:67px}.lh-xl-67--force{line-height:67px!important}.lh-xl-68{line-height:68px}.lh-xl-68--force{line-height:68px!important}.lh-xl-69{line-height:69px}.lh-xl-69--force{line-height:69px!important}.lh-xl-70{line-height:70px}.lh-xl-70--force{line-height:70px!important}.lh-xl-71{line-height:71px}.lh-xl-71--force{line-height:71px!important}.lh-xl-72{line-height:72px}.lh-xl-72--force{line-height:72px!important}.lh-xl-73{line-height:73px}.lh-xl-73--force{line-height:73px!important}.lh-xl-74{line-height:74px}.lh-xl-74--force{line-height:74px!important}.lh-xl-75{line-height:75px}.lh-xl-75--force{line-height:75px!important}.lh-xl-76{line-height:76px}.lh-xl-76--force{line-height:76px!important}.lh-xl-77{line-height:77px}.lh-xl-77--force{line-height:77px!important}.lh-xl-78{line-height:78px}.lh-xl-78--force{line-height:78px!important}.lh-xl-79{line-height:79px}.lh-xl-79--force{line-height:79px!important}.lh-xl-80{line-height:80px}.lh-xl-80--force{line-height:80px!important}.lh-xl-81{line-height:81px}.lh-xl-81--force{line-height:81px!important}.lh-xl-82{line-height:82px}.lh-xl-82--force{line-height:82px!important}.lh-xl-83{line-height:83px}.lh-xl-83--force{line-height:83px!important}.lh-xl-84{line-height:84px}.lh-xl-84--force{line-height:84px!important}.lh-xl-85{line-height:85px}.lh-xl-85--force{line-height:85px!important}.lh-xl-86{line-height:86px}.lh-xl-86--force{line-height:86px!important}.lh-xl-87{line-height:87px}.lh-xl-87--force{line-height:87px!important}.lh-xl-88{line-height:88px}.lh-xl-88--force{line-height:88px!important}.lh-xl-89{line-height:89px}.lh-xl-89--force{line-height:89px!important}.lh-xl-90{line-height:90px}.lh-xl-90--force{line-height:90px!important}.lh-xl-91{line-height:91px}.lh-xl-91--force{line-height:91px!important}.lh-xl-92{line-height:92px}.lh-xl-92--force{line-height:92px!important}.lh-xl-93{line-height:93px}.lh-xl-93--force{line-height:93px!important}.lh-xl-94{line-height:94px}.lh-xl-94--force{line-height:94px!important}.lh-xl-95{line-height:95px}.lh-xl-95--force{line-height:95px!important}.lh-xl-96{line-height:96px}.lh-xl-96--force{line-height:96px!important}.lh-xl-97{line-height:97px}.lh-xl-97--force{line-height:97px!important}.lh-xl-98{line-height:98px}.lh-xl-98--force{line-height:98px!important}.lh-xl-99{line-height:99px}.lh-xl-99--force{line-height:99px!important}.lh-xl-100{line-height:100px}.lh-xl-100--force{line-height:100px!important}.aspect-ratio-xl-auto{aspect-ratio:auto}.aspect-ratio-xl-auto--force{aspect-ratio:auto!important}.aspect-ratio-xl-1x1{aspect-ratio:1/1}.aspect-ratio-xl-1x1--force{aspect-ratio:1/1!important}.aspect-ratio-xl-1x2{aspect-ratio:1/2}.aspect-ratio-xl-1x2--force{aspect-ratio:1/2!important}.aspect-ratio-xl-2x1{aspect-ratio:2/1}.aspect-ratio-xl-2x1--force{aspect-ratio:2/1!important}.aspect-ratio-xl-3x4{aspect-ratio:3/4}.aspect-ratio-xl-3x4--force{aspect-ratio:3/4!important}.aspect-ratio-xl-4x3{aspect-ratio:4/3}.aspect-ratio-xl-4x3--force{aspect-ratio:4/3!important}.aspect-ratio-xl-9x16{aspect-ratio:9/16}.aspect-ratio-xl-9x16--force{aspect-ratio:9/16!important}.aspect-ratio-xl-16x9{aspect-ratio:16/9}.aspect-ratio-xl-16x9--force{aspect-ratio:16/9!important}.aspect-ratio-xl-half{aspect-ratio:0.5}.aspect-ratio-xl-half--force{aspect-ratio:0.5!important}.aspect-ratio-xl-inherit{aspect-ratio:inherit}.aspect-ratio-xl-inherit--force{aspect-ratio:inherit!important}.aspect-ratio-xl-initial{aspect-ratio:initial}.aspect-ratio-xl-initial--force{aspect-ratio:initial!important}.aspect-ratio-xl-unset{aspect-ratio:unset}.aspect-ratio-xl-unset--force{aspect-ratio:unset!important}.cursor-pointer-xl{cursor:pointer}.cursor-pointer-xl--force{cursor:pointer!important}.cursor-default-xl{cursor:default}.cursor-default-xl--force{cursor:default!important}.cursor-grab-xl{cursor:grab}.cursor-grab-xl--force{cursor:grab!important}.cursor-grabbing-xl{cursor:grabbing}.cursor-grabbing-xl--force{cursor:grabbing!important}.cursor-move-xl{cursor:move}.cursor-move-xl--force{cursor:move!important}.cursor-help-xl{cursor:help}.cursor-help-xl--force{cursor:help!important}.cursor-wait-xl{cursor:wait}.cursor-wait-xl--force{cursor:wait!important}.opacity-xl-0{opacity:0}.opacity-xl-0--force{opacity:0!important}.opacity-xl-01{opacity:.1}.opacity-xl-01--force{opacity:.1!important}.opacity-xl-02{opacity:.2}.opacity-xl-02--force{opacity:.2!important}.opacity-xl-03{opacity:.3}.opacity-xl-03--force{opacity:.3!important}.opacity-xl-04{opacity:.4}.opacity-xl-04--force{opacity:.4!important}.opacity-xl-05{opacity:.5}.opacity-xl-05--force{opacity:.5!important}.opacity-xl-06{opacity:.6}.opacity-xl-06--force{opacity:.6!important}.opacity-xl-07{opacity:.7}.opacity-xl-07--force{opacity:.7!important}.opacity-xl-08{opacity:.8}.opacity-xl-08--force{opacity:.8!important}.opacity-xl-09{opacity:.9}.opacity-xl-09--force{opacity:.9!important}.opacity-xl-10{opacity:1}.opacity-xl-10--force{opacity:1!important}.opacity-xl-1{opacity:1}.opacity-xl-1--force{opacity:1!important}.text-xl-decoration-strike,.text-xl-line-through,.text-xl-strike{text-decoration:line-through}.text-xl-decoration-strike--force,.text-xl-line-through--force,.text-xl-strike--force{text-decoration:line-through!important}.text-xl-decoration-none,.text-xl-none{text-decoration:none}.text-xl-decoration-none--force,.text-xl-none--force{text-decoration:none!important}.text-xl-super{vertical-align:super}.text-xl-super--force{vertical-align:super!important}.text-xl-sub{vertical-align:sub}.text-xl-sub--force{vertical-align:sub!important}.text-xl-capitalize{text-transform:capitalize}.text-xl-capitalize--force{text-transform:capitalize!important}.text-xl-lowercase{text-transform:lowercase}.text-xl-lowercase--force{text-transform:lowercase!important}.text-xl-uppercase{text-transform:uppercase}.text-xl-uppercase--force{text-transform:uppercase!important}.text-xl-nowrap{white-space:nowrap}.text-xl-left{text-align:left}.text-xl-left--force{text-align:left!important}.text-xl-center{text-align:center}.text-xl-center--force{text-align:center!important}.text-xl-right{text-align:right}.text-xl-right--force{text-align:right!important}.text-xl-boxed{border-radius:2px;padding:4px 8px;margin:0 8px;font-size:11px;font-weight:600;white-space:nowrap}.text-xl-ellipsis,.text-xl-truncate{display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.overflow-xl-auto{overflow:auto}.overflow-xl-auto--force{overflow:auto!important}.overflow-xl-scroll{overflow:scroll}.overflow-xl-scroll--force{overflow:scroll!important}.overflow-xl-hidden{overflow:hidden}.overflow-xl-hidden--force{overflow:hidden!important}.overflow-xl-overlay{overflow:overlay}.overflow-xl-overlay--force{overflow:overlay!important}.overflow-x-xl-auto{overflow-x:auto}.overflow-x-xl-auto--force{overflow-x:auto!important}.overflow-x-xl-scroll{overflow-x:scroll}.overflow-x-xl-scroll--force{overflow-x:scroll!important}.overflow-x-xl-hidden{overflow-x:hidden}.overflow-x-xl-hidden--force{overflow-x:hidden!important}.overflow-x-xl-overlay{overflow-x:overlay}.overflow-x-xl-overlay--force{overflow-x:overlay!important}.overflow-y-xl-auto{overflow-y:auto}.overflow-y-xl-auto--force{overflow-y:auto!important}.overflow-y-xl-scroll{overflow-y:scroll}.overflow-y-xl-scroll--force{overflow-y:scroll!important}.overflow-y-xl-hidden{overflow-y:hidden}.overflow-y-xl-hidden--force{overflow-y:hidden!important}.overflow-y-xl-overlay{overflow-y:overlay}.overflow-y-xl-overlay--force{overflow-y:overlay!important}.b-xl-0,.border-xl-0{border:0 solid}.bb-xl-0,.border-bottom-xl-0{border-bottom:0 solid}.bb-xl-0--force,.border-bottom-xl-0--force{border-bottom:0 solid!important}.border-top-xl-0,.bt-xl-0{border-top:0 solid}.border-top-xl-0--force,.bt-xl-0--force{border-top:0 solid!important}.bl-xl-0,.border-left-xl-0{border-left:0 solid}.bl-xl-0--force,.border-left-xl-0--force{border-left:0 solid!important}.border-right-xl-0,.br-xl-0{border-right:0px solid}.border-right-xl-0--force,.br-xl-0--force{border-right:0px solid!important}.b-xl-2,.border-xl-2{border:2px solid}.bb-xl-2,.border-bottom-xl-2{border-bottom:2px solid}.bb-xl-2--force,.border-bottom-xl-2--force{border-bottom:2px solid!important}.border-top-xl-2,.bt-xl-2{border-top:2px solid}.border-top-xl-2--force,.bt-xl-2--force{border-top:2px solid!important}.bl-xl-2,.border-left-xl-2{border-left:2px solid}.bl-xl-2--force,.border-left-xl-2--force{border-left:2px solid!important}.border-right-xl-2,.br-xl-2{border-right:2px solid}.border-right-xl-2--force,.br-xl-2--force{border-right:2px solid!important}.b-xl-4,.border-xl-4{border:4px solid}.bb-xl-4,.border-bottom-xl-4{border-bottom:4px solid}.bb-xl-4--force,.border-bottom-xl-4--force{border-bottom:4px solid!important}.border-top-xl-4,.bt-xl-4{border-top:4px solid}.border-top-xl-4--force,.bt-xl-4--force{border-top:4px solid!important}.bl-xl-4,.border-left-xl-4{border-left:4px solid}.bl-xl-4--force,.border-left-xl-4--force{border-left:4px solid!important}.border-right-xl-4,.br-xl-4{border-right:4px solid}.border-right-xl-4--force,.br-xl-4--force{border-right:4px solid!important}.b-xl-6,.border-xl-6{border:6px solid}.bb-xl-6,.border-bottom-xl-6{border-bottom:6px solid}.bb-xl-6--force,.border-bottom-xl-6--force{border-bottom:6px solid!important}.border-top-xl-6,.bt-xl-6{border-top:6px solid}.border-top-xl-6--force,.bt-xl-6--force{border-top:6px solid!important}.bl-xl-6,.border-left-xl-6{border-left:6px solid}.bl-xl-6--force,.border-left-xl-6--force{border-left:6px solid!important}.border-right-xl-6,.br-xl-6{border-right:6px solid}.border-right-xl-6--force,.br-xl-6--force{border-right:6px solid!important}.b-xl-8,.border-xl-8{border:8px solid}.bb-xl-8,.border-bottom-xl-8{border-bottom:8px solid}.bb-xl-8--force,.border-bottom-xl-8--force{border-bottom:8px solid!important}.border-top-xl-8,.bt-xl-8{border-top:8px solid}.border-top-xl-8--force,.bt-xl-8--force{border-top:8px solid!important}.bl-xl-8,.border-left-xl-8{border-left:8px solid}.bl-xl-8--force,.border-left-xl-8--force{border-left:8px solid!important}.border-right-xl-8,.br-xl-8{border-right:8px solid}.border-right-xl-8--force,.br-xl-8--force{border-right:8px solid!important}.b-xl-none,.border-xl-none{border:none}.b-xl-none--force,.border-xl-none--force{border:none!important}.border-style-xl-solid{border-style:solid}.border-style-xl-solid--force{border-style:solid!important}.border-style-xl-dashed{border-style:dashed}.border-style-xl-dashed--force{border-style:dashed!important}.border-style-xl-dotted{border-style:dotted}.border-style-xl-dotted--force{border-style:dotted!important}.border-style-xl-double{border-style:double}.border-style-xl-double--force{border-style:double!important}.border-style-xl-groove{border-style:groove}.border-style-xl-groove--force{border-style:groove!important}.border-style-xl-ridge{border-style:ridge}.border-style-xl-ridge--force{border-style:ridge!important}.border-style-xl-inset{border-style:inset}.border-style-xl-inset--force{border-style:inset!important}.border-style-xl-outset{border-style:outset}.border-style-xl-outset--force{border-style:outset!important}.border-style-xl-none{border-style:none}.border-style-xl-none--force{border-style:none!important}.radius-bottom-xl-0,.radius-left-xl-0,.radius-right-xl-0,.radius-top-xl-0,.radius-xl-0,.radius-xl-none{border-radius:0}.radius-bottom-xl-0--force,.radius-left-xl-0--force,.radius-right-xl-0--force,.radius-top-xl-0--force,.radius-xl-none--force{border-radius:0!important}.radius-xl-2{border-radius:2px}.radius-bottom-xl-2{border-radius:0 0 2px 2px}.radius-bottom-xl-2--force{border-radius:0 0 2px 2px!important}.radius-top-xl-2{border-radius:2px 2px 0 0}.radius-top-xl-2--force{border-radius:2px 2px 0 0!important}.radius-left-xl-2{border-radius:2px 0 0 2px}.radius-left-xl-2--force{border-radius:2px 0 0 2px!important}.radius-right-xl-2{border-radius:0 2px 2px 0}.radius-right-xl-2--force{border-radius:0 2px 2px 0!important}.radius-xl-4{border-radius:4px}.radius-bottom-xl-4{border-radius:0 0 4px 4px}.radius-bottom-xl-4--force{border-radius:0 0 4px 4px!important}.radius-top-xl-4{border-radius:4px 4px 0 0}.radius-top-xl-4--force{border-radius:4px 4px 0 0!important}.radius-left-xl-4{border-radius:4px 0 0 4px}.radius-left-xl-4--force{border-radius:4px 0 0 4px!important}.radius-right-xl-4{border-radius:0 4px 4px 0}.radius-right-xl-4--force{border-radius:0 4px 4px 0!important}.radius-xl-6{border-radius:6px}.radius-bottom-xl-6{border-radius:0 0 6px 6px}.radius-bottom-xl-6--force{border-radius:0 0 6px 6px!important}.radius-top-xl-6{border-radius:6px 6px 0 0}.radius-top-xl-6--force{border-radius:6px 6px 0 0!important}.radius-left-xl-6{border-radius:6px 0 0 6px}.radius-left-xl-6--force{border-radius:6px 0 0 6px!important}.radius-right-xl-6{border-radius:0 6px 6px 0}.radius-right-xl-6--force{border-radius:0 6px 6px 0!important}.radius-xl-8{border-radius:8px}.radius-bottom-xl-8{border-radius:0 0 8px 8px}.radius-bottom-xl-8--force{border-radius:0 0 8px 8px!important}.radius-top-xl-8{border-radius:8px 8px 0 0}.radius-top-xl-8--force{border-radius:8px 8px 0 0!important}.radius-left-xl-8{border-radius:8px 0 0 8px}.radius-left-xl-8--force{border-radius:8px 0 0 8px!important}.radius-right-xl-8{border-radius:0 8px 8px 0}.radius-right-xl-8--force{border-radius:0 8px 8px 0!important}.radius-xl-10{border-radius:10px}.radius-bottom-xl-10{border-radius:0 0 10px 10px}.radius-bottom-xl-10--force{border-radius:0 0 10px 10px!important}.radius-top-xl-10{border-radius:10px 10px 0 0}.radius-top-xl-10--force{border-radius:10px 10px 0 0!important}.radius-left-xl-10{border-radius:10px 0 0 10px}.radius-left-xl-10--force{border-radius:10px 0 0 10px!important}.radius-right-xl-10{border-radius:0 10px 10px 0}.radius-right-xl-10--force{border-radius:0 10px 10px 0!important}.radius-xl-12{border-radius:12px}.radius-bottom-xl-12{border-radius:0 0 12px 12px}.radius-bottom-xl-12--force{border-radius:0 0 12px 12px!important}.radius-top-xl-12{border-radius:12px 12px 0 0}.radius-top-xl-12--force{border-radius:12px 12px 0 0!important}.radius-left-xl-12{border-radius:12px 0 0 12px}.radius-left-xl-12--force{border-radius:12px 0 0 12px!important}.radius-right-xl-12{border-radius:0 12px 12px 0}.radius-right-xl-12--force{border-radius:0 12px 12px 0!important}.radius-xl-14{border-radius:14px}.radius-bottom-xl-14{border-radius:0 0 14px 14px}.radius-bottom-xl-14--force{border-radius:0 0 14px 14px!important}.radius-top-xl-14{border-radius:14px 14px 0 0}.radius-top-xl-14--force{border-radius:14px 14px 0 0!important}.radius-left-xl-14{border-radius:14px 0 0 14px}.radius-left-xl-14--force{border-radius:14px 0 0 14px!important}.radius-right-xl-14{border-radius:0 14px 14px 0}.radius-right-xl-14--force{border-radius:0 14px 14px 0!important}.radius-xl-16{border-radius:16px}.radius-bottom-xl-16{border-radius:0 0 16px 16px}.radius-bottom-xl-16--force{border-radius:0 0 16px 16px!important}.radius-top-xl-16{border-radius:16px 16px 0 0}.radius-top-xl-16--force{border-radius:16px 16px 0 0!important}.radius-left-xl-16{border-radius:16px 0 0 16px}.radius-left-xl-16--force{border-radius:16px 0 0 16px!important}.radius-right-xl-16{border-radius:0 16px 16px 0}.radius-right-xl-16--force{border-radius:0 16px 16px 0!important}.radius-xl-18{border-radius:18px}.radius-bottom-xl-18{border-radius:0 0 18px 18px}.radius-bottom-xl-18--force{border-radius:0 0 18px 18px!important}.radius-top-xl-18{border-radius:18px 18px 0 0}.radius-top-xl-18--force{border-radius:18px 18px 0 0!important}.radius-left-xl-18{border-radius:18px 0 0 18px}.radius-left-xl-18--force{border-radius:18px 0 0 18px!important}.radius-right-xl-18{border-radius:0 18px 18px 0}.radius-right-xl-18--force{border-radius:0 18px 18px 0!important}.radius-xl-20{border-radius:20px}.radius-bottom-xl-20{border-radius:0 0 20px 20px}.radius-bottom-xl-20--force{border-radius:0 0 20px 20px!important}.radius-top-xl-20{border-radius:20px 20px 0 0}.radius-top-xl-20--force{border-radius:20px 20px 0 0!important}.radius-left-xl-20{border-radius:20px 0 0 20px}.radius-left-xl-20--force{border-radius:20px 0 0 20px!important}.radius-right-xl-20{border-radius:0 20px 20px 0}.radius-right-xl-20--force{border-radius:0 20px 20px 0!important}.radius-xl-22{border-radius:22px}.radius-bottom-xl-22{border-radius:0 0 22px 22px}.radius-bottom-xl-22--force{border-radius:0 0 22px 22px!important}.radius-top-xl-22{border-radius:22px 22px 0 0}.radius-top-xl-22--force{border-radius:22px 22px 0 0!important}.radius-left-xl-22{border-radius:22px 0 0 22px}.radius-left-xl-22--force{border-radius:22px 0 0 22px!important}.radius-right-xl-22{border-radius:0 22px 22px 0}.radius-right-xl-22--force{border-radius:0 22px 22px 0!important}.radius-xl-24{border-radius:24px}.radius-bottom-xl-24{border-radius:0 0 24px 24px}.radius-bottom-xl-24--force{border-radius:0 0 24px 24px!important}.radius-top-xl-24{border-radius:24px 24px 0 0}.radius-top-xl-24--force{border-radius:24px 24px 0 0!important}.radius-left-xl-24{border-radius:24px 0 0 24px}.radius-left-xl-24--force{border-radius:24px 0 0 24px!important}.radius-right-xl-24{border-radius:0 24px 24px 0}.radius-right-xl-24--force{border-radius:0 24px 24px 0!important}.radius-xl-full{border-radius:9999px}.radius-xl-full--force{border-radius:9999px!important}.line-clamp-xl-0,.line-clamp-xl-1,.line-clamp-xl-2,.line-clamp-xl-3,.line-clamp-xl-4,.line-clamp-xl-5,.line-clamp-xl-6{overflow:hidden;display:-webkit-box;text-overflow:ellipsis;word-break:break-word;white-space:initial;-webkit-box-orient:vertical}.line-clamp-xl-0{-webkit-line-clamp:0;line-clamp:0}.line-clamp-xl-1{-webkit-line-clamp:1;line-clamp:1}.line-clamp-xl-2{-webkit-line-clamp:2;line-clamp:2}.line-clamp-xl-3{-webkit-line-clamp:3;line-clamp:3}.line-clamp-xl-4{-webkit-line-clamp:4;line-clamp:4}.line-clamp-xl-5{-webkit-line-clamp:5;line-clamp:5}.line-clamp-xl-6{-webkit-line-clamp:6;line-clamp:6}.line-clamp-xl-none{overflow:visible;display:block;-webkit-box-orient:horizontal;-webkit-line-clamp:none;line-clamp:none}.masonry-xl-1{column-count:1}.masonry-xl-10>*,.masonry-xl-11>*,.masonry-xl-12>*,.masonry-xl-1>*,.masonry-xl-2>*,.masonry-xl-3>*,.masonry-xl-4>*,.masonry-xl-5>*,.masonry-xl-6>*,.masonry-xl-7>*,.masonry-xl-8>*,.masonry-xl-9>*{break-inside:avoid;display:inline-block;width:100%}.masonry-xl-2{column-count:2}.masonry-xl-3{column-count:3}.masonry-xl-4{column-count:4}.masonry-xl-5{column-count:5}.masonry-xl-6{column-count:6}.masonry-xl-7{column-count:7}.masonry-xl-8{column-count:8}.masonry-xl-9{column-count:9}.masonry-xl-10{column-count:10}.masonry-xl-11{column-count:11}.masonry-xl-12{column-count:12}.masonry-gap-xl-0{column-gap:0}.masonry-gap-xl-4{column-gap:4px}.masonry-gap-xl-8{column-gap:8px}.masonry-gap-xl-12{column-gap:12px}.masonry-gap-xl-16{column-gap:16px}.masonry-gap-xl-20{column-gap:20px}.masonry-gap-xl-24{column-gap:24px}.masonry-gap-xl-28{column-gap:28px}.masonry-gap-xl-32{column-gap:32px}.masonry-gap-xl-36{column-gap:36px}.masonry-gap-xl-40{column-gap:40px}.masonry-gap-xl-44{column-gap:44px}.masonry-gap-xl-48{column-gap:48px}}

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