@charset "UTF-8";

/* node_modules/ngx-loading-buttons/src/styles.css */
:root {
  --glow-color: #3072bd;
}
@keyframes mat-spinner {
  to {
    transform: rotate(360deg);
  }
}
.mat-spinner::after {
  content: "";
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  margin-left: -10px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  border-top-color: #000000;
  animation: mat-spinner .8s linear infinite;
}
.hide-btn-text {
  color: transparent !important;
}
.mat-glow {
  animation: glow 1s infinite alternate;
}
@keyframes glow {
  from {
    box-shadow: 0 0 3px -3px var(--glow-color);
  }
  to {
    box-shadow: 0 0 3px 3px var(--glow-color);
  }
}

/* node_modules/intl-tel-input/build/css/intlTelInput.css */
:root {
  --iti-hover-color: rgba(0, 0, 0, 0.05);
  --iti-border-color: #ccc;
  --iti-dialcode-color: #999;
  --iti-dropdown-bg: white;
  --iti-icon-color: #555;
  --iti-spacer-horizontal: 8px;
  --iti-flag-height: 12px;
  --iti-flag-width: 16px;
  --iti-globe-height: 16px;
  --iti-border-width: 1px;
  --iti-arrow-height: 4px;
  --iti-arrow-width: 6px;
  --iti-triangle-border: calc(var(--iti-arrow-width) / 2);
  --iti-arrow-padding: 6px;
  --iti-flag-sprite-width: 3904px;
  --iti-flag-sprite-height: 12px;
  --iti-mobile-popup-margin: 30px;
}
.iti {
  position: relative;
  display: inline-block;
}
.iti * {
  box-sizing: border-box;
}
.iti__a11y-text {
  width: 1px;
  height: 1px;
  clip: rect(1px, 1px, 1px, 1px);
  overflow: hidden;
  position: absolute;
}
.iti input.iti__tel-input,
.iti input.iti__tel-input[type=text],
.iti input.iti__tel-input[type=tel] {
  position: relative;
  z-index: 0;
  margin: 0 !important;
}
.iti__country-container {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  padding: var(--iti-border-width);
}
.iti__selected-country {
  z-index: 1;
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  background: none;
  border: 0;
  margin: 0;
  padding: 0;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  border-radius: 0;
  font-weight: inherit;
  line-height: inherit;
  text-decoration: none;
}
.iti__selected-country-primary {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 var(--iti-arrow-padding) 0 var(--iti-spacer-horizontal);
}
.iti__arrow {
  margin-left: var(--iti-arrow-padding);
  width: 0;
  height: 0;
  border-left: var(--iti-triangle-border) solid transparent;
  border-right: var(--iti-triangle-border) solid transparent;
  border-top: var(--iti-arrow-height) solid var(--iti-icon-color);
}
.iti__arrow--up {
  border-top: none;
  border-bottom: var(--iti-arrow-height) solid var(--iti-icon-color);
}
.iti__dropdown-content {
  border-radius: 3px;
  background-color: var(--iti-dropdown-bg);
}
.iti--inline-dropdown .iti__dropdown-content {
  position: absolute;
  z-index: 2;
  margin-top: 3px;
  margin-left: calc(var(--iti-border-width) * -1);
  border: var(--iti-border-width) solid var(--iti-border-color);
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}
.iti__search-input {
  width: 100%;
  border-width: 0;
  border-radius: 3px;
  padding-left: 30px;
  padding-right: 28px;
}
[dir=rtl] .iti__search-input {
  padding-left: inherit;
  padding-right: 30px;
  background-position: right 8px center;
}
.iti__search-input + .iti__country-list {
  border-top: 1px solid var(--iti-border-color);
}
.iti__search-input::-webkit-search-cancel-button {
  appearance: none;
}
.iti__search-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.iti__search-icon {
  position: absolute;
  left: 8px;
  display: flex;
  pointer-events: none;
}
[dir=rtl] .iti__search-icon {
  left: auto;
  right: 8px;
}
.iti__search-icon-svg {
  stroke: var(--iti-icon-color);
  fill: none;
  stroke-width: 3;
}
.iti__search-clear {
  position: absolute;
  right: 4px;
  background: transparent;
  border: 0;
  border-radius: 3px;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.15s ease;
  width: 24px;
  height: 24px;
}
.iti__search-clear .iti__search-clear-x {
  stroke-width: 2;
}
.iti__search-clear .iti__search-clear-bg {
  fill: var(--iti-icon-color);
}
[dir=rtl] .iti__search-clear {
  right: auto;
  left: 4px;
}
.iti__search-clear:hover,
.iti__search-clear:focus-visible {
  background: var(--iti-hover-color);
  outline: none;
}
.iti__no-results {
  text-align: center;
  padding: 30px 0;
}
.iti__country-list {
  list-style: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}
.iti--inline-dropdown .iti__country-list {
  max-height: 185px;
}
.iti--flexible-dropdown-width .iti__country-list {
  white-space: nowrap;
}
@media (max-width: 500px) {
  .iti--flexible-dropdown-width .iti__country-list {
    white-space: normal;
  }
}
.iti__country {
  display: flex;
  align-items: center;
  padding: 8px var(--iti-spacer-horizontal);
  outline: none;
}
.iti__dial-code {
  color: var(--iti-dialcode-color);
}
.iti__country.iti__highlight {
  background-color: var(--iti-hover-color);
}
.iti__country-list .iti__flag,
.iti__country-name {
  margin-right: var(--iti-spacer-horizontal);
}
[dir=rtl] .iti__country-list .iti__flag,
[dir=rtl] .iti__country-name {
  margin-right: 0;
  margin-left: var(--iti-spacer-horizontal);
}
.iti--allow-dropdown .iti__country-container:not(:has(+ input[disabled])):not(:has(+ input[readonly])) button.iti__selected-country {
  cursor: pointer;
}
.iti--allow-dropdown .iti__country-container:not(:has(+ input[disabled])):not(:has(+ input[readonly])) .iti__selected-country-primary:hover,
.iti--allow-dropdown .iti__country-container:not(:has(+ input[disabled])):not(:has(+ input[readonly])) .iti__selected-country:has(+ .iti__dropdown-content:hover) .iti__selected-country-primary {
  background-color: var(--iti-hover-color);
}
.iti .iti__selected-dial-code {
  margin-left: 4px;
}
.iti--container {
  position: fixed;
  top: -1000px;
  left: -1000px;
  z-index: 1060;
  padding: var(--iti-border-width);
}
.iti--container:hover {
  cursor: pointer;
}
.iti__hide {
  display: none;
}
.iti__v-hide {
  visibility: hidden;
}
.iti--fullscreen-popup.iti--container {
  background-color: rgba(0, 0, 0, 0.5);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  position: fixed;
  padding: var(--iti-mobile-popup-margin);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.iti--fullscreen-popup .iti__dropdown-content {
  display: flex;
  flex-direction: column;
  max-height: 100%;
  position: relative;
}
.iti--fullscreen-popup .iti__country {
  padding: 10px 10px;
  line-height: 1.5em;
}
.iti__flag {
  --iti-flag-offset: 100px;
  height: var(--iti-flag-height);
  width: var(--iti-flag-width);
  border-radius: 1px;
  box-shadow: 0px 0px 1px 0px #888;
  background-image: image-set(var(--iti-path-flags-1x) 1x, var(--iti-path-flags-2x) 2x);
  background-repeat: no-repeat;
  background-position: var(--iti-flag-offset) 0;
  background-size: var(--iti-flag-sprite-width) var(--iti-flag-sprite-height);
}
.iti__ac {
  --iti-flag-offset: 0px;
}
.iti__ad {
  --iti-flag-offset: -16px;
}
.iti__ae {
  --iti-flag-offset: -32px;
}
.iti__af {
  --iti-flag-offset: -48px;
}
.iti__ag {
  --iti-flag-offset: -64px;
}
.iti__ai {
  --iti-flag-offset: -80px;
}
.iti__al {
  --iti-flag-offset: -96px;
}
.iti__am {
  --iti-flag-offset: -112px;
}
.iti__ao {
  --iti-flag-offset: -128px;
}
.iti__ar {
  --iti-flag-offset: -144px;
}
.iti__as {
  --iti-flag-offset: -160px;
}
.iti__at {
  --iti-flag-offset: -176px;
}
.iti__au {
  --iti-flag-offset: -192px;
}
.iti__aw {
  --iti-flag-offset: -208px;
}
.iti__ax {
  --iti-flag-offset: -224px;
}
.iti__az {
  --iti-flag-offset: -240px;
}
.iti__ba {
  --iti-flag-offset: -256px;
}
.iti__bb {
  --iti-flag-offset: -272px;
}
.iti__bd {
  --iti-flag-offset: -288px;
}
.iti__be {
  --iti-flag-offset: -304px;
}
.iti__bf {
  --iti-flag-offset: -320px;
}
.iti__bg {
  --iti-flag-offset: -336px;
}
.iti__bh {
  --iti-flag-offset: -352px;
}
.iti__bi {
  --iti-flag-offset: -368px;
}
.iti__bj {
  --iti-flag-offset: -384px;
}
.iti__bl {
  --iti-flag-offset: -400px;
}
.iti__bm {
  --iti-flag-offset: -416px;
}
.iti__bn {
  --iti-flag-offset: -432px;
}
.iti__bo {
  --iti-flag-offset: -448px;
}
.iti__bq {
  --iti-flag-offset: -464px;
}
.iti__br {
  --iti-flag-offset: -480px;
}
.iti__bs {
  --iti-flag-offset: -496px;
}
.iti__bt {
  --iti-flag-offset: -512px;
}
.iti__bw {
  --iti-flag-offset: -528px;
}
.iti__by {
  --iti-flag-offset: -544px;
}
.iti__bz {
  --iti-flag-offset: -560px;
}
.iti__ca {
  --iti-flag-offset: -576px;
}
.iti__cc {
  --iti-flag-offset: -592px;
}
.iti__cd {
  --iti-flag-offset: -608px;
}
.iti__cf {
  --iti-flag-offset: -624px;
}
.iti__cg {
  --iti-flag-offset: -640px;
}
.iti__ch {
  --iti-flag-offset: -656px;
}
.iti__ci {
  --iti-flag-offset: -672px;
}
.iti__ck {
  --iti-flag-offset: -688px;
}
.iti__cl {
  --iti-flag-offset: -704px;
}
.iti__cm {
  --iti-flag-offset: -720px;
}
.iti__cn {
  --iti-flag-offset: -736px;
}
.iti__co {
  --iti-flag-offset: -752px;
}
.iti__cr {
  --iti-flag-offset: -768px;
}
.iti__cu {
  --iti-flag-offset: -784px;
}
.iti__cv {
  --iti-flag-offset: -800px;
}
.iti__cw {
  --iti-flag-offset: -816px;
}
.iti__cx {
  --iti-flag-offset: -832px;
}
.iti__cy {
  --iti-flag-offset: -848px;
}
.iti__cz {
  --iti-flag-offset: -864px;
}
.iti__de {
  --iti-flag-offset: -880px;
}
.iti__dj {
  --iti-flag-offset: -896px;
}
.iti__dk {
  --iti-flag-offset: -912px;
}
.iti__dm {
  --iti-flag-offset: -928px;
}
.iti__do {
  --iti-flag-offset: -944px;
}
.iti__dz {
  --iti-flag-offset: -960px;
}
.iti__ec {
  --iti-flag-offset: -976px;
}
.iti__ee {
  --iti-flag-offset: -992px;
}
.iti__eg {
  --iti-flag-offset: -1008px;
}
.iti__eh {
  --iti-flag-offset: -1024px;
}
.iti__er {
  --iti-flag-offset: -1040px;
}
.iti__es {
  --iti-flag-offset: -1056px;
}
.iti__et {
  --iti-flag-offset: -1072px;
}
.iti__fi {
  --iti-flag-offset: -1088px;
}
.iti__fj {
  --iti-flag-offset: -1104px;
}
.iti__fk {
  --iti-flag-offset: -1120px;
}
.iti__fm {
  --iti-flag-offset: -1136px;
}
.iti__fo {
  --iti-flag-offset: -1152px;
}
.iti__fr {
  --iti-flag-offset: -1168px;
}
.iti__ga {
  --iti-flag-offset: -1184px;
}
.iti__gb {
  --iti-flag-offset: -1200px;
}
.iti__gd {
  --iti-flag-offset: -1216px;
}
.iti__ge {
  --iti-flag-offset: -1232px;
}
.iti__gf {
  --iti-flag-offset: -1248px;
}
.iti__gg {
  --iti-flag-offset: -1264px;
}
.iti__gh {
  --iti-flag-offset: -1280px;
}
.iti__gi {
  --iti-flag-offset: -1296px;
}
.iti__gl {
  --iti-flag-offset: -1312px;
}
.iti__gm {
  --iti-flag-offset: -1328px;
}
.iti__gn {
  --iti-flag-offset: -1344px;
}
.iti__gp {
  --iti-flag-offset: -1360px;
}
.iti__gq {
  --iti-flag-offset: -1376px;
}
.iti__gr {
  --iti-flag-offset: -1392px;
}
.iti__gt {
  --iti-flag-offset: -1408px;
}
.iti__gu {
  --iti-flag-offset: -1424px;
}
.iti__gw {
  --iti-flag-offset: -1440px;
}
.iti__gy {
  --iti-flag-offset: -1456px;
}
.iti__hk {
  --iti-flag-offset: -1472px;
}
.iti__hn {
  --iti-flag-offset: -1488px;
}
.iti__hr {
  --iti-flag-offset: -1504px;
}
.iti__ht {
  --iti-flag-offset: -1520px;
}
.iti__hu {
  --iti-flag-offset: -1536px;
}
.iti__id {
  --iti-flag-offset: -1552px;
}
.iti__ie {
  --iti-flag-offset: -1568px;
}
.iti__il {
  --iti-flag-offset: -1584px;
}
.iti__im {
  --iti-flag-offset: -1600px;
}
.iti__in {
  --iti-flag-offset: -1616px;
}
.iti__io {
  --iti-flag-offset: -1632px;
}
.iti__iq {
  --iti-flag-offset: -1648px;
}
.iti__ir {
  --iti-flag-offset: -1664px;
}
.iti__is {
  --iti-flag-offset: -1680px;
}
.iti__it {
  --iti-flag-offset: -1696px;
}
.iti__je {
  --iti-flag-offset: -1712px;
}
.iti__jm {
  --iti-flag-offset: -1728px;
}
.iti__jo {
  --iti-flag-offset: -1744px;
}
.iti__jp {
  --iti-flag-offset: -1760px;
}
.iti__ke {
  --iti-flag-offset: -1776px;
}
.iti__kg {
  --iti-flag-offset: -1792px;
}
.iti__kh {
  --iti-flag-offset: -1808px;
}
.iti__ki {
  --iti-flag-offset: -1824px;
}
.iti__km {
  --iti-flag-offset: -1840px;
}
.iti__kn {
  --iti-flag-offset: -1856px;
}
.iti__kp {
  --iti-flag-offset: -1872px;
}
.iti__kr {
  --iti-flag-offset: -1888px;
}
.iti__kw {
  --iti-flag-offset: -1904px;
}
.iti__ky {
  --iti-flag-offset: -1920px;
}
.iti__kz {
  --iti-flag-offset: -1936px;
}
.iti__la {
  --iti-flag-offset: -1952px;
}
.iti__lb {
  --iti-flag-offset: -1968px;
}
.iti__lc {
  --iti-flag-offset: -1984px;
}
.iti__li {
  --iti-flag-offset: -2000px;
}
.iti__lk {
  --iti-flag-offset: -2016px;
}
.iti__lr {
  --iti-flag-offset: -2032px;
}
.iti__ls {
  --iti-flag-offset: -2048px;
}
.iti__lt {
  --iti-flag-offset: -2064px;
}
.iti__lu {
  --iti-flag-offset: -2080px;
}
.iti__lv {
  --iti-flag-offset: -2096px;
}
.iti__ly {
  --iti-flag-offset: -2112px;
}
.iti__ma {
  --iti-flag-offset: -2128px;
}
.iti__mc {
  --iti-flag-offset: -2144px;
}
.iti__md {
  --iti-flag-offset: -2160px;
}
.iti__me {
  --iti-flag-offset: -2176px;
}
.iti__mf {
  --iti-flag-offset: -2192px;
}
.iti__mg {
  --iti-flag-offset: -2208px;
}
.iti__mh {
  --iti-flag-offset: -2224px;
}
.iti__mk {
  --iti-flag-offset: -2240px;
}
.iti__ml {
  --iti-flag-offset: -2256px;
}
.iti__mm {
  --iti-flag-offset: -2272px;
}
.iti__mn {
  --iti-flag-offset: -2288px;
}
.iti__mo {
  --iti-flag-offset: -2304px;
}
.iti__mp {
  --iti-flag-offset: -2320px;
}
.iti__mq {
  --iti-flag-offset: -2336px;
}
.iti__mr {
  --iti-flag-offset: -2352px;
}
.iti__ms {
  --iti-flag-offset: -2368px;
}
.iti__mt {
  --iti-flag-offset: -2384px;
}
.iti__mu {
  --iti-flag-offset: -2400px;
}
.iti__mv {
  --iti-flag-offset: -2416px;
}
.iti__mw {
  --iti-flag-offset: -2432px;
}
.iti__mx {
  --iti-flag-offset: -2448px;
}
.iti__my {
  --iti-flag-offset: -2464px;
}
.iti__mz {
  --iti-flag-offset: -2480px;
}
.iti__na {
  --iti-flag-offset: -2496px;
}
.iti__nc {
  --iti-flag-offset: -2512px;
}
.iti__ne {
  --iti-flag-offset: -2528px;
}
.iti__nf {
  --iti-flag-offset: -2544px;
}
.iti__ng {
  --iti-flag-offset: -2560px;
}
.iti__ni {
  --iti-flag-offset: -2576px;
}
.iti__nl {
  --iti-flag-offset: -2592px;
}
.iti__no {
  --iti-flag-offset: -2608px;
}
.iti__np {
  --iti-flag-offset: -2624px;
}
.iti__nr {
  --iti-flag-offset: -2640px;
}
.iti__nu {
  --iti-flag-offset: -2656px;
}
.iti__nz {
  --iti-flag-offset: -2672px;
}
.iti__om {
  --iti-flag-offset: -2688px;
}
.iti__pa {
  --iti-flag-offset: -2704px;
}
.iti__pe {
  --iti-flag-offset: -2720px;
}
.iti__pf {
  --iti-flag-offset: -2736px;
}
.iti__pg {
  --iti-flag-offset: -2752px;
}
.iti__ph {
  --iti-flag-offset: -2768px;
}
.iti__pk {
  --iti-flag-offset: -2784px;
}
.iti__pl {
  --iti-flag-offset: -2800px;
}
.iti__pm {
  --iti-flag-offset: -2816px;
}
.iti__pr {
  --iti-flag-offset: -2832px;
}
.iti__ps {
  --iti-flag-offset: -2848px;
}
.iti__pt {
  --iti-flag-offset: -2864px;
}
.iti__pw {
  --iti-flag-offset: -2880px;
}
.iti__py {
  --iti-flag-offset: -2896px;
}
.iti__qa {
  --iti-flag-offset: -2912px;
}
.iti__re {
  --iti-flag-offset: -2928px;
}
.iti__ro {
  --iti-flag-offset: -2944px;
}
.iti__rs {
  --iti-flag-offset: -2960px;
}
.iti__ru {
  --iti-flag-offset: -2976px;
}
.iti__rw {
  --iti-flag-offset: -2992px;
}
.iti__sa {
  --iti-flag-offset: -3008px;
}
.iti__sb {
  --iti-flag-offset: -3024px;
}
.iti__sc {
  --iti-flag-offset: -3040px;
}
.iti__sd {
  --iti-flag-offset: -3056px;
}
.iti__se {
  --iti-flag-offset: -3072px;
}
.iti__sg {
  --iti-flag-offset: -3088px;
}
.iti__sh {
  --iti-flag-offset: -3104px;
}
.iti__si {
  --iti-flag-offset: -3120px;
}
.iti__sj {
  --iti-flag-offset: -3136px;
}
.iti__sk {
  --iti-flag-offset: -3152px;
}
.iti__sl {
  --iti-flag-offset: -3168px;
}
.iti__sm {
  --iti-flag-offset: -3184px;
}
.iti__sn {
  --iti-flag-offset: -3200px;
}
.iti__so {
  --iti-flag-offset: -3216px;
}
.iti__sr {
  --iti-flag-offset: -3232px;
}
.iti__ss {
  --iti-flag-offset: -3248px;
}
.iti__st {
  --iti-flag-offset: -3264px;
}
.iti__sv {
  --iti-flag-offset: -3280px;
}
.iti__sx {
  --iti-flag-offset: -3296px;
}
.iti__sy {
  --iti-flag-offset: -3312px;
}
.iti__sz {
  --iti-flag-offset: -3328px;
}
.iti__tc {
  --iti-flag-offset: -3344px;
}
.iti__td {
  --iti-flag-offset: -3360px;
}
.iti__tg {
  --iti-flag-offset: -3376px;
}
.iti__th {
  --iti-flag-offset: -3392px;
}
.iti__tj {
  --iti-flag-offset: -3408px;
}
.iti__tk {
  --iti-flag-offset: -3424px;
}
.iti__tl {
  --iti-flag-offset: -3440px;
}
.iti__tm {
  --iti-flag-offset: -3456px;
}
.iti__tn {
  --iti-flag-offset: -3472px;
}
.iti__to {
  --iti-flag-offset: -3488px;
}
.iti__tr {
  --iti-flag-offset: -3504px;
}
.iti__tt {
  --iti-flag-offset: -3520px;
}
.iti__tv {
  --iti-flag-offset: -3536px;
}
.iti__tw {
  --iti-flag-offset: -3552px;
}
.iti__tz {
  --iti-flag-offset: -3568px;
}
.iti__ua {
  --iti-flag-offset: -3584px;
}
.iti__ug {
  --iti-flag-offset: -3600px;
}
.iti__us {
  --iti-flag-offset: -3616px;
}
.iti__uy {
  --iti-flag-offset: -3632px;
}
.iti__uz {
  --iti-flag-offset: -3648px;
}
.iti__va {
  --iti-flag-offset: -3664px;
}
.iti__vc {
  --iti-flag-offset: -3680px;
}
.iti__ve {
  --iti-flag-offset: -3696px;
}
.iti__vg {
  --iti-flag-offset: -3712px;
}
.iti__vi {
  --iti-flag-offset: -3728px;
}
.iti__vn {
  --iti-flag-offset: -3744px;
}
.iti__vu {
  --iti-flag-offset: -3760px;
}
.iti__wf {
  --iti-flag-offset: -3776px;
}
.iti__ws {
  --iti-flag-offset: -3792px;
}
.iti__xk {
  --iti-flag-offset: -3808px;
}
.iti__ye {
  --iti-flag-offset: -3824px;
}
.iti__yt {
  --iti-flag-offset: -3840px;
}
.iti__za {
  --iti-flag-offset: -3856px;
}
.iti__zm {
  --iti-flag-offset: -3872px;
}
.iti__zw {
  --iti-flag-offset: -3888px;
}
.iti__globe {
  background: none;
  box-shadow: none;
  height: var(--iti-globe-height);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.iti__globe .iti__globe-svg {
  width: 100%;
  height: 100%;
  fill: var(--iti-icon-color);
}
:root {
  --iti-path-flags-1x: url("./media/flags-VTE3O4QA.webp");
  --iti-path-flags-2x: url("./media/flags@2x-HCMRVUXI.webp");
}

/* node_modules/flatpickr/dist/flatpickr.css */
.flatpickr-calendar {
  background: transparent;
  opacity: 0;
  display: none;
  text-align: center;
  visibility: hidden;
  padding: 0;
  -webkit-animation: none;
  animation: none;
  direction: ltr;
  border: 0;
  font-size: 14px;
  line-height: 24px;
  border-radius: 5px;
  position: absolute;
  width: 307.875px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  background: #fff;
  -webkit-box-shadow:
    1px 0 0 #e6e6e6,
    -1px 0 0 #e6e6e6,
    0 1px 0 #e6e6e6,
    0 -1px 0 #e6e6e6,
    0 3px 13px rgba(0, 0, 0, 0.08);
  box-shadow:
    1px 0 0 #e6e6e6,
    -1px 0 0 #e6e6e6,
    0 1px 0 #e6e6e6,
    0 -1px 0 #e6e6e6,
    0 3px 13px rgba(0, 0, 0, 0.08);
}
.flatpickr-calendar.open,
.flatpickr-calendar.inline {
  opacity: 1;
  max-height: 640px;
  visibility: visible;
}
.flatpickr-calendar.open {
  display: inline-block;
  z-index: 99999;
}
.flatpickr-calendar.animate.open {
  -webkit-animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);
  animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.flatpickr-calendar.inline {
  display: block;
  position: relative;
  top: 2px;
}
.flatpickr-calendar.static {
  position: absolute;
  top: calc(100% + 2px);
}
.flatpickr-calendar.static.open {
  z-index: 999;
  display: block;
}
.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+1) .flatpickr-day.inRange:nth-child(7n+7) {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}
.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+2) .flatpickr-day.inRange:nth-child(7n+1) {
  -webkit-box-shadow: -2px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
  box-shadow: -2px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
}
.flatpickr-calendar .hasWeeks .dayContainer,
.flatpickr-calendar .hasTime .dayContainer {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.flatpickr-calendar .hasWeeks .dayContainer {
  border-left: 0;
}
.flatpickr-calendar.hasTime .flatpickr-time {
  height: 40px;
  border-top: 1px solid #e6e6e6;
}
.flatpickr-calendar.noCalendar.hasTime .flatpickr-time {
  height: auto;
}
.flatpickr-calendar:before,
.flatpickr-calendar:after {
  position: absolute;
  display: block;
  pointer-events: none;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  left: 22px;
}
.flatpickr-calendar.rightMost:before,
.flatpickr-calendar.arrowRight:before,
.flatpickr-calendar.rightMost:after,
.flatpickr-calendar.arrowRight:after {
  left: auto;
  right: 22px;
}
.flatpickr-calendar.arrowCenter:before,
.flatpickr-calendar.arrowCenter:after {
  left: 50%;
  right: 50%;
}
.flatpickr-calendar:before {
  border-width: 5px;
  margin: 0 -5px;
}
.flatpickr-calendar:after {
  border-width: 4px;
  margin: 0 -4px;
}
.flatpickr-calendar.arrowTop:before,
.flatpickr-calendar.arrowTop:after {
  bottom: 100%;
}
.flatpickr-calendar.arrowTop:before {
  border-bottom-color: #e6e6e6;
}
.flatpickr-calendar.arrowTop:after {
  border-bottom-color: #fff;
}
.flatpickr-calendar.arrowBottom:before,
.flatpickr-calendar.arrowBottom:after {
  top: 100%;
}
.flatpickr-calendar.arrowBottom:before {
  border-top-color: #e6e6e6;
}
.flatpickr-calendar.arrowBottom:after {
  border-top-color: #fff;
}
.flatpickr-calendar:focus {
  outline: 0;
}
.flatpickr-wrapper {
  position: relative;
  display: inline-block;
}
.flatpickr-months {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.flatpickr-months .flatpickr-month {
  background: transparent;
  color: rgba(0, 0, 0, 0.9);
  fill: rgba(0, 0, 0, 0.9);
  height: 34px;
  line-height: 1;
  text-align: center;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  overflow: hidden;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-decoration: none;
  cursor: pointer;
  position: absolute;
  top: 0;
  height: 34px;
  padding: 10px;
  z-index: 3;
  color: rgba(0, 0, 0, 0.9);
  fill: rgba(0, 0, 0, 0.9);
}
.flatpickr-months .flatpickr-prev-month.flatpickr-disabled,
.flatpickr-months .flatpickr-next-month.flatpickr-disabled {
  display: none;
}
.flatpickr-months .flatpickr-prev-month i,
.flatpickr-months .flatpickr-next-month i {
  position: relative;
}
.flatpickr-months .flatpickr-prev-month.flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month.flatpickr-prev-month {
  left: 0;
}
.flatpickr-months .flatpickr-prev-month.flatpickr-next-month,
.flatpickr-months .flatpickr-next-month.flatpickr-next-month {
  right: 0;
}
.flatpickr-months .flatpickr-prev-month:hover,
.flatpickr-months .flatpickr-next-month:hover {
  color: #959ea9;
}
.flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-months .flatpickr-next-month:hover svg {
  fill: #f64747;
}
.flatpickr-months .flatpickr-prev-month svg,
.flatpickr-months .flatpickr-next-month svg {
  width: 14px;
  height: 14px;
}
.flatpickr-months .flatpickr-prev-month svg path,
.flatpickr-months .flatpickr-next-month svg path {
  -webkit-transition: fill 0.1s;
  transition: fill 0.1s;
  fill: inherit;
}
.numInputWrapper {
  position: relative;
  height: auto;
}
.numInputWrapper input,
.numInputWrapper span {
  display: inline-block;
}
.numInputWrapper input {
  width: 100%;
}
.numInputWrapper input::-ms-clear {
  display: none;
}
.numInputWrapper input::-webkit-outer-spin-button,
.numInputWrapper input::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}
.numInputWrapper span {
  position: absolute;
  right: 0;
  width: 14px;
  padding: 0 4px 0 2px;
  height: 50%;
  line-height: 50%;
  opacity: 0;
  cursor: pointer;
  border: 1px solid rgba(57, 57, 57, 0.15);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.numInputWrapper span:hover {
  background: rgba(0, 0, 0, 0.1);
}
.numInputWrapper span:active {
  background: rgba(0, 0, 0, 0.2);
}
.numInputWrapper span:after {
  display: block;
  content: "";
  position: absolute;
}
.numInputWrapper span.arrowUp {
  top: 0;
  border-bottom: 0;
}
.numInputWrapper span.arrowUp:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 4px solid rgba(57, 57, 57, 0.6);
  top: 26%;
}
.numInputWrapper span.arrowDown {
  top: 50%;
}
.numInputWrapper span.arrowDown:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid rgba(57, 57, 57, 0.6);
  top: 40%;
}
.numInputWrapper span svg {
  width: inherit;
  height: auto;
}
.numInputWrapper span svg path {
  fill: rgba(0, 0, 0, 0.5);
}
.numInputWrapper:hover {
  background: rgba(0, 0, 0, 0.05);
}
.numInputWrapper:hover span {
  opacity: 1;
}
.flatpickr-current-month {
  font-size: 135%;
  line-height: inherit;
  font-weight: 300;
  color: inherit;
  position: absolute;
  width: 75%;
  left: 12.5%;
  padding: 7.48px 0 0 0;
  line-height: 1;
  height: 34px;
  display: inline-block;
  text-align: center;
  -webkit-transform: translate3d(0px, 0px, 0px);
  transform: translate3d(0px, 0px, 0px);
}
.flatpickr-current-month span.cur-month {
  font-family: inherit;
  font-weight: 700;
  color: inherit;
  display: inline-block;
  margin-left: 0.5ch;
  padding: 0;
}
.flatpickr-current-month span.cur-month:hover {
  background: rgba(0, 0, 0, 0.05);
}
.flatpickr-current-month .numInputWrapper {
  width: 6ch;
  width: 7ch\fffd;
  display: inline-block;
}
.flatpickr-current-month .numInputWrapper span.arrowUp:after {
  border-bottom-color: rgba(0, 0, 0, 0.9);
}
.flatpickr-current-month .numInputWrapper span.arrowDown:after {
  border-top-color: rgba(0, 0, 0, 0.9);
}
.flatpickr-current-month input.cur-year {
  background: transparent;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: inherit;
  cursor: text;
  padding: 0 0 0 0.5ch;
  margin: 0;
  display: inline-block;
  font-size: inherit;
  font-family: inherit;
  font-weight: 300;
  line-height: inherit;
  height: auto;
  border: 0;
  border-radius: 0;
  vertical-align: initial;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}
.flatpickr-current-month input.cur-year:focus {
  outline: 0;
}
.flatpickr-current-month input.cur-year[disabled],
.flatpickr-current-month input.cur-year[disabled]:hover {
  font-size: 100%;
  color: rgba(0, 0, 0, 0.5);
  background: transparent;
  pointer-events: none;
}
.flatpickr-current-month .flatpickr-monthDropdown-months {
  appearance: menulist;
  background: transparent;
  border: none;
  border-radius: 0;
  box-sizing: border-box;
  color: inherit;
  cursor: pointer;
  font-size: inherit;
  font-family: inherit;
  font-weight: 300;
  height: auto;
  line-height: inherit;
  margin: -1px 0 0 0;
  outline: none;
  padding: 0 0 0 0.5ch;
  position: relative;
  vertical-align: initial;
  -webkit-box-sizing: border-box;
  -webkit-appearance: menulist;
  -moz-appearance: menulist;
  width: auto;
}
.flatpickr-current-month .flatpickr-monthDropdown-months:focus,
.flatpickr-current-month .flatpickr-monthDropdown-months:active {
  outline: none;
}
.flatpickr-current-month .flatpickr-monthDropdown-months:hover {
  background: rgba(0, 0, 0, 0.05);
}
.flatpickr-current-month .flatpickr-monthDropdown-months .flatpickr-monthDropdown-month {
  background-color: transparent;
  outline: none;
  padding: 0;
}
.flatpickr-weekdays {
  background: transparent;
  text-align: center;
  overflow: hidden;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 28px;
}
.flatpickr-weekdays .flatpickr-weekdaycontainer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
span.flatpickr-weekday {
  cursor: default;
  font-size: 90%;
  background: transparent;
  color: rgba(0, 0, 0, 0.54);
  line-height: 1;
  margin: 0;
  text-align: center;
  display: block;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-weight: bolder;
}
.dayContainer,
.flatpickr-weeks {
  padding: 1px 0 0 0;
}
.flatpickr-days {
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 307.875px;
}
.flatpickr-days:focus {
  outline: 0;
}
.dayContainer {
  padding: 0;
  outline: 0;
  text-align: left;
  width: 307.875px;
  min-width: 307.875px;
  max-width: 307.875px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  -webkit-transform: translate3d(0px, 0px, 0px);
  transform: translate3d(0px, 0px, 0px);
  opacity: 1;
}
.dayContainer + .dayContainer {
  -webkit-box-shadow: -1px 0 0 #e6e6e6;
  box-shadow: -1px 0 0 #e6e6e6;
}
.flatpickr-day {
  background: none;
  border: 1px solid transparent;
  border-radius: 150px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #393939;
  cursor: pointer;
  font-weight: 400;
  width: 14.2857143%;
  -webkit-flex-basis: 14.2857143%;
  -ms-flex-preferred-size: 14.2857143%;
  flex-basis: 14.2857143%;
  max-width: 39px;
  height: 39px;
  line-height: 39px;
  margin: 0;
  display: inline-block;
  position: relative;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.flatpickr-day.inRange,
.flatpickr-day.prevMonthDay.inRange,
.flatpickr-day.nextMonthDay.inRange,
.flatpickr-day.today.inRange,
.flatpickr-day.prevMonthDay.today.inRange,
.flatpickr-day.nextMonthDay.today.inRange,
.flatpickr-day:hover,
.flatpickr-day.prevMonthDay:hover,
.flatpickr-day.nextMonthDay:hover,
.flatpickr-day:focus,
.flatpickr-day.prevMonthDay:focus,
.flatpickr-day.nextMonthDay:focus {
  cursor: pointer;
  outline: 0;
  background: #e6e6e6;
  border-color: #e6e6e6;
}
.flatpickr-day.today {
  border-color: #959ea9;
}
.flatpickr-day.today:hover,
.flatpickr-day.today:focus {
  border-color: #959ea9;
  background: #959ea9;
  color: #fff;
}
.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover,
.flatpickr-day.selected.prevMonthDay,
.flatpickr-day.startRange.prevMonthDay,
.flatpickr-day.endRange.prevMonthDay,
.flatpickr-day.selected.nextMonthDay,
.flatpickr-day.startRange.nextMonthDay,
.flatpickr-day.endRange.nextMonthDay {
  background: #569ff7;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #fff;
  border-color: #569ff7;
}
.flatpickr-day.selected.startRange,
.flatpickr-day.startRange.startRange,
.flatpickr-day.endRange.startRange {
  border-radius: 50px 0 0 50px;
}
.flatpickr-day.selected.endRange,
.flatpickr-day.startRange.endRange,
.flatpickr-day.endRange.endRange {
  border-radius: 0 50px 50px 0;
}
.flatpickr-day.selected.startRange + .endRange:not(:nth-child(7n+1)),
.flatpickr-day.startRange.startRange + .endRange:not(:nth-child(7n+1)),
.flatpickr-day.endRange.startRange + .endRange:not(:nth-child(7n+1)) {
  -webkit-box-shadow: -10px 0 0 #569ff7;
  box-shadow: -10px 0 0 #569ff7;
}
.flatpickr-day.selected.startRange.endRange,
.flatpickr-day.startRange.startRange.endRange,
.flatpickr-day.endRange.startRange.endRange {
  border-radius: 50px;
}
.flatpickr-day.inRange {
  border-radius: 0;
  -webkit-box-shadow: -5px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
  box-shadow: -5px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
}
.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover,
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay,
.flatpickr-day.notAllowed,
.flatpickr-day.notAllowed.prevMonthDay,
.flatpickr-day.notAllowed.nextMonthDay {
  color: rgba(57, 57, 57, 0.3);
  background: transparent;
  border-color: transparent;
  cursor: default;
}
.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
  cursor: not-allowed;
  color: rgba(57, 57, 57, 0.1);
}
.flatpickr-day.week.selected {
  border-radius: 0;
  -webkit-box-shadow: -5px 0 0 #569ff7, 5px 0 0 #569ff7;
  box-shadow: -5px 0 0 #569ff7, 5px 0 0 #569ff7;
}
.flatpickr-day.hidden {
  visibility: hidden;
}
.rangeMode .flatpickr-day {
  margin-top: 1px;
}
.flatpickr-weekwrapper {
  float: left;
}
.flatpickr-weekwrapper .flatpickr-weeks {
  padding: 0 12px;
  -webkit-box-shadow: 1px 0 0 #e6e6e6;
  box-shadow: 1px 0 0 #e6e6e6;
}
.flatpickr-weekwrapper .flatpickr-weekday {
  float: none;
  width: 100%;
  line-height: 28px;
}
.flatpickr-weekwrapper span.flatpickr-day,
.flatpickr-weekwrapper span.flatpickr-day:hover {
  display: block;
  width: 100%;
  max-width: none;
  color: rgba(57, 57, 57, 0.3);
  background: transparent;
  cursor: default;
  border: none;
}
.flatpickr-innerContainer {
  display: block;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
}
.flatpickr-rContainer {
  display: inline-block;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.flatpickr-time {
  text-align: center;
  outline: 0;
  display: block;
  height: 0;
  line-height: 40px;
  max-height: 40px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.flatpickr-time:after {
  content: "";
  display: table;
  clear: both;
}
.flatpickr-time .numInputWrapper {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 40%;
  height: 40px;
  float: left;
}
.flatpickr-time .numInputWrapper span.arrowUp:after {
  border-bottom-color: #393939;
}
.flatpickr-time .numInputWrapper span.arrowDown:after {
  border-top-color: #393939;
}
.flatpickr-time.hasSeconds .numInputWrapper {
  width: 26%;
}
.flatpickr-time.time24hr .numInputWrapper {
  width: 49%;
}
.flatpickr-time input {
  background: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 0;
  border-radius: 0;
  text-align: center;
  margin: 0;
  padding: 0;
  height: inherit;
  line-height: inherit;
  color: #393939;
  font-size: 14px;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}
.flatpickr-time input.flatpickr-hour {
  font-weight: bold;
}
.flatpickr-time input.flatpickr-minute,
.flatpickr-time input.flatpickr-second {
  font-weight: 400;
}
.flatpickr-time input:focus {
  outline: 0;
  border: 0;
}
.flatpickr-time .flatpickr-time-separator,
.flatpickr-time .flatpickr-am-pm {
  height: inherit;
  float: left;
  line-height: inherit;
  color: #393939;
  font-weight: bold;
  width: 2%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
}
.flatpickr-time .flatpickr-am-pm {
  outline: 0;
  width: 18%;
  cursor: pointer;
  text-align: center;
  font-weight: 400;
}
.flatpickr-time input:hover,
.flatpickr-time .flatpickr-am-pm:hover,
.flatpickr-time input:focus,
.flatpickr-time .flatpickr-am-pm:focus {
  background: #eee;
}
.flatpickr-input[readonly] {
  cursor: pointer;
}
@-webkit-keyframes fpFadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fpFadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

/* src/styles.scss */
:root {
  --mat-sys-background: #f5faff;
  --mat-sys-error: #ba1a1a;
  --mat-sys-error-container: #ffdad6;
  --mat-sys-inverse-on-surface: #edf1f7;
  --mat-sys-inverse-primary: #80cfff;
  --mat-sys-inverse-surface: #2c3135;
  --mat-sys-on-background: #171c20;
  --mat-sys-on-error: #ffffff;
  --mat-sys-on-error-container: #93000a;
  --mat-sys-on-primary: #ffffff;
  --mat-sys-on-primary-container: #004c6b;
  --mat-sys-on-primary-fixed: #001e2d;
  --mat-sys-on-primary-fixed-variant: #004c6b;
  --mat-sys-on-secondary: #ffffff;
  --mat-sys-on-secondary-container: #004c6b;
  --mat-sys-on-secondary-fixed: #001e2d;
  --mat-sys-on-secondary-fixed-variant: #004c6b;
  --mat-sys-on-surface: #171c20;
  --mat-sys-on-surface-variant: #3e4850;
  --mat-sys-on-tertiary: #ffffff;
  --mat-sys-on-tertiary-container: #662a86;
  --mat-sys-on-tertiary-fixed: #310049;
  --mat-sys-on-tertiary-fixed-variant: #662a86;
  --mat-sys-outline: #6e7881;
  --mat-sys-outline-variant: #bdc8d1;
  --mat-sys-primary: #24B4F3;
  --mat-sys-primary-container: #c5e7ff;
  --mat-sys-primary-fixed: #c5e7ff;
  --mat-sys-primary-fixed-dim: #80cfff;
  --mat-sys-scrim: #000000;
  --mat-sys-secondary: #24B4F3;
  --mat-sys-secondary-container: #c5e7ff;
  --mat-sys-secondary-fixed: #c5e7ff;
  --mat-sys-secondary-fixed-dim: #80cfff;
  --mat-sys-shadow: #000000;
  --mat-sys-surface: #f5faff;
  --mat-sys-surface-bright: #f5faff;
  --mat-sys-surface-container: #eaeef4;
  --mat-sys-surface-container-high: #e4e9ee;
  --mat-sys-surface-container-highest: #dee3e8;
  --mat-sys-surface-container-low: #eff4f9;
  --mat-sys-surface-container-lowest: #ffffff;
  --mat-sys-surface-dim: #d6dae0;
  --mat-sys-surface-tint: #24B4F3;
  --mat-sys-surface-variant: #d9e4ed;
  --mat-sys-tertiary: #8044a0;
  --mat-sys-tertiary-container: #f6d9ff;
  --mat-sys-tertiary-fixed: #f6d9ff;
  --mat-sys-tertiary-fixed-dim: #e8b3ff;
  --mat-sys-neutral-variant20: #273239;
  --mat-sys-neutral10: #171c20;
  --mat-sys-level0:
    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-sys-level1:
    0px 2px 1px -1px rgba(0, 0, 0, 0.2),
    0px 1px 1px 0px rgba(0, 0, 0, 0.14),
    0px 1px 3px 0px rgba(0, 0, 0, 0.12);
  --mat-sys-level2:
    0px 3px 3px -2px rgba(0, 0, 0, 0.2),
    0px 3px 4px 0px rgba(0, 0, 0, 0.14),
    0px 1px 8px 0px rgba(0, 0, 0, 0.12);
  --mat-sys-level3:
    0px 3px 5px -1px rgba(0, 0, 0, 0.2),
    0px 6px 10px 0px rgba(0, 0, 0, 0.14),
    0px 1px 18px 0px rgba(0, 0, 0, 0.12);
  --mat-sys-level4:
    0px 5px 5px -3px rgba(0, 0, 0, 0.2),
    0px 8px 10px 1px rgba(0, 0, 0, 0.14),
    0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  --mat-sys-level5:
    0px 7px 8px -4px rgba(0, 0, 0, 0.2),
    0px 12px 17px 2px rgba(0, 0, 0, 0.14),
    0px 5px 22px 4px rgba(0, 0, 0, 0.12);
  --mat-sys-body-large: 400 1rem / 1.5rem Roboto;
  --mat-sys-body-large-font: Roboto;
  --mat-sys-body-large-line-height: 1.5rem;
  --mat-sys-body-large-size: 1rem;
  --mat-sys-body-large-tracking: 0.031rem;
  --mat-sys-body-large-weight: 400;
  --mat-sys-body-medium: 400 0.875rem / 1.25rem Roboto;
  --mat-sys-body-medium-font: Roboto;
  --mat-sys-body-medium-line-height: 1.25rem;
  --mat-sys-body-medium-size: 0.875rem;
  --mat-sys-body-medium-tracking: 0.016rem;
  --mat-sys-body-medium-weight: 400;
  --mat-sys-body-small: 400 0.75rem / 1rem Roboto;
  --mat-sys-body-small-font: Roboto;
  --mat-sys-body-small-line-height: 1rem;
  --mat-sys-body-small-size: 0.75rem;
  --mat-sys-body-small-tracking: 0.025rem;
  --mat-sys-body-small-weight: 400;
  --mat-sys-display-large: 400 3.562rem / 4rem Roboto;
  --mat-sys-display-large-font: Roboto;
  --mat-sys-display-large-line-height: 4rem;
  --mat-sys-display-large-size: 3.562rem;
  --mat-sys-display-large-tracking: -0.016rem;
  --mat-sys-display-large-weight: 400;
  --mat-sys-display-medium: 400 2.812rem / 3.25rem Roboto;
  --mat-sys-display-medium-font: Roboto;
  --mat-sys-display-medium-line-height: 3.25rem;
  --mat-sys-display-medium-size: 2.812rem;
  --mat-sys-display-medium-tracking: 0;
  --mat-sys-display-medium-weight: 400;
  --mat-sys-display-small: 400 2.25rem / 2.75rem Roboto;
  --mat-sys-display-small-font: Roboto;
  --mat-sys-display-small-line-height: 2.75rem;
  --mat-sys-display-small-size: 2.25rem;
  --mat-sys-display-small-tracking: 0;
  --mat-sys-display-small-weight: 400;
  --mat-sys-headline-large: 400 2rem / 2.5rem Roboto;
  --mat-sys-headline-large-font: Roboto;
  --mat-sys-headline-large-line-height: 2.5rem;
  --mat-sys-headline-large-size: 2rem;
  --mat-sys-headline-large-tracking: 0;
  --mat-sys-headline-large-weight: 400;
  --mat-sys-headline-medium: 400 1.75rem / 2.25rem Roboto;
  --mat-sys-headline-medium-font: Roboto;
  --mat-sys-headline-medium-line-height: 2.25rem;
  --mat-sys-headline-medium-size: 1.75rem;
  --mat-sys-headline-medium-tracking: 0;
  --mat-sys-headline-medium-weight: 400;
  --mat-sys-headline-small: 400 1.5rem / 2rem Roboto;
  --mat-sys-headline-small-font: Roboto;
  --mat-sys-headline-small-line-height: 2rem;
  --mat-sys-headline-small-size: 1.5rem;
  --mat-sys-headline-small-tracking: 0;
  --mat-sys-headline-small-weight: 400;
  --mat-sys-label-large: 500 0.875rem / 1.25rem Roboto;
  --mat-sys-label-large-font: Roboto;
  --mat-sys-label-large-line-height: 1.25rem;
  --mat-sys-label-large-size: 0.875rem;
  --mat-sys-label-large-tracking: 0.006rem;
  --mat-sys-label-large-weight: 500;
  --mat-sys-label-large-weight-prominent: 700;
  --mat-sys-label-medium: 500 0.75rem / 1rem Roboto;
  --mat-sys-label-medium-font: Roboto;
  --mat-sys-label-medium-line-height: 1rem;
  --mat-sys-label-medium-size: 0.75rem;
  --mat-sys-label-medium-tracking: 0.031rem;
  --mat-sys-label-medium-weight: 500;
  --mat-sys-label-medium-weight-prominent: 700;
  --mat-sys-label-small: 500 0.688rem / 1rem Roboto;
  --mat-sys-label-small-font: Roboto;
  --mat-sys-label-small-line-height: 1rem;
  --mat-sys-label-small-size: 0.688rem;
  --mat-sys-label-small-tracking: 0.031rem;
  --mat-sys-label-small-weight: 500;
  --mat-sys-title-large: 400 1.375rem / 1.75rem Roboto;
  --mat-sys-title-large-font: Roboto;
  --mat-sys-title-large-line-height: 1.75rem;
  --mat-sys-title-large-size: 1.375rem;
  --mat-sys-title-large-tracking: 0;
  --mat-sys-title-large-weight: 400;
  --mat-sys-title-medium: 500 1rem / 1.5rem Roboto;
  --mat-sys-title-medium-font: Roboto;
  --mat-sys-title-medium-line-height: 1.5rem;
  --mat-sys-title-medium-size: 1rem;
  --mat-sys-title-medium-tracking: 0.009rem;
  --mat-sys-title-medium-weight: 500;
  --mat-sys-title-small: 500 0.875rem / 1.25rem Roboto;
  --mat-sys-title-small-font: Roboto;
  --mat-sys-title-small-line-height: 1.25rem;
  --mat-sys-title-small-size: 0.875rem;
  --mat-sys-title-small-tracking: 0.006rem;
  --mat-sys-title-small-weight: 500;
  --mat-sys-corner-extra-large: 28px;
  --mat-sys-corner-extra-large-top: 28px 28px 0 0;
  --mat-sys-corner-extra-small: 4px;
  --mat-sys-corner-extra-small-top: 4px 4px 0 0;
  --mat-sys-corner-full: 9999px;
  --mat-sys-corner-large: 16px;
  --mat-sys-corner-large-end: 0 16px 16px 0;
  --mat-sys-corner-large-start: 16px 0 0 16px;
  --mat-sys-corner-large-top: 16px 16px 0 0;
  --mat-sys-corner-medium: 12px;
  --mat-sys-corner-none: 0;
  --mat-sys-corner-small: 8px;
  --mat-sys-dragged-state-layer-opacity: 0.16;
  --mat-sys-focus-state-layer-opacity: 0.12;
  --mat-sys-hover-state-layer-opacity: 0.08;
  --mat-sys-pressed-state-layer-opacity: 0.12;
  --mat-card-elevated-container-color: #ffffff;
  --mat-card-outlined-container-color: #ffffff;
  --mdc-elevated-card-container-color: #ffffff;
  --mdc-outlined-card-container-color: #ffffff;
  --mat-sys-corner-none: 0px;
  --mat-sys-corner-extra-small: 4px;
  --mat-sys-corner-small: 6px;
  --mat-sys-corner-medium: 8px;
  --mat-sys-corner-large: 12px;
  --mat-sys-corner-extra-large: 16px;
  --mat-sys-corner-full: 6px;
  --mat-button-filled-container-shape: 4px;
  --mat-sidenav-container-shape: 0px;
  --mat-sys-on-surface: rgba(0, 0, 0, 0.70);
  --mat-sys-on-background: rgba(0, 0, 0, 0.70);
  --mdc-theme-text-primary-on-background: #000000;
  --mat-toolbar-container-text-color: #000000;
  --mat-app-text-color: rgba(0, 0, 0, 0.87);
  --mat-app-on-surface: rgba(0, 0, 0, 0.87);
  --mat-app-on-surface-variant: rgba(0, 0, 0, 0.87);
  --mat-sys-on-surface-variant: rgba(0, 0, 0, 0.87);
  --mdc-theme-text-secondary-on-background: rgba(0, 0, 0, 0.6);
  --mdc-theme-text-hint-on-background: rgba(0, 0, 0, 0.38);
  --mdc-theme-text-disabled-on-background: rgba(0, 0, 0, 0.38);
  --mdc-theme-text-icon-on-background: rgba(0, 0, 0, 0.38);
  --mat-form-field-container-text-color: #000000;
  --mat-form-field-disabled-text-color: rgba(0, 0, 0, 0.38);
  --mat-form-field-label-text-color: rgba(0, 0, 0, 0.6);
  --mat-form-field-error-text-color: #d32f2f;
  --mdc-filled-text-field-label-text-color: rgba(0, 0, 0, 0.6);
  --mdc-outlined-text-field-label-text-color: rgba(0, 0, 0, 0.6);
  --mdc-filled-text-field-input-text-color: #000000;
  --mdc-outlined-text-field-input-text-color: #000000;
  --mdc-text-field-input-text-color: #000000;
  --mat-input-text-color: #000000;
  --mat-select-value-text-color: #000000;
  --mdc-text-button-label-text-color: rgba(0, 0, 0, 0.87);
  --mdc-filled-button-label-text-color: rgba(0, 0, 0, 0.87);
  --mdc-outlined-button-label-text-color: rgba(0, 0, 0, 0.87);
  --mdc-protected-button-label-text-color: rgba(0, 0, 0, 0.87);
  --mat-list-item-label-text-color: rgba(0, 0, 0, 0.87);
  --mat-list-item-supporting-text-color: rgba(0, 0, 0, 0.6);
  --mat-list-item-leading-icon-color: rgba(0, 0, 0, 0.38);
  --mat-list-item-trailing-supporting-text-color: rgba(0, 0, 0, 0.38);
  --mdc-list-list-item-label-text-color: rgba(0, 0, 0, 0.87);
  --mat-menu-item-label-text-color: rgba(0, 0, 0, 0.87);
  --mat-menu-item-icon-color: rgba(0, 0, 0, 0.87);
  --mdc-list-list-item-one-line-container-color: transparent;
  --mat-table-row-item-label-text-color: rgba(0, 0, 0, 0.87);
  --mat-table-header-headline-color: rgba(0, 0, 0, 0.87);
  --mat-select-trigger-text-color: rgba(0, 0, 0, 0.87);
  --mat-select-disabled-trigger-text-color: rgba(0, 0, 0, 0.38);
  --mat-chip-label-text-color: rgba(0, 0, 0, 0.87);
  --mdc-chip-label-text-color: rgba(0, 0, 0, 0.87);
  --mat-tab-header-inactive-label-text-color: #000000;
  --mat-tab-header-active-label-text-color: #000000;
  --mat-tab-header-inactive-focus-label-text-color: #000000;
  --mat-tab-header-inactive-hover-label-text-color: #000000;
  --mdc-tab-indicator-active-indicator-color: #24B4F3;
  --mat-sys-on-primary-container: #24B4F3;
  --mdc-plain-tooltip-supporting-text-color: #ffffff !important;
  --mdc-plain-tooltip-container-color: rgba(97, 97, 97, 0.95) !important;
  --mdc-dialog-supporting-text-color: #000000;
  --mdc-dialog-subhead-color: #000000;
  --mat-expansion-header-text-color: #000000;
  --mat-expansion-header-description-color: #000000;
  --mat-slider-value-indicator-opacity: 1;
  --mdc-snackbar-supporting-text-color: #ffffff;
  --mat-option-label-text-color: #000000;
  --mat-option-selected-state-label-text-color: #000000;
  --mat-checkbox-label-text-color: #000000;
  --mdc-checkbox-label-text-color: #000000;
  --mdc-checkbox-state-layer-color: #000000;
  --mat-radio-label-text-color: #000000;
  --mdc-radio-label-text-color: #000000;
  --mdc-radio-state-layer-color: #000000;
  --mat-slide-toggle-label-text-color: #000000;
  --mdc-switch-label-text-color: #000000;
  --mat-badge-text-color: #ffffff;
  --mat-paginator-container-text-color: #000000;
  --mat-sidenav-content-text-color: #000000;
  --mat-stepper-header-label-text-color: #000000;
  --mat-stepper-header-optional-label-text-color: #000000;
  --mat-sort-arrow-color: #000000;
  --mat-select-panel-background-color: #ffffff;
  --mat-autocomplete-background-color: #ffffff;
  --mat-menu-container-color: #ffffff;
  --mdc-list-list-item-container-color: transparent;
  --mat-datepicker-calendar-container-background-color: #ffffff;
  --mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, 0.87);
  --mdc-dialog-container-color: #ffffff;
  --mat-dialog-background-color: #ffffff;
  --mat-app-background-color: #F0EDE6;
  --mat-sys-surface: #ffffff;
  --mat-sys-surface-variant: #f5f5f5;
  --mdc-snackbar-container-color: #323232;
}
html[data-theme=dark] {
  --mat-sys-background: #0f1418;
  --mat-sys-error: #ffb4ab;
  --mat-sys-error-container: #93000a;
  --mat-sys-inverse-on-surface: #2c3135;
  --mat-sys-inverse-primary: #24B4F3;
  --mat-sys-inverse-surface: #dee3e8;
  --mat-sys-on-background: #dee3e8;
  --mat-sys-on-error: #690005;
  --mat-sys-on-error-container: #ffdad6;
  --mat-sys-on-primary: #00344b;
  --mat-sys-on-primary-container: #c5e7ff;
  --mat-sys-on-primary-fixed: #001e2d;
  --mat-sys-on-primary-fixed-variant: #004c6b;
  --mat-sys-on-secondary: #00344b;
  --mat-sys-on-secondary-container: #c5e7ff;
  --mat-sys-on-secondary-fixed: #001e2d;
  --mat-sys-on-secondary-fixed-variant: #004c6b;
  --mat-sys-on-surface: #dee3e8;
  --mat-sys-on-surface-variant: #d9e4ed;
  --mat-sys-on-tertiary: #4e0d6d;
  --mat-sys-on-tertiary-container: #f6d9ff;
  --mat-sys-on-tertiary-fixed: #310049;
  --mat-sys-on-tertiary-fixed-variant: #662a86;
  --mat-sys-outline: #87929b;
  --mat-sys-outline-variant: #3e4850;
  --mat-sys-primary: #80cfff;
  --mat-sys-primary-container: #004c6b;
  --mat-sys-primary-fixed: #c5e7ff;
  --mat-sys-primary-fixed-dim: #80cfff;
  --mat-sys-scrim: #000000;
  --mat-sys-secondary: #80cfff;
  --mat-sys-secondary-container: #004c6b;
  --mat-sys-secondary-fixed: #c5e7ff;
  --mat-sys-secondary-fixed-dim: #80cfff;
  --mat-sys-shadow: #000000;
  --mat-sys-surface: #0f1418;
  --mat-sys-surface-bright: #343a3e;
  --mat-sys-surface-container: #1b2024;
  --mat-sys-surface-container-high: #252b2f;
  --mat-sys-surface-container-highest: #30353a;
  --mat-sys-surface-container-low: #171c20;
  --mat-sys-surface-container-lowest: #090f12;
  --mat-sys-surface-dim: #0f1418;
  --mat-sys-surface-tint: #80cfff;
  --mat-sys-surface-variant: #3e4850;
  --mat-sys-tertiary: #e8b3ff;
  --mat-sys-tertiary-container: #662a86;
  --mat-sys-tertiary-fixed: #f6d9ff;
  --mat-sys-tertiary-fixed-dim: #e8b3ff;
  --mat-sys-neutral-variant20: #273239;
  --mat-sys-neutral10: #171c20;
  --mat-sys-level0:
    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-sys-level1:
    0px 2px 1px -1px rgba(0, 0, 0, 0.2),
    0px 1px 1px 0px rgba(0, 0, 0, 0.14),
    0px 1px 3px 0px rgba(0, 0, 0, 0.12);
  --mat-sys-level2:
    0px 3px 3px -2px rgba(0, 0, 0, 0.2),
    0px 3px 4px 0px rgba(0, 0, 0, 0.14),
    0px 1px 8px 0px rgba(0, 0, 0, 0.12);
  --mat-sys-level3:
    0px 3px 5px -1px rgba(0, 0, 0, 0.2),
    0px 6px 10px 0px rgba(0, 0, 0, 0.14),
    0px 1px 18px 0px rgba(0, 0, 0, 0.12);
  --mat-sys-level4:
    0px 5px 5px -3px rgba(0, 0, 0, 0.2),
    0px 8px 10px 1px rgba(0, 0, 0, 0.14),
    0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  --mat-sys-level5:
    0px 7px 8px -4px rgba(0, 0, 0, 0.2),
    0px 12px 17px 2px rgba(0, 0, 0, 0.14),
    0px 5px 22px 4px rgba(0, 0, 0, 0.12);
  --mat-sys-body-large: 400 1rem / 1.5rem Roboto;
  --mat-sys-body-large-font: Roboto;
  --mat-sys-body-large-line-height: 1.5rem;
  --mat-sys-body-large-size: 1rem;
  --mat-sys-body-large-tracking: 0.031rem;
  --mat-sys-body-large-weight: 400;
  --mat-sys-body-medium: 400 0.875rem / 1.25rem Roboto;
  --mat-sys-body-medium-font: Roboto;
  --mat-sys-body-medium-line-height: 1.25rem;
  --mat-sys-body-medium-size: 0.875rem;
  --mat-sys-body-medium-tracking: 0.016rem;
  --mat-sys-body-medium-weight: 400;
  --mat-sys-body-small: 400 0.75rem / 1rem Roboto;
  --mat-sys-body-small-font: Roboto;
  --mat-sys-body-small-line-height: 1rem;
  --mat-sys-body-small-size: 0.75rem;
  --mat-sys-body-small-tracking: 0.025rem;
  --mat-sys-body-small-weight: 400;
  --mat-sys-display-large: 400 3.562rem / 4rem Roboto;
  --mat-sys-display-large-font: Roboto;
  --mat-sys-display-large-line-height: 4rem;
  --mat-sys-display-large-size: 3.562rem;
  --mat-sys-display-large-tracking: -0.016rem;
  --mat-sys-display-large-weight: 400;
  --mat-sys-display-medium: 400 2.812rem / 3.25rem Roboto;
  --mat-sys-display-medium-font: Roboto;
  --mat-sys-display-medium-line-height: 3.25rem;
  --mat-sys-display-medium-size: 2.812rem;
  --mat-sys-display-medium-tracking: 0;
  --mat-sys-display-medium-weight: 400;
  --mat-sys-display-small: 400 2.25rem / 2.75rem Roboto;
  --mat-sys-display-small-font: Roboto;
  --mat-sys-display-small-line-height: 2.75rem;
  --mat-sys-display-small-size: 2.25rem;
  --mat-sys-display-small-tracking: 0;
  --mat-sys-display-small-weight: 400;
  --mat-sys-headline-large: 400 2rem / 2.5rem Roboto;
  --mat-sys-headline-large-font: Roboto;
  --mat-sys-headline-large-line-height: 2.5rem;
  --mat-sys-headline-large-size: 2rem;
  --mat-sys-headline-large-tracking: 0;
  --mat-sys-headline-large-weight: 400;
  --mat-sys-headline-medium: 400 1.75rem / 2.25rem Roboto;
  --mat-sys-headline-medium-font: Roboto;
  --mat-sys-headline-medium-line-height: 2.25rem;
  --mat-sys-headline-medium-size: 1.75rem;
  --mat-sys-headline-medium-tracking: 0;
  --mat-sys-headline-medium-weight: 400;
  --mat-sys-headline-small: 400 1.5rem / 2rem Roboto;
  --mat-sys-headline-small-font: Roboto;
  --mat-sys-headline-small-line-height: 2rem;
  --mat-sys-headline-small-size: 1.5rem;
  --mat-sys-headline-small-tracking: 0;
  --mat-sys-headline-small-weight: 400;
  --mat-sys-label-large: 500 0.875rem / 1.25rem Roboto;
  --mat-sys-label-large-font: Roboto;
  --mat-sys-label-large-line-height: 1.25rem;
  --mat-sys-label-large-size: 0.875rem;
  --mat-sys-label-large-tracking: 0.006rem;
  --mat-sys-label-large-weight: 500;
  --mat-sys-label-large-weight-prominent: 700;
  --mat-sys-label-medium: 500 0.75rem / 1rem Roboto;
  --mat-sys-label-medium-font: Roboto;
  --mat-sys-label-medium-line-height: 1rem;
  --mat-sys-label-medium-size: 0.75rem;
  --mat-sys-label-medium-tracking: 0.031rem;
  --mat-sys-label-medium-weight: 500;
  --mat-sys-label-medium-weight-prominent: 700;
  --mat-sys-label-small: 500 0.688rem / 1rem Roboto;
  --mat-sys-label-small-font: Roboto;
  --mat-sys-label-small-line-height: 1rem;
  --mat-sys-label-small-size: 0.688rem;
  --mat-sys-label-small-tracking: 0.031rem;
  --mat-sys-label-small-weight: 500;
  --mat-sys-title-large: 400 1.375rem / 1.75rem Roboto;
  --mat-sys-title-large-font: Roboto;
  --mat-sys-title-large-line-height: 1.75rem;
  --mat-sys-title-large-size: 1.375rem;
  --mat-sys-title-large-tracking: 0;
  --mat-sys-title-large-weight: 400;
  --mat-sys-title-medium: 500 1rem / 1.5rem Roboto;
  --mat-sys-title-medium-font: Roboto;
  --mat-sys-title-medium-line-height: 1.5rem;
  --mat-sys-title-medium-size: 1rem;
  --mat-sys-title-medium-tracking: 0.009rem;
  --mat-sys-title-medium-weight: 500;
  --mat-sys-title-small: 500 0.875rem / 1.25rem Roboto;
  --mat-sys-title-small-font: Roboto;
  --mat-sys-title-small-line-height: 1.25rem;
  --mat-sys-title-small-size: 0.875rem;
  --mat-sys-title-small-tracking: 0.006rem;
  --mat-sys-title-small-weight: 500;
  --mat-sys-corner-extra-large: 28px;
  --mat-sys-corner-extra-large-top: 28px 28px 0 0;
  --mat-sys-corner-extra-small: 4px;
  --mat-sys-corner-extra-small-top: 4px 4px 0 0;
  --mat-sys-corner-full: 9999px;
  --mat-sys-corner-large: 16px;
  --mat-sys-corner-large-end: 0 16px 16px 0;
  --mat-sys-corner-large-start: 16px 0 0 16px;
  --mat-sys-corner-large-top: 16px 16px 0 0;
  --mat-sys-corner-medium: 12px;
  --mat-sys-corner-none: 0;
  --mat-sys-corner-small: 8px;
  --mat-sys-dragged-state-layer-opacity: 0.16;
  --mat-sys-focus-state-layer-opacity: 0.12;
  --mat-sys-hover-state-layer-opacity: 0.08;
  --mat-sys-pressed-state-layer-opacity: 0.12;
  --mat-card-elevated-container-color: #1e1e1e;
  --mat-card-outlined-container-color: #1e1e1e;
  --mdc-elevated-card-container-color: #1e1e1e;
  --mdc-outlined-card-container-color: #1e1e1e;
  --mdc-plain-tooltip-container-color: rgba(158, 158, 158, 0.95) !important;
  --mdc-plain-tooltip-supporting-text-color: #ffffff !important;
}
.mat-content {
  min-height: 100%;
}
.mat-icon.md-icon-logo {
  width: 180px;
}
.blurText {
  filter: blur(3px);
  -webkit-filter: blur(3px);
}
.mat-mdc-snack-bar-container {
  color: silver;
}
.snack-error {
  --mdc-snackbar-container-color: #FF0000;
  --mdc-snackbar-supporting-text-color: #fff;
  --mat-snack-bar-button-color: #fff;
}
.snack-warn {
  --mdc-snackbar-container-color: #c18e0c;
  --mdc-snackbar-supporting-text-color: #fff;
  --mat-snack-bar-button-color: #fff;
}
.snack-success {
  --mdc-snackbar-container-color: #386EB2;
  --mdc-snackbar-supporting-text-color: #fff;
  --mat-snack-bar-button-color: #fff;
}

/* node_modules/quill/dist/quill.snow.css */
/*!
 * Quill Editor v2.0.3
 * https://quilljs.com
 * Copyright (c) 2017-2024, Slab
 * Copyright (c) 2014, Jason Chen
 * Copyright (c) 2013, salesforce.com
 */
.ql-container {
  box-sizing: border-box;
  font-family:
    Helvetica,
    Arial,
    sans-serif;
  font-size: 13px;
  height: 100%;
  margin: 0;
  position: relative;
}
.ql-container.ql-disabled .ql-tooltip {
  visibility: hidden;
}
.ql-container:not(.ql-disabled) li[data-list=checked] > .ql-ui,
.ql-container:not(.ql-disabled) li[data-list=unchecked] > .ql-ui {
  cursor: pointer;
}
.ql-clipboard {
  left: -100000px;
  height: 1px;
  overflow-y: hidden;
  position: absolute;
  top: 50%;
}
.ql-clipboard p {
  margin: 0;
  padding: 0;
}
.ql-editor {
  box-sizing: border-box;
  counter-reset: list-0 list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  line-height: 1.42;
  height: 100%;
  outline: none;
  overflow-y: auto;
  padding: 12px 15px;
  tab-size: 4;
  -moz-tab-size: 4;
  text-align: left;
  white-space: pre-wrap;
  word-wrap: break-word;
}
.ql-editor > * {
  cursor: text;
}
.ql-editor p,
.ql-editor ol,
.ql-editor pre,
.ql-editor blockquote,
.ql-editor h1,
.ql-editor h2,
.ql-editor h3,
.ql-editor h4,
.ql-editor h5,
.ql-editor h6 {
  margin: 0;
  padding: 0;
}
@supports (counter-set:none) {
  .ql-editor p,
  .ql-editor h1,
  .ql-editor h2,
  .ql-editor h3,
  .ql-editor h4,
  .ql-editor h5,
  .ql-editor h6 {
    counter-set: list-0 list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
@supports not (counter-set:none) {
  .ql-editor p,
  .ql-editor h1,
  .ql-editor h2,
  .ql-editor h3,
  .ql-editor h4,
  .ql-editor h5,
  .ql-editor h6 {
    counter-reset: list-0 list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
.ql-editor table {
  border-collapse: collapse;
}
.ql-editor td {
  border: 1px solid #000;
  padding: 2px 5px;
}
.ql-editor ol {
  padding-left: 1.5em;
}
.ql-editor li {
  list-style-type: none;
  padding-left: 1.5em;
  position: relative;
}
.ql-editor li > .ql-ui:before {
  display: inline-block;
  margin-left: -1.5em;
  margin-right: .3em;
  text-align: right;
  white-space: nowrap;
  width: 1.2em;
}
.ql-editor li[data-list=checked] > .ql-ui,
.ql-editor li[data-list=unchecked] > .ql-ui {
  color: #777;
}
.ql-editor li[data-list=bullet] > .ql-ui:before {
  content: "\2022";
}
.ql-editor li[data-list=checked] > .ql-ui:before {
  content: "\2611";
}
.ql-editor li[data-list=unchecked] > .ql-ui:before {
  content: "\2610";
}
@supports (counter-set:none) {
  .ql-editor li[data-list] {
    counter-set: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
@supports not (counter-set:none) {
  .ql-editor li[data-list] {
    counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
.ql-editor li[data-list=ordered] {
  counter-increment: list-0;
}
.ql-editor li[data-list=ordered] > .ql-ui:before {
  content: counter(list-0, decimal) ". ";
}
.ql-editor li[data-list=ordered].ql-indent-1 {
  counter-increment: list-1;
}
.ql-editor li[data-list=ordered].ql-indent-1 > .ql-ui:before {
  content: counter(list-1, lower-alpha) ". ";
}
@supports (counter-set:none) {
  .ql-editor li[data-list].ql-indent-1 {
    counter-set: list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
@supports not (counter-set:none) {
  .ql-editor li[data-list].ql-indent-1 {
    counter-reset: list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
.ql-editor li[data-list=ordered].ql-indent-2 {
  counter-increment: list-2;
}
.ql-editor li[data-list=ordered].ql-indent-2 > .ql-ui:before {
  content: counter(list-2, lower-roman) ". ";
}
@supports (counter-set:none) {
  .ql-editor li[data-list].ql-indent-2 {
    counter-set: list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
@supports not (counter-set:none) {
  .ql-editor li[data-list].ql-indent-2 {
    counter-reset: list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
.ql-editor li[data-list=ordered].ql-indent-3 {
  counter-increment: list-3;
}
.ql-editor li[data-list=ordered].ql-indent-3 > .ql-ui:before {
  content: counter(list-3, decimal) ". ";
}
@supports (counter-set:none) {
  .ql-editor li[data-list].ql-indent-3 {
    counter-set: list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
@supports not (counter-set:none) {
  .ql-editor li[data-list].ql-indent-3 {
    counter-reset: list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
.ql-editor li[data-list=ordered].ql-indent-4 {
  counter-increment: list-4;
}
.ql-editor li[data-list=ordered].ql-indent-4 > .ql-ui:before {
  content: counter(list-4, lower-alpha) ". ";
}
@supports (counter-set:none) {
  .ql-editor li[data-list].ql-indent-4 {
    counter-set: list-5 list-6 list-7 list-8 list-9;
  }
}
@supports not (counter-set:none) {
  .ql-editor li[data-list].ql-indent-4 {
    counter-reset: list-5 list-6 list-7 list-8 list-9;
  }
}
.ql-editor li[data-list=ordered].ql-indent-5 {
  counter-increment: list-5;
}
.ql-editor li[data-list=ordered].ql-indent-5 > .ql-ui:before {
  content: counter(list-5, lower-roman) ". ";
}
@supports (counter-set:none) {
  .ql-editor li[data-list].ql-indent-5 {
    counter-set: list-6 list-7 list-8 list-9;
  }
}
@supports not (counter-set:none) {
  .ql-editor li[data-list].ql-indent-5 {
    counter-reset: list-6 list-7 list-8 list-9;
  }
}
.ql-editor li[data-list=ordered].ql-indent-6 {
  counter-increment: list-6;
}
.ql-editor li[data-list=ordered].ql-indent-6 > .ql-ui:before {
  content: counter(list-6, decimal) ". ";
}
@supports (counter-set:none) {
  .ql-editor li[data-list].ql-indent-6 {
    counter-set: list-7 list-8 list-9;
  }
}
@supports not (counter-set:none) {
  .ql-editor li[data-list].ql-indent-6 {
    counter-reset: list-7 list-8 list-9;
  }
}
.ql-editor li[data-list=ordered].ql-indent-7 {
  counter-increment: list-7;
}
.ql-editor li[data-list=ordered].ql-indent-7 > .ql-ui:before {
  content: counter(list-7, lower-alpha) ". ";
}
@supports (counter-set:none) {
  .ql-editor li[data-list].ql-indent-7 {
    counter-set: list-8 list-9;
  }
}
@supports not (counter-set:none) {
  .ql-editor li[data-list].ql-indent-7 {
    counter-reset: list-8 list-9;
  }
}
.ql-editor li[data-list=ordered].ql-indent-8 {
  counter-increment: list-8;
}
.ql-editor li[data-list=ordered].ql-indent-8 > .ql-ui:before {
  content: counter(list-8, lower-roman) ". ";
}
@supports (counter-set:none) {
  .ql-editor li[data-list].ql-indent-8 {
    counter-set: list-9;
  }
}
@supports not (counter-set:none) {
  .ql-editor li[data-list].ql-indent-8 {
    counter-reset: list-9;
  }
}
.ql-editor li[data-list=ordered].ql-indent-9 {
  counter-increment: list-9;
}
.ql-editor li[data-list=ordered].ql-indent-9 > .ql-ui:before {
  content: counter(list-9, decimal) ". ";
}
.ql-editor .ql-indent-1:not(.ql-direction-rtl) {
  padding-left: 3em;
}
.ql-editor li.ql-indent-1:not(.ql-direction-rtl) {
  padding-left: 4.5em;
}
.ql-editor .ql-indent-1.ql-direction-rtl.ql-align-right {
  padding-right: 3em;
}
.ql-editor li.ql-indent-1.ql-direction-rtl.ql-align-right {
  padding-right: 4.5em;
}
.ql-editor .ql-indent-2:not(.ql-direction-rtl) {
  padding-left: 6em;
}
.ql-editor li.ql-indent-2:not(.ql-direction-rtl) {
  padding-left: 7.5em;
}
.ql-editor .ql-indent-2.ql-direction-rtl.ql-align-right {
  padding-right: 6em;
}
.ql-editor li.ql-indent-2.ql-direction-rtl.ql-align-right {
  padding-right: 7.5em;
}
.ql-editor .ql-indent-3:not(.ql-direction-rtl) {
  padding-left: 9em;
}
.ql-editor li.ql-indent-3:not(.ql-direction-rtl) {
  padding-left: 10.5em;
}
.ql-editor .ql-indent-3.ql-direction-rtl.ql-align-right {
  padding-right: 9em;
}
.ql-editor li.ql-indent-3.ql-direction-rtl.ql-align-right {
  padding-right: 10.5em;
}
.ql-editor .ql-indent-4:not(.ql-direction-rtl) {
  padding-left: 12em;
}
.ql-editor li.ql-indent-4:not(.ql-direction-rtl) {
  padding-left: 13.5em;
}
.ql-editor .ql-indent-4.ql-direction-rtl.ql-align-right {
  padding-right: 12em;
}
.ql-editor li.ql-indent-4.ql-direction-rtl.ql-align-right {
  padding-right: 13.5em;
}
.ql-editor .ql-indent-5:not(.ql-direction-rtl) {
  padding-left: 15em;
}
.ql-editor li.ql-indent-5:not(.ql-direction-rtl) {
  padding-left: 16.5em;
}
.ql-editor .ql-indent-5.ql-direction-rtl.ql-align-right {
  padding-right: 15em;
}
.ql-editor li.ql-indent-5.ql-direction-rtl.ql-align-right {
  padding-right: 16.5em;
}
.ql-editor .ql-indent-6:not(.ql-direction-rtl) {
  padding-left: 18em;
}
.ql-editor li.ql-indent-6:not(.ql-direction-rtl) {
  padding-left: 19.5em;
}
.ql-editor .ql-indent-6.ql-direction-rtl.ql-align-right {
  padding-right: 18em;
}
.ql-editor li.ql-indent-6.ql-direction-rtl.ql-align-right {
  padding-right: 19.5em;
}
.ql-editor .ql-indent-7:not(.ql-direction-rtl) {
  padding-left: 21em;
}
.ql-editor li.ql-indent-7:not(.ql-direction-rtl) {
  padding-left: 22.5em;
}
.ql-editor .ql-indent-7.ql-direction-rtl.ql-align-right {
  padding-right: 21em;
}
.ql-editor li.ql-indent-7.ql-direction-rtl.ql-align-right {
  padding-right: 22.5em;
}
.ql-editor .ql-indent-8:not(.ql-direction-rtl) {
  padding-left: 24em;
}
.ql-editor li.ql-indent-8:not(.ql-direction-rtl) {
  padding-left: 25.5em;
}
.ql-editor .ql-indent-8.ql-direction-rtl.ql-align-right {
  padding-right: 24em;
}
.ql-editor li.ql-indent-8.ql-direction-rtl.ql-align-right {
  padding-right: 25.5em;
}
.ql-editor .ql-indent-9:not(.ql-direction-rtl) {
  padding-left: 27em;
}
.ql-editor li.ql-indent-9:not(.ql-direction-rtl) {
  padding-left: 28.5em;
}
.ql-editor .ql-indent-9.ql-direction-rtl.ql-align-right {
  padding-right: 27em;
}
.ql-editor li.ql-indent-9.ql-direction-rtl.ql-align-right {
  padding-right: 28.5em;
}
.ql-editor li.ql-direction-rtl {
  padding-right: 1.5em;
}
.ql-editor li.ql-direction-rtl > .ql-ui:before {
  margin-left: .3em;
  margin-right: -1.5em;
  text-align: left;
}
.ql-editor table {
  table-layout: fixed;
  width: 100%;
}
.ql-editor table td {
  outline: none;
}
.ql-editor .ql-code-block-container {
  font-family: monospace;
}
.ql-editor .ql-video {
  display: block;
  max-width: 100%;
}
.ql-editor .ql-video.ql-align-center {
  margin: 0 auto;
}
.ql-editor .ql-video.ql-align-right {
  margin: 0 0 0 auto;
}
.ql-editor .ql-bg-black {
  background-color: #000;
}
.ql-editor .ql-bg-red {
  background-color: #e60000;
}
.ql-editor .ql-bg-orange {
  background-color: #f90;
}
.ql-editor .ql-bg-yellow {
  background-color: #ff0;
}
.ql-editor .ql-bg-green {
  background-color: #008a00;
}
.ql-editor .ql-bg-blue {
  background-color: #06c;
}
.ql-editor .ql-bg-purple {
  background-color: #93f;
}
.ql-editor .ql-color-white {
  color: #fff;
}
.ql-editor .ql-color-red {
  color: #e60000;
}
.ql-editor .ql-color-orange {
  color: #f90;
}
.ql-editor .ql-color-yellow {
  color: #ff0;
}
.ql-editor .ql-color-green {
  color: #008a00;
}
.ql-editor .ql-color-blue {
  color: #06c;
}
.ql-editor .ql-color-purple {
  color: #93f;
}
.ql-editor .ql-font-serif {
  font-family:
    Georgia,
    Times New Roman,
    serif;
}
.ql-editor .ql-font-monospace {
  font-family:
    Monaco,
    Courier New,
    monospace;
}
.ql-editor .ql-size-small {
  font-size: .75em;
}
.ql-editor .ql-size-large {
  font-size: 1.5em;
}
.ql-editor .ql-size-huge {
  font-size: 2.5em;
}
.ql-editor .ql-direction-rtl {
  direction: rtl;
  text-align: inherit;
}
.ql-editor .ql-align-center {
  text-align: center;
}
.ql-editor .ql-align-justify {
  text-align: justify;
}
.ql-editor .ql-align-right {
  text-align: right;
}
.ql-editor .ql-ui {
  position: absolute;
}
.ql-editor.ql-blank::before {
  color: rgba(0, 0, 0, 0.6);
  content: attr(data-placeholder);
  font-style: italic;
  left: 15px;
  pointer-events: none;
  position: absolute;
  right: 15px;
}
.ql-snow.ql-toolbar:after,
.ql-snow .ql-toolbar:after {
  clear: both;
  content: "";
  display: table;
}
.ql-snow.ql-toolbar button,
.ql-snow .ql-toolbar button {
  background: none;
  border: none;
  cursor: pointer;
  display: inline-block;
  float: left;
  height: 24px;
  padding: 3px 5px;
  width: 28px;
}
.ql-snow.ql-toolbar button svg,
.ql-snow .ql-toolbar button svg {
  float: left;
  height: 100%;
}
.ql-snow.ql-toolbar button:active:hover,
.ql-snow .ql-toolbar button:active:hover {
  outline: none;
}
.ql-snow.ql-toolbar input.ql-image[type=file],
.ql-snow .ql-toolbar input.ql-image[type=file] {
  display: none;
}
.ql-snow.ql-toolbar button:hover,
.ql-snow .ql-toolbar button:hover,
.ql-snow.ql-toolbar button:focus,
.ql-snow .ql-toolbar button:focus,
.ql-snow.ql-toolbar button.ql-active,
.ql-snow .ql-toolbar button.ql-active,
.ql-snow.ql-toolbar .ql-picker-label:hover,
.ql-snow .ql-toolbar .ql-picker-label:hover,
.ql-snow.ql-toolbar .ql-picker-label.ql-active,
.ql-snow .ql-toolbar .ql-picker-label.ql-active,
.ql-snow.ql-toolbar .ql-picker-item:hover,
.ql-snow .ql-toolbar .ql-picker-item:hover,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected,
.ql-snow .ql-toolbar .ql-picker-item.ql-selected {
  color: #06c;
}
.ql-snow.ql-toolbar button:hover .ql-fill,
.ql-snow .ql-toolbar button:hover .ql-fill,
.ql-snow.ql-toolbar button:focus .ql-fill,
.ql-snow .ql-toolbar button:focus .ql-fill,
.ql-snow.ql-toolbar button.ql-active .ql-fill,
.ql-snow .ql-toolbar button.ql-active .ql-fill,
.ql-snow.ql-toolbar .ql-picker-label:hover .ql-fill,
.ql-snow .ql-toolbar .ql-picker-label:hover .ql-fill,
.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-fill,
.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-fill,
.ql-snow.ql-toolbar .ql-picker-item:hover .ql-fill,
.ql-snow .ql-toolbar .ql-picker-item:hover .ql-fill,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-fill,
.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-fill,
.ql-snow.ql-toolbar button:hover .ql-stroke.ql-fill,
.ql-snow .ql-toolbar button:hover .ql-stroke.ql-fill,
.ql-snow.ql-toolbar button:focus .ql-stroke.ql-fill,
.ql-snow .ql-toolbar button:focus .ql-stroke.ql-fill,
.ql-snow.ql-toolbar button.ql-active .ql-stroke.ql-fill,
.ql-snow .ql-toolbar button.ql-active .ql-stroke.ql-fill,
.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill,
.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill,
.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill,
.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill,
.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill,
.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill,
.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill {
  fill: #06c;
}
.ql-snow.ql-toolbar button:hover .ql-stroke,
.ql-snow .ql-toolbar button:hover .ql-stroke,
.ql-snow.ql-toolbar button:focus .ql-stroke,
.ql-snow .ql-toolbar button:focus .ql-stroke,
.ql-snow.ql-toolbar button.ql-active .ql-stroke,
.ql-snow .ql-toolbar button.ql-active .ql-stroke,
.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke,
.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke,
.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke,
.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke,
.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke,
.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke,
.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke,
.ql-snow.ql-toolbar button:hover .ql-stroke-miter,
.ql-snow .ql-toolbar button:hover .ql-stroke-miter,
.ql-snow.ql-toolbar button:focus .ql-stroke-miter,
.ql-snow .ql-toolbar button:focus .ql-stroke-miter,
.ql-snow.ql-toolbar button.ql-active .ql-stroke-miter,
.ql-snow .ql-toolbar button.ql-active .ql-stroke-miter,
.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke-miter,
.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke-miter,
.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter,
.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter,
.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke-miter,
.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke-miter,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter,
.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter {
  stroke: #06c;
}
@media (pointer:coarse) {
  .ql-snow.ql-toolbar button:hover:not(.ql-active),
  .ql-snow .ql-toolbar button:hover:not(.ql-active) {
    color: #444;
  }
  .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-fill,
  .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-fill,
  .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke.ql-fill,
  .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke.ql-fill {
    fill: #444;
  }
  .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke,
  .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke,
  .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke-miter,
  .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke-miter {
    stroke: #444;
  }
}
.ql-snow {
  box-sizing: border-box;
}
.ql-snow * {
  box-sizing: border-box;
}
.ql-snow .ql-hidden {
  display: none;
}
.ql-snow .ql-out-bottom,
.ql-snow .ql-out-top {
  visibility: hidden;
}
.ql-snow .ql-tooltip {
  position: absolute;
  transform: translateY(10px);
}
.ql-snow .ql-tooltip a {
  cursor: pointer;
  text-decoration: none;
}
.ql-snow .ql-tooltip.ql-flip {
  transform: translateY(-10px);
}
.ql-snow .ql-formats {
  display: inline-block;
  vertical-align: middle;
}
.ql-snow .ql-formats:after {
  clear: both;
  content: "";
  display: table;
}
.ql-snow .ql-stroke {
  fill: none;
  stroke: #444;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}
.ql-snow .ql-stroke-miter {
  fill: none;
  stroke: #444;
  stroke-miterlimit: 10;
  stroke-width: 2;
}
.ql-snow .ql-fill,
.ql-snow .ql-stroke.ql-fill {
  fill: #444;
}
.ql-snow .ql-empty {
  fill: none;
}
.ql-snow .ql-even {
  fill-rule: evenodd;
}
.ql-snow .ql-thin,
.ql-snow .ql-stroke.ql-thin {
  stroke-width: 1;
}
.ql-snow .ql-transparent {
  opacity: .4;
}
.ql-snow .ql-direction svg:last-child {
  display: none;
}
.ql-snow .ql-direction.ql-active svg:last-child {
  display: inline;
}
.ql-snow .ql-direction.ql-active svg:first-child {
  display: none;
}
.ql-snow .ql-editor h1 {
  font-size: 2em;
}
.ql-snow .ql-editor h2 {
  font-size: 1.5em;
}
.ql-snow .ql-editor h3 {
  font-size: 1.17em;
}
.ql-snow .ql-editor h4 {
  font-size: 1em;
}
.ql-snow .ql-editor h5 {
  font-size: .83em;
}
.ql-snow .ql-editor h6 {
  font-size: .67em;
}
.ql-snow .ql-editor a {
  text-decoration: underline;
}
.ql-snow .ql-editor blockquote {
  border-left: 4px solid #ccc;
  margin-bottom: 5px;
  margin-top: 5px;
  padding-left: 16px;
}
.ql-snow .ql-editor code,
.ql-snow .ql-editor .ql-code-block-container {
  background-color: #f0f0f0;
  border-radius: 3px;
}
.ql-snow .ql-editor .ql-code-block-container {
  margin-bottom: 5px;
  margin-top: 5px;
  padding: 5px 10px;
}
.ql-snow .ql-editor code {
  font-size: 85%;
  padding: 2px 4px;
}
.ql-snow .ql-editor .ql-code-block-container {
  background-color: #23241f;
  color: #f8f8f2;
  overflow: visible;
}
.ql-snow .ql-editor img {
  max-width: 100%;
}
.ql-snow .ql-picker {
  color: #444;
  display: inline-block;
  float: left;
  font-size: 14px;
  font-weight: 500;
  height: 24px;
  position: relative;
  vertical-align: middle;
}
.ql-snow .ql-picker-label {
  cursor: pointer;
  display: inline-block;
  height: 100%;
  padding-left: 8px;
  padding-right: 2px;
  position: relative;
  width: 100%;
}
.ql-snow .ql-picker-label::before {
  display: inline-block;
  line-height: 22px;
}
.ql-snow .ql-picker-options {
  background-color: #fff;
  display: none;
  min-width: 100%;
  padding: 4px 8px;
  position: absolute;
  white-space: nowrap;
}
.ql-snow .ql-picker-options .ql-picker-item {
  cursor: pointer;
  display: block;
  padding-bottom: 5px;
  padding-top: 5px;
}
.ql-snow .ql-picker.ql-expanded .ql-picker-label {
  color: #ccc;
  z-index: 2;
}
.ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-fill {
  fill: #ccc;
}
.ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-stroke {
  stroke: #ccc;
}
.ql-snow .ql-picker.ql-expanded .ql-picker-options {
  display: block;
  margin-top: -1px;
  top: 100%;
  z-index: 1;
}
.ql-snow .ql-color-picker,
.ql-snow .ql-icon-picker {
  width: 28px;
}
.ql-snow .ql-color-picker .ql-picker-label,
.ql-snow .ql-icon-picker .ql-picker-label {
  padding: 2px 4px;
}
.ql-snow .ql-color-picker .ql-picker-label svg,
.ql-snow .ql-icon-picker .ql-picker-label svg {
  right: 4px;
}
.ql-snow .ql-icon-picker .ql-picker-options {
  padding: 4px 0;
}
.ql-snow .ql-icon-picker .ql-picker-item {
  height: 24px;
  width: 24px;
  padding: 2px 4px;
}
.ql-snow .ql-color-picker .ql-picker-options {
  padding: 3px 5px;
  width: 152px;
}
.ql-snow .ql-color-picker .ql-picker-item {
  border: 1px solid transparent;
  float: left;
  height: 16px;
  margin: 2px;
  padding: 0;
  width: 16px;
}
.ql-snow .ql-picker:not(.ql-color-picker):not(.ql-icon-picker) svg {
  position: absolute;
  margin-top: -9px;
  right: 0;
  top: 50%;
  width: 18px;
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-label]:not([data-label=""])::before,
.ql-snow .ql-picker.ql-font .ql-picker-label[data-label]:not([data-label=""])::before,
.ql-snow .ql-picker.ql-size .ql-picker-label[data-label]:not([data-label=""])::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-label]:not([data-label=""])::before,
.ql-snow .ql-picker.ql-font .ql-picker-item[data-label]:not([data-label=""])::before,
.ql-snow .ql-picker.ql-size .ql-picker-item[data-label]:not([data-label=""])::before {
  content: attr(data-label);
}
.ql-snow .ql-picker.ql-header {
  width: 98px;
}
.ql-snow .ql-picker.ql-header .ql-picker-label::before,
.ql-snow .ql-picker.ql-header .ql-picker-item::before {
  content: "Normal";
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="1"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="1"]::before {
  content: "Heading 1";
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="2"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="2"]::before {
  content: "Heading 2";
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="3"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="3"]::before {
  content: "Heading 3";
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="4"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="4"]::before {
  content: "Heading 4";
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="5"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="5"]::before {
  content: "Heading 5";
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="6"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="6"]::before {
  content: "Heading 6";
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="1"]::before {
  font-size: 2em;
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="2"]::before {
  font-size: 1.5em;
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="3"]::before {
  font-size: 1.17em;
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="4"]::before {
  font-size: 1em;
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="5"]::before {
  font-size: .83em;
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="6"]::before {
  font-size: .67em;
}
.ql-snow .ql-picker.ql-font {
  width: 108px;
}
.ql-snow .ql-picker.ql-font .ql-picker-label::before,
.ql-snow .ql-picker.ql-font .ql-picker-item::before {
  content: "Sans Serif";
}
.ql-snow .ql-picker.ql-font .ql-picker-label[data-value=serif]::before,
.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=serif]::before {
  content: "Serif";
}
.ql-snow .ql-picker.ql-font .ql-picker-label[data-value=monospace]::before,
.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=monospace]::before {
  content: "Monospace";
}
.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=serif]::before {
  font-family:
    Georgia,
    Times New Roman,
    serif;
}
.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=monospace]::before {
  font-family:
    Monaco,
    Courier New,
    monospace;
}
.ql-snow .ql-picker.ql-size {
  width: 98px;
}
.ql-snow .ql-picker.ql-size .ql-picker-label::before,
.ql-snow .ql-picker.ql-size .ql-picker-item::before {
  content: "Normal";
}
.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=small]::before,
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=small]::before {
  content: "Small";
}
.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=large]::before,
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=large]::before {
  content: "Large";
}
.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=huge]::before,
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=huge]::before {
  content: "Huge";
}
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=small]::before {
  font-size: 10px;
}
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=large]::before {
  font-size: 18px;
}
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=huge]::before {
  font-size: 32px;
}
.ql-snow .ql-color-picker.ql-background .ql-picker-item {
  background-color: #fff;
}
.ql-snow .ql-color-picker.ql-color .ql-picker-item {
  background-color: #000;
}
.ql-code-block-container {
  position: relative;
}
.ql-code-block-container .ql-ui {
  right: 5px;
  top: 5px;
}
.ql-toolbar.ql-snow {
  border: 1px solid #ccc;
  box-sizing: border-box;
  font-family:
    "Helvetica Neue",
    "Helvetica",
    "Arial",
    sans-serif;
  padding: 8px;
}
.ql-toolbar.ql-snow .ql-formats {
  margin-right: 15px;
}
.ql-toolbar.ql-snow .ql-picker-label {
  border: 1px solid transparent;
}
.ql-toolbar.ql-snow .ql-picker-options {
  border: 1px solid transparent;
  box-shadow: rgba(0, 0, 0, 0.2) 0 2px 8px;
}
.ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-label {
  border-color: #ccc;
}
.ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-options {
  border-color: #ccc;
}
.ql-toolbar.ql-snow .ql-color-picker .ql-picker-item.ql-selected,
.ql-toolbar.ql-snow .ql-color-picker .ql-picker-item:hover {
  border-color: #000;
}
.ql-toolbar.ql-snow + .ql-container.ql-snow {
  border-top: 0;
}
.ql-snow .ql-tooltip {
  background-color: #fff;
  border: 1px solid #ccc;
  box-shadow: 0 0 5px #ddd;
  color: #444;
  padding: 5px 12px;
  white-space: nowrap;
}
.ql-snow .ql-tooltip::before {
  content: "Visit URL:";
  line-height: 26px;
  margin-right: 8px;
}
.ql-snow .ql-tooltip input[type=text] {
  display: none;
  border: 1px solid #ccc;
  font-size: 13px;
  height: 26px;
  margin: 0;
  padding: 3px 5px;
  width: 170px;
}
.ql-snow .ql-tooltip a.ql-preview {
  display: inline-block;
  max-width: 200px;
  overflow-x: hidden;
  text-overflow: ellipsis;
  vertical-align: top;
}
.ql-snow .ql-tooltip a.ql-action::after {
  border-right: 1px solid #ccc;
  content: "Edit";
  margin-left: 16px;
  padding-right: 8px;
}
.ql-snow .ql-tooltip a.ql-remove::before {
  content: "Remove";
  margin-left: 8px;
}
.ql-snow .ql-tooltip a {
  line-height: 26px;
}
.ql-snow .ql-tooltip.ql-editing a.ql-preview,
.ql-snow .ql-tooltip.ql-editing a.ql-remove {
  display: none;
}
.ql-snow .ql-tooltip.ql-editing input[type=text] {
  display: inline-block;
}
.ql-snow .ql-tooltip.ql-editing a.ql-action::after {
  border-right: 0;
  content: "Save";
  padding-right: 0;
}
.ql-snow .ql-tooltip[data-mode=link]::before {
  content: "Enter link:";
}
.ql-snow .ql-tooltip[data-mode=formula]::before {
  content: "Enter formula:";
}
.ql-snow .ql-tooltip[data-mode=video]::before {
  content: "Enter video:";
}
.ql-snow a {
  color: #06c;
}
.ql-container.ql-snow {
  border: 1px solid #ccc;
}

/* src/global.scss */
html,
body {
  height: 100%;
  margin: 0;
}
.app-shell {
  height: 100vh;
}
.app-sidenav {
  width: 280px;
}
.app-toolbar {
  position: sticky;
  top: 0;
  z-index: 2;
}
.app-content {
  padding: 16px;
  min-height: calc(100vh - 64px);
  box-sizing: border-box;
}
.table-container,
.mat-elevation-z2.table-container {
  overflow-x: auto;
  overflow-y: hidden;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.table-container::-webkit-scrollbar,
.mat-elevation-z2.table-container::-webkit-scrollbar {
  height: 8px;
}
.table-container::-webkit-scrollbar-track,
.mat-elevation-z2.table-container::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}
.table-container::-webkit-scrollbar-thumb,
.mat-elevation-z2.table-container::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}
.table-container::-webkit-scrollbar-thumb:hover,
.mat-elevation-z2.table-container::-webkit-scrollbar-thumb:hover {
  background: #555;
}
.mat-mdc-table,
table.mat-mdc-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: transparent;
}
.mat-mdc-table .mat-mdc-header-row,
table.mat-mdc-table .mat-mdc-header-row {
  background: #f8f9fa;
  color: #495057;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 12px;
  height: 56px;
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid #dee2e6;
}
.mat-mdc-table .mat-mdc-header-row .mat-mdc-header-cell,
table.mat-mdc-table .mat-mdc-header-row .mat-mdc-header-cell {
  color: #495057;
  border-bottom: none;
  padding: 16px 12px;
  font-weight: 600;
}
.mat-mdc-table .mat-mdc-header-row .mat-mdc-header-cell.sortable,
table.mat-mdc-table .mat-mdc-header-row .mat-mdc-header-cell.sortable {
  cursor: pointer;
  user-select: none;
}
.mat-mdc-table .mat-mdc-header-row .mat-mdc-header-cell[aria-sort=ascending],
.mat-mdc-table .mat-mdc-header-row .mat-mdc-header-cell[aria-sort=descending],
table.mat-mdc-table .mat-mdc-header-row .mat-mdc-header-cell[aria-sort=ascending],
table.mat-mdc-table .mat-mdc-header-row .mat-mdc-header-cell[aria-sort=descending] {
  background-color: #e9ecef;
}
.mat-mdc-table .mat-mdc-row,
table.mat-mdc-table .mat-mdc-row {
  transition: all 0.2s ease;
  height: 52px;
  border-bottom: 1px solid #e9ecef;
}
.mat-mdc-table .mat-mdc-row:nth-child(odd),
table.mat-mdc-table .mat-mdc-row:nth-child(odd) {
  background-color: #ffffff;
}
.mat-mdc-table .mat-mdc-row:nth-child(even),
table.mat-mdc-table .mat-mdc-row:nth-child(even) {
  background-color: #f5f5f7;
}
.mat-mdc-table .mat-mdc-row:hover,
table.mat-mdc-table .mat-mdc-row:hover {
  background-color: rgba(36, 180, 243, 0.1) !important;
  --mat-table-row-item-hover-state-layer-opacity: 0;
  cursor: pointer;
}
.mat-mdc-table .mat-mdc-row.selected-row,
table.mat-mdc-table .mat-mdc-row.selected-row {
  background-color: #e3f2fd !important;
  border-left: 3px solid #2196f3;
}
.mat-mdc-table .mat-mdc-row.selected-row:hover,
table.mat-mdc-table .mat-mdc-row.selected-row:hover {
  background-color: #bbdefb !important;
}
.mat-mdc-table .mat-mdc-row.clickable-row,
table.mat-mdc-table .mat-mdc-row.clickable-row {
  cursor: pointer;
}
.mat-mdc-table .mat-mdc-row .mat-mdc-cell,
table.mat-mdc-table .mat-mdc-row .mat-mdc-cell {
  padding: 12px 12px;
  border-bottom: none;
  font-size: 14px;
  color: #495057;
  vertical-align: middle;
  justify-content: flex-start;
}
.mat-mdc-table .mat-mdc-row .mat-mdc-cell:first-child,
table.mat-mdc-table .mat-mdc-row .mat-mdc-cell:first-child {
  padding-left: 12px;
}
.mat-mdc-table .mat-mdc-row .mat-mdc-cell:last-child,
table.mat-mdc-table .mat-mdc-row .mat-mdc-cell:last-child {
  padding-right: 12px;
}
.mat-mdc-table .mat-mdc-row .mat-mdc-cell.text-overflow,
table.mat-mdc-table .mat-mdc-row .mat-mdc-cell.text-overflow {
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.mat-mdc-table .mat-mdc-row.detail-row,
table.mat-mdc-table .mat-mdc-row.detail-row {
  height: 0 !important;
}
.mat-mdc-table .mat-mdc-row.detail-row .mat-mdc-cell,
table.mat-mdc-table .mat-mdc-row.detail-row .mat-mdc-cell {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  border-bottom: none !important;
}
.mat-mdc-table .mat-mdc-footer-row,
table.mat-mdc-table .mat-mdc-footer-row {
  background-color: #f5f5f5;
  border-top: 2px solid #e0e0e0;
  font-weight: 600;
  height: 56px;
}
.mat-mdc-table .mat-mdc-footer-row .mat-mdc-footer-cell,
table.mat-mdc-table .mat-mdc-footer-row .mat-mdc-footer-cell {
  padding: 16px 12px;
  color: #666666;
}
table.mat-clickable {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}
table.mat-clickable thead {
  background: #f8f9fa;
  color: #495057;
  border-bottom: 1px solid #dee2e6;
}
table.mat-clickable thead tr th {
  padding: 16px 12px;
  text-align: left;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 12px;
  color: #495057;
  border: none;
}
table.mat-clickable thead tr th.sortable {
  cursor: pointer;
  user-select: none;
}
table.mat-clickable thead tr th.sortable:hover {
  background-color: #e9ecef;
}
table.mat-clickable tbody tr {
  transition: all 0.2s ease;
  border-bottom: 1px solid #e9ecef;
}
table.mat-clickable tbody tr:nth-child(odd) {
  background-color: #ffffff;
}
table.mat-clickable tbody tr:nth-child(even) {
  background-color: #f5f5f7;
}
table.mat-clickable tbody tr:hover {
  background-color: #e7f1ff !important;
  cursor: pointer;
}
table.mat-clickable tbody tr td {
  padding: 12px 12px;
  font-size: 14px;
  color: #495057;
  border: none;
  vertical-align: middle;
}
.mat-mdc-cell .status-badge,
td .status-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.mat-mdc-cell .status-active,
.mat-mdc-cell .status-completed,
.mat-mdc-cell .status-paid,
td .status-active,
td .status-completed,
td .status-paid {
  background-color: #e8f5e9;
  color: #2e7d32;
}
.mat-mdc-cell .status-pending,
.mat-mdc-cell .status-processing,
td .status-pending,
td .status-processing {
  background-color: #fff3e0;
  color: #e65100;
}
.mat-mdc-cell .status-cancelled,
.mat-mdc-cell .status-failed,
.mat-mdc-cell .status-rejected,
td .status-cancelled,
td .status-failed,
td .status-rejected {
  background-color: #ffebee;
  color: #c62828;
}
.mat-mdc-cell .status-draft,
.mat-mdc-cell .status-inactive,
td .status-draft,
td .status-inactive {
  background-color: #f5f5f5;
  color: #757575;
}
.mat-mdc-cell .status-new,
td .status-new {
  background-color: #e3f2fd;
  color: #1565c0;
}
.mat-mdc-cell .status-unassigned,
td .status-unassigned {
  background-color: #fff3e0;
  color: #e65100;
}
.mat-mdc-cell .status-assigned,
td .status-assigned {
  background-color: #e3f2fd;
  color: #1565c0;
}
.mat-mdc-cell .status-unconfirmed,
td .status-unconfirmed {
  background-color: #fff8e1;
  color: #f57f17;
}
.mat-mdc-cell .status-todo,
td .status-todo {
  background-color: #f5f5f5;
  color: #616161;
}
.mat-mdc-cell .status-driving_to_pickup,
.mat-mdc-cell .status-arrived_at_pickup,
.mat-mdc-cell .status-started,
.mat-mdc-cell .status-pickedup,
td .status-driving_to_pickup,
td .status-arrived_at_pickup,
td .status-started,
td .status-pickedup {
  background-color: #e0f7fa;
  color: #00695c;
}
.mat-mdc-cell .status-completed,
td .status-completed {
  background-color: #e8f5e9;
  color: #2e7d32;
}
.mat-mdc-cell .status-canceled,
.mat-mdc-cell .status-canceled_driver,
.mat-mdc-cell .status-canceled_passenger,
td .status-canceled,
td .status-canceled_driver,
td .status-canceled_passenger {
  background-color: #ffebee;
  color: #c62828;
}
.mat-mdc-cell .table-actions,
td .table-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}
.mat-mdc-cell .table-actions button.mat-mdc-icon-button,
td .table-actions button.mat-mdc-icon-button {
  width: 36px;
  height: 36px;
  padding: 6px;
}
.mat-mdc-cell .table-actions button.mat-mdc-icon-button mat-icon,
td .table-actions button.mat-mdc-icon-button mat-icon {
  font-size: 20px;
  width: 20px;
  height: 20px;
}
.mat-column-select,
.mat-mdc-header-cell:has(.mat-mdc-checkbox),
.mat-mdc-cell:has(.mat-mdc-checkbox) {
  width: 48px;
  padding-left: 16px !important;
  padding-right: 8px !important;
}
.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  text-align: center;
  color: #757575;
}
.empty-state mat-icon {
  font-size: 48px;
  width: 48px;
  height: 48px;
  line-height: 48px;
  margin-bottom: 16px;
}
.empty-state p {
  font-size: 16px;
  margin: 0;
  color: #9e9e9e;
}
.loading-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
}
.loading-container mat-progress-spinner {
  margin-bottom: 16px;
}
.loading-container p {
  color: #757575;
  font-size: 14px;
}
.mat-mdc-paginator {
  background-color: #fafafa;
  border-top: 1px solid #e0e0e0;
  border-radius: 0 0 8px 8px;
}
.mat-mdc-paginator .mat-mdc-paginator-container {
  padding: 8px 16px;
  min-height: 56px;
}
.mat-mdc-paginator .mat-mdc-paginator-page-size-label,
.mat-mdc-paginator .mat-mdc-paginator-range-label {
  color: #666666;
  font-size: 13px;
}
@media (max-width: 768px) {
  .mat-mdc-table .mat-mdc-header-row .mat-mdc-header-cell,
  table.mat-mdc-table .mat-mdc-header-row .mat-mdc-header-cell {
    padding: 12px 10px;
    font-size: 11px;
  }
  .mat-mdc-table .mat-mdc-header-row .mat-mdc-header-cell.mobile-hidden,
  table.mat-mdc-table .mat-mdc-header-row .mat-mdc-header-cell.mobile-hidden {
    display: none;
  }
  .mat-mdc-table .mat-mdc-row .mat-mdc-cell,
  table.mat-mdc-table .mat-mdc-row .mat-mdc-cell {
    padding: 10px 10px;
    font-size: 13px;
  }
  .mat-mdc-table .mat-mdc-row .mat-mdc-cell.mobile-hidden,
  table.mat-mdc-table .mat-mdc-row .mat-mdc-cell.mobile-hidden {
    display: none;
  }
  .mat-mdc-table .mat-mdc-row .mat-mdc-cell:first-child,
  table.mat-mdc-table .mat-mdc-row .mat-mdc-cell:first-child {
    padding-left: 10px;
  }
  .mat-mdc-table .mat-mdc-row .mat-mdc-cell:last-child,
  table.mat-mdc-table .mat-mdc-row .mat-mdc-cell:last-child {
    padding-right: 10px;
  }
  .table-container {
    border-radius: 4px;
  }
}
html[data-theme=dark] .table-container,
html[data-theme=dark] .mat-elevation-z2.table-container {
  background: #1e1e1e;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}
html[data-theme=dark] .mat-mdc-table .mat-mdc-header-row,
html[data-theme=dark] table.mat-mdc-table .mat-mdc-header-row {
  background: #2c2c2c;
  color: #e0e0e0;
  border-bottom: 1px solid #3a3a3a;
}
html[data-theme=dark] .mat-mdc-table .mat-mdc-header-row .mat-mdc-header-cell,
html[data-theme=dark] table.mat-mdc-table .mat-mdc-header-row .mat-mdc-header-cell {
  color: #e0e0e0;
}
html[data-theme=dark] .mat-mdc-table .mat-mdc-header-row .mat-mdc-header-cell.sortable,
html[data-theme=dark] table.mat-mdc-table .mat-mdc-header-row .mat-mdc-header-cell.sortable {
  cursor: pointer;
}
html[data-theme=dark] .mat-mdc-table .mat-mdc-header-row .mat-mdc-header-cell[aria-sort=ascending],
html[data-theme=dark] .mat-mdc-table .mat-mdc-header-row .mat-mdc-header-cell[aria-sort=descending],
html[data-theme=dark] table.mat-mdc-table .mat-mdc-header-row .mat-mdc-header-cell[aria-sort=ascending],
html[data-theme=dark] table.mat-mdc-table .mat-mdc-header-row .mat-mdc-header-cell[aria-sort=descending] {
  background-color: #333333;
}
html[data-theme=dark] .mat-mdc-table .mat-mdc-row,
html[data-theme=dark] table.mat-mdc-table .mat-mdc-row {
  border-bottom: 1px solid #2a2a2a;
}
html[data-theme=dark] .mat-mdc-table .mat-mdc-row:nth-child(even),
html[data-theme=dark] table.mat-mdc-table .mat-mdc-row:nth-child(even) {
  background-color: #242424;
}
html[data-theme=dark] .mat-mdc-table .mat-mdc-row:nth-child(odd),
html[data-theme=dark] table.mat-mdc-table .mat-mdc-row:nth-child(odd) {
  background-color: #1e1e1e;
}
html[data-theme=dark] .mat-mdc-table .mat-mdc-row:hover,
html[data-theme=dark] table.mat-mdc-table .mat-mdc-row:hover {
  background-color: #2d3e50 !important;
}
html[data-theme=dark] .mat-mdc-table .mat-mdc-row.selected-row,
html[data-theme=dark] table.mat-mdc-table .mat-mdc-row.selected-row {
  background-color: #1e3a5f !important;
  border-left: 3px solid #42a5f5;
}
html[data-theme=dark] .mat-mdc-table .mat-mdc-row.selected-row:hover,
html[data-theme=dark] table.mat-mdc-table .mat-mdc-row.selected-row:hover {
  background-color: #25476a !important;
}
html[data-theme=dark] .mat-mdc-table .mat-mdc-row .mat-mdc-cell,
html[data-theme=dark] table.mat-mdc-table .mat-mdc-row .mat-mdc-cell {
  color: #e0e0e0;
  border-bottom: none;
}
html[data-theme=dark] .mat-mdc-table .mat-mdc-footer-row,
html[data-theme=dark] table.mat-mdc-table .mat-mdc-footer-row {
  background-color: #2c2c2c;
  border-top: 1px solid #3a3a3a;
}
html[data-theme=dark] .mat-mdc-table .mat-mdc-footer-row .mat-mdc-footer-cell,
html[data-theme=dark] table.mat-mdc-table .mat-mdc-footer-row .mat-mdc-footer-cell {
  color: #b0b0b0;
}
html[data-theme=dark] table.mat-clickable thead {
  background: #2c2c2c;
  color: #e0e0e0;
  border-bottom: 1px solid #3a3a3a;
}
html[data-theme=dark] table.mat-clickable thead tr th {
  color: #e0e0e0;
}
html[data-theme=dark] table.mat-clickable thead tr th.sortable {
  cursor: pointer;
}
html[data-theme=dark] table.mat-clickable tbody tr {
  border-bottom: 1px solid #2a2a2a;
}
html[data-theme=dark] table.mat-clickable tbody tr:nth-child(even) {
  background-color: #242424;
}
html[data-theme=dark] table.mat-clickable tbody tr:nth-child(odd) {
  background-color: #1e1e1e;
}
html[data-theme=dark] table.mat-clickable tbody tr:hover {
  background-color: #2d3e50 !important;
}
html[data-theme=dark] table.mat-clickable tbody tr td {
  color: #e0e0e0;
}
html[data-theme=dark] .empty-state {
  color: #a0a0a0;
}
html[data-theme=dark] .empty-state p {
  color: #909090;
}
html[data-theme=dark] .loading-container p {
  color: #a0a0a0;
}
html[data-theme=dark] .mat-mdc-paginator {
  background-color: #242424;
  border-top: 1px solid #2a2a2a;
}
html[data-theme=dark] .mat-mdc-paginator .mat-mdc-paginator-page-size-label,
html[data-theme=dark] .mat-mdc-paginator .mat-mdc-paginator-range-label {
  color: #b0b0b0;
}
html[data-theme=dark] .mat-mdc-cell .status-active,
html[data-theme=dark] .mat-mdc-cell .status-completed,
html[data-theme=dark] .mat-mdc-cell .status-paid,
html[data-theme=dark] td .status-active,
html[data-theme=dark] td .status-completed,
html[data-theme=dark] td .status-paid {
  background-color: #1b5e20;
  color: #81c784;
}
html[data-theme=dark] .mat-mdc-cell .status-pending,
html[data-theme=dark] .mat-mdc-cell .status-processing,
html[data-theme=dark] td .status-pending,
html[data-theme=dark] td .status-processing {
  background-color: #e65100;
  color: #ffb74d;
}
html[data-theme=dark] .mat-mdc-cell .status-cancelled,
html[data-theme=dark] .mat-mdc-cell .status-failed,
html[data-theme=dark] .mat-mdc-cell .status-rejected,
html[data-theme=dark] td .status-cancelled,
html[data-theme=dark] td .status-failed,
html[data-theme=dark] td .status-rejected {
  background-color: #b71c1c;
  color: #ef5350;
}
html[data-theme=dark] .mat-mdc-cell .status-draft,
html[data-theme=dark] .mat-mdc-cell .status-inactive,
html[data-theme=dark] td .status-draft,
html[data-theme=dark] td .status-inactive {
  background-color: #424242;
  color: #bdbdbd;
}
html[data-theme=dark] .mat-mdc-cell .status-new,
html[data-theme=dark] td .status-new {
  background-color: #0d47a1;
  color: #64b5f6;
}
html[data-theme=dark] .mat-mdc-cell .status-unassigned,
html[data-theme=dark] td .status-unassigned {
  background-color: #4a2000;
  color: #ffb74d;
}
html[data-theme=dark] .mat-mdc-cell .status-assigned,
html[data-theme=dark] td .status-assigned {
  background-color: #0d2f4a;
  color: #64b5f6;
}
html[data-theme=dark] .mat-mdc-cell .status-unconfirmed,
html[data-theme=dark] td .status-unconfirmed {
  background-color: #3e2800;
  color: #ffcc80;
}
html[data-theme=dark] .mat-mdc-cell .status-todo,
html[data-theme=dark] td .status-todo {
  background-color: #2c2c2c;
  color: #bdbdbd;
}
html[data-theme=dark] .mat-mdc-cell .status-driving_to_pickup,
html[data-theme=dark] .mat-mdc-cell .status-arrived_at_pickup,
html[data-theme=dark] .mat-mdc-cell .status-started,
html[data-theme=dark] .mat-mdc-cell .status-pickedup,
html[data-theme=dark] td .status-driving_to_pickup,
html[data-theme=dark] td .status-arrived_at_pickup,
html[data-theme=dark] td .status-started,
html[data-theme=dark] td .status-pickedup {
  background-color: #003d33;
  color: #4db6ac;
}
html[data-theme=dark] .mat-mdc-cell .status-completed,
html[data-theme=dark] td .status-completed {
  background-color: #1b5e20;
  color: #81c784;
}
html[data-theme=dark] .mat-mdc-cell .status-canceled,
html[data-theme=dark] .mat-mdc-cell .status-canceled_driver,
html[data-theme=dark] .mat-mdc-cell .status-canceled_passenger,
html[data-theme=dark] td .status-canceled,
html[data-theme=dark] td .status-canceled_driver,
html[data-theme=dark] td .status-canceled_passenger {
  background-color: #4a0010;
  color: #ef9a9a;
}
html[data-theme=light] .table-container,
html[data-theme=light] .mat-elevation-z2.table-container {
  background: #ffffff !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
}
html[data-theme=light] .mat-mdc-table .mat-mdc-header-row,
html[data-theme=light] table.mat-mdc-table .mat-mdc-header-row {
  background: #f8f9fa !important;
  color: #495057 !important;
  border-bottom: 1px solid #dee2e6 !important;
}
html[data-theme=light] .mat-mdc-table .mat-mdc-header-row .mat-mdc-header-cell,
html[data-theme=light] table.mat-mdc-table .mat-mdc-header-row .mat-mdc-header-cell {
  color: #495057 !important;
}
html[data-theme=light] .mat-mdc-table .mat-mdc-header-row .mat-mdc-header-cell.sortable,
html[data-theme=light] table.mat-mdc-table .mat-mdc-header-row .mat-mdc-header-cell.sortable {
  cursor: pointer;
}
html[data-theme=light] .mat-mdc-table .mat-mdc-header-row .mat-mdc-header-cell[aria-sort=ascending],
html[data-theme=light] .mat-mdc-table .mat-mdc-header-row .mat-mdc-header-cell[aria-sort=descending],
html[data-theme=light] table.mat-mdc-table .mat-mdc-header-row .mat-mdc-header-cell[aria-sort=ascending],
html[data-theme=light] table.mat-mdc-table .mat-mdc-header-row .mat-mdc-header-cell[aria-sort=descending] {
  background-color: #e9ecef !important;
}
html[data-theme=light] .mat-mdc-table .mat-mdc-row,
html[data-theme=light] table.mat-mdc-table .mat-mdc-row {
  border-bottom: 1px solid #e9ecef !important;
}
html[data-theme=light] .mat-mdc-table .mat-mdc-row:nth-child(odd),
html[data-theme=light] table.mat-mdc-table .mat-mdc-row:nth-child(odd) {
  background-color: #ffffff !important;
}
html[data-theme=light] .mat-mdc-table .mat-mdc-row:nth-child(even),
html[data-theme=light] table.mat-mdc-table .mat-mdc-row:nth-child(even) {
  background-color: #f5f5f7 !important;
}
html[data-theme=light] .mat-mdc-table .mat-mdc-row:hover,
html[data-theme=light] table.mat-mdc-table .mat-mdc-row:hover {
  background-color: #e7f1ff !important;
}
html[data-theme=light] .mat-mdc-table .mat-mdc-row.selected-row,
html[data-theme=light] table.mat-mdc-table .mat-mdc-row.selected-row {
  background-color: #cce5ff !important;
  border-left: 3px solid #2196f3 !important;
}
html[data-theme=light] .mat-mdc-table .mat-mdc-row.selected-row:hover,
html[data-theme=light] table.mat-mdc-table .mat-mdc-row.selected-row:hover {
  background-color: #b3d9ff !important;
}
html[data-theme=light] .mat-mdc-table .mat-mdc-row .mat-mdc-cell,
html[data-theme=light] table.mat-mdc-table .mat-mdc-row .mat-mdc-cell {
  color: rgba(0, 0, 0, 0.87) !important;
  border-bottom: none;
}
html[data-theme=light] .mat-mdc-table .mat-mdc-footer-row,
html[data-theme=light] table.mat-mdc-table .mat-mdc-footer-row {
  background-color: #f8f9fa !important;
  border-top: 1px solid #dee2e6 !important;
}
html[data-theme=light] .mat-mdc-table .mat-mdc-footer-row .mat-mdc-footer-cell,
html[data-theme=light] table.mat-mdc-table .mat-mdc-footer-row .mat-mdc-footer-cell {
  color: #495057 !important;
}
html[data-theme=light] table.mat-clickable thead {
  background: #f8f9fa !important;
  color: #495057 !important;
  border-bottom: 1px solid #dee2e6 !important;
}
html[data-theme=light] table.mat-clickable thead tr th {
  color: #495057 !important;
}
html[data-theme=light] table.mat-clickable thead tr th.sortable {
  cursor: pointer;
}
html[data-theme=light] table.mat-clickable tbody tr {
  border-bottom: 1px solid #e9ecef !important;
}
html[data-theme=light] table.mat-clickable tbody tr:nth-child(odd) {
  background-color: #ffffff !important;
}
html[data-theme=light] table.mat-clickable tbody tr:nth-child(even) {
  background-color: #f5f5f7 !important;
}
html[data-theme=light] table.mat-clickable tbody tr:hover {
  background-color: #e7f1ff !important;
}
html[data-theme=light] table.mat-clickable tbody tr td {
  color: rgba(0, 0, 0, 0.87) !important;
}
html[data-theme=light] .mat-mdc-paginator {
  background-color: #f8f9fa !important;
  border-top: 1px solid #dee2e6 !important;
  color: #495057 !important;
}
html[data-theme=light] .mat-mdc-paginator .mat-mdc-icon-button {
  color: #495057 !important;
}
html[data-theme=light] .mat-mdc-paginator .mat-mdc-paginator-page-size-label,
html[data-theme=light] .mat-mdc-paginator .mat-mdc-paginator-range-label {
  color: #495057 !important;
}
html[data-theme=light] .mat-mdc-cell .status-active,
html[data-theme=light] .mat-mdc-cell .status-completed,
html[data-theme=light] .mat-mdc-cell .status-paid,
html[data-theme=light] td .status-active,
html[data-theme=light] td .status-completed,
html[data-theme=light] td .status-paid {
  background-color: #e8f5e9 !important;
  color: #2e7d32 !important;
}
html[data-theme=light] .mat-mdc-cell .status-pending,
html[data-theme=light] .mat-mdc-cell .status-processing,
html[data-theme=light] td .status-pending,
html[data-theme=light] td .status-processing {
  background-color: #fff3e0 !important;
  color: #e65100 !important;
}
html[data-theme=light] .mat-mdc-cell .status-cancelled,
html[data-theme=light] .mat-mdc-cell .status-failed,
html[data-theme=light] .mat-mdc-cell .status-rejected,
html[data-theme=light] td .status-cancelled,
html[data-theme=light] td .status-failed,
html[data-theme=light] td .status-rejected {
  background-color: #ffebee !important;
  color: #c62828 !important;
}
html[data-theme=light] .mat-mdc-cell .status-draft,
html[data-theme=light] .mat-mdc-cell .status-inactive,
html[data-theme=light] td .status-draft,
html[data-theme=light] td .status-inactive {
  background-color: #f5f5f5 !important;
  color: #616161 !important;
}
html[data-theme=light] .mat-mdc-cell .status-new,
html[data-theme=light] td .status-new {
  background-color: #e3f2fd !important;
  color: #1565c0 !important;
}
html[data-theme=light] .collection-toolbar {
  background-color: #fafafa !important;
  border-bottom: 1px solid #e0e0e0 !important;
}
html[data-theme=light] .bulk-actions-panel {
  background-color: #e3f2fd !important;
  border-bottom: 2px solid #2196f3 !important;
}
html[data-theme=light] .bulk-actions-panel .selection-info {
  color: #1565c0 !important;
}
html[data-theme=light] .bulk-actions-panel .selection-info mat-icon {
  color: #2196f3 !important;
}
html[data-theme=light] .error-message {
  background-color: #ffebee !important;
  color: #c62828 !important;
}
html[data-theme=light] .error-message mat-icon {
  color: #d32f2f !important;
}
@media print {
  .table-container,
  .mat-elevation-z2.table-container {
    box-shadow: none;
    border: 1px solid #000;
  }
  .mat-mdc-table .mat-mdc-row:hover,
  table.mat-mdc-table .mat-mdc-row:hover {
    background-color: transparent !important;
    transform: none;
    box-shadow: none;
  }
  .mat-mdc-paginator {
    display: none;
  }
}
.collection-card .mat-mdc-card {
  border-radius: 8px;
  overflow: hidden;
}
.collection-card .collection-toolbar {
  padding: 16px 24px;
  background-color: #fafafa;
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
.collection-card .collection-toolbar .search-box {
  flex: 1;
  min-width: 250px;
}
.collection-card .collection-toolbar .search-box .mat-mdc-form-field {
  width: 100%;
}
.collection-card .collection-toolbar .custom-filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.collection-card .collection-toolbar .export-button,
.collection-card .collection-toolbar button[mat-icon-button] {
  flex-shrink: 0;
}
.collection-card .bulk-actions-panel {
  background-color: #e3f2fd;
  border-bottom: 2px solid #2196f3;
  padding: 12px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.collection-card .bulk-actions-panel .selection-info {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #1565c0;
  font-weight: 600;
}
.collection-card .bulk-actions-panel .selection-info mat-icon {
  color: #2196f3;
}
.collection-card .bulk-actions-panel .bulk-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.collection-card .bulk-actions-panel .bulk-actions .bulk-action-button {
  height: 36px;
}
.collection-card .error-message {
  padding: 16px 24px;
  background-color: #ffebee;
  color: #c62828;
  display: flex;
  align-items: center;
  gap: 12px;
}
.collection-card .error-message mat-icon {
  color: #d32f2f;
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.bulk-actions-panel {
  animation: slideDown 0.3s ease;
}
.full-width {
  width: 100%;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.numeric-cell {
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.mat-column-tools,
.mat-column-toolbar {
  text-align: right !important;
}
.mat-column-tools .table-actions,
.mat-column-toolbar .table-actions {
  justify-content: flex-end;
}
.mat-mdc-tab-header .mat-mdc-tab-list .mat-mdc-tab {
  flex: 0 1 auto;
  min-width: fit-content;
  padding: 0 12px 0 12px;
}
mat-form-field.mat-form-field-disabled .mat-mdc-input-element:disabled,
mat-form-field.mat-form-field-disabled .mat-mdc-select-disabled .mat-mdc-select-value,
mat-form-field.mat-form-field-disabled input:disabled,
mat-form-field.mat-form-field-disabled textarea:disabled,
.mat-mdc-form-field-disabled .mat-mdc-input-element:disabled,
.mat-mdc-form-field-disabled .mat-mdc-select-disabled .mat-mdc-select-value,
.mat-mdc-form-field-disabled input:disabled,
.mat-mdc-form-field-disabled textarea:disabled {
  color: var(--mat-sys-on-surface-variant) !important;
  opacity: 0.6 !important;
  -webkit-text-fill-color: var(--mat-sys-on-surface-variant) !important;
}
mat-form-field.mat-form-field-disabled .mat-mdc-floating-label,
.mat-mdc-form-field-disabled .mat-mdc-floating-label {
  color: var(--mat-sys-on-surface-variant) !important;
  opacity: 0.6 !important;
}
mat-card-header + mat-divider,
mat-card-header + * > mat-divider:first-child {
  margin-top: 0;
  margin-bottom: 24px;
}
mat-card-content + mat-divider,
mat-divider + mat-card-actions,
.form-container + mat-divider,
.form-container-full + mat-divider {
  margin-top: 24px;
  margin-bottom: 0;
}
.form-container,
.form-container-full {
  width: 100%;
  max-width: 720px;
  padding: 0;
}
.form-container mat-form-field,
.form-container-full mat-form-field,
.form-container app-phone-input,
.form-container-full app-phone-input,
.form-container .form-field,
.form-container-full .form-field {
  width: 100%;
  display: block;
}
.form-container mat-form-field,
.form-container-full mat-form-field {
  margin-bottom: 0;
}
.form-container-full {
  max-width: none;
}
.form-layout-vertical {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-layout-vertical .form-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
@media (min-width: 600px) {
  .form-layout-vertical .form-row.form-row-horizontal {
    flex-direction: row;
  }
  .form-layout-vertical .form-row.form-row-horizontal > * {
    flex: 1;
    min-width: 0;
  }
}
.form-layout-vertical.form-compact {
  gap: 12px;
}
.form-layout-vertical.form-compact .form-row {
  gap: 12px;
}
.form-layout-vertical.form-spacious {
  gap: 24px;
}
.form-layout-vertical.form-spacious .form-row {
  gap: 24px;
}
.form-layout-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
.form-layout-grid > * {
  min-width: 0;
}
@media (min-width: 768px) {
  .form-layout-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.form-layout-grid .form-field-full,
.form-layout-grid .form-full-width {
  grid-column: 1/-1;
}
@media (min-width: 1200px) {
  .form-layout-grid.form-grid-3col {
    grid-template-columns: repeat(3, 1fr);
  }
}
.form-layout-grid.form-compact {
  gap: 12px 16px;
}
.form-layout-grid.form-spacious {
  gap: 24px 32px;
}
.form-layout-grid.form-grid-auto {
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .form-layout-grid.form-grid-auto {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}
.form-section {
  display: flex;
  flex-direction: column;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
.form-section:first-child {
  padding-top: 0;
}
.form-section:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.form-section .form-section-title {
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 16px 0;
  color: rgba(0, 0, 0, 0.87);
  display: flex;
  align-items: center;
  gap: 8px;
}
.form-section .form-section-title mat-icon {
  font-size: 20px;
  width: 20px;
  height: 20px;
  color: rgba(0, 0, 0, 0.6);
}
.form-section .form-section-subtitle,
.form-section .form-section-description {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
  margin: -8px 0 16px 0;
  line-height: 1.5;
}
.form-section .form-subsection-title {
  font-size: 16px;
  font-weight: 500;
  margin: 32px 0 16px 0;
  color: rgba(0, 0, 0, 0.87);
}
.form-section .form-subsection-title:first-child {
  margin-top: 0;
}
.dark-mode .form-section {
  border-bottom-color: rgba(255, 255, 255, 0.12);
}
.dark-mode .form-section .form-section-title,
.dark-mode .form-section .form-subsection-title {
  color: #e0e0e0;
}
.dark-mode .form-section .form-section-title mat-icon,
.dark-mode .form-section .form-subsection-title mat-icon {
  color: rgba(255, 255, 255, 0.6);
}
.dark-mode .form-section .form-section-subtitle,
.dark-mode .form-section .form-section-description {
  color: rgba(255, 255, 255, 0.6);
}
.actions-right {
  display: flex;
  justify-content: flex-end;
}
.form-actions {
  display: flex !important;
  gap: 12px;
  padding: 16px 0 0 0 !important;
  margin-top: 24px !important;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-end;
}
.form-actions button {
  min-width: 100px;
  height: 40px;
}
.form-actions button.btn-large {
  min-width: 140px;
  height: 48px;
}
.form-actions button.btn-small {
  min-width: 80px;
  height: 36px;
}
.form-actions.actions-left,
.form-actions.form-actions-start {
  justify-content: flex-start;
}
.form-actions.actions-center,
.form-actions.form-actions-center {
  justify-content: center;
}
.form-actions.actions-space-between,
.form-actions.form-actions-space-between {
  justify-content: space-between;
}
.form-actions.actions-no-border {
  border-top: none;
  padding-top: 16px;
}
@media (max-width: 599px) {
  .form-actions.actions-mobile-full {
    flex-direction: column;
  }
  .form-actions.actions-mobile-full button {
    width: 100%;
  }
}
.form-actions.actions-sticky {
  position: sticky;
  bottom: 0;
  background: #ffffff;
  padding: 16px 0;
  margin: 24px 0 0 0;
  z-index: 10;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
}
html[data-theme=dark] .form-actions.actions-sticky {
  background: #1e1e1e;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.3);
}
html[data-theme=dark] .form-actions {
  border-top-color: rgba(255, 255, 255, 0.12);
}
@media (max-width: 600px) {
  .form-actions {
    flex-direction: column-reverse;
  }
  .form-actions button {
    width: 100%;
  }
}
mat-dialog-actions {
  display: flex !important;
  justify-content: flex-end;
  gap: 8px;
  margin: 0 !important;
  min-height: unset !important;
}
mat-dialog-actions button,
mat-dialog-actions a[mat-button],
mat-dialog-actions a[matButton] {
  margin: 0 !important;
}
mat-dialog-actions.form-actions {
  border-top: none !important;
}
mat-form-field {
  width: 100%;
}
mat-form-field.full-width {
  max-width: 100%;
}
mat-form-field.medium-width {
  max-width: 350px;
}
mat-form-field.small-width {
  max-width: 200px;
}
@media (max-width: 600px) {
  mat-form-field {
    max-width: 100% !important;
  }
}
textarea.mat-input-element {
  min-height: 80px;
  resize: vertical;
}
.form-field-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: flex-start;
}
.form-field-row mat-form-field,
.form-field-row app-phone-input {
  flex: 1;
  min-width: 200px;
}
@media (max-width: 600px) {
  .form-field-row {
    flex-direction: column;
    gap: 16px;
  }
  .form-field-row mat-form-field,
  .form-field-row app-phone-input {
    width: 100%;
  }
}
.form-inline-group {
  display: flex;
  gap: 24px;
  width: 100%;
}
.form-inline-group > * {
  flex: 1;
  min-width: 0;
}
@media (max-width: 599px) {
  .form-inline-group {
    flex-direction: column;
    gap: 16px;
  }
}
.form-field-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  background: rgba(0, 0, 0, 0.02);
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.form-field-group .form-field-group-title {
  font-size: 14px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.87);
  margin: 0 0 8px 0;
}
html[data-theme=dark] .form-field-group {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
}
html[data-theme=dark] .form-field-group .form-field-group-title {
  color: #e0e0e0;
}
.form-field-hint,
.field-hint {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.6);
  margin-top: -12px;
  margin-bottom: 8px;
  line-height: 1.4;
}
html[data-theme=dark] .form-field-hint,
html[data-theme=dark] .field-hint {
  color: rgba(255, 255, 255, 0.6);
}
.field-description {
  font-size: 13px;
  opacity: 0.7;
  margin: 8px 0 16px 0;
  line-height: 1.4;
  max-width: 500px;
}
mat-hint {
  font-size: 12px;
}
mat-hint.warning {
  color: #d32f2f;
}
mat-hint.success {
  color: #388e3c;
}
mat-hint.info {
  color: #1976d2;
}
.form-divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.12);
  margin: 24px 0;
  border: none;
}
html[data-theme=dark] .form-divider {
  background: rgba(255, 255, 255, 0.12);
}
.form-field-nested {
  margin-left: 32px;
  margin-top: 8px;
}
@media (max-width: 600px) {
  .form-field-nested {
    margin-left: 16px;
  }
}
.form-field-readonly mat-form-field {
  pointer-events: none;
}
.form-field-readonly mat-form-field .mat-mdc-text-field-wrapper {
  background: rgba(0, 0, 0, 0.03);
}
html[data-theme=dark] .form-field-readonly mat-form-field .mat-mdc-text-field-wrapper {
  background: rgba(255, 255, 255, 0.03);
}
.form-checkbox-group,
.form-radio-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 16px 0;
}
mat-checkbox,
mat-radio-button {
  display: block;
  margin-bottom: 8px;
}
mat-checkbox:last-child,
mat-radio-button:last-child {
  margin-bottom: 0;
}
.form-checkbox-inline,
.form-radio-inline {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
}
.form-checkbox-inline mat-checkbox,
.form-checkbox-inline mat-radio-button,
.form-radio-inline mat-checkbox,
.form-radio-inline mat-radio-button {
  margin-bottom: 0;
}
.url-field {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 16px;
}
.url-field .url-prefix {
  display: inline-block;
  padding: 16px 12px;
  background-color: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-right: none;
  border-radius: 4px 0 0 4px;
  font-size: 14px;
  white-space: nowrap;
  height: 56px;
  line-height: 24px;
}
.url-field mat-form-field {
  flex: 1;
  margin-bottom: 0;
}
.url-field mat-form-field .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-notch-piece.mdc-notch__leading {
  border-radius: 0 0 0 0 !important;
  border-left: none;
}
html[data-theme=dark] .url-field .url-prefix {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
}
@media (max-width: 599px) {
  .form-hide-mobile {
    display: none;
  }
}
@media (min-width: 600px) {
  .form-hide-desktop {
    display: none;
  }
}
@media (max-width: 599px) {
  .form-stack-mobile {
    flex-direction: column !important;
  }
  .form-stack-mobile > * {
    width: 100% !important;
  }
}
.ui-input-small mat-form-field {
  --mat-form-field-container-height: 40px;
  --mat-form-field-container-vertical-padding: 8px;
}
.ui-input-small mat-form-field .mat-mdc-form-field-subscript-wrapper {
  height: 0;
  overflow: hidden;
}
.ui-input-small app-currency-input .currency-display {
  min-height: 40px;
  padding: 8px 14px;
}
.ui-input-small app-currency-input .currency-display:hover:not(.disabled):not(.readonly),
.ui-input-small app-currency-input .currency-display:focus-within {
  padding: 7px 13px;
}
.form-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
@media (max-width: 599px) {
  .form-card {
    padding: 16px;
    border-radius: 0;
    box-shadow: none;
  }
}
html[data-theme=dark] .form-card {
  background: #1e1e1e;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.mat-mdc-form-field input::placeholder,
.mat-mdc-form-field textarea::placeholder {
  color: rgba(0, 0, 0, 0.35) !important;
  opacity: 1;
}
[data-theme=dark] .mat-mdc-form-field input::placeholder,
[data-theme=dark] .mat-mdc-form-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.3) !important;
}
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  vertical-align: middle;
  white-space: nowrap;
}
.badge-primary {
  background: #E3F2FD;
  color: #1976D2;
}
.badge-primary .dark-mode,
.badge-primary [data-theme=dark] {
  background: #1A237E;
  color: #90CAF9;
}
.badge-success {
  background: #E8F5E9;
  color: #2E7D32;
}
.badge-success .dark-mode,
.badge-success [data-theme=dark] {
  background: #1B5E20;
  color: #A5D6A7;
}
.badge-warning {
  background: #FFF3E0;
  color: #E65100;
}
.badge-warning .dark-mode,
.badge-warning [data-theme=dark] {
  background: #E65100;
  color: #FFE0B2;
}
.badge-error {
  background: #FFEBEE;
  color: #C62828;
}
.badge-error .dark-mode,
.badge-error [data-theme=dark] {
  background: #B71C1C;
  color: #EF9A9A;
}
.badge-info {
  background: #E3F2FD;
  color: #1976D2;
}
.badge-info .dark-mode,
.badge-info [data-theme=dark] {
  background: #0D47A1;
  color: #90CAF9;
}
.badge-neutral {
  background: #F5F5F5;
  color: #616161;
}
.badge-neutral .dark-mode,
.badge-neutral [data-theme=dark] {
  background: #424242;
  color: #E0E0E0;
}
.badge-new {
  display: inline-block;
  padding: 4px 8px;
  margin-left: 12px;
  background: #4CAF50;
  color: white;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
  vertical-align: middle;
  text-transform: uppercase;
}
.badge-new .dark-mode,
.badge-new [data-theme=dark] {
  background: #388E3C;
}
.badge-beta {
  display: inline-block;
  padding: 4px 8px;
  margin-left: 12px;
  background: #2196F3;
  color: white;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
  vertical-align: middle;
  text-transform: uppercase;
}
.badge-beta .dark-mode,
.badge-beta [data-theme=dark] {
  background: #1976D2;
}
.badge-deprecated {
  display: inline-block;
  padding: 4px 8px;
  margin-left: 12px;
  background: #FF9800;
  color: white;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
  vertical-align: middle;
  text-transform: uppercase;
}
.badge-deprecated .dark-mode,
.badge-deprecated [data-theme=dark] {
  background: #F57C00;
}
.badge-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
}
.badge-status::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.badge-status.status-active {
  background: #E8F5E9;
  color: #2E7D32;
}
.badge-status.status-active::before {
  background: #4CAF50;
}
.badge-status.status-active .dark-mode,
.badge-status.status-active [data-theme=dark] {
  background: #1B5E20;
  color: #A5D6A7;
}
.badge-status.status-pending {
  background: #FFF3E0;
  color: #E65100;
}
.badge-status.status-pending::before {
  background: #FF9800;
}
.badge-status.status-pending .dark-mode,
.badge-status.status-pending [data-theme=dark] {
  background: #E65100;
  color: #FFE0B2;
}
.badge-status.status-inactive {
  background: #F5F5F5;
  color: #757575;
}
.badge-status.status-inactive::before {
  background: #9E9E9E;
}
.badge-status.status-inactive .dark-mode,
.badge-status.status-inactive [data-theme=dark] {
  background: #424242;
  color: #9E9E9E;
}
.badge-sm {
  padding: 2px 8px;
  font-size: 11px;
}
.badge-lg {
  padding: 6px 16px;
  font-size: 13px;
}
.badge-outlined {
  background: transparent;
  border: 1px solid currentColor;
}
.badge-outlined.badge-primary {
  color: #1976D2;
  border-color: #1976D2;
}
.badge-outlined.badge-primary .dark-mode,
.badge-outlined.badge-primary [data-theme=dark] {
  color: #90CAF9;
  border-color: #90CAF9;
}
.badge-outlined.badge-success {
  color: #2E7D32;
  border-color: #2E7D32;
}
.badge-outlined.badge-success .dark-mode,
.badge-outlined.badge-success [data-theme=dark] {
  color: #A5D6A7;
  border-color: #A5D6A7;
}
.badge-outlined.badge-warning {
  color: #E65100;
  border-color: #E65100;
}
.badge-outlined.badge-warning .dark-mode,
.badge-outlined.badge-warning [data-theme=dark] {
  color: #FFE0B2;
  border-color: #FFE0B2;
}
.badge-outlined.badge-error {
  color: #C62828;
  border-color: #C62828;
}
.badge-outlined.badge-error .dark-mode,
.badge-outlined.badge-error [data-theme=dark] {
  color: #EF9A9A;
  border-color: #EF9A9A;
}
:export {
  bgPrimary: #F0EDE6;
  bgSecondary: #ffffff;
  bgTertiary: #fafafa;
  bgHover: rgba(0, 0, 0, 0.04);
  textPrimary: #000000;
  textSecondary: rgba(0, 0, 0, 0.87);
  textTertiary: rgba(0, 0, 0, 0.6);
  textDisabled: rgba(0, 0, 0, 0.38);
  iconPrimary: rgba(0, 0, 0, 0.87);
  iconSecondary: rgba(0, 0, 0, 0.54);
  iconDisabled: rgba(0, 0, 0, 0.38);
  brandPrimary: #24B4F3;
  brandHeaderBg: #24B4F3;
  brandHeaderText: #ffffff;
  brandActiveText: #24B4F3;
}
:export {
  bgPrimary: #121212;
  bgSecondary: #1e1e1e;
  bgTertiary: #242424;
  bgHover: rgba(255, 255, 255, 0.08);
  textPrimary: #e0e0e0;
  textSecondary: rgba(255, 255, 255, 0.87);
  textTertiary: #b0b0b0;
  textDisabled: rgba(255, 255, 255, 0.38);
  iconPrimary: #e0e0e0;
  iconSecondary: #b0b0b0;
  iconDisabled: rgba(255, 255, 255, 0.38);
  activeText: #64b5f6;
  activeBg: rgba(100, 181, 246, 0.16);
  activeIcon: #64b5f6;
}
html[data-theme=light] body {
  background-color: #F0EDE6 !important;
  color: #000000 !important;
}
html[data-theme=light] * {
  color: inherit;
}
html[data-theme=light] .mat-drawer-container {
  background-color: #F0EDE6 !important;
}
html[data-theme=light] .background-fill {
  background-color: #F0EDE6 !important;
}
html[data-theme=light] div.mat-content {
  background-color: #F0EDE6 !important;
}
html[data-theme=light] .background-fill-grey {
  background: #fafafa !important;
}
html[data-theme=light] .background-fill-grey mat-dialog-container {
  background: #fafafa !important;
}
html[data-theme=light] td-layout-card-over {
  background-color: #F0EDE6 !important;
}
html[data-theme=light] mat-card {
  background-color: #ffffff !important;
  color: #000000 !important;
}
html[data-theme=light] mat-card-title,
html[data-theme=light] h1,
html[data-theme=light] h2,
html[data-theme=light] h3,
html[data-theme=light] h4,
html[data-theme=light] h5,
html[data-theme=light] h6,
html[data-theme=light] .status-title {
  color: #000000 !important;
}
html[data-theme=light] mat-card-subtitle {
  color: rgba(0, 0, 0, 0.6) !important;
}
html[data-theme=light] mat-card-content {
  color: #000000 !important;
}
html[data-theme=light] mat-toolbar:not(.operator-toolbar),
html[data-theme=light] .mat-toolbar:not(.operator-toolbar),
html[data-theme=light] .mat-toolbar-single-row:not(.operator-toolbar) {
  background: #24B4F3 !important;
  color: #ffffff !important;
  border-bottom: none;
}
html[data-theme=light] mat-toolbar:not(.operator-toolbar) button,
html[data-theme=light] mat-toolbar:not(.operator-toolbar) span,
html[data-theme=light] mat-toolbar:not(.operator-toolbar) .mat-icon,
html[data-theme=light] mat-toolbar:not(.operator-toolbar) .profile-button,
html[data-theme=light] .mat-toolbar:not(.operator-toolbar) button,
html[data-theme=light] .mat-toolbar:not(.operator-toolbar) span,
html[data-theme=light] .mat-toolbar:not(.operator-toolbar) .mat-icon,
html[data-theme=light] .mat-toolbar:not(.operator-toolbar) .profile-button,
html[data-theme=light] .mat-toolbar-single-row:not(.operator-toolbar) button,
html[data-theme=light] .mat-toolbar-single-row:not(.operator-toolbar) span,
html[data-theme=light] .mat-toolbar-single-row:not(.operator-toolbar) .mat-icon,
html[data-theme=light] .mat-toolbar-single-row:not(.operator-toolbar) .profile-button {
  color: #ffffff !important;
}
html[data-theme=light] .top-bar {
  background: #24B4F3 !important;
  color: #ffffff !important;
}
html[data-theme=light] .top-bar button,
html[data-theme=light] .top-bar .profile-button {
  color: #ffffff !important;
}
html[data-theme=light] .top-bar .mat-icon {
  color: #ffffff !important;
}
html[data-theme=light] .top-bar .top-portal-logo .mat-icon-logo {
  color: #ffffff !important;
}
html[data-theme=light] .layout-footer,
html[data-theme=light] footer,
html[data-theme=light] .app-footer {
  background-color: whitesmoke !important;
  color: rgba(0, 0, 0, 0.6) !important;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}
html[data-theme=light] .layout-footer .mat-caption,
html[data-theme=light] footer .mat-caption,
html[data-theme=light] .app-footer .mat-caption {
  color: rgba(0, 0, 0, 0.6) !important;
}
html[data-theme=light] mat-dialog-container,
html[data-theme=light] .mat-mdc-dialog-surface {
  background-color: #ffffff !important;
  color: #000000 !important;
}
html[data-theme=light] .mat-mdc-table {
  background: transparent !important;
}
html[data-theme=light] .mat-mdc-header-row {
  background-color: #f8f9fa !important;
}
html[data-theme=light] .mat-mdc-row {
  color: #000000 !important;
}
html[data-theme=light] .mat-mdc-row:hover {
  background-color: rgba(0, 0, 0, 0.04) !important;
}
html[data-theme=light] .mat-mdc-cell,
html[data-theme=light] .mat-mdc-header-cell {
  color: rgba(0, 0, 0, 0.87) !important;
  border-bottom-color: rgba(0, 0, 0, 0.12);
}
html[data-theme=light] tbody.empty td {
  color: rgba(0, 0, 0, 0.38) !important;
}
html[data-theme=light] .table-placeholder {
  color: #bebebe !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
html[data-theme=light] td.table-placeholder {
  border-bottom: 1px solid #e0e0e0;
}
html[data-theme=light] mat-form-field,
html[data-theme=light] .mat-form-field,
html[data-theme=light] .filter-fields,
html[data-theme=light] .collection-filter {
  color: #000000 !important;
  background-color: #ffffff !important;
}
html[data-theme=light] .mat-form-field-appearance-outline .mat-form-field-outline-thick {
  color: rgba(0, 0, 0, 0.12) !important;
}
html[data-theme=light] .mdc-notched-outline .mdc-notched-outline__leading {
  border-radius: 4px 0 0 4px !important;
  border-top-left-radius: 4px !important;
  border-bottom-left-radius: 4px !important;
}
html[data-theme=light] .mdc-notched-outline .mdc-notched-outline__trailing {
  border-radius: 0 4px 4px 0 !important;
  border-top-right-radius: 4px !important;
  border-bottom-right-radius: 4px !important;
}
html[data-theme=light] .mat-input-element,
html[data-theme=light] .mat-mdc-input-element,
html[data-theme=light] input,
html[data-theme=light] textarea,
html[data-theme=light] input[matInput],
html[data-theme=light] textarea[matInput],
html[data-theme=light] input.mat-input-element,
html[data-theme=light] textarea.mat-input-element,
html[data-theme=light] input.mat-mdc-input-element,
html[data-theme=light] textarea.mat-mdc-input-element {
  color: #000000 !important;
  -webkit-text-fill-color: #000000 !important;
}
html[data-theme=light] input:-webkit-autofill,
html[data-theme=light] input:-webkit-autofill:hover,
html[data-theme=light] input:-webkit-autofill:focus,
html[data-theme=light] input:-webkit-autofill:active,
html[data-theme=light] textarea:-webkit-autofill,
html[data-theme=light] textarea:-webkit-autofill:hover,
html[data-theme=light] textarea:-webkit-autofill:focus,
html[data-theme=light] textarea:-webkit-autofill:active {
  -webkit-text-fill-color: #000000 !important;
  -webkit-box-shadow: 0 0 0 1000px #ffffff inset !important;
  transition: background-color 5000s ease-in-out 0s;
}
html[data-theme=light] mat-label,
html[data-theme=light] .mat-label,
html[data-theme=light] .mat-form-field-label {
  color: rgba(0, 0, 0, 0.6) !important;
}
html[data-theme=light] .mat-autocomplete-panel,
html[data-theme=light] .mat-select-panel,
html[data-theme=light] .mat-mdc-select-panel {
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.12);
}
html[data-theme=light] .mat-option,
html[data-theme=light] .mat-mdc-option {
  color: #000000 !important;
  background-color: transparent !important;
}
html[data-theme=light] .mat-option:hover,
html[data-theme=light] .mat-option.mat-mdc-option-active,
html[data-theme=light] .mat-option.mdc-list-item--selected,
html[data-theme=light] .mat-mdc-option:hover,
html[data-theme=light] .mat-mdc-option.mat-mdc-option-active,
html[data-theme=light] .mat-mdc-option.mdc-list-item--selected {
  background-color: rgba(0, 0, 0, 0.04) !important;
}
html[data-theme=light] .mat-option.mat-selected,
html[data-theme=light] .mat-option.mat-mdc-option-active,
html[data-theme=light] .mat-mdc-option.mat-selected,
html[data-theme=light] .mat-mdc-option.mat-mdc-option-active {
  background-color: rgba(0, 0, 0, 0.04) !important;
}
html[data-theme=light] .mat-option-text,
html[data-theme=light] .mdc-list-item__primary-text {
  color: #000000 !important;
}
html[data-theme=light] .mat-select-value,
html[data-theme=light] .mat-select-value-text,
html[data-theme=light] .mat-mdc-select-value,
html[data-theme=light] .mat-mdc-select-value-text {
  color: #000000 !important;
}
html[data-theme=light] .mat-mdc-select-trigger {
  color: #000000 !important;
}
html[data-theme=light] mat-divider {
  border-top-color: rgba(0, 0, 0, 0.12);
}
html[data-theme=light] .mat-list-base,
html[data-theme=light] .mat-list-item,
html[data-theme=light] mat-list-item {
  color: #000000 !important;
}
html[data-theme=light] .mat-mdc-list-item-title,
html[data-theme=light] .mdc-list-item__primary-text {
  color: #000000 !important;
}
html[data-theme=light] mat-list-item.active-item,
html[data-theme=light] .active-item {
  background-color: rgba(36, 180, 243, 0.12) !important;
  color: #24B4F3 !important;
}
html[data-theme=light] mat-list-item.active-item mat-icon,
html[data-theme=light] mat-list-item.active-item [matListItemIcon],
html[data-theme=light] .active-item mat-icon,
html[data-theme=light] .active-item [matListItemIcon] {
  color: #24B4F3 !important;
}
html[data-theme=light] mat-list-item.active-item .mat-mdc-list-item-title,
html[data-theme=light] .active-item .mat-mdc-list-item-title {
  color: #24B4F3 !important;
}
html[data-theme=light] .mat-button,
html[data-theme=light] .mat-mdc-button,
html[data-theme=light] .mat-mdc-outlined-button,
html[data-theme=light] .mat-mdc-unelevated-button,
html[data-theme=light] button {
  color: #000000 !important;
  border: 1px solid rgba(0, 0, 0, 0.12) !important;
}
html[data-theme=light] .mat-button span,
html[data-theme=light] .mat-mdc-button span,
html[data-theme=light] .mat-mdc-outlined-button span,
html[data-theme=light] .mat-mdc-unelevated-button span,
html[data-theme=light] button span {
  color: inherit !important;
}
html[data-theme=light] .mat-button.link-button,
html[data-theme=light] .mat-mdc-button.link-button,
html[data-theme=light] .mat-mdc-outlined-button.link-button,
html[data-theme=light] .mat-mdc-unelevated-button.link-button,
html[data-theme=light] button.link-button {
  border: 1px solid #ffffff !important;
}
html[data-theme=light] .mat-button.link-button:hover,
html[data-theme=light] .mat-mdc-button.link-button:hover,
html[data-theme=light] .mat-mdc-outlined-button.link-button:hover,
html[data-theme=light] .mat-mdc-unelevated-button.link-button:hover,
html[data-theme=light] button.link-button:hover {
  border: 1px solid rgba(0, 0, 0, 0.12) !important;
}
html[data-theme=light] .mat-mdc-raised-button:not(.mat-primary):not(.mat-accent):not(.mat-warn) {
  background-color: #f5f5f5;
  color: #000000 !important;
}
html[data-theme=light] .mat-mdc-button.mat-primary,
html[data-theme=light] .mat-mdc-raised-button.mat-primary {
  background-color: #24B4F3 !important;
  color: #ffffff !important;
}
html[data-theme=light] .mat-mdc-fab,
html[data-theme=light] .mat-mdc-extended-fab,
html[data-theme=light] .mat-mdc-mini-fab {
  border: none !important;
}
html[data-theme=light] .mat-mdc-fab.mat-primary,
html[data-theme=light] .mat-mdc-extended-fab.mat-primary,
html[data-theme=light] .mat-mdc-mini-fab.mat-primary {
  background-color: #24B4F3 !important;
  color: #ffffff !important;
}
html[data-theme=light] .mat-mdc-fab.mat-primary mat-icon,
html[data-theme=light] .mat-mdc-fab.mat-primary .mat-icon,
html[data-theme=light] .mat-mdc-fab.mat-primary span,
html[data-theme=light] .mat-mdc-extended-fab.mat-primary mat-icon,
html[data-theme=light] .mat-mdc-extended-fab.mat-primary .mat-icon,
html[data-theme=light] .mat-mdc-extended-fab.mat-primary span,
html[data-theme=light] .mat-mdc-mini-fab.mat-primary mat-icon,
html[data-theme=light] .mat-mdc-mini-fab.mat-primary .mat-icon,
html[data-theme=light] .mat-mdc-mini-fab.mat-primary span {
  color: #ffffff !important;
}
html[data-theme=light] mat-icon {
  color: rgba(0, 0, 0, 0.54) !important;
}
html[data-theme=light] .mat-mdc-list-item-icon,
html[data-theme=light] mat-list-item mat-icon,
html[data-theme=light] .mat-list-item mat-icon,
html[data-theme=light] [matListItemIcon] {
  color: rgba(0, 0, 0, 0.54) !important;
}
html[data-theme=light] mat-nav-list mat-icon {
  color: rgba(0, 0, 0, 0.54) !important;
}
html[data-theme=light] mat-toolbar mat-icon,
html[data-theme=light] .mat-toolbar mat-icon,
html[data-theme=light] .top-bar mat-icon {
  color: #ffffff !important;
}
html[data-theme=light] button mat-icon,
html[data-theme=light] .mat-button mat-icon,
html[data-theme=light] .mat-mdc-button mat-icon {
  color: rgba(0, 0, 0, 0.87) !important;
}
html[data-theme=light] mat-form-field mat-icon,
html[data-theme=light] .mat-form-field mat-icon {
  color: rgba(0, 0, 0, 0.54) !important;
}
html[data-theme=light] .mat-menu-item mat-icon,
html[data-theme=light] .mat-mdc-menu-item mat-icon {
  color: rgba(0, 0, 0, 0.87) !important;
}
html[data-theme=light] [matListItemMeta] {
  color: rgba(0, 0, 0, 0.38) !important;
}
html[data-theme=light] .active-item [matListItemMeta] {
  color: #24B4F3 !important;
}
html[data-theme=light] .mat-menu-panel,
html[data-theme=light] .mat-mdc-menu-panel {
  background-color: #ffffff !important;
  color: #000000 !important;
  border: 1px solid rgba(0, 0, 0, 0.12);
}
html[data-theme=light] .mat-menu-item,
html[data-theme=light] .mat-mdc-menu-item {
  color: #000000 !important;
}
html[data-theme=light] .mat-menu-item:hover,
html[data-theme=light] .mat-mdc-menu-item:hover {
  background-color: rgba(0, 0, 0, 0.04) !important;
}
html[data-theme=light] .mat-menu-item.mat-mdc-menu-item-highlighted,
html[data-theme=light] .mat-mdc-menu-item.mat-mdc-menu-item-highlighted {
  background-color: rgba(0, 0, 0, 0.04) !important;
}
html[data-theme=light] .cdk-overlay-pane .mat-mdc-menu-panel,
html[data-theme=light] .cdk-overlay-pane .mat-menu-panel,
html[data-theme=light] .cdk-overlay-pane .mat-datepicker-popup,
html[data-theme=light] .cdk-overlay-pane .mat-calendar,
html[data-theme=light] .cdk-overlay-pane .mat-select-panel {
  background-color: #ffffff !important;
  color: #000000 !important;
}
html[data-theme=light] .cdk-overlay-backdrop,
html[data-theme=light] .cdk-overlay-backdrop.cdk-overlay-backdrop-showing {
  background-color: rgba(0, 0, 0, 0.32) !important;
}
html[data-theme=light] .cdk-overlay-dark-backdrop {
  background-color: rgba(0, 0, 0, 0.32) !important;
}
html[data-theme=light] .mat-datepicker-popup,
html[data-theme=light] .mat-datepicker-content {
  background-color: #ffffff !important;
  color: #000000 !important;
}
html[data-theme=light] .mat-calendar {
  background-color: #ffffff !important;
  color: #000000 !important;
}
html[data-theme=light] .mat-calendar-table-header th,
html[data-theme=light] .mat-calendar-body-label,
html[data-theme=light] .mat-calendar-body-cell-content {
  color: #000000 !important;
}
html[data-theme=light] .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover .mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical) {
  background-color: rgba(0, 0, 0, 0.04) !important;
}
html[data-theme=light] .mat-calendar-body-selected {
  background-color: #24B4F3 !important;
  color: #ffffff !important;
}
html[data-theme=light] .mat-calendar-body-today:not(.mat-calendar-body-selected) {
  border-color: #24B4F3 !important;
}
html[data-theme=light] .mat-calendar-arrow {
  fill: #000000 !important;
}
html[data-theme=light] .mat-datepicker-toggle,
html[data-theme=light] .mat-datepicker-content .mat-mdc-icon-button {
  color: rgba(0, 0, 0, 0.87) !important;
}
html[data-theme=light] .mat-drawer {
  background-color: #ffffff !important;
  color: #000000 !important;
}
html[data-theme=light] .main-drawer,
html[data-theme=light] .submenu-drawer {
  background-color: #ffffff !important;
  color: #000000 !important;
  border-color: rgba(0, 0, 0, 0.12);
}
html[data-theme=light] .mat-chip,
html[data-theme=light] .mat-mdc-chip {
  background-color: #e0e0e0 !important;
  color: #000000 !important;
}
html[data-theme=light] .mat-tab-label,
html[data-theme=light] .mat-mdc-tab,
html[data-theme=light] .mdc-tab__text-label {
  color: #000000 !important;
}
html[data-theme=light] .mat-tab-label.mat-tab-label-active,
html[data-theme=light] .mat-tab-label.mdc-tab--active,
html[data-theme=light] .mat-mdc-tab.mat-tab-label-active,
html[data-theme=light] .mat-mdc-tab.mdc-tab--active,
html[data-theme=light] .mdc-tab__text-label.mat-tab-label-active,
html[data-theme=light] .mdc-tab__text-label.mdc-tab--active {
  color: #000000 !important;
  font-weight: 500;
}
html[data-theme=light] .mat-tab-group,
html[data-theme=light] .mat-mdc-tab-group {
  color: #000000 !important;
}
html[data-theme=light] .mat-checkbox,
html[data-theme=light] .mat-mdc-checkbox,
html[data-theme=light] .mat-checkbox-label,
html[data-theme=light] .mdc-checkbox__label,
html[data-theme=light] .mdc-form-field > label {
  color: #000000 !important;
}
html[data-theme=light] mat-checkbox label,
html[data-theme=light] .mat-checkbox-layout .mat-checkbox-label {
  color: #000000 !important;
}
html[data-theme=light] .mat-radio-button,
html[data-theme=light] .mat-mdc-radio-button,
html[data-theme=light] .mat-radio-label,
html[data-theme=light] .mdc-radio__label,
html[data-theme=light] .mat-radio-label-content {
  color: #000000 !important;
}
html[data-theme=light] mat-radio-button label,
html[data-theme=light] .mat-radio-button .mat-radio-label {
  color: #000000 !important;
}
html[data-theme=light] .mat-slide-toggle,
html[data-theme=light] .mat-mdc-slide-toggle,
html[data-theme=light] .mat-slide-toggle-content,
html[data-theme=light] .mdc-switch__label {
  color: #000000 !important;
}
html[data-theme=light] .mat-hint,
html[data-theme=light] .mat-error,
html[data-theme=light] mat-hint,
html[data-theme=light] mat-error {
  color: #000000 !important;
}
html[data-theme=light] .mat-hint.warning,
html[data-theme=light] .mat-error.warning,
html[data-theme=light] mat-hint.warning,
html[data-theme=light] mat-error.warning {
  color: #d32f2f !important;
}
html[data-theme=light] .mat-form-field-subscript-wrapper {
  color: #000000 !important;
}
html[data-theme=light] mat-expansion-panel,
html[data-theme=light] .mat-expansion-panel {
  background-color: #ffffff;
  color: #000000 !important;
}
html[data-theme=light] .mat-expansion-panel-header,
html[data-theme=light] .mat-expansion-panel-header-title,
html[data-theme=light] .mat-expansion-panel-header-description {
  color: #000000 !important;
}
html[data-theme=light] mat-expansion-panel-header {
  color: #000000 !important;
}
html[data-theme=light] .mat-paginator,
html[data-theme=light] .mat-mdc-paginator {
  background-color: transparent;
  color: #000000 !important;
}
html[data-theme=light] .mat-paginator-page-size-label,
html[data-theme=light] .mat-paginator-range-label {
  color: #000000 !important;
}
html[data-theme=light] ::-webkit-scrollbar-track {
  background: #f5f5f5;
}
html[data-theme=light] ::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 6px;
}
html[data-theme=light] ::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}
html[data-theme=light] .disabled {
  color: rgba(0, 0, 0, 0.38) !important;
}
html[data-theme=light] .mat-button-disabled,
html[data-theme=light] .mat-mdc-button-disabled,
html[data-theme=light] [disabled] {
  color: rgba(0, 0, 0, 0.38) !important;
}
html[data-theme=light] .mat-button-disabled span,
html[data-theme=light] .mat-mdc-button-disabled span,
html[data-theme=light] [disabled] span {
  color: rgba(0, 0, 0, 0.38) !important;
}
html[data-theme=dark] body {
  background-color: #121212;
  color: #e0e0e0;
}
html[data-theme=dark] .mat-drawer-container {
  background-color: #121212 !important;
}
html[data-theme=dark] .background-fill {
  background-color: #121212 !important;
}
html[data-theme=dark] div.mat-content {
  background-color: #121212 !important;
}
html[data-theme=dark] .background-fill-grey {
  background: #1e1e1e !important;
}
html[data-theme=dark] .background-fill-grey mat-dialog-container {
  background: #1e1e1e !important;
}
html[data-theme=dark] td-layout-card-over {
  background-color: #121212 !important;
}
html[data-theme=dark] mat-card {
  background-color: #1e1e1e !important;
  color: #e0e0e0;
}
html[data-theme=dark] mat-card-title,
html[data-theme=dark] h1,
html[data-theme=dark] h2,
html[data-theme=dark] h3,
html[data-theme=dark] h4,
html[data-theme=dark] h5,
html[data-theme=dark] h6 {
  color: #e0e0e0 !important;
}
html[data-theme=dark] mat-card-subtitle {
  color: #b0b0b0 !important;
}
html[data-theme=dark] mat-toolbar:not(.operator-toolbar),
html[data-theme=dark] .mat-toolbar:not(.operator-toolbar),
html[data-theme=dark] .mat-toolbar-single-row:not(.operator-toolbar) {
  background: #1e1e1e !important;
  color: #e0e0e0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
html[data-theme=dark] mat-toolbar:not(.operator-toolbar) button,
html[data-theme=dark] mat-toolbar:not(.operator-toolbar) span,
html[data-theme=dark] mat-toolbar:not(.operator-toolbar) .mat-icon,
html[data-theme=dark] mat-toolbar:not(.operator-toolbar) .profile-button,
html[data-theme=dark] .mat-toolbar:not(.operator-toolbar) button,
html[data-theme=dark] .mat-toolbar:not(.operator-toolbar) span,
html[data-theme=dark] .mat-toolbar:not(.operator-toolbar) .mat-icon,
html[data-theme=dark] .mat-toolbar:not(.operator-toolbar) .profile-button,
html[data-theme=dark] .mat-toolbar-single-row:not(.operator-toolbar) button,
html[data-theme=dark] .mat-toolbar-single-row:not(.operator-toolbar) span,
html[data-theme=dark] .mat-toolbar-single-row:not(.operator-toolbar) .mat-icon,
html[data-theme=dark] .mat-toolbar-single-row:not(.operator-toolbar) .profile-button {
  color: #e0e0e0 !important;
}
html[data-theme=dark] .top-bar {
  background: #1e1e1e !important;
  color: #e0e0e0 !important;
}
html[data-theme=dark] .top-bar button,
html[data-theme=dark] .top-bar .profile-button {
  color: #e0e0e0 !important;
}
html[data-theme=dark] .top-bar .mat-icon {
  color: #e0e0e0 !important;
}
html[data-theme=dark] .top-bar .top-portal-logo .mat-icon-logo {
  color: #e0e0e0 !important;
}
html[data-theme=dark] .layout-footer,
html[data-theme=dark] footer,
html[data-theme=dark] .app-footer {
  background-color: #1e1e1e !important;
  color: #b0b0b0 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
html[data-theme=dark] .layout-footer .mat-caption,
html[data-theme=dark] footer .mat-caption,
html[data-theme=dark] .app-footer .mat-caption {
  color: #b0b0b0 !important;
}
html[data-theme=dark] mat-dialog-container,
html[data-theme=dark] .mat-mdc-dialog-surface {
  background-color: #1e1e1e !important;
  color: #e0e0e0;
}
html[data-theme=dark] .mat-mdc-table {
  background: transparent !important;
}
html[data-theme=dark] .mat-mdc-header-row {
  background-color: #2c2c2c !important;
}
html[data-theme=dark] .mat-mdc-row {
  color: #e0e0e0;
}
html[data-theme=dark] .mat-mdc-row:hover {
  background-color: rgba(255, 255, 255, 0.08) !important;
}
html[data-theme=dark] .mat-mdc-cell,
html[data-theme=dark] .mat-mdc-header-cell {
  color: #e0e0e0;
  border-bottom-color: rgba(255, 255, 255, 0.12);
}
html[data-theme=dark] tbody.empty td {
  color: rgba(255, 255, 255, 0.38);
}
html[data-theme=dark] .table-placeholder {
  color: #6e6e6e;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
html[data-theme=dark] td.table-placeholder {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
html[data-theme=dark] mat-form-field,
html[data-theme=dark] .mat-form-field,
html[data-theme=dark] .filter-fields,
html[data-theme=dark] .collection-filter {
  color: #e0e0e0;
  background-color: #1e1e1e !important;
}
html[data-theme=dark] .mat-form-field-appearance-outline .mat-form-field-outline-thick {
  color: rgba(255, 255, 255, 0.24) !important;
}
html[data-theme=dark] .mdc-notched-outline .mdc-notched-outline__leading {
  border-radius: 4px 0 0 4px !important;
  border-top-left-radius: 4px !important;
  border-bottom-left-radius: 4px !important;
}
html[data-theme=dark] .mdc-notched-outline .mdc-notched-outline__trailing {
  border-radius: 0 4px 4px 0 !important;
  border-top-right-radius: 4px !important;
  border-bottom-right-radius: 4px !important;
}
html[data-theme=dark] .mat-input-element {
  color: #e0e0e0;
}
html[data-theme=dark] mat-label,
html[data-theme=dark] .mat-label,
html[data-theme=dark] .mat-form-field-label {
  color: rgba(255, 255, 255, 0.6);
}
html[data-theme=dark] .mat-autocomplete-panel,
html[data-theme=dark] .mat-select-panel,
html[data-theme=dark] .mat-mdc-select-panel {
  background: #1e1e1e !important;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
html[data-theme=dark] .mat-option,
html[data-theme=dark] .mat-mdc-option {
  color: #e0e0e0 !important;
  background-color: transparent !important;
}
html[data-theme=dark] .mat-option:hover,
html[data-theme=dark] .mat-option.mat-mdc-option-active,
html[data-theme=dark] .mat-option.mdc-list-item--selected,
html[data-theme=dark] .mat-mdc-option:hover,
html[data-theme=dark] .mat-mdc-option.mat-mdc-option-active,
html[data-theme=dark] .mat-mdc-option.mdc-list-item--selected {
  background-color: rgba(255, 255, 255, 0.08) !important;
}
html[data-theme=dark] .mat-option.mat-selected,
html[data-theme=dark] .mat-option.mat-mdc-option-active,
html[data-theme=dark] .mat-mdc-option.mat-selected,
html[data-theme=dark] .mat-mdc-option.mat-mdc-option-active {
  background-color: rgba(255, 255, 255, 0.08) !important;
}
html[data-theme=dark] .mat-option-text,
html[data-theme=dark] .mdc-list-item__primary-text {
  color: #e0e0e0 !important;
}
html[data-theme=dark] .mat-select-value,
html[data-theme=dark] .mat-select-value-text,
html[data-theme=dark] .mat-mdc-select-value,
html[data-theme=dark] .mat-mdc-select-value-text {
  color: #e0e0e0 !important;
}
html[data-theme=dark] .mat-mdc-select-trigger {
  color: #e0e0e0 !important;
}
html[data-theme=dark] mat-divider {
  border-top-color: rgba(255, 255, 255, 0.12);
}
html[data-theme=dark] .mat-list-base,
html[data-theme=dark] .mat-list-item,
html[data-theme=dark] mat-list-item {
  color: #e0e0e0;
}
html[data-theme=dark] .mat-mdc-list-item-title,
html[data-theme=dark] .mdc-list-item__primary-text {
  color: #e0e0e0;
}
html[data-theme=dark] mat-list-item.active-item,
html[data-theme=dark] .active-item {
  background-color: rgba(100, 181, 246, 0.16);
  color: #64b5f6;
}
html[data-theme=dark] mat-list-item.active-item mat-icon,
html[data-theme=dark] mat-list-item.active-item [matListItemIcon],
html[data-theme=dark] .active-item mat-icon,
html[data-theme=dark] .active-item [matListItemIcon] {
  color: #64b5f6;
}
html[data-theme=dark] mat-list-item.active-item .mat-mdc-list-item-title,
html[data-theme=dark] .active-item .mat-mdc-list-item-title {
  color: #64b5f6;
}
html[data-theme=dark] .mat-button,
html[data-theme=dark] .mat-mdc-button,
html[data-theme=dark] .mat-mdc-outlined-button,
html[data-theme=dark] .mat-mdc-unelevated-button,
html[data-theme=dark] button {
  color: #e0e0e0;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
}
html[data-theme=dark] .mat-button.link-button,
html[data-theme=dark] .mat-mdc-button.link-button,
html[data-theme=dark] .mat-mdc-outlined-button.link-button,
html[data-theme=dark] .mat-mdc-unelevated-button.link-button,
html[data-theme=dark] button.link-button {
  border: 1px solid transparent !important;
}
html[data-theme=dark] .mat-button.link-button:hover,
html[data-theme=dark] .mat-mdc-button.link-button:hover,
html[data-theme=dark] .mat-mdc-outlined-button.link-button:hover,
html[data-theme=dark] .mat-mdc-unelevated-button.link-button:hover,
html[data-theme=dark] button.link-button:hover {
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
}
html[data-theme=dark] .mat-mdc-raised-button:not(.mat-primary):not(.mat-accent):not(.mat-warn) {
  background-color: #2a2a2a;
  color: #e0e0e0;
}
html[data-theme=dark] .mat-mdc-fab,
html[data-theme=dark] .mat-mdc-extended-fab,
html[data-theme=dark] .mat-mdc-mini-fab {
  border: none !important;
}
html[data-theme=dark] mat-icon {
  color: #b0b0b0;
}
html[data-theme=dark] .mat-mdc-list-item-icon,
html[data-theme=dark] mat-list-item mat-icon,
html[data-theme=dark] .mat-list-item mat-icon,
html[data-theme=dark] [matListItemIcon] {
  color: #b0b0b0;
}
html[data-theme=dark] mat-nav-list mat-icon {
  color: #b0b0b0;
}
html[data-theme=dark] mat-toolbar mat-icon,
html[data-theme=dark] .mat-toolbar mat-icon,
html[data-theme=dark] .top-bar mat-icon {
  color: #e0e0e0;
}
html[data-theme=dark] button mat-icon,
html[data-theme=dark] .mat-button mat-icon,
html[data-theme=dark] .mat-mdc-button mat-icon {
  color: #e0e0e0;
}
html[data-theme=dark] mat-form-field mat-icon,
html[data-theme=dark] .mat-form-field mat-icon {
  color: #b0b0b0;
}
html[data-theme=dark] .mat-menu-item mat-icon,
html[data-theme=dark] .mat-mdc-menu-item mat-icon {
  color: #e0e0e0;
}
html[data-theme=dark] [matListItemMeta] {
  color: rgba(255, 255, 255, 0.38);
}
html[data-theme=dark] .active-item [matListItemMeta] {
  color: #64b5f6;
}
html[data-theme=dark] .mat-menu-panel,
html[data-theme=dark] .mat-mdc-menu-panel {
  background-color: #1e1e1e !important;
  color: #e0e0e0 !important;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
html[data-theme=dark] .mat-menu-item,
html[data-theme=dark] .mat-mdc-menu-item {
  color: #e0e0e0;
}
html[data-theme=dark] .mat-menu-item:hover,
html[data-theme=dark] .mat-mdc-menu-item:hover {
  background-color: rgba(255, 255, 255, 0.08);
}
html[data-theme=dark] .mat-menu-item.mat-mdc-menu-item-highlighted,
html[data-theme=dark] .mat-mdc-menu-item.mat-mdc-menu-item-highlighted {
  background-color: rgba(255, 255, 255, 0.08) !important;
}
html[data-theme=dark] .cdk-overlay-pane .mat-mdc-menu-panel,
html[data-theme=dark] .cdk-overlay-pane .mat-menu-panel,
html[data-theme=dark] .cdk-overlay-pane .mat-datepicker-popup,
html[data-theme=dark] .cdk-overlay-pane .mat-calendar,
html[data-theme=dark] .cdk-overlay-pane .mat-select-panel {
  background-color: #1e1e1e !important;
  color: #e0e0e0 !important;
}
html[data-theme=dark] .cdk-overlay-backdrop {
  background-color: rgba(0, 0, 0, 0.5);
}
html[data-theme=dark] .mat-datepicker-popup,
html[data-theme=dark] .mat-datepicker-content {
  background-color: #1e1e1e !important;
  color: #e0e0e0 !important;
}
html[data-theme=dark] .mat-calendar {
  background-color: #1e1e1e !important;
  color: #e0e0e0 !important;
}
html[data-theme=dark] .mat-calendar-table-header th,
html[data-theme=dark] .mat-calendar-body-label,
html[data-theme=dark] .mat-calendar-body-cell-content {
  color: #e0e0e0 !important;
}
html[data-theme=dark] .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover .mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical) {
  background-color: rgba(255, 255, 255, 0.08) !important;
}
html[data-theme=dark] .mat-calendar-body-selected {
  background-color: rgba(100, 181, 246, 0.16) !important;
  color: #64b5f6 !important;
}
html[data-theme=dark] .mat-calendar-body-today:not(.mat-calendar-body-selected) {
  border-color: #64b5f6 !important;
}
html[data-theme=dark] .mat-calendar-arrow {
  fill: #e0e0e0 !important;
}
html[data-theme=dark] .mat-datepicker-toggle,
html[data-theme=dark] .mat-datepicker-content .mat-mdc-icon-button {
  color: #e0e0e0 !important;
}
html[data-theme=dark] .mat-drawer {
  background-color: #1e1e1e;
  color: #e0e0e0;
}
html[data-theme=dark] .main-drawer,
html[data-theme=dark] .submenu-drawer {
  background-color: #1e1e1e;
  color: #e0e0e0;
  border-color: rgba(255, 255, 255, 0.12);
}
html[data-theme=dark] .mat-chip,
html[data-theme=dark] .mat-mdc-chip {
  background-color: #2a2a2a !important;
  color: #e0e0e0 !important;
}
html[data-theme=dark] .mat-tab-label {
  color: #b0b0b0;
}
html[data-theme=dark] .mat-tab-label.mat-tab-label-active {
  color: #e0e0e0;
}
html[data-theme=dark] mat-expansion-panel {
  background-color: #1e1e1e;
  color: #e0e0e0;
}
html[data-theme=dark] .mat-expansion-panel-header {
  color: #e0e0e0;
}
html[data-theme=dark] .mat-paginator {
  background-color: transparent;
  color: #e0e0e0;
}
html[data-theme=dark] ::-webkit-scrollbar-track {
  background: #1e1e1e;
}
html[data-theme=dark] ::-webkit-scrollbar-thumb {
  background: #424242;
  border-radius: 6px;
}
html[data-theme=dark] ::-webkit-scrollbar-thumb:hover {
  background: #525252;
}
html[data-theme=dark] .disabled {
  color: rgba(255, 255, 255, 0.38) !important;
}
html[data-theme=dark] .mat-button-disabled,
html[data-theme=dark] .mat-mdc-button-disabled,
html[data-theme=dark] [disabled] {
  color: rgba(255, 255, 255, 0.38) !important;
}
html[data-theme=dark] .mat-button-disabled span,
html[data-theme=dark] .mat-mdc-button-disabled span,
html[data-theme=dark] [disabled] span {
  color: rgba(255, 255, 255, 0.38) !important;
}
.fab-bottom-right.fab-extended {
  position: fixed !important;
  bottom: 39px;
  border-radius: 28px !important;
  padding: 0 24px !important;
  height: 56px !important;
  min-width: auto !important;
  background-color: #24B4F3 !important;
  color: #ffffff !important;
  border: none !important;
  box-shadow: 0 4px 12px rgba(36, 180, 243, 0.3), 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
}
.fab-bottom-right.fab-extended mat-icon,
.fab-bottom-right.fab-extended span {
  color: #ffffff !important;
}
.fab-bottom-right.fab-extended mat-icon {
  margin-right: 12px;
}
.fab-bottom-right.fab-extended:hover {
  background-color: #0288D1 !important;
  box-shadow: 0 6px 16px rgba(36, 180, 243, 0.4), 0 3px 8px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}
.fab-bottom-right.fab-extended:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(36, 180, 243, 0.3), 0 1px 4px rgba(0, 0, 0, 0.15);
}
.fab-bottom-right.fab-extended.fab-with-intercom {
  bottom: 95px;
}
.fab-bottom-right.fab-video {
  position: fixed !important;
  bottom: 39px;
  right: 24px;
  background-color: #24B4F3 !important;
  color: #ffffff !important;
  border: none !important;
  width: 48px !important;
  height: 48px !important;
  border-radius: 24px !important;
  box-shadow: 0 4px 12px rgba(36, 180, 243, 0.3), 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
}
.fab-bottom-right.fab-video mat-icon {
  font-size: 24px;
  width: 24px;
  height: 24px;
  color: #ffffff !important;
}
.fab-bottom-right.fab-video:hover {
  background-color: #0288D1 !important;
  box-shadow: 0 6px 16px rgba(36, 180, 243, 0.4), 0 3px 8px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}
.fab-bottom-right.fab-video:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(36, 180, 243, 0.3), 0 1px 4px rgba(0, 0, 0, 0.15);
}
.fab-bottom-right.fab-video.fab-with-intercom {
  right: 84px;
  bottom: 20px;
}
.video-dialog-panel .mat-mdc-dialog-container {
  padding: 0 !important;
  overflow: hidden;
}
@media (max-width: 959px) {
  .fab-bottom-right {
    bottom: 31px;
    right: 16px;
  }
  .fab-bottom-right.fab-video.fab-with-intercom {
    right: 80px;
    bottom: 20px;
  }
  .fab-bottom-left {
    bottom: 31px;
    left: 16px;
  }
}
.dark-mode .fab-bottom-right.fab-extended,
.dark-mode .fab-bottom-right.fab-video,
[data-theme=dark] .fab-bottom-right.fab-extended,
[data-theme=dark] .fab-bottom-right.fab-video {
  background-color: #24B4F3 !important;
  box-shadow: 0 4px 12px rgba(36, 180, 243, 0.4), 0 2px 6px rgba(0, 0, 0, 0.3);
}
.dark-mode .fab-bottom-right.fab-extended:hover,
.dark-mode .fab-bottom-right.fab-video:hover,
[data-theme=dark] .fab-bottom-right.fab-extended:hover,
[data-theme=dark] .fab-bottom-right.fab-video:hover {
  background-color: #5AC8FA !important;
  box-shadow: 0 6px 16px rgba(36, 180, 243, 0.5), 0 3px 8px rgba(0, 0, 0, 0.4);
}
.details-section {
  margin-bottom: 16px;
}
.details-section .section-title,
.details-section .section-heading {
  font-size: 16px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.87);
  margin: 0 0 16px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.details-section .section-title mat-icon,
.details-section .section-heading mat-icon {
  font-size: 20px;
  width: 20px;
  height: 20px;
  color: rgba(0, 0, 0, 0.54);
}
.details-section .note-text {
  margin: 0;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.87);
  line-height: 1.5;
}
.details-section.cancellation-section {
  padding: 16px;
  border: 1px solid #f44336;
  background-color: rgba(244, 67, 54, 0.05);
  border-radius: 4px;
}
.details-section.cancellation-section .section-heading mat-icon {
  color: #f44336;
}
.details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 24px;
}
@media (max-width: 768px) {
  .details-grid {
    grid-template-columns: 1fr;
  }
}
.details-grid.details-grid-3col {
  grid-template-columns: repeat(3, 1fr);
  gap: 12px 20px;
}
@media (max-width: 1200px) {
  .details-grid.details-grid-3col {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .details-grid.details-grid-3col {
    grid-template-columns: 1fr;
  }
}
.details-grid .detail-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.details-grid .detail-item.full-width {
  grid-column: 1/-1;
}
.details-grid .detail-item .detail-label {
  font-size: 12px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.details-grid .detail-item .detail-value {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.87);
  word-break: break-word;
}
.detail-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.detail-item .detail-label {
  font-size: 12px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.detail-item .detail-value {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.87);
  word-break: break-word;
}
.metrics-row {
  display: flex;
  gap: 24px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}
.metrics-row .metric {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.87);
}
.metrics-row .metric mat-icon {
  font-size: 18px;
  width: 18px;
  height: 18px;
  color: rgba(0, 0, 0, 0.54);
}
.rating-stars {
  display: flex;
  gap: 4px;
}
.rating-stars mat-icon {
  color: #ffc107;
  font-size: 24px;
  width: 24px;
  height: 24px;
}
.rating-comment {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.rating-comment p {
  margin: 0;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.87);
  line-height: 1.5;
}
.dark-mode .details-section .section-title,
.dark-mode .details-section .section-heading {
  color: rgba(255, 255, 255, 0.87);
}
.dark-mode .details-section .section-title mat-icon,
.dark-mode .details-section .section-heading mat-icon {
  color: rgba(255, 255, 255, 0.7);
}
.dark-mode .details-section .note-text {
  color: rgba(255, 255, 255, 0.87);
}
.dark-mode .details-section.cancellation-section {
  border-color: #f44336;
  background-color: rgba(244, 67, 54, 0.1);
}
.dark-mode .details-grid .detail-item .detail-label {
  color: rgba(255, 255, 255, 0.7);
}
.dark-mode .details-grid .detail-item .detail-value {
  color: rgba(255, 255, 255, 0.87);
}
.dark-mode .detail-item .detail-label {
  color: rgba(255, 255, 255, 0.7);
}
.dark-mode .detail-item .detail-value {
  color: rgba(255, 255, 255, 0.87);
}
.dark-mode .metrics-row {
  border-top-color: rgba(255, 255, 255, 0.12);
}
.dark-mode .metrics-row .metric {
  color: rgba(255, 255, 255, 0.87);
}
.dark-mode .metrics-row .metric mat-icon {
  color: rgba(255, 255, 255, 0.7);
}
.dark-mode .rating-comment p {
  color: rgba(255, 255, 255, 0.87);
}
@media (max-width: 768px) {
  body:not(.is-material-layout) {
    overflow-y: auto !important;
    height: auto !important;
    min-height: 100% !important;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 768px) {
  * {
    font-size: 12px !important;
  }
  mat-icon,
  .mat-icon {
    font-size: 20px !important;
    width: 20px !important;
    height: 20px !important;
    line-height: 20px !important;
  }
  .mat-icon-logo,
  .portal-logo .mat-icon,
  .top-logo .mat-icon {
    width: auto !important;
    height: 32px !important;
    line-height: 32px !important;
    font-size: inherit !important;
  }
  mat-card-subtitle {
    display: none !important;
  }
  mat-card {
    border-radius: 12px !important;
    margin: 4px 4px 8px 4px !important;
  }
  .card-header {
    padding-bottom: 12px !important;
  }
  mat-card-content {
    padding: 0 12px 12px 12px !important;
  }
  .app-content {
    padding: 8px !important;
  }
  mat-sidenav.sidenav {
    visibility: hidden !important;
    transform: translateX(-100%) !important;
    box-shadow: none !important;
  }
  mat-drawer.main-drawer,
  mat-drawer.submenu-drawer {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }
  mat-drawer-content.main-content {
    margin-left: 0 !important;
  }
  mat-drawer-content.submenu-content {
    margin-left: 0 !important;
  }
  mat-sidenav.sidenav.mobile-open {
    visibility: visible !important;
    transform: translateX(0) !important;
    box-shadow: 8px 0 16px rgba(0, 0, 0, 0.24) !important;
    z-index: 1000 !important;
    position: fixed !important;
    height: 100vh !important;
  }
  mat-sidenav-content {
    margin-left: 0 !important;
  }
  .mobile-menu-toggle {
    display: flex !important;
  }
  .cdk-overlay-pane.mat-mdc-dialog-panel {
    min-width: 0 !important;
    max-width: calc(100vw - 16px) !important;
    width: calc(100vw - 16px) !important;
    max-height: calc(100vh - 32px) !important;
  }
  mat-dialog-container,
  .mat-mdc-dialog-surface {
    border-radius: 12px !important;
    padding: 24px !important;
    max-height: calc(100vh - 32px) !important;
    display: flex !important;
    flex-direction: column !important;
  }
  mat-dialog-content,
  .mat-mdc-dialog-content {
    flex: 1 1 auto !important;
    overflow-y: auto !important;
    max-height: none !important;
  }
  mat-dialog-actions,
  .mat-mdc-dialog-actions {
    flex-shrink: 0 !important;
    flex-wrap: wrap !important;
  }
  .mat-mdc-tab .mdc-tab__text-label {
    font-size: 11px !important;
    letter-spacing: 0 !important;
  }
  .mat-mdc-tab-header {
    margin-bottom: 0 !important;
  }
  .mat-mdc-paginator-page-size {
    display: none !important;
  }
  .mat-mdc-paginator-range-label {
    margin: 0 8px !important;
  }
  app-collection-filter .filter-row,
  app-collection-filter .filter-container {
    flex-direction: column !important;
  }
  app-collection-filter .filter-row mat-form-field,
  app-collection-filter .filter-container mat-form-field {
    width: 100% !important;
  }
  .mat-fab-position-bottom-right {
    bottom: 16px !important;
    right: 16px !important;
  }
}
@media (max-width: 768px) and (max-width: 480px) {
  a.mat-fab-position-bottom-right[extended] span:not(.mat-icon) {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .dark-mode mat-sidenav.sidenav.mobile-open,
  [data-theme=dark] mat-sidenav.sidenav.mobile-open {
    box-shadow: 8px 0 16px rgba(0, 0, 0, 0.5) !important;
  }
  .collection-export-btn {
    display: none !important;
  }
}
.mobile-menu-toggle {
  display: none;
}
@media (max-width: 768px) {
  .hide-on-mobile {
    display: none !important;
  }
}
html,
body {
  overflow: hidden;
}
.hasAction:not(.is-material-layout) .intercom-app div,
.hasAction:not(.is-material-layout) .intercom-lightweight-app div {
  right: 90px !important;
}
@media (max-width: 768px) {
  .hasAction:not(.is-material-layout) .intercom-app div,
  .hasAction:not(.is-material-layout) .intercom-lightweight-app div {
    right: 20px !important;
  }
}
.intercom-app,
.intercom-lightweight-app {
  color: white;
}
@font-face {
  font-family: "Material Icons";
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/materialicons/v140/flUhRq6tzZclQEJ-Vdg-IuiaDsNc.woff2) format("woff2");
}
@font-face {
  font-family: "Material Icons Outlined";
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/materialiconsoutlined/v109/gok-H7zzDkdnRel8-DQ6KAXJ69wP1tGnf4ZGhUce.woff2) format("woff2");
}
.upgrade-locked-btn {
  opacity: 0.5;
}
.upgrade-badge {
  font-size: 18px !important;
  width: 18px !important;
  height: 18px !important;
  line-height: 18px !important;
  color: #000;
  margin-left: 4px;
  flex-shrink: 0;
  vertical-align: middle;
}
.upgrade-locked-item .mat-mdc-menu-item-text {
  display: flex;
  align-items: center;
  width: 100%;
}
.upgrade-locked-item .upgrade-badge {
  margin-left: auto;
}
[data-theme=dark] .upgrade-badge {
  color: rgba(255, 255, 255, 0.87);
}
.mat-mdc-unelevated-button.mat-warn,
.mat-mdc-raised-button.mat-warn,
button[matButton=filled][color=warn] {
  --mdc-filled-button-container-color: var(--mat-sys-error) !important;
  --mdc-filled-button-label-text-color: var(--mat-sys-on-error) !important;
  background-color: var(--mat-sys-error) !important;
}
.mat-mdc-outlined-button.mat-warn,
button[matButton=outlined][color=warn] {
  --mdc-outlined-button-label-text-color: var(--mat-sys-error) !important;
  --mdc-outlined-button-outline-color: var(--mat-sys-error) !important;
  color: var(--mat-sys-error) !important;
  border-color: var(--mat-sys-error) !important;
}
* {
  font-family: "Inter", sans-serif !important;
  -webkit-font-smoothing: antialiased;
  font-size: 14px;
}
code,
pre,
.mono {
  font-family:
    "JetBrains Mono",
    "Courier New",
    monospace !important;
}
.mat-drawer-container {
  background-color: #F0EDE6 !important;
}
app-apps-upsert {
}
app-apps-upsert mat-sidenav-container,
app-apps-upsert mat-sidenav-content,
app-apps-upsert td-layout-nav,
app-apps-upsert .mat-tab-body-wrapper,
app-apps-upsert .mat-tab-body-active,
app-apps-upsert .mat-tab-body-content {
  overflow: visible !important;
}
.background-fill {
  display: flex;
  flex-direction: column;
  height: calc(100% - 40px);
  background-color: #F0EDE6 !important;
}
.background-fill-grey {
  background: #fafafa !important;
}
.background-fill-grey mat-dialog-container {
  background: #fafafa !important;
}
mat-toolbar {
  border-bottom: 0 solid #e3e3e3;
}
.mat-toolbar.mat-primary {
  background: #03a9f4 !important;
}
.mat-toolbar.mat-primary:not(.operator-toolbar) {
  height: 80px !important;
}
@media (max-width: 790px) {
  .mat-toolbar.mat-primary:not(.operator-toolbar) {
    height: 80px !important;
  }
  .mat-toolbar.mat-primary:not(.operator-toolbar) .top-bar {
    height: 80px !important;
  }
  .mat-toolbar.mat-primary:not(.operator-toolbar) .top-bar .top-portal-logo {
    top: 30px !important;
  }
  .mat-toolbar.mat-primary:not(.operator-toolbar) .top-bar .top-portal-left,
  .mat-toolbar.mat-primary:not(.operator-toolbar) .top-bar .top-portal-right {
    top: 60px !important;
  }
}
@media (max-width: 530px) {
  .mat-toolbar.mat-primary:not(.operator-toolbar) .top-portal-left,
  .mat-toolbar.mat-primary:not(.operator-toolbar) .workspace-switch {
    overflow: hidden;
    display: block;
    width: auto;
    min-width: auto;
  }
  .mat-toolbar.mat-primary:not(.operator-toolbar) .top-portal-left button,
  .mat-toolbar.mat-primary:not(.operator-toolbar) .workspace-switch button {
    max-width: 90px;
  }
}
.mat-toolbar-single-row {
  height: 40px;
  background: #ffffff !important;
}
.iti {
  width: 100%;
}
.iti *:focus {
  outline: none;
}
.iti .iti__selected-flag {
  padding: 0 10px;
  margin-top: 1px;
  margin-left: 1px;
}
.iti .iti__country {
  color: #000;
}
.iti--separate-dial-code .iti__selected-flag {
  background: #EFEEEE;
}
.material-icons {
  font-family: "Material Icons" !important;
}
mat-dialog-container {
  position: relative;
  border-radius: 16px !important;
}
.mat-mdc-dialog-surface {
  padding: 24px;
  overflow: hidden !important;
}
mat-dialog-content,
.mat-mdc-dialog-content {
  margin: 0 !important;
  padding: 8px 0 24px 0 !important;
  overflow-x: hidden !important;
}
app-dialog-header + mat-divider {
  display: none !important;
}
.float-right {
  float: right;
}
.float-left {
  float: left;
}
.float-none {
  float: none;
}
.align-right {
  text-align: right;
}
.align-left {
  text-align: left;
}
.bold {
  font-weight: bold;
}
.top-logo,
.top-portal-logo {
  max-width: 240px;
  display: inline-flex;
}
.top-logo .mat-icon.mat-icon-logo,
.top-portal-logo .mat-icon.mat-icon-logo {
  width: 240px;
  height: 48px;
  margin-right: 0;
  color: #000;
}
.top-portal-logo {
  margin: 0 auto;
}
.top-portal-logo .mat-icon.mat-icon-logo {
  height: 32px;
}
.cdk-global-overlay-wrapper {
  overflow-x: auto;
}
google-map {
  height: 500px;
}
ngx-charts-advanced-pie-chart > div {
  margin: 20px 0;
}
.ride-months-graph {
  overflow: hidden;
  clear: both;
  height: 400px;
  margin: 40px 30px 30px 20px;
}
.driver-score mat-icon {
  margin: 5px auto;
}
mat-card {
  border-radius: 20px !important;
  box-shadow: none !important;
  margin: 16px !important;
  padding: 24px !important;
}
@media (max-width: 768px) {
  mat-card {
    border-radius: 12px !important;
    margin: 8px 8px 12px 8px !important;
  }
}
mat-card.second-card {
  margin-top: 0 !important;
}
mat-card.push {
  margin-bottom: 16px !important;
}
mat-dialog-container mat-card {
  margin: 0 !important;
  padding: 0 !important;
}
.mat-autocomplete-panel {
  border-radius: 6px !important;
  box-shadow: none !important;
  border: 1px solid rgba(0, 0, 0, 0.12);
}
mat-card.dialog {
  margin: 0 !important;
  padding: 8px 0 0 0 !important;
}
.right-pane mat-card {
  margin-left: 0px !important;
}
mat-card-title,
h1,
h2,
h3,
h4,
h5,
h6,
.status-title {
  font-family: arial, serif !important;
}
h2 {
  font-size: 20px;
}
mat-card-title {
  padding-top: 0 !important;
  font-weight: 400 !important;
  font-size: 22px !important;
  min-height: 22px !important;
  display: block;
  margin-bottom: 8px !important;
}
mat-card-title span {
  font-size: 24px;
}
mat-card-title button span {
  font-size: 14px;
}
mat-card-subtitle {
  margin-top: 4px !important;
  margin-bottom: 12px !important;
  color: #666 !important;
  font-size: 14px !important;
}
.mat-mdc-dialog-title,
[mat-dialog-title] {
  font-family: arial, serif !important;
  font-weight: 600 !important;
  font-size: 24px !important;
  padding: 0 0 0 0 !important;
  margin-bottom: 8px !important;
  line-height: 1.25 !important;
  display: block;
  text-align: left !important;
}
.mat-mdc-dialog-actions {
  justify-content: flex-end !important;
  gap: 8px !important;
  padding: 12px 0 4px !important;
  margin: 0 !important;
}
mat-dialog-container mat-divider,
.mat-mdc-dialog-container mat-divider {
  margin-left: -24px !important;
  margin-right: -24px !important;
}
mat-dialog-actions,
.mat-mdc-dialog-actions {
  padding: 24px 0 0 !important;
}
.dark-mode mat-dialog-container mat-divider,
.dark-mode .mat-mdc-dialog-container mat-divider,
[data-theme=dark] mat-dialog-container mat-divider,
[data-theme=dark] .mat-mdc-dialog-container mat-divider {
  border-top-color: rgba(255, 255, 255, 0.12) !important;
}
.dark-mode .card-header mat-card-subtitle::before,
[data-theme=dark] .card-header mat-card-subtitle::before {
  color: rgba(255, 255, 255, 0.3);
}
button.icon-only-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}
button.icon-only-btn .mdc-button__label {
  width: 0 !important;
  flex: 0 0 0 !important;
  overflow: hidden !important;
}
button.icon-only-btn mat-icon {
  margin: 0 !important;
  line-height: 1 !important;
}
.card-header {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0 6px;
  margin-bottom: 24px;
}
.card-header mat-card-title {
  margin-bottom: 0;
}
.card-header mat-card-subtitle {
  margin-top: 0;
  font-size: 14px;
  flex: 1;
  min-width: 0;
}
.card-header mat-card-subtitle::before {
  content: "-";
  margin-right: 6px;
  color: rgba(0, 0, 0, 0.3);
}
.card-header mat-divider {
  flex: 1 1 100%;
  margin-top: 12px !important;
  margin-bottom: 0 !important;
}
.card-header-action {
  margin-left: auto;
  align-self: center;
  flex-shrink: 0;
}
.card-header-actions {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.card-header-actions > .card-header-text {
  flex: 1;
  min-width: 0;
}
.card-header-actions > button[mat-icon-button] {
  flex-shrink: 0;
  margin-top: -4px;
  margin-right: -8px;
  width: 32px;
  height: 32px;
  line-height: 32px;
}
.card-header-actions > button[mat-icon-button] mat-icon {
  font-size: 18px;
  width: 18px;
  height: 18px;
  line-height: 18px;
}
mat-card mat-divider:not(.card-header mat-divider) {
  margin: 24px 0 !important;
}
mat-card-content {
  padding-top: 24px !important;
}
mat-card-title.filter button.tool {
  float: right;
  margin: -4px 0 0 0 !important;
}
mat-card-actions.dialog-buttons {
  padding-left: 23px;
  display: flow-root;
  margin-bottom: -20px;
  margin-left: -8px !important;
  margin-right: 0 !important;
}
mat-card-actions.dialog-buttons button {
  float: right;
}
mat-card-actions {
  display: flow-root !important;
  margin-bottom: 0 !important;
  padding: 16px 8px 0 8px !important;
}
mat-card-actions button {
  float: right;
  margin-left: 8px !important;
}
mat-card-actions button:last-of-type {
  margin-right: 0 !important;
}
.button-pane button.mat-accent span {
  color: #ffffff;
}
.button-pane button.mat-button-disabled span,
.button-pane button.mat-mdc-button-disabled span,
.button-pane button[disabled] span {
  color: rgba(0, 0, 0, 0.26);
}
.small-title {
  font-size: 18px;
  margin-bottom: 0;
}
.filter-fields .td-search-input-field {
  margin-top: 3px;
}
.filter-fields .mat-form-field-type-mat-select .mat-form-field-infix {
  margin-top: 3px;
}
td.table-placeholder {
  border-bottom: 1px solid #dedede;
}
.mat-form-field-appearance-legacy .mat-form-field-infix {
  line-height: 20px;
}
.search-box {
  display: flex;
  flex: 1;
  width: calc(100% - 20px);
}
.search-box .mat-form-field-infix {
  top: -3px;
}
mat-form-field[appearance=outline] .mat-form-field-infix {
  padding-top: 8px !important;
  padding-bottom: 8px !important;
  top: -3px;
}
mat-form-field[appearance=outline].no-label .mat-form-field-infix {
  top: 0;
}
mat-form-field[appearance=outline].mat-form-field-hide-placeholder .mat-form-field-infix {
  top: -4px !important;
}
.mat-form-field-appearance-outline .mat-form-field-outline-thick {
  color: rgba(198, 198, 198, 0.87) !important;
}
input[type=number] {
  -moz-appearance: textfield;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
mat-dialog-container td-confirm-dialog .td-dialog-title,
mat-dialog-container td-alert-dialog .td-dialog-title {
  font-weight: 700;
}
mat-dialog-container td-confirm-dialog .td-dialog-message,
mat-dialog-container td-alert-dialog .td-dialog-message {
  color: #000000 !important;
  font-size: 14px;
  line-height: 22px;
}
mat-dialog-container td-confirm-dialog div.td-dialog-actions,
mat-dialog-container td-alert-dialog div.td-dialog-actions {
  position: inherit !important;
}
mat-dialog-container td-confirm-dialog td-dialog-actions,
mat-dialog-container td-alert-dialog td-dialog-actions {
  width: 100%;
}
mat-dialog-container td-confirm-dialog td-dialog-actions .td-dialog-spacer,
mat-dialog-container td-alert-dialog td-dialog-actions .td-dialog-spacer {
  display: none;
}
mat-dialog-container td-confirm-dialog td-dialog-actions button,
mat-dialog-container td-alert-dialog td-dialog-actions button {
  text-transform: capitalize !important;
}
mat-dialog-container td-confirm-dialog td-dialog-actions button span,
mat-dialog-container td-alert-dialog td-dialog-actions button span {
  text-transform: capitalize !important;
}
mat-dialog-container td-confirm-dialog td-dialog-actions button:first-child,
mat-dialog-container td-alert-dialog td-dialog-actions button:first-child {
  margin-left: 0 !important;
  height: 38px;
  border-radius: 10px;
  background-color: #C2C2C2;
  color: #ffffff !important;
  font-size: 12px !important;
  text-align: center;
  line-height: 19px;
  padding: 5px 20px !important;
  border: 0 !important;
}
mat-dialog-container td-confirm-dialog td-dialog-actions button:not(:first-child),
mat-dialog-container td-confirm-dialog td-dialog-actions button:only-child,
mat-dialog-container td-alert-dialog td-dialog-actions button:not(:first-child),
mat-dialog-container td-alert-dialog td-dialog-actions button:only-child {
  float: right;
  margin-left: 0 !important;
  height: 38px;
  border-radius: 10px;
  background-color: #03a9f4;
  color: #ffffff !important;
  font-size: 12px;
  text-align: center;
  line-height: 19px;
  padding: 5px 20px !important;
  border: 0 !important;
}
@media (max-width: 960px) {
  .searchDriver td-search-input .mat-form-field-infix {
    left: 6px;
    position: relative;
  }
}
@media (max-width: 960px) {
  .searchDriver td-search-input input.mat-input-element {
    left: 39px;
    position: relative;
  }
}
.mat-badge-accent .mat-badge-content {
  background: #fd4b4b;
  color: white;
}
.message-button .mat-badge-content {
  right: 8px !important;
  top: 2px !important;
}
.date-range-picker {
  overflow: hidden;
}
.date-range-picker p.label {
  margin: 18px 0 0 0;
  padding: 0 15px;
  float: left;
}
@media (max-width: 600px) {
  .date-range-picker p.label {
    min-width: 55px;
    padding: 0 5px 0 15px;
  }
}
.date-range-picker mat-form-field {
  float: left;
}
@media (max-width: 600px) {
  .date-range-picker mat-form-field {
    width: calc(100% - 95px);
    float: none;
  }
}
.date-range-picker mat-form-field > .mat-input-wrapper {
  margin-top: 4px;
}
@media (min-width: 600px) {
  .date-range-picker mat-form-field:last-of-type {
    margin-right: 30px;
  }
}
.max-width-300 {
  max-width: 300px;
}
.max-width-300 .wrap-line {
  width: 280px;
}
.max-width-350 {
  max-width: 350px;
}
.max-width-350 .wrap-line {
  width: 330px;
}
.max-width-400 {
  max-width: 400px;
}
.max-width-400 .wrap-line {
  width: 380px;
}
.wrap-line {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  box-sizing: border-box;
}
.operator-rating-first-field {
  margin-top: 35px;
}
.value-container.first {
  margin-top: 0;
}
.value-container .label {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.38);
  margin-bottom: 0;
}
.value-container .value {
  font-size: 16px;
  color: #000;
  margin-top: 0;
}
.mat-tab-group.single-tab .mat-tab-header {
  display: none !important;
}
.mat-form-field-appearance-outline.small-outline .mat-form-field-infix {
  padding: 5px 0 9px 0px !important;
}
.mat-form-field-appearance-outline.small-outline-select .mat-form-field-infix {
  padding: 2px 0 9px 0px !important;
}
.mat-tab-label mat-icon,
.mdc-tab__content mat-icon {
  vertical-align: middle;
  flex-shrink: 0;
}
.mat-tab-label .tab-label-text,
.mdc-tab__content .tab-label-text {
  margin-left: 6px;
}
.euro-prefix .mat-form-field-prefix {
  top: -4px !important;
  transform: none !important;
  margin-top: 0 !important;
}
.grayscale {
  opacity: 0.4;
  transition: opacity 0.3s;
}
.user-avatar img {
  width: 60px !important;
  height: 60px !important;
}
.details-card,
.job-details-card {
  overflow: hidden;
}
.details-card .mat-list .mat-list-item .mat-line,
.details-card .mat-nav-list .mat-list-item .mat-line,
.job-details-card .mat-list .mat-list-item .mat-line,
.job-details-card .mat-nav-list .mat-list-item .mat-line {
  white-space: normal;
}
.details-card .mat-list .mat-list-item.value .mat-line:nth-child(n+2),
.details-card .mat-nav-list .mat-list-item.value .mat-line:nth-child(n+2),
.job-details-card .mat-list .mat-list-item.value .mat-line:nth-child(n+2),
.job-details-card .mat-nav-list .mat-list-item.value .mat-line:nth-child(n+2) {
  font-size: 16px;
  color: rgb(0, 0, 0);
}
.details-card .mat-list .mat-list-item.value .mat-line:nth-child(1),
.details-card .mat-nav-list .mat-list-item.value .mat-line:nth-child(1),
.job-details-card .mat-list .mat-list-item.value .mat-line:nth-child(1),
.job-details-card .mat-nav-list .mat-list-item.value .mat-line:nth-child(1) {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.38);
}
.job-details-card,
.assign-pane,
.assign-pane .mat-tab-body-wrapper,
.assign-pane .mat-tab-body-wrapper .mat-tab-body-content {
  overflow: visible !important;
}
.assign-pane .mat-tab-body {
  overflow-y: visible !important;
  display: inline-table;
}
.assign-pane .mat-tab-body-wrapper .mat-tab-body-content {
  display: block;
  width: 100%;
}
.mat-nav-list .mat-list-item.value .mat-list-item-content,
.mat-list .mat-list-item.value .mat-list-item-content {
  align-items: baseline;
  padding-top: 0 !important;
}
mat-tab-body td-search-input {
  width: 100%;
}
.ride-log-entry pre {
  margin: 4px 0;
}
mat-card.clickable:hover {
  background: rgba(0, 0, 0, 0.04);
  cursor: pointer;
}
mat-card mat-card-content {
  padding: 0 !important;
}
mat-card mat-card-content.widget-filter {
  padding: 16px 16px 0;
  margin-bottom: 0;
}
mat-card mat-card-content.widget-filter span.label {
  display: inline-block;
  margin-right: 20px;
}
mat-divider[matInset] {
  width: calc(100% - 88px) !important;
}
.clickable {
  cursor: pointer;
}
.noselect {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.tab-content {
  padding: 16px;
}
.full-width {
  width: 100%;
}
.field-description {
  opacity: 0.7;
  font-size: 14px;
  margin-top: 5px;
}
.mat-list .mat-list-item.value.small {
  height: 45px;
}
.ride-filter .date-range-picker p.label {
  margin: 24px 0 0 0;
  padding: 0 0 0 15px;
  float: left;
}
.ride-filter .date-range-picker mat-form-field {
  width: 60%;
  float: left;
}
.ride-filter .date-range-picker mat-form-field > .mat-input-wrapper {
  margin-top: 4px;
}
.ride-filter .date-range-picker mat-form-field:last-of-type {
  margin-right: 30px;
}
.label-select {
  padding: 0 15px;
}
.zEWidget-launcher {
  bottom: 45px !important;
}
#launcher {
  bottom: 40px !important;
}
.custom-side-menu {
  padding-bottom: 100px;
}
.positive {
  color: #55BE00 !important;
}
.negative {
  color: #FF0000 !important;
}
.disabled {
  color: #8c8c8c !important;
  filter: grayscale(1);
}
@media (max-width: 1490px) {
  .maxSize1490 {
    display: none;
  }
}
@media (max-width: 1440px) {
  .maxSize1440 {
    display: none;
  }
}
@media (max-width: 1280px) {
  .maxSize1280 {
    display: none;
  }
}
@media (max-width: 1180px) {
  .maxSize1180 {
    display: none;
  }
}
@media (max-width: 1024px) {
  .maxSize1024 {
    display: none;
  }
}
@media (max-width: 950px) {
  .maxSize950 {
    display: none;
  }
}
@media (max-width: 900px) {
  .maxSize900 {
    display: none;
  }
}
@media (max-width: 600px) {
  .maxSize600 {
    display: none;
  }
}
.minSize150 {
  min-width: 150px;
}
.minSize175 {
  min-width: 175px;
}
.minSize250 {
  min-width: 250px;
}
@media (max-width: 1024px) {
  .w-15 {
    width: 15px;
  }
  .w-30 {
    width: 30px;
  }
  .w-75 {
    width: 75px;
  }
  .w-80 {
    width: 80px;
  }
  .w-100 {
    width: 100px;
  }
  .w-120 {
    width: 120px;
  }
  .w-135 {
    width: 135px;
  }
  .w-150 {
    width: 150px;
    min-width: 150px;
    max-width: 150px;
  }
  .w-200 {
    width: 200px;
  }
  .w-216 {
    width: 216px;
  }
}
@media (min-width: 1024px) {
  .w-15 {
    width: 15px;
  }
  .w-30 {
    width: 30px;
  }
  .w-75 {
    width: 75px;
  }
  .w-80 {
    width: 80px;
  }
}
.max-w-100 {
  max-width: 100px;
}
.max-w-300 .wrap-line {
  max-width: 300px;
}
.max-w-100p {
  width: 100%;
}
.max-w-100p .wrap-line {
  max-width: 100%;
}
.max-w-700 {
  max-width: 700px;
}
@media (min-width: 960px) {
  span.td-data-table-heading,
  .mat-mdc-header-cell {
    padding: 0 14px 0 28px !important;
  }
}
@media (max-width: 600px) {
  span.td-data-table-heading,
  .mat-mdc-header-cell {
    padding: 0 14px 0 14px !important;
  }
}
.mat-mdc-table {
  width: 100%;
  background: transparent;
}
.mat-mdc-row:hover {
  background-color: rgba(36, 180, 243, 0.1) !important;
  --mat-table-row-item-hover-state-layer-opacity: 0;
}
.mat-mdc-row.clickable-row {
  cursor: pointer;
}
.mat-mdc-header-row {
  background-color: #fafafa;
}
.mat-mdc-cell,
.mat-mdc-header-cell {
  padding: 0 14px !important;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgba(0, 0, 0, 0.12);
}
.table-container {
  overflow-x: auto;
}
.full-width {
  width: 100%;
}
tbody.empty td {
  padding: 50px;
  width: 460px;
  margin: auto;
  padding-bottom: 50px;
  text-align: center;
  color: rgba(0, 0, 0, 0.54);
}
.yda-link {
  color: rgba(0, 0, 0, 0.87);
  cursor: pointer;
}
.yda-link:hover {
  color: #03a9f4;
}
.yda-link-blue {
  color: #03a9f4;
  cursor: pointer;
}
.yda-link-blue:hover {
  color: rgba(0, 0, 0, 0.87);
}
.pointer {
  cursor: pointer;
}
.warning span {
  vertical-align: super;
  font-size: 12px;
}
.phoneNumberField {
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  height: 40px;
}
.phoneNumberField .warning span {
  line-height: 20px;
}
.warning .mat-icon {
  font-size: 18px !important;
  margin-right: 5px;
}
.mat-form-field-prefix {
  padding-right: 5px;
}
.phoneNumberInvalid ngx-intl-tel-input .phoneNumberInput {
  color: #e53935 !important;
  border-bottom: 1px solid #e53935 !important;
  font-size: 16px;
}
.phoneNumberInvalid ngx-intl-tel-input .iti__flag-container {
  border-bottom: 1px solid #e53935 !important;
}
.phoneNumberInvalid .phoneNumberInput::placeholder {
  color: red;
  opacity: 1;
  font-size: 16px;
}
.phoneNumberInvalid .phoneNumberInput:-ms-input-placeholder {
  color: red;
  font-size: 16px;
}
.phoneNumberInvalid .phoneNumberInput::-ms-input-placeholder {
  color: red;
  font-size: 16px;
}
.phoneNumberInvalid .phonenumber-warning {
  float: left;
  width: 100%;
}
.phoneNumberInputDisabledBorder {
  background-image:
    linear-gradient(
      to right,
      rgba(0, 0, 0, 0.42) 0%,
      rgba(0, 0, 0, 0.42) 33%,
      transparent 0%);
  background-size: 4px 100%;
  background-repeat: repeat-x;
  background-position: bottom;
  position: relative;
  height: 1px;
}
.iti--allow-dropdown #country-search-box {
  height: 30px;
}
ngx-intl-tel-input .dropdown-toggle {
  padding-left: 0;
}
ngx-intl-tel-input .phoneNumberInput {
  border: 0;
  border-top: 0.45375em solid transparent;
  line-height: 28px;
  width: calc(100% - 37px);
  padding-left: 0 !important;
  margin-left: 46px !important;
  min-width: 178px;
  border-radius: 0;
}
@media (max-width: 960px) {
  ngx-intl-tel-input .phoneNumberInput {
    width: calc(100% - 42px);
  }
}
@media (max-width: 960px) {
  ngx-intl-tel-input .phoneNumberInput {
    padding-top: 0;
  }
}
ngx-intl-tel-input .phoneNumberInput:focus-visible {
  outline: none;
}
ngx-intl-tel-input .phoneNumberInputDisabled {
  background-color: #ffffff;
  border-bottom: none;
}
ngx-intl-tel-input .iti {
  width: calc(100% - 10px);
  filter: grayscale(0) !important;
}
ngx-intl-tel-input .iti__flag-container {
  top: 2px !important;
  filter: grayscale(0) !important;
}
@media (max-width: 960px) {
  ngx-intl-tel-input .iti__flag-container {
    top: 5px !important;
  }
}
ngx-intl-tel-input .disabled {
  background-color: #ffffff;
  border-bottom: none;
}
.mat-drawer-inner-container {
  overflow: visible !important;
}
.assign-pane .hiddenOverflow .mat-tab-body-wrapper {
  overflow: hidden !important;
}
.mat-list-base {
  padding-top: 0 !important;
}
.table-placeholder {
  color: #bebebe;
  font-size: 20px;
  text-align: center;
  padding: 40px;
}
.mat-clickable .td-data-table-cell-content-wrapper,
.mat-clickable .td-data-table-heading,
.mat-clickable .mat-mdc-cell,
.mat-clickable .mat-mdc-header-cell {
  padding-left: 14px !important;
  padding-right: 14px !important;
}
.checkbox-td .td-data-table-cell-content-wrapper,
.checkbox-td .mat-mdc-cell {
  padding-right: 0px !important;
}
button.accept-button {
  background-color: #4caf50;
  color: #ffffff;
}
.back-button mat-icon {
  display: block;
  float: left;
  margin-top: 8px;
}
.mat-tooltip,
.mat-mdc-tooltip,
.mdc-tooltip__surface {
  font-size: 14px !important;
  line-height: 20px !important;
  white-space: pre-line !important;
}
.mat-mdc-tooltip .mdc-tooltip__surface {
  background-color: rgba(97, 97, 97, 0.95) !important;
  color: #ffffff !important;
}
.mat-mdc-tooltip {
  --mdc-plain-tooltip-container-color: rgba(97, 97, 97, 0.95) !important;
  --mdc-plain-tooltip-supporting-text-color: #ffffff !important;
}
@media (max-width: 600px) {
  td-search-box.filter-search button {
    padding: 0 15px;
    width: 63px;
  }
}
.dialog-pane {
  position: relative;
}
.dialog-close svg {
  transition: 0.3s all;
  vertical-align: middle;
}
.dialog-close {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -0.25rem;
  right: 0.25rem;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid #000000;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s transform, 0.3s border;
}
.support-pane {
  border: 1px solid #ff9959;
  background-color: #f8efe8;
  padding: 16px;
  display: inline-block;
}
.input-warning {
  border: 1px solid red !important;
}
.input-warning-text mat-label {
  color: red;
}
.icon-right {
  margin-right: 6px;
}
td-layout-card-over {
  background-color: #F0EDE6 !important;
}
.dot-pulse {
  position: relative;
  left: -9999px;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #03a9f4;
  color: #03a9f4;
  box-shadow: 9999px 0 0 -5px #03a9f4;
  animation: dotPulse 1.5s infinite linear;
  animation-delay: 0.25s;
}
.dot-pulse::before,
.dot-pulse::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #03a9f4;
  color: #03a9f4;
}
.dot-pulse::before {
  box-shadow: 9984px 0 0 -5px #03a9f4;
  animation: dotPulseBefore 1.5s infinite linear;
  animation-delay: 0s;
}
.dot-pulse::after {
  box-shadow: 10014px 0 0 -5px #03a9f4;
  animation: dotPulseAfter 1.5s infinite linear;
  animation-delay: 0.5s;
}
@keyframes dotPulseBefore {
  0% {
    box-shadow: 9984px 0 0 -5px #03a9f4;
  }
  30% {
    box-shadow: 9984px 0 0 2px #03a9f4;
  }
  60%, 100% {
    box-shadow: 9984px 0 0 -5px #03a9f4;
  }
}
@keyframes dotPulse {
  0% {
    box-shadow: 9999px 0 0 -5px #03a9f4;
  }
  30% {
    box-shadow: 9999px 0 0 2px #03a9f4;
  }
  60%, 100% {
    box-shadow: 9999px 0 0 -5px #03a9f4;
  }
}
@keyframes dotPulseAfter {
  0% {
    box-shadow: 10014px 0 0 -5px #03a9f4;
  }
  30% {
    box-shadow: 10014px 0 0 2px #03a9f4;
  }
  60%, 100% {
    box-shadow: 10014px 0 0 -5px #03a9f4;
  }
}
.protected_account {
  margin-left: 10px;
  font-style: italic;
  color: #727272;
}
.credit,
.red {
  color: #FF0000;
}
.debit,
.green {
  color: #55BE00;
}
.blue {
  color: #03a9f4;
}
.custom-header-row .mat-checkbox-background {
  background-color: #ffffff;
}
.max-200 {
  max-width: 200px;
}
.max-400 {
  max-width: 400px;
}
.dialog-top-right {
  right: 10px;
  top: 10px;
  cursor: pointer;
  position: absolute;
}
.dialog-top-right:hover {
  color: #818181;
}
.mat-snack-bar-container {
  white-space: pre-wrap;
}
.no-dialog-padding .mat-dialog-container {
  padding: 10px;
  overflow: hidden;
}
.no-dialog-padding .mat-mdc-dialog-container,
.no-dialog-padding .mat-mdc-dialog-inner-container,
.no-dialog-padding .mat-mdc-dialog-surface,
.no-dialog-padding .mdc-dialog__surface {
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
}
.no-dialog-padding mat-dialog-content,
.no-dialog-padding .mat-mdc-dialog-content {
  padding-top: 12px !important;
}
.no-bottom .mat-form-field-wrapper {
  padding-bottom: 0 !important;
}
.zero-dialog-padding .mat-dialog-container {
  padding: 0;
}
.mat-dialog-container {
  margin-bottom: 50px;
}
.dialog-no-scroll .mat-mdc-dialog-content,
.dialog-no-scroll mat-dialog-content {
  max-height: none !important;
  overflow: visible !important;
}
::ng-deep .cdk-overlay-container,
.cdk-global-overlay-wrapper {
  white-space: pre-line;
}
.mat-button,
.mat-mdc-button,
.mat-mdc-outlined-button,
.mat-mdc-unelevated-button {
  border: 1px solid rgba(0, 0, 0, 0.12) !important;
  font-size: 12px;
}
.mat-button.link-button,
.mat-mdc-button.link-button,
.mat-mdc-outlined-button.link-button,
.mat-mdc-unelevated-button.link-button {
  border: 1px solid #ffffff !important;
  text-decoration: underline;
}
.mat-button.link-button:hover,
.mat-mdc-button.link-button:hover,
.mat-mdc-outlined-button.link-button:hover,
.mat-mdc-unelevated-button.link-button:hover {
  border: 1px solid rgba(0, 0, 0, 0.12) !important;
}
.push-right-small {
  margin-right: 8px !important;
}
@media (max-width: 940px) {
  .mobile-row {
    margin-top: 12px !important;
  }
}
.flow-root {
  display: flow-root !important;
}
.action-pane,
.action-pane-max-width {
  margin: 0 auto !important;
  display: flow-root !important;
}
.action-pane button,
.action-pane-max-width button {
  float: right;
  margin-left: 8px;
}
.action-pane mat-card-actions,
.action-pane-max-width mat-card-actions {
  width: auto;
}
.action-pane-max-width {
  margin: 0 !important;
}
.row-container .row-layout,
.row-container .mobile-row {
  display: flow-root;
}
.row-container mat-list-item {
  display: inline-block !important;
}
.form-left {
  margin-right: 4%;
}
.phonenumner_placeholder {
  transform: translateY(-1.28125em) scale(0.75) perspective(100px) translateZ(0.001px);
  color: rgba(0, 0, 0, 0.54);
  top: 1.28125em;
  position: absolute;
  left: -9px;
  width: 200px;
  z-index: 1;
}
app-webbooker-integration-code mat-expansion-panel {
  box-shadow: none !important;
  margin: 0 !important;
}
app-webbooker-integration-code mat-expansion-panel .mat-expansion-panel-body {
  padding: 0 !important;
}
.color-picker .selected-color-background,
.color-picker .selected-color {
  width: 25px !important;
  height: 25px !important;
  top: 0 !important;
}
.color-picker .left,
.color-picker .right {
  padding: 0 8px !important;
}
.color-picker .hue {
  margin-bottom: 4px !important;
}
.color-picker .hue-alpha .ng-star-inserted {
  height: 8px !important;
}
.left_form {
  padding-right: 15px;
}
.warning-pane {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background-color: #fff3cd;
  border: 1px solid #ffc107;
  border-radius: 4px;
  margin-bottom: 8px;
}
.warning-pane mat-icon {
  color: #ff9800;
  flex-shrink: 0;
}
.warning-pane span,
.warning-pane .warn-text {
  flex: 1;
  color: rgba(0, 0, 0, 0.87);
}
.warning-pane p,
.warning-pane ul {
  margin: 0;
}
.dark-mode .warning-pane,
[data-theme=dark] .warning-pane {
  background-color: rgba(255, 193, 7, 0.1);
  border-color: rgba(255, 193, 7, 0.3);
}
.dark-mode .warning-pane span,
.dark-mode .warning-pane .warn-text,
[data-theme=dark] .warning-pane span,
[data-theme=dark] .warning-pane .warn-text {
  color: rgba(255, 255, 255, 0.87);
}
.hidden-visibility {
  visibility: hidden;
  height: 0;
}
.input-help {
  float: right;
}
.passsenger-is-debtor .mat-checkbox-layout span {
  text-wrap: auto !important;
}
.upload-card {
  border: 2px dashed #d0d0d0;
  border-radius: 10px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease;
  max-width: 500px;
}
.upload-card:hover {
  border-color: #03a9f4;
  background-color: rgba(3, 169, 244, 0.04);
}
.upload-card mat-icon {
  font-size: 36px;
  color: #03a9f4;
}
.upload-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.upload-text strong {
  font-size: 14px;
  font-weight: 600;
}
.upload-text span {
  font-size: 12px;
  color: #666;
}
.logo-upload-card {
  max-width: 500px;
}
.logo-upload-card mat-icon {
  font-size: 32px;
}
.mat-option-text {
  text-wrap: auto;
  line-height: 16px;
}
.flex {
  flex: 1;
}
.flex-row {
  display: flex;
  flex-direction: row;
}
.flex-column {
  display: flex;
  flex-direction: column;
}
.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.flex-start {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.flex-start-center {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.flex-center-start {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.layout-padding {
  padding: 16px;
}
.overflow-y-auto {
  overflow-y: auto;
}
html[data-theme=light] input,
html[data-theme=light] textarea,
html[data-theme=light] select,
html[data-theme=light] .mat-input-element,
html[data-theme=light] .mat-mdc-input-element {
  color: #000000 !important;
  -webkit-text-fill-color: #000000 !important;
}
html[data-theme=light] input:not([type=checkbox]):not([type=radio]),
html[data-theme=light] textarea {
  color: #000000 !important;
}
html[data-theme=light] .mat-tab-label,
html[data-theme=light] .mat-mdc-tab,
html[data-theme=light] .mdc-tab__text-label {
  color: #000000 !important;
}
html[data-theme=light] .mat-checkbox-label,
html[data-theme=light] .mat-radio-label,
html[data-theme=light] .mat-radio-label-content,
html[data-theme=light] .mdc-checkbox__label,
html[data-theme=light] .mdc-radio__label,
html[data-theme=light] .mdc-form-field > label {
  color: #000000 !important;
}
html[data-theme=light] .mat-slide-toggle-content,
html[data-theme=light] .mdc-switch__label {
  color: #000000 !important;
}
html[data-theme=light] .mat-list-item,
html[data-theme=light] .mat-option-text,
html[data-theme=light] .mdc-list-item__primary-text {
  color: #000000 !important;
}
html[data-theme=light] .mat-expansion-panel-header-title,
html[data-theme=light] .mat-expansion-panel-header-description {
  color: #000000 !important;
}
html[data-theme=light] .mat-paginator-page-size-label,
html[data-theme=light] .mat-paginator-range-label {
  color: #000000 !important;
}
html[data-theme=light] p,
html[data-theme=light] span,
html[data-theme=light] div,
html[data-theme=light] label {
  color: inherit;
}
ul.form-validation-errors {
  margin: 8px 0 0 16px;
  padding: 0;
}
ul.form-validation-errors li {
  margin-bottom: 4px;
}
.locked-menu-item {
  cursor: pointer !important;
}
.main-drawer,
.submenu-drawer {
  --mat-list-list-item-one-line-container-height: 42px;
}
.submenu-drawer .menu-icon-upgrade {
  margin-left: 8px !important;
}
.submenu-drawer .mdc-list-item--with-leading-icon.mdc-list-item,
.submenu-drawer .mdc-list-item--with-leading-avatar.mdc-list-item,
.submenu-drawer .mdc-list-item--with-leading-checkbox.mdc-list-item,
.submenu-drawer .mdc-list-item--with-leading-radio.mdc-list-item {
  padding-right: 8px;
}

/* node_modules/katex/dist/katex.min.css */
@font-face {
  font-display: block;
  font-family: KaTeX_AMS;
  font-style: normal;
  font-weight: 400;
  src:
    url("./media/KaTeX_AMS-Regular-U6PRYMIZ.woff2") format("woff2"),
    url("./media/KaTeX_AMS-Regular-CYEKBG2K.woff") format("woff"),
    url("./media/KaTeX_AMS-Regular-JKX5W2C4.ttf") format("truetype");
}
@font-face {
  font-display: block;
  font-family: KaTeX_Caligraphic;
  font-style: normal;
  font-weight: 700;
  src:
    url("./media/KaTeX_Caligraphic-Bold-5QL5CMTE.woff2") format("woff2"),
    url("./media/KaTeX_Caligraphic-Bold-WZ3QSGD3.woff") format("woff"),
    url("./media/KaTeX_Caligraphic-Bold-ZTS3R3HK.ttf") format("truetype");
}
@font-face {
  font-display: block;
  font-family: KaTeX_Caligraphic;
  font-style: normal;
  font-weight: 400;
  src:
    url("./media/KaTeX_Caligraphic-Regular-KX5MEWCF.woff2") format("woff2"),
    url("./media/KaTeX_Caligraphic-Regular-3LKEU76G.woff") format("woff"),
    url("./media/KaTeX_Caligraphic-Regular-A7XRTZ5Q.ttf") format("truetype");
}
@font-face {
  font-display: block;
  font-family: KaTeX_Fraktur;
  font-style: normal;
  font-weight: 700;
  src:
    url("./media/KaTeX_Fraktur-Bold-2QVFK6NQ.woff2") format("woff2"),
    url("./media/KaTeX_Fraktur-Bold-T4SWXBMT.woff") format("woff"),
    url("./media/KaTeX_Fraktur-Bold-WGHVTYOR.ttf") format("truetype");
}
@font-face {
  font-display: block;
  font-family: KaTeX_Fraktur;
  font-style: normal;
  font-weight: 400;
  src:
    url("./media/KaTeX_Fraktur-Regular-2PEIFJSJ.woff2") format("woff2"),
    url("./media/KaTeX_Fraktur-Regular-PQMHCIK6.woff") format("woff"),
    url("./media/KaTeX_Fraktur-Regular-5U4OPH2X.ttf") format("truetype");
}
@font-face {
  font-display: block;
  font-family: KaTeX_Main;
  font-style: normal;
  font-weight: 700;
  src:
    url("./media/KaTeX_Main-Bold-YP5VVQRP.woff2") format("woff2"),
    url("./media/KaTeX_Main-Bold-2GA4IZIN.woff") format("woff"),
    url("./media/KaTeX_Main-Bold-W5FBVCZM.ttf") format("truetype");
}
@font-face {
  font-display: block;
  font-family: KaTeX_Main;
  font-style: italic;
  font-weight: 700;
  src:
    url("./media/KaTeX_Main-BoldItalic-N4V3DX7S.woff2") format("woff2"),
    url("./media/KaTeX_Main-BoldItalic-4P4C7HJH.woff") format("woff"),
    url("./media/KaTeX_Main-BoldItalic-ODMLBJJQ.ttf") format("truetype");
}
@font-face {
  font-display: block;
  font-family: KaTeX_Main;
  font-style: italic;
  font-weight: 400;
  src:
    url("./media/KaTeX_Main-Italic-RELBIK7M.woff2") format("woff2"),
    url("./media/KaTeX_Main-Italic-SASNQFN2.woff") format("woff"),
    url("./media/KaTeX_Main-Italic-I43T2HSR.ttf") format("truetype");
}
@font-face {
  font-display: block;
  font-family: KaTeX_Main;
  font-style: normal;
  font-weight: 400;
  src:
    url("./media/KaTeX_Main-Regular-ARRPAO67.woff2") format("woff2"),
    url("./media/KaTeX_Main-Regular-P5I74A2A.woff") format("woff"),
    url("./media/KaTeX_Main-Regular-W74P5G27.ttf") format("truetype");
}
@font-face {
  font-display: block;
  font-family: KaTeX_Math;
  font-style: italic;
  font-weight: 700;
  src:
    url("./media/KaTeX_Math-BoldItalic-K4WTGH3J.woff2") format("woff2"),
    url("./media/KaTeX_Math-BoldItalic-6EBV3DK5.woff") format("woff"),
    url("./media/KaTeX_Math-BoldItalic-VB447A4D.ttf") format("truetype");
}
@font-face {
  font-display: block;
  font-family: KaTeX_Math;
  font-style: italic;
  font-weight: 400;
  src:
    url("./media/KaTeX_Math-Italic-6KGCHLFN.woff2") format("woff2"),
    url("./media/KaTeX_Math-Italic-KKK3USB2.woff") format("woff"),
    url("./media/KaTeX_Math-Italic-SON4MRCA.ttf") format("truetype");
}
@font-face {
  font-display: block;
  font-family: "KaTeX_SansSerif";
  font-style: normal;
  font-weight: 700;
  src:
    url("./media/KaTeX_SansSerif-Bold-RRNVJFFW.woff2") format("woff2"),
    url("./media/KaTeX_SansSerif-Bold-X5M5EMOD.woff") format("woff"),
    url("./media/KaTeX_SansSerif-Bold-STQ6RXC7.ttf") format("truetype");
}
@font-face {
  font-display: block;
  font-family: "KaTeX_SansSerif";
  font-style: italic;
  font-weight: 400;
  src:
    url("./media/KaTeX_SansSerif-Italic-HMPFTM52.woff2") format("woff2"),
    url("./media/KaTeX_SansSerif-Italic-PSN4QKYX.woff") format("woff"),
    url("./media/KaTeX_SansSerif-Italic-WTBAZBGY.ttf") format("truetype");
}
@font-face {
  font-display: block;
  font-family: "KaTeX_SansSerif";
  font-style: normal;
  font-weight: 400;
  src:
    url("./media/KaTeX_SansSerif-Regular-XIQ62X4E.woff2") format("woff2"),
    url("./media/KaTeX_SansSerif-Regular-OQCII6EP.woff") format("woff"),
    url("./media/KaTeX_SansSerif-Regular-2TL3USAE.ttf") format("truetype");
}
@font-face {
  font-display: block;
  font-family: KaTeX_Script;
  font-style: normal;
  font-weight: 400;
  src:
    url("./media/KaTeX_Script-Regular-APUWIHLP.woff2") format("woff2"),
    url("./media/KaTeX_Script-Regular-A5IFOEBS.woff") format("woff"),
    url("./media/KaTeX_Script-Regular-72OLXYNA.ttf") format("truetype");
}
@font-face {
  font-display: block;
  font-family: KaTeX_Size1;
  font-style: normal;
  font-weight: 400;
  src:
    url("./media/KaTeX_Size1-Regular-5LRUTBFT.woff2") format("woff2"),
    url("./media/KaTeX_Size1-Regular-4HRHTS65.woff") format("woff"),
    url("./media/KaTeX_Size1-Regular-7K6AASVL.ttf") format("truetype");
}
@font-face {
  font-display: block;
  font-family: KaTeX_Size2;
  font-style: normal;
  font-weight: 400;
  src:
    url("./media/KaTeX_Size2-Regular-LELKET5D.woff2") format("woff2"),
    url("./media/KaTeX_Size2-Regular-K5ZHAIS6.woff") format("woff"),
    url("./media/KaTeX_Size2-Regular-222HN3GT.ttf") format("truetype");
}
@font-face {
  font-display: block;
  font-family: KaTeX_Size3;
  font-style: normal;
  font-weight: 400;
  src:
    url("./media/KaTeX_Size3-Regular-WQRQ47UD.woff2") format("woff2"),
    url("./media/KaTeX_Size3-Regular-TLFPAHDE.woff") format("woff"),
    url("./media/KaTeX_Size3-Regular-UFCO6WCA.ttf") format("truetype");
}
@font-face {
  font-display: block;
  font-family: KaTeX_Size4;
  font-style: normal;
  font-weight: 400;
  src:
    url("./media/KaTeX_Size4-Regular-CDMV7U5C.woff2") format("woff2"),
    url("./media/KaTeX_Size4-Regular-PKMWZHNC.woff") format("woff"),
    url("./media/KaTeX_Size4-Regular-7PGNVPQK.ttf") format("truetype");
}
@font-face {
  font-display: block;
  font-family: KaTeX_Typewriter;
  font-style: normal;
  font-weight: 400;
  src:
    url("./media/KaTeX_Typewriter-Regular-VBYJ4NRC.woff2") format("woff2"),
    url("./media/KaTeX_Typewriter-Regular-MJMFSK64.woff") format("woff"),
    url("./media/KaTeX_Typewriter-Regular-3F5K6SQ6.ttf") format("truetype");
}
.katex {
  font:
    normal 1.21em KaTeX_Main,
    Times New Roman,
    serif;
  line-height: 1.2;
  text-indent: 0;
  text-rendering: auto;
}
.katex * {
  -ms-high-contrast-adjust: none !important;
  border-color: currentColor;
}
.katex .katex-version:after {
  content: "0.16.28";
}
.katex .katex-mathml {
  clip: rect(1px, 1px, 1px, 1px);
  border: 0;
  height: 1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.katex .katex-html > .newline {
  display: block;
}
.katex .base {
  position: relative;
  white-space: nowrap;
  width: -webkit-min-content;
  width: -moz-min-content;
  width: min-content;
}
.katex .base,
.katex .strut {
  display: inline-block;
}
.katex .textbf {
  font-weight: 700;
}
.katex .textit {
  font-style: italic;
}
.katex .textrm {
  font-family: KaTeX_Main;
}
.katex .textsf {
  font-family: KaTeX_SansSerif;
}
.katex .texttt {
  font-family: KaTeX_Typewriter;
}
.katex .mathnormal {
  font-family: KaTeX_Math;
  font-style: italic;
}
.katex .mathit {
  font-family: KaTeX_Main;
  font-style: italic;
}
.katex .mathrm {
  font-style: normal;
}
.katex .mathbf {
  font-family: KaTeX_Main;
  font-weight: 700;
}
.katex .boldsymbol {
  font-family: KaTeX_Math;
  font-style: italic;
  font-weight: 700;
}
.katex .amsrm,
.katex .mathbb,
.katex .textbb {
  font-family: KaTeX_AMS;
}
.katex .mathcal {
  font-family: KaTeX_Caligraphic;
}
.katex .mathfrak,
.katex .textfrak {
  font-family: KaTeX_Fraktur;
}
.katex .mathboldfrak,
.katex .textboldfrak {
  font-family: KaTeX_Fraktur;
  font-weight: 700;
}
.katex .mathtt {
  font-family: KaTeX_Typewriter;
}
.katex .mathscr,
.katex .textscr {
  font-family: KaTeX_Script;
}
.katex .mathsf,
.katex .textsf {
  font-family: KaTeX_SansSerif;
}
.katex .mathboldsf,
.katex .textboldsf {
  font-family: KaTeX_SansSerif;
  font-weight: 700;
}
.katex .mathitsf,
.katex .mathsfit,
.katex .textitsf {
  font-family: KaTeX_SansSerif;
  font-style: italic;
}
.katex .mainrm {
  font-family: KaTeX_Main;
  font-style: normal;
}
.katex .vlist-t {
  border-collapse: collapse;
  display: inline-table;
  table-layout: fixed;
}
.katex .vlist-r {
  display: table-row;
}
.katex .vlist {
  display: table-cell;
  position: relative;
  vertical-align: bottom;
}
.katex .vlist > span {
  display: block;
  height: 0;
  position: relative;
}
.katex .vlist > span > span {
  display: inline-block;
}
.katex .vlist > span > .pstrut {
  overflow: hidden;
  width: 0;
}
.katex .vlist-t2 {
  margin-right: -2px;
}
.katex .vlist-s {
  display: table-cell;
  font-size: 1px;
  min-width: 2px;
  vertical-align: bottom;
  width: 2px;
}
.katex .vbox {
  align-items: baseline;
  display: inline-flex;
  flex-direction: column;
}
.katex .hbox {
  width: 100%;
}
.katex .hbox,
.katex .thinbox {
  display: inline-flex;
  flex-direction: row;
}
.katex .thinbox {
  max-width: 0;
  width: 0;
}
.katex .msupsub {
  text-align: left;
}
.katex .mfrac > span > span {
  text-align: center;
}
.katex .mfrac .frac-line {
  border-bottom-style: solid;
  display: inline-block;
  width: 100%;
}
.katex .hdashline,
.katex .hline,
.katex .mfrac .frac-line,
.katex .overline .overline-line,
.katex .rule,
.katex .underline .underline-line {
  min-height: 1px;
}
.katex .mspace {
  display: inline-block;
}
.katex .clap,
.katex .llap,
.katex .rlap {
  position: relative;
  width: 0;
}
.katex .clap > .inner,
.katex .llap > .inner,
.katex .rlap > .inner {
  position: absolute;
}
.katex .clap > .fix,
.katex .llap > .fix,
.katex .rlap > .fix {
  display: inline-block;
}
.katex .llap > .inner {
  right: 0;
}
.katex .clap > .inner,
.katex .rlap > .inner {
  left: 0;
}
.katex .clap > .inner > span {
  margin-left: -50%;
  margin-right: 50%;
}
.katex .rule {
  border: 0 solid;
  display: inline-block;
  position: relative;
}
.katex .hline,
.katex .overline .overline-line,
.katex .underline .underline-line {
  border-bottom-style: solid;
  display: inline-block;
  width: 100%;
}
.katex .hdashline {
  border-bottom-style: dashed;
  display: inline-block;
  width: 100%;
}
.katex .sqrt > .root {
  margin-left: .2777777778em;
  margin-right: -.5555555556em;
}
.katex .fontsize-ensurer.reset-size1.size1,
.katex .sizing.reset-size1.size1 {
  font-size: 1em;
}
.katex .fontsize-ensurer.reset-size1.size2,
.katex .sizing.reset-size1.size2 {
  font-size: 1.2em;
}
.katex .fontsize-ensurer.reset-size1.size3,
.katex .sizing.reset-size1.size3 {
  font-size: 1.4em;
}
.katex .fontsize-ensurer.reset-size1.size4,
.katex .sizing.reset-size1.size4 {
  font-size: 1.6em;
}
.katex .fontsize-ensurer.reset-size1.size5,
.katex .sizing.reset-size1.size5 {
  font-size: 1.8em;
}
.katex .fontsize-ensurer.reset-size1.size6,
.katex .sizing.reset-size1.size6 {
  font-size: 2em;
}
.katex .fontsize-ensurer.reset-size1.size7,
.katex .sizing.reset-size1.size7 {
  font-size: 2.4em;
}
.katex .fontsize-ensurer.reset-size1.size8,
.katex .sizing.reset-size1.size8 {
  font-size: 2.88em;
}
.katex .fontsize-ensurer.reset-size1.size9,
.katex .sizing.reset-size1.size9 {
  font-size: 3.456em;
}
.katex .fontsize-ensurer.reset-size1.size10,
.katex .sizing.reset-size1.size10 {
  font-size: 4.148em;
}
.katex .fontsize-ensurer.reset-size1.size11,
.katex .sizing.reset-size1.size11 {
  font-size: 4.976em;
}
.katex .fontsize-ensurer.reset-size2.size1,
.katex .sizing.reset-size2.size1 {
  font-size: .8333333333em;
}
.katex .fontsize-ensurer.reset-size2.size2,
.katex .sizing.reset-size2.size2 {
  font-size: 1em;
}
.katex .fontsize-ensurer.reset-size2.size3,
.katex .sizing.reset-size2.size3 {
  font-size: 1.1666666667em;
}
.katex .fontsize-ensurer.reset-size2.size4,
.katex .sizing.reset-size2.size4 {
  font-size: 1.3333333333em;
}
.katex .fontsize-ensurer.reset-size2.size5,
.katex .sizing.reset-size2.size5 {
  font-size: 1.5em;
}
.katex .fontsize-ensurer.reset-size2.size6,
.katex .sizing.reset-size2.size6 {
  font-size: 1.6666666667em;
}
.katex .fontsize-ensurer.reset-size2.size7,
.katex .sizing.reset-size2.size7 {
  font-size: 2em;
}
.katex .fontsize-ensurer.reset-size2.size8,
.katex .sizing.reset-size2.size8 {
  font-size: 2.4em;
}
.katex .fontsize-ensurer.reset-size2.size9,
.katex .sizing.reset-size2.size9 {
  font-size: 2.88em;
}
.katex .fontsize-ensurer.reset-size2.size10,
.katex .sizing.reset-size2.size10 {
  font-size: 3.4566666667em;
}
.katex .fontsize-ensurer.reset-size2.size11,
.katex .sizing.reset-size2.size11 {
  font-size: 4.1466666667em;
}
.katex .fontsize-ensurer.reset-size3.size1,
.katex .sizing.reset-size3.size1 {
  font-size: .7142857143em;
}
.katex .fontsize-ensurer.reset-size3.size2,
.katex .sizing.reset-size3.size2 {
  font-size: .8571428571em;
}
.katex .fontsize-ensurer.reset-size3.size3,
.katex .sizing.reset-size3.size3 {
  font-size: 1em;
}
.katex .fontsize-ensurer.reset-size3.size4,
.katex .sizing.reset-size3.size4 {
  font-size: 1.1428571429em;
}
.katex .fontsize-ensurer.reset-size3.size5,
.katex .sizing.reset-size3.size5 {
  font-size: 1.2857142857em;
}
.katex .fontsize-ensurer.reset-size3.size6,
.katex .sizing.reset-size3.size6 {
  font-size: 1.4285714286em;
}
.katex .fontsize-ensurer.reset-size3.size7,
.katex .sizing.reset-size3.size7 {
  font-size: 1.7142857143em;
}
.katex .fontsize-ensurer.reset-size3.size8,
.katex .sizing.reset-size3.size8 {
  font-size: 2.0571428571em;
}
.katex .fontsize-ensurer.reset-size3.size9,
.katex .sizing.reset-size3.size9 {
  font-size: 2.4685714286em;
}
.katex .fontsize-ensurer.reset-size3.size10,
.katex .sizing.reset-size3.size10 {
  font-size: 2.9628571429em;
}
.katex .fontsize-ensurer.reset-size3.size11,
.katex .sizing.reset-size3.size11 {
  font-size: 3.5542857143em;
}
.katex .fontsize-ensurer.reset-size4.size1,
.katex .sizing.reset-size4.size1 {
  font-size: .625em;
}
.katex .fontsize-ensurer.reset-size4.size2,
.katex .sizing.reset-size4.size2 {
  font-size: .75em;
}
.katex .fontsize-ensurer.reset-size4.size3,
.katex .sizing.reset-size4.size3 {
  font-size: .875em;
}
.katex .fontsize-ensurer.reset-size4.size4,
.katex .sizing.reset-size4.size4 {
  font-size: 1em;
}
.katex .fontsize-ensurer.reset-size4.size5,
.katex .sizing.reset-size4.size5 {
  font-size: 1.125em;
}
.katex .fontsize-ensurer.reset-size4.size6,
.katex .sizing.reset-size4.size6 {
  font-size: 1.25em;
}
.katex .fontsize-ensurer.reset-size4.size7,
.katex .sizing.reset-size4.size7 {
  font-size: 1.5em;
}
.katex .fontsize-ensurer.reset-size4.size8,
.katex .sizing.reset-size4.size8 {
  font-size: 1.8em;
}
.katex .fontsize-ensurer.reset-size4.size9,
.katex .sizing.reset-size4.size9 {
  font-size: 2.16em;
}
.katex .fontsize-ensurer.reset-size4.size10,
.katex .sizing.reset-size4.size10 {
  font-size: 2.5925em;
}
.katex .fontsize-ensurer.reset-size4.size11,
.katex .sizing.reset-size4.size11 {
  font-size: 3.11em;
}
.katex .fontsize-ensurer.reset-size5.size1,
.katex .sizing.reset-size5.size1 {
  font-size: .5555555556em;
}
.katex .fontsize-ensurer.reset-size5.size2,
.katex .sizing.reset-size5.size2 {
  font-size: .6666666667em;
}
.katex .fontsize-ensurer.reset-size5.size3,
.katex .sizing.reset-size5.size3 {
  font-size: .7777777778em;
}
.katex .fontsize-ensurer.reset-size5.size4,
.katex .sizing.reset-size5.size4 {
  font-size: .8888888889em;
}
.katex .fontsize-ensurer.reset-size5.size5,
.katex .sizing.reset-size5.size5 {
  font-size: 1em;
}
.katex .fontsize-ensurer.reset-size5.size6,
.katex .sizing.reset-size5.size6 {
  font-size: 1.1111111111em;
}
.katex .fontsize-ensurer.reset-size5.size7,
.katex .sizing.reset-size5.size7 {
  font-size: 1.3333333333em;
}
.katex .fontsize-ensurer.reset-size5.size8,
.katex .sizing.reset-size5.size8 {
  font-size: 1.6em;
}
.katex .fontsize-ensurer.reset-size5.size9,
.katex .sizing.reset-size5.size9 {
  font-size: 1.92em;
}
.katex .fontsize-ensurer.reset-size5.size10,
.katex .sizing.reset-size5.size10 {
  font-size: 2.3044444444em;
}
.katex .fontsize-ensurer.reset-size5.size11,
.katex .sizing.reset-size5.size11 {
  font-size: 2.7644444444em;
}
.katex .fontsize-ensurer.reset-size6.size1,
.katex .sizing.reset-size6.size1 {
  font-size: .5em;
}
.katex .fontsize-ensurer.reset-size6.size2,
.katex .sizing.reset-size6.size2 {
  font-size: .6em;
}
.katex .fontsize-ensurer.reset-size6.size3,
.katex .sizing.reset-size6.size3 {
  font-size: .7em;
}
.katex .fontsize-ensurer.reset-size6.size4,
.katex .sizing.reset-size6.size4 {
  font-size: .8em;
}
.katex .fontsize-ensurer.reset-size6.size5,
.katex .sizing.reset-size6.size5 {
  font-size: .9em;
}
.katex .fontsize-ensurer.reset-size6.size6,
.katex .sizing.reset-size6.size6 {
  font-size: 1em;
}
.katex .fontsize-ensurer.reset-size6.size7,
.katex .sizing.reset-size6.size7 {
  font-size: 1.2em;
}
.katex .fontsize-ensurer.reset-size6.size8,
.katex .sizing.reset-size6.size8 {
  font-size: 1.44em;
}
.katex .fontsize-ensurer.reset-size6.size9,
.katex .sizing.reset-size6.size9 {
  font-size: 1.728em;
}
.katex .fontsize-ensurer.reset-size6.size10,
.katex .sizing.reset-size6.size10 {
  font-size: 2.074em;
}
.katex .fontsize-ensurer.reset-size6.size11,
.katex .sizing.reset-size6.size11 {
  font-size: 2.488em;
}
.katex .fontsize-ensurer.reset-size7.size1,
.katex .sizing.reset-size7.size1 {
  font-size: .4166666667em;
}
.katex .fontsize-ensurer.reset-size7.size2,
.katex .sizing.reset-size7.size2 {
  font-size: .5em;
}
.katex .fontsize-ensurer.reset-size7.size3,
.katex .sizing.reset-size7.size3 {
  font-size: .5833333333em;
}
.katex .fontsize-ensurer.reset-size7.size4,
.katex .sizing.reset-size7.size4 {
  font-size: .6666666667em;
}
.katex .fontsize-ensurer.reset-size7.size5,
.katex .sizing.reset-size7.size5 {
  font-size: .75em;
}
.katex .fontsize-ensurer.reset-size7.size6,
.katex .sizing.reset-size7.size6 {
  font-size: .8333333333em;
}
.katex .fontsize-ensurer.reset-size7.size7,
.katex .sizing.reset-size7.size7 {
  font-size: 1em;
}
.katex .fontsize-ensurer.reset-size7.size8,
.katex .sizing.reset-size7.size8 {
  font-size: 1.2em;
}
.katex .fontsize-ensurer.reset-size7.size9,
.katex .sizing.reset-size7.size9 {
  font-size: 1.44em;
}
.katex .fontsize-ensurer.reset-size7.size10,
.katex .sizing.reset-size7.size10 {
  font-size: 1.7283333333em;
}
.katex .fontsize-ensurer.reset-size7.size11,
.katex .sizing.reset-size7.size11 {
  font-size: 2.0733333333em;
}
.katex .fontsize-ensurer.reset-size8.size1,
.katex .sizing.reset-size8.size1 {
  font-size: .3472222222em;
}
.katex .fontsize-ensurer.reset-size8.size2,
.katex .sizing.reset-size8.size2 {
  font-size: .4166666667em;
}
.katex .fontsize-ensurer.reset-size8.size3,
.katex .sizing.reset-size8.size3 {
  font-size: .4861111111em;
}
.katex .fontsize-ensurer.reset-size8.size4,
.katex .sizing.reset-size8.size4 {
  font-size: .5555555556em;
}
.katex .fontsize-ensurer.reset-size8.size5,
.katex .sizing.reset-size8.size5 {
  font-size: .625em;
}
.katex .fontsize-ensurer.reset-size8.size6,
.katex .sizing.reset-size8.size6 {
  font-size: .6944444444em;
}
.katex .fontsize-ensurer.reset-size8.size7,
.katex .sizing.reset-size8.size7 {
  font-size: .8333333333em;
}
.katex .fontsize-ensurer.reset-size8.size8,
.katex .sizing.reset-size8.size8 {
  font-size: 1em;
}
.katex .fontsize-ensurer.reset-size8.size9,
.katex .sizing.reset-size8.size9 {
  font-size: 1.2em;
}
.katex .fontsize-ensurer.reset-size8.size10,
.katex .sizing.reset-size8.size10 {
  font-size: 1.4402777778em;
}
.katex .fontsize-ensurer.reset-size8.size11,
.katex .sizing.reset-size8.size11 {
  font-size: 1.7277777778em;
}
.katex .fontsize-ensurer.reset-size9.size1,
.katex .sizing.reset-size9.size1 {
  font-size: .2893518519em;
}
.katex .fontsize-ensurer.reset-size9.size2,
.katex .sizing.reset-size9.size2 {
  font-size: .3472222222em;
}
.katex .fontsize-ensurer.reset-size9.size3,
.katex .sizing.reset-size9.size3 {
  font-size: .4050925926em;
}
.katex .fontsize-ensurer.reset-size9.size4,
.katex .sizing.reset-size9.size4 {
  font-size: .462962963em;
}
.katex .fontsize-ensurer.reset-size9.size5,
.katex .sizing.reset-size9.size5 {
  font-size: .5208333333em;
}
.katex .fontsize-ensurer.reset-size9.size6,
.katex .sizing.reset-size9.size6 {
  font-size: .5787037037em;
}
.katex .fontsize-ensurer.reset-size9.size7,
.katex .sizing.reset-size9.size7 {
  font-size: .6944444444em;
}
.katex .fontsize-ensurer.reset-size9.size8,
.katex .sizing.reset-size9.size8 {
  font-size: .8333333333em;
}
.katex .fontsize-ensurer.reset-size9.size9,
.katex .sizing.reset-size9.size9 {
  font-size: 1em;
}
.katex .fontsize-ensurer.reset-size9.size10,
.katex .sizing.reset-size9.size10 {
  font-size: 1.2002314815em;
}
.katex .fontsize-ensurer.reset-size9.size11,
.katex .sizing.reset-size9.size11 {
  font-size: 1.4398148148em;
}
.katex .fontsize-ensurer.reset-size10.size1,
.katex .sizing.reset-size10.size1 {
  font-size: .2410800386em;
}
.katex .fontsize-ensurer.reset-size10.size2,
.katex .sizing.reset-size10.size2 {
  font-size: .2892960463em;
}
.katex .fontsize-ensurer.reset-size10.size3,
.katex .sizing.reset-size10.size3 {
  font-size: .337512054em;
}
.katex .fontsize-ensurer.reset-size10.size4,
.katex .sizing.reset-size10.size4 {
  font-size: .3857280617em;
}
.katex .fontsize-ensurer.reset-size10.size5,
.katex .sizing.reset-size10.size5 {
  font-size: .4339440694em;
}
.katex .fontsize-ensurer.reset-size10.size6,
.katex .sizing.reset-size10.size6 {
  font-size: .4821600771em;
}
.katex .fontsize-ensurer.reset-size10.size7,
.katex .sizing.reset-size10.size7 {
  font-size: .5785920926em;
}
.katex .fontsize-ensurer.reset-size10.size8,
.katex .sizing.reset-size10.size8 {
  font-size: .6943105111em;
}
.katex .fontsize-ensurer.reset-size10.size9,
.katex .sizing.reset-size10.size9 {
  font-size: .8331726133em;
}
.katex .fontsize-ensurer.reset-size10.size10,
.katex .sizing.reset-size10.size10 {
  font-size: 1em;
}
.katex .fontsize-ensurer.reset-size10.size11,
.katex .sizing.reset-size10.size11 {
  font-size: 1.1996142719em;
}
.katex .fontsize-ensurer.reset-size11.size1,
.katex .sizing.reset-size11.size1 {
  font-size: .2009646302em;
}
.katex .fontsize-ensurer.reset-size11.size2,
.katex .sizing.reset-size11.size2 {
  font-size: .2411575563em;
}
.katex .fontsize-ensurer.reset-size11.size3,
.katex .sizing.reset-size11.size3 {
  font-size: .2813504823em;
}
.katex .fontsize-ensurer.reset-size11.size4,
.katex .sizing.reset-size11.size4 {
  font-size: .3215434084em;
}
.katex .fontsize-ensurer.reset-size11.size5,
.katex .sizing.reset-size11.size5 {
  font-size: .3617363344em;
}
.katex .fontsize-ensurer.reset-size11.size6,
.katex .sizing.reset-size11.size6 {
  font-size: .4019292605em;
}
.katex .fontsize-ensurer.reset-size11.size7,
.katex .sizing.reset-size11.size7 {
  font-size: .4823151125em;
}
.katex .fontsize-ensurer.reset-size11.size8,
.katex .sizing.reset-size11.size8 {
  font-size: .578778135em;
}
.katex .fontsize-ensurer.reset-size11.size9,
.katex .sizing.reset-size11.size9 {
  font-size: .6945337621em;
}
.katex .fontsize-ensurer.reset-size11.size10,
.katex .sizing.reset-size11.size10 {
  font-size: .8336012862em;
}
.katex .fontsize-ensurer.reset-size11.size11,
.katex .sizing.reset-size11.size11 {
  font-size: 1em;
}
.katex .delimsizing.size1 {
  font-family: KaTeX_Size1;
}
.katex .delimsizing.size2 {
  font-family: KaTeX_Size2;
}
.katex .delimsizing.size3 {
  font-family: KaTeX_Size3;
}
.katex .delimsizing.size4 {
  font-family: KaTeX_Size4;
}
.katex .delimsizing.mult .delim-size1 > span {
  font-family: KaTeX_Size1;
}
.katex .delimsizing.mult .delim-size4 > span {
  font-family: KaTeX_Size4;
}
.katex .nulldelimiter {
  display: inline-block;
  width: .12em;
}
.katex .delimcenter,
.katex .op-symbol {
  position: relative;
}
.katex .op-symbol.small-op {
  font-family: KaTeX_Size1;
}
.katex .op-symbol.large-op {
  font-family: KaTeX_Size2;
}
.katex .accent > .vlist-t,
.katex .op-limits > .vlist-t {
  text-align: center;
}
.katex .accent .accent-body {
  position: relative;
}
.katex .accent .accent-body:not(.accent-full) {
  width: 0;
}
.katex .overlay {
  display: block;
}
.katex .mtable .vertical-separator {
  display: inline-block;
  min-width: 1px;
}
.katex .mtable .arraycolsep {
  display: inline-block;
}
.katex .mtable .col-align-c > .vlist-t {
  text-align: center;
}
.katex .mtable .col-align-l > .vlist-t {
  text-align: left;
}
.katex .mtable .col-align-r > .vlist-t {
  text-align: right;
}
.katex .svg-align {
  text-align: left;
}
.katex svg {
  fill: currentColor;
  stroke: currentColor;
  fill-rule: nonzero;
  fill-opacity: 1;
  stroke-width: 1;
  stroke-linecap: butt;
  stroke-linejoin: miter;
  stroke-miterlimit: 4;
  stroke-dasharray: none;
  stroke-dashoffset: 0;
  stroke-opacity: 1;
  display: block;
  height: inherit;
  position: absolute;
  width: 100%;
}
.katex svg path {
  stroke: none;
}
.katex img {
  border-style: none;
  max-height: none;
  max-width: none;
  min-height: 0;
  min-width: 0;
}
.katex .stretchy {
  display: block;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.katex .stretchy:after,
.katex .stretchy:before {
  content: "";
}
.katex .hide-tail {
  overflow: hidden;
  position: relative;
  width: 100%;
}
.katex .halfarrow-left {
  left: 0;
  overflow: hidden;
  position: absolute;
  width: 50.2%;
}
.katex .halfarrow-right {
  overflow: hidden;
  position: absolute;
  right: 0;
  width: 50.2%;
}
.katex .brace-left {
  left: 0;
  overflow: hidden;
  position: absolute;
  width: 25.1%;
}
.katex .brace-center {
  left: 25%;
  overflow: hidden;
  position: absolute;
  width: 50%;
}
.katex .brace-right {
  overflow: hidden;
  position: absolute;
  right: 0;
  width: 25.1%;
}
.katex .x-arrow-pad {
  padding: 0 .5em;
}
.katex .cd-arrow-pad {
  padding: 0 .55556em 0 .27778em;
}
.katex .mover,
.katex .munder,
.katex .x-arrow {
  text-align: center;
}
.katex .boxpad {
  padding: 0 .3em;
}
.katex .fbox,
.katex .fcolorbox {
  border: .04em solid;
  box-sizing: border-box;
}
.katex .cancel-pad {
  padding: 0 .2em;
}
.katex .cancel-lap {
  margin-left: -.2em;
  margin-right: -.2em;
}
.katex .sout {
  border-bottom-style: solid;
  border-bottom-width: .08em;
}
.katex .angl {
  border-right: .049em solid;
  border-top: .049em solid;
  box-sizing: border-box;
  margin-right: .03889em;
}
.katex .anglpad {
  padding: 0 .03889em;
}
.katex .eqn-num:before {
  content: "(" counter(katexEqnNo) ")";
  counter-increment: katexEqnNo;
}
.katex .mml-eqn-num:before {
  content: "(" counter(mmlEqnNo) ")";
  counter-increment: mmlEqnNo;
}
.katex .mtr-glue {
  width: 50%;
}
.katex .cd-vert-arrow {
  display: inline-block;
  position: relative;
}
.katex .cd-label-left {
  display: inline-block;
  position: absolute;
  right: calc(50% + .3em);
  text-align: left;
}
.katex .cd-label-right {
  display: inline-block;
  left: calc(50% + .3em);
  position: absolute;
  text-align: right;
}
.katex-display {
  display: block;
  margin: 1em 0;
  text-align: center;
}
.katex-display > .katex {
  display: block;
  text-align: center;
  white-space: nowrap;
}
.katex-display > .katex > .katex-html {
  display: block;
  position: relative;
}
.katex-display > .katex > .katex-html > .tag {
  position: absolute;
  right: 0;
}
.katex-display.leqno > .katex > .katex-html > .tag {
  left: 0;
  right: auto;
}
.katex-display.fleqn > .katex {
  padding-left: 2em;
  text-align: left;
}
body {
  counter-reset: katexEqnNo mmlEqnNo;
}

/* node_modules/quill/dist/quill.bubble.css */
/*!
 * Quill Editor v2.0.3
 * https://quilljs.com
 * Copyright (c) 2017-2024, Slab
 * Copyright (c) 2014, Jason Chen
 * Copyright (c) 2013, salesforce.com
 */
.ql-container {
  box-sizing: border-box;
  font-family:
    Helvetica,
    Arial,
    sans-serif;
  font-size: 13px;
  height: 100%;
  margin: 0;
  position: relative;
}
.ql-container.ql-disabled .ql-tooltip {
  visibility: hidden;
}
.ql-container:not(.ql-disabled) li[data-list=checked] > .ql-ui,
.ql-container:not(.ql-disabled) li[data-list=unchecked] > .ql-ui {
  cursor: pointer;
}
.ql-clipboard {
  left: -100000px;
  height: 1px;
  overflow-y: hidden;
  position: absolute;
  top: 50%;
}
.ql-clipboard p {
  margin: 0;
  padding: 0;
}
.ql-editor {
  box-sizing: border-box;
  counter-reset: list-0 list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  line-height: 1.42;
  height: 100%;
  outline: none;
  overflow-y: auto;
  padding: 12px 15px;
  tab-size: 4;
  -moz-tab-size: 4;
  text-align: left;
  white-space: pre-wrap;
  word-wrap: break-word;
}
.ql-editor > * {
  cursor: text;
}
.ql-editor p,
.ql-editor ol,
.ql-editor pre,
.ql-editor blockquote,
.ql-editor h1,
.ql-editor h2,
.ql-editor h3,
.ql-editor h4,
.ql-editor h5,
.ql-editor h6 {
  margin: 0;
  padding: 0;
}
@supports (counter-set:none) {
  .ql-editor p,
  .ql-editor h1,
  .ql-editor h2,
  .ql-editor h3,
  .ql-editor h4,
  .ql-editor h5,
  .ql-editor h6 {
    counter-set: list-0 list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
@supports not (counter-set:none) {
  .ql-editor p,
  .ql-editor h1,
  .ql-editor h2,
  .ql-editor h3,
  .ql-editor h4,
  .ql-editor h5,
  .ql-editor h6 {
    counter-reset: list-0 list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
.ql-editor table {
  border-collapse: collapse;
}
.ql-editor td {
  border: 1px solid #000;
  padding: 2px 5px;
}
.ql-editor ol {
  padding-left: 1.5em;
}
.ql-editor li {
  list-style-type: none;
  padding-left: 1.5em;
  position: relative;
}
.ql-editor li > .ql-ui:before {
  display: inline-block;
  margin-left: -1.5em;
  margin-right: .3em;
  text-align: right;
  white-space: nowrap;
  width: 1.2em;
}
.ql-editor li[data-list=checked] > .ql-ui,
.ql-editor li[data-list=unchecked] > .ql-ui {
  color: #777;
}
.ql-editor li[data-list=bullet] > .ql-ui:before {
  content: "\2022";
}
.ql-editor li[data-list=checked] > .ql-ui:before {
  content: "\2611";
}
.ql-editor li[data-list=unchecked] > .ql-ui:before {
  content: "\2610";
}
@supports (counter-set:none) {
  .ql-editor li[data-list] {
    counter-set: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
@supports not (counter-set:none) {
  .ql-editor li[data-list] {
    counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
.ql-editor li[data-list=ordered] {
  counter-increment: list-0;
}
.ql-editor li[data-list=ordered] > .ql-ui:before {
  content: counter(list-0, decimal) ". ";
}
.ql-editor li[data-list=ordered].ql-indent-1 {
  counter-increment: list-1;
}
.ql-editor li[data-list=ordered].ql-indent-1 > .ql-ui:before {
  content: counter(list-1, lower-alpha) ". ";
}
@supports (counter-set:none) {
  .ql-editor li[data-list].ql-indent-1 {
    counter-set: list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
@supports not (counter-set:none) {
  .ql-editor li[data-list].ql-indent-1 {
    counter-reset: list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
.ql-editor li[data-list=ordered].ql-indent-2 {
  counter-increment: list-2;
}
.ql-editor li[data-list=ordered].ql-indent-2 > .ql-ui:before {
  content: counter(list-2, lower-roman) ". ";
}
@supports (counter-set:none) {
  .ql-editor li[data-list].ql-indent-2 {
    counter-set: list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
@supports not (counter-set:none) {
  .ql-editor li[data-list].ql-indent-2 {
    counter-reset: list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
.ql-editor li[data-list=ordered].ql-indent-3 {
  counter-increment: list-3;
}
.ql-editor li[data-list=ordered].ql-indent-3 > .ql-ui:before {
  content: counter(list-3, decimal) ". ";
}
@supports (counter-set:none) {
  .ql-editor li[data-list].ql-indent-3 {
    counter-set: list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
@supports not (counter-set:none) {
  .ql-editor li[data-list].ql-indent-3 {
    counter-reset: list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
.ql-editor li[data-list=ordered].ql-indent-4 {
  counter-increment: list-4;
}
.ql-editor li[data-list=ordered].ql-indent-4 > .ql-ui:before {
  content: counter(list-4, lower-alpha) ". ";
}
@supports (counter-set:none) {
  .ql-editor li[data-list].ql-indent-4 {
    counter-set: list-5 list-6 list-7 list-8 list-9;
  }
}
@supports not (counter-set:none) {
  .ql-editor li[data-list].ql-indent-4 {
    counter-reset: list-5 list-6 list-7 list-8 list-9;
  }
}
.ql-editor li[data-list=ordered].ql-indent-5 {
  counter-increment: list-5;
}
.ql-editor li[data-list=ordered].ql-indent-5 > .ql-ui:before {
  content: counter(list-5, lower-roman) ". ";
}
@supports (counter-set:none) {
  .ql-editor li[data-list].ql-indent-5 {
    counter-set: list-6 list-7 list-8 list-9;
  }
}
@supports not (counter-set:none) {
  .ql-editor li[data-list].ql-indent-5 {
    counter-reset: list-6 list-7 list-8 list-9;
  }
}
.ql-editor li[data-list=ordered].ql-indent-6 {
  counter-increment: list-6;
}
.ql-editor li[data-list=ordered].ql-indent-6 > .ql-ui:before {
  content: counter(list-6, decimal) ". ";
}
@supports (counter-set:none) {
  .ql-editor li[data-list].ql-indent-6 {
    counter-set: list-7 list-8 list-9;
  }
}
@supports not (counter-set:none) {
  .ql-editor li[data-list].ql-indent-6 {
    counter-reset: list-7 list-8 list-9;
  }
}
.ql-editor li[data-list=ordered].ql-indent-7 {
  counter-increment: list-7;
}
.ql-editor li[data-list=ordered].ql-indent-7 > .ql-ui:before {
  content: counter(list-7, lower-alpha) ". ";
}
@supports (counter-set:none) {
  .ql-editor li[data-list].ql-indent-7 {
    counter-set: list-8 list-9;
  }
}
@supports not (counter-set:none) {
  .ql-editor li[data-list].ql-indent-7 {
    counter-reset: list-8 list-9;
  }
}
.ql-editor li[data-list=ordered].ql-indent-8 {
  counter-increment: list-8;
}
.ql-editor li[data-list=ordered].ql-indent-8 > .ql-ui:before {
  content: counter(list-8, lower-roman) ". ";
}
@supports (counter-set:none) {
  .ql-editor li[data-list].ql-indent-8 {
    counter-set: list-9;
  }
}
@supports not (counter-set:none) {
  .ql-editor li[data-list].ql-indent-8 {
    counter-reset: list-9;
  }
}
.ql-editor li[data-list=ordered].ql-indent-9 {
  counter-increment: list-9;
}
.ql-editor li[data-list=ordered].ql-indent-9 > .ql-ui:before {
  content: counter(list-9, decimal) ". ";
}
.ql-editor .ql-indent-1:not(.ql-direction-rtl) {
  padding-left: 3em;
}
.ql-editor li.ql-indent-1:not(.ql-direction-rtl) {
  padding-left: 4.5em;
}
.ql-editor .ql-indent-1.ql-direction-rtl.ql-align-right {
  padding-right: 3em;
}
.ql-editor li.ql-indent-1.ql-direction-rtl.ql-align-right {
  padding-right: 4.5em;
}
.ql-editor .ql-indent-2:not(.ql-direction-rtl) {
  padding-left: 6em;
}
.ql-editor li.ql-indent-2:not(.ql-direction-rtl) {
  padding-left: 7.5em;
}
.ql-editor .ql-indent-2.ql-direction-rtl.ql-align-right {
  padding-right: 6em;
}
.ql-editor li.ql-indent-2.ql-direction-rtl.ql-align-right {
  padding-right: 7.5em;
}
.ql-editor .ql-indent-3:not(.ql-direction-rtl) {
  padding-left: 9em;
}
.ql-editor li.ql-indent-3:not(.ql-direction-rtl) {
  padding-left: 10.5em;
}
.ql-editor .ql-indent-3.ql-direction-rtl.ql-align-right {
  padding-right: 9em;
}
.ql-editor li.ql-indent-3.ql-direction-rtl.ql-align-right {
  padding-right: 10.5em;
}
.ql-editor .ql-indent-4:not(.ql-direction-rtl) {
  padding-left: 12em;
}
.ql-editor li.ql-indent-4:not(.ql-direction-rtl) {
  padding-left: 13.5em;
}
.ql-editor .ql-indent-4.ql-direction-rtl.ql-align-right {
  padding-right: 12em;
}
.ql-editor li.ql-indent-4.ql-direction-rtl.ql-align-right {
  padding-right: 13.5em;
}
.ql-editor .ql-indent-5:not(.ql-direction-rtl) {
  padding-left: 15em;
}
.ql-editor li.ql-indent-5:not(.ql-direction-rtl) {
  padding-left: 16.5em;
}
.ql-editor .ql-indent-5.ql-direction-rtl.ql-align-right {
  padding-right: 15em;
}
.ql-editor li.ql-indent-5.ql-direction-rtl.ql-align-right {
  padding-right: 16.5em;
}
.ql-editor .ql-indent-6:not(.ql-direction-rtl) {
  padding-left: 18em;
}
.ql-editor li.ql-indent-6:not(.ql-direction-rtl) {
  padding-left: 19.5em;
}
.ql-editor .ql-indent-6.ql-direction-rtl.ql-align-right {
  padding-right: 18em;
}
.ql-editor li.ql-indent-6.ql-direction-rtl.ql-align-right {
  padding-right: 19.5em;
}
.ql-editor .ql-indent-7:not(.ql-direction-rtl) {
  padding-left: 21em;
}
.ql-editor li.ql-indent-7:not(.ql-direction-rtl) {
  padding-left: 22.5em;
}
.ql-editor .ql-indent-7.ql-direction-rtl.ql-align-right {
  padding-right: 21em;
}
.ql-editor li.ql-indent-7.ql-direction-rtl.ql-align-right {
  padding-right: 22.5em;
}
.ql-editor .ql-indent-8:not(.ql-direction-rtl) {
  padding-left: 24em;
}
.ql-editor li.ql-indent-8:not(.ql-direction-rtl) {
  padding-left: 25.5em;
}
.ql-editor .ql-indent-8.ql-direction-rtl.ql-align-right {
  padding-right: 24em;
}
.ql-editor li.ql-indent-8.ql-direction-rtl.ql-align-right {
  padding-right: 25.5em;
}
.ql-editor .ql-indent-9:not(.ql-direction-rtl) {
  padding-left: 27em;
}
.ql-editor li.ql-indent-9:not(.ql-direction-rtl) {
  padding-left: 28.5em;
}
.ql-editor .ql-indent-9.ql-direction-rtl.ql-align-right {
  padding-right: 27em;
}
.ql-editor li.ql-indent-9.ql-direction-rtl.ql-align-right {
  padding-right: 28.5em;
}
.ql-editor li.ql-direction-rtl {
  padding-right: 1.5em;
}
.ql-editor li.ql-direction-rtl > .ql-ui:before {
  margin-left: .3em;
  margin-right: -1.5em;
  text-align: left;
}
.ql-editor table {
  table-layout: fixed;
  width: 100%;
}
.ql-editor table td {
  outline: none;
}
.ql-editor .ql-code-block-container {
  font-family: monospace;
}
.ql-editor .ql-video {
  display: block;
  max-width: 100%;
}
.ql-editor .ql-video.ql-align-center {
  margin: 0 auto;
}
.ql-editor .ql-video.ql-align-right {
  margin: 0 0 0 auto;
}
.ql-editor .ql-bg-black {
  background-color: #000;
}
.ql-editor .ql-bg-red {
  background-color: #e60000;
}
.ql-editor .ql-bg-orange {
  background-color: #f90;
}
.ql-editor .ql-bg-yellow {
  background-color: #ff0;
}
.ql-editor .ql-bg-green {
  background-color: #008a00;
}
.ql-editor .ql-bg-blue {
  background-color: #06c;
}
.ql-editor .ql-bg-purple {
  background-color: #93f;
}
.ql-editor .ql-color-white {
  color: #fff;
}
.ql-editor .ql-color-red {
  color: #e60000;
}
.ql-editor .ql-color-orange {
  color: #f90;
}
.ql-editor .ql-color-yellow {
  color: #ff0;
}
.ql-editor .ql-color-green {
  color: #008a00;
}
.ql-editor .ql-color-blue {
  color: #06c;
}
.ql-editor .ql-color-purple {
  color: #93f;
}
.ql-editor .ql-font-serif {
  font-family:
    Georgia,
    Times New Roman,
    serif;
}
.ql-editor .ql-font-monospace {
  font-family:
    Monaco,
    Courier New,
    monospace;
}
.ql-editor .ql-size-small {
  font-size: .75em;
}
.ql-editor .ql-size-large {
  font-size: 1.5em;
}
.ql-editor .ql-size-huge {
  font-size: 2.5em;
}
.ql-editor .ql-direction-rtl {
  direction: rtl;
  text-align: inherit;
}
.ql-editor .ql-align-center {
  text-align: center;
}
.ql-editor .ql-align-justify {
  text-align: justify;
}
.ql-editor .ql-align-right {
  text-align: right;
}
.ql-editor .ql-ui {
  position: absolute;
}
.ql-editor.ql-blank::before {
  color: rgba(0, 0, 0, 0.6);
  content: attr(data-placeholder);
  font-style: italic;
  left: 15px;
  pointer-events: none;
  position: absolute;
  right: 15px;
}
.ql-bubble.ql-toolbar:after,
.ql-bubble .ql-toolbar:after {
  clear: both;
  content: "";
  display: table;
}
.ql-bubble.ql-toolbar button,
.ql-bubble .ql-toolbar button {
  background: none;
  border: none;
  cursor: pointer;
  display: inline-block;
  float: left;
  height: 24px;
  padding: 3px 5px;
  width: 28px;
}
.ql-bubble.ql-toolbar button svg,
.ql-bubble .ql-toolbar button svg {
  float: left;
  height: 100%;
}
.ql-bubble.ql-toolbar button:active:hover,
.ql-bubble .ql-toolbar button:active:hover {
  outline: none;
}
.ql-bubble.ql-toolbar input.ql-image[type=file],
.ql-bubble .ql-toolbar input.ql-image[type=file] {
  display: none;
}
.ql-bubble.ql-toolbar button:hover,
.ql-bubble .ql-toolbar button:hover,
.ql-bubble.ql-toolbar button:focus,
.ql-bubble .ql-toolbar button:focus,
.ql-bubble.ql-toolbar button.ql-active,
.ql-bubble .ql-toolbar button.ql-active,
.ql-bubble.ql-toolbar .ql-picker-label:hover,
.ql-bubble .ql-toolbar .ql-picker-label:hover,
.ql-bubble.ql-toolbar .ql-picker-label.ql-active,
.ql-bubble .ql-toolbar .ql-picker-label.ql-active,
.ql-bubble.ql-toolbar .ql-picker-item:hover,
.ql-bubble .ql-toolbar .ql-picker-item:hover,
.ql-bubble.ql-toolbar .ql-picker-item.ql-selected,
.ql-bubble .ql-toolbar .ql-picker-item.ql-selected {
  color: #fff;
}
.ql-bubble.ql-toolbar button:hover .ql-fill,
.ql-bubble .ql-toolbar button:hover .ql-fill,
.ql-bubble.ql-toolbar button:focus .ql-fill,
.ql-bubble .ql-toolbar button:focus .ql-fill,
.ql-bubble.ql-toolbar button.ql-active .ql-fill,
.ql-bubble .ql-toolbar button.ql-active .ql-fill,
.ql-bubble.ql-toolbar .ql-picker-label:hover .ql-fill,
.ql-bubble .ql-toolbar .ql-picker-label:hover .ql-fill,
.ql-bubble.ql-toolbar .ql-picker-label.ql-active .ql-fill,
.ql-bubble .ql-toolbar .ql-picker-label.ql-active .ql-fill,
.ql-bubble.ql-toolbar .ql-picker-item:hover .ql-fill,
.ql-bubble .ql-toolbar .ql-picker-item:hover .ql-fill,
.ql-bubble.ql-toolbar .ql-picker-item.ql-selected .ql-fill,
.ql-bubble .ql-toolbar .ql-picker-item.ql-selected .ql-fill,
.ql-bubble.ql-toolbar button:hover .ql-stroke.ql-fill,
.ql-bubble .ql-toolbar button:hover .ql-stroke.ql-fill,
.ql-bubble.ql-toolbar button:focus .ql-stroke.ql-fill,
.ql-bubble .ql-toolbar button:focus .ql-stroke.ql-fill,
.ql-bubble.ql-toolbar button.ql-active .ql-stroke.ql-fill,
.ql-bubble .ql-toolbar button.ql-active .ql-stroke.ql-fill,
.ql-bubble.ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill,
.ql-bubble .ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill,
.ql-bubble.ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill,
.ql-bubble .ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill,
.ql-bubble.ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill,
.ql-bubble .ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill,
.ql-bubble.ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill,
.ql-bubble .ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill {
  fill: #fff;
}
.ql-bubble.ql-toolbar button:hover .ql-stroke,
.ql-bubble .ql-toolbar button:hover .ql-stroke,
.ql-bubble.ql-toolbar button:focus .ql-stroke,
.ql-bubble .ql-toolbar button:focus .ql-stroke,
.ql-bubble.ql-toolbar button.ql-active .ql-stroke,
.ql-bubble .ql-toolbar button.ql-active .ql-stroke,
.ql-bubble.ql-toolbar .ql-picker-label:hover .ql-stroke,
.ql-bubble .ql-toolbar .ql-picker-label:hover .ql-stroke,
.ql-bubble.ql-toolbar .ql-picker-label.ql-active .ql-stroke,
.ql-bubble .ql-toolbar .ql-picker-label.ql-active .ql-stroke,
.ql-bubble.ql-toolbar .ql-picker-item:hover .ql-stroke,
.ql-bubble .ql-toolbar .ql-picker-item:hover .ql-stroke,
.ql-bubble.ql-toolbar .ql-picker-item.ql-selected .ql-stroke,
.ql-bubble .ql-toolbar .ql-picker-item.ql-selected .ql-stroke,
.ql-bubble.ql-toolbar button:hover .ql-stroke-miter,
.ql-bubble .ql-toolbar button:hover .ql-stroke-miter,
.ql-bubble.ql-toolbar button:focus .ql-stroke-miter,
.ql-bubble .ql-toolbar button:focus .ql-stroke-miter,
.ql-bubble.ql-toolbar button.ql-active .ql-stroke-miter,
.ql-bubble .ql-toolbar button.ql-active .ql-stroke-miter,
.ql-bubble.ql-toolbar .ql-picker-label:hover .ql-stroke-miter,
.ql-bubble .ql-toolbar .ql-picker-label:hover .ql-stroke-miter,
.ql-bubble.ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter,
.ql-bubble .ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter,
.ql-bubble.ql-toolbar .ql-picker-item:hover .ql-stroke-miter,
.ql-bubble .ql-toolbar .ql-picker-item:hover .ql-stroke-miter,
.ql-bubble.ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter,
.ql-bubble .ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter {
  stroke: #fff;
}
@media (pointer:coarse) {
  .ql-bubble.ql-toolbar button:hover:not(.ql-active),
  .ql-bubble .ql-toolbar button:hover:not(.ql-active) {
    color: #ccc;
  }
  .ql-bubble.ql-toolbar button:hover:not(.ql-active) .ql-fill,
  .ql-bubble .ql-toolbar button:hover:not(.ql-active) .ql-fill,
  .ql-bubble.ql-toolbar button:hover:not(.ql-active) .ql-stroke.ql-fill,
  .ql-bubble .ql-toolbar button:hover:not(.ql-active) .ql-stroke.ql-fill {
    fill: #ccc;
  }
  .ql-bubble.ql-toolbar button:hover:not(.ql-active) .ql-stroke,
  .ql-bubble .ql-toolbar button:hover:not(.ql-active) .ql-stroke,
  .ql-bubble.ql-toolbar button:hover:not(.ql-active) .ql-stroke-miter,
  .ql-bubble .ql-toolbar button:hover:not(.ql-active) .ql-stroke-miter {
    stroke: #ccc;
  }
}
.ql-bubble {
  box-sizing: border-box;
}
.ql-bubble * {
  box-sizing: border-box;
}
.ql-bubble .ql-hidden {
  display: none;
}
.ql-bubble .ql-out-bottom,
.ql-bubble .ql-out-top {
  visibility: hidden;
}
.ql-bubble .ql-tooltip {
  position: absolute;
  transform: translateY(10px);
}
.ql-bubble .ql-tooltip a {
  cursor: pointer;
  text-decoration: none;
}
.ql-bubble .ql-tooltip.ql-flip {
  transform: translateY(-10px);
}
.ql-bubble .ql-formats {
  display: inline-block;
  vertical-align: middle;
}
.ql-bubble .ql-formats:after {
  clear: both;
  content: "";
  display: table;
}
.ql-bubble .ql-stroke {
  fill: none;
  stroke: #ccc;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}
.ql-bubble .ql-stroke-miter {
  fill: none;
  stroke: #ccc;
  stroke-miterlimit: 10;
  stroke-width: 2;
}
.ql-bubble .ql-fill,
.ql-bubble .ql-stroke.ql-fill {
  fill: #ccc;
}
.ql-bubble .ql-empty {
  fill: none;
}
.ql-bubble .ql-even {
  fill-rule: evenodd;
}
.ql-bubble .ql-thin,
.ql-bubble .ql-stroke.ql-thin {
  stroke-width: 1;
}
.ql-bubble .ql-transparent {
  opacity: .4;
}
.ql-bubble .ql-direction svg:last-child {
  display: none;
}
.ql-bubble .ql-direction.ql-active svg:last-child {
  display: inline;
}
.ql-bubble .ql-direction.ql-active svg:first-child {
  display: none;
}
.ql-bubble .ql-editor h1 {
  font-size: 2em;
}
.ql-bubble .ql-editor h2 {
  font-size: 1.5em;
}
.ql-bubble .ql-editor h3 {
  font-size: 1.17em;
}
.ql-bubble .ql-editor h4 {
  font-size: 1em;
}
.ql-bubble .ql-editor h5 {
  font-size: .83em;
}
.ql-bubble .ql-editor h6 {
  font-size: .67em;
}
.ql-bubble .ql-editor a {
  text-decoration: underline;
}
.ql-bubble .ql-editor blockquote {
  border-left: 4px solid #ccc;
  margin-bottom: 5px;
  margin-top: 5px;
  padding-left: 16px;
}
.ql-bubble .ql-editor code,
.ql-bubble .ql-editor .ql-code-block-container {
  background-color: #f0f0f0;
  border-radius: 3px;
}
.ql-bubble .ql-editor .ql-code-block-container {
  margin-bottom: 5px;
  margin-top: 5px;
  padding: 5px 10px;
}
.ql-bubble .ql-editor code {
  font-size: 85%;
  padding: 2px 4px;
}
.ql-bubble .ql-editor .ql-code-block-container {
  background-color: #23241f;
  color: #f8f8f2;
  overflow: visible;
}
.ql-bubble .ql-editor img {
  max-width: 100%;
}
.ql-bubble .ql-picker {
  color: #ccc;
  display: inline-block;
  float: left;
  font-size: 14px;
  font-weight: 500;
  height: 24px;
  position: relative;
  vertical-align: middle;
}
.ql-bubble .ql-picker-label {
  cursor: pointer;
  display: inline-block;
  height: 100%;
  padding-left: 8px;
  padding-right: 2px;
  position: relative;
  width: 100%;
}
.ql-bubble .ql-picker-label::before {
  display: inline-block;
  line-height: 22px;
}
.ql-bubble .ql-picker-options {
  background-color: #444;
  display: none;
  min-width: 100%;
  padding: 4px 8px;
  position: absolute;
  white-space: nowrap;
}
.ql-bubble .ql-picker-options .ql-picker-item {
  cursor: pointer;
  display: block;
  padding-bottom: 5px;
  padding-top: 5px;
}
.ql-bubble .ql-picker.ql-expanded .ql-picker-label {
  color: #777;
  z-index: 2;
}
.ql-bubble .ql-picker.ql-expanded .ql-picker-label .ql-fill {
  fill: #777;
}
.ql-bubble .ql-picker.ql-expanded .ql-picker-label .ql-stroke {
  stroke: #777;
}
.ql-bubble .ql-picker.ql-expanded .ql-picker-options {
  display: block;
  margin-top: -1px;
  top: 100%;
  z-index: 1;
}
.ql-bubble .ql-color-picker,
.ql-bubble .ql-icon-picker {
  width: 28px;
}
.ql-bubble .ql-color-picker .ql-picker-label,
.ql-bubble .ql-icon-picker .ql-picker-label {
  padding: 2px 4px;
}
.ql-bubble .ql-color-picker .ql-picker-label svg,
.ql-bubble .ql-icon-picker .ql-picker-label svg {
  right: 4px;
}
.ql-bubble .ql-icon-picker .ql-picker-options {
  padding: 4px 0;
}
.ql-bubble .ql-icon-picker .ql-picker-item {
  height: 24px;
  width: 24px;
  padding: 2px 4px;
}
.ql-bubble .ql-color-picker .ql-picker-options {
  padding: 3px 5px;
  width: 152px;
}
.ql-bubble .ql-color-picker .ql-picker-item {
  border: 1px solid transparent;
  float: left;
  height: 16px;
  margin: 2px;
  padding: 0;
  width: 16px;
}
.ql-bubble .ql-picker:not(.ql-color-picker):not(.ql-icon-picker) svg {
  position: absolute;
  margin-top: -9px;
  right: 0;
  top: 50%;
  width: 18px;
}
.ql-bubble .ql-picker.ql-header .ql-picker-label[data-label]:not([data-label=""])::before,
.ql-bubble .ql-picker.ql-font .ql-picker-label[data-label]:not([data-label=""])::before,
.ql-bubble .ql-picker.ql-size .ql-picker-label[data-label]:not([data-label=""])::before,
.ql-bubble .ql-picker.ql-header .ql-picker-item[data-label]:not([data-label=""])::before,
.ql-bubble .ql-picker.ql-font .ql-picker-item[data-label]:not([data-label=""])::before,
.ql-bubble .ql-picker.ql-size .ql-picker-item[data-label]:not([data-label=""])::before {
  content: attr(data-label);
}
.ql-bubble .ql-picker.ql-header {
  width: 98px;
}
.ql-bubble .ql-picker.ql-header .ql-picker-label::before,
.ql-bubble .ql-picker.ql-header .ql-picker-item::before {
  content: "Normal";
}
.ql-bubble .ql-picker.ql-header .ql-picker-label[data-value="1"]::before,
.ql-bubble .ql-picker.ql-header .ql-picker-item[data-value="1"]::before {
  content: "Heading 1";
}
.ql-bubble .ql-picker.ql-header .ql-picker-label[data-value="2"]::before,
.ql-bubble .ql-picker.ql-header .ql-picker-item[data-value="2"]::before {
  content: "Heading 2";
}
.ql-bubble .ql-picker.ql-header .ql-picker-label[data-value="3"]::before,
.ql-bubble .ql-picker.ql-header .ql-picker-item[data-value="3"]::before {
  content: "Heading 3";
}
.ql-bubble .ql-picker.ql-header .ql-picker-label[data-value="4"]::before,
.ql-bubble .ql-picker.ql-header .ql-picker-item[data-value="4"]::before {
  content: "Heading 4";
}
.ql-bubble .ql-picker.ql-header .ql-picker-label[data-value="5"]::before,
.ql-bubble .ql-picker.ql-header .ql-picker-item[data-value="5"]::before {
  content: "Heading 5";
}
.ql-bubble .ql-picker.ql-header .ql-picker-label[data-value="6"]::before,
.ql-bubble .ql-picker.ql-header .ql-picker-item[data-value="6"]::before {
  content: "Heading 6";
}
.ql-bubble .ql-picker.ql-header .ql-picker-item[data-value="1"]::before {
  font-size: 2em;
}
.ql-bubble .ql-picker.ql-header .ql-picker-item[data-value="2"]::before {
  font-size: 1.5em;
}
.ql-bubble .ql-picker.ql-header .ql-picker-item[data-value="3"]::before {
  font-size: 1.17em;
}
.ql-bubble .ql-picker.ql-header .ql-picker-item[data-value="4"]::before {
  font-size: 1em;
}
.ql-bubble .ql-picker.ql-header .ql-picker-item[data-value="5"]::before {
  font-size: .83em;
}
.ql-bubble .ql-picker.ql-header .ql-picker-item[data-value="6"]::before {
  font-size: .67em;
}
.ql-bubble .ql-picker.ql-font {
  width: 108px;
}
.ql-bubble .ql-picker.ql-font .ql-picker-label::before,
.ql-bubble .ql-picker.ql-font .ql-picker-item::before {
  content: "Sans Serif";
}
.ql-bubble .ql-picker.ql-font .ql-picker-label[data-value=serif]::before,
.ql-bubble .ql-picker.ql-font .ql-picker-item[data-value=serif]::before {
  content: "Serif";
}
.ql-bubble .ql-picker.ql-font .ql-picker-label[data-value=monospace]::before,
.ql-bubble .ql-picker.ql-font .ql-picker-item[data-value=monospace]::before {
  content: "Monospace";
}
.ql-bubble .ql-picker.ql-font .ql-picker-item[data-value=serif]::before {
  font-family:
    Georgia,
    Times New Roman,
    serif;
}
.ql-bubble .ql-picker.ql-font .ql-picker-item[data-value=monospace]::before {
  font-family:
    Monaco,
    Courier New,
    monospace;
}
.ql-bubble .ql-picker.ql-size {
  width: 98px;
}
.ql-bubble .ql-picker.ql-size .ql-picker-label::before,
.ql-bubble .ql-picker.ql-size .ql-picker-item::before {
  content: "Normal";
}
.ql-bubble .ql-picker.ql-size .ql-picker-label[data-value=small]::before,
.ql-bubble .ql-picker.ql-size .ql-picker-item[data-value=small]::before {
  content: "Small";
}
.ql-bubble .ql-picker.ql-size .ql-picker-label[data-value=large]::before,
.ql-bubble .ql-picker.ql-size .ql-picker-item[data-value=large]::before {
  content: "Large";
}
.ql-bubble .ql-picker.ql-size .ql-picker-label[data-value=huge]::before,
.ql-bubble .ql-picker.ql-size .ql-picker-item[data-value=huge]::before {
  content: "Huge";
}
.ql-bubble .ql-picker.ql-size .ql-picker-item[data-value=small]::before {
  font-size: 10px;
}
.ql-bubble .ql-picker.ql-size .ql-picker-item[data-value=large]::before {
  font-size: 18px;
}
.ql-bubble .ql-picker.ql-size .ql-picker-item[data-value=huge]::before {
  font-size: 32px;
}
.ql-bubble .ql-color-picker.ql-background .ql-picker-item {
  background-color: #fff;
}
.ql-bubble .ql-color-picker.ql-color .ql-picker-item {
  background-color: #000;
}
.ql-code-block-container {
  position: relative;
}
.ql-code-block-container .ql-ui {
  right: 5px;
  top: 5px;
}
.ql-bubble .ql-toolbar .ql-formats {
  margin: 8px 12px 8px 0;
}
.ql-bubble .ql-toolbar .ql-formats:first-child {
  margin-left: 12px;
}
.ql-bubble .ql-color-picker svg {
  margin: 1px;
}
.ql-bubble .ql-color-picker .ql-picker-item.ql-selected,
.ql-bubble .ql-color-picker .ql-picker-item:hover {
  border-color: #fff;
}
.ql-bubble .ql-tooltip {
  background-color: #444;
  border-radius: 25px;
  color: #fff;
}
.ql-bubble .ql-tooltip-arrow {
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  content: " ";
  display: block;
  left: 50%;
  margin-left: -6px;
  position: absolute;
}
.ql-bubble .ql-tooltip:not(.ql-flip) .ql-tooltip-arrow {
  border-bottom: 6px solid #444;
  top: -6px;
}
.ql-bubble .ql-tooltip.ql-flip .ql-tooltip-arrow {
  border-top: 6px solid #444;
  bottom: -6px;
}
.ql-bubble .ql-tooltip.ql-editing .ql-tooltip-editor {
  display: block;
}
.ql-bubble .ql-tooltip.ql-editing .ql-formats {
  visibility: hidden;
}
.ql-bubble .ql-tooltip-editor {
  display: none;
}
.ql-bubble .ql-tooltip-editor input[type=text] {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 13px;
  height: 100%;
  outline: none;
  padding: 10px 20px;
  position: absolute;
  width: 100%;
}
.ql-bubble .ql-tooltip-editor a {
  top: 10px;
  position: absolute;
  right: 20px;
}
.ql-bubble .ql-tooltip-editor a:before {
  color: #ccc;
  content: "\d7";
  font-size: 16px;
  font-weight: bold;
}
.ql-container.ql-bubble:not(.ql-disabled) a:not(.ql-close) {
  position: relative;
  white-space: nowrap;
}
.ql-container.ql-bubble:not(.ql-disabled) a:not(.ql-close)::before {
  background-color: #444;
  border-radius: 15px;
  top: -5px;
  font-size: 12px;
  color: #fff;
  content: attr(href);
  font-weight: normal;
  overflow: hidden;
  padding: 5px 15px;
  text-decoration: none;
  z-index: 1;
}
.ql-container.ql-bubble:not(.ql-disabled) a:not(.ql-close)::after {
  border-top: 6px solid #444;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  top: 0;
  content: " ";
  height: 0;
  width: 0;
}
.ql-container.ql-bubble:not(.ql-disabled) a:not(.ql-close)::before,
.ql-container.ql-bubble:not(.ql-disabled) a:not(.ql-close)::after {
  left: 0;
  margin-left: 50%;
  position: absolute;
  transform: translate(-50%, -100%);
  transition: visibility 0s ease 200ms;
  visibility: hidden;
}
.ql-container.ql-bubble:not(.ql-disabled) a:not(.ql-close):hover::before,
.ql-container.ql-bubble:not(.ql-disabled) a:not(.ql-close):hover::after {
  visibility: visible;
}

/* node_modules/quill/dist/quill.core.css */
/*!
 * Quill Editor v2.0.3
 * https://quilljs.com
 * Copyright (c) 2017-2024, Slab
 * Copyright (c) 2014, Jason Chen
 * Copyright (c) 2013, salesforce.com
 */
.ql-container {
  box-sizing: border-box;
  font-family:
    Helvetica,
    Arial,
    sans-serif;
  font-size: 13px;
  height: 100%;
  margin: 0;
  position: relative;
}
.ql-container.ql-disabled .ql-tooltip {
  visibility: hidden;
}
.ql-container:not(.ql-disabled) li[data-list=checked] > .ql-ui,
.ql-container:not(.ql-disabled) li[data-list=unchecked] > .ql-ui {
  cursor: pointer;
}
.ql-clipboard {
  left: -100000px;
  height: 1px;
  overflow-y: hidden;
  position: absolute;
  top: 50%;
}
.ql-clipboard p {
  margin: 0;
  padding: 0;
}
.ql-editor {
  box-sizing: border-box;
  counter-reset: list-0 list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  line-height: 1.42;
  height: 100%;
  outline: none;
  overflow-y: auto;
  padding: 12px 15px;
  tab-size: 4;
  -moz-tab-size: 4;
  text-align: left;
  white-space: pre-wrap;
  word-wrap: break-word;
}
.ql-editor > * {
  cursor: text;
}
.ql-editor p,
.ql-editor ol,
.ql-editor pre,
.ql-editor blockquote,
.ql-editor h1,
.ql-editor h2,
.ql-editor h3,
.ql-editor h4,
.ql-editor h5,
.ql-editor h6 {
  margin: 0;
  padding: 0;
}
@supports (counter-set:none) {
  .ql-editor p,
  .ql-editor h1,
  .ql-editor h2,
  .ql-editor h3,
  .ql-editor h4,
  .ql-editor h5,
  .ql-editor h6 {
    counter-set: list-0 list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
@supports not (counter-set:none) {
  .ql-editor p,
  .ql-editor h1,
  .ql-editor h2,
  .ql-editor h3,
  .ql-editor h4,
  .ql-editor h5,
  .ql-editor h6 {
    counter-reset: list-0 list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
.ql-editor table {
  border-collapse: collapse;
}
.ql-editor td {
  border: 1px solid #000;
  padding: 2px 5px;
}
.ql-editor ol {
  padding-left: 1.5em;
}
.ql-editor li {
  list-style-type: none;
  padding-left: 1.5em;
  position: relative;
}
.ql-editor li > .ql-ui:before {
  display: inline-block;
  margin-left: -1.5em;
  margin-right: .3em;
  text-align: right;
  white-space: nowrap;
  width: 1.2em;
}
.ql-editor li[data-list=checked] > .ql-ui,
.ql-editor li[data-list=unchecked] > .ql-ui {
  color: #777;
}
.ql-editor li[data-list=bullet] > .ql-ui:before {
  content: "\2022";
}
.ql-editor li[data-list=checked] > .ql-ui:before {
  content: "\2611";
}
.ql-editor li[data-list=unchecked] > .ql-ui:before {
  content: "\2610";
}
@supports (counter-set:none) {
  .ql-editor li[data-list] {
    counter-set: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
@supports not (counter-set:none) {
  .ql-editor li[data-list] {
    counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
.ql-editor li[data-list=ordered] {
  counter-increment: list-0;
}
.ql-editor li[data-list=ordered] > .ql-ui:before {
  content: counter(list-0, decimal) ". ";
}
.ql-editor li[data-list=ordered].ql-indent-1 {
  counter-increment: list-1;
}
.ql-editor li[data-list=ordered].ql-indent-1 > .ql-ui:before {
  content: counter(list-1, lower-alpha) ". ";
}
@supports (counter-set:none) {
  .ql-editor li[data-list].ql-indent-1 {
    counter-set: list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
@supports not (counter-set:none) {
  .ql-editor li[data-list].ql-indent-1 {
    counter-reset: list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
.ql-editor li[data-list=ordered].ql-indent-2 {
  counter-increment: list-2;
}
.ql-editor li[data-list=ordered].ql-indent-2 > .ql-ui:before {
  content: counter(list-2, lower-roman) ". ";
}
@supports (counter-set:none) {
  .ql-editor li[data-list].ql-indent-2 {
    counter-set: list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
@supports not (counter-set:none) {
  .ql-editor li[data-list].ql-indent-2 {
    counter-reset: list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
.ql-editor li[data-list=ordered].ql-indent-3 {
  counter-increment: list-3;
}
.ql-editor li[data-list=ordered].ql-indent-3 > .ql-ui:before {
  content: counter(list-3, decimal) ". ";
}
@supports (counter-set:none) {
  .ql-editor li[data-list].ql-indent-3 {
    counter-set: list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
@supports not (counter-set:none) {
  .ql-editor li[data-list].ql-indent-3 {
    counter-reset: list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
.ql-editor li[data-list=ordered].ql-indent-4 {
  counter-increment: list-4;
}
.ql-editor li[data-list=ordered].ql-indent-4 > .ql-ui:before {
  content: counter(list-4, lower-alpha) ". ";
}
@supports (counter-set:none) {
  .ql-editor li[data-list].ql-indent-4 {
    counter-set: list-5 list-6 list-7 list-8 list-9;
  }
}
@supports not (counter-set:none) {
  .ql-editor li[data-list].ql-indent-4 {
    counter-reset: list-5 list-6 list-7 list-8 list-9;
  }
}
.ql-editor li[data-list=ordered].ql-indent-5 {
  counter-increment: list-5;
}
.ql-editor li[data-list=ordered].ql-indent-5 > .ql-ui:before {
  content: counter(list-5, lower-roman) ". ";
}
@supports (counter-set:none) {
  .ql-editor li[data-list].ql-indent-5 {
    counter-set: list-6 list-7 list-8 list-9;
  }
}
@supports not (counter-set:none) {
  .ql-editor li[data-list].ql-indent-5 {
    counter-reset: list-6 list-7 list-8 list-9;
  }
}
.ql-editor li[data-list=ordered].ql-indent-6 {
  counter-increment: list-6;
}
.ql-editor li[data-list=ordered].ql-indent-6 > .ql-ui:before {
  content: counter(list-6, decimal) ". ";
}
@supports (counter-set:none) {
  .ql-editor li[data-list].ql-indent-6 {
    counter-set: list-7 list-8 list-9;
  }
}
@supports not (counter-set:none) {
  .ql-editor li[data-list].ql-indent-6 {
    counter-reset: list-7 list-8 list-9;
  }
}
.ql-editor li[data-list=ordered].ql-indent-7 {
  counter-increment: list-7;
}
.ql-editor li[data-list=ordered].ql-indent-7 > .ql-ui:before {
  content: counter(list-7, lower-alpha) ". ";
}
@supports (counter-set:none) {
  .ql-editor li[data-list].ql-indent-7 {
    counter-set: list-8 list-9;
  }
}
@supports not (counter-set:none) {
  .ql-editor li[data-list].ql-indent-7 {
    counter-reset: list-8 list-9;
  }
}
.ql-editor li[data-list=ordered].ql-indent-8 {
  counter-increment: list-8;
}
.ql-editor li[data-list=ordered].ql-indent-8 > .ql-ui:before {
  content: counter(list-8, lower-roman) ". ";
}
@supports (counter-set:none) {
  .ql-editor li[data-list].ql-indent-8 {
    counter-set: list-9;
  }
}
@supports not (counter-set:none) {
  .ql-editor li[data-list].ql-indent-8 {
    counter-reset: list-9;
  }
}
.ql-editor li[data-list=ordered].ql-indent-9 {
  counter-increment: list-9;
}
.ql-editor li[data-list=ordered].ql-indent-9 > .ql-ui:before {
  content: counter(list-9, decimal) ". ";
}
.ql-editor .ql-indent-1:not(.ql-direction-rtl) {
  padding-left: 3em;
}
.ql-editor li.ql-indent-1:not(.ql-direction-rtl) {
  padding-left: 4.5em;
}
.ql-editor .ql-indent-1.ql-direction-rtl.ql-align-right {
  padding-right: 3em;
}
.ql-editor li.ql-indent-1.ql-direction-rtl.ql-align-right {
  padding-right: 4.5em;
}
.ql-editor .ql-indent-2:not(.ql-direction-rtl) {
  padding-left: 6em;
}
.ql-editor li.ql-indent-2:not(.ql-direction-rtl) {
  padding-left: 7.5em;
}
.ql-editor .ql-indent-2.ql-direction-rtl.ql-align-right {
  padding-right: 6em;
}
.ql-editor li.ql-indent-2.ql-direction-rtl.ql-align-right {
  padding-right: 7.5em;
}
.ql-editor .ql-indent-3:not(.ql-direction-rtl) {
  padding-left: 9em;
}
.ql-editor li.ql-indent-3:not(.ql-direction-rtl) {
  padding-left: 10.5em;
}
.ql-editor .ql-indent-3.ql-direction-rtl.ql-align-right {
  padding-right: 9em;
}
.ql-editor li.ql-indent-3.ql-direction-rtl.ql-align-right {
  padding-right: 10.5em;
}
.ql-editor .ql-indent-4:not(.ql-direction-rtl) {
  padding-left: 12em;
}
.ql-editor li.ql-indent-4:not(.ql-direction-rtl) {
  padding-left: 13.5em;
}
.ql-editor .ql-indent-4.ql-direction-rtl.ql-align-right {
  padding-right: 12em;
}
.ql-editor li.ql-indent-4.ql-direction-rtl.ql-align-right {
  padding-right: 13.5em;
}
.ql-editor .ql-indent-5:not(.ql-direction-rtl) {
  padding-left: 15em;
}
.ql-editor li.ql-indent-5:not(.ql-direction-rtl) {
  padding-left: 16.5em;
}
.ql-editor .ql-indent-5.ql-direction-rtl.ql-align-right {
  padding-right: 15em;
}
.ql-editor li.ql-indent-5.ql-direction-rtl.ql-align-right {
  padding-right: 16.5em;
}
.ql-editor .ql-indent-6:not(.ql-direction-rtl) {
  padding-left: 18em;
}
.ql-editor li.ql-indent-6:not(.ql-direction-rtl) {
  padding-left: 19.5em;
}
.ql-editor .ql-indent-6.ql-direction-rtl.ql-align-right {
  padding-right: 18em;
}
.ql-editor li.ql-indent-6.ql-direction-rtl.ql-align-right {
  padding-right: 19.5em;
}
.ql-editor .ql-indent-7:not(.ql-direction-rtl) {
  padding-left: 21em;
}
.ql-editor li.ql-indent-7:not(.ql-direction-rtl) {
  padding-left: 22.5em;
}
.ql-editor .ql-indent-7.ql-direction-rtl.ql-align-right {
  padding-right: 21em;
}
.ql-editor li.ql-indent-7.ql-direction-rtl.ql-align-right {
  padding-right: 22.5em;
}
.ql-editor .ql-indent-8:not(.ql-direction-rtl) {
  padding-left: 24em;
}
.ql-editor li.ql-indent-8:not(.ql-direction-rtl) {
  padding-left: 25.5em;
}
.ql-editor .ql-indent-8.ql-direction-rtl.ql-align-right {
  padding-right: 24em;
}
.ql-editor li.ql-indent-8.ql-direction-rtl.ql-align-right {
  padding-right: 25.5em;
}
.ql-editor .ql-indent-9:not(.ql-direction-rtl) {
  padding-left: 27em;
}
.ql-editor li.ql-indent-9:not(.ql-direction-rtl) {
  padding-left: 28.5em;
}
.ql-editor .ql-indent-9.ql-direction-rtl.ql-align-right {
  padding-right: 27em;
}
.ql-editor li.ql-indent-9.ql-direction-rtl.ql-align-right {
  padding-right: 28.5em;
}
.ql-editor li.ql-direction-rtl {
  padding-right: 1.5em;
}
.ql-editor li.ql-direction-rtl > .ql-ui:before {
  margin-left: .3em;
  margin-right: -1.5em;
  text-align: left;
}
.ql-editor table {
  table-layout: fixed;
  width: 100%;
}
.ql-editor table td {
  outline: none;
}
.ql-editor .ql-code-block-container {
  font-family: monospace;
}
.ql-editor .ql-video {
  display: block;
  max-width: 100%;
}
.ql-editor .ql-video.ql-align-center {
  margin: 0 auto;
}
.ql-editor .ql-video.ql-align-right {
  margin: 0 0 0 auto;
}
.ql-editor .ql-bg-black {
  background-color: #000;
}
.ql-editor .ql-bg-red {
  background-color: #e60000;
}
.ql-editor .ql-bg-orange {
  background-color: #f90;
}
.ql-editor .ql-bg-yellow {
  background-color: #ff0;
}
.ql-editor .ql-bg-green {
  background-color: #008a00;
}
.ql-editor .ql-bg-blue {
  background-color: #06c;
}
.ql-editor .ql-bg-purple {
  background-color: #93f;
}
.ql-editor .ql-color-white {
  color: #fff;
}
.ql-editor .ql-color-red {
  color: #e60000;
}
.ql-editor .ql-color-orange {
  color: #f90;
}
.ql-editor .ql-color-yellow {
  color: #ff0;
}
.ql-editor .ql-color-green {
  color: #008a00;
}
.ql-editor .ql-color-blue {
  color: #06c;
}
.ql-editor .ql-color-purple {
  color: #93f;
}
.ql-editor .ql-font-serif {
  font-family:
    Georgia,
    Times New Roman,
    serif;
}
.ql-editor .ql-font-monospace {
  font-family:
    Monaco,
    Courier New,
    monospace;
}
.ql-editor .ql-size-small {
  font-size: .75em;
}
.ql-editor .ql-size-large {
  font-size: 1.5em;
}
.ql-editor .ql-size-huge {
  font-size: 2.5em;
}
.ql-editor .ql-direction-rtl {
  direction: rtl;
  text-align: inherit;
}
.ql-editor .ql-align-center {
  text-align: center;
}
.ql-editor .ql-align-justify {
  text-align: justify;
}
.ql-editor .ql-align-right {
  text-align: right;
}
.ql-editor .ql-ui {
  position: absolute;
}
.ql-editor.ql-blank::before {
  color: rgba(0, 0, 0, 0.6);
  content: attr(data-placeholder);
  font-style: italic;
  left: 15px;
  pointer-events: none;
  position: absolute;
  right: 15px;
}

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