/*!******************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/@angular-devkit/build-angular/node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[6].rules[0].oneOf[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[6].rules[0].oneOf[0].use[2]!./src/assets/styles/animate.css ***!
  \******************************************************************************************************************************************************************************************************************************************************************/
@charset "UTF-8"; /*!
 * animate.css - https://animate.style/
 * Version - 4.1.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2020 Animate.css
 */
:root {
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1;
}
.animate__animated {
  animation-duration: 1s;
  animation-duration: var(--animate-duration);
  animation-fill-mode: both;
}
.animate__animated.animate__infinite {
  animation-iteration-count: infinite;
}
.animate__animated.animate__repeat-1 {
  animation-iteration-count: 1;
  animation-iteration-count: var(--animate-repeat);
}
.animate__animated.animate__repeat-2 {
  animation-iteration-count: 2;
  animation-iteration-count: calc(var(--animate-repeat) * 2);
}
.animate__animated.animate__repeat-3 {
  animation-iteration-count: 3;
  animation-iteration-count: calc(var(--animate-repeat) * 3);
}
.animate__animated.animate__delay-1s {
  animation-delay: 1s;
  animation-delay: var(--animate-delay);
}
.animate__animated.animate__delay-2s {
  animation-delay: 2s;
  animation-delay: calc(var(--animate-delay) * 2);
}
.animate__animated.animate__delay-3s {
  animation-delay: 3s;
  animation-delay: calc(var(--animate-delay) * 3);
}
.animate__animated.animate__delay-4s {
  animation-delay: 4s;
  animation-delay: calc(var(--animate-delay) * 4);
}
.animate__animated.animate__delay-5s {
  animation-delay: 5s;
  animation-delay: calc(var(--animate-delay) * 5);
}
.animate__animated.animate__faster {
  animation-duration: 0.5s;
  animation-duration: calc(var(--animate-duration) / 2);
}
.animate__animated.animate__fast {
  animation-duration: 0.8s;
  animation-duration: calc(var(--animate-duration) * 0.8);
}
.animate__animated.animate__slow {
  animation-duration: 2s;
  animation-duration: calc(var(--animate-duration) * 2);
}
.animate__animated.animate__slower {
  animation-duration: 3s;
  animation-duration: calc(var(--animate-duration) * 3);
}
@media (prefers-reduced-motion: reduce), print {
  .animate__animated {
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }
  .animate__animated[class*="Out"] {
    opacity: 0;
  }
}
@keyframes bounce {
  0%,
  20%,
  53%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translateZ(0);
  }
  40%,
  43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }
  80% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translateZ(0) scaleY(0.95);
  }
  90% {
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
.animate__bounce {
  animation-name: bounce;
  transform-origin: center bottom;
}
@keyframes flash {
  0%,
  50%,
  to {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
.animate__flash {
  animation-name: flash;
}
@keyframes pulse {
  0% {
    transform: scaleX(1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scaleX(1);
  }
}
.animate__pulse {
  animation-name: pulse;
  animation-timing-function: ease-in-out;
}
@keyframes rubberBand {
  0% {
    transform: scaleX(1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    transform: scaleX(1);
  }
}
.animate__rubberBand {
  animation-name: rubberBand;
}
@keyframes shakeX {
  0%,
  to {
    transform: translateZ(0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%,
  40%,
  60%,
  80% {
    transform: translate3d(10px, 0, 0);
  }
}
.animate__shakeX {
  animation-name: shakeX;
}
@keyframes shakeY {
  0%,
  to {
    transform: translateZ(0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translate3d(0, -10px, 0);
  }
  20%,
  40%,
  60%,
  80% {
    transform: translate3d(0, 10px, 0);
  }
}
.animate__shakeY {
  animation-name: shakeY;
}
@keyframes headShake {
  0% {
    transform: translateX(0);
  }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    transform: translateX(0);
  }
}
.animate__headShake {
  animation-timing-function: ease-in-out;
  animation-name: headShake;
}
@keyframes swing {
  20% {
    transform: rotate(15deg);
  }
  40% {
    transform: rotate(-10deg);
  }
  60% {
    transform: rotate(5deg);
  }
  80% {
    transform: rotate(-5deg);
  }
  to {
    transform: rotate(0deg);
  }
}
.animate__swing {
  transform-origin: top center;
  animation-name: swing;
}
@keyframes tada {
  0% {
    transform: scaleX(1);
  }
  10%,
  20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
  }
  30%,
  50%,
  70%,
  90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
  }
  40%,
  60%,
  80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
  }
  to {
    transform: scaleX(1);
  }
}
.animate__tada {
  animation-name: tada;
}
@keyframes wobble {
  0% {
    transform: translateZ(0);
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate(-5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate(3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate(-3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate(2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate(-1deg);
  }
  to {
    transform: translateZ(0);
  }
}
.animate__wobble {
  animation-name: wobble;
}
@keyframes jello {
  0%,
  11.1%,
  to {
    transform: translateZ(0);
  }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.animate__jello {
  animation-name: jello;
  transform-origin: center;
}
@keyframes heartBeat {
  0% {
    transform: scale(1);
  }
  14% {
    transform: scale(1.3);
  }
  28% {
    transform: scale(1);
  }
  42% {
    transform: scale(1.3);
  }
  70% {
    transform: scale(1);
  }
}
.animate__heartBeat {
  animation-name: heartBeat;
  animation-duration: 1.3s;
  animation-duration: calc(var(--animate-duration) * 1.3);
  animation-timing-function: ease-in-out;
}
@keyframes backInDown {
  0% {
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInDown {
  animation-name: backInDown;
}
@keyframes backInLeft {
  0% {
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInLeft {
  animation-name: backInLeft;
}
@keyframes backInRight {
  0% {
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInRight {
  animation-name: backInRight;
}
@keyframes backInUp {
  0% {
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInUp {
  animation-name: backInUp;
}
@keyframes backOutDown {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  20% {
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutDown {
  animation-name: backOutDown;
}
@keyframes backOutLeft {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  20% {
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutLeft {
  animation-name: backOutLeft;
}
@keyframes backOutRight {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  20% {
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutRight {
  animation-name: backOutRight;
}
@keyframes backOutUp {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  20% {
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutUp {
  animation-name: backOutUp;
}
@keyframes bounceIn {
  0%,
  20%,
  40%,
  60%,
  80%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}
.animate__bounceIn {
  animation-duration: 0.75s;
  animation-duration: calc(var(--animate-duration) * 0.75);
  animation-name: bounceIn;
}
@keyframes bounceInDown {
  0%,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }
  75% {
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }
  90% {
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }
  to {
    transform: translateZ(0);
  }
}
.animate__bounceInDown {
  animation-name: bounceInDown;
}
@keyframes bounceInLeft {
  0%,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0) scaleX(1);
  }
  75% {
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }
  90% {
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }
  to {
    transform: translateZ(0);
  }
}
.animate__bounceInLeft {
  animation-name: bounceInLeft;
}
@keyframes bounceInRight {
  0%,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }
  75% {
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }
  90% {
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }
  to {
    transform: translateZ(0);
  }
}
.animate__bounceInRight {
  animation-name: bounceInRight;
}
@keyframes bounceInUp {
  0%,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  75% {
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }
  90% {
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }
  to {
    transform: translateZ(0);
  }
}
.animate__bounceInUp {
  animation-name: bounceInUp;
}
@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%,
  55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.animate__bounceOut {
  animation-duration: 0.75s;
  animation-duration: calc(var(--animate-duration) * 0.75);
  animation-name: bounceOut;
}
@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }
  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
.animate__bounceOutDown {
  animation-name: bounceOutDown;
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutLeft {
  animation-name: bounceOutLeft;
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutRight {
  animation-name: bounceOutRight;
}
@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }
  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
.animate__bounceOutUp {
  animation-name: bounceOutUp;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.animate__fadeIn {
  animation-name: fadeIn;
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInDown {
  animation-name: fadeInDown;
}
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInDownBig {
  animation-name: fadeInDownBig;
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInLeft {
  animation-name: fadeInLeft;
}
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInLeftBig {
  animation-name: fadeInLeftBig;
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInRight {
  animation-name: fadeInRight;
}
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInRightBig {
  animation-name: fadeInRightBig;
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInUp {
  animation-name: fadeInUp;
}
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInUpBig {
  animation-name: fadeInUpBig;
}
@keyframes fadeInTopLeft {
  0% {
    opacity: 0;
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInTopLeft {
  animation-name: fadeInTopLeft;
}
@keyframes fadeInTopRight {
  0% {
    opacity: 0;
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInTopRight {
  animation-name: fadeInTopRight;
}
@keyframes fadeInBottomLeft {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInBottomLeft {
  animation-name: fadeInBottomLeft;
}
@keyframes fadeInBottomRight {
  0% {
    opacity: 0;
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInBottomRight {
  animation-name: fadeInBottomRight;
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.animate__fadeOut {
  animation-name: fadeOut;
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}
.animate__fadeOutDown {
  animation-name: fadeOutDown;
}
@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.animate__fadeOutDownBig {
  animation-name: fadeOutDownBig;
}
@keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}
.animate__fadeOutLeft {
  animation-name: fadeOutLeft;
}
@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.animate__fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}
@keyframes fadeOutRight {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}
.animate__fadeOutRight {
  animation-name: fadeOutRight;
}
@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.animate__fadeOutRightBig {
  animation-name: fadeOutRightBig;
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
.animate__fadeOutUp {
  animation-name: fadeOutUp;
}
@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.animate__fadeOutUpBig {
  animation-name: fadeOutUpBig;
}
@keyframes fadeOutTopLeft {
  0% {
    opacity: 1;
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, -100%, 0);
  }
}
.animate__fadeOutTopLeft {
  animation-name: fadeOutTopLeft;
}
@keyframes fadeOutTopRight {
  0% {
    opacity: 1;
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    transform: translate3d(100%, -100%, 0);
  }
}
.animate__fadeOutTopRight {
  animation-name: fadeOutTopRight;
}
@keyframes fadeOutBottomRight {
  0% {
    opacity: 1;
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 100%, 0);
  }
}
.animate__fadeOutBottomRight {
  animation-name: fadeOutBottomRight;
}
@keyframes fadeOutBottomLeft {
  0% {
    opacity: 1;
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 100%, 0);
  }
}
.animate__fadeOutBottomLeft {
  animation-name: fadeOutBottomLeft;
}
@keyframes flip {
  0% {
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0)
      rotateY(0deg);
    animation-timing-function: ease-in;
  }
  to {
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
    animation-timing-function: ease-in;
  }
}
.animate__animated.animate__flip {
  backface-visibility: visible;
  animation-name: flip;
}
@keyframes flipInX {
  0% {
    transform: perspective(400px) rotateX(90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotateX(-20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotateX(10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotateX(-5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.animate__flipInX {
  backface-visibility: visible !important;
  animation-name: flipInX;
}
@keyframes flipInY {
  0% {
    transform: perspective(400px) rotateY(90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotateY(-20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotateY(10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotateY(-5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.animate__flipInY {
  backface-visibility: visible !important;
  animation-name: flipInY;
}
@keyframes flipOutX {
  0% {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotateX(-20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
.animate__flipOutX {
  animation-duration: 0.75s;
  animation-duration: calc(var(--animate-duration) * 0.75);
  animation-name: flipOutX;
  backface-visibility: visible !important;
}
@keyframes flipOutY {
  0% {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotateY(-15deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
.animate__flipOutY {
  animation-duration: 0.75s;
  animation-duration: calc(var(--animate-duration) * 0.75);
  backface-visibility: visible !important;
  animation-name: flipOutY;
}
@keyframes lightSpeedInRight {
  0% {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-5deg);
  }
  to {
    transform: translateZ(0);
  }
}
.animate__lightSpeedInRight {
  animation-name: lightSpeedInRight;
  animation-timing-function: ease-out;
}
@keyframes lightSpeedInLeft {
  0% {
    transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(-20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(5deg);
  }
  to {
    transform: translateZ(0);
  }
}
.animate__lightSpeedInLeft {
  animation-name: lightSpeedInLeft;
  animation-timing-function: ease-out;
}
@keyframes lightSpeedOutRight {
  0% {
    opacity: 1;
  }
  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.animate__lightSpeedOutRight {
  animation-name: lightSpeedOutRight;
  animation-timing-function: ease-in;
}
@keyframes lightSpeedOutLeft {
  0% {
    opacity: 1;
  }
  to {
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
}
.animate__lightSpeedOutLeft {
  animation-name: lightSpeedOutLeft;
  animation-timing-function: ease-in;
}
@keyframes rotateIn {
  0% {
    transform: rotate(-200deg);
    opacity: 0;
  }
  to {
    transform: translateZ(0);
    opacity: 1;
  }
}
.animate__rotateIn {
  animation-name: rotateIn;
  transform-origin: center;
}
@keyframes rotateInDownLeft {
  0% {
    transform: rotate(-45deg);
    opacity: 0;
  }
  to {
    transform: translateZ(0);
    opacity: 1;
  }
}
.animate__rotateInDownLeft {
  animation-name: rotateInDownLeft;
  transform-origin: left bottom;
}
@keyframes rotateInDownRight {
  0% {
    transform: rotate(45deg);
    opacity: 0;
  }
  to {
    transform: translateZ(0);
    opacity: 1;
  }
}
.animate__rotateInDownRight {
  animation-name: rotateInDownRight;
  transform-origin: right bottom;
}
@keyframes rotateInUpLeft {
  0% {
    transform: rotate(45deg);
    opacity: 0;
  }
  to {
    transform: translateZ(0);
    opacity: 1;
  }
}
.animate__rotateInUpLeft {
  animation-name: rotateInUpLeft;
  transform-origin: left bottom;
}
@keyframes rotateInUpRight {
  0% {
    transform: rotate(-90deg);
    opacity: 0;
  }
  to {
    transform: translateZ(0);
    opacity: 1;
  }
}
.animate__rotateInUpRight {
  animation-name: rotateInUpRight;
  transform-origin: right bottom;
}
@keyframes rotateOut {
  0% {
    opacity: 1;
  }
  to {
    transform: rotate(200deg);
    opacity: 0;
  }
}
.animate__rotateOut {
  animation-name: rotateOut;
  transform-origin: center;
}
@keyframes rotateOutDownLeft {
  0% {
    opacity: 1;
  }
  to {
    transform: rotate(45deg);
    opacity: 0;
  }
}
.animate__rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
  transform-origin: left bottom;
}
@keyframes rotateOutDownRight {
  0% {
    opacity: 1;
  }
  to {
    transform: rotate(-45deg);
    opacity: 0;
  }
}
.animate__rotateOutDownRight {
  animation-name: rotateOutDownRight;
  transform-origin: right bottom;
}
@keyframes rotateOutUpLeft {
  0% {
    opacity: 1;
  }
  to {
    transform: rotate(-45deg);
    opacity: 0;
  }
}
.animate__rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
  transform-origin: left bottom;
}
@keyframes rotateOutUpRight {
  0% {
    opacity: 1;
  }
  to {
    transform: rotate(90deg);
    opacity: 0;
  }
}
.animate__rotateOutUpRight {
  animation-name: rotateOutUpRight;
  transform-origin: right bottom;
}
@keyframes hinge {
  0% {
    animation-timing-function: ease-in-out;
  }
  20%,
  60% {
    transform: rotate(80deg);
    animation-timing-function: ease-in-out;
  }
  40%,
  80% {
    transform: rotate(60deg);
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.animate__hinge {
  animation-duration: 2s;
  animation-duration: calc(var(--animate-duration) * 2);
  animation-name: hinge;
  transform-origin: top left;
}
@keyframes jackInTheBox {
  0% {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom;
  }
  50% {
    transform: rotate(-10deg);
  }
  70% {
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.animate__jackInTheBox {
  animation-name: jackInTheBox;
}
@keyframes rollIn {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate(-120deg);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__rollIn {
  animation-name: rollIn;
}
@keyframes rollOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate(120deg);
  }
}
.animate__rollOut {
  animation-name: rollOut;
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.animate__zoomIn {
  animation-name: zoomIn;
}
@keyframes zoomInDown {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInDown {
  animation-name: zoomInDown;
}
@keyframes zoomInLeft {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInLeft {
  animation-name: zoomInLeft;
}
@keyframes zoomInRight {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInRight {
  animation-name: zoomInRight;
}
@keyframes zoomInUp {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInUp {
  animation-name: zoomInUp;
}
@keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.animate__zoomOut {
  animation-name: zoomOut;
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutDown {
  animation-name: zoomOutDown;
  transform-origin: center bottom;
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
  }
}
.animate__zoomOutLeft {
  animation-name: zoomOutLeft;
  transform-origin: left center;
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
  }
}
.animate__zoomOutRight {
  animation-name: zoomOutRight;
  transform-origin: right center;
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutUp {
  animation-name: zoomOutUp;
  transform-origin: center bottom;
}
@keyframes slideInDown {
  0% {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
.animate__slideInDown {
  animation-name: slideInDown;
}
@keyframes slideInLeft {
  0% {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
.animate__slideInLeft {
  animation-name: slideInLeft;
}
@keyframes slideInRight {
  0% {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
.animate__slideInRight {
  animation-name: slideInRight;
}
@keyframes slideInUp {
  0% {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
.animate__slideInUp {
  animation-name: slideInUp;
}
@keyframes slideOutDown {
  0% {
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}
.animate__slideOutDown {
  animation-name: slideOutDown;
}
@keyframes slideOutLeft {
  0% {
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}
.animate__slideOutLeft {
  animation-name: slideOutLeft;
}
@keyframes slideOutRight {
  0% {
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}
.animate__slideOutRight {
  animation-name: slideOutRight;
}
@keyframes slideOutUp {
  0% {
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}
.animate__slideOutUp {
  animation-name: slideOutUp;
}

/*!******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/@angular-devkit/build-angular/node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[6].rules[0].oneOf[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[6].rules[0].oneOf[0].use[2]!./node_modules/resolve-url-loader/index.js??ruleSet[1].rules[6].rules[1].use[0]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[6].rules[1].use[1]!./src/styles.scss?ngGlobalStyle ***!
  \******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
@charset "UTF-8";
@keyframes fade-in-login-dark-background {
  from {
    background-color: #1c1231;
  }
  to {
    background-color: #7143c9;
  }
}
body.dark-theme, body {
  --primary-color: #df655e;
  --primary-color-disabled: #924844;
  --color-accent: #f48fb1;
  --color-warn: #ff9800;
  --color-middle: #3d3e42;
  --secondary-color: #977473;
  --secondary-color-disabled: #5f4c4b;
  --spinner-background-color: rgba(61, 62, 67, 0.2470588235);
  --toolbar-text-color: rgba(255, 255, 255, 0.74);
  --toolbar-background-color: #202125;
  --toolbar-link-color: #90969a !important;
  --toolbar-link-hover-color: #fff !important;
  --toolbar-link-active-color: #fff !important;
  --toolbar-title-color: rgba(255, 255, 255, 0.74);
  --item-border-color: rgba(255, 255, 255, 0.74);
  --item-text-color: rgba(255, 255, 255, 0.74);
  --item-text-hover-color: #fff !important;
  --item-background-hover-color: #121212;
  --item-text-selected-color: #fff !important;
  --item-background-selected-color: #121212;
  --tab-bar-text-color: rgba(255, 255, 255, 0.74);
  --tab-bar-background-color: #202125;
  --tab-bar-selected-color: #bb6d69;
  --tree-selected-bg: #a18583;
  --tab-bar-active-text-color: #fff !important;
  --surface-app: #202125;
  --surface-panel: #3d3e42;
  --surface-input: #d9d9d9;
  --surface-input-readonly: #3d3e42;
  --surface-gallery-item: #000;
  --surface-gallery-item-selected: #202125;
  --surface-gallery-body: #3d3e42;
  --surface-form-data: #e8e8e8;
  --surface-form-bg: #686868;
  --surface-list-item: #d9d9d9;
  --surface-list-item-selected: #3d3e42;
  --surface-list-bg: #e8e8e8;
  --surface-select-search: #3d3e42;
  --option-hover-bg: #4a4b50;
  --option-selected-bg: #474850;
  --surface-depth: #202125;
  --surface-light: #d9d9d9;
  --surface-contrasted: #000;
  --text-primary: rgba(255, 255, 255, 0.87);
  --text-secondary: rgba(255, 255, 255, 0.74);
  --text-disabled: rgba(255, 255, 255, 0.38);
  --text-on-input: rgba(0, 0, 0, 0.87);
  --text-on-input-readonly: rgba(255, 255, 255, 0.87);
  --hc-text: rgb(255 255 255 / 1);
  --hc-text-highlight: rgb(255 255 255 / .87);
  --hc-text-secondary: rgb(255 255 255 / .74);
  --hc-text-accent: rgb(255 255 255 / .65);
  --hc-text-muted: rgb(255 255 255 / .50);
  --hc-text-disabled: rgb(255 255 255 / .38);
  --mat-tab-active-bg: #3d3e42;
  --mat-tab-ink-bar: var(--tab-bar-selected-color);
  --mat-checkbox-label-color: white;
  --mat-checkbox-frame-color: white;
  --mat-dialog-bg: #3d3e42;
  --mat-dialog-text: rgba(255, 255, 255, 0.87);
  --mat-dialog-input-bg: transparent;
  --mat-dialog-autofill-text: rgba(255, 255, 255, 0.38);
  --common-arrow-color: #d9d9d9;
  --common-arrow-bg: #686868;
  --common-arrow-border: #d9d9d9;
  --common-report-text: rgba(255, 255, 255, 0.74);
  --common-report-field-bg: #3d3e42;
  --common-select-panel-text: rgba(255, 255, 255, 0.87);
  --common-select-panel-muted: rgba(255, 255, 255, 0.74);
  --common-select-search-text: #f7f7f7;
  --common-border-gray: #3d3e42;
  --common-select-yellow-bg: #c5c566;
  --common-question-warn: #df655e;
  --btn-primary-text: rgba(255, 255, 255, 0.87);
  --btn-secondary-text: rgba(255, 255, 255, 0.87);
  --scrollbar-thumb: #d9d9d9;
  --scrollbar-thumb-hover: #e8e8e8;
  --scrollbar-track: #202125;
  --login-bg: #7143c9;
  --login-font-title-color: rgba(255, 255, 255, 0.87);
  --login-hr-color: rgba(255, 255, 255, 0.87);
  --login-logo: url('kayrox.f6029123548d0c9d.png');
  --border-divider: #3d3e42;
  --slider-reports-toggle-text: rgba(255, 255, 255, 0.87);
  --skin-footer-text: #f7f7f7;
  --skin-footer-bg: #202125;
  --skin-footer-bg-public: #22283d;
  --skin-group-bg: #202125;
  --skin-group-text: rgba(255, 255, 255, 0.74);
  --skin-filter-border: rgba(255, 255, 255, 0.74);
  --skin-filter-hover-bg: #202125;
  --skin-filter-selected-bg: #0f0f12;
  --skin-filter-selected-text: rgba(255, 255, 255, 0.87);
  --object-tree-selected-text: rgba(255, 255, 255, 0.87);
  --skin-tree-header-bg: #000;
  --skin-admin-bg: #202125;
  --skin-not-found-bg: #0f0f12;
  --skin-not-found-card-bg: #3d3e42;
  --skin-picker-border: #686868;
  --skin-picker-hover: rgba(255, 255, 255, 0.08);
  --skin-editbar-text: rgba(255, 255, 255, 0.74);
  --skin-editbar-toggle-text: rgba(255, 255, 255, 0.87);
}
body.dark-theme tiwp-edit-augmented-manual .desktop__work-area-left-panel, body tiwp-edit-augmented-manual .desktop__work-area-left-panel, body.dark-theme tiwp-edit-gaussianSplatting .desktop__work-area-left-panel, body tiwp-edit-gaussianSplatting .desktop__work-area-left-panel, body.dark-theme tiwp-edit-exp360 .desktop__work-area-left-panel, body tiwp-edit-exp360 .desktop__work-area-left-panel, body.dark-theme tiwp-edit-virtual-classroom .desktop__work-area-left-panel, body tiwp-edit-virtual-classroom .desktop__work-area-left-panel {
  margin-top: 0 !important;
}
body.dark-theme .login-background, body .login-background {
  animation: fade-in-login-dark-background 2s forwards;
}

@keyframes fade-in-login-light-background {
  from {
    background-color: #3d3e42;
  }
  to {
    background-color: #e8e8e8;
  }
}
body.light-theme {
  --primary-color: #e47afe;
  --primary-color-disabled: #b879c7;
  --color-accent: #7143c9;
  --color-warn: #ff9800;
  --color-middle: #e8e8e8;
  --secondary-color: #6a3e75;
  --secondary-color-disabled: #9d7ca5;
  --spinner-background-color: rgba(61, 62, 67, 0.2470588235);
  --toolbar-text-color: rgba(255, 255, 255, 0.87);
  --toolbar-background-color: #3d3e42;
  --toolbar-link-hover-color: #fff !important;
  --toolbar-link-active-color: #fff !important;
  --toolbar-title-color: rgba(255, 255, 255, 0.74);
  --item-border-color: rgba(255, 255, 255, 0.74);
  --item-text-color: rgba(0, 0, 0, 0.87);
  --item-text-hover-color: #000 !important;
  --item-background-hover-color: #fafafa;
  --item-text-selected-color: #000 !important;
  --item-background-selected-color: #fafafa;
  --tab-bar-text-color: rgba(0, 0, 0, 0.87);
  --tab-bar-background-color: #AdAeB2;
  --tab-bar-selected-color: #6a3e75;
  --tree-selected-bg: #5d5360;
  --tab-bar-active-text-color: #000 !important;
  --surface-app: #f7f7f7;
  --surface-panel: #e8e8e8;
  --surface-input: #e8e8e8;
  --surface-input-readonly: #3d3e42;
  --surface-gallery-item: #ffffff;
  --surface-gallery-item-selected: #d9d9d9;
  --surface-gallery-body: #e8e8e8;
  --surface-form-data: #ffffff;
  --surface-form-bg: #f7f7f7;
  --surface-list-item: #f7f7f7;
  --surface-list-item-selected: #AdAeB2;
  --surface-list-bg: #ffffff;
  --surface-select-search: #e8e8e8;
  --option-hover-bg: #dedede;
  --option-selected-bg: #e0e0e0;
  --surface-depth: #AdAeB2;
  --surface-light: #e8e8e8;
  --surface-contrasted: #fff;
  --text-primary: rgba(0, 0, 0, 0.87);
  --text-secondary: rgba(0, 0, 0, 0.74);
  --text-disabled: rgba(0, 0, 0, 0.38);
  --text-on-input: rgba(0, 0, 0, 0.87);
  --text-on-input-readonly: #d9d9d9;
  --hc-text: rgb(0 0 0 / 1);
  --hc-text-highlight: rgb(0 0 0 / .87);
  --hc-text-secondary: rgb(0 0 0 / .74);
  --hc-text-accent: rgb(0 0 0 / .65);
  --hc-text-muted: rgb(0 0 0 / .50);
  --hc-text-disabled: rgb(0 0 0 / .38);
  --mat-tab-active-bg: #e8e8e8;
  --mat-tab-ink-bar: var(--tab-bar-selected-color);
  --mat-checkbox-label-color: black;
  --mat-checkbox-frame-color: black;
  --mat-dialog-bg: #d9d9d9;
  --mat-dialog-text: rgba(0, 0, 0, 0.87);
  --mat-dialog-input-bg: transparent;
  --mat-dialog-autofill-text: rgba(0, 0, 0, 0.87);
  --common-arrow-color: #f7f7f7;
  --common-arrow-bg: #AdAeB2;
  --common-arrow-border: #AdAeB2;
  --common-report-text: rgba(0, 0, 0, 0.87);
  --common-report-field-bg: #d9d9d9;
  --common-select-panel-text: rgba(0, 0, 0, 0.87);
  --common-select-panel-muted: rgba(0, 0, 0, 0.74);
  --common-select-search-text: rgba(0, 0, 0, 0.87);
  --common-border-gray: #3d3e42;
  --common-select-yellow-bg: #c5c566;
  --common-question-warn: #df655e;
  --btn-primary-text: rgba(255, 255, 255, 0.87);
  --btn-secondary-text: rgba(255, 255, 255, 0.87);
  --scrollbar-thumb: #202125;
  --scrollbar-thumb-hover: #0f0f12;
  --scrollbar-track: #d9d9d9;
  --login-bg: #e8e8e8;
  --login-font-title-color: rgba(0, 0, 0, 0.87);
  --login-hr-color: rgba(0, 0, 0, 0.87);
  --login-logo: url('kayrox-light.c221b04fe25311e9.png');
  --border-divider: rgba(255, 255, 255, 0.54);
  --slider-reports-toggle-text: rgba(255, 255, 255, 0.87);
  --skin-footer-text: #0f0f12;
  --skin-footer-bg: #d9d9d9;
  --skin-footer-bg-public: #aabde3;
  --skin-group-bg: #AdAeB2;
  --skin-group-text: rgba(255, 255, 255, 0.87);
  --skin-filter-border: rgba(0, 0, 0, 0.87);
  --skin-filter-hover-bg: #ffffff;
  --skin-filter-selected-bg: #3d3e42;
  --skin-filter-selected-text: rgba(255, 255, 255, 0.87);
  --object-tree-selected-text: rgba(255, 255, 255, 0.87);
  --skin-tree-header-bg: #3d3e42;
  --skin-admin-bg: #e8e8e8;
  --skin-not-found-bg: #e8e8e8;
  --skin-not-found-card-bg: #f7f7f7;
  --skin-picker-border: #3d3e42;
  --skin-picker-hover: rgba(0, 0, 0, 0.08);
  --skin-editbar-text: rgba(255, 255, 255, 0.74);
  --skin-editbar-toggle-text: rgba(255, 255, 255, 0.74);
}
body.light-theme .desktop__work-area-left-panel {
  margin-top: 0.5rem !important;
}
body.light-theme tiwp-edit-augmented-manual .desktop__work-area-left-panel, body.light-theme tiwp-edit-gaussianSplatting .desktop__work-area-left-panel, body.light-theme tiwp-edit-exp360 .desktop__work-area-left-panel, body.light-theme tiwp-edit-virtual-classroom .desktop__work-area-left-panel {
  margin-top: 0 !important;
}
body.light-theme .login-background {
  animation: fade-in-login-light-background 2s forwards;
}

@keyframes fade-in-login-motivatexr-background {
  from {
    background-color: #000;
  }
  to {
    background-color: #013957;
  }
}
body.motivatexr-theme {
  --primary-color: #4CC2FF;
  --primary-color-disabled: #327297;
  --color-accent: #F9F035;
  --color-warn: #EF3141;
  --color-middle: #404040;
  --secondary-color: #98EAFE;
  --secondary-color-disabled: #5e8495;
  --spinner-background-color: rgba(61, 62, 67, 0.2470588235);
  --toolbar-text-color: rgba(255, 255, 255, 0.87);
  --toolbar-background-color: #202020;
  --toolbar-link-color: #90969a !important;
  --toolbar-link-hover-color: #fff !important;
  --toolbar-link-active-color: #fff !important;
  --toolbar-title-color: rgba(255, 255, 255, 0.74);
  --item-border-color: rgba(255, 255, 255, 0.74);
  --item-text-color: rgba(255, 255, 255, 0.74);
  --item-text-hover-color: #fff !important;
  --item-background-hover-color: #121212;
  --item-text-selected-color: #fff !important;
  --item-background-selected-color: #121212;
  --tab-bar-text-color: rgba(255, 255, 255, 0.74);
  --tab-bar-background-color: #202020;
  --tab-bar-selected-color: #98EAFE;
  --tree-selected-bg: #a4e2f2;
  --tab-bar-active-text-color: #fff !important;
  --surface-app: #202020;
  --surface-panel: #323232;
  --surface-input: #d9d9d9;
  --surface-input-readonly: #323232;
  --surface-gallery-item: #000;
  --surface-gallery-item-selected: #202020;
  --surface-gallery-body: #323232;
  --surface-form-data: #e8e8e8;
  --surface-form-bg: #202020;
  --surface-list-item: #d9d9d9;
  --surface-list-item-selected: #323232;
  --surface-list-bg: #e8e8e8;
  --surface-select-search: #cccccc;
  --option-hover-bg: #b8b8b8;
  --option-selected-bg: #c0c0c0;
  --surface-depth: #202020;
  --surface-light: #d9d9d9;
  --surface-contrasted: #000;
  --text-primary: rgba(255, 255, 255, 0.87);
  --text-secondary: rgba(255, 255, 255, 0.74);
  --text-disabled: rgba(255, 255, 255, 0.38);
  --text-on-input: rgba(0, 0, 0, 0.87);
  --text-on-input-readonly: rgba(255, 255, 255, 0.87);
  --hc-text: rgb(255 255 255 / 1);
  --hc-text-highlight: rgb(255 255 255 / .87);
  --hc-text-secondary: rgb(255 255 255 / .74);
  --hc-text-accent: rgb(255 255 255 / .65);
  --hc-text-muted: rgb(255 255 255 / .50);
  --hc-text-disabled: rgb(255 255 255 / .38);
  --mat-tab-active-bg: #323232;
  --mat-tab-ink-bar: var(--tab-bar-selected-color);
  --mat-checkbox-label-color: white;
  --mat-checkbox-frame-color: white;
  --mat-dialog-bg: #323232;
  --mat-dialog-text: #ffffff;
  --mat-dialog-input-bg: transparent;
  --mat-dialog-autofill-text: rgba(255, 255, 255, 0.38);
  --common-arrow-color: #d9d9d9;
  --common-arrow-bg: #686868;
  --common-arrow-border: #d9d9d9;
  --common-report-text: #000;
  --common-report-field-bg: #cccccc;
  --common-select-panel-text: #000;
  --common-select-panel-muted: #000;
  --common-select-search-text: #000;
  --common-border-gray: #323232;
  --common-select-yellow-bg: #F9F035;
  --common-question-warn: #EF3141;
  --btn-primary-text: #000;
  --btn-secondary-text: #000;
  --scrollbar-thumb: #6e6e6e;
  --scrollbar-thumb-hover: #6e6e6e;
  --scrollbar-track: #202020;
  --login-bg: #013957;
  --login-font-title-color: rgba(255, 255, 255, 0.87);
  --login-hr-color: rgba(255, 255, 255, 0.87);
  --login-logo: url('kayrox.f6029123548d0c9d.png');
  --border-divider: #323232;
  --slider-reports-toggle-text: #000;
  --skin-footer-text: #f7f7f7;
  --skin-footer-bg: #202020;
  --skin-footer-bg-public: #22283d;
  --skin-group-bg: #404040;
  --skin-group-text: #ffffff;
  --skin-filter-border: rgba(255, 255, 255, 0.74);
  --skin-filter-hover-bg: #202020;
  --skin-filter-selected-bg: #0f0f12;
  --skin-filter-selected-text: rgba(255, 255, 255, 0.87);
  --object-tree-selected-text: rgba(0, 0, 0, 0.87);
  --skin-tree-header-bg: #323232;
  --skin-admin-bg: #202020;
  --skin-not-found-bg: #0f0f12;
  --skin-not-found-card-bg: #323232;
  --skin-picker-border: #686868;
  --skin-picker-hover: rgba(255, 255, 255, 0.08);
  --skin-editbar-text: #000;
  --skin-editbar-toggle-text: #000;
}
body.motivatexr-theme tiwp-edit-augmented-manual .desktop__work-area-left-panel, body.motivatexr-theme tiwp-edit-gaussianSplatting .desktop__work-area-left-panel, body.motivatexr-theme tiwp-edit-exp360 .desktop__work-area-left-panel, body.motivatexr-theme tiwp-edit-virtual-classroom .desktop__work-area-left-panel {
  margin-top: 0 !important;
}
body.motivatexr-theme .login-background {
  animation: fade-in-login-motivatexr-background 2s forwards;
}

body.dark-theme .login-background, body .login-background, body.light-theme .login-background, body.motivatexr-theme .login-background {
  background-image: url('login-background.e074c5e9077620aa.png') !important;
  background-color: var(--login-bg);
  /* Campos sobre $light-gray: texto escrito e icono (p. ej. ojo) = --text-on-input; label/placeholder más suaves. */
}
body.dark-theme .login-background .input-gray .mat-mdc-text-field-wrapper, body .login-background .input-gray .mat-mdc-text-field-wrapper, body.light-theme .login-background .input-gray .mat-mdc-text-field-wrapper, body.motivatexr-theme .login-background .input-gray .mat-mdc-text-field-wrapper {
  background-color: #d9d9d9 !important;
}
body.dark-theme .login-background hr, body .login-background hr, body.light-theme .login-background hr, body.motivatexr-theme .login-background hr {
  border-color: var(--login-hr-color) !important;
}
body.dark-theme .login-background .login-font-title, body .login-background .login-font-title, body.light-theme .login-background .login-font-title, body.motivatexr-theme .login-background .login-font-title {
  color: var(--login-font-title-color) !important;
}
body.dark-theme .login-background .logo-container > .logo, body .login-background .logo-container > .logo, body.light-theme .login-background .logo-container > .logo, body.motivatexr-theme .login-background .logo-container > .logo {
  background-image: var(--login-logo) !important;
}
body.dark-theme .login-background .input-gray, body .login-background .input-gray, body.light-theme .login-background .input-gray, body.motivatexr-theme .login-background .input-gray {
  --login-field-value-color: var(--text-on-input);
  --login-field-label-color: rgba(0, 0, 0, 0.54);
  --mdc-filled-text-field-label-text-color: var(--login-field-label-color);
  --mdc-filled-text-field-input-text-color: var(--login-field-value-color);
  --mdc-filled-text-field-disabled-input-text-color: rgba(0, 0, 0, 0.38);
  color: var(--login-field-value-color) !important;
}
body.dark-theme .login-background .input-gray .mat-mdc-input-element, body .login-background .input-gray .mat-mdc-input-element, body.light-theme .login-background .input-gray .mat-mdc-input-element, body.motivatexr-theme .login-background .input-gray .mat-mdc-input-element {
  color: var(--login-field-value-color) !important;
  caret-color: var(--login-field-value-color) !important;
}
body.dark-theme .login-background .input-gray .mat-mdc-input-element::placeholder, body .login-background .input-gray .mat-mdc-input-element::placeholder, body.light-theme .login-background .input-gray .mat-mdc-input-element::placeholder, body.motivatexr-theme .login-background .input-gray .mat-mdc-input-element::placeholder {
  color: var(--login-field-label-color) !important;
  opacity: 1 !important;
}
body.dark-theme .login-background .input-gray mat-label, body .login-background .input-gray mat-label,
body.dark-theme .login-background .input-gray .mat-mdc-floating-label,
body .login-background .input-gray .mat-mdc-floating-label,
body.dark-theme .login-background .input-gray .mat-hint,
body .login-background .input-gray .mat-hint,
body.dark-theme .login-background .input-gray .mdc-floating-label,
body .login-background .input-gray .mdc-floating-label, body.light-theme .login-background .input-gray mat-label,
body.light-theme .login-background .input-gray .mat-mdc-floating-label,
body.light-theme .login-background .input-gray .mat-hint,
body.light-theme .login-background .input-gray .mdc-floating-label, body.motivatexr-theme .login-background .input-gray mat-label,
body.motivatexr-theme .login-background .input-gray .mat-mdc-floating-label,
body.motivatexr-theme .login-background .input-gray .mat-hint,
body.motivatexr-theme .login-background .input-gray .mdc-floating-label {
  color: var(--login-field-label-color) !important;
}
body.dark-theme .login-background .input-gray .mat-mdc-form-field.mat-focused .mat-mdc-floating-label, body .login-background .input-gray .mat-mdc-form-field.mat-focused .mat-mdc-floating-label, body.light-theme .login-background .input-gray .mat-mdc-form-field.mat-focused .mat-mdc-floating-label, body.motivatexr-theme .login-background .input-gray .mat-mdc-form-field.mat-focused .mat-mdc-floating-label {
  color: var(--primary-color) !important;
}
body.dark-theme .login-background .input-gray mat-icon[matSuffix], body .login-background .input-gray mat-icon[matSuffix], body.light-theme .login-background .input-gray mat-icon[matSuffix], body.motivatexr-theme .login-background .input-gray mat-icon[matSuffix] {
  color: var(--login-field-value-color) !important;
}
body.dark-theme .top-toolbar, body .top-toolbar, body.light-theme .top-toolbar, body.motivatexr-theme .top-toolbar {
  background-color: var(--toolbar-background-color) !important;
}
body.dark-theme .top-toolbar .logo-container > .logo, body .top-toolbar .logo-container > .logo, body.light-theme .top-toolbar .logo-container > .logo, body.motivatexr-theme .top-toolbar .logo-container > .logo {
  background-image: var(--login-logo) !important;
}
body.dark-theme .top-toolbar .org-title, body .top-toolbar .org-title, body.light-theme .top-toolbar .org-title, body.motivatexr-theme .top-toolbar .org-title {
  color: var(--toolbar-text-color) !important;
}
body.dark-theme .top-toolbar__link, body .top-toolbar__link, body.light-theme .top-toolbar__link, body.motivatexr-theme .top-toolbar__link {
  color: var(--toolbar-link-color);
}
body.dark-theme .top-toolbar__link:hover, body .top-toolbar__link:hover, body.light-theme .top-toolbar__link:hover, body.motivatexr-theme .top-toolbar__link:hover {
  color: var(--toolbar-link-hover-color);
}
body.dark-theme .top-toolbar__link--active, body .top-toolbar__link--active, body.light-theme .top-toolbar__link--active, body.motivatexr-theme .top-toolbar__link--active {
  color: var(--toolbar-link-active-color);
}
body.dark-theme tiwp-desktop-item-gallery .top-toolbar-background, body tiwp-desktop-item-gallery .top-toolbar-background, body.light-theme tiwp-desktop-item-gallery .top-toolbar-background, body.motivatexr-theme tiwp-desktop-item-gallery .top-toolbar-background {
  background-color: var(--toolbar-background-color) !important;
}
body.dark-theme tiwp-desktop-item-gallery .item-gallery-body-background, body tiwp-desktop-item-gallery .item-gallery-body-background, body.light-theme tiwp-desktop-item-gallery .item-gallery-body-background, body.motivatexr-theme tiwp-desktop-item-gallery .item-gallery-body-background {
  background-color: var(--surface-gallery-body) !important;
}
body.dark-theme tiwp-desktop-item-gallery tiwp-item-gallery .grid-item, body tiwp-desktop-item-gallery tiwp-item-gallery .grid-item, body.light-theme tiwp-desktop-item-gallery tiwp-item-gallery .grid-item, body.motivatexr-theme tiwp-desktop-item-gallery tiwp-item-gallery .grid-item {
  background-color: var(--surface-gallery-item) !important;
}
body.dark-theme tiwp-desktop-item-gallery tiwp-item-gallery .grid-item.grid-item-selected, body tiwp-desktop-item-gallery tiwp-item-gallery .grid-item.grid-item-selected, body.light-theme tiwp-desktop-item-gallery tiwp-item-gallery .grid-item.grid-item-selected, body.motivatexr-theme tiwp-desktop-item-gallery tiwp-item-gallery .grid-item.grid-item-selected {
  background-color: var(--surface-gallery-item-selected) !important;
}
body.dark-theme .themed-view-form, body .themed-view-form, body.light-theme .themed-view-form, body.motivatexr-theme .themed-view-form {
  background-color: var(--surface-panel) !important;
  color: var(--item-text-color) !important;
}
body.dark-theme .colored-text, body .colored-text, body.light-theme .colored-text, body.motivatexr-theme .colored-text {
  color: var(--primary-color) !important;
}
body.dark-theme .colored-background, body .colored-background, body.light-theme .colored-background, body.motivatexr-theme .colored-background {
  background-color: var(--primary-color) !important;
}
body.dark-theme .colored-background.high-contrast-text, body .colored-background.high-contrast-text, body.light-theme .colored-background.high-contrast-text, body.motivatexr-theme .colored-background.high-contrast-text {
  color: rgb(255, 255, 255);
}
body.dark-theme .high-contrast-text, body .high-contrast-text, body.light-theme .high-contrast-text, body.motivatexr-theme .high-contrast-text {
  color: var(--hc-text);
}
body.dark-theme .high-contrast-text--highlight, body .high-contrast-text--highlight, body.light-theme .high-contrast-text--highlight, body.motivatexr-theme .high-contrast-text--highlight {
  color: var(--hc-text-highlight);
}
body.dark-theme .high-contrast-text--secondary, body .high-contrast-text--secondary, body.light-theme .high-contrast-text--secondary, body.motivatexr-theme .high-contrast-text--secondary {
  color: var(--hc-text-secondary);
}
body.dark-theme .high-contrast-text--accent, body .high-contrast-text--accent, body.light-theme .high-contrast-text--accent, body.motivatexr-theme .high-contrast-text--accent {
  color: var(--hc-text-accent);
}
body.dark-theme .high-contrast-text--muted, body .high-contrast-text--muted, body.light-theme .high-contrast-text--muted, body.motivatexr-theme .high-contrast-text--muted {
  color: var(--hc-text-muted);
}
body.dark-theme .high-contrast-text--disabled, body .high-contrast-text--disabled, body.light-theme .high-contrast-text--disabled, body.motivatexr-theme .high-contrast-text--disabled {
  color: var(--hc-text-disabled);
}
body.dark-theme .background-depth, body .background-depth, body.light-theme .background-depth, body.motivatexr-theme .background-depth {
  background-color: var(--surface-depth) !important;
}
body.dark-theme .background-middle, body .background-middle, body.light-theme .background-middle, body.motivatexr-theme .background-middle {
  background-color: var(--color-middle);
}
body.dark-theme .background-light, body .background-light, body.light-theme .background-light, body.motivatexr-theme .background-light {
  background-color: var(--surface-light) !important;
}
body.dark-theme .background-contrasted, body .background-contrasted, body.light-theme .background-contrasted, body.motivatexr-theme .background-contrasted {
  background-color: var(--surface-contrasted) !important;
}
body.dark-theme .border-selected, body .border-selected, body.light-theme .border-selected, body.motivatexr-theme .border-selected {
  border-color: var(--primary-color) !important;
}
body.dark-theme .primary-button, body .primary-button, body.light-theme .primary-button, body.motivatexr-theme .primary-button {
  background-color: var(--primary-color) !important;
  color: var(--btn-primary-text) !important;
}
body.dark-theme .primary-button-checked, body .primary-button-checked, body.light-theme .primary-button-checked, body.motivatexr-theme .primary-button-checked {
  background-color: var(--primary-color-disabled) !important;
  color: var(--primary-color) !important;
}
body.dark-theme .primary-button-disabled, body .primary-button-disabled, body.light-theme .primary-button-disabled, body.motivatexr-theme .primary-button-disabled {
  color: var(--primary-color) !important;
  border: solid 1px var(--primary-color) !important;
  background-color: transparent !important;
  margin: -1px;
}
body.dark-theme .primary-color, body .primary-color, body.light-theme .primary-color, body.motivatexr-theme .primary-color {
  color: var(--primary-color) !important;
}
body.dark-theme .accent-color, body .accent-color, body.light-theme .accent-color, body.motivatexr-theme .accent-color {
  color: var(--color-accent) !important;
}
body.dark-theme .secondary-button, body .secondary-button, body.light-theme .secondary-button, body.motivatexr-theme .secondary-button {
  background-color: var(--secondary-color) !important;
  color: var(--btn-secondary-text) !important;
}
body.dark-theme .secondary-button-checked, body .secondary-button-checked, body.light-theme .secondary-button-checked, body.motivatexr-theme .secondary-button-checked {
  background-color: var(--secondary-color-disabled) !important;
  color: var(--secondary-color) !important;
}
body.dark-theme .secondary-button-disabled, body .secondary-button-disabled, body.light-theme .secondary-button-disabled, body.motivatexr-theme .secondary-button-disabled {
  color: var(--secondary-color) !important;
  border: solid 1px var(--secondary-color) !important;
  background-color: transparent !important;
  margin: -1px;
}
body.dark-theme .bg-hover-color:hover, body .bg-hover-color:hover, body.light-theme .bg-hover-color:hover, body.motivatexr-theme .bg-hover-color:hover {
  border-color: var(--primary-color) !important;
  background-color: #d9d9d9 !important;
}
body.dark-theme .item-selection-buttons .mat-mdc-button[disabled][disabled].primary-button, body .item-selection-buttons .mat-mdc-button[disabled][disabled].primary-button, body.light-theme .item-selection-buttons .mat-mdc-button[disabled][disabled].primary-button, body.motivatexr-theme .item-selection-buttons .mat-mdc-button[disabled][disabled].primary-button {
  border: 1px solid var(--primary-color-disabled) !important;
  color: var(--primary-color-disabled) !important;
  background-color: transparent !important;
  margin: -1px;
}
body.dark-theme .item-selection-buttons .mat-mdc-button[disabled][disabled].secondary-button, body .item-selection-buttons .mat-mdc-button[disabled][disabled].secondary-button, body.light-theme .item-selection-buttons .mat-mdc-button[disabled][disabled].secondary-button, body.motivatexr-theme .item-selection-buttons .mat-mdc-button[disabled][disabled].secondary-button {
  border: 1px solid var(--secondary-color-disabled) !important;
  color: var(--secondary-color-disabled) !important;
  background-color: transparent !important;
  margin: -1px;
}
body.dark-theme .item-footer, body .item-footer, body.light-theme .item-footer, body.motivatexr-theme .item-footer {
  color: var(--text-primary) !important;
}
body.dark-theme .item-footer .item-footer-text, body .item-footer .item-footer-text, body.light-theme .item-footer .item-footer-text, body.motivatexr-theme .item-footer .item-footer-text {
  color: var(--skin-footer-text) !important;
}
body.dark-theme .item-footer .item-footer-text--secondary, body .item-footer .item-footer-text--secondary, body.light-theme .item-footer .item-footer-text--secondary, body.motivatexr-theme .item-footer .item-footer-text--secondary {
  color: var(--text-secondary) !important;
}
body.dark-theme .item-footer.item-footer-background, body .item-footer.item-footer-background, body.light-theme .item-footer.item-footer-background, body.motivatexr-theme .item-footer.item-footer-background {
  background-color: var(--skin-footer-bg) !important;
}
body.dark-theme .item-footer.item-footer-background-public, body .item-footer.item-footer-background-public, body.light-theme .item-footer.item-footer-background-public, body.motivatexr-theme .item-footer.item-footer-background-public {
  background-color: var(--skin-footer-bg-public) !important;
}
body.dark-theme .edit-project-background, body .edit-project-background, body.light-theme .edit-project-background, body.motivatexr-theme .edit-project-background {
  background-color: var(--surface-app) !important;
}
body.dark-theme .edit-project-background .project-details, body .edit-project-background .project-details, body.light-theme .edit-project-background .project-details, body.motivatexr-theme .edit-project-background .project-details {
  background-color: var(--surface-panel) !important;
}
body.dark-theme .edit-project-background .project-details-text, body .edit-project-background .project-details-text, body.light-theme .edit-project-background .project-details-text, body.motivatexr-theme .edit-project-background .project-details-text {
  color: var(--item-text-color);
}
body.dark-theme .edit-project-background .expand-button-background, body .edit-project-background .expand-button-background, body.light-theme .edit-project-background .expand-button-background, body.motivatexr-theme .edit-project-background .expand-button-background {
  background-color: var(--surface-app) !important;
}
body.dark-theme .edit-project-background .properties-background, body .edit-project-background .properties-background, body.light-theme .edit-project-background .properties-background, body.motivatexr-theme .edit-project-background .properties-background {
  background-color: var(--surface-app) !important;
}
body.dark-theme .edit-project-background .properties-background .asset3d-properties-background, body .edit-project-background .properties-background .asset3d-properties-background, body.dark-theme .edit-project-background .properties-background .poi-properties-background, body .edit-project-background .properties-background .poi-properties-background, body.light-theme .edit-project-background .properties-background .asset3d-properties-background, body.light-theme .edit-project-background .properties-background .poi-properties-background, body.motivatexr-theme .edit-project-background .properties-background .asset3d-properties-background, body.motivatexr-theme .edit-project-background .properties-background .poi-properties-background {
  background-color: var(--surface-app) !important;
}
body.dark-theme .slider-reports, body .slider-reports, body.light-theme .slider-reports, body.motivatexr-theme .slider-reports {
  background-color: var(--primary-color) !important;
}
body.dark-theme .slider-reports .mdc-label, body .slider-reports .mdc-label, body.light-theme .slider-reports .mdc-label, body.motivatexr-theme .slider-reports .mdc-label {
  color: var(--slider-reports-toggle-text);
}
body.dark-theme tiwp-asset-selection-dialog .asset-selection-dialog-title, body tiwp-asset-selection-dialog .asset-selection-dialog-title, body.light-theme tiwp-asset-selection-dialog .asset-selection-dialog-title, body.motivatexr-theme tiwp-asset-selection-dialog .asset-selection-dialog-title {
  background-color: var(--toolbar-background-color) !important;
}
body.dark-theme tiwp-asset-selection-dialog .asset-selection-tab-bar, body tiwp-asset-selection-dialog .asset-selection-tab-bar, body.light-theme tiwp-asset-selection-dialog .asset-selection-tab-bar, body.motivatexr-theme tiwp-asset-selection-dialog .asset-selection-tab-bar {
  margin: 0 -24px 0 -24px !important;
  background-color: var(--toolbar-background-color) !important;
}
body.dark-theme tiwp-not-found mat-card-actions button.primary-button a, body tiwp-not-found mat-card-actions button.primary-button a, body.dark-theme tiwp-not-found mat-card-actions button.primary-button mat-icon, body tiwp-not-found mat-card-actions button.primary-button mat-icon, body.light-theme tiwp-not-found mat-card-actions button.primary-button a, body.light-theme tiwp-not-found mat-card-actions button.primary-button mat-icon, body.motivatexr-theme tiwp-not-found mat-card-actions button.primary-button a, body.motivatexr-theme tiwp-not-found mat-card-actions button.primary-button mat-icon {
  background: transparent !important;
  color: #ffffff !important;
}
body.dark-theme tiwp-sort-items-dialog .item-list, body tiwp-sort-items-dialog .item-list, body.light-theme tiwp-sort-items-dialog .item-list, body.motivatexr-theme tiwp-sort-items-dialog .item-list {
  border-color: #d9d9d9;
  background-color: #ffffff;
}
body.dark-theme tiwp-sort-items-dialog .item-box, body tiwp-sort-items-dialog .item-box, body.light-theme tiwp-sort-items-dialog .item-box, body.motivatexr-theme tiwp-sort-items-dialog .item-box {
  border-bottom-color: #d9d9d9;
  color: rgba(0, 0, 0, 0.87);
  background-color: #ffffff;
}
body.dark-theme tiwp-sort-items-dialog .item-box:hover, body tiwp-sort-items-dialog .item-box:hover, body.light-theme tiwp-sort-items-dialog .item-box:hover, body.motivatexr-theme tiwp-sort-items-dialog .item-box:hover {
  background-color: rgba(0, 0, 0, 0.08);
}
body.dark-theme tiwp-sort-items-dialog .item-box:active, body tiwp-sort-items-dialog .item-box:active, body.light-theme tiwp-sort-items-dialog .item-box:active, body.motivatexr-theme tiwp-sort-items-dialog .item-box:active {
  background-color: #fff8e1;
}
body.dark-theme tiwp-sort-items-dialog .cdk-drag-preview, body tiwp-sort-items-dialog .cdk-drag-preview, body.light-theme tiwp-sort-items-dialog .cdk-drag-preview, body.motivatexr-theme tiwp-sort-items-dialog .cdk-drag-preview {
  box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12);
  background-color: #e8eaf6;
}
body.dark-theme tiwp-sort-items-dialog .item-custom-placeholder, body tiwp-sort-items-dialog .item-custom-placeholder, body.light-theme tiwp-sort-items-dialog .item-custom-placeholder, body.motivatexr-theme tiwp-sort-items-dialog .item-custom-placeholder {
  background-color: #c5cae9;
  border-color: #AdAeB2;
}
body.dark-theme div, body div, body.light-theme div, body.motivatexr-theme div {
  scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
}
body.dark-theme div::-webkit-scrollbar, body div::-webkit-scrollbar, body.light-theme div::-webkit-scrollbar, body.motivatexr-theme div::-webkit-scrollbar {
  width: 10px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
}
body.dark-theme div::-webkit-scrollbar-track, body div::-webkit-scrollbar-track, body.light-theme div::-webkit-scrollbar-track, body.motivatexr-theme div::-webkit-scrollbar-track {
  background: var(--scrollbar-track);
}
body.dark-theme div::-webkit-scrollbar-thumb, body div::-webkit-scrollbar-thumb, body.light-theme div::-webkit-scrollbar-thumb, body.motivatexr-theme div::-webkit-scrollbar-thumb {
  background-color: var(--scrollbar-thumb);
}
body.dark-theme div::-webkit-scrollbar-thumb:hover, body div::-webkit-scrollbar-thumb:hover, body.light-theme div::-webkit-scrollbar-thumb:hover, body.motivatexr-theme div::-webkit-scrollbar-thumb:hover {
  background-color: var(--scrollbar-thumb-hover);
}

body.dark-theme .group-panel, body .group-panel, body.light-theme .group-panel, body.motivatexr-theme .group-panel {
  background-color: var(--skin-group-bg) !important;
}
body.dark-theme .item-filter-button__option, body .item-filter-button__option, body.light-theme .item-filter-button__option, body.motivatexr-theme .item-filter-button__option {
  border: 1px solid var(--skin-filter-border);
  color: var(--skin-filter-border);
  background-color: transparent;
}
body.dark-theme .item-filter-button__option:hover, body .item-filter-button__option:hover, body.light-theme .item-filter-button__option:hover, body.motivatexr-theme .item-filter-button__option:hover {
  color: var(--hc-text) !important;
  border-color: var(--surface-contrasted) !important;
  background-color: var(--skin-filter-hover-bg) !important;
}
body.dark-theme .item-filter-button__option--selected, body .item-filter-button__option--selected, body.light-theme .item-filter-button__option--selected, body.motivatexr-theme .item-filter-button__option--selected {
  color: var(--skin-filter-selected-text) !important;
  border-color: var(--surface-contrasted) !important;
  background-color: var(--skin-filter-selected-bg);
}
body.dark-theme .object-tree__selected, body .object-tree__selected, body.light-theme .object-tree__selected, body.motivatexr-theme .object-tree__selected {
  background-color: var(--tree-selected-bg) !important;
  color: var(--object-tree-selected-text) !important;
}
body.dark-theme .object-tree__selected .mat-icon, body .object-tree__selected .mat-icon, body.light-theme .object-tree__selected .mat-icon, body.motivatexr-theme .object-tree__selected .mat-icon {
  color: var(--object-tree-selected-text) !important;
}
body.dark-theme .object-tree-header, body .object-tree-header, body.light-theme .object-tree-header, body.motivatexr-theme .object-tree-header {
  background-color: var(--skin-tree-header-bg) !important;
}
body.dark-theme .object-tree-header-text, body .object-tree-header-text, body.light-theme .object-tree-header-text, body.motivatexr-theme .object-tree-header-text {
  color: #fff !important;
}
body.dark-theme tiwp-admin, body tiwp-admin, body.light-theme tiwp-admin, body.motivatexr-theme tiwp-admin {
  background-color: var(--skin-admin-bg) !important;
}
body.dark-theme tiwp-admin mat-chip, body tiwp-admin mat-chip, body.light-theme tiwp-admin mat-chip, body.motivatexr-theme tiwp-admin mat-chip {
  background-color: #d9d9d9 !important;
}
body.dark-theme tiwp-admin mat-chip.admin-organization-types, body tiwp-admin mat-chip.admin-organization-types, body.light-theme tiwp-admin mat-chip.admin-organization-types, body.motivatexr-theme tiwp-admin mat-chip.admin-organization-types {
  background-color: var(--skin-footer-bg) !important;
  color: var(--text-primary) !important;
  border-color: rgba(0, 0, 0, 0.12) !important;
}
body.dark-theme tiwp-not-found .not-found-background, body tiwp-not-found .not-found-background, body.light-theme tiwp-not-found .not-found-background, body.motivatexr-theme tiwp-not-found .not-found-background {
  background-color: var(--skin-not-found-bg);
}
body.dark-theme tiwp-not-found .not-found-background .not-found-card, body tiwp-not-found .not-found-background .not-found-card, body.light-theme tiwp-not-found .not-found-background .not-found-card, body.motivatexr-theme tiwp-not-found .not-found-background .not-found-card {
  background-color: var(--skin-not-found-card-bg);
}
body.dark-theme tiwp-color-picker input[type=color].no-color, body tiwp-color-picker input[type=color].no-color, body.light-theme tiwp-color-picker input[type=color].no-color, body.motivatexr-theme tiwp-color-picker input[type=color].no-color {
  border-color: var(--skin-picker-border);
}
body.dark-theme tiwp-color-picker input[type=color].no-color::after, body tiwp-color-picker input[type=color].no-color::after, body.light-theme tiwp-color-picker input[type=color].no-color::after, body.motivatexr-theme tiwp-color-picker input[type=color].no-color::after {
  background-color: var(--primary-color);
}
body.dark-theme tiwp-color-picker input[type=color]:hover, body tiwp-color-picker input[type=color]:hover, body.light-theme tiwp-color-picker input[type=color]:hover, body.motivatexr-theme tiwp-color-picker input[type=color]:hover {
  background: var(--skin-picker-hover);
}
body.dark-theme tiwp-augmented-manual-edit-bar .mat-toolbar.mat-toolbar-single-row, body tiwp-augmented-manual-edit-bar .mat-toolbar.mat-toolbar-single-row, body.light-theme tiwp-augmented-manual-edit-bar .mat-toolbar.mat-toolbar-single-row, body.motivatexr-theme tiwp-augmented-manual-edit-bar .mat-toolbar.mat-toolbar-single-row {
  background-color: var(--surface-depth);
  color: var(--skin-editbar-text);
}
body.dark-theme tiwp-augmented-manual-edit-bar .mat-toolbar.mat-toolbar-single-row .mat-divider.mat-divider-vertical, body tiwp-augmented-manual-edit-bar .mat-toolbar.mat-toolbar-single-row .mat-divider.mat-divider-vertical, body.light-theme tiwp-augmented-manual-edit-bar .mat-toolbar.mat-toolbar-single-row .mat-divider.mat-divider-vertical, body.motivatexr-theme tiwp-augmented-manual-edit-bar .mat-toolbar.mat-toolbar-single-row .mat-divider.mat-divider-vertical {
  border-right-color: var(--border-divider);
}
body.dark-theme tiwp-augmented-manual-edit-bar .mat-toolbar.mat-toolbar-single-row .mat-mdc-unelevated-button.mat-mdc-button-base, body tiwp-augmented-manual-edit-bar .mat-toolbar.mat-toolbar-single-row .mat-mdc-unelevated-button.mat-mdc-button-base, body.light-theme tiwp-augmented-manual-edit-bar .mat-toolbar.mat-toolbar-single-row .mat-mdc-unelevated-button.mat-mdc-button-base, body.motivatexr-theme tiwp-augmented-manual-edit-bar .mat-toolbar.mat-toolbar-single-row .mat-mdc-unelevated-button.mat-mdc-button-base {
  --mdc-filled-button-container-height: 2rem;
  width: 2rem;
  height: 2rem;
  min-width: 2rem;
  min-height: 2rem;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--secondary-color);
  color: var(--btn-secondary-text);
}
body.dark-theme tiwp-augmented-manual-edit-bar .mat-toolbar.mat-toolbar-single-row .mat-mdc-unelevated-button.mat-mdc-button-base .mat-mdc-button-touch-target, body tiwp-augmented-manual-edit-bar .mat-toolbar.mat-toolbar-single-row .mat-mdc-unelevated-button.mat-mdc-button-base .mat-mdc-button-touch-target, body.light-theme tiwp-augmented-manual-edit-bar .mat-toolbar.mat-toolbar-single-row .mat-mdc-unelevated-button.mat-mdc-button-base .mat-mdc-button-touch-target, body.motivatexr-theme tiwp-augmented-manual-edit-bar .mat-toolbar.mat-toolbar-single-row .mat-mdc-unelevated-button.mat-mdc-button-base .mat-mdc-button-touch-target {
  height: 2rem;
  width: 2rem;
}
body.dark-theme tiwp-augmented-manual-edit-bar .mat-toolbar.mat-toolbar-single-row .mat-mdc-unelevated-button.mat-mdc-button-base[disabled], body tiwp-augmented-manual-edit-bar .mat-toolbar.mat-toolbar-single-row .mat-mdc-unelevated-button.mat-mdc-button-base[disabled], body.light-theme tiwp-augmented-manual-edit-bar .mat-toolbar.mat-toolbar-single-row .mat-mdc-unelevated-button.mat-mdc-button-base[disabled], body.motivatexr-theme tiwp-augmented-manual-edit-bar .mat-toolbar.mat-toolbar-single-row .mat-mdc-unelevated-button.mat-mdc-button-base[disabled] {
  border: 1px solid var(--secondary-color-disabled) !important;
  color: var(--secondary-color-disabled) !important;
  background-color: transparent !important;
  margin: -1px;
}
body.dark-theme tiwp-augmented-manual-edit-bar .mat-toolbar.mat-toolbar-single-row .mat-button-toggle, body tiwp-augmented-manual-edit-bar .mat-toolbar.mat-toolbar-single-row .mat-button-toggle, body.light-theme tiwp-augmented-manual-edit-bar .mat-toolbar.mat-toolbar-single-row .mat-button-toggle, body.motivatexr-theme tiwp-augmented-manual-edit-bar .mat-toolbar.mat-toolbar-single-row .mat-button-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--secondary-color);
  color: var(--skin-editbar-toggle-text);
}
body.dark-theme tiwp-augmented-manual-edit-bar .mat-toolbar.mat-toolbar-single-row .mat-button-toggle.mat-button-toggle-checked, body tiwp-augmented-manual-edit-bar .mat-toolbar.mat-toolbar-single-row .mat-button-toggle.mat-button-toggle-checked, body.light-theme tiwp-augmented-manual-edit-bar .mat-toolbar.mat-toolbar-single-row .mat-button-toggle.mat-button-toggle-checked, body.motivatexr-theme tiwp-augmented-manual-edit-bar .mat-toolbar.mat-toolbar-single-row .mat-button-toggle.mat-button-toggle-checked {
  color: var(--secondary-color);
  border-color: rgba(255, 255, 255, 0.54);
  background-color: var(--secondary-color-disabled);
  margin: -1px;
}
body.dark-theme tiwp-augmented-manual-edit-bar .mat-toolbar.mat-toolbar-single-row mat-button-toggle-standalone.mat-button-toggle-appearance-standard, body tiwp-augmented-manual-edit-bar .mat-toolbar.mat-toolbar-single-row mat-button-toggle-standalone.mat-button-toggle-appearance-standard, body.dark-theme tiwp-augmented-manual-edit-bar .mat-toolbar.mat-toolbar-single-row .mat-button-toggle-group-appearance-standard, body tiwp-augmented-manual-edit-bar .mat-toolbar.mat-toolbar-single-row .mat-button-toggle-group-appearance-standard, body.light-theme tiwp-augmented-manual-edit-bar .mat-toolbar.mat-toolbar-single-row mat-button-toggle-standalone.mat-button-toggle-appearance-standard, body.light-theme tiwp-augmented-manual-edit-bar .mat-toolbar.mat-toolbar-single-row .mat-button-toggle-group-appearance-standard, body.motivatexr-theme tiwp-augmented-manual-edit-bar .mat-toolbar.mat-toolbar-single-row mat-button-toggle-standalone.mat-button-toggle-appearance-standard, body.motivatexr-theme tiwp-augmented-manual-edit-bar .mat-toolbar.mat-toolbar-single-row .mat-button-toggle-group-appearance-standard {
  border-color: rgba(255, 255, 255, 0.54) !important;
}

body.dark-theme .group-panel, body .group-panel, body.motivatexr-theme .group-panel {
  color: var(--skin-group-text) !important;
}
body.dark-theme .mat-mdc-button.blink-me .mat-icon, body .mat-mdc-button.blink-me .mat-icon, body.motivatexr-theme .mat-mdc-button.blink-me .mat-icon {
  color: var(--color-warn) !important;
}
body.dark-theme .mat-mdc-button.grey-me .mat-icon, body .mat-mdc-button.grey-me .mat-icon, body.motivatexr-theme .mat-mdc-button.grey-me .mat-icon {
  color: var(--color-accent) !important;
}
body.dark-theme .mat-mdc-button[disabled].blink-me .mat-icon, body .mat-mdc-button[disabled].blink-me .mat-icon, body.motivatexr-theme .mat-mdc-button[disabled].blink-me .mat-icon {
  color: var(--primary-color-disabled) !important;
}
body.dark-theme .mat-mdc-button[disabled].grey-me .mat-icon, body .mat-mdc-button[disabled].grey-me .mat-icon, body.motivatexr-theme .mat-mdc-button[disabled].grey-me .mat-icon {
  color: var(--secondary-color-disabled) !important;
}

body.light-theme .group-panel-text {
  color: var(--skin-group-text) !important;
}
body.light-theme .button-voice.mat-mdc-button[disabled].blink-me .mat-icon {
  color: var(--primary-color-disabled) !important;
}
body.light-theme .button-voice.mat-mdc-button[disabled].grey-me .mat-icon {
  color: var(--secondary-color-disabled) !important;
}
body.light-theme .button-voice.mat-mdc-button.blink-me .mat-icon {
  color: var(--color-warn) !important;
}
body.light-theme .button-voice.mat-mdc-button.grey-me .mat-icon {
  color: var(--color-accent) !important;
}
body.light-theme .item-selection-buttons .mat-mdc-button[disabled][disabled]._secondary-button._selection {
  border: 1px solid var(--secondary-color-disabled) !important;
  color: rgba(0, 0, 0, 0.74) !important;
  background-color: var(--secondary-color-disabled) !important;
  margin: -1px;
}
body.light-theme .edit-project-background .properties-background .scene-navigator-properties .arrow-container .back-arrow, body.light-theme .edit-project-background .properties-background .scene-navigator-properties .arrow-container .forward-arrow {
  filter: invert(100%);
}
body.light-theme tiwp-admin mat-chip.admin-organization-types {
  border: 1px solid rgba(0, 0, 0, 0.12) !important;
}

:root {
  --primary-color: #df655e;
  --primary-color-disabled: #924844;
  --color-accent: #f48fb1;
  --color-warn: #ff9800;
  --color-middle: #3d3e42;
  --secondary-color: #977473;
  --secondary-color-disabled: #5f4c4b;
  --btn-secondary-text: rgba(255, 255, 255, 0.87);
  --spinner-background-color: rgba(61, 62, 67, 0.2470588235);
  --toolbar-text-color: rgba(255, 255, 255, 0.74);
  --toolbar-background-color: #202125;
  --toolbar-link-color: #90969a !important;
  --toolbar-link-hover-color: #fff !important;
  --toolbar-link-active-color: #fff !important;
  --toolbar-title-color: rgba(255, 255, 255, 0.74);
  --item-border-color: rgba(255, 255, 255, 0.74);
  --item-text-color: rgba(255, 255, 255, 0.74);
  --item-text-hover-color: #fff !important;
  --item-background-hover-color: #121212;
  --item-text-selected-color: #fff !important;
  --item-background-selected-color: #121212;
  --tab-bar-text-color: rgba(255, 255, 255, 0.74);
  --tab-bar-background-color: #202125;
  --tab-bar-selected-color: #bb6d69;
  --tree-selected-bg: #a18583;
  --tab-bar-active-text-color: #fff !important;
  --object-tree-selected-text: rgba(255, 255, 255, 0.87);
}

div.aframe-container div#ar-content-container video {
  z-index: 0 !important;
  position: relative !important;
  top: -100% !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
}

.desktop-work-area {
  flex-direction: row;
  display: flex;
  justify-content: space-between;
  height: 100%;
}
.desktop-work-area .left-sidenav {
  overflow-y: auto;
  min-width: 330px;
}
.desktop-work-area .edit-view-container {
  flex-direction: column;
  height: 100%;
  width: 100%;
}

@media (max-width: 800px) {
  div.desktop-work-area {
    height: 100%;
    margin-top: 8px !important;
  }
}
@media (max-width: 550px) {
  tiwp-desktop-top-toolbar button span,
  tiwp-edit-label span {
    font-size: 11px !important;
  }
  tiwp-desktop-top-toolbar .toolbar-title span {
    font-size: 14px;
  }
}
@media (min-width: 550px) and (max-width: 800px) {
  tiwp-desktop-top-toolbar button span,
  tiwp-edit-label span {
    font-size: 12px !important;
  }
  tiwp-desktop-top-toolbar .toolbar-title span {
    font-size: 18px;
  }
}
.folder-selector-tree-panel {
  margin: 8px 16px;
  min-width: -moz-fit-content;
  min-width: fit-content;
  max-width: calc(100vw - 48px);
  min-height: -moz-fit-content;
  min-height: fit-content;
}

.question-main-tab-group .mat-mdc-tab-body-content {
  overflow-x: hidden;
}

.mat-mdc-tab-group .mat-mdc-tab-group .mdc-tab__text-label {
  font-weight: normal;
}
.mat-mdc-tab-group .mdc-tab__text-label {
  font-weight: bold;
}
.mat-mdc-tab-group .mdc-line-ripple {
  background-color: rgba(0, 0, 0, 0.12);
}
.mat-mdc-tab-group .mat-toolbar .mat-mdc-form-field.mat-focused .mdc-line-ripple::after {
  background-color: #7986cb;
}

.cdk-overlay-container .cdk-global-overlay-wrapper > .cdk-overlay-pane.spinner-active,
.cdk-overlay-pane.tiwp-spinner-overlay-pane {
  max-width: 100vw !important;
  width: 100vw !important;
  max-height: 100vh !important;
  height: 100vh !important;
}
.cdk-overlay-container .cdk-global-overlay-wrapper > .cdk-overlay-pane.spinner-active .mat-mdc-dialog-container,
.cdk-overlay-pane.tiwp-spinner-overlay-pane .mat-mdc-dialog-container {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  background-color: transparent !important;
  overflow: hidden !important;
}
.cdk-overlay-container .cdk-global-overlay-wrapper > .cdk-overlay-pane.spinner-active .mat-mdc-dialog-container .mdc-dialog__surface,
.cdk-overlay-pane.tiwp-spinner-overlay-pane .mat-mdc-dialog-container .mdc-dialog__surface {
  background-color: var(--spinner-background-color) !important;
  box-shadow: none;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.cdk-overlay-container .cdk-global-overlay-wrapper > .cdk-overlay-pane.spinner-active .mat-mdc-dialog-container .mdc-dialog__surface .mat-mdc-progress-spinner circle,
.cdk-overlay-pane.tiwp-spinner-overlay-pane .mat-mdc-dialog-container .mdc-dialog__surface .mat-mdc-progress-spinner circle {
  stroke: var(--primary-color) !important;
}

.cdk-overlay-container .cdk-global-overlay-wrapper .mat-mdc-dialog-container {
  overflow: visible;
  background-color: #3d3e42 !important;
}
.cdk-overlay-container.cdk-global-overlay-wrapper.mat-mdc-dialog-container {
  overflow: hidden;
}
.cdk-overlay-container mat-option img.admin-organization-types {
  max-width: 32px;
  vertical-align: middle;
}
.cdk-overlay-container .mat-mdc-select-panel.selection-asset-types-panel, .cdk-overlay-container .mat-mdc-select-panel.selection-project-types-panel {
  max-height: 320px;
}

mat-select.admin-organization-types .mat-mdc-select-value {
  display: none;
}

mat-form-field.admin-organization-types.empty-selection .mat-mdc-form-field-infix {
  padding: 1.5em 0 1em 0;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

html,
body {
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
  font-family: Roboto, "Helvetica Neue", sans-serif;
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  --mat-badge-text-font: Roboto, "Helvetica Neue", sans-serif;
  --mat-badge-line-height: 22px;
  --mat-badge-text-size: 12px;
  --mat-badge-text-weight: 600;
  --mat-badge-small-size-text-size: 9px;
  --mat-badge-small-size-line-height: 16px;
  --mat-badge-large-size-text-size: 24px;
  --mat-badge-large-size-line-height: 28px;
}

.mat-h1,
.mat-headline-5,
.mat-typography .mat-h1,
.mat-typography .mat-headline-5,
.mat-typography h1 {
  font: 400 24px / 32px Roboto, "Helvetica Neue", sans-serif;
  letter-spacing: normal;
  margin: 0 0 16px;
}

.mat-h2,
.mat-headline-6,
.mat-typography .mat-h2,
.mat-typography .mat-headline-6,
.mat-typography h2 {
  font: 500 20px / 32px Roboto, "Helvetica Neue", sans-serif;
  letter-spacing: normal;
  margin: 0 0 16px;
}

.mat-h3,
.mat-subtitle-1,
.mat-typography .mat-h3,
.mat-typography .mat-subtitle-1,
.mat-typography h3 {
  font: 400 16px / 28px Roboto, "Helvetica Neue", sans-serif;
  letter-spacing: normal;
  margin: 0 0 16px;
}

.mat-h4,
.mat-body-1,
.mat-typography .mat-h4,
.mat-typography .mat-body-1,
.mat-typography h4 {
  font: 400 16px / 24px Roboto, "Helvetica Neue", sans-serif;
  letter-spacing: normal;
  margin: 0 0 16px;
}

.mat-h5,
.mat-typography .mat-h5,
.mat-typography h5 {
  font: 400 calc(14px * 0.83) / 20px Roboto, "Helvetica Neue", sans-serif;
  margin: 0 0 12px;
}

.mat-h6,
.mat-typography .mat-h6,
.mat-typography h6 {
  font: 400 calc(14px * 0.67) / 20px Roboto, "Helvetica Neue", sans-serif;
  margin: 0 0 12px;
}

.mat-body-strong,
.mat-subtitle-2,
.mat-typography .mat-body-strong,
.mat-typography .mat-subtitle-2 {
  font: 500 14px / 22px Roboto, "Helvetica Neue", sans-serif;
  letter-spacing: normal;
}

.mat-body,
.mat-body-2,
.mat-typography .mat-body,
.mat-typography .mat-body-2,
.mat-typography {
  font: 400 14px / 20px Roboto, "Helvetica Neue", sans-serif;
  letter-spacing: normal;
}
.mat-body p,
.mat-body-2 p,
.mat-typography .mat-body p,
.mat-typography .mat-body-2 p,
.mat-typography p {
  margin: 0 0 12px;
}

.mat-small,
.mat-caption,
.mat-typography .mat-small,
.mat-typography .mat-caption {
  font: 400 12px / 20px Roboto, "Helvetica Neue", sans-serif;
  letter-spacing: normal;
}

.mat-headline-1,
.mat-typography .mat-headline-1 {
  font: 300 96px / 96px Roboto, "Helvetica Neue", sans-serif;
  letter-spacing: -0.015625em;
  margin: 0 0 56px;
}

.mat-headline-2,
.mat-typography .mat-headline-2 {
  font: 300 60px / 60px Roboto, "Helvetica Neue", sans-serif;
  letter-spacing: -0.0083333333em;
  margin: 0 0 64px;
}

.mat-headline-3,
.mat-typography .mat-headline-3 {
  font: 400 48px / 50px Roboto, "Helvetica Neue", sans-serif;
  letter-spacing: normal;
  margin: 0 0 64px;
}

.mat-headline-4,
.mat-typography .mat-headline-4 {
  font: 400 34px / 40px Roboto, "Helvetica Neue", sans-serif;
  letter-spacing: normal;
  margin: 0 0 64px;
}

html {
  --mat-bottom-sheet-container-text-font: Roboto, "Helvetica Neue", sans-serif;
  --mat-bottom-sheet-container-text-line-height: 20px;
  --mat-bottom-sheet-container-text-size: 14px;
  --mat-bottom-sheet-container-text-tracking: normal;
  --mat-bottom-sheet-container-text-weight: 400;
  --mat-legacy-button-toggle-label-text-font: Roboto, "Helvetica Neue", sans-serif;
  --mat-legacy-button-toggle-label-text-line-height: 24px;
  --mat-legacy-button-toggle-label-text-size: 16px;
  --mat-legacy-button-toggle-label-text-tracking: normal;
  --mat-legacy-button-toggle-label-text-weight: 400;
  --mat-standard-button-toggle-label-text-font: Roboto, "Helvetica Neue", sans-serif;
  --mat-standard-button-toggle-label-text-line-height: 24px;
  --mat-standard-button-toggle-label-text-size: 16px;
  --mat-standard-button-toggle-label-text-tracking: normal;
  --mat-standard-button-toggle-label-text-weight: 400;
  --mat-datepicker-calendar-text-font: Roboto, "Helvetica Neue", sans-serif;
  --mat-datepicker-calendar-text-size: 13px;
  --mat-datepicker-calendar-body-label-text-size: 14px;
  --mat-datepicker-calendar-body-label-text-weight: 500;
  --mat-datepicker-calendar-period-button-text-size: 14px;
  --mat-datepicker-calendar-period-button-text-weight: 500;
  --mat-datepicker-calendar-header-text-size: 11px;
  --mat-datepicker-calendar-header-text-weight: 400;
  --mat-expansion-header-text-font: Roboto, "Helvetica Neue", sans-serif;
  --mat-expansion-header-text-size: 14px;
  --mat-expansion-header-text-weight: 500;
  --mat-expansion-header-text-line-height: inherit;
  --mat-expansion-header-text-tracking: inherit;
  --mat-expansion-container-text-font: Roboto, "Helvetica Neue", sans-serif;
  --mat-expansion-container-text-line-height: 20px;
  --mat-expansion-container-text-size: 14px;
  --mat-expansion-container-text-tracking: normal;
  --mat-expansion-container-text-weight: 400;
  --mat-grid-list-tile-header-primary-text-size: 14px;
  --mat-grid-list-tile-header-secondary-text-size: 12px;
  --mat-grid-list-tile-footer-primary-text-size: 14px;
  --mat-grid-list-tile-footer-secondary-text-size: 12px;
  --mat-stepper-container-text-font: Roboto, "Helvetica Neue", sans-serif;
  --mat-stepper-header-label-text-font: Roboto, "Helvetica Neue", sans-serif;
  --mat-stepper-header-label-text-size: 14px;
  --mat-stepper-header-label-text-weight: 400;
  --mat-stepper-header-error-state-label-text-size: 16px;
  --mat-stepper-header-selected-state-label-text-size: 16px;
  --mat-stepper-header-selected-state-label-text-weight: 400;
  --mat-toolbar-title-text-font: Roboto, "Helvetica Neue", sans-serif;
  --mat-toolbar-title-text-line-height: 32px;
  --mat-toolbar-title-text-size: 20px;
  --mat-toolbar-title-text-tracking: normal;
  --mat-toolbar-title-text-weight: 500;
  --mat-tree-node-text-font: Roboto, "Helvetica Neue", sans-serif;
  --mat-tree-node-text-size: 14px;
  --mat-tree-node-text-weight: 400;
  --mat-option-label-text-font: Roboto, "Helvetica Neue", sans-serif;
  --mat-option-label-text-line-height: 24px;
  --mat-option-label-text-size: 16px;
  --mat-option-label-text-tracking: normal;
  --mat-option-label-text-weight: 400;
  --mat-optgroup-label-text-font: Roboto, "Helvetica Neue", sans-serif;
  --mat-optgroup-label-text-line-height: 24px;
  --mat-optgroup-label-text-size: 16px;
  --mat-optgroup-label-text-tracking: normal;
  --mat-optgroup-label-text-weight: 400;
  --mat-card-title-text-font: Roboto, "Helvetica Neue", sans-serif;
  --mat-card-title-text-line-height: 32px;
  --mat-card-title-text-size: 20px;
  --mat-card-title-text-tracking: normal;
  --mat-card-title-text-weight: 500;
  --mat-card-subtitle-text-font: Roboto, "Helvetica Neue", sans-serif;
  --mat-card-subtitle-text-line-height: 22px;
  --mat-card-subtitle-text-size: 14px;
  --mat-card-subtitle-text-tracking: normal;
  --mat-card-subtitle-text-weight: 500;
  --mdc-plain-tooltip-supporting-text-font: Roboto, "Helvetica Neue", sans-serif;
  --mdc-plain-tooltip-supporting-text-size: 12px;
  --mdc-plain-tooltip-supporting-text-weight: 400;
  --mdc-plain-tooltip-supporting-text-tracking: normal;
  --mdc-filled-text-field-label-text-font: Roboto, "Helvetica Neue", sans-serif;
  --mdc-filled-text-field-label-text-size: 16px;
  --mdc-filled-text-field-label-text-tracking: normal;
  --mdc-filled-text-field-label-text-weight: 400;
  --mdc-outlined-text-field-label-text-font: Roboto, "Helvetica Neue", sans-serif;
  --mdc-outlined-text-field-label-text-size: 16px;
  --mdc-outlined-text-field-label-text-tracking: normal;
  --mdc-outlined-text-field-label-text-weight: 400;
  --mat-form-field-container-text-font: Roboto, "Helvetica Neue", sans-serif;
  --mat-form-field-container-text-line-height: 24px;
  --mat-form-field-container-text-size: 16px;
  --mat-form-field-container-text-tracking: normal;
  --mat-form-field-container-text-weight: 400;
  --mat-form-field-outlined-label-text-populated-size: 16px;
  --mat-form-field-subscript-text-font: Roboto, "Helvetica Neue", sans-serif;
  --mat-form-field-subscript-text-line-height: 20px;
  --mat-form-field-subscript-text-size: 12px;
  --mat-form-field-subscript-text-tracking: normal;
  --mat-form-field-subscript-text-weight: 400;
  --mat-select-trigger-text-font: Roboto, "Helvetica Neue", sans-serif;
  --mat-select-trigger-text-line-height: 24px;
  --mat-select-trigger-text-size: 16px;
  --mat-select-trigger-text-tracking: normal;
  --mat-select-trigger-text-weight: 400;
  --mdc-dialog-subhead-font: Roboto, "Helvetica Neue", sans-serif;
  --mdc-dialog-subhead-line-height: 32px;
  --mdc-dialog-subhead-size: 20px;
  --mdc-dialog-subhead-weight: 500;
  --mdc-dialog-subhead-tracking: normal;
  --mdc-dialog-supporting-text-font: Roboto, "Helvetica Neue", sans-serif;
  --mdc-dialog-supporting-text-line-height: 24px;
  --mdc-dialog-supporting-text-size: 16px;
  --mdc-dialog-supporting-text-weight: 400;
  --mdc-dialog-supporting-text-tracking: normal;
}

.mat-mdc-standard-chip {
  --mdc-chip-label-text-font: Roboto, "Helvetica Neue", sans-serif;
  --mdc-chip-label-text-line-height: 20px;
  --mdc-chip-label-text-size: 14px;
  --mdc-chip-label-text-tracking: normal;
  --mdc-chip-label-text-weight: 400;
}

html .mat-mdc-slide-toggle {
  --mat-switch-label-text-font: Roboto, "Helvetica Neue", sans-serif;
  --mat-switch-label-text-line-height: 20px;
  --mat-switch-label-text-size: 14px;
  --mat-switch-label-text-tracking: normal;
  --mat-switch-label-text-weight: 400;
}

html {
  --mat-radio-label-text-font: Roboto, "Helvetica Neue", sans-serif;
  --mat-radio-label-text-line-height: 20px;
  --mat-radio-label-text-size: 14px;
  --mat-radio-label-text-tracking: normal;
  --mat-radio-label-text-weight: 400;
  --mdc-slider-label-label-text-font: Roboto, "Helvetica Neue", sans-serif;
  --mdc-slider-label-label-text-size: 14px;
  --mdc-slider-label-label-text-line-height: 22px;
  --mdc-slider-label-label-text-tracking: normal;
  --mdc-slider-label-label-text-weight: 500;
  --mat-menu-item-label-text-font: Roboto, "Helvetica Neue", sans-serif;
  --mat-menu-item-label-text-size: 16px;
  --mat-menu-item-label-text-tracking: normal;
  --mat-menu-item-label-text-line-height: 24px;
  --mat-menu-item-label-text-weight: 400;
  --mdc-list-list-item-label-text-font: Roboto, "Helvetica Neue", sans-serif;
  --mdc-list-list-item-label-text-line-height: 24px;
  --mdc-list-list-item-label-text-size: 16px;
  --mdc-list-list-item-label-text-tracking: normal;
  --mdc-list-list-item-label-text-weight: 400;
  --mdc-list-list-item-supporting-text-font: Roboto, "Helvetica Neue", sans-serif;
  --mdc-list-list-item-supporting-text-line-height: 20px;
  --mdc-list-list-item-supporting-text-size: 14px;
  --mdc-list-list-item-supporting-text-tracking: normal;
  --mdc-list-list-item-supporting-text-weight: 400;
  --mdc-list-list-item-trailing-supporting-text-font: Roboto, "Helvetica Neue", sans-serif;
  --mdc-list-list-item-trailing-supporting-text-line-height: 20px;
  --mdc-list-list-item-trailing-supporting-text-size: 12px;
  --mdc-list-list-item-trailing-supporting-text-tracking: normal;
  --mdc-list-list-item-trailing-supporting-text-weight: 400;
}

.mdc-list-group__subheader {
  font: 400 16px / 28px Roboto, "Helvetica Neue", sans-serif;
  letter-spacing: normal;
}

html {
  --mat-paginator-container-text-font: Roboto, "Helvetica Neue", sans-serif;
  --mat-paginator-container-text-line-height: 20px;
  --mat-paginator-container-text-size: 12px;
  --mat-paginator-container-text-tracking: normal;
  --mat-paginator-container-text-weight: 400;
  --mat-paginator-select-trigger-text-size: 12px;
}

.mat-mdc-tab-header {
  --mat-tab-header-label-text-font: Roboto, "Helvetica Neue", sans-serif;
  --mat-tab-header-label-text-size: 14px;
  --mat-tab-header-label-text-tracking: normal;
  --mat-tab-header-label-text-line-height: 14px;
  --mat-tab-header-label-text-weight: 500;
}

html {
  --mat-checkbox-label-text-font: Roboto, "Helvetica Neue", sans-serif;
  --mat-checkbox-label-text-line-height: 20px;
  --mat-checkbox-label-text-size: 14px;
  --mat-checkbox-label-text-tracking: normal;
  --mat-checkbox-label-text-weight: 400;
  --mdc-text-button-label-text-font: Roboto, "Helvetica Neue", sans-serif;
  --mdc-text-button-label-text-size: 14px;
  --mdc-text-button-label-text-tracking: normal;
  --mdc-text-button-label-text-weight: 500;
  --mdc-text-button-label-text-transform: none;
  --mdc-filled-button-label-text-font: Roboto, "Helvetica Neue", sans-serif;
  --mdc-filled-button-label-text-size: 14px;
  --mdc-filled-button-label-text-tracking: normal;
  --mdc-filled-button-label-text-weight: 500;
  --mdc-filled-button-label-text-transform: none;
  --mdc-protected-button-label-text-font: Roboto, "Helvetica Neue", sans-serif;
  --mdc-protected-button-label-text-size: 14px;
  --mdc-protected-button-label-text-tracking: normal;
  --mdc-protected-button-label-text-weight: 500;
  --mdc-protected-button-label-text-transform: none;
  --mdc-outlined-button-label-text-font: Roboto, "Helvetica Neue", sans-serif;
  --mdc-outlined-button-label-text-size: 14px;
  --mdc-outlined-button-label-text-tracking: normal;
  --mdc-outlined-button-label-text-weight: 500;
  --mdc-outlined-button-label-text-transform: none;
  --mdc-extended-fab-label-text-font: Roboto, "Helvetica Neue", sans-serif;
  --mdc-extended-fab-label-text-size: 14px;
  --mdc-extended-fab-label-text-tracking: normal;
  --mdc-extended-fab-label-text-weight: 500;
  --mdc-snackbar-supporting-text-font: Roboto, "Helvetica Neue", sans-serif;
  --mdc-snackbar-supporting-text-line-height: 20px;
  --mdc-snackbar-supporting-text-size: 14px;
  --mdc-snackbar-supporting-text-weight: 400;
  --mat-table-header-headline-font: Roboto, "Helvetica Neue", sans-serif;
  --mat-table-header-headline-line-height: 22px;
  --mat-table-header-headline-size: 14px;
  --mat-table-header-headline-weight: 500;
  --mat-table-header-headline-tracking: normal;
  --mat-table-row-item-label-text-font: Roboto, "Helvetica Neue", sans-serif;
  --mat-table-row-item-label-text-line-height: 20px;
  --mat-table-row-item-label-text-size: 14px;
  --mat-table-row-item-label-text-weight: 400;
  --mat-table-row-item-label-text-tracking: normal;
  --mat-table-footer-supporting-text-font: Roboto, "Helvetica Neue", sans-serif;
  --mat-table-footer-supporting-text-line-height: 20px;
  --mat-table-footer-supporting-text-size: 14px;
  --mat-table-footer-supporting-text-weight: 400;
  --mat-table-footer-supporting-text-tracking: normal;
}

.mat-ripple {
  overflow: hidden;
  position: relative;
}
.mat-ripple:not(:empty) {
  transform: translateZ(0);
}

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

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

.cdk-drag-preview .mat-ripple-element, .cdk-drag-placeholder .mat-ripple-element {
  display: none;
}

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

.cdk-overlay-container, .cdk-global-overlay-wrapper {
  pointer-events: none;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.cdk-overlay-container {
  position: fixed;
  z-index: 1000;
}
.cdk-overlay-container:empty {
  display: none;
}

.cdk-global-overlay-wrapper {
  display: flex;
  position: absolute;
  z-index: 1000;
}

.cdk-overlay-pane {
  position: absolute;
  pointer-events: auto;
  box-sizing: border-box;
  z-index: 1000;
  display: flex;
  max-width: 100%;
  max-height: 100%;
}

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

.cdk-overlay-dark-backdrop {
  background: rgba(0, 0, 0, 0.32);
}

.cdk-overlay-transparent-backdrop {
  transition: visibility 1ms linear, opacity 1ms linear;
  visibility: hidden;
  opacity: 1;
}
.cdk-overlay-transparent-backdrop.cdk-overlay-backdrop-showing {
  opacity: 0;
  visibility: visible;
}

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

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

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

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

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

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

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

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

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

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

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

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

.mat-app-background {
  background-color: var(--mat-app-background-color, var(--mat-app-background, transparent));
  color: var(--mat-app-text-color, var(--mat-app-on-background, inherit));
}

.mat-elevation-z0, .mat-mdc-elevation-specific.mat-elevation-z0 {
  box-shadow: var(--mat-app-elevation-shadow-level-0, none);
}

.mat-elevation-z1, .mat-mdc-elevation-specific.mat-elevation-z1 {
  box-shadow: var(--mat-app-elevation-shadow-level-1, none);
}

.mat-elevation-z2, .mat-mdc-elevation-specific.mat-elevation-z2 {
  box-shadow: var(--mat-app-elevation-shadow-level-2, none);
}

.mat-elevation-z3, .mat-mdc-elevation-specific.mat-elevation-z3 {
  box-shadow: var(--mat-app-elevation-shadow-level-3, none);
}

.mat-elevation-z4, .mat-mdc-elevation-specific.mat-elevation-z4 {
  box-shadow: var(--mat-app-elevation-shadow-level-4, none);
}

.mat-elevation-z5, .mat-mdc-elevation-specific.mat-elevation-z5 {
  box-shadow: var(--mat-app-elevation-shadow-level-5, none);
}

.mat-elevation-z6, .mat-mdc-elevation-specific.mat-elevation-z6 {
  box-shadow: var(--mat-app-elevation-shadow-level-6, none);
}

.mat-elevation-z7, .mat-mdc-elevation-specific.mat-elevation-z7 {
  box-shadow: var(--mat-app-elevation-shadow-level-7, none);
}

.mat-elevation-z8, .mat-mdc-elevation-specific.mat-elevation-z8 {
  box-shadow: var(--mat-app-elevation-shadow-level-8, none);
}

.mat-elevation-z9, .mat-mdc-elevation-specific.mat-elevation-z9 {
  box-shadow: var(--mat-app-elevation-shadow-level-9, none);
}

.mat-elevation-z10, .mat-mdc-elevation-specific.mat-elevation-z10 {
  box-shadow: var(--mat-app-elevation-shadow-level-10, none);
}

.mat-elevation-z11, .mat-mdc-elevation-specific.mat-elevation-z11 {
  box-shadow: var(--mat-app-elevation-shadow-level-11, none);
}

.mat-elevation-z12, .mat-mdc-elevation-specific.mat-elevation-z12 {
  box-shadow: var(--mat-app-elevation-shadow-level-12, none);
}

.mat-elevation-z13, .mat-mdc-elevation-specific.mat-elevation-z13 {
  box-shadow: var(--mat-app-elevation-shadow-level-13, none);
}

.mat-elevation-z14, .mat-mdc-elevation-specific.mat-elevation-z14 {
  box-shadow: var(--mat-app-elevation-shadow-level-14, none);
}

.mat-elevation-z15, .mat-mdc-elevation-specific.mat-elevation-z15 {
  box-shadow: var(--mat-app-elevation-shadow-level-15, none);
}

.mat-elevation-z16, .mat-mdc-elevation-specific.mat-elevation-z16 {
  box-shadow: var(--mat-app-elevation-shadow-level-16, none);
}

.mat-elevation-z17, .mat-mdc-elevation-specific.mat-elevation-z17 {
  box-shadow: var(--mat-app-elevation-shadow-level-17, none);
}

.mat-elevation-z18, .mat-mdc-elevation-specific.mat-elevation-z18 {
  box-shadow: var(--mat-app-elevation-shadow-level-18, none);
}

.mat-elevation-z19, .mat-mdc-elevation-specific.mat-elevation-z19 {
  box-shadow: var(--mat-app-elevation-shadow-level-19, none);
}

.mat-elevation-z20, .mat-mdc-elevation-specific.mat-elevation-z20 {
  box-shadow: var(--mat-app-elevation-shadow-level-20, none);
}

.mat-elevation-z21, .mat-mdc-elevation-specific.mat-elevation-z21 {
  box-shadow: var(--mat-app-elevation-shadow-level-21, none);
}

.mat-elevation-z22, .mat-mdc-elevation-specific.mat-elevation-z22 {
  box-shadow: var(--mat-app-elevation-shadow-level-22, none);
}

.mat-elevation-z23, .mat-mdc-elevation-specific.mat-elevation-z23 {
  box-shadow: var(--mat-app-elevation-shadow-level-23, none);
}

.mat-elevation-z24, .mat-mdc-elevation-specific.mat-elevation-z24 {
  box-shadow: var(--mat-app-elevation-shadow-level-24, none);
}

html {
  --mat-form-field-container-height: 52px;
  --mat-form-field-filled-label-display: block;
  --mat-form-field-container-vertical-padding: 14px;
  --mat-form-field-filled-with-label-container-padding-top: 22px;
  --mat-form-field-filled-with-label-container-padding-bottom: 6px;
}

.light-theme {
  --mat-ripple-color: rgba(0, 0, 0, 0.1);
  --mat-option-selected-state-label-text-color: #3f51b5;
  --mat-option-label-text-color: rgba(0, 0, 0, 0.87);
  --mat-option-hover-state-layer-color: rgba(0, 0, 0, 0.04);
  --mat-option-focus-state-layer-color: rgba(0, 0, 0, 0.04);
  --mat-option-selected-state-layer-color: rgba(0, 0, 0, 0.04);
  --mat-optgroup-label-text-color: rgba(0, 0, 0, 0.87);
  --mat-full-pseudo-checkbox-selected-icon-color: #ff4081;
  --mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;
  --mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;
  --mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;
  --mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;
  --mat-minimal-pseudo-checkbox-selected-checkmark-color: #ff4081;
  --mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0;
  --mat-app-background-color: #fafafa;
  --mat-app-text-color: rgba(0, 0, 0, 0.87);
  --mat-app-elevation-shadow-level-0: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-1: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-2: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-3: 0px 3px 3px -2px rgba(0, 0, 0, 0.2), 0px 3px 4px 0px rgba(0, 0, 0, 0.14), 0px 1px 8px 0px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-4: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-5: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 5px 8px 0px rgba(0, 0, 0, 0.14), 0px 1px 14px 0px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-6: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-7: 0px 4px 5px -2px rgba(0, 0, 0, 0.2), 0px 7px 10px 1px rgba(0, 0, 0, 0.14), 0px 2px 16px 1px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-8: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-9: 0px 5px 6px -3px rgba(0, 0, 0, 0.2), 0px 9px 12px 1px rgba(0, 0, 0, 0.14), 0px 3px 16px 2px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-10: 0px 6px 6px -3px rgba(0, 0, 0, 0.2), 0px 10px 14px 1px rgba(0, 0, 0, 0.14), 0px 4px 18px 3px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-11: 0px 6px 7px -4px rgba(0, 0, 0, 0.2), 0px 11px 15px 1px rgba(0, 0, 0, 0.14), 0px 4px 20px 3px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-12: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 12px 17px 2px rgba(0, 0, 0, 0.14), 0px 5px 22px 4px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-13: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 13px 19px 2px rgba(0, 0, 0, 0.14), 0px 5px 24px 4px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-14: 0px 7px 9px -4px rgba(0, 0, 0, 0.2), 0px 14px 21px 2px rgba(0, 0, 0, 0.14), 0px 5px 26px 4px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-15: 0px 8px 9px -5px rgba(0, 0, 0, 0.2), 0px 15px 22px 2px rgba(0, 0, 0, 0.14), 0px 6px 28px 5px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-16: 0px 8px 10px -5px rgba(0, 0, 0, 0.2), 0px 16px 24px 2px rgba(0, 0, 0, 0.14), 0px 6px 30px 5px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-17: 0px 8px 11px -5px rgba(0, 0, 0, 0.2), 0px 17px 26px 2px rgba(0, 0, 0, 0.14), 0px 6px 32px 5px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-18: 0px 9px 11px -5px rgba(0, 0, 0, 0.2), 0px 18px 28px 2px rgba(0, 0, 0, 0.14), 0px 7px 34px 6px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-19: 0px 9px 12px -6px rgba(0, 0, 0, 0.2), 0px 19px 29px 2px rgba(0, 0, 0, 0.14), 0px 7px 36px 6px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-20: 0px 10px 13px -6px rgba(0, 0, 0, 0.2), 0px 20px 31px 3px rgba(0, 0, 0, 0.14), 0px 8px 38px 7px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-21: 0px 10px 13px -6px rgba(0, 0, 0, 0.2), 0px 21px 33px 3px rgba(0, 0, 0, 0.14), 0px 8px 40px 7px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-22: 0px 10px 14px -6px rgba(0, 0, 0, 0.2), 0px 22px 35px 3px rgba(0, 0, 0, 0.14), 0px 8px 42px 7px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-23: 0px 11px 14px -7px rgba(0, 0, 0, 0.2), 0px 23px 36px 3px rgba(0, 0, 0, 0.14), 0px 9px 44px 8px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-24: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12);
  --mdc-elevated-card-container-shape: 4px;
  --mdc-outlined-card-container-shape: 4px;
  --mdc-outlined-card-outline-width: 1px;
  --mdc-elevated-card-container-color: white;
  --mdc-elevated-card-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
  --mdc-outlined-card-container-color: white;
  --mdc-outlined-card-outline-color: rgba(0, 0, 0, 0.12);
  --mdc-outlined-card-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
  --mat-card-subtitle-text-color: rgba(0, 0, 0, 0.54);
  --mdc-linear-progress-active-indicator-height: 4px;
  --mdc-linear-progress-track-height: 4px;
  --mdc-linear-progress-track-shape: 0;
  --mdc-plain-tooltip-container-shape: 4px;
  --mdc-plain-tooltip-supporting-text-line-height: 16px;
  --mdc-plain-tooltip-container-color: #616161;
  --mdc-plain-tooltip-supporting-text-color: #fff;
  --mdc-filled-text-field-active-indicator-height: 1px;
  --mdc-filled-text-field-focus-active-indicator-height: 2px;
  --mdc-filled-text-field-container-shape: 4px;
  --mdc-outlined-text-field-outline-width: 1px;
  --mdc-outlined-text-field-focus-outline-width: 2px;
  --mdc-outlined-text-field-container-shape: 4px;
  --mdc-filled-text-field-caret-color: #3f51b5;
  --mdc-filled-text-field-focus-active-indicator-color: #3f51b5;
  --mdc-filled-text-field-focus-label-text-color: rgba(63, 81, 181, 0.87);
  --mdc-filled-text-field-container-color: whitesmoke;
  --mdc-filled-text-field-disabled-container-color: #fafafa;
  --mdc-filled-text-field-label-text-color: rgba(0, 0, 0, 0.6);
  --mdc-filled-text-field-hover-label-text-color: rgba(0, 0, 0, 0.6);
  --mdc-filled-text-field-disabled-label-text-color: rgba(0, 0, 0, 0.38);
  --mdc-filled-text-field-input-text-color: rgba(0, 0, 0, 0.87);
  --mdc-filled-text-field-disabled-input-text-color: rgba(0, 0, 0, 0.38);
  --mdc-filled-text-field-input-text-placeholder-color: rgba(0, 0, 0, 0.6);
  --mdc-filled-text-field-error-hover-label-text-color: #f44336;
  --mdc-filled-text-field-error-focus-label-text-color: #f44336;
  --mdc-filled-text-field-error-label-text-color: #f44336;
  --mdc-filled-text-field-error-caret-color: #f44336;
  --mdc-filled-text-field-active-indicator-color: rgba(0, 0, 0, 0.42);
  --mdc-filled-text-field-disabled-active-indicator-color: rgba(0, 0, 0, 0.06);
  --mdc-filled-text-field-hover-active-indicator-color: rgba(0, 0, 0, 0.87);
  --mdc-filled-text-field-error-active-indicator-color: #f44336;
  --mdc-filled-text-field-error-focus-active-indicator-color: #f44336;
  --mdc-filled-text-field-error-hover-active-indicator-color: #f44336;
  --mdc-outlined-text-field-caret-color: #3f51b5;
  --mdc-outlined-text-field-focus-outline-color: #3f51b5;
  --mdc-outlined-text-field-focus-label-text-color: rgba(63, 81, 181, 0.87);
  --mdc-outlined-text-field-label-text-color: rgba(0, 0, 0, 0.6);
  --mdc-outlined-text-field-hover-label-text-color: rgba(0, 0, 0, 0.6);
  --mdc-outlined-text-field-disabled-label-text-color: rgba(0, 0, 0, 0.38);
  --mdc-outlined-text-field-input-text-color: rgba(0, 0, 0, 0.87);
  --mdc-outlined-text-field-disabled-input-text-color: rgba(0, 0, 0, 0.38);
  --mdc-outlined-text-field-input-text-placeholder-color: rgba(0, 0, 0, 0.6);
  --mdc-outlined-text-field-error-caret-color: #f44336;
  --mdc-outlined-text-field-error-focus-label-text-color: #f44336;
  --mdc-outlined-text-field-error-label-text-color: #f44336;
  --mdc-outlined-text-field-error-hover-label-text-color: #f44336;
  --mdc-outlined-text-field-outline-color: rgba(0, 0, 0, 0.38);
  --mdc-outlined-text-field-disabled-outline-color: rgba(0, 0, 0, 0.06);
  --mdc-outlined-text-field-hover-outline-color: rgba(0, 0, 0, 0.87);
  --mdc-outlined-text-field-error-focus-outline-color: #f44336;
  --mdc-outlined-text-field-error-hover-outline-color: #f44336;
  --mdc-outlined-text-field-error-outline-color: #f44336;
  --mat-form-field-focus-select-arrow-color: rgba(63, 81, 181, 0.87);
  --mat-form-field-disabled-input-text-placeholder-color: rgba(0, 0, 0, 0.38);
  --mat-form-field-state-layer-color: rgba(0, 0, 0, 0.87);
  --mat-form-field-error-text-color: #f44336;
  --mat-form-field-select-option-text-color: inherit;
  --mat-form-field-select-disabled-option-text-color: GrayText;
  --mat-form-field-leading-icon-color: unset;
  --mat-form-field-disabled-leading-icon-color: unset;
  --mat-form-field-trailing-icon-color: unset;
  --mat-form-field-disabled-trailing-icon-color: unset;
  --mat-form-field-error-focus-trailing-icon-color: unset;
  --mat-form-field-error-hover-trailing-icon-color: unset;
  --mat-form-field-error-trailing-icon-color: unset;
  --mat-form-field-enabled-select-arrow-color: rgba(0, 0, 0, 0.54);
  --mat-form-field-disabled-select-arrow-color: rgba(0, 0, 0, 0.38);
  --mat-form-field-hover-state-layer-opacity: 0.04;
  --mat-form-field-focus-state-layer-opacity: 0.08;
  --mat-select-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  --mat-select-panel-background-color: white;
  --mat-select-enabled-trigger-text-color: rgba(0, 0, 0, 0.87);
  --mat-select-disabled-trigger-text-color: rgba(0, 0, 0, 0.38);
  --mat-select-placeholder-text-color: rgba(0, 0, 0, 0.6);
  --mat-select-enabled-arrow-color: rgba(0, 0, 0, 0.54);
  --mat-select-disabled-arrow-color: rgba(0, 0, 0, 0.38);
  --mat-select-focused-arrow-color: rgba(63, 81, 181, 0.87);
  --mat-select-invalid-arrow-color: rgba(244, 67, 54, 0.87);
  --mat-autocomplete-container-shape: 4px;
  --mat-autocomplete-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  --mat-autocomplete-background-color: white;
  --mdc-dialog-container-shape: 4px;
  --mat-dialog-container-elevation-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12);
  --mat-dialog-container-max-width: 80vw;
  --mat-dialog-container-small-max-width: 80vw;
  --mat-dialog-container-min-width: 0;
  --mat-dialog-actions-alignment: start;
  --mat-dialog-actions-padding: 8px;
  --mat-dialog-content-padding: 20px 24px;
  --mat-dialog-with-actions-content-padding: 20px 24px;
  --mat-dialog-headline-padding: 0 24px 9px;
  --mdc-dialog-container-color: white;
  --mdc-dialog-subhead-color: rgba(0, 0, 0, 0.87);
  --mdc-dialog-supporting-text-color: rgba(0, 0, 0, 0.6);
  --mdc-switch-disabled-selected-icon-opacity: 0.38;
  --mdc-switch-disabled-track-opacity: 0.12;
  --mdc-switch-disabled-unselected-icon-opacity: 0.38;
  --mdc-switch-handle-height: 20px;
  --mdc-switch-handle-shape: 10px;
  --mdc-switch-handle-width: 20px;
  --mdc-switch-selected-icon-size: 18px;
  --mdc-switch-track-height: 14px;
  --mdc-switch-track-shape: 7px;
  --mdc-switch-track-width: 36px;
  --mdc-switch-unselected-icon-size: 18px;
  --mdc-switch-selected-focus-state-layer-opacity: 0.12;
  --mdc-switch-selected-hover-state-layer-opacity: 0.04;
  --mdc-switch-selected-pressed-state-layer-opacity: 0.1;
  --mdc-switch-unselected-focus-state-layer-opacity: 0.12;
  --mdc-switch-unselected-hover-state-layer-opacity: 0.04;
  --mdc-switch-unselected-pressed-state-layer-opacity: 0.1;
  --mdc-switch-selected-focus-state-layer-color: #3949ab;
  --mdc-switch-selected-handle-color: #3949ab;
  --mdc-switch-selected-hover-state-layer-color: #3949ab;
  --mdc-switch-selected-pressed-state-layer-color: #3949ab;
  --mdc-switch-selected-focus-handle-color: #1a237e;
  --mdc-switch-selected-hover-handle-color: #1a237e;
  --mdc-switch-selected-pressed-handle-color: #1a237e;
  --mdc-switch-selected-focus-track-color: #7986cb;
  --mdc-switch-selected-hover-track-color: #7986cb;
  --mdc-switch-selected-pressed-track-color: #7986cb;
  --mdc-switch-selected-track-color: #7986cb;
  --mdc-switch-disabled-selected-handle-color: #424242;
  --mdc-switch-disabled-selected-icon-color: #fff;
  --mdc-switch-disabled-selected-track-color: #424242;
  --mdc-switch-disabled-unselected-handle-color: #424242;
  --mdc-switch-disabled-unselected-icon-color: #fff;
  --mdc-switch-disabled-unselected-track-color: #424242;
  --mdc-switch-handle-surface-color: #fff;
  --mdc-switch-selected-icon-color: #fff;
  --mdc-switch-unselected-focus-handle-color: #212121;
  --mdc-switch-unselected-focus-state-layer-color: #424242;
  --mdc-switch-unselected-focus-track-color: #e0e0e0;
  --mdc-switch-unselected-handle-color: #616161;
  --mdc-switch-unselected-hover-handle-color: #212121;
  --mdc-switch-unselected-hover-state-layer-color: #424242;
  --mdc-switch-unselected-hover-track-color: #e0e0e0;
  --mdc-switch-unselected-icon-color: #fff;
  --mdc-switch-unselected-pressed-handle-color: #212121;
  --mdc-switch-unselected-pressed-state-layer-color: #424242;
  --mdc-switch-unselected-pressed-track-color: #e0e0e0;
  --mdc-switch-unselected-track-color: #e0e0e0;
  --mdc-switch-handle-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
  --mdc-switch-disabled-handle-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
  --mdc-switch-disabled-label-text-color: rgba(0, 0, 0, 0.38);
  --mdc-radio-disabled-selected-icon-opacity: 0.38;
  --mdc-radio-disabled-unselected-icon-opacity: 0.38;
  --mdc-radio-state-layer-size: 40px;
  --mdc-slider-active-track-height: 6px;
  --mdc-slider-active-track-shape: 9999px;
  --mdc-slider-handle-height: 20px;
  --mdc-slider-handle-shape: 50%;
  --mdc-slider-handle-width: 20px;
  --mdc-slider-inactive-track-height: 4px;
  --mdc-slider-inactive-track-shape: 9999px;
  --mdc-slider-with-overlap-handle-outline-width: 1px;
  --mdc-slider-with-tick-marks-active-container-opacity: 0.6;
  --mdc-slider-with-tick-marks-container-shape: 50%;
  --mdc-slider-with-tick-marks-container-size: 2px;
  --mdc-slider-with-tick-marks-inactive-container-opacity: 0.6;
  --mdc-slider-handle-elevation: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
  --mat-slider-value-indicator-width: auto;
  --mat-slider-value-indicator-height: 32px;
  --mat-slider-value-indicator-caret-display: block;
  --mat-slider-value-indicator-border-radius: 4px;
  --mat-slider-value-indicator-padding: 0 12px;
  --mat-slider-value-indicator-text-transform: none;
  --mat-slider-value-indicator-container-transform: translateX(-50%);
  --mdc-slider-handle-color: #3f51b5;
  --mdc-slider-focus-handle-color: #3f51b5;
  --mdc-slider-hover-handle-color: #3f51b5;
  --mdc-slider-active-track-color: #3f51b5;
  --mdc-slider-inactive-track-color: #3f51b5;
  --mdc-slider-with-tick-marks-inactive-container-color: #3f51b5;
  --mdc-slider-with-tick-marks-active-container-color: white;
  --mdc-slider-disabled-active-track-color: #000;
  --mdc-slider-disabled-handle-color: #000;
  --mdc-slider-disabled-inactive-track-color: #000;
  --mdc-slider-label-container-color: #000;
  --mdc-slider-label-label-text-color: #fff;
  --mdc-slider-with-overlap-handle-outline-color: #fff;
  --mdc-slider-with-tick-marks-disabled-container-color: #000;
  --mat-slider-ripple-color: #3f51b5;
  --mat-slider-hover-state-layer-color: rgba(63, 81, 181, 0.05);
  --mat-slider-focus-state-layer-color: rgba(63, 81, 181, 0.2);
  --mat-slider-value-indicator-opacity: 0.6;
  --mat-menu-container-shape: 4px;
  --mat-menu-divider-bottom-spacing: 0;
  --mat-menu-divider-top-spacing: 0;
  --mat-menu-item-spacing: 16px;
  --mat-menu-item-icon-size: 24px;
  --mat-menu-item-leading-spacing: 16px;
  --mat-menu-item-trailing-spacing: 16px;
  --mat-menu-item-with-icon-leading-spacing: 16px;
  --mat-menu-item-with-icon-trailing-spacing: 16px;
  --mat-menu-base-elevation-level: 8;
  --mat-menu-item-label-text-color: rgba(0, 0, 0, 0.87);
  --mat-menu-item-icon-color: rgba(0, 0, 0, 0.87);
  --mat-menu-item-hover-state-layer-color: rgba(0, 0, 0, 0.04);
  --mat-menu-item-focus-state-layer-color: rgba(0, 0, 0, 0.04);
  --mat-menu-container-color: white;
  --mat-menu-divider-color: rgba(0, 0, 0, 0.12);
  --mdc-list-list-item-container-shape: 0;
  --mdc-list-list-item-leading-avatar-shape: 50%;
  --mdc-list-list-item-container-color: transparent;
  --mdc-list-list-item-selected-container-color: transparent;
  --mdc-list-list-item-leading-avatar-color: transparent;
  --mdc-list-list-item-leading-icon-size: 24px;
  --mdc-list-list-item-leading-avatar-size: 40px;
  --mdc-list-list-item-trailing-icon-size: 24px;
  --mdc-list-list-item-disabled-state-layer-color: transparent;
  --mdc-list-list-item-disabled-state-layer-opacity: 0;
  --mdc-list-list-item-disabled-label-text-opacity: 0.38;
  --mdc-list-list-item-disabled-leading-icon-opacity: 0.38;
  --mdc-list-list-item-disabled-trailing-icon-opacity: 0.38;
  --mat-list-active-indicator-color: transparent;
  --mat-list-active-indicator-shape: 4px;
  --mdc-list-list-item-label-text-color: rgba(0, 0, 0, 0.87);
  --mdc-list-list-item-supporting-text-color: rgba(0, 0, 0, 0.54);
  --mdc-list-list-item-leading-icon-color: rgba(0, 0, 0, 0.38);
  --mdc-list-list-item-trailing-supporting-text-color: rgba(0, 0, 0, 0.38);
  --mdc-list-list-item-trailing-icon-color: rgba(0, 0, 0, 0.38);
  --mdc-list-list-item-selected-trailing-icon-color: rgba(0, 0, 0, 0.38);
  --mdc-list-list-item-disabled-label-text-color: black;
  --mdc-list-list-item-disabled-leading-icon-color: black;
  --mdc-list-list-item-disabled-trailing-icon-color: black;
  --mdc-list-list-item-hover-label-text-color: rgba(0, 0, 0, 0.87);
  --mdc-list-list-item-hover-leading-icon-color: rgba(0, 0, 0, 0.38);
  --mdc-list-list-item-hover-trailing-icon-color: rgba(0, 0, 0, 0.38);
  --mdc-list-list-item-focus-label-text-color: rgba(0, 0, 0, 0.87);
  --mdc-list-list-item-hover-state-layer-color: black;
  --mdc-list-list-item-hover-state-layer-opacity: 0.04;
  --mdc-list-list-item-focus-state-layer-color: black;
  --mdc-list-list-item-focus-state-layer-opacity: 0.12;
  --mat-paginator-container-text-color: rgba(0, 0, 0, 0.87);
  --mat-paginator-container-background-color: white;
  --mat-paginator-enabled-icon-color: rgba(0, 0, 0, 0.54);
  --mat-paginator-disabled-icon-color: rgba(0, 0, 0, 0.12);
  --mdc-secondary-navigation-tab-container-height: 48px;
  --mdc-tab-indicator-active-indicator-height: 2px;
  --mdc-tab-indicator-active-indicator-shape: 0;
  --mat-tab-header-divider-color: transparent;
  --mat-tab-header-divider-height: 0;
  --mdc-checkbox-disabled-selected-checkmark-color: #fff;
  --mdc-checkbox-selected-focus-state-layer-opacity: 0.16;
  --mdc-checkbox-selected-hover-state-layer-opacity: 0.04;
  --mdc-checkbox-selected-pressed-state-layer-opacity: 0.16;
  --mdc-checkbox-unselected-focus-state-layer-opacity: 0.16;
  --mdc-checkbox-unselected-hover-state-layer-opacity: 0.04;
  --mdc-checkbox-unselected-pressed-state-layer-opacity: 0.16;
  --mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, 0.38);
  --mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, 0.38);
  --mdc-checkbox-selected-checkmark-color: white;
  --mdc-checkbox-selected-focus-icon-color: #ff4081;
  --mdc-checkbox-selected-hover-icon-color: #ff4081;
  --mdc-checkbox-selected-icon-color: #ff4081;
  --mdc-checkbox-selected-pressed-icon-color: #ff4081;
  --mdc-checkbox-unselected-focus-icon-color: #212121;
  --mdc-checkbox-unselected-hover-icon-color: #212121;
  --mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-checkbox-selected-focus-state-layer-color: #ff4081;
  --mdc-checkbox-selected-hover-state-layer-color: #ff4081;
  --mdc-checkbox-selected-pressed-state-layer-color: #ff4081;
  --mdc-checkbox-unselected-focus-state-layer-color: black;
  --mdc-checkbox-unselected-hover-state-layer-color: black;
  --mdc-checkbox-unselected-pressed-state-layer-color: black;
  --mat-checkbox-disabled-label-color: rgba(0, 0, 0, 0.38);
  --mat-checkbox-label-text-color: rgba(0, 0, 0, 0.87);
  --mdc-text-button-container-shape: 4px;
  --mdc-text-button-keep-touch-target: false;
  --mdc-filled-button-container-shape: 4px;
  --mdc-filled-button-keep-touch-target: false;
  --mdc-protected-button-container-shape: 4px;
  --mdc-protected-button-container-elevation-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
  --mdc-protected-button-disabled-container-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
  --mdc-protected-button-focus-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
  --mdc-protected-button-hover-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
  --mdc-protected-button-pressed-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  --mdc-outlined-button-keep-touch-target: false;
  --mdc-outlined-button-outline-width: 1px;
  --mdc-outlined-button-container-shape: 4px;
  --mat-text-button-horizontal-padding: 8px;
  --mat-text-button-with-icon-horizontal-padding: 8px;
  --mat-text-button-icon-spacing: 8px;
  --mat-text-button-icon-offset: 0;
  --mat-filled-button-horizontal-padding: 16px;
  --mat-filled-button-icon-spacing: 8px;
  --mat-filled-button-icon-offset: -4px;
  --mat-protected-button-horizontal-padding: 16px;
  --mat-protected-button-icon-spacing: 8px;
  --mat-protected-button-icon-offset: -4px;
  --mat-outlined-button-horizontal-padding: 15px;
  --mat-outlined-button-icon-spacing: 8px;
  --mat-outlined-button-icon-offset: -4px;
  --mdc-text-button-label-text-color: black;
  --mdc-text-button-disabled-label-text-color: rgba(0, 0, 0, 0.38);
  --mat-text-button-state-layer-color: black;
  --mat-text-button-disabled-state-layer-color: black;
  --mat-text-button-ripple-color: rgba(0, 0, 0, 0.1);
  --mat-text-button-hover-state-layer-opacity: 0.04;
  --mat-text-button-focus-state-layer-opacity: 0.12;
  --mat-text-button-pressed-state-layer-opacity: 0.12;
  --mdc-filled-button-container-color: white;
  --mdc-filled-button-label-text-color: black;
  --mdc-filled-button-disabled-container-color: rgba(0, 0, 0, 0.12);
  --mdc-filled-button-disabled-label-text-color: rgba(0, 0, 0, 0.38);
  --mat-filled-button-state-layer-color: black;
  --mat-filled-button-disabled-state-layer-color: black;
  --mat-filled-button-ripple-color: rgba(0, 0, 0, 0.1);
  --mat-filled-button-hover-state-layer-opacity: 0.04;
  --mat-filled-button-focus-state-layer-opacity: 0.12;
  --mat-filled-button-pressed-state-layer-opacity: 0.12;
  --mdc-protected-button-container-color: white;
  --mdc-protected-button-label-text-color: black;
  --mdc-protected-button-disabled-container-color: rgba(0, 0, 0, 0.12);
  --mdc-protected-button-disabled-label-text-color: rgba(0, 0, 0, 0.38);
  --mat-protected-button-state-layer-color: black;
  --mat-protected-button-disabled-state-layer-color: black;
  --mat-protected-button-ripple-color: rgba(0, 0, 0, 0.1);
  --mat-protected-button-hover-state-layer-opacity: 0.04;
  --mat-protected-button-focus-state-layer-opacity: 0.12;
  --mat-protected-button-pressed-state-layer-opacity: 0.12;
  --mdc-outlined-button-disabled-outline-color: rgba(0, 0, 0, 0.12);
  --mdc-outlined-button-disabled-label-text-color: rgba(0, 0, 0, 0.38);
  --mdc-outlined-button-label-text-color: black;
  --mdc-outlined-button-outline-color: rgba(0, 0, 0, 0.12);
  --mat-outlined-button-state-layer-color: black;
  --mat-outlined-button-disabled-state-layer-color: black;
  --mat-outlined-button-ripple-color: rgba(0, 0, 0, 0.1);
  --mat-outlined-button-hover-state-layer-opacity: 0.04;
  --mat-outlined-button-focus-state-layer-opacity: 0.12;
  --mat-outlined-button-pressed-state-layer-opacity: 0.12;
  --mdc-icon-button-icon-size: 24px;
  --mdc-icon-button-icon-color: inherit;
  --mdc-icon-button-disabled-icon-color: rgba(0, 0, 0, 0.38);
  --mat-icon-button-state-layer-color: black;
  --mat-icon-button-disabled-state-layer-color: black;
  --mat-icon-button-ripple-color: rgba(0, 0, 0, 0.1);
  --mat-icon-button-hover-state-layer-opacity: 0.04;
  --mat-icon-button-focus-state-layer-opacity: 0.12;
  --mat-icon-button-pressed-state-layer-opacity: 0.12;
  --mdc-fab-container-shape: 50%;
  --mdc-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);
  --mdc-fab-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  --mdc-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  --mdc-fab-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 12px 17px 2px rgba(0, 0, 0, 0.14), 0px 5px 22px 4px rgba(0, 0, 0, 0.12);
  --mdc-fab-small-container-shape: 50%;
  --mdc-fab-small-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);
  --mdc-fab-small-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  --mdc-fab-small-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  --mdc-fab-small-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 12px 17px 2px rgba(0, 0, 0, 0.14), 0px 5px 22px 4px rgba(0, 0, 0, 0.12);
  --mdc-extended-fab-container-height: 48px;
  --mdc-extended-fab-container-shape: 24px;
  --mdc-extended-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);
  --mdc-extended-fab-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  --mdc-extended-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  --mdc-extended-fab-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 12px 17px 2px rgba(0, 0, 0, 0.14), 0px 5px 22px 4px rgba(0, 0, 0, 0.12);
  --mdc-fab-container-color: white;
  --mat-fab-foreground-color: black;
  --mat-fab-state-layer-color: black;
  --mat-fab-disabled-state-layer-color: black;
  --mat-fab-ripple-color: rgba(0, 0, 0, 0.1);
  --mat-fab-hover-state-layer-opacity: 0.04;
  --mat-fab-focus-state-layer-opacity: 0.12;
  --mat-fab-pressed-state-layer-opacity: 0.12;
  --mat-fab-disabled-state-container-color: rgba(0, 0, 0, 0.12);
  --mat-fab-disabled-state-foreground-color: rgba(0, 0, 0, 0.38);
  --mdc-fab-small-container-color: white;
  --mat-fab-small-foreground-color: black;
  --mat-fab-small-state-layer-color: black;
  --mat-fab-small-disabled-state-layer-color: black;
  --mat-fab-small-ripple-color: rgba(0, 0, 0, 0.1);
  --mat-fab-small-hover-state-layer-opacity: 0.04;
  --mat-fab-small-focus-state-layer-opacity: 0.12;
  --mat-fab-small-pressed-state-layer-opacity: 0.12;
  --mat-fab-small-disabled-state-container-color: rgba(0, 0, 0, 0.12);
  --mat-fab-small-disabled-state-foreground-color: rgba(0, 0, 0, 0.38);
  --mdc-snackbar-container-shape: 4px;
  --mdc-snackbar-container-color: #333333;
  --mdc-snackbar-supporting-text-color: rgba(255, 255, 255, 0.87);
  --mat-snack-bar-button-color: #ff4081;
  --mat-table-row-item-outline-width: 1px;
  --mat-table-background-color: white;
  --mat-table-header-headline-color: rgba(0, 0, 0, 0.87);
  --mat-table-row-item-label-text-color: rgba(0, 0, 0, 0.87);
  --mat-table-row-item-outline-color: rgba(0, 0, 0, 0.12);
  --mdc-circular-progress-active-indicator-width: 4px;
  --mdc-circular-progress-size: 48px;
  --mdc-circular-progress-active-indicator-color: #3f51b5;
  --mat-badge-container-shape: 50%;
  --mat-badge-container-size: unset;
  --mat-badge-small-size-container-size: unset;
  --mat-badge-large-size-container-size: unset;
  --mat-badge-legacy-container-size: 22px;
  --mat-badge-legacy-small-size-container-size: 16px;
  --mat-badge-legacy-large-size-container-size: 28px;
  --mat-badge-container-offset: -11px 0;
  --mat-badge-small-size-container-offset: -8px 0;
  --mat-badge-large-size-container-offset: -14px 0;
  --mat-badge-container-overlap-offset: -11px;
  --mat-badge-small-size-container-overlap-offset: -8px;
  --mat-badge-large-size-container-overlap-offset: -14px;
  --mat-badge-container-padding: 0;
  --mat-badge-small-size-container-padding: 0;
  --mat-badge-large-size-container-padding: 0;
  --mat-badge-background-color: #3f51b5;
  --mat-badge-text-color: white;
  --mat-badge-disabled-state-background-color: #b9b9b9;
  --mat-badge-disabled-state-text-color: rgba(0, 0, 0, 0.38);
  --mat-bottom-sheet-container-shape: 4px;
  --mat-bottom-sheet-container-text-color: rgba(0, 0, 0, 0.87);
  --mat-bottom-sheet-container-background-color: white;
  --mat-legacy-button-toggle-height: 36px;
  --mat-legacy-button-toggle-shape: 2px;
  --mat-legacy-button-toggle-focus-state-layer-opacity: 1;
  --mat-standard-button-toggle-shape: 4px;
  --mat-standard-button-toggle-hover-state-layer-opacity: 0.04;
  --mat-standard-button-toggle-focus-state-layer-opacity: 0.12;
  --mat-legacy-button-toggle-text-color: rgba(0, 0, 0, 0.38);
  --mat-legacy-button-toggle-state-layer-color: rgba(0, 0, 0, 0.12);
  --mat-legacy-button-toggle-selected-state-text-color: rgba(0, 0, 0, 0.54);
  --mat-legacy-button-toggle-selected-state-background-color: #e0e0e0;
  --mat-legacy-button-toggle-disabled-state-text-color: rgba(0, 0, 0, 0.26);
  --mat-legacy-button-toggle-disabled-state-background-color: #eeeeee;
  --mat-legacy-button-toggle-disabled-selected-state-background-color: #bdbdbd;
  --mat-standard-button-toggle-text-color: rgba(0, 0, 0, 0.87);
  --mat-standard-button-toggle-background-color: white;
  --mat-standard-button-toggle-state-layer-color: black;
  --mat-standard-button-toggle-selected-state-background-color: #e0e0e0;
  --mat-standard-button-toggle-selected-state-text-color: rgba(0, 0, 0, 0.87);
  --mat-standard-button-toggle-disabled-state-text-color: rgba(0, 0, 0, 0.26);
  --mat-standard-button-toggle-disabled-state-background-color: white;
  --mat-standard-button-toggle-disabled-selected-state-text-color: rgba(0, 0, 0, 0.87);
  --mat-standard-button-toggle-disabled-selected-state-background-color: #bdbdbd;
  --mat-standard-button-toggle-divider-color: #e0e0e0;
  --mat-datepicker-calendar-container-shape: 4px;
  --mat-datepicker-calendar-container-touch-shape: 4px;
  --mat-datepicker-calendar-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
  --mat-datepicker-calendar-container-touch-elevation-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12);
  --mat-datepicker-calendar-date-selected-state-text-color: white;
  --mat-datepicker-calendar-date-selected-state-background-color: #3f51b5;
  --mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(63, 81, 181, 0.4);
  --mat-datepicker-calendar-date-today-selected-state-outline-color: white;
  --mat-datepicker-calendar-date-focus-state-background-color: rgba(63, 81, 181, 0.3);
  --mat-datepicker-calendar-date-hover-state-background-color: rgba(63, 81, 181, 0.3);
  --mat-datepicker-toggle-active-state-icon-color: #3f51b5;
  --mat-datepicker-calendar-date-in-range-state-background-color: rgba(63, 81, 181, 0.2);
  --mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, 0.2);
  --mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;
  --mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e;
  --mat-datepicker-toggle-icon-color: rgba(0, 0, 0, 0.54);
  --mat-datepicker-calendar-body-label-text-color: rgba(0, 0, 0, 0.54);
  --mat-datepicker-calendar-period-button-text-color: black;
  --mat-datepicker-calendar-period-button-icon-color: rgba(0, 0, 0, 0.54);
  --mat-datepicker-calendar-navigation-button-icon-color: rgba(0, 0, 0, 0.54);
  --mat-datepicker-calendar-header-divider-color: rgba(0, 0, 0, 0.12);
  --mat-datepicker-calendar-header-text-color: rgba(0, 0, 0, 0.54);
  --mat-datepicker-calendar-date-today-outline-color: rgba(0, 0, 0, 0.38);
  --mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(0, 0, 0, 0.18);
  --mat-datepicker-calendar-date-text-color: rgba(0, 0, 0, 0.87);
  --mat-datepicker-calendar-date-outline-color: transparent;
  --mat-datepicker-calendar-date-disabled-state-text-color: rgba(0, 0, 0, 0.38);
  --mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, 0.24);
  --mat-datepicker-range-input-separator-color: rgba(0, 0, 0, 0.87);
  --mat-datepicker-range-input-disabled-state-separator-color: rgba(0, 0, 0, 0.38);
  --mat-datepicker-range-input-disabled-state-text-color: rgba(0, 0, 0, 0.38);
  --mat-datepicker-calendar-container-background-color: white;
  --mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, 0.87);
  --mat-divider-width: 1px;
  --mat-divider-color: rgba(0, 0, 0, 0.12);
  --mat-expansion-container-shape: 4px;
  --mat-expansion-legacy-header-indicator-display: inline-block;
  --mat-expansion-header-indicator-display: none;
  --mat-expansion-container-background-color: white;
  --mat-expansion-container-text-color: rgba(0, 0, 0, 0.87);
  --mat-expansion-actions-divider-color: rgba(0, 0, 0, 0.12);
  --mat-expansion-header-hover-state-layer-color: rgba(0, 0, 0, 0.04);
  --mat-expansion-header-focus-state-layer-color: rgba(0, 0, 0, 0.04);
  --mat-expansion-header-disabled-state-text-color: rgba(0, 0, 0, 0.26);
  --mat-expansion-header-text-color: rgba(0, 0, 0, 0.87);
  --mat-expansion-header-description-color: rgba(0, 0, 0, 0.54);
  --mat-expansion-header-indicator-color: rgba(0, 0, 0, 0.54);
  --mat-icon-color: inherit;
  --mat-sidenav-container-shape: 0;
  --mat-sidenav-container-elevation-shadow: 0px 8px 10px -5px rgba(0, 0, 0, 0.2), 0px 16px 24px 2px rgba(0, 0, 0, 0.14), 0px 6px 30px 5px rgba(0, 0, 0, 0.12);
  --mat-sidenav-container-width: auto;
  --mat-sidenav-container-divider-color: rgba(0, 0, 0, 0.12);
  --mat-sidenav-container-background-color: white;
  --mat-sidenav-container-text-color: rgba(0, 0, 0, 0.87);
  --mat-sidenav-content-background-color: #fafafa;
  --mat-sidenav-content-text-color: rgba(0, 0, 0, 0.87);
  --mat-sidenav-scrim-color: rgba(0, 0, 0, 0.6);
  --mat-stepper-header-icon-foreground-color: white;
  --mat-stepper-header-selected-state-icon-background-color: #3f51b5;
  --mat-stepper-header-selected-state-icon-foreground-color: white;
  --mat-stepper-header-done-state-icon-background-color: #3f51b5;
  --mat-stepper-header-done-state-icon-foreground-color: white;
  --mat-stepper-header-edit-state-icon-background-color: #3f51b5;
  --mat-stepper-header-edit-state-icon-foreground-color: white;
  --mat-stepper-container-color: white;
  --mat-stepper-line-color: rgba(0, 0, 0, 0.12);
  --mat-stepper-header-hover-state-layer-color: rgba(0, 0, 0, 0.04);
  --mat-stepper-header-focus-state-layer-color: rgba(0, 0, 0, 0.04);
  --mat-stepper-header-label-text-color: rgba(0, 0, 0, 0.54);
  --mat-stepper-header-optional-label-text-color: rgba(0, 0, 0, 0.54);
  --mat-stepper-header-selected-state-label-text-color: rgba(0, 0, 0, 0.87);
  --mat-stepper-header-error-state-label-text-color: #f44336;
  --mat-stepper-header-icon-background-color: rgba(0, 0, 0, 0.54);
  --mat-stepper-header-error-state-icon-foreground-color: #f44336;
  --mat-stepper-header-error-state-icon-background-color: transparent;
  --mat-sort-arrow-color: #757575;
  --mat-toolbar-container-background-color: whitesmoke;
  --mat-toolbar-container-text-color: rgba(0, 0, 0, 0.87);
  --mat-tree-container-background-color: white;
  --mat-tree-node-text-color: rgba(0, 0, 0, 0.87);
  background-color: #fafafa;
  color: rgba(0, 0, 0, 0.87);
}
.mat-theme-loaded-marker {
  display: none;
}

.light-theme .mat-accent {
  --mat-option-selected-state-label-text-color: #ff4081;
  --mat-option-label-text-color: rgba(0, 0, 0, 0.87);
  --mat-option-hover-state-layer-color: rgba(0, 0, 0, 0.04);
  --mat-option-focus-state-layer-color: rgba(0, 0, 0, 0.04);
  --mat-option-selected-state-layer-color: rgba(0, 0, 0, 0.04);
}
.light-theme .mat-warn {
  --mat-option-selected-state-label-text-color: #f44336;
  --mat-option-label-text-color: rgba(0, 0, 0, 0.87);
  --mat-option-hover-state-layer-color: rgba(0, 0, 0, 0.04);
  --mat-option-focus-state-layer-color: rgba(0, 0, 0, 0.04);
  --mat-option-selected-state-layer-color: rgba(0, 0, 0, 0.04);
}
.light-theme .mat-primary {
  --mat-full-pseudo-checkbox-selected-icon-color: #3f51b5;
  --mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;
  --mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;
  --mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;
  --mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;
  --mat-minimal-pseudo-checkbox-selected-checkmark-color: #3f51b5;
  --mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0;
}
.light-theme .mat-accent {
  --mat-full-pseudo-checkbox-selected-icon-color: #ff4081;
  --mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;
  --mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;
  --mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;
  --mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;
  --mat-minimal-pseudo-checkbox-selected-checkmark-color: #ff4081;
  --mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0;
}
.light-theme .mat-warn {
  --mat-full-pseudo-checkbox-selected-icon-color: #f44336;
  --mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;
  --mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;
  --mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;
  --mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;
  --mat-minimal-pseudo-checkbox-selected-checkmark-color: #f44336;
  --mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0;
}
.light-theme .mat-mdc-progress-bar {
  --mdc-linear-progress-active-indicator-color: #3f51b5;
  --mdc-linear-progress-track-color: rgba(63, 81, 181, 0.25);
}
.light-theme .mat-mdc-progress-bar.mat-accent {
  --mdc-linear-progress-active-indicator-color: #ff4081;
  --mdc-linear-progress-track-color: rgba(255, 64, 129, 0.25);
}
.light-theme .mat-mdc-progress-bar.mat-warn {
  --mdc-linear-progress-active-indicator-color: #f44336;
  --mdc-linear-progress-track-color: rgba(244, 67, 54, 0.25);
}
.light-theme .mat-mdc-form-field.mat-accent {
  --mdc-filled-text-field-caret-color: #ff4081;
  --mdc-filled-text-field-focus-active-indicator-color: #ff4081;
  --mdc-filled-text-field-focus-label-text-color: rgba(255, 64, 129, 0.87);
  --mdc-outlined-text-field-caret-color: #ff4081;
  --mdc-outlined-text-field-focus-outline-color: #ff4081;
  --mdc-outlined-text-field-focus-label-text-color: rgba(255, 64, 129, 0.87);
  --mat-form-field-focus-select-arrow-color: rgba(255, 64, 129, 0.87);
}
.light-theme .mat-mdc-form-field.mat-warn {
  --mdc-filled-text-field-caret-color: #f44336;
  --mdc-filled-text-field-focus-active-indicator-color: #f44336;
  --mdc-filled-text-field-focus-label-text-color: rgba(244, 67, 54, 0.87);
  --mdc-outlined-text-field-caret-color: #f44336;
  --mdc-outlined-text-field-focus-outline-color: #f44336;
  --mdc-outlined-text-field-focus-label-text-color: rgba(244, 67, 54, 0.87);
  --mat-form-field-focus-select-arrow-color: rgba(244, 67, 54, 0.87);
}
.light-theme .mat-mdc-form-field.mat-accent {
  --mat-select-panel-background-color: white;
  --mat-select-enabled-trigger-text-color: rgba(0, 0, 0, 0.87);
  --mat-select-disabled-trigger-text-color: rgba(0, 0, 0, 0.38);
  --mat-select-placeholder-text-color: rgba(0, 0, 0, 0.6);
  --mat-select-enabled-arrow-color: rgba(0, 0, 0, 0.54);
  --mat-select-disabled-arrow-color: rgba(0, 0, 0, 0.38);
  --mat-select-focused-arrow-color: rgba(255, 64, 129, 0.87);
  --mat-select-invalid-arrow-color: rgba(244, 67, 54, 0.87);
}
.light-theme .mat-mdc-form-field.mat-warn {
  --mat-select-panel-background-color: white;
  --mat-select-enabled-trigger-text-color: rgba(0, 0, 0, 0.87);
  --mat-select-disabled-trigger-text-color: rgba(0, 0, 0, 0.38);
  --mat-select-placeholder-text-color: rgba(0, 0, 0, 0.6);
  --mat-select-enabled-arrow-color: rgba(0, 0, 0, 0.54);
  --mat-select-disabled-arrow-color: rgba(0, 0, 0, 0.38);
  --mat-select-focused-arrow-color: rgba(244, 67, 54, 0.87);
  --mat-select-invalid-arrow-color: rgba(244, 67, 54, 0.87);
}
.light-theme .mat-mdc-standard-chip {
  --mdc-chip-container-shape-radius: 16px;
  --mdc-chip-with-avatar-avatar-shape-radius: 14px;
  --mdc-chip-with-avatar-avatar-size: 28px;
  --mdc-chip-with-icon-icon-size: 18px;
  --mdc-chip-outline-width: 0;
  --mdc-chip-outline-color: transparent;
  --mdc-chip-disabled-outline-color: transparent;
  --mdc-chip-focus-outline-color: transparent;
  --mdc-chip-hover-state-layer-opacity: 0.04;
  --mdc-chip-with-avatar-disabled-avatar-opacity: 1;
  --mdc-chip-flat-selected-outline-width: 0;
  --mdc-chip-selected-hover-state-layer-opacity: 0.04;
  --mdc-chip-with-trailing-icon-disabled-trailing-icon-opacity: 1;
  --mdc-chip-with-icon-disabled-icon-opacity: 1;
  --mat-chip-disabled-container-opacity: 0.4;
  --mat-chip-trailing-action-opacity: 0.54;
  --mat-chip-trailing-action-focus-opacity: 1;
  --mat-chip-trailing-action-state-layer-color: transparent;
  --mat-chip-selected-trailing-action-state-layer-color: transparent;
  --mat-chip-trailing-action-hover-state-layer-opacity: 0;
  --mat-chip-trailing-action-focus-state-layer-opacity: 0;
  --mdc-chip-disabled-label-text-color: #212121;
  --mdc-chip-elevated-container-color: #e0e0e0;
  --mdc-chip-elevated-selected-container-color: #e0e0e0;
  --mdc-chip-elevated-disabled-container-color: #e0e0e0;
  --mdc-chip-flat-disabled-selected-container-color: #e0e0e0;
  --mdc-chip-focus-state-layer-color: black;
  --mdc-chip-hover-state-layer-color: black;
  --mdc-chip-selected-hover-state-layer-color: black;
  --mdc-chip-focus-state-layer-opacity: 0.12;
  --mdc-chip-selected-focus-state-layer-color: black;
  --mdc-chip-selected-focus-state-layer-opacity: 0.12;
  --mdc-chip-label-text-color: #212121;
  --mdc-chip-selected-label-text-color: #212121;
  --mdc-chip-with-icon-icon-color: #212121;
  --mdc-chip-with-icon-disabled-icon-color: #212121;
  --mdc-chip-with-icon-selected-icon-color: #212121;
  --mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #212121;
  --mdc-chip-with-trailing-icon-trailing-icon-color: #212121;
  --mat-chip-selected-disabled-trailing-icon-color: #212121;
  --mat-chip-selected-trailing-icon-color: #212121;
}
.light-theme .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary, .light-theme .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary {
  --mdc-chip-disabled-label-text-color: white;
  --mdc-chip-elevated-container-color: #3f51b5;
  --mdc-chip-elevated-selected-container-color: #3f51b5;
  --mdc-chip-elevated-disabled-container-color: #3f51b5;
  --mdc-chip-flat-disabled-selected-container-color: #3f51b5;
  --mdc-chip-focus-state-layer-color: black;
  --mdc-chip-hover-state-layer-color: black;
  --mdc-chip-selected-hover-state-layer-color: black;
  --mdc-chip-focus-state-layer-opacity: 0.12;
  --mdc-chip-selected-focus-state-layer-color: black;
  --mdc-chip-selected-focus-state-layer-opacity: 0.12;
  --mdc-chip-label-text-color: white;
  --mdc-chip-selected-label-text-color: white;
  --mdc-chip-with-icon-icon-color: white;
  --mdc-chip-with-icon-disabled-icon-color: white;
  --mdc-chip-with-icon-selected-icon-color: white;
  --mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;
  --mdc-chip-with-trailing-icon-trailing-icon-color: white;
  --mat-chip-selected-disabled-trailing-icon-color: white;
  --mat-chip-selected-trailing-icon-color: white;
}
.light-theme .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent, .light-theme .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent {
  --mdc-chip-disabled-label-text-color: white;
  --mdc-chip-elevated-container-color: #ff4081;
  --mdc-chip-elevated-selected-container-color: #ff4081;
  --mdc-chip-elevated-disabled-container-color: #ff4081;
  --mdc-chip-flat-disabled-selected-container-color: #ff4081;
  --mdc-chip-focus-state-layer-color: black;
  --mdc-chip-hover-state-layer-color: black;
  --mdc-chip-selected-hover-state-layer-color: black;
  --mdc-chip-focus-state-layer-opacity: 0.12;
  --mdc-chip-selected-focus-state-layer-color: black;
  --mdc-chip-selected-focus-state-layer-opacity: 0.12;
  --mdc-chip-label-text-color: white;
  --mdc-chip-selected-label-text-color: white;
  --mdc-chip-with-icon-icon-color: white;
  --mdc-chip-with-icon-disabled-icon-color: white;
  --mdc-chip-with-icon-selected-icon-color: white;
  --mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;
  --mdc-chip-with-trailing-icon-trailing-icon-color: white;
  --mat-chip-selected-disabled-trailing-icon-color: white;
  --mat-chip-selected-trailing-icon-color: white;
}
.light-theme .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn, .light-theme .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn {
  --mdc-chip-disabled-label-text-color: white;
  --mdc-chip-elevated-container-color: #f44336;
  --mdc-chip-elevated-selected-container-color: #f44336;
  --mdc-chip-elevated-disabled-container-color: #f44336;
  --mdc-chip-flat-disabled-selected-container-color: #f44336;
  --mdc-chip-focus-state-layer-color: black;
  --mdc-chip-hover-state-layer-color: black;
  --mdc-chip-selected-hover-state-layer-color: black;
  --mdc-chip-focus-state-layer-opacity: 0.12;
  --mdc-chip-selected-focus-state-layer-color: black;
  --mdc-chip-selected-focus-state-layer-opacity: 0.12;
  --mdc-chip-label-text-color: white;
  --mdc-chip-selected-label-text-color: white;
  --mdc-chip-with-icon-icon-color: white;
  --mdc-chip-with-icon-disabled-icon-color: white;
  --mdc-chip-with-icon-selected-icon-color: white;
  --mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;
  --mdc-chip-with-trailing-icon-trailing-icon-color: white;
  --mat-chip-selected-disabled-trailing-icon-color: white;
  --mat-chip-selected-trailing-icon-color: white;
}
.light-theme .mat-mdc-slide-toggle {
  --mat-switch-disabled-selected-handle-opacity: 0.38;
  --mat-switch-disabled-unselected-handle-opacity: 0.38;
  --mat-switch-unselected-handle-size: 20px;
  --mat-switch-selected-handle-size: 20px;
  --mat-switch-pressed-handle-size: 20px;
  --mat-switch-with-icon-handle-size: 20px;
  --mat-switch-selected-handle-horizontal-margin: 0;
  --mat-switch-selected-with-icon-handle-horizontal-margin: 0;
  --mat-switch-selected-pressed-handle-horizontal-margin: 0;
  --mat-switch-unselected-handle-horizontal-margin: 0;
  --mat-switch-unselected-with-icon-handle-horizontal-margin: 0;
  --mat-switch-unselected-pressed-handle-horizontal-margin: 0;
  --mat-switch-visible-track-opacity: 1;
  --mat-switch-hidden-track-opacity: 1;
  --mat-switch-visible-track-transition: transform 75ms 0ms cubic-bezier(0, 0, 0.2, 1);
  --mat-switch-hidden-track-transition: transform 75ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
  --mat-switch-track-outline-width: 1px;
  --mat-switch-track-outline-color: transparent;
  --mat-switch-selected-track-outline-width: 1px;
  --mat-switch-selected-track-outline-color: transparent;
  --mat-switch-disabled-unselected-track-outline-width: 1px;
  --mat-switch-disabled-unselected-track-outline-color: transparent;
  --mat-switch-label-text-color: rgba(0, 0, 0, 0.87);
}
.light-theme .mat-mdc-slide-toggle.mat-accent {
  --mdc-switch-selected-focus-state-layer-color: #d81b60;
  --mdc-switch-selected-handle-color: #d81b60;
  --mdc-switch-selected-hover-state-layer-color: #d81b60;
  --mdc-switch-selected-pressed-state-layer-color: #d81b60;
  --mdc-switch-selected-focus-handle-color: #880e4f;
  --mdc-switch-selected-hover-handle-color: #880e4f;
  --mdc-switch-selected-pressed-handle-color: #880e4f;
  --mdc-switch-selected-focus-track-color: #f06292;
  --mdc-switch-selected-hover-track-color: #f06292;
  --mdc-switch-selected-pressed-track-color: #f06292;
  --mdc-switch-selected-track-color: #f06292;
}
.light-theme .mat-mdc-slide-toggle.mat-warn {
  --mdc-switch-selected-focus-state-layer-color: #e53935;
  --mdc-switch-selected-handle-color: #e53935;
  --mdc-switch-selected-hover-state-layer-color: #e53935;
  --mdc-switch-selected-pressed-state-layer-color: #e53935;
  --mdc-switch-selected-focus-handle-color: #b71c1c;
  --mdc-switch-selected-hover-handle-color: #b71c1c;
  --mdc-switch-selected-pressed-handle-color: #b71c1c;
  --mdc-switch-selected-focus-track-color: #e57373;
  --mdc-switch-selected-hover-track-color: #e57373;
  --mdc-switch-selected-pressed-track-color: #e57373;
  --mdc-switch-selected-track-color: #e57373;
}
.light-theme .mat-mdc-radio-button.mat-primary {
  --mdc-radio-disabled-selected-icon-color: black;
  --mdc-radio-disabled-unselected-icon-color: black;
  --mdc-radio-unselected-hover-icon-color: #212121;
  --mdc-radio-unselected-focus-icon-color: #212121;
  --mdc-radio-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-radio-selected-focus-icon-color: #3f51b5;
  --mdc-radio-selected-hover-icon-color: #3f51b5;
  --mdc-radio-selected-icon-color: #3f51b5;
  --mdc-radio-selected-pressed-icon-color: #3f51b5;
  --mat-radio-ripple-color: black;
  --mat-radio-checked-ripple-color: #3f51b5;
  --mat-radio-disabled-label-color: rgba(0, 0, 0, 0.38);
  --mat-radio-label-text-color: rgba(0, 0, 0, 0.87);
}
.light-theme .mat-mdc-radio-button.mat-accent {
  --mdc-radio-disabled-selected-icon-color: black;
  --mdc-radio-disabled-unselected-icon-color: black;
  --mdc-radio-unselected-hover-icon-color: #212121;
  --mdc-radio-unselected-focus-icon-color: #212121;
  --mdc-radio-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-radio-selected-focus-icon-color: #ff4081;
  --mdc-radio-selected-hover-icon-color: #ff4081;
  --mdc-radio-selected-icon-color: #ff4081;
  --mdc-radio-selected-pressed-icon-color: #ff4081;
  --mat-radio-ripple-color: black;
  --mat-radio-checked-ripple-color: #ff4081;
  --mat-radio-disabled-label-color: rgba(0, 0, 0, 0.38);
  --mat-radio-label-text-color: rgba(0, 0, 0, 0.87);
}
.light-theme .mat-mdc-radio-button.mat-warn {
  --mdc-radio-disabled-selected-icon-color: black;
  --mdc-radio-disabled-unselected-icon-color: black;
  --mdc-radio-unselected-hover-icon-color: #212121;
  --mdc-radio-unselected-focus-icon-color: #212121;
  --mdc-radio-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-radio-selected-focus-icon-color: #f44336;
  --mdc-radio-selected-hover-icon-color: #f44336;
  --mdc-radio-selected-icon-color: #f44336;
  --mdc-radio-selected-pressed-icon-color: #f44336;
  --mat-radio-ripple-color: black;
  --mat-radio-checked-ripple-color: #f44336;
  --mat-radio-disabled-label-color: rgba(0, 0, 0, 0.38);
  --mat-radio-label-text-color: rgba(0, 0, 0, 0.87);
}
.light-theme .mat-accent {
  --mdc-slider-handle-color: #ff4081;
  --mdc-slider-focus-handle-color: #ff4081;
  --mdc-slider-hover-handle-color: #ff4081;
  --mdc-slider-active-track-color: #ff4081;
  --mdc-slider-inactive-track-color: #ff4081;
  --mdc-slider-with-tick-marks-inactive-container-color: #ff4081;
  --mdc-slider-with-tick-marks-active-container-color: white;
  --mat-slider-ripple-color: #ff4081;
  --mat-slider-hover-state-layer-color: rgba(255, 64, 129, 0.05);
  --mat-slider-focus-state-layer-color: rgba(255, 64, 129, 0.2);
}
.light-theme .mat-warn {
  --mdc-slider-handle-color: #f44336;
  --mdc-slider-focus-handle-color: #f44336;
  --mdc-slider-hover-handle-color: #f44336;
  --mdc-slider-active-track-color: #f44336;
  --mdc-slider-inactive-track-color: #f44336;
  --mdc-slider-with-tick-marks-inactive-container-color: #f44336;
  --mdc-slider-with-tick-marks-active-container-color: white;
  --mat-slider-ripple-color: #f44336;
  --mat-slider-hover-state-layer-color: rgba(244, 67, 54, 0.05);
  --mat-slider-focus-state-layer-color: rgba(244, 67, 54, 0.2);
}
.light-theme .mdc-list-item__start,
.light-theme .mdc-list-item__end {
  --mdc-radio-disabled-selected-icon-color: black;
  --mdc-radio-disabled-unselected-icon-color: black;
  --mdc-radio-unselected-hover-icon-color: #212121;
  --mdc-radio-unselected-focus-icon-color: #212121;
  --mdc-radio-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-radio-selected-focus-icon-color: #3f51b5;
  --mdc-radio-selected-hover-icon-color: #3f51b5;
  --mdc-radio-selected-icon-color: #3f51b5;
  --mdc-radio-selected-pressed-icon-color: #3f51b5;
}
.light-theme .mat-accent .mdc-list-item__start,
.light-theme .mat-accent .mdc-list-item__end {
  --mdc-radio-disabled-selected-icon-color: black;
  --mdc-radio-disabled-unselected-icon-color: black;
  --mdc-radio-unselected-hover-icon-color: #212121;
  --mdc-radio-unselected-focus-icon-color: #212121;
  --mdc-radio-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-radio-selected-focus-icon-color: #ff4081;
  --mdc-radio-selected-hover-icon-color: #ff4081;
  --mdc-radio-selected-icon-color: #ff4081;
  --mdc-radio-selected-pressed-icon-color: #ff4081;
}
.light-theme .mat-warn .mdc-list-item__start,
.light-theme .mat-warn .mdc-list-item__end {
  --mdc-radio-disabled-selected-icon-color: black;
  --mdc-radio-disabled-unselected-icon-color: black;
  --mdc-radio-unselected-hover-icon-color: #212121;
  --mdc-radio-unselected-focus-icon-color: #212121;
  --mdc-radio-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-radio-selected-focus-icon-color: #f44336;
  --mdc-radio-selected-hover-icon-color: #f44336;
  --mdc-radio-selected-icon-color: #f44336;
  --mdc-radio-selected-pressed-icon-color: #f44336;
}
.light-theme .mat-mdc-list-option {
  --mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, 0.38);
  --mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, 0.38);
  --mdc-checkbox-selected-checkmark-color: white;
  --mdc-checkbox-selected-focus-icon-color: #3f51b5;
  --mdc-checkbox-selected-hover-icon-color: #3f51b5;
  --mdc-checkbox-selected-icon-color: #3f51b5;
  --mdc-checkbox-selected-pressed-icon-color: #3f51b5;
  --mdc-checkbox-unselected-focus-icon-color: #212121;
  --mdc-checkbox-unselected-hover-icon-color: #212121;
  --mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-checkbox-selected-focus-state-layer-color: #3f51b5;
  --mdc-checkbox-selected-hover-state-layer-color: #3f51b5;
  --mdc-checkbox-selected-pressed-state-layer-color: #3f51b5;
  --mdc-checkbox-unselected-focus-state-layer-color: black;
  --mdc-checkbox-unselected-hover-state-layer-color: black;
  --mdc-checkbox-unselected-pressed-state-layer-color: black;
}
.light-theme .mat-mdc-list-option.mat-accent {
  --mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, 0.38);
  --mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, 0.38);
  --mdc-checkbox-selected-checkmark-color: white;
  --mdc-checkbox-selected-focus-icon-color: #ff4081;
  --mdc-checkbox-selected-hover-icon-color: #ff4081;
  --mdc-checkbox-selected-icon-color: #ff4081;
  --mdc-checkbox-selected-pressed-icon-color: #ff4081;
  --mdc-checkbox-unselected-focus-icon-color: #212121;
  --mdc-checkbox-unselected-hover-icon-color: #212121;
  --mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-checkbox-selected-focus-state-layer-color: #ff4081;
  --mdc-checkbox-selected-hover-state-layer-color: #ff4081;
  --mdc-checkbox-selected-pressed-state-layer-color: #ff4081;
  --mdc-checkbox-unselected-focus-state-layer-color: black;
  --mdc-checkbox-unselected-hover-state-layer-color: black;
  --mdc-checkbox-unselected-pressed-state-layer-color: black;
}
.light-theme .mat-mdc-list-option.mat-warn {
  --mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, 0.38);
  --mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, 0.38);
  --mdc-checkbox-selected-checkmark-color: white;
  --mdc-checkbox-selected-focus-icon-color: #f44336;
  --mdc-checkbox-selected-hover-icon-color: #f44336;
  --mdc-checkbox-selected-icon-color: #f44336;
  --mdc-checkbox-selected-pressed-icon-color: #f44336;
  --mdc-checkbox-unselected-focus-icon-color: #212121;
  --mdc-checkbox-unselected-hover-icon-color: #212121;
  --mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-checkbox-selected-focus-state-layer-color: #f44336;
  --mdc-checkbox-selected-hover-state-layer-color: #f44336;
  --mdc-checkbox-selected-pressed-state-layer-color: #f44336;
  --mdc-checkbox-unselected-focus-state-layer-color: black;
  --mdc-checkbox-unselected-hover-state-layer-color: black;
  --mdc-checkbox-unselected-pressed-state-layer-color: black;
}
.light-theme .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text,
.light-theme .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__start,
.light-theme .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text,
.light-theme .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__start {
  color: #3f51b5;
}
.light-theme .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__start,
.light-theme .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__content,
.light-theme .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__end {
  opacity: 1;
}
.light-theme .mat-mdc-tab-group, .light-theme .mat-mdc-tab-nav-bar {
  --mdc-tab-indicator-active-indicator-color: #3f51b5;
  --mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, 0.38);
  --mat-tab-header-pagination-icon-color: black;
  --mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, 0.6);
  --mat-tab-header-active-label-text-color: #3f51b5;
  --mat-tab-header-active-ripple-color: #3f51b5;
  --mat-tab-header-inactive-ripple-color: #3f51b5;
  --mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, 0.6);
  --mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, 0.6);
  --mat-tab-header-active-focus-label-text-color: #3f51b5;
  --mat-tab-header-active-hover-label-text-color: #3f51b5;
  --mat-tab-header-active-focus-indicator-color: #3f51b5;
  --mat-tab-header-active-hover-indicator-color: #3f51b5;
}
.light-theme .mat-mdc-tab-group.mat-accent, .light-theme .mat-mdc-tab-nav-bar.mat-accent {
  --mdc-tab-indicator-active-indicator-color: #ff4081;
  --mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, 0.38);
  --mat-tab-header-pagination-icon-color: black;
  --mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, 0.6);
  --mat-tab-header-active-label-text-color: #ff4081;
  --mat-tab-header-active-ripple-color: #ff4081;
  --mat-tab-header-inactive-ripple-color: #ff4081;
  --mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, 0.6);
  --mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, 0.6);
  --mat-tab-header-active-focus-label-text-color: #ff4081;
  --mat-tab-header-active-hover-label-text-color: #ff4081;
  --mat-tab-header-active-focus-indicator-color: #ff4081;
  --mat-tab-header-active-hover-indicator-color: #ff4081;
}
.light-theme .mat-mdc-tab-group.mat-warn, .light-theme .mat-mdc-tab-nav-bar.mat-warn {
  --mdc-tab-indicator-active-indicator-color: #f44336;
  --mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, 0.38);
  --mat-tab-header-pagination-icon-color: black;
  --mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, 0.6);
  --mat-tab-header-active-label-text-color: #f44336;
  --mat-tab-header-active-ripple-color: #f44336;
  --mat-tab-header-inactive-ripple-color: #f44336;
  --mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, 0.6);
  --mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, 0.6);
  --mat-tab-header-active-focus-label-text-color: #f44336;
  --mat-tab-header-active-hover-label-text-color: #f44336;
  --mat-tab-header-active-focus-indicator-color: #f44336;
  --mat-tab-header-active-hover-indicator-color: #f44336;
}
.light-theme .mat-mdc-tab-group.mat-background-primary, .light-theme .mat-mdc-tab-nav-bar.mat-background-primary {
  --mat-tab-header-with-background-background-color: #3f51b5;
  --mat-tab-header-with-background-foreground-color: white;
}
.light-theme .mat-mdc-tab-group.mat-background-accent, .light-theme .mat-mdc-tab-nav-bar.mat-background-accent {
  --mat-tab-header-with-background-background-color: #ff4081;
  --mat-tab-header-with-background-foreground-color: white;
}
.light-theme .mat-mdc-tab-group.mat-background-warn, .light-theme .mat-mdc-tab-nav-bar.mat-background-warn {
  --mat-tab-header-with-background-background-color: #f44336;
  --mat-tab-header-with-background-foreground-color: white;
}
.light-theme .mat-mdc-checkbox.mat-primary {
  --mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, 0.38);
  --mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, 0.38);
  --mdc-checkbox-selected-checkmark-color: white;
  --mdc-checkbox-selected-focus-icon-color: #3f51b5;
  --mdc-checkbox-selected-hover-icon-color: #3f51b5;
  --mdc-checkbox-selected-icon-color: #3f51b5;
  --mdc-checkbox-selected-pressed-icon-color: #3f51b5;
  --mdc-checkbox-unselected-focus-icon-color: #212121;
  --mdc-checkbox-unselected-hover-icon-color: #212121;
  --mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-checkbox-selected-focus-state-layer-color: #3f51b5;
  --mdc-checkbox-selected-hover-state-layer-color: #3f51b5;
  --mdc-checkbox-selected-pressed-state-layer-color: #3f51b5;
  --mdc-checkbox-unselected-focus-state-layer-color: black;
  --mdc-checkbox-unselected-hover-state-layer-color: black;
  --mdc-checkbox-unselected-pressed-state-layer-color: black;
}
.light-theme .mat-mdc-checkbox.mat-warn {
  --mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, 0.38);
  --mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, 0.38);
  --mdc-checkbox-selected-checkmark-color: white;
  --mdc-checkbox-selected-focus-icon-color: #f44336;
  --mdc-checkbox-selected-hover-icon-color: #f44336;
  --mdc-checkbox-selected-icon-color: #f44336;
  --mdc-checkbox-selected-pressed-icon-color: #f44336;
  --mdc-checkbox-unselected-focus-icon-color: #212121;
  --mdc-checkbox-unselected-hover-icon-color: #212121;
  --mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-checkbox-selected-focus-state-layer-color: #f44336;
  --mdc-checkbox-selected-hover-state-layer-color: #f44336;
  --mdc-checkbox-selected-pressed-state-layer-color: #f44336;
  --mdc-checkbox-unselected-focus-state-layer-color: black;
  --mdc-checkbox-unselected-hover-state-layer-color: black;
  --mdc-checkbox-unselected-pressed-state-layer-color: black;
}
.light-theme .mat-mdc-button.mat-primary {
  --mdc-text-button-label-text-color: #3f51b5;
  --mat-text-button-state-layer-color: #3f51b5;
  --mat-text-button-ripple-color: rgba(63, 81, 181, 0.1);
}
.light-theme .mat-mdc-button.mat-accent {
  --mdc-text-button-label-text-color: #ff4081;
  --mat-text-button-state-layer-color: #ff4081;
  --mat-text-button-ripple-color: rgba(255, 64, 129, 0.1);
}
.light-theme .mat-mdc-button.mat-warn {
  --mdc-text-button-label-text-color: #f44336;
  --mat-text-button-state-layer-color: #f44336;
  --mat-text-button-ripple-color: rgba(244, 67, 54, 0.1);
}
.light-theme .mat-mdc-unelevated-button.mat-primary {
  --mdc-filled-button-container-color: #3f51b5;
  --mdc-filled-button-label-text-color: white;
  --mat-filled-button-state-layer-color: white;
  --mat-filled-button-ripple-color: rgba(255, 255, 255, 0.1);
}
.light-theme .mat-mdc-unelevated-button.mat-accent {
  --mdc-filled-button-container-color: #ff4081;
  --mdc-filled-button-label-text-color: white;
  --mat-filled-button-state-layer-color: white;
  --mat-filled-button-ripple-color: rgba(255, 255, 255, 0.1);
}
.light-theme .mat-mdc-unelevated-button.mat-warn {
  --mdc-filled-button-container-color: #f44336;
  --mdc-filled-button-label-text-color: white;
  --mat-filled-button-state-layer-color: white;
  --mat-filled-button-ripple-color: rgba(255, 255, 255, 0.1);
}
.light-theme .mat-mdc-raised-button.mat-primary {
  --mdc-protected-button-container-color: #3f51b5;
  --mdc-protected-button-label-text-color: white;
  --mat-protected-button-state-layer-color: white;
  --mat-protected-button-ripple-color: rgba(255, 255, 255, 0.1);
}
.light-theme .mat-mdc-raised-button.mat-accent {
  --mdc-protected-button-container-color: #ff4081;
  --mdc-protected-button-label-text-color: white;
  --mat-protected-button-state-layer-color: white;
  --mat-protected-button-ripple-color: rgba(255, 255, 255, 0.1);
}
.light-theme .mat-mdc-raised-button.mat-warn {
  --mdc-protected-button-container-color: #f44336;
  --mdc-protected-button-label-text-color: white;
  --mat-protected-button-state-layer-color: white;
  --mat-protected-button-ripple-color: rgba(255, 255, 255, 0.1);
}
.light-theme .mat-mdc-outlined-button.mat-primary {
  --mdc-outlined-button-label-text-color: #3f51b5;
  --mdc-outlined-button-outline-color: rgba(0, 0, 0, 0.12);
  --mat-outlined-button-state-layer-color: #3f51b5;
  --mat-outlined-button-ripple-color: rgba(63, 81, 181, 0.1);
}
.light-theme .mat-mdc-outlined-button.mat-accent {
  --mdc-outlined-button-label-text-color: #ff4081;
  --mdc-outlined-button-outline-color: rgba(0, 0, 0, 0.12);
  --mat-outlined-button-state-layer-color: #ff4081;
  --mat-outlined-button-ripple-color: rgba(255, 64, 129, 0.1);
}
.light-theme .mat-mdc-outlined-button.mat-warn {
  --mdc-outlined-button-label-text-color: #f44336;
  --mdc-outlined-button-outline-color: rgba(0, 0, 0, 0.12);
  --mat-outlined-button-state-layer-color: #f44336;
  --mat-outlined-button-ripple-color: rgba(244, 67, 54, 0.1);
}
.light-theme .mat-mdc-icon-button.mat-primary {
  --mdc-icon-button-icon-color: #3f51b5;
  --mat-icon-button-state-layer-color: #3f51b5;
  --mat-icon-button-ripple-color: rgba(63, 81, 181, 0.1);
}
.light-theme .mat-mdc-icon-button.mat-accent {
  --mdc-icon-button-icon-color: #ff4081;
  --mat-icon-button-state-layer-color: #ff4081;
  --mat-icon-button-ripple-color: rgba(255, 64, 129, 0.1);
}
.light-theme .mat-mdc-icon-button.mat-warn {
  --mdc-icon-button-icon-color: #f44336;
  --mat-icon-button-state-layer-color: #f44336;
  --mat-icon-button-ripple-color: rgba(244, 67, 54, 0.1);
}
.light-theme .mat-mdc-fab.mat-primary {
  --mdc-fab-container-color: #3f51b5;
  --mat-fab-foreground-color: white;
  --mat-fab-state-layer-color: white;
  --mat-fab-ripple-color: rgba(255, 255, 255, 0.1);
}
.light-theme .mat-mdc-fab.mat-accent {
  --mdc-fab-container-color: #ff4081;
  --mat-fab-foreground-color: white;
  --mat-fab-state-layer-color: white;
  --mat-fab-ripple-color: rgba(255, 255, 255, 0.1);
}
.light-theme .mat-mdc-fab.mat-warn {
  --mdc-fab-container-color: #f44336;
  --mat-fab-foreground-color: white;
  --mat-fab-state-layer-color: white;
  --mat-fab-ripple-color: rgba(255, 255, 255, 0.1);
}
.light-theme .mat-mdc-mini-fab.mat-primary {
  --mdc-fab-small-container-color: #3f51b5;
  --mat-fab-small-foreground-color: white;
  --mat-fab-small-state-layer-color: white;
  --mat-fab-small-ripple-color: rgba(255, 255, 255, 0.1);
}
.light-theme .mat-mdc-mini-fab.mat-accent {
  --mdc-fab-small-container-color: #ff4081;
  --mat-fab-small-foreground-color: white;
  --mat-fab-small-state-layer-color: white;
  --mat-fab-small-ripple-color: rgba(255, 255, 255, 0.1);
}
.light-theme .mat-mdc-mini-fab.mat-warn {
  --mdc-fab-small-container-color: #f44336;
  --mat-fab-small-foreground-color: white;
  --mat-fab-small-state-layer-color: white;
  --mat-fab-small-ripple-color: rgba(255, 255, 255, 0.1);
}
.light-theme .mat-accent {
  --mdc-circular-progress-active-indicator-color: #ff4081;
}
.light-theme .mat-warn {
  --mdc-circular-progress-active-indicator-color: #f44336;
}
.light-theme .mat-badge-accent {
  --mat-badge-background-color: #ff4081;
  --mat-badge-text-color: white;
}
.light-theme .mat-badge-warn {
  --mat-badge-background-color: #f44336;
  --mat-badge-text-color: white;
}
.light-theme .mat-datepicker-content.mat-accent {
  --mat-datepicker-calendar-date-selected-state-text-color: white;
  --mat-datepicker-calendar-date-selected-state-background-color: #ff4081;
  --mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(255, 64, 129, 0.4);
  --mat-datepicker-calendar-date-today-selected-state-outline-color: white;
  --mat-datepicker-calendar-date-focus-state-background-color: rgba(255, 64, 129, 0.3);
  --mat-datepicker-calendar-date-hover-state-background-color: rgba(255, 64, 129, 0.3);
  --mat-datepicker-calendar-date-in-range-state-background-color: rgba(255, 64, 129, 0.2);
  --mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, 0.2);
  --mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;
  --mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e;
}
.light-theme .mat-datepicker-content.mat-warn {
  --mat-datepicker-calendar-date-selected-state-text-color: white;
  --mat-datepicker-calendar-date-selected-state-background-color: #f44336;
  --mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(244, 67, 54, 0.4);
  --mat-datepicker-calendar-date-today-selected-state-outline-color: white;
  --mat-datepicker-calendar-date-focus-state-background-color: rgba(244, 67, 54, 0.3);
  --mat-datepicker-calendar-date-hover-state-background-color: rgba(244, 67, 54, 0.3);
  --mat-datepicker-calendar-date-in-range-state-background-color: rgba(244, 67, 54, 0.2);
  --mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, 0.2);
  --mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;
  --mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e;
}
.light-theme .mat-datepicker-toggle-active.mat-accent {
  --mat-datepicker-toggle-active-state-icon-color: #ff4081;
}
.light-theme .mat-datepicker-toggle-active.mat-warn {
  --mat-datepicker-toggle-active-state-icon-color: #f44336;
}
.light-theme .mat-icon.mat-primary {
  --mat-icon-color: #3f51b5;
}
.light-theme .mat-icon.mat-accent {
  --mat-icon-color: #ff4081;
}
.light-theme .mat-icon.mat-warn {
  --mat-icon-color: #f44336;
}
.light-theme .mat-step-header.mat-accent {
  --mat-stepper-header-icon-foreground-color: white;
  --mat-stepper-header-selected-state-icon-background-color: #ff4081;
  --mat-stepper-header-selected-state-icon-foreground-color: white;
  --mat-stepper-header-done-state-icon-background-color: #ff4081;
  --mat-stepper-header-done-state-icon-foreground-color: white;
  --mat-stepper-header-edit-state-icon-background-color: #ff4081;
  --mat-stepper-header-edit-state-icon-foreground-color: white;
}
.light-theme .mat-step-header.mat-warn {
  --mat-stepper-header-icon-foreground-color: white;
  --mat-stepper-header-selected-state-icon-background-color: #f44336;
  --mat-stepper-header-selected-state-icon-foreground-color: white;
  --mat-stepper-header-done-state-icon-background-color: #f44336;
  --mat-stepper-header-done-state-icon-foreground-color: white;
  --mat-stepper-header-edit-state-icon-background-color: #f44336;
  --mat-stepper-header-edit-state-icon-foreground-color: white;
}
.light-theme .mat-toolbar.mat-primary {
  --mat-toolbar-container-background-color: #3f51b5;
  --mat-toolbar-container-text-color: white;
}
.light-theme .mat-toolbar.mat-accent {
  --mat-toolbar-container-background-color: #ff4081;
  --mat-toolbar-container-text-color: white;
}
.light-theme .mat-toolbar.mat-warn {
  --mat-toolbar-container-background-color: #f44336;
  --mat-toolbar-container-text-color: white;
}

.dark-theme, body {
  --mat-ripple-color: rgba(255, 255, 255, 0.1);
  --mat-option-selected-state-label-text-color: #ff5722;
  --mat-option-label-text-color: white;
  --mat-option-hover-state-layer-color: rgba(255, 255, 255, 0.08);
  --mat-option-focus-state-layer-color: rgba(255, 255, 255, 0.08);
  --mat-option-selected-state-layer-color: rgba(255, 255, 255, 0.08);
  --mat-optgroup-label-text-color: white;
  --mat-full-pseudo-checkbox-selected-icon-color: #ff4081;
  --mat-full-pseudo-checkbox-selected-checkmark-color: #303030;
  --mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, 0.7);
  --mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;
  --mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;
  --mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;
  --mat-minimal-pseudo-checkbox-selected-checkmark-color: #ff4081;
  --mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868;
  --mat-app-background-color: #303030;
  --mat-app-text-color: white;
  --mat-app-elevation-shadow-level-0: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-1: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-2: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-3: 0px 3px 3px -2px rgba(0, 0, 0, 0.2), 0px 3px 4px 0px rgba(0, 0, 0, 0.14), 0px 1px 8px 0px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-4: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-5: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 5px 8px 0px rgba(0, 0, 0, 0.14), 0px 1px 14px 0px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-6: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-7: 0px 4px 5px -2px rgba(0, 0, 0, 0.2), 0px 7px 10px 1px rgba(0, 0, 0, 0.14), 0px 2px 16px 1px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-8: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-9: 0px 5px 6px -3px rgba(0, 0, 0, 0.2), 0px 9px 12px 1px rgba(0, 0, 0, 0.14), 0px 3px 16px 2px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-10: 0px 6px 6px -3px rgba(0, 0, 0, 0.2), 0px 10px 14px 1px rgba(0, 0, 0, 0.14), 0px 4px 18px 3px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-11: 0px 6px 7px -4px rgba(0, 0, 0, 0.2), 0px 11px 15px 1px rgba(0, 0, 0, 0.14), 0px 4px 20px 3px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-12: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 12px 17px 2px rgba(0, 0, 0, 0.14), 0px 5px 22px 4px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-13: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 13px 19px 2px rgba(0, 0, 0, 0.14), 0px 5px 24px 4px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-14: 0px 7px 9px -4px rgba(0, 0, 0, 0.2), 0px 14px 21px 2px rgba(0, 0, 0, 0.14), 0px 5px 26px 4px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-15: 0px 8px 9px -5px rgba(0, 0, 0, 0.2), 0px 15px 22px 2px rgba(0, 0, 0, 0.14), 0px 6px 28px 5px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-16: 0px 8px 10px -5px rgba(0, 0, 0, 0.2), 0px 16px 24px 2px rgba(0, 0, 0, 0.14), 0px 6px 30px 5px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-17: 0px 8px 11px -5px rgba(0, 0, 0, 0.2), 0px 17px 26px 2px rgba(0, 0, 0, 0.14), 0px 6px 32px 5px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-18: 0px 9px 11px -5px rgba(0, 0, 0, 0.2), 0px 18px 28px 2px rgba(0, 0, 0, 0.14), 0px 7px 34px 6px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-19: 0px 9px 12px -6px rgba(0, 0, 0, 0.2), 0px 19px 29px 2px rgba(0, 0, 0, 0.14), 0px 7px 36px 6px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-20: 0px 10px 13px -6px rgba(0, 0, 0, 0.2), 0px 20px 31px 3px rgba(0, 0, 0, 0.14), 0px 8px 38px 7px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-21: 0px 10px 13px -6px rgba(0, 0, 0, 0.2), 0px 21px 33px 3px rgba(0, 0, 0, 0.14), 0px 8px 40px 7px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-22: 0px 10px 14px -6px rgba(0, 0, 0, 0.2), 0px 22px 35px 3px rgba(0, 0, 0, 0.14), 0px 8px 42px 7px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-23: 0px 11px 14px -7px rgba(0, 0, 0, 0.2), 0px 23px 36px 3px rgba(0, 0, 0, 0.14), 0px 9px 44px 8px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-24: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12);
  --mdc-elevated-card-container-shape: 4px;
  --mdc-outlined-card-container-shape: 4px;
  --mdc-outlined-card-outline-width: 1px;
  --mdc-elevated-card-container-color: #424242;
  --mdc-elevated-card-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
  --mdc-outlined-card-container-color: #424242;
  --mdc-outlined-card-outline-color: rgba(255, 255, 255, 0.12);
  --mdc-outlined-card-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
  --mat-card-subtitle-text-color: rgba(255, 255, 255, 0.7);
  --mdc-linear-progress-active-indicator-height: 4px;
  --mdc-linear-progress-track-height: 4px;
  --mdc-linear-progress-track-shape: 0;
  --mdc-plain-tooltip-container-shape: 4px;
  --mdc-plain-tooltip-supporting-text-line-height: 16px;
  --mdc-plain-tooltip-container-color: #616161;
  --mdc-plain-tooltip-supporting-text-color: #fff;
  --mdc-filled-text-field-active-indicator-height: 1px;
  --mdc-filled-text-field-focus-active-indicator-height: 2px;
  --mdc-filled-text-field-container-shape: 4px;
  --mdc-outlined-text-field-outline-width: 1px;
  --mdc-outlined-text-field-focus-outline-width: 2px;
  --mdc-outlined-text-field-container-shape: 4px;
  --mdc-filled-text-field-caret-color: #ff5722;
  --mdc-filled-text-field-focus-active-indicator-color: #ff5722;
  --mdc-filled-text-field-focus-label-text-color: rgba(255, 87, 34, 0.87);
  --mdc-filled-text-field-container-color: #4a4a4a;
  --mdc-filled-text-field-disabled-container-color: #464646;
  --mdc-filled-text-field-label-text-color: rgba(255, 255, 255, 0.6);
  --mdc-filled-text-field-hover-label-text-color: rgba(255, 255, 255, 0.6);
  --mdc-filled-text-field-disabled-label-text-color: rgba(255, 255, 255, 0.38);
  --mdc-filled-text-field-input-text-color: rgba(255, 255, 255, 0.87);
  --mdc-filled-text-field-disabled-input-text-color: rgba(255, 255, 255, 0.38);
  --mdc-filled-text-field-input-text-placeholder-color: rgba(255, 255, 255, 0.6);
  --mdc-filled-text-field-error-hover-label-text-color: #f44336;
  --mdc-filled-text-field-error-focus-label-text-color: #f44336;
  --mdc-filled-text-field-error-label-text-color: #f44336;
  --mdc-filled-text-field-error-caret-color: #f44336;
  --mdc-filled-text-field-active-indicator-color: rgba(255, 255, 255, 0.42);
  --mdc-filled-text-field-disabled-active-indicator-color: rgba(255, 255, 255, 0.06);
  --mdc-filled-text-field-hover-active-indicator-color: rgba(255, 255, 255, 0.87);
  --mdc-filled-text-field-error-active-indicator-color: #f44336;
  --mdc-filled-text-field-error-focus-active-indicator-color: #f44336;
  --mdc-filled-text-field-error-hover-active-indicator-color: #f44336;
  --mdc-outlined-text-field-caret-color: #ff5722;
  --mdc-outlined-text-field-focus-outline-color: #ff5722;
  --mdc-outlined-text-field-focus-label-text-color: rgba(255, 87, 34, 0.87);
  --mdc-outlined-text-field-label-text-color: rgba(255, 255, 255, 0.6);
  --mdc-outlined-text-field-hover-label-text-color: rgba(255, 255, 255, 0.6);
  --mdc-outlined-text-field-disabled-label-text-color: rgba(255, 255, 255, 0.38);
  --mdc-outlined-text-field-input-text-color: rgba(255, 255, 255, 0.87);
  --mdc-outlined-text-field-disabled-input-text-color: rgba(255, 255, 255, 0.38);
  --mdc-outlined-text-field-input-text-placeholder-color: rgba(255, 255, 255, 0.6);
  --mdc-outlined-text-field-error-caret-color: #f44336;
  --mdc-outlined-text-field-error-focus-label-text-color: #f44336;
  --mdc-outlined-text-field-error-label-text-color: #f44336;
  --mdc-outlined-text-field-error-hover-label-text-color: #f44336;
  --mdc-outlined-text-field-outline-color: rgba(255, 255, 255, 0.38);
  --mdc-outlined-text-field-disabled-outline-color: rgba(255, 255, 255, 0.06);
  --mdc-outlined-text-field-hover-outline-color: rgba(255, 255, 255, 0.87);
  --mdc-outlined-text-field-error-focus-outline-color: #f44336;
  --mdc-outlined-text-field-error-hover-outline-color: #f44336;
  --mdc-outlined-text-field-error-outline-color: #f44336;
  --mat-form-field-focus-select-arrow-color: rgba(255, 87, 34, 0.87);
  --mat-form-field-disabled-input-text-placeholder-color: rgba(255, 255, 255, 0.38);
  --mat-form-field-state-layer-color: rgba(255, 255, 255, 0.87);
  --mat-form-field-error-text-color: #f44336;
  --mat-form-field-select-option-text-color: rgba(0, 0, 0, 0.87);
  --mat-form-field-select-disabled-option-text-color: rgba(0, 0, 0, 0.38);
  --mat-form-field-leading-icon-color: unset;
  --mat-form-field-disabled-leading-icon-color: unset;
  --mat-form-field-trailing-icon-color: unset;
  --mat-form-field-disabled-trailing-icon-color: unset;
  --mat-form-field-error-focus-trailing-icon-color: unset;
  --mat-form-field-error-hover-trailing-icon-color: unset;
  --mat-form-field-error-trailing-icon-color: unset;
  --mat-form-field-enabled-select-arrow-color: rgba(255, 255, 255, 0.54);
  --mat-form-field-disabled-select-arrow-color: rgba(255, 255, 255, 0.38);
  --mat-form-field-hover-state-layer-opacity: 0.08;
  --mat-form-field-focus-state-layer-opacity: 0.24;
  --mat-select-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  --mat-select-panel-background-color: #424242;
  --mat-select-enabled-trigger-text-color: rgba(255, 255, 255, 0.87);
  --mat-select-disabled-trigger-text-color: rgba(255, 255, 255, 0.38);
  --mat-select-placeholder-text-color: rgba(255, 255, 255, 0.6);
  --mat-select-enabled-arrow-color: rgba(255, 255, 255, 0.54);
  --mat-select-disabled-arrow-color: rgba(255, 255, 255, 0.38);
  --mat-select-focused-arrow-color: rgba(255, 87, 34, 0.87);
  --mat-select-invalid-arrow-color: rgba(244, 67, 54, 0.87);
  --mat-autocomplete-container-shape: 4px;
  --mat-autocomplete-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  --mat-autocomplete-background-color: #424242;
  --mdc-dialog-container-shape: 4px;
  --mat-dialog-container-elevation-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12);
  --mat-dialog-container-max-width: 80vw;
  --mat-dialog-container-small-max-width: 80vw;
  --mat-dialog-container-min-width: 0;
  --mat-dialog-actions-alignment: start;
  --mat-dialog-actions-padding: 8px;
  --mat-dialog-content-padding: 20px 24px;
  --mat-dialog-with-actions-content-padding: 20px 24px;
  --mat-dialog-headline-padding: 0 24px 9px;
  --mdc-dialog-container-color: #424242;
  --mdc-dialog-subhead-color: rgba(255, 255, 255, 0.87);
  --mdc-dialog-supporting-text-color: rgba(255, 255, 255, 0.6);
  --mdc-switch-disabled-selected-icon-opacity: 0.38;
  --mdc-switch-disabled-track-opacity: 0.12;
  --mdc-switch-disabled-unselected-icon-opacity: 0.38;
  --mdc-switch-handle-height: 20px;
  --mdc-switch-handle-shape: 10px;
  --mdc-switch-handle-width: 20px;
  --mdc-switch-selected-icon-size: 18px;
  --mdc-switch-track-height: 14px;
  --mdc-switch-track-shape: 7px;
  --mdc-switch-track-width: 36px;
  --mdc-switch-unselected-icon-size: 18px;
  --mdc-switch-selected-focus-state-layer-opacity: 0.12;
  --mdc-switch-selected-hover-state-layer-opacity: 0.04;
  --mdc-switch-selected-pressed-state-layer-opacity: 0.1;
  --mdc-switch-unselected-focus-state-layer-opacity: 0.12;
  --mdc-switch-unselected-hover-state-layer-opacity: 0.04;
  --mdc-switch-unselected-pressed-state-layer-opacity: 0.1;
  --mdc-switch-selected-focus-state-layer-color: #ff8a65;
  --mdc-switch-selected-handle-color: #ff8a65;
  --mdc-switch-selected-hover-state-layer-color: #ff8a65;
  --mdc-switch-selected-pressed-state-layer-color: #ff8a65;
  --mdc-switch-selected-focus-handle-color: #ffab91;
  --mdc-switch-selected-hover-handle-color: #ffab91;
  --mdc-switch-selected-pressed-handle-color: #ffab91;
  --mdc-switch-selected-focus-track-color: #f4511e;
  --mdc-switch-selected-hover-track-color: #f4511e;
  --mdc-switch-selected-pressed-track-color: #f4511e;
  --mdc-switch-selected-track-color: #f4511e;
  --mdc-switch-disabled-selected-handle-color: #000;
  --mdc-switch-disabled-selected-icon-color: #212121;
  --mdc-switch-disabled-selected-track-color: #f5f5f5;
  --mdc-switch-disabled-unselected-handle-color: #000;
  --mdc-switch-disabled-unselected-icon-color: #212121;
  --mdc-switch-disabled-unselected-track-color: #f5f5f5;
  --mdc-switch-handle-surface-color: #fff;
  --mdc-switch-selected-icon-color: #212121;
  --mdc-switch-unselected-focus-handle-color: #fafafa;
  --mdc-switch-unselected-focus-state-layer-color: #f5f5f5;
  --mdc-switch-unselected-focus-track-color: #616161;
  --mdc-switch-unselected-handle-color: #9e9e9e;
  --mdc-switch-unselected-hover-handle-color: #fafafa;
  --mdc-switch-unselected-hover-state-layer-color: #f5f5f5;
  --mdc-switch-unselected-hover-track-color: #616161;
  --mdc-switch-unselected-icon-color: #212121;
  --mdc-switch-unselected-pressed-handle-color: #fafafa;
  --mdc-switch-unselected-pressed-state-layer-color: #f5f5f5;
  --mdc-switch-unselected-pressed-track-color: #616161;
  --mdc-switch-unselected-track-color: #616161;
  --mdc-switch-handle-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
  --mdc-switch-disabled-handle-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
  --mdc-switch-disabled-label-text-color: rgba(255, 255, 255, 0.5);
  --mdc-radio-disabled-selected-icon-opacity: 0.38;
  --mdc-radio-disabled-unselected-icon-opacity: 0.38;
  --mdc-radio-state-layer-size: 40px;
  --mdc-slider-active-track-height: 6px;
  --mdc-slider-active-track-shape: 9999px;
  --mdc-slider-handle-height: 20px;
  --mdc-slider-handle-shape: 50%;
  --mdc-slider-handle-width: 20px;
  --mdc-slider-inactive-track-height: 4px;
  --mdc-slider-inactive-track-shape: 9999px;
  --mdc-slider-with-overlap-handle-outline-width: 1px;
  --mdc-slider-with-tick-marks-active-container-opacity: 0.6;
  --mdc-slider-with-tick-marks-container-shape: 50%;
  --mdc-slider-with-tick-marks-container-size: 2px;
  --mdc-slider-with-tick-marks-inactive-container-opacity: 0.6;
  --mdc-slider-handle-elevation: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
  --mat-slider-value-indicator-width: auto;
  --mat-slider-value-indicator-height: 32px;
  --mat-slider-value-indicator-caret-display: block;
  --mat-slider-value-indicator-border-radius: 4px;
  --mat-slider-value-indicator-padding: 0 12px;
  --mat-slider-value-indicator-text-transform: none;
  --mat-slider-value-indicator-container-transform: translateX(-50%);
  --mdc-slider-handle-color: #ff5722;
  --mdc-slider-focus-handle-color: #ff5722;
  --mdc-slider-hover-handle-color: #ff5722;
  --mdc-slider-active-track-color: #ff5722;
  --mdc-slider-inactive-track-color: #ff5722;
  --mdc-slider-with-tick-marks-inactive-container-color: #ff5722;
  --mdc-slider-with-tick-marks-active-container-color: white;
  --mdc-slider-disabled-active-track-color: #fff;
  --mdc-slider-disabled-handle-color: #fff;
  --mdc-slider-disabled-inactive-track-color: #fff;
  --mdc-slider-label-container-color: #fff;
  --mdc-slider-label-label-text-color: #000;
  --mdc-slider-with-overlap-handle-outline-color: #fff;
  --mdc-slider-with-tick-marks-disabled-container-color: #fff;
  --mat-slider-ripple-color: #ff5722;
  --mat-slider-hover-state-layer-color: rgba(255, 87, 34, 0.05);
  --mat-slider-focus-state-layer-color: rgba(255, 87, 34, 0.2);
  --mat-slider-value-indicator-opacity: 0.9;
  --mat-menu-container-shape: 4px;
  --mat-menu-divider-bottom-spacing: 0;
  --mat-menu-divider-top-spacing: 0;
  --mat-menu-item-spacing: 16px;
  --mat-menu-item-icon-size: 24px;
  --mat-menu-item-leading-spacing: 16px;
  --mat-menu-item-trailing-spacing: 16px;
  --mat-menu-item-with-icon-leading-spacing: 16px;
  --mat-menu-item-with-icon-trailing-spacing: 16px;
  --mat-menu-base-elevation-level: 8;
  --mat-menu-item-label-text-color: white;
  --mat-menu-item-icon-color: white;
  --mat-menu-item-hover-state-layer-color: rgba(255, 255, 255, 0.08);
  --mat-menu-item-focus-state-layer-color: rgba(255, 255, 255, 0.08);
  --mat-menu-container-color: #424242;
  --mat-menu-divider-color: rgba(255, 255, 255, 0.12);
  --mdc-list-list-item-container-shape: 0;
  --mdc-list-list-item-leading-avatar-shape: 50%;
  --mdc-list-list-item-container-color: transparent;
  --mdc-list-list-item-selected-container-color: transparent;
  --mdc-list-list-item-leading-avatar-color: transparent;
  --mdc-list-list-item-leading-icon-size: 24px;
  --mdc-list-list-item-leading-avatar-size: 40px;
  --mdc-list-list-item-trailing-icon-size: 24px;
  --mdc-list-list-item-disabled-state-layer-color: transparent;
  --mdc-list-list-item-disabled-state-layer-opacity: 0;
  --mdc-list-list-item-disabled-label-text-opacity: 0.38;
  --mdc-list-list-item-disabled-leading-icon-opacity: 0.38;
  --mdc-list-list-item-disabled-trailing-icon-opacity: 0.38;
  --mat-list-active-indicator-color: transparent;
  --mat-list-active-indicator-shape: 4px;
  --mdc-list-list-item-label-text-color: white;
  --mdc-list-list-item-supporting-text-color: rgba(255, 255, 255, 0.7);
  --mdc-list-list-item-leading-icon-color: rgba(255, 255, 255, 0.5);
  --mdc-list-list-item-trailing-supporting-text-color: rgba(255, 255, 255, 0.5);
  --mdc-list-list-item-trailing-icon-color: rgba(255, 255, 255, 0.5);
  --mdc-list-list-item-selected-trailing-icon-color: rgba(255, 255, 255, 0.5);
  --mdc-list-list-item-disabled-label-text-color: white;
  --mdc-list-list-item-disabled-leading-icon-color: white;
  --mdc-list-list-item-disabled-trailing-icon-color: white;
  --mdc-list-list-item-hover-label-text-color: white;
  --mdc-list-list-item-hover-leading-icon-color: rgba(255, 255, 255, 0.5);
  --mdc-list-list-item-hover-trailing-icon-color: rgba(255, 255, 255, 0.5);
  --mdc-list-list-item-focus-label-text-color: white;
  --mdc-list-list-item-hover-state-layer-color: white;
  --mdc-list-list-item-hover-state-layer-opacity: 0.08;
  --mdc-list-list-item-focus-state-layer-color: white;
  --mdc-list-list-item-focus-state-layer-opacity: 0.24;
  --mat-paginator-container-text-color: rgba(255, 255, 255, 0.87);
  --mat-paginator-container-background-color: #424242;
  --mat-paginator-enabled-icon-color: rgba(255, 255, 255, 0.54);
  --mat-paginator-disabled-icon-color: rgba(255, 255, 255, 0.12);
  --mdc-secondary-navigation-tab-container-height: 48px;
  --mdc-tab-indicator-active-indicator-height: 2px;
  --mdc-tab-indicator-active-indicator-shape: 0;
  --mat-tab-header-divider-color: transparent;
  --mat-tab-header-divider-height: 0;
  --mdc-checkbox-disabled-selected-checkmark-color: #fff;
  --mdc-checkbox-selected-focus-state-layer-opacity: 0.16;
  --mdc-checkbox-selected-hover-state-layer-opacity: 0.04;
  --mdc-checkbox-selected-pressed-state-layer-opacity: 0.16;
  --mdc-checkbox-unselected-focus-state-layer-opacity: 0.16;
  --mdc-checkbox-unselected-hover-state-layer-opacity: 0.04;
  --mdc-checkbox-unselected-pressed-state-layer-opacity: 0.16;
  --mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, 0.38);
  --mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, 0.38);
  --mdc-checkbox-selected-checkmark-color: white;
  --mdc-checkbox-selected-focus-icon-color: #ff4081;
  --mdc-checkbox-selected-hover-icon-color: #ff4081;
  --mdc-checkbox-selected-icon-color: #ff4081;
  --mdc-checkbox-selected-pressed-icon-color: #ff4081;
  --mdc-checkbox-unselected-focus-icon-color: #eeeeee;
  --mdc-checkbox-unselected-hover-icon-color: #eeeeee;
  --mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, 0.54);
  --mdc-checkbox-selected-focus-state-layer-color: #ff4081;
  --mdc-checkbox-selected-hover-state-layer-color: #ff4081;
  --mdc-checkbox-selected-pressed-state-layer-color: #ff4081;
  --mdc-checkbox-unselected-focus-state-layer-color: white;
  --mdc-checkbox-unselected-hover-state-layer-color: white;
  --mdc-checkbox-unselected-pressed-state-layer-color: white;
  --mat-checkbox-disabled-label-color: rgba(255, 255, 255, 0.5);
  --mat-checkbox-label-text-color: white;
  --mdc-text-button-container-shape: 4px;
  --mdc-text-button-keep-touch-target: false;
  --mdc-filled-button-container-shape: 4px;
  --mdc-filled-button-keep-touch-target: false;
  --mdc-protected-button-container-shape: 4px;
  --mdc-protected-button-container-elevation-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
  --mdc-protected-button-disabled-container-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
  --mdc-protected-button-focus-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
  --mdc-protected-button-hover-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
  --mdc-protected-button-pressed-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  --mdc-outlined-button-keep-touch-target: false;
  --mdc-outlined-button-outline-width: 1px;
  --mdc-outlined-button-container-shape: 4px;
  --mat-text-button-horizontal-padding: 8px;
  --mat-text-button-with-icon-horizontal-padding: 8px;
  --mat-text-button-icon-spacing: 8px;
  --mat-text-button-icon-offset: 0;
  --mat-filled-button-horizontal-padding: 16px;
  --mat-filled-button-icon-spacing: 8px;
  --mat-filled-button-icon-offset: -4px;
  --mat-protected-button-horizontal-padding: 16px;
  --mat-protected-button-icon-spacing: 8px;
  --mat-protected-button-icon-offset: -4px;
  --mat-outlined-button-horizontal-padding: 15px;
  --mat-outlined-button-icon-spacing: 8px;
  --mat-outlined-button-icon-offset: -4px;
  --mdc-text-button-label-text-color: white;
  --mdc-text-button-disabled-label-text-color: rgba(255, 255, 255, 0.5);
  --mat-text-button-state-layer-color: white;
  --mat-text-button-disabled-state-layer-color: white;
  --mat-text-button-ripple-color: rgba(255, 255, 255, 0.1);
  --mat-text-button-hover-state-layer-opacity: 0.08;
  --mat-text-button-focus-state-layer-opacity: 0.24;
  --mat-text-button-pressed-state-layer-opacity: 0.24;
  --mdc-filled-button-container-color: #424242;
  --mdc-filled-button-label-text-color: white;
  --mdc-filled-button-disabled-container-color: rgba(255, 255, 255, 0.12);
  --mdc-filled-button-disabled-label-text-color: rgba(255, 255, 255, 0.5);
  --mat-filled-button-state-layer-color: white;
  --mat-filled-button-disabled-state-layer-color: white;
  --mat-filled-button-ripple-color: rgba(255, 255, 255, 0.1);
  --mat-filled-button-hover-state-layer-opacity: 0.08;
  --mat-filled-button-focus-state-layer-opacity: 0.24;
  --mat-filled-button-pressed-state-layer-opacity: 0.24;
  --mdc-protected-button-container-color: #424242;
  --mdc-protected-button-label-text-color: white;
  --mdc-protected-button-disabled-container-color: rgba(255, 255, 255, 0.12);
  --mdc-protected-button-disabled-label-text-color: rgba(255, 255, 255, 0.5);
  --mat-protected-button-state-layer-color: white;
  --mat-protected-button-disabled-state-layer-color: white;
  --mat-protected-button-ripple-color: rgba(255, 255, 255, 0.1);
  --mat-protected-button-hover-state-layer-opacity: 0.08;
  --mat-protected-button-focus-state-layer-opacity: 0.24;
  --mat-protected-button-pressed-state-layer-opacity: 0.24;
  --mdc-outlined-button-disabled-outline-color: rgba(255, 255, 255, 0.12);
  --mdc-outlined-button-disabled-label-text-color: rgba(255, 255, 255, 0.5);
  --mdc-outlined-button-label-text-color: white;
  --mdc-outlined-button-outline-color: rgba(255, 255, 255, 0.12);
  --mat-outlined-button-state-layer-color: white;
  --mat-outlined-button-disabled-state-layer-color: white;
  --mat-outlined-button-ripple-color: rgba(255, 255, 255, 0.1);
  --mat-outlined-button-hover-state-layer-opacity: 0.08;
  --mat-outlined-button-focus-state-layer-opacity: 0.24;
  --mat-outlined-button-pressed-state-layer-opacity: 0.24;
  --mdc-icon-button-icon-size: 24px;
  --mdc-icon-button-icon-color: inherit;
  --mdc-icon-button-disabled-icon-color: rgba(255, 255, 255, 0.5);
  --mat-icon-button-state-layer-color: white;
  --mat-icon-button-disabled-state-layer-color: white;
  --mat-icon-button-ripple-color: rgba(255, 255, 255, 0.1);
  --mat-icon-button-hover-state-layer-opacity: 0.08;
  --mat-icon-button-focus-state-layer-opacity: 0.24;
  --mat-icon-button-pressed-state-layer-opacity: 0.24;
  --mdc-fab-container-shape: 50%;
  --mdc-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);
  --mdc-fab-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  --mdc-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  --mdc-fab-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 12px 17px 2px rgba(0, 0, 0, 0.14), 0px 5px 22px 4px rgba(0, 0, 0, 0.12);
  --mdc-fab-small-container-shape: 50%;
  --mdc-fab-small-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);
  --mdc-fab-small-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  --mdc-fab-small-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  --mdc-fab-small-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 12px 17px 2px rgba(0, 0, 0, 0.14), 0px 5px 22px 4px rgba(0, 0, 0, 0.12);
  --mdc-extended-fab-container-height: 48px;
  --mdc-extended-fab-container-shape: 24px;
  --mdc-extended-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);
  --mdc-extended-fab-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  --mdc-extended-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  --mdc-extended-fab-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 12px 17px 2px rgba(0, 0, 0, 0.14), 0px 5px 22px 4px rgba(0, 0, 0, 0.12);
  --mdc-fab-container-color: #424242;
  --mat-fab-foreground-color: white;
  --mat-fab-state-layer-color: white;
  --mat-fab-disabled-state-layer-color: white;
  --mat-fab-ripple-color: rgba(255, 255, 255, 0.1);
  --mat-fab-hover-state-layer-opacity: 0.08;
  --mat-fab-focus-state-layer-opacity: 0.24;
  --mat-fab-pressed-state-layer-opacity: 0.24;
  --mat-fab-disabled-state-container-color: rgba(255, 255, 255, 0.12);
  --mat-fab-disabled-state-foreground-color: rgba(255, 255, 255, 0.5);
  --mdc-fab-small-container-color: #424242;
  --mat-fab-small-foreground-color: white;
  --mat-fab-small-state-layer-color: white;
  --mat-fab-small-disabled-state-layer-color: white;
  --mat-fab-small-ripple-color: rgba(255, 255, 255, 0.1);
  --mat-fab-small-hover-state-layer-opacity: 0.08;
  --mat-fab-small-focus-state-layer-opacity: 0.24;
  --mat-fab-small-pressed-state-layer-opacity: 0.24;
  --mat-fab-small-disabled-state-container-color: rgba(255, 255, 255, 0.12);
  --mat-fab-small-disabled-state-foreground-color: rgba(255, 255, 255, 0.5);
  --mdc-snackbar-container-shape: 4px;
  --mdc-snackbar-container-color: #d9d9d9;
  --mdc-snackbar-supporting-text-color: rgba(66, 66, 66, 0.87);
  --mat-snack-bar-button-color: rgba(0, 0, 0, 0.87);
  --mat-table-row-item-outline-width: 1px;
  --mat-table-background-color: #424242;
  --mat-table-header-headline-color: white;
  --mat-table-row-item-label-text-color: white;
  --mat-table-row-item-outline-color: rgba(255, 255, 255, 0.12);
  --mdc-circular-progress-active-indicator-width: 4px;
  --mdc-circular-progress-size: 48px;
  --mdc-circular-progress-active-indicator-color: #ff5722;
  --mat-badge-container-shape: 50%;
  --mat-badge-container-size: unset;
  --mat-badge-small-size-container-size: unset;
  --mat-badge-large-size-container-size: unset;
  --mat-badge-legacy-container-size: 22px;
  --mat-badge-legacy-small-size-container-size: 16px;
  --mat-badge-legacy-large-size-container-size: 28px;
  --mat-badge-container-offset: -11px 0;
  --mat-badge-small-size-container-offset: -8px 0;
  --mat-badge-large-size-container-offset: -14px 0;
  --mat-badge-container-overlap-offset: -11px;
  --mat-badge-small-size-container-overlap-offset: -8px;
  --mat-badge-large-size-container-overlap-offset: -14px;
  --mat-badge-container-padding: 0;
  --mat-badge-small-size-container-padding: 0;
  --mat-badge-large-size-container-padding: 0;
  --mat-badge-background-color: #ff5722;
  --mat-badge-text-color: white;
  --mat-badge-disabled-state-background-color: #6e6e6e;
  --mat-badge-disabled-state-text-color: rgba(255, 255, 255, 0.5);
  --mat-bottom-sheet-container-shape: 4px;
  --mat-bottom-sheet-container-text-color: white;
  --mat-bottom-sheet-container-background-color: #424242;
  --mat-legacy-button-toggle-height: 36px;
  --mat-legacy-button-toggle-shape: 2px;
  --mat-legacy-button-toggle-focus-state-layer-opacity: 1;
  --mat-standard-button-toggle-shape: 4px;
  --mat-standard-button-toggle-hover-state-layer-opacity: 0.04;
  --mat-standard-button-toggle-focus-state-layer-opacity: 0.12;
  --mat-legacy-button-toggle-text-color: rgba(255, 255, 255, 0.5);
  --mat-legacy-button-toggle-state-layer-color: rgba(255, 255, 255, 0.12);
  --mat-legacy-button-toggle-selected-state-text-color: rgba(255, 255, 255, 0.7);
  --mat-legacy-button-toggle-selected-state-background-color: #212121;
  --mat-legacy-button-toggle-disabled-state-text-color: rgba(255, 255, 255, 0.3);
  --mat-legacy-button-toggle-disabled-state-background-color: black;
  --mat-legacy-button-toggle-disabled-selected-state-background-color: #424242;
  --mat-standard-button-toggle-text-color: white;
  --mat-standard-button-toggle-background-color: #424242;
  --mat-standard-button-toggle-state-layer-color: white;
  --mat-standard-button-toggle-selected-state-background-color: #212121;
  --mat-standard-button-toggle-selected-state-text-color: white;
  --mat-standard-button-toggle-disabled-state-text-color: rgba(255, 255, 255, 0.3);
  --mat-standard-button-toggle-disabled-state-background-color: #424242;
  --mat-standard-button-toggle-disabled-selected-state-text-color: white;
  --mat-standard-button-toggle-disabled-selected-state-background-color: #424242;
  --mat-standard-button-toggle-divider-color: #595959;
  --mat-datepicker-calendar-container-shape: 4px;
  --mat-datepicker-calendar-container-touch-shape: 4px;
  --mat-datepicker-calendar-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
  --mat-datepicker-calendar-container-touch-elevation-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12);
  --mat-datepicker-calendar-date-selected-state-text-color: white;
  --mat-datepicker-calendar-date-selected-state-background-color: #ff5722;
  --mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(255, 87, 34, 0.4);
  --mat-datepicker-calendar-date-today-selected-state-outline-color: white;
  --mat-datepicker-calendar-date-focus-state-background-color: rgba(255, 87, 34, 0.3);
  --mat-datepicker-calendar-date-hover-state-background-color: rgba(255, 87, 34, 0.3);
  --mat-datepicker-toggle-active-state-icon-color: #ff5722;
  --mat-datepicker-calendar-date-in-range-state-background-color: rgba(255, 87, 34, 0.2);
  --mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, 0.2);
  --mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;
  --mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e;
  --mat-datepicker-toggle-icon-color: white;
  --mat-datepicker-calendar-body-label-text-color: rgba(255, 255, 255, 0.7);
  --mat-datepicker-calendar-period-button-text-color: white;
  --mat-datepicker-calendar-period-button-icon-color: white;
  --mat-datepicker-calendar-navigation-button-icon-color: white;
  --mat-datepicker-calendar-header-divider-color: rgba(255, 255, 255, 0.12);
  --mat-datepicker-calendar-header-text-color: rgba(255, 255, 255, 0.7);
  --mat-datepicker-calendar-date-today-outline-color: rgba(255, 255, 255, 0.5);
  --mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(255, 255, 255, 0.3);
  --mat-datepicker-calendar-date-text-color: white;
  --mat-datepicker-calendar-date-outline-color: transparent;
  --mat-datepicker-calendar-date-disabled-state-text-color: rgba(255, 255, 255, 0.5);
  --mat-datepicker-calendar-date-preview-state-outline-color: rgba(255, 255, 255, 0.24);
  --mat-datepicker-range-input-separator-color: white;
  --mat-datepicker-range-input-disabled-state-separator-color: rgba(255, 255, 255, 0.5);
  --mat-datepicker-range-input-disabled-state-text-color: rgba(255, 255, 255, 0.5);
  --mat-datepicker-calendar-container-background-color: #424242;
  --mat-datepicker-calendar-container-text-color: white;
  --mat-divider-width: 1px;
  --mat-divider-color: rgba(255, 255, 255, 0.12);
  --mat-expansion-container-shape: 4px;
  --mat-expansion-legacy-header-indicator-display: inline-block;
  --mat-expansion-header-indicator-display: none;
  --mat-expansion-container-background-color: #424242;
  --mat-expansion-container-text-color: white;
  --mat-expansion-actions-divider-color: rgba(255, 255, 255, 0.12);
  --mat-expansion-header-hover-state-layer-color: rgba(255, 255, 255, 0.04);
  --mat-expansion-header-focus-state-layer-color: rgba(255, 255, 255, 0.04);
  --mat-expansion-header-disabled-state-text-color: rgba(255, 255, 255, 0.3);
  --mat-expansion-header-text-color: white;
  --mat-expansion-header-description-color: rgba(255, 255, 255, 0.7);
  --mat-expansion-header-indicator-color: rgba(255, 255, 255, 0.7);
  --mat-icon-color: inherit;
  --mat-sidenav-container-shape: 0;
  --mat-sidenav-container-elevation-shadow: 0px 8px 10px -5px rgba(0, 0, 0, 0.2), 0px 16px 24px 2px rgba(0, 0, 0, 0.14), 0px 6px 30px 5px rgba(0, 0, 0, 0.12);
  --mat-sidenav-container-width: auto;
  --mat-sidenav-container-divider-color: rgba(255, 255, 255, 0.12);
  --mat-sidenav-container-background-color: #424242;
  --mat-sidenav-container-text-color: white;
  --mat-sidenav-content-background-color: #303030;
  --mat-sidenav-content-text-color: white;
  --mat-sidenav-scrim-color: rgba(189, 189, 189, 0.6);
  --mat-stepper-header-icon-foreground-color: white;
  --mat-stepper-header-selected-state-icon-background-color: #ff5722;
  --mat-stepper-header-selected-state-icon-foreground-color: white;
  --mat-stepper-header-done-state-icon-background-color: #ff5722;
  --mat-stepper-header-done-state-icon-foreground-color: white;
  --mat-stepper-header-edit-state-icon-background-color: #ff5722;
  --mat-stepper-header-edit-state-icon-foreground-color: white;
  --mat-stepper-container-color: #424242;
  --mat-stepper-line-color: rgba(255, 255, 255, 0.12);
  --mat-stepper-header-hover-state-layer-color: rgba(255, 255, 255, 0.04);
  --mat-stepper-header-focus-state-layer-color: rgba(255, 255, 255, 0.04);
  --mat-stepper-header-label-text-color: rgba(255, 255, 255, 0.7);
  --mat-stepper-header-optional-label-text-color: rgba(255, 255, 255, 0.7);
  --mat-stepper-header-selected-state-label-text-color: white;
  --mat-stepper-header-error-state-label-text-color: #f44336;
  --mat-stepper-header-icon-background-color: rgba(255, 255, 255, 0.7);
  --mat-stepper-header-error-state-icon-foreground-color: #f44336;
  --mat-stepper-header-error-state-icon-background-color: transparent;
  --mat-sort-arrow-color: #c6c6c6;
  --mat-toolbar-container-background-color: #212121;
  --mat-toolbar-container-text-color: white;
  --mat-tree-container-background-color: #424242;
  --mat-tree-node-text-color: white;
  background-color: #121212;
  color: rgba(255, 255, 255, 0.74);
}
.dark-theme .mat-accent, body .mat-accent {
  --mat-option-selected-state-label-text-color: #ff4081;
  --mat-option-label-text-color: white;
  --mat-option-hover-state-layer-color: rgba(255, 255, 255, 0.08);
  --mat-option-focus-state-layer-color: rgba(255, 255, 255, 0.08);
  --mat-option-selected-state-layer-color: rgba(255, 255, 255, 0.08);
}
.dark-theme .mat-warn, body .mat-warn {
  --mat-option-selected-state-label-text-color: #f44336;
  --mat-option-label-text-color: white;
  --mat-option-hover-state-layer-color: rgba(255, 255, 255, 0.08);
  --mat-option-focus-state-layer-color: rgba(255, 255, 255, 0.08);
  --mat-option-selected-state-layer-color: rgba(255, 255, 255, 0.08);
}
.dark-theme .mat-primary, body .mat-primary {
  --mat-full-pseudo-checkbox-selected-icon-color: #ff5722;
  --mat-full-pseudo-checkbox-selected-checkmark-color: #303030;
  --mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, 0.7);
  --mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;
  --mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;
  --mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;
  --mat-minimal-pseudo-checkbox-selected-checkmark-color: #ff5722;
  --mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868;
}
.dark-theme .mat-accent, body .mat-accent {
  --mat-full-pseudo-checkbox-selected-icon-color: #ff4081;
  --mat-full-pseudo-checkbox-selected-checkmark-color: #303030;
  --mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, 0.7);
  --mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;
  --mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;
  --mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;
  --mat-minimal-pseudo-checkbox-selected-checkmark-color: #ff4081;
  --mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868;
}
.dark-theme .mat-warn, body .mat-warn {
  --mat-full-pseudo-checkbox-selected-icon-color: #f44336;
  --mat-full-pseudo-checkbox-selected-checkmark-color: #303030;
  --mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, 0.7);
  --mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;
  --mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;
  --mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;
  --mat-minimal-pseudo-checkbox-selected-checkmark-color: #f44336;
  --mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868;
}
.dark-theme .mat-mdc-progress-bar, body .mat-mdc-progress-bar {
  --mdc-linear-progress-active-indicator-color: #ff5722;
  --mdc-linear-progress-track-color: rgba(255, 87, 34, 0.25);
}
.dark-theme .mat-mdc-progress-bar.mat-accent, body .mat-mdc-progress-bar.mat-accent {
  --mdc-linear-progress-active-indicator-color: #ff4081;
  --mdc-linear-progress-track-color: rgba(255, 64, 129, 0.25);
}
.dark-theme .mat-mdc-progress-bar.mat-warn, body .mat-mdc-progress-bar.mat-warn {
  --mdc-linear-progress-active-indicator-color: #f44336;
  --mdc-linear-progress-track-color: rgba(244, 67, 54, 0.25);
}
.dark-theme .mat-mdc-form-field.mat-accent, body .mat-mdc-form-field.mat-accent {
  --mdc-filled-text-field-caret-color: #ff4081;
  --mdc-filled-text-field-focus-active-indicator-color: #ff4081;
  --mdc-filled-text-field-focus-label-text-color: rgba(255, 64, 129, 0.87);
  --mdc-outlined-text-field-caret-color: #ff4081;
  --mdc-outlined-text-field-focus-outline-color: #ff4081;
  --mdc-outlined-text-field-focus-label-text-color: rgba(255, 64, 129, 0.87);
  --mat-form-field-focus-select-arrow-color: rgba(255, 64, 129, 0.87);
}
.dark-theme .mat-mdc-form-field.mat-warn, body .mat-mdc-form-field.mat-warn {
  --mdc-filled-text-field-caret-color: #f44336;
  --mdc-filled-text-field-focus-active-indicator-color: #f44336;
  --mdc-filled-text-field-focus-label-text-color: rgba(244, 67, 54, 0.87);
  --mdc-outlined-text-field-caret-color: #f44336;
  --mdc-outlined-text-field-focus-outline-color: #f44336;
  --mdc-outlined-text-field-focus-label-text-color: rgba(244, 67, 54, 0.87);
  --mat-form-field-focus-select-arrow-color: rgba(244, 67, 54, 0.87);
}
.dark-theme .mat-mdc-form-field.mat-accent, body .mat-mdc-form-field.mat-accent {
  --mat-select-panel-background-color: #424242;
  --mat-select-enabled-trigger-text-color: rgba(255, 255, 255, 0.87);
  --mat-select-disabled-trigger-text-color: rgba(255, 255, 255, 0.38);
  --mat-select-placeholder-text-color: rgba(255, 255, 255, 0.6);
  --mat-select-enabled-arrow-color: rgba(255, 255, 255, 0.54);
  --mat-select-disabled-arrow-color: rgba(255, 255, 255, 0.38);
  --mat-select-focused-arrow-color: rgba(255, 64, 129, 0.87);
  --mat-select-invalid-arrow-color: rgba(244, 67, 54, 0.87);
}
.dark-theme .mat-mdc-form-field.mat-warn, body .mat-mdc-form-field.mat-warn {
  --mat-select-panel-background-color: #424242;
  --mat-select-enabled-trigger-text-color: rgba(255, 255, 255, 0.87);
  --mat-select-disabled-trigger-text-color: rgba(255, 255, 255, 0.38);
  --mat-select-placeholder-text-color: rgba(255, 255, 255, 0.6);
  --mat-select-enabled-arrow-color: rgba(255, 255, 255, 0.54);
  --mat-select-disabled-arrow-color: rgba(255, 255, 255, 0.38);
  --mat-select-focused-arrow-color: rgba(244, 67, 54, 0.87);
  --mat-select-invalid-arrow-color: rgba(244, 67, 54, 0.87);
}
.dark-theme .mat-mdc-standard-chip, body .mat-mdc-standard-chip {
  --mdc-chip-container-shape-radius: 16px;
  --mdc-chip-with-avatar-avatar-shape-radius: 14px;
  --mdc-chip-with-avatar-avatar-size: 28px;
  --mdc-chip-with-icon-icon-size: 18px;
  --mdc-chip-outline-width: 0;
  --mdc-chip-outline-color: transparent;
  --mdc-chip-disabled-outline-color: transparent;
  --mdc-chip-focus-outline-color: transparent;
  --mdc-chip-hover-state-layer-opacity: 0.04;
  --mdc-chip-with-avatar-disabled-avatar-opacity: 1;
  --mdc-chip-flat-selected-outline-width: 0;
  --mdc-chip-selected-hover-state-layer-opacity: 0.04;
  --mdc-chip-with-trailing-icon-disabled-trailing-icon-opacity: 1;
  --mdc-chip-with-icon-disabled-icon-opacity: 1;
  --mat-chip-disabled-container-opacity: 0.4;
  --mat-chip-trailing-action-opacity: 0.54;
  --mat-chip-trailing-action-focus-opacity: 1;
  --mat-chip-trailing-action-state-layer-color: transparent;
  --mat-chip-selected-trailing-action-state-layer-color: transparent;
  --mat-chip-trailing-action-hover-state-layer-opacity: 0;
  --mat-chip-trailing-action-focus-state-layer-opacity: 0;
  --mdc-chip-disabled-label-text-color: #fafafa;
  --mdc-chip-elevated-container-color: #595959;
  --mdc-chip-elevated-selected-container-color: #595959;
  --mdc-chip-elevated-disabled-container-color: #595959;
  --mdc-chip-flat-disabled-selected-container-color: #595959;
  --mdc-chip-focus-state-layer-color: white;
  --mdc-chip-hover-state-layer-color: white;
  --mdc-chip-selected-hover-state-layer-color: white;
  --mdc-chip-focus-state-layer-opacity: 0.12;
  --mdc-chip-selected-focus-state-layer-color: white;
  --mdc-chip-selected-focus-state-layer-opacity: 0.12;
  --mdc-chip-label-text-color: #fafafa;
  --mdc-chip-selected-label-text-color: #fafafa;
  --mdc-chip-with-icon-icon-color: #fafafa;
  --mdc-chip-with-icon-disabled-icon-color: #fafafa;
  --mdc-chip-with-icon-selected-icon-color: #fafafa;
  --mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #fafafa;
  --mdc-chip-with-trailing-icon-trailing-icon-color: #fafafa;
  --mat-chip-selected-disabled-trailing-icon-color: #fafafa;
  --mat-chip-selected-trailing-icon-color: #fafafa;
}
.dark-theme .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary, body .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary, .dark-theme .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary, body .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary {
  --mdc-chip-disabled-label-text-color: white;
  --mdc-chip-elevated-container-color: #ff5722;
  --mdc-chip-elevated-selected-container-color: #ff5722;
  --mdc-chip-elevated-disabled-container-color: #ff5722;
  --mdc-chip-flat-disabled-selected-container-color: #ff5722;
  --mdc-chip-focus-state-layer-color: white;
  --mdc-chip-hover-state-layer-color: white;
  --mdc-chip-selected-hover-state-layer-color: white;
  --mdc-chip-focus-state-layer-opacity: 0.12;
  --mdc-chip-selected-focus-state-layer-color: white;
  --mdc-chip-selected-focus-state-layer-opacity: 0.12;
  --mdc-chip-label-text-color: white;
  --mdc-chip-selected-label-text-color: white;
  --mdc-chip-with-icon-icon-color: white;
  --mdc-chip-with-icon-disabled-icon-color: white;
  --mdc-chip-with-icon-selected-icon-color: white;
  --mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;
  --mdc-chip-with-trailing-icon-trailing-icon-color: white;
  --mat-chip-selected-disabled-trailing-icon-color: white;
  --mat-chip-selected-trailing-icon-color: white;
}
.dark-theme .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent, body .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent, .dark-theme .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent, body .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent {
  --mdc-chip-disabled-label-text-color: white;
  --mdc-chip-elevated-container-color: #ff4081;
  --mdc-chip-elevated-selected-container-color: #ff4081;
  --mdc-chip-elevated-disabled-container-color: #ff4081;
  --mdc-chip-flat-disabled-selected-container-color: #ff4081;
  --mdc-chip-focus-state-layer-color: white;
  --mdc-chip-hover-state-layer-color: white;
  --mdc-chip-selected-hover-state-layer-color: white;
  --mdc-chip-focus-state-layer-opacity: 0.12;
  --mdc-chip-selected-focus-state-layer-color: white;
  --mdc-chip-selected-focus-state-layer-opacity: 0.12;
  --mdc-chip-label-text-color: white;
  --mdc-chip-selected-label-text-color: white;
  --mdc-chip-with-icon-icon-color: white;
  --mdc-chip-with-icon-disabled-icon-color: white;
  --mdc-chip-with-icon-selected-icon-color: white;
  --mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;
  --mdc-chip-with-trailing-icon-trailing-icon-color: white;
  --mat-chip-selected-disabled-trailing-icon-color: white;
  --mat-chip-selected-trailing-icon-color: white;
}
.dark-theme .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn, body .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn, .dark-theme .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn, body .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn {
  --mdc-chip-disabled-label-text-color: white;
  --mdc-chip-elevated-container-color: #f44336;
  --mdc-chip-elevated-selected-container-color: #f44336;
  --mdc-chip-elevated-disabled-container-color: #f44336;
  --mdc-chip-flat-disabled-selected-container-color: #f44336;
  --mdc-chip-focus-state-layer-color: white;
  --mdc-chip-hover-state-layer-color: white;
  --mdc-chip-selected-hover-state-layer-color: white;
  --mdc-chip-focus-state-layer-opacity: 0.12;
  --mdc-chip-selected-focus-state-layer-color: white;
  --mdc-chip-selected-focus-state-layer-opacity: 0.12;
  --mdc-chip-label-text-color: white;
  --mdc-chip-selected-label-text-color: white;
  --mdc-chip-with-icon-icon-color: white;
  --mdc-chip-with-icon-disabled-icon-color: white;
  --mdc-chip-with-icon-selected-icon-color: white;
  --mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;
  --mdc-chip-with-trailing-icon-trailing-icon-color: white;
  --mat-chip-selected-disabled-trailing-icon-color: white;
  --mat-chip-selected-trailing-icon-color: white;
}
.dark-theme .mat-mdc-slide-toggle, body .mat-mdc-slide-toggle {
  --mat-switch-disabled-selected-handle-opacity: 0.38;
  --mat-switch-disabled-unselected-handle-opacity: 0.38;
  --mat-switch-unselected-handle-size: 20px;
  --mat-switch-selected-handle-size: 20px;
  --mat-switch-pressed-handle-size: 20px;
  --mat-switch-with-icon-handle-size: 20px;
  --mat-switch-selected-handle-horizontal-margin: 0;
  --mat-switch-selected-with-icon-handle-horizontal-margin: 0;
  --mat-switch-selected-pressed-handle-horizontal-margin: 0;
  --mat-switch-unselected-handle-horizontal-margin: 0;
  --mat-switch-unselected-with-icon-handle-horizontal-margin: 0;
  --mat-switch-unselected-pressed-handle-horizontal-margin: 0;
  --mat-switch-visible-track-opacity: 1;
  --mat-switch-hidden-track-opacity: 1;
  --mat-switch-visible-track-transition: transform 75ms 0ms cubic-bezier(0, 0, 0.2, 1);
  --mat-switch-hidden-track-transition: transform 75ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
  --mat-switch-track-outline-width: 1px;
  --mat-switch-track-outline-color: transparent;
  --mat-switch-selected-track-outline-width: 1px;
  --mat-switch-selected-track-outline-color: transparent;
  --mat-switch-disabled-unselected-track-outline-width: 1px;
  --mat-switch-disabled-unselected-track-outline-color: transparent;
  --mat-switch-label-text-color: white;
}
.dark-theme .mat-mdc-slide-toggle.mat-accent, body .mat-mdc-slide-toggle.mat-accent {
  --mdc-switch-selected-focus-state-layer-color: #f06292;
  --mdc-switch-selected-handle-color: #f06292;
  --mdc-switch-selected-hover-state-layer-color: #f06292;
  --mdc-switch-selected-pressed-state-layer-color: #f06292;
  --mdc-switch-selected-focus-handle-color: #f48fb1;
  --mdc-switch-selected-hover-handle-color: #f48fb1;
  --mdc-switch-selected-pressed-handle-color: #f48fb1;
  --mdc-switch-selected-focus-track-color: #d81b60;
  --mdc-switch-selected-hover-track-color: #d81b60;
  --mdc-switch-selected-pressed-track-color: #d81b60;
  --mdc-switch-selected-track-color: #d81b60;
}
.dark-theme .mat-mdc-slide-toggle.mat-warn, body .mat-mdc-slide-toggle.mat-warn {
  --mdc-switch-selected-focus-state-layer-color: #e57373;
  --mdc-switch-selected-handle-color: #e57373;
  --mdc-switch-selected-hover-state-layer-color: #e57373;
  --mdc-switch-selected-pressed-state-layer-color: #e57373;
  --mdc-switch-selected-focus-handle-color: #ef9a9a;
  --mdc-switch-selected-hover-handle-color: #ef9a9a;
  --mdc-switch-selected-pressed-handle-color: #ef9a9a;
  --mdc-switch-selected-focus-track-color: #e53935;
  --mdc-switch-selected-hover-track-color: #e53935;
  --mdc-switch-selected-pressed-track-color: #e53935;
  --mdc-switch-selected-track-color: #e53935;
}
.dark-theme .mat-mdc-radio-button.mat-primary, body .mat-mdc-radio-button.mat-primary {
  --mdc-radio-disabled-selected-icon-color: white;
  --mdc-radio-disabled-unselected-icon-color: white;
  --mdc-radio-unselected-hover-icon-color: #eeeeee;
  --mdc-radio-unselected-focus-icon-color: #eeeeee;
  --mdc-radio-unselected-icon-color: rgba(255, 255, 255, 0.54);
  --mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, 0.54);
  --mdc-radio-selected-focus-icon-color: #ff5722;
  --mdc-radio-selected-hover-icon-color: #ff5722;
  --mdc-radio-selected-icon-color: #ff5722;
  --mdc-radio-selected-pressed-icon-color: #ff5722;
  --mat-radio-ripple-color: white;
  --mat-radio-checked-ripple-color: #ff5722;
  --mat-radio-disabled-label-color: rgba(255, 255, 255, 0.5);
  --mat-radio-label-text-color: white;
}
.dark-theme .mat-mdc-radio-button.mat-accent, body .mat-mdc-radio-button.mat-accent {
  --mdc-radio-disabled-selected-icon-color: white;
  --mdc-radio-disabled-unselected-icon-color: white;
  --mdc-radio-unselected-hover-icon-color: #eeeeee;
  --mdc-radio-unselected-focus-icon-color: #eeeeee;
  --mdc-radio-unselected-icon-color: rgba(255, 255, 255, 0.54);
  --mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, 0.54);
  --mdc-radio-selected-focus-icon-color: #ff4081;
  --mdc-radio-selected-hover-icon-color: #ff4081;
  --mdc-radio-selected-icon-color: #ff4081;
  --mdc-radio-selected-pressed-icon-color: #ff4081;
  --mat-radio-ripple-color: white;
  --mat-radio-checked-ripple-color: #ff4081;
  --mat-radio-disabled-label-color: rgba(255, 255, 255, 0.5);
  --mat-radio-label-text-color: white;
}
.dark-theme .mat-mdc-radio-button.mat-warn, body .mat-mdc-radio-button.mat-warn {
  --mdc-radio-disabled-selected-icon-color: white;
  --mdc-radio-disabled-unselected-icon-color: white;
  --mdc-radio-unselected-hover-icon-color: #eeeeee;
  --mdc-radio-unselected-focus-icon-color: #eeeeee;
  --mdc-radio-unselected-icon-color: rgba(255, 255, 255, 0.54);
  --mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, 0.54);
  --mdc-radio-selected-focus-icon-color: #f44336;
  --mdc-radio-selected-hover-icon-color: #f44336;
  --mdc-radio-selected-icon-color: #f44336;
  --mdc-radio-selected-pressed-icon-color: #f44336;
  --mat-radio-ripple-color: white;
  --mat-radio-checked-ripple-color: #f44336;
  --mat-radio-disabled-label-color: rgba(255, 255, 255, 0.5);
  --mat-radio-label-text-color: white;
}
.dark-theme .mat-accent, body .mat-accent {
  --mdc-slider-handle-color: #ff4081;
  --mdc-slider-focus-handle-color: #ff4081;
  --mdc-slider-hover-handle-color: #ff4081;
  --mdc-slider-active-track-color: #ff4081;
  --mdc-slider-inactive-track-color: #ff4081;
  --mdc-slider-with-tick-marks-inactive-container-color: #ff4081;
  --mdc-slider-with-tick-marks-active-container-color: white;
  --mat-slider-ripple-color: #ff4081;
  --mat-slider-hover-state-layer-color: rgba(255, 64, 129, 0.05);
  --mat-slider-focus-state-layer-color: rgba(255, 64, 129, 0.2);
}
.dark-theme .mat-warn, body .mat-warn {
  --mdc-slider-handle-color: #f44336;
  --mdc-slider-focus-handle-color: #f44336;
  --mdc-slider-hover-handle-color: #f44336;
  --mdc-slider-active-track-color: #f44336;
  --mdc-slider-inactive-track-color: #f44336;
  --mdc-slider-with-tick-marks-inactive-container-color: #f44336;
  --mdc-slider-with-tick-marks-active-container-color: white;
  --mat-slider-ripple-color: #f44336;
  --mat-slider-hover-state-layer-color: rgba(244, 67, 54, 0.05);
  --mat-slider-focus-state-layer-color: rgba(244, 67, 54, 0.2);
}
.dark-theme .mdc-list-item__start, body .mdc-list-item__start,
.dark-theme .mdc-list-item__end,
body .mdc-list-item__end {
  --mdc-radio-disabled-selected-icon-color: white;
  --mdc-radio-disabled-unselected-icon-color: white;
  --mdc-radio-unselected-hover-icon-color: #eeeeee;
  --mdc-radio-unselected-focus-icon-color: #eeeeee;
  --mdc-radio-unselected-icon-color: rgba(255, 255, 255, 0.54);
  --mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, 0.54);
  --mdc-radio-selected-focus-icon-color: #ff5722;
  --mdc-radio-selected-hover-icon-color: #ff5722;
  --mdc-radio-selected-icon-color: #ff5722;
  --mdc-radio-selected-pressed-icon-color: #ff5722;
}
.dark-theme .mat-accent .mdc-list-item__start, body .mat-accent .mdc-list-item__start,
.dark-theme .mat-accent .mdc-list-item__end,
body .mat-accent .mdc-list-item__end {
  --mdc-radio-disabled-selected-icon-color: white;
  --mdc-radio-disabled-unselected-icon-color: white;
  --mdc-radio-unselected-hover-icon-color: #eeeeee;
  --mdc-radio-unselected-focus-icon-color: #eeeeee;
  --mdc-radio-unselected-icon-color: rgba(255, 255, 255, 0.54);
  --mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, 0.54);
  --mdc-radio-selected-focus-icon-color: #ff4081;
  --mdc-radio-selected-hover-icon-color: #ff4081;
  --mdc-radio-selected-icon-color: #ff4081;
  --mdc-radio-selected-pressed-icon-color: #ff4081;
}
.dark-theme .mat-warn .mdc-list-item__start, body .mat-warn .mdc-list-item__start,
.dark-theme .mat-warn .mdc-list-item__end,
body .mat-warn .mdc-list-item__end {
  --mdc-radio-disabled-selected-icon-color: white;
  --mdc-radio-disabled-unselected-icon-color: white;
  --mdc-radio-unselected-hover-icon-color: #eeeeee;
  --mdc-radio-unselected-focus-icon-color: #eeeeee;
  --mdc-radio-unselected-icon-color: rgba(255, 255, 255, 0.54);
  --mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, 0.54);
  --mdc-radio-selected-focus-icon-color: #f44336;
  --mdc-radio-selected-hover-icon-color: #f44336;
  --mdc-radio-selected-icon-color: #f44336;
  --mdc-radio-selected-pressed-icon-color: #f44336;
}
.dark-theme .mat-mdc-list-option, body .mat-mdc-list-option {
  --mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, 0.38);
  --mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, 0.38);
  --mdc-checkbox-selected-checkmark-color: white;
  --mdc-checkbox-selected-focus-icon-color: #ff5722;
  --mdc-checkbox-selected-hover-icon-color: #ff5722;
  --mdc-checkbox-selected-icon-color: #ff5722;
  --mdc-checkbox-selected-pressed-icon-color: #ff5722;
  --mdc-checkbox-unselected-focus-icon-color: #eeeeee;
  --mdc-checkbox-unselected-hover-icon-color: #eeeeee;
  --mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, 0.54);
  --mdc-checkbox-selected-focus-state-layer-color: #ff5722;
  --mdc-checkbox-selected-hover-state-layer-color: #ff5722;
  --mdc-checkbox-selected-pressed-state-layer-color: #ff5722;
  --mdc-checkbox-unselected-focus-state-layer-color: white;
  --mdc-checkbox-unselected-hover-state-layer-color: white;
  --mdc-checkbox-unselected-pressed-state-layer-color: white;
}
.dark-theme .mat-mdc-list-option.mat-accent, body .mat-mdc-list-option.mat-accent {
  --mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, 0.38);
  --mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, 0.38);
  --mdc-checkbox-selected-checkmark-color: white;
  --mdc-checkbox-selected-focus-icon-color: #ff4081;
  --mdc-checkbox-selected-hover-icon-color: #ff4081;
  --mdc-checkbox-selected-icon-color: #ff4081;
  --mdc-checkbox-selected-pressed-icon-color: #ff4081;
  --mdc-checkbox-unselected-focus-icon-color: #eeeeee;
  --mdc-checkbox-unselected-hover-icon-color: #eeeeee;
  --mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, 0.54);
  --mdc-checkbox-selected-focus-state-layer-color: #ff4081;
  --mdc-checkbox-selected-hover-state-layer-color: #ff4081;
  --mdc-checkbox-selected-pressed-state-layer-color: #ff4081;
  --mdc-checkbox-unselected-focus-state-layer-color: white;
  --mdc-checkbox-unselected-hover-state-layer-color: white;
  --mdc-checkbox-unselected-pressed-state-layer-color: white;
}
.dark-theme .mat-mdc-list-option.mat-warn, body .mat-mdc-list-option.mat-warn {
  --mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, 0.38);
  --mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, 0.38);
  --mdc-checkbox-selected-checkmark-color: white;
  --mdc-checkbox-selected-focus-icon-color: #f44336;
  --mdc-checkbox-selected-hover-icon-color: #f44336;
  --mdc-checkbox-selected-icon-color: #f44336;
  --mdc-checkbox-selected-pressed-icon-color: #f44336;
  --mdc-checkbox-unselected-focus-icon-color: #eeeeee;
  --mdc-checkbox-unselected-hover-icon-color: #eeeeee;
  --mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, 0.54);
  --mdc-checkbox-selected-focus-state-layer-color: #f44336;
  --mdc-checkbox-selected-hover-state-layer-color: #f44336;
  --mdc-checkbox-selected-pressed-state-layer-color: #f44336;
  --mdc-checkbox-unselected-focus-state-layer-color: white;
  --mdc-checkbox-unselected-hover-state-layer-color: white;
  --mdc-checkbox-unselected-pressed-state-layer-color: white;
}
.dark-theme .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text, body .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text,
.dark-theme .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__start,
body .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__start,
.dark-theme .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text,
body .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text,
.dark-theme .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__start,
body .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__start {
  color: #ff5722;
}
.dark-theme .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__start, body .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__start,
.dark-theme .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__content,
body .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__content,
.dark-theme .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__end,
body .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__end {
  opacity: 1;
}
.dark-theme .mat-mdc-tab-group, body .mat-mdc-tab-group, .dark-theme .mat-mdc-tab-nav-bar, body .mat-mdc-tab-nav-bar {
  --mdc-tab-indicator-active-indicator-color: #ff5722;
  --mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, 0.5);
  --mat-tab-header-pagination-icon-color: white;
  --mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, 0.6);
  --mat-tab-header-active-label-text-color: #ff5722;
  --mat-tab-header-active-ripple-color: #ff5722;
  --mat-tab-header-inactive-ripple-color: #ff5722;
  --mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, 0.6);
  --mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, 0.6);
  --mat-tab-header-active-focus-label-text-color: #ff5722;
  --mat-tab-header-active-hover-label-text-color: #ff5722;
  --mat-tab-header-active-focus-indicator-color: #ff5722;
  --mat-tab-header-active-hover-indicator-color: #ff5722;
}
.dark-theme .mat-mdc-tab-group.mat-accent, body .mat-mdc-tab-group.mat-accent, .dark-theme .mat-mdc-tab-nav-bar.mat-accent, body .mat-mdc-tab-nav-bar.mat-accent {
  --mdc-tab-indicator-active-indicator-color: #ff4081;
  --mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, 0.5);
  --mat-tab-header-pagination-icon-color: white;
  --mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, 0.6);
  --mat-tab-header-active-label-text-color: #ff4081;
  --mat-tab-header-active-ripple-color: #ff4081;
  --mat-tab-header-inactive-ripple-color: #ff4081;
  --mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, 0.6);
  --mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, 0.6);
  --mat-tab-header-active-focus-label-text-color: #ff4081;
  --mat-tab-header-active-hover-label-text-color: #ff4081;
  --mat-tab-header-active-focus-indicator-color: #ff4081;
  --mat-tab-header-active-hover-indicator-color: #ff4081;
}
.dark-theme .mat-mdc-tab-group.mat-warn, body .mat-mdc-tab-group.mat-warn, .dark-theme .mat-mdc-tab-nav-bar.mat-warn, body .mat-mdc-tab-nav-bar.mat-warn {
  --mdc-tab-indicator-active-indicator-color: #f44336;
  --mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, 0.5);
  --mat-tab-header-pagination-icon-color: white;
  --mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, 0.6);
  --mat-tab-header-active-label-text-color: #f44336;
  --mat-tab-header-active-ripple-color: #f44336;
  --mat-tab-header-inactive-ripple-color: #f44336;
  --mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, 0.6);
  --mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, 0.6);
  --mat-tab-header-active-focus-label-text-color: #f44336;
  --mat-tab-header-active-hover-label-text-color: #f44336;
  --mat-tab-header-active-focus-indicator-color: #f44336;
  --mat-tab-header-active-hover-indicator-color: #f44336;
}
.dark-theme .mat-mdc-tab-group.mat-background-primary, body .mat-mdc-tab-group.mat-background-primary, .dark-theme .mat-mdc-tab-nav-bar.mat-background-primary, body .mat-mdc-tab-nav-bar.mat-background-primary {
  --mat-tab-header-with-background-background-color: #ff5722;
  --mat-tab-header-with-background-foreground-color: white;
}
.dark-theme .mat-mdc-tab-group.mat-background-accent, body .mat-mdc-tab-group.mat-background-accent, .dark-theme .mat-mdc-tab-nav-bar.mat-background-accent, body .mat-mdc-tab-nav-bar.mat-background-accent {
  --mat-tab-header-with-background-background-color: #ff4081;
  --mat-tab-header-with-background-foreground-color: white;
}
.dark-theme .mat-mdc-tab-group.mat-background-warn, body .mat-mdc-tab-group.mat-background-warn, .dark-theme .mat-mdc-tab-nav-bar.mat-background-warn, body .mat-mdc-tab-nav-bar.mat-background-warn {
  --mat-tab-header-with-background-background-color: #f44336;
  --mat-tab-header-with-background-foreground-color: white;
}
.dark-theme .mat-mdc-checkbox.mat-primary, body .mat-mdc-checkbox.mat-primary {
  --mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, 0.38);
  --mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, 0.38);
  --mdc-checkbox-selected-checkmark-color: white;
  --mdc-checkbox-selected-focus-icon-color: #ff5722;
  --mdc-checkbox-selected-hover-icon-color: #ff5722;
  --mdc-checkbox-selected-icon-color: #ff5722;
  --mdc-checkbox-selected-pressed-icon-color: #ff5722;
  --mdc-checkbox-unselected-focus-icon-color: #eeeeee;
  --mdc-checkbox-unselected-hover-icon-color: #eeeeee;
  --mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, 0.54);
  --mdc-checkbox-selected-focus-state-layer-color: #ff5722;
  --mdc-checkbox-selected-hover-state-layer-color: #ff5722;
  --mdc-checkbox-selected-pressed-state-layer-color: #ff5722;
  --mdc-checkbox-unselected-focus-state-layer-color: white;
  --mdc-checkbox-unselected-hover-state-layer-color: white;
  --mdc-checkbox-unselected-pressed-state-layer-color: white;
}
.dark-theme .mat-mdc-checkbox.mat-warn, body .mat-mdc-checkbox.mat-warn {
  --mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, 0.38);
  --mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, 0.38);
  --mdc-checkbox-selected-checkmark-color: white;
  --mdc-checkbox-selected-focus-icon-color: #f44336;
  --mdc-checkbox-selected-hover-icon-color: #f44336;
  --mdc-checkbox-selected-icon-color: #f44336;
  --mdc-checkbox-selected-pressed-icon-color: #f44336;
  --mdc-checkbox-unselected-focus-icon-color: #eeeeee;
  --mdc-checkbox-unselected-hover-icon-color: #eeeeee;
  --mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, 0.54);
  --mdc-checkbox-selected-focus-state-layer-color: #f44336;
  --mdc-checkbox-selected-hover-state-layer-color: #f44336;
  --mdc-checkbox-selected-pressed-state-layer-color: #f44336;
  --mdc-checkbox-unselected-focus-state-layer-color: white;
  --mdc-checkbox-unselected-hover-state-layer-color: white;
  --mdc-checkbox-unselected-pressed-state-layer-color: white;
}
.dark-theme .mat-mdc-button.mat-primary, body .mat-mdc-button.mat-primary {
  --mdc-text-button-label-text-color: #ff5722;
  --mat-text-button-state-layer-color: #ff5722;
  --mat-text-button-ripple-color: rgba(255, 87, 34, 0.1);
}
.dark-theme .mat-mdc-button.mat-accent, body .mat-mdc-button.mat-accent {
  --mdc-text-button-label-text-color: #ff4081;
  --mat-text-button-state-layer-color: #ff4081;
  --mat-text-button-ripple-color: rgba(255, 64, 129, 0.1);
}
.dark-theme .mat-mdc-button.mat-warn, body .mat-mdc-button.mat-warn {
  --mdc-text-button-label-text-color: #f44336;
  --mat-text-button-state-layer-color: #f44336;
  --mat-text-button-ripple-color: rgba(244, 67, 54, 0.1);
}
.dark-theme .mat-mdc-unelevated-button.mat-primary, body .mat-mdc-unelevated-button.mat-primary {
  --mdc-filled-button-container-color: #ff5722;
  --mdc-filled-button-label-text-color: white;
  --mat-filled-button-state-layer-color: white;
  --mat-filled-button-ripple-color: rgba(255, 255, 255, 0.1);
}
.dark-theme .mat-mdc-unelevated-button.mat-accent, body .mat-mdc-unelevated-button.mat-accent {
  --mdc-filled-button-container-color: #ff4081;
  --mdc-filled-button-label-text-color: white;
  --mat-filled-button-state-layer-color: white;
  --mat-filled-button-ripple-color: rgba(255, 255, 255, 0.1);
}
.dark-theme .mat-mdc-unelevated-button.mat-warn, body .mat-mdc-unelevated-button.mat-warn {
  --mdc-filled-button-container-color: #f44336;
  --mdc-filled-button-label-text-color: white;
  --mat-filled-button-state-layer-color: white;
  --mat-filled-button-ripple-color: rgba(255, 255, 255, 0.1);
}
.dark-theme .mat-mdc-raised-button.mat-primary, body .mat-mdc-raised-button.mat-primary {
  --mdc-protected-button-container-color: #ff5722;
  --mdc-protected-button-label-text-color: white;
  --mat-protected-button-state-layer-color: white;
  --mat-protected-button-ripple-color: rgba(255, 255, 255, 0.1);
}
.dark-theme .mat-mdc-raised-button.mat-accent, body .mat-mdc-raised-button.mat-accent {
  --mdc-protected-button-container-color: #ff4081;
  --mdc-protected-button-label-text-color: white;
  --mat-protected-button-state-layer-color: white;
  --mat-protected-button-ripple-color: rgba(255, 255, 255, 0.1);
}
.dark-theme .mat-mdc-raised-button.mat-warn, body .mat-mdc-raised-button.mat-warn {
  --mdc-protected-button-container-color: #f44336;
  --mdc-protected-button-label-text-color: white;
  --mat-protected-button-state-layer-color: white;
  --mat-protected-button-ripple-color: rgba(255, 255, 255, 0.1);
}
.dark-theme .mat-mdc-outlined-button.mat-primary, body .mat-mdc-outlined-button.mat-primary {
  --mdc-outlined-button-label-text-color: #ff5722;
  --mdc-outlined-button-outline-color: rgba(255, 255, 255, 0.12);
  --mat-outlined-button-state-layer-color: #ff5722;
  --mat-outlined-button-ripple-color: rgba(255, 87, 34, 0.1);
}
.dark-theme .mat-mdc-outlined-button.mat-accent, body .mat-mdc-outlined-button.mat-accent {
  --mdc-outlined-button-label-text-color: #ff4081;
  --mdc-outlined-button-outline-color: rgba(255, 255, 255, 0.12);
  --mat-outlined-button-state-layer-color: #ff4081;
  --mat-outlined-button-ripple-color: rgba(255, 64, 129, 0.1);
}
.dark-theme .mat-mdc-outlined-button.mat-warn, body .mat-mdc-outlined-button.mat-warn {
  --mdc-outlined-button-label-text-color: #f44336;
  --mdc-outlined-button-outline-color: rgba(255, 255, 255, 0.12);
  --mat-outlined-button-state-layer-color: #f44336;
  --mat-outlined-button-ripple-color: rgba(244, 67, 54, 0.1);
}
.dark-theme .mat-mdc-icon-button.mat-primary, body .mat-mdc-icon-button.mat-primary {
  --mdc-icon-button-icon-color: #ff5722;
  --mat-icon-button-state-layer-color: #ff5722;
  --mat-icon-button-ripple-color: rgba(255, 87, 34, 0.1);
}
.dark-theme .mat-mdc-icon-button.mat-accent, body .mat-mdc-icon-button.mat-accent {
  --mdc-icon-button-icon-color: #ff4081;
  --mat-icon-button-state-layer-color: #ff4081;
  --mat-icon-button-ripple-color: rgba(255, 64, 129, 0.1);
}
.dark-theme .mat-mdc-icon-button.mat-warn, body .mat-mdc-icon-button.mat-warn {
  --mdc-icon-button-icon-color: #f44336;
  --mat-icon-button-state-layer-color: #f44336;
  --mat-icon-button-ripple-color: rgba(244, 67, 54, 0.1);
}
.dark-theme .mat-mdc-fab.mat-primary, body .mat-mdc-fab.mat-primary {
  --mdc-fab-container-color: #ff5722;
  --mat-fab-foreground-color: white;
  --mat-fab-state-layer-color: white;
  --mat-fab-ripple-color: rgba(255, 255, 255, 0.1);
}
.dark-theme .mat-mdc-fab.mat-accent, body .mat-mdc-fab.mat-accent {
  --mdc-fab-container-color: #ff4081;
  --mat-fab-foreground-color: white;
  --mat-fab-state-layer-color: white;
  --mat-fab-ripple-color: rgba(255, 255, 255, 0.1);
}
.dark-theme .mat-mdc-fab.mat-warn, body .mat-mdc-fab.mat-warn {
  --mdc-fab-container-color: #f44336;
  --mat-fab-foreground-color: white;
  --mat-fab-state-layer-color: white;
  --mat-fab-ripple-color: rgba(255, 255, 255, 0.1);
}
.dark-theme .mat-mdc-mini-fab.mat-primary, body .mat-mdc-mini-fab.mat-primary {
  --mdc-fab-small-container-color: #ff5722;
  --mat-fab-small-foreground-color: white;
  --mat-fab-small-state-layer-color: white;
  --mat-fab-small-ripple-color: rgba(255, 255, 255, 0.1);
}
.dark-theme .mat-mdc-mini-fab.mat-accent, body .mat-mdc-mini-fab.mat-accent {
  --mdc-fab-small-container-color: #ff4081;
  --mat-fab-small-foreground-color: white;
  --mat-fab-small-state-layer-color: white;
  --mat-fab-small-ripple-color: rgba(255, 255, 255, 0.1);
}
.dark-theme .mat-mdc-mini-fab.mat-warn, body .mat-mdc-mini-fab.mat-warn {
  --mdc-fab-small-container-color: #f44336;
  --mat-fab-small-foreground-color: white;
  --mat-fab-small-state-layer-color: white;
  --mat-fab-small-ripple-color: rgba(255, 255, 255, 0.1);
}
.dark-theme .mat-accent, body .mat-accent {
  --mdc-circular-progress-active-indicator-color: #ff4081;
}
.dark-theme .mat-warn, body .mat-warn {
  --mdc-circular-progress-active-indicator-color: #f44336;
}
.dark-theme .mat-badge-accent, body .mat-badge-accent {
  --mat-badge-background-color: #ff4081;
  --mat-badge-text-color: white;
}
.dark-theme .mat-badge-warn, body .mat-badge-warn {
  --mat-badge-background-color: #f44336;
  --mat-badge-text-color: white;
}
.dark-theme .mat-datepicker-content.mat-accent, body .mat-datepicker-content.mat-accent {
  --mat-datepicker-calendar-date-selected-state-text-color: white;
  --mat-datepicker-calendar-date-selected-state-background-color: #ff4081;
  --mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(255, 64, 129, 0.4);
  --mat-datepicker-calendar-date-today-selected-state-outline-color: white;
  --mat-datepicker-calendar-date-focus-state-background-color: rgba(255, 64, 129, 0.3);
  --mat-datepicker-calendar-date-hover-state-background-color: rgba(255, 64, 129, 0.3);
  --mat-datepicker-calendar-date-in-range-state-background-color: rgba(255, 64, 129, 0.2);
  --mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, 0.2);
  --mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;
  --mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e;
}
.dark-theme .mat-datepicker-content.mat-warn, body .mat-datepicker-content.mat-warn {
  --mat-datepicker-calendar-date-selected-state-text-color: white;
  --mat-datepicker-calendar-date-selected-state-background-color: #f44336;
  --mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(244, 67, 54, 0.4);
  --mat-datepicker-calendar-date-today-selected-state-outline-color: white;
  --mat-datepicker-calendar-date-focus-state-background-color: rgba(244, 67, 54, 0.3);
  --mat-datepicker-calendar-date-hover-state-background-color: rgba(244, 67, 54, 0.3);
  --mat-datepicker-calendar-date-in-range-state-background-color: rgba(244, 67, 54, 0.2);
  --mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, 0.2);
  --mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;
  --mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e;
}
.dark-theme .mat-datepicker-toggle-active.mat-accent, body .mat-datepicker-toggle-active.mat-accent {
  --mat-datepicker-toggle-active-state-icon-color: #ff4081;
}
.dark-theme .mat-datepicker-toggle-active.mat-warn, body .mat-datepicker-toggle-active.mat-warn {
  --mat-datepicker-toggle-active-state-icon-color: #f44336;
}
.dark-theme .mat-icon.mat-primary, body .mat-icon.mat-primary {
  --mat-icon-color: #ff5722;
}
.dark-theme .mat-icon.mat-accent, body .mat-icon.mat-accent {
  --mat-icon-color: #ff4081;
}
.dark-theme .mat-icon.mat-warn, body .mat-icon.mat-warn {
  --mat-icon-color: #f44336;
}
.dark-theme .mat-step-header.mat-accent, body .mat-step-header.mat-accent {
  --mat-stepper-header-icon-foreground-color: white;
  --mat-stepper-header-selected-state-icon-background-color: #ff4081;
  --mat-stepper-header-selected-state-icon-foreground-color: white;
  --mat-stepper-header-done-state-icon-background-color: #ff4081;
  --mat-stepper-header-done-state-icon-foreground-color: white;
  --mat-stepper-header-edit-state-icon-background-color: #ff4081;
  --mat-stepper-header-edit-state-icon-foreground-color: white;
}
.dark-theme .mat-step-header.mat-warn, body .mat-step-header.mat-warn {
  --mat-stepper-header-icon-foreground-color: white;
  --mat-stepper-header-selected-state-icon-background-color: #f44336;
  --mat-stepper-header-selected-state-icon-foreground-color: white;
  --mat-stepper-header-done-state-icon-background-color: #f44336;
  --mat-stepper-header-done-state-icon-foreground-color: white;
  --mat-stepper-header-edit-state-icon-background-color: #f44336;
  --mat-stepper-header-edit-state-icon-foreground-color: white;
}
.dark-theme .mat-toolbar.mat-primary, body .mat-toolbar.mat-primary {
  --mat-toolbar-container-background-color: #ff5722;
  --mat-toolbar-container-text-color: white;
}
.dark-theme .mat-toolbar.mat-accent, body .mat-toolbar.mat-accent {
  --mat-toolbar-container-background-color: #ff4081;
  --mat-toolbar-container-text-color: white;
}
.dark-theme .mat-toolbar.mat-warn, body .mat-toolbar.mat-warn {
  --mat-toolbar-container-background-color: #f44336;
  --mat-toolbar-container-text-color: white;
}

.motivatexr-theme {
  --mat-ripple-color: rgba(255, 255, 255, 0.1);
  --mat-option-selected-state-label-text-color: #42a5f5;
  --mat-option-label-text-color: white;
  --mat-option-hover-state-layer-color: rgba(255, 255, 255, 0.08);
  --mat-option-focus-state-layer-color: rgba(255, 255, 255, 0.08);
  --mat-option-selected-state-layer-color: rgba(255, 255, 255, 0.08);
  --mat-optgroup-label-text-color: white;
  --mat-full-pseudo-checkbox-selected-icon-color: #ffee58;
  --mat-full-pseudo-checkbox-selected-checkmark-color: #303030;
  --mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, 0.7);
  --mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;
  --mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;
  --mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;
  --mat-minimal-pseudo-checkbox-selected-checkmark-color: #ffee58;
  --mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868;
  --mat-app-background-color: #303030;
  --mat-app-text-color: white;
  --mat-app-elevation-shadow-level-0: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-1: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-2: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-3: 0px 3px 3px -2px rgba(0, 0, 0, 0.2), 0px 3px 4px 0px rgba(0, 0, 0, 0.14), 0px 1px 8px 0px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-4: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-5: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 5px 8px 0px rgba(0, 0, 0, 0.14), 0px 1px 14px 0px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-6: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-7: 0px 4px 5px -2px rgba(0, 0, 0, 0.2), 0px 7px 10px 1px rgba(0, 0, 0, 0.14), 0px 2px 16px 1px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-8: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-9: 0px 5px 6px -3px rgba(0, 0, 0, 0.2), 0px 9px 12px 1px rgba(0, 0, 0, 0.14), 0px 3px 16px 2px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-10: 0px 6px 6px -3px rgba(0, 0, 0, 0.2), 0px 10px 14px 1px rgba(0, 0, 0, 0.14), 0px 4px 18px 3px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-11: 0px 6px 7px -4px rgba(0, 0, 0, 0.2), 0px 11px 15px 1px rgba(0, 0, 0, 0.14), 0px 4px 20px 3px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-12: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 12px 17px 2px rgba(0, 0, 0, 0.14), 0px 5px 22px 4px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-13: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 13px 19px 2px rgba(0, 0, 0, 0.14), 0px 5px 24px 4px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-14: 0px 7px 9px -4px rgba(0, 0, 0, 0.2), 0px 14px 21px 2px rgba(0, 0, 0, 0.14), 0px 5px 26px 4px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-15: 0px 8px 9px -5px rgba(0, 0, 0, 0.2), 0px 15px 22px 2px rgba(0, 0, 0, 0.14), 0px 6px 28px 5px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-16: 0px 8px 10px -5px rgba(0, 0, 0, 0.2), 0px 16px 24px 2px rgba(0, 0, 0, 0.14), 0px 6px 30px 5px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-17: 0px 8px 11px -5px rgba(0, 0, 0, 0.2), 0px 17px 26px 2px rgba(0, 0, 0, 0.14), 0px 6px 32px 5px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-18: 0px 9px 11px -5px rgba(0, 0, 0, 0.2), 0px 18px 28px 2px rgba(0, 0, 0, 0.14), 0px 7px 34px 6px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-19: 0px 9px 12px -6px rgba(0, 0, 0, 0.2), 0px 19px 29px 2px rgba(0, 0, 0, 0.14), 0px 7px 36px 6px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-20: 0px 10px 13px -6px rgba(0, 0, 0, 0.2), 0px 20px 31px 3px rgba(0, 0, 0, 0.14), 0px 8px 38px 7px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-21: 0px 10px 13px -6px rgba(0, 0, 0, 0.2), 0px 21px 33px 3px rgba(0, 0, 0, 0.14), 0px 8px 40px 7px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-22: 0px 10px 14px -6px rgba(0, 0, 0, 0.2), 0px 22px 35px 3px rgba(0, 0, 0, 0.14), 0px 8px 42px 7px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-23: 0px 11px 14px -7px rgba(0, 0, 0, 0.2), 0px 23px 36px 3px rgba(0, 0, 0, 0.14), 0px 9px 44px 8px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-24: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12);
  --mdc-elevated-card-container-shape: 4px;
  --mdc-outlined-card-container-shape: 4px;
  --mdc-outlined-card-outline-width: 1px;
  --mdc-elevated-card-container-color: #424242;
  --mdc-elevated-card-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
  --mdc-outlined-card-container-color: #424242;
  --mdc-outlined-card-outline-color: rgba(255, 255, 255, 0.12);
  --mdc-outlined-card-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
  --mat-card-subtitle-text-color: rgba(255, 255, 255, 0.7);
  --mdc-linear-progress-active-indicator-height: 4px;
  --mdc-linear-progress-track-height: 4px;
  --mdc-linear-progress-track-shape: 0;
  --mdc-plain-tooltip-container-shape: 4px;
  --mdc-plain-tooltip-supporting-text-line-height: 16px;
  --mdc-plain-tooltip-container-color: #616161;
  --mdc-plain-tooltip-supporting-text-color: #fff;
  --mdc-filled-text-field-active-indicator-height: 1px;
  --mdc-filled-text-field-focus-active-indicator-height: 2px;
  --mdc-filled-text-field-container-shape: 4px;
  --mdc-outlined-text-field-outline-width: 1px;
  --mdc-outlined-text-field-focus-outline-width: 2px;
  --mdc-outlined-text-field-container-shape: 4px;
  --mdc-filled-text-field-caret-color: #42a5f5;
  --mdc-filled-text-field-focus-active-indicator-color: #42a5f5;
  --mdc-filled-text-field-focus-label-text-color: rgba(66, 165, 245, 0.87);
  --mdc-filled-text-field-container-color: #4a4a4a;
  --mdc-filled-text-field-disabled-container-color: #464646;
  --mdc-filled-text-field-label-text-color: rgba(255, 255, 255, 0.6);
  --mdc-filled-text-field-hover-label-text-color: rgba(255, 255, 255, 0.6);
  --mdc-filled-text-field-disabled-label-text-color: rgba(255, 255, 255, 0.38);
  --mdc-filled-text-field-input-text-color: rgba(255, 255, 255, 0.87);
  --mdc-filled-text-field-disabled-input-text-color: rgba(255, 255, 255, 0.38);
  --mdc-filled-text-field-input-text-placeholder-color: rgba(255, 255, 255, 0.6);
  --mdc-filled-text-field-error-hover-label-text-color: #ff1744;
  --mdc-filled-text-field-error-focus-label-text-color: #ff1744;
  --mdc-filled-text-field-error-label-text-color: #ff1744;
  --mdc-filled-text-field-error-caret-color: #ff1744;
  --mdc-filled-text-field-active-indicator-color: rgba(255, 255, 255, 0.42);
  --mdc-filled-text-field-disabled-active-indicator-color: rgba(255, 255, 255, 0.06);
  --mdc-filled-text-field-hover-active-indicator-color: rgba(255, 255, 255, 0.87);
  --mdc-filled-text-field-error-active-indicator-color: #ff1744;
  --mdc-filled-text-field-error-focus-active-indicator-color: #ff1744;
  --mdc-filled-text-field-error-hover-active-indicator-color: #ff1744;
  --mdc-outlined-text-field-caret-color: #42a5f5;
  --mdc-outlined-text-field-focus-outline-color: #42a5f5;
  --mdc-outlined-text-field-focus-label-text-color: rgba(66, 165, 245, 0.87);
  --mdc-outlined-text-field-label-text-color: rgba(255, 255, 255, 0.6);
  --mdc-outlined-text-field-hover-label-text-color: rgba(255, 255, 255, 0.6);
  --mdc-outlined-text-field-disabled-label-text-color: rgba(255, 255, 255, 0.38);
  --mdc-outlined-text-field-input-text-color: rgba(255, 255, 255, 0.87);
  --mdc-outlined-text-field-disabled-input-text-color: rgba(255, 255, 255, 0.38);
  --mdc-outlined-text-field-input-text-placeholder-color: rgba(255, 255, 255, 0.6);
  --mdc-outlined-text-field-error-caret-color: #ff1744;
  --mdc-outlined-text-field-error-focus-label-text-color: #ff1744;
  --mdc-outlined-text-field-error-label-text-color: #ff1744;
  --mdc-outlined-text-field-error-hover-label-text-color: #ff1744;
  --mdc-outlined-text-field-outline-color: rgba(255, 255, 255, 0.38);
  --mdc-outlined-text-field-disabled-outline-color: rgba(255, 255, 255, 0.06);
  --mdc-outlined-text-field-hover-outline-color: rgba(255, 255, 255, 0.87);
  --mdc-outlined-text-field-error-focus-outline-color: #ff1744;
  --mdc-outlined-text-field-error-hover-outline-color: #ff1744;
  --mdc-outlined-text-field-error-outline-color: #ff1744;
  --mat-form-field-focus-select-arrow-color: rgba(66, 165, 245, 0.87);
  --mat-form-field-disabled-input-text-placeholder-color: rgba(255, 255, 255, 0.38);
  --mat-form-field-state-layer-color: rgba(255, 255, 255, 0.87);
  --mat-form-field-error-text-color: #ff1744;
  --mat-form-field-select-option-text-color: rgba(0, 0, 0, 0.87);
  --mat-form-field-select-disabled-option-text-color: rgba(0, 0, 0, 0.38);
  --mat-form-field-leading-icon-color: unset;
  --mat-form-field-disabled-leading-icon-color: unset;
  --mat-form-field-trailing-icon-color: unset;
  --mat-form-field-disabled-trailing-icon-color: unset;
  --mat-form-field-error-focus-trailing-icon-color: unset;
  --mat-form-field-error-hover-trailing-icon-color: unset;
  --mat-form-field-error-trailing-icon-color: unset;
  --mat-form-field-enabled-select-arrow-color: rgba(255, 255, 255, 0.54);
  --mat-form-field-disabled-select-arrow-color: rgba(255, 255, 255, 0.38);
  --mat-form-field-hover-state-layer-opacity: 0.08;
  --mat-form-field-focus-state-layer-opacity: 0.24;
  --mat-select-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  --mat-select-panel-background-color: #424242;
  --mat-select-enabled-trigger-text-color: rgba(255, 255, 255, 0.87);
  --mat-select-disabled-trigger-text-color: rgba(255, 255, 255, 0.38);
  --mat-select-placeholder-text-color: rgba(255, 255, 255, 0.6);
  --mat-select-enabled-arrow-color: rgba(255, 255, 255, 0.54);
  --mat-select-disabled-arrow-color: rgba(255, 255, 255, 0.38);
  --mat-select-focused-arrow-color: rgba(66, 165, 245, 0.87);
  --mat-select-invalid-arrow-color: rgba(255, 23, 68, 0.87);
  --mat-autocomplete-container-shape: 4px;
  --mat-autocomplete-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  --mat-autocomplete-background-color: #424242;
  --mdc-dialog-container-shape: 4px;
  --mat-dialog-container-elevation-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12);
  --mat-dialog-container-max-width: 80vw;
  --mat-dialog-container-small-max-width: 80vw;
  --mat-dialog-container-min-width: 0;
  --mat-dialog-actions-alignment: start;
  --mat-dialog-actions-padding: 8px;
  --mat-dialog-content-padding: 20px 24px;
  --mat-dialog-with-actions-content-padding: 20px 24px;
  --mat-dialog-headline-padding: 0 24px 9px;
  --mdc-dialog-container-color: #424242;
  --mdc-dialog-subhead-color: rgba(255, 255, 255, 0.87);
  --mdc-dialog-supporting-text-color: rgba(255, 255, 255, 0.6);
  --mdc-switch-disabled-selected-icon-opacity: 0.38;
  --mdc-switch-disabled-track-opacity: 0.12;
  --mdc-switch-disabled-unselected-icon-opacity: 0.38;
  --mdc-switch-handle-height: 20px;
  --mdc-switch-handle-shape: 10px;
  --mdc-switch-handle-width: 20px;
  --mdc-switch-selected-icon-size: 18px;
  --mdc-switch-track-height: 14px;
  --mdc-switch-track-shape: 7px;
  --mdc-switch-track-width: 36px;
  --mdc-switch-unselected-icon-size: 18px;
  --mdc-switch-selected-focus-state-layer-opacity: 0.12;
  --mdc-switch-selected-hover-state-layer-opacity: 0.04;
  --mdc-switch-selected-pressed-state-layer-opacity: 0.1;
  --mdc-switch-unselected-focus-state-layer-opacity: 0.12;
  --mdc-switch-unselected-hover-state-layer-opacity: 0.04;
  --mdc-switch-unselected-pressed-state-layer-opacity: 0.1;
  --mdc-switch-selected-focus-state-layer-color: #64b5f6;
  --mdc-switch-selected-handle-color: #64b5f6;
  --mdc-switch-selected-hover-state-layer-color: #64b5f6;
  --mdc-switch-selected-pressed-state-layer-color: #64b5f6;
  --mdc-switch-selected-focus-handle-color: #90caf9;
  --mdc-switch-selected-hover-handle-color: #90caf9;
  --mdc-switch-selected-pressed-handle-color: #90caf9;
  --mdc-switch-selected-focus-track-color: #1e88e5;
  --mdc-switch-selected-hover-track-color: #1e88e5;
  --mdc-switch-selected-pressed-track-color: #1e88e5;
  --mdc-switch-selected-track-color: #1e88e5;
  --mdc-switch-disabled-selected-handle-color: #000;
  --mdc-switch-disabled-selected-icon-color: #212121;
  --mdc-switch-disabled-selected-track-color: #f5f5f5;
  --mdc-switch-disabled-unselected-handle-color: #000;
  --mdc-switch-disabled-unselected-icon-color: #212121;
  --mdc-switch-disabled-unselected-track-color: #f5f5f5;
  --mdc-switch-handle-surface-color: #fff;
  --mdc-switch-selected-icon-color: #212121;
  --mdc-switch-unselected-focus-handle-color: #fafafa;
  --mdc-switch-unselected-focus-state-layer-color: #f5f5f5;
  --mdc-switch-unselected-focus-track-color: #616161;
  --mdc-switch-unselected-handle-color: #9e9e9e;
  --mdc-switch-unselected-hover-handle-color: #fafafa;
  --mdc-switch-unselected-hover-state-layer-color: #f5f5f5;
  --mdc-switch-unselected-hover-track-color: #616161;
  --mdc-switch-unselected-icon-color: #212121;
  --mdc-switch-unselected-pressed-handle-color: #fafafa;
  --mdc-switch-unselected-pressed-state-layer-color: #f5f5f5;
  --mdc-switch-unselected-pressed-track-color: #616161;
  --mdc-switch-unselected-track-color: #616161;
  --mdc-switch-handle-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
  --mdc-switch-disabled-handle-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
  --mdc-switch-disabled-label-text-color: rgba(255, 255, 255, 0.5);
  --mdc-radio-disabled-selected-icon-opacity: 0.38;
  --mdc-radio-disabled-unselected-icon-opacity: 0.38;
  --mdc-radio-state-layer-size: 40px;
  --mdc-slider-active-track-height: 6px;
  --mdc-slider-active-track-shape: 9999px;
  --mdc-slider-handle-height: 20px;
  --mdc-slider-handle-shape: 50%;
  --mdc-slider-handle-width: 20px;
  --mdc-slider-inactive-track-height: 4px;
  --mdc-slider-inactive-track-shape: 9999px;
  --mdc-slider-with-overlap-handle-outline-width: 1px;
  --mdc-slider-with-tick-marks-active-container-opacity: 0.6;
  --mdc-slider-with-tick-marks-container-shape: 50%;
  --mdc-slider-with-tick-marks-container-size: 2px;
  --mdc-slider-with-tick-marks-inactive-container-opacity: 0.6;
  --mdc-slider-handle-elevation: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
  --mat-slider-value-indicator-width: auto;
  --mat-slider-value-indicator-height: 32px;
  --mat-slider-value-indicator-caret-display: block;
  --mat-slider-value-indicator-border-radius: 4px;
  --mat-slider-value-indicator-padding: 0 12px;
  --mat-slider-value-indicator-text-transform: none;
  --mat-slider-value-indicator-container-transform: translateX(-50%);
  --mdc-slider-handle-color: #42a5f5;
  --mdc-slider-focus-handle-color: #42a5f5;
  --mdc-slider-hover-handle-color: #42a5f5;
  --mdc-slider-active-track-color: #42a5f5;
  --mdc-slider-inactive-track-color: #42a5f5;
  --mdc-slider-with-tick-marks-inactive-container-color: #42a5f5;
  --mdc-slider-with-tick-marks-active-container-color: rgba(0, 0, 0, 0.87);
  --mdc-slider-disabled-active-track-color: #fff;
  --mdc-slider-disabled-handle-color: #fff;
  --mdc-slider-disabled-inactive-track-color: #fff;
  --mdc-slider-label-container-color: #fff;
  --mdc-slider-label-label-text-color: #000;
  --mdc-slider-with-overlap-handle-outline-color: #fff;
  --mdc-slider-with-tick-marks-disabled-container-color: #fff;
  --mat-slider-ripple-color: #42a5f5;
  --mat-slider-hover-state-layer-color: rgba(66, 165, 245, 0.05);
  --mat-slider-focus-state-layer-color: rgba(66, 165, 245, 0.2);
  --mat-slider-value-indicator-opacity: 0.9;
  --mat-menu-container-shape: 4px;
  --mat-menu-divider-bottom-spacing: 0;
  --mat-menu-divider-top-spacing: 0;
  --mat-menu-item-spacing: 16px;
  --mat-menu-item-icon-size: 24px;
  --mat-menu-item-leading-spacing: 16px;
  --mat-menu-item-trailing-spacing: 16px;
  --mat-menu-item-with-icon-leading-spacing: 16px;
  --mat-menu-item-with-icon-trailing-spacing: 16px;
  --mat-menu-base-elevation-level: 8;
  --mat-menu-item-label-text-color: white;
  --mat-menu-item-icon-color: white;
  --mat-menu-item-hover-state-layer-color: rgba(255, 255, 255, 0.08);
  --mat-menu-item-focus-state-layer-color: rgba(255, 255, 255, 0.08);
  --mat-menu-container-color: #424242;
  --mat-menu-divider-color: rgba(255, 255, 255, 0.12);
  --mdc-list-list-item-container-shape: 0;
  --mdc-list-list-item-leading-avatar-shape: 50%;
  --mdc-list-list-item-container-color: transparent;
  --mdc-list-list-item-selected-container-color: transparent;
  --mdc-list-list-item-leading-avatar-color: transparent;
  --mdc-list-list-item-leading-icon-size: 24px;
  --mdc-list-list-item-leading-avatar-size: 40px;
  --mdc-list-list-item-trailing-icon-size: 24px;
  --mdc-list-list-item-disabled-state-layer-color: transparent;
  --mdc-list-list-item-disabled-state-layer-opacity: 0;
  --mdc-list-list-item-disabled-label-text-opacity: 0.38;
  --mdc-list-list-item-disabled-leading-icon-opacity: 0.38;
  --mdc-list-list-item-disabled-trailing-icon-opacity: 0.38;
  --mat-list-active-indicator-color: transparent;
  --mat-list-active-indicator-shape: 4px;
  --mdc-list-list-item-label-text-color: white;
  --mdc-list-list-item-supporting-text-color: rgba(255, 255, 255, 0.7);
  --mdc-list-list-item-leading-icon-color: rgba(255, 255, 255, 0.5);
  --mdc-list-list-item-trailing-supporting-text-color: rgba(255, 255, 255, 0.5);
  --mdc-list-list-item-trailing-icon-color: rgba(255, 255, 255, 0.5);
  --mdc-list-list-item-selected-trailing-icon-color: rgba(255, 255, 255, 0.5);
  --mdc-list-list-item-disabled-label-text-color: white;
  --mdc-list-list-item-disabled-leading-icon-color: white;
  --mdc-list-list-item-disabled-trailing-icon-color: white;
  --mdc-list-list-item-hover-label-text-color: white;
  --mdc-list-list-item-hover-leading-icon-color: rgba(255, 255, 255, 0.5);
  --mdc-list-list-item-hover-trailing-icon-color: rgba(255, 255, 255, 0.5);
  --mdc-list-list-item-focus-label-text-color: white;
  --mdc-list-list-item-hover-state-layer-color: white;
  --mdc-list-list-item-hover-state-layer-opacity: 0.08;
  --mdc-list-list-item-focus-state-layer-color: white;
  --mdc-list-list-item-focus-state-layer-opacity: 0.24;
  --mat-paginator-container-text-color: rgba(255, 255, 255, 0.87);
  --mat-paginator-container-background-color: #424242;
  --mat-paginator-enabled-icon-color: rgba(255, 255, 255, 0.54);
  --mat-paginator-disabled-icon-color: rgba(255, 255, 255, 0.12);
  --mdc-secondary-navigation-tab-container-height: 48px;
  --mdc-tab-indicator-active-indicator-height: 2px;
  --mdc-tab-indicator-active-indicator-shape: 0;
  --mat-tab-header-divider-color: transparent;
  --mat-tab-header-divider-height: 0;
  --mdc-checkbox-disabled-selected-checkmark-color: #fff;
  --mdc-checkbox-selected-focus-state-layer-opacity: 0.16;
  --mdc-checkbox-selected-hover-state-layer-opacity: 0.04;
  --mdc-checkbox-selected-pressed-state-layer-opacity: 0.16;
  --mdc-checkbox-unselected-focus-state-layer-opacity: 0.16;
  --mdc-checkbox-unselected-hover-state-layer-opacity: 0.04;
  --mdc-checkbox-unselected-pressed-state-layer-opacity: 0.16;
  --mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, 0.38);
  --mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, 0.38);
  --mdc-checkbox-selected-checkmark-color: black;
  --mdc-checkbox-selected-focus-icon-color: #ffee58;
  --mdc-checkbox-selected-hover-icon-color: #ffee58;
  --mdc-checkbox-selected-icon-color: #ffee58;
  --mdc-checkbox-selected-pressed-icon-color: #ffee58;
  --mdc-checkbox-unselected-focus-icon-color: #eeeeee;
  --mdc-checkbox-unselected-hover-icon-color: #eeeeee;
  --mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, 0.54);
  --mdc-checkbox-selected-focus-state-layer-color: #ffee58;
  --mdc-checkbox-selected-hover-state-layer-color: #ffee58;
  --mdc-checkbox-selected-pressed-state-layer-color: #ffee58;
  --mdc-checkbox-unselected-focus-state-layer-color: white;
  --mdc-checkbox-unselected-hover-state-layer-color: white;
  --mdc-checkbox-unselected-pressed-state-layer-color: white;
  --mat-checkbox-disabled-label-color: rgba(255, 255, 255, 0.5);
  --mat-checkbox-label-text-color: white;
  --mdc-text-button-container-shape: 4px;
  --mdc-text-button-keep-touch-target: false;
  --mdc-filled-button-container-shape: 4px;
  --mdc-filled-button-keep-touch-target: false;
  --mdc-protected-button-container-shape: 4px;
  --mdc-protected-button-container-elevation-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
  --mdc-protected-button-disabled-container-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
  --mdc-protected-button-focus-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
  --mdc-protected-button-hover-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
  --mdc-protected-button-pressed-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  --mdc-outlined-button-keep-touch-target: false;
  --mdc-outlined-button-outline-width: 1px;
  --mdc-outlined-button-container-shape: 4px;
  --mat-text-button-horizontal-padding: 8px;
  --mat-text-button-with-icon-horizontal-padding: 8px;
  --mat-text-button-icon-spacing: 8px;
  --mat-text-button-icon-offset: 0;
  --mat-filled-button-horizontal-padding: 16px;
  --mat-filled-button-icon-spacing: 8px;
  --mat-filled-button-icon-offset: -4px;
  --mat-protected-button-horizontal-padding: 16px;
  --mat-protected-button-icon-spacing: 8px;
  --mat-protected-button-icon-offset: -4px;
  --mat-outlined-button-horizontal-padding: 15px;
  --mat-outlined-button-icon-spacing: 8px;
  --mat-outlined-button-icon-offset: -4px;
  --mdc-text-button-label-text-color: white;
  --mdc-text-button-disabled-label-text-color: rgba(255, 255, 255, 0.5);
  --mat-text-button-state-layer-color: white;
  --mat-text-button-disabled-state-layer-color: white;
  --mat-text-button-ripple-color: rgba(255, 255, 255, 0.1);
  --mat-text-button-hover-state-layer-opacity: 0.08;
  --mat-text-button-focus-state-layer-opacity: 0.24;
  --mat-text-button-pressed-state-layer-opacity: 0.24;
  --mdc-filled-button-container-color: #424242;
  --mdc-filled-button-label-text-color: white;
  --mdc-filled-button-disabled-container-color: rgba(255, 255, 255, 0.12);
  --mdc-filled-button-disabled-label-text-color: rgba(255, 255, 255, 0.5);
  --mat-filled-button-state-layer-color: white;
  --mat-filled-button-disabled-state-layer-color: white;
  --mat-filled-button-ripple-color: rgba(255, 255, 255, 0.1);
  --mat-filled-button-hover-state-layer-opacity: 0.08;
  --mat-filled-button-focus-state-layer-opacity: 0.24;
  --mat-filled-button-pressed-state-layer-opacity: 0.24;
  --mdc-protected-button-container-color: #424242;
  --mdc-protected-button-label-text-color: white;
  --mdc-protected-button-disabled-container-color: rgba(255, 255, 255, 0.12);
  --mdc-protected-button-disabled-label-text-color: rgba(255, 255, 255, 0.5);
  --mat-protected-button-state-layer-color: white;
  --mat-protected-button-disabled-state-layer-color: white;
  --mat-protected-button-ripple-color: rgba(255, 255, 255, 0.1);
  --mat-protected-button-hover-state-layer-opacity: 0.08;
  --mat-protected-button-focus-state-layer-opacity: 0.24;
  --mat-protected-button-pressed-state-layer-opacity: 0.24;
  --mdc-outlined-button-disabled-outline-color: rgba(255, 255, 255, 0.12);
  --mdc-outlined-button-disabled-label-text-color: rgba(255, 255, 255, 0.5);
  --mdc-outlined-button-label-text-color: white;
  --mdc-outlined-button-outline-color: rgba(255, 255, 255, 0.12);
  --mat-outlined-button-state-layer-color: white;
  --mat-outlined-button-disabled-state-layer-color: white;
  --mat-outlined-button-ripple-color: rgba(255, 255, 255, 0.1);
  --mat-outlined-button-hover-state-layer-opacity: 0.08;
  --mat-outlined-button-focus-state-layer-opacity: 0.24;
  --mat-outlined-button-pressed-state-layer-opacity: 0.24;
  --mdc-icon-button-icon-size: 24px;
  --mdc-icon-button-icon-color: inherit;
  --mdc-icon-button-disabled-icon-color: rgba(255, 255, 255, 0.5);
  --mat-icon-button-state-layer-color: white;
  --mat-icon-button-disabled-state-layer-color: white;
  --mat-icon-button-ripple-color: rgba(255, 255, 255, 0.1);
  --mat-icon-button-hover-state-layer-opacity: 0.08;
  --mat-icon-button-focus-state-layer-opacity: 0.24;
  --mat-icon-button-pressed-state-layer-opacity: 0.24;
  --mdc-fab-container-shape: 50%;
  --mdc-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);
  --mdc-fab-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  --mdc-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  --mdc-fab-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 12px 17px 2px rgba(0, 0, 0, 0.14), 0px 5px 22px 4px rgba(0, 0, 0, 0.12);
  --mdc-fab-small-container-shape: 50%;
  --mdc-fab-small-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);
  --mdc-fab-small-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  --mdc-fab-small-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  --mdc-fab-small-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 12px 17px 2px rgba(0, 0, 0, 0.14), 0px 5px 22px 4px rgba(0, 0, 0, 0.12);
  --mdc-extended-fab-container-height: 48px;
  --mdc-extended-fab-container-shape: 24px;
  --mdc-extended-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);
  --mdc-extended-fab-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  --mdc-extended-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  --mdc-extended-fab-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 12px 17px 2px rgba(0, 0, 0, 0.14), 0px 5px 22px 4px rgba(0, 0, 0, 0.12);
  --mdc-fab-container-color: #424242;
  --mat-fab-foreground-color: white;
  --mat-fab-state-layer-color: white;
  --mat-fab-disabled-state-layer-color: white;
  --mat-fab-ripple-color: rgba(255, 255, 255, 0.1);
  --mat-fab-hover-state-layer-opacity: 0.08;
  --mat-fab-focus-state-layer-opacity: 0.24;
  --mat-fab-pressed-state-layer-opacity: 0.24;
  --mat-fab-disabled-state-container-color: rgba(255, 255, 255, 0.12);
  --mat-fab-disabled-state-foreground-color: rgba(255, 255, 255, 0.5);
  --mdc-fab-small-container-color: #424242;
  --mat-fab-small-foreground-color: white;
  --mat-fab-small-state-layer-color: white;
  --mat-fab-small-disabled-state-layer-color: white;
  --mat-fab-small-ripple-color: rgba(255, 255, 255, 0.1);
  --mat-fab-small-hover-state-layer-opacity: 0.08;
  --mat-fab-small-focus-state-layer-opacity: 0.24;
  --mat-fab-small-pressed-state-layer-opacity: 0.24;
  --mat-fab-small-disabled-state-container-color: rgba(255, 255, 255, 0.12);
  --mat-fab-small-disabled-state-foreground-color: rgba(255, 255, 255, 0.5);
  --mdc-snackbar-container-shape: 4px;
  --mdc-snackbar-container-color: #d9d9d9;
  --mdc-snackbar-supporting-text-color: rgba(66, 66, 66, 0.87);
  --mat-snack-bar-button-color: rgba(0, 0, 0, 0.87);
  --mat-table-row-item-outline-width: 1px;
  --mat-table-background-color: #424242;
  --mat-table-header-headline-color: white;
  --mat-table-row-item-label-text-color: white;
  --mat-table-row-item-outline-color: rgba(255, 255, 255, 0.12);
  --mdc-circular-progress-active-indicator-width: 4px;
  --mdc-circular-progress-size: 48px;
  --mdc-circular-progress-active-indicator-color: #42a5f5;
  --mat-badge-container-shape: 50%;
  --mat-badge-container-size: unset;
  --mat-badge-small-size-container-size: unset;
  --mat-badge-large-size-container-size: unset;
  --mat-badge-legacy-container-size: 22px;
  --mat-badge-legacy-small-size-container-size: 16px;
  --mat-badge-legacy-large-size-container-size: 28px;
  --mat-badge-container-offset: -11px 0;
  --mat-badge-small-size-container-offset: -8px 0;
  --mat-badge-large-size-container-offset: -14px 0;
  --mat-badge-container-overlap-offset: -11px;
  --mat-badge-small-size-container-overlap-offset: -8px;
  --mat-badge-large-size-container-overlap-offset: -14px;
  --mat-badge-container-padding: 0;
  --mat-badge-small-size-container-padding: 0;
  --mat-badge-large-size-container-padding: 0;
  --mat-badge-background-color: #42a5f5;
  --mat-badge-text-color: rgba(0, 0, 0, 0.87);
  --mat-badge-disabled-state-background-color: #6e6e6e;
  --mat-badge-disabled-state-text-color: rgba(255, 255, 255, 0.5);
  --mat-bottom-sheet-container-shape: 4px;
  --mat-bottom-sheet-container-text-color: white;
  --mat-bottom-sheet-container-background-color: #424242;
  --mat-legacy-button-toggle-height: 36px;
  --mat-legacy-button-toggle-shape: 2px;
  --mat-legacy-button-toggle-focus-state-layer-opacity: 1;
  --mat-standard-button-toggle-shape: 4px;
  --mat-standard-button-toggle-hover-state-layer-opacity: 0.04;
  --mat-standard-button-toggle-focus-state-layer-opacity: 0.12;
  --mat-legacy-button-toggle-text-color: rgba(255, 255, 255, 0.5);
  --mat-legacy-button-toggle-state-layer-color: rgba(255, 255, 255, 0.12);
  --mat-legacy-button-toggle-selected-state-text-color: rgba(255, 255, 255, 0.7);
  --mat-legacy-button-toggle-selected-state-background-color: #212121;
  --mat-legacy-button-toggle-disabled-state-text-color: rgba(255, 255, 255, 0.3);
  --mat-legacy-button-toggle-disabled-state-background-color: black;
  --mat-legacy-button-toggle-disabled-selected-state-background-color: #424242;
  --mat-standard-button-toggle-text-color: white;
  --mat-standard-button-toggle-background-color: #424242;
  --mat-standard-button-toggle-state-layer-color: white;
  --mat-standard-button-toggle-selected-state-background-color: #212121;
  --mat-standard-button-toggle-selected-state-text-color: white;
  --mat-standard-button-toggle-disabled-state-text-color: rgba(255, 255, 255, 0.3);
  --mat-standard-button-toggle-disabled-state-background-color: #424242;
  --mat-standard-button-toggle-disabled-selected-state-text-color: white;
  --mat-standard-button-toggle-disabled-selected-state-background-color: #424242;
  --mat-standard-button-toggle-divider-color: #595959;
  --mat-datepicker-calendar-container-shape: 4px;
  --mat-datepicker-calendar-container-touch-shape: 4px;
  --mat-datepicker-calendar-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
  --mat-datepicker-calendar-container-touch-elevation-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12);
  --mat-datepicker-calendar-date-selected-state-text-color: rgba(0, 0, 0, 0.87);
  --mat-datepicker-calendar-date-selected-state-background-color: #42a5f5;
  --mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(66, 165, 245, 0.4);
  --mat-datepicker-calendar-date-today-selected-state-outline-color: rgba(0, 0, 0, 0.87);
  --mat-datepicker-calendar-date-focus-state-background-color: rgba(66, 165, 245, 0.3);
  --mat-datepicker-calendar-date-hover-state-background-color: rgba(66, 165, 245, 0.3);
  --mat-datepicker-toggle-active-state-icon-color: #42a5f5;
  --mat-datepicker-calendar-date-in-range-state-background-color: rgba(66, 165, 245, 0.2);
  --mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, 0.2);
  --mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;
  --mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e;
  --mat-datepicker-toggle-icon-color: white;
  --mat-datepicker-calendar-body-label-text-color: rgba(255, 255, 255, 0.7);
  --mat-datepicker-calendar-period-button-text-color: white;
  --mat-datepicker-calendar-period-button-icon-color: white;
  --mat-datepicker-calendar-navigation-button-icon-color: white;
  --mat-datepicker-calendar-header-divider-color: rgba(255, 255, 255, 0.12);
  --mat-datepicker-calendar-header-text-color: rgba(255, 255, 255, 0.7);
  --mat-datepicker-calendar-date-today-outline-color: rgba(255, 255, 255, 0.5);
  --mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(255, 255, 255, 0.3);
  --mat-datepicker-calendar-date-text-color: white;
  --mat-datepicker-calendar-date-outline-color: transparent;
  --mat-datepicker-calendar-date-disabled-state-text-color: rgba(255, 255, 255, 0.5);
  --mat-datepicker-calendar-date-preview-state-outline-color: rgba(255, 255, 255, 0.24);
  --mat-datepicker-range-input-separator-color: white;
  --mat-datepicker-range-input-disabled-state-separator-color: rgba(255, 255, 255, 0.5);
  --mat-datepicker-range-input-disabled-state-text-color: rgba(255, 255, 255, 0.5);
  --mat-datepicker-calendar-container-background-color: #424242;
  --mat-datepicker-calendar-container-text-color: white;
  --mat-divider-width: 1px;
  --mat-divider-color: rgba(255, 255, 255, 0.12);
  --mat-expansion-container-shape: 4px;
  --mat-expansion-legacy-header-indicator-display: inline-block;
  --mat-expansion-header-indicator-display: none;
  --mat-expansion-container-background-color: #424242;
  --mat-expansion-container-text-color: white;
  --mat-expansion-actions-divider-color: rgba(255, 255, 255, 0.12);
  --mat-expansion-header-hover-state-layer-color: rgba(255, 255, 255, 0.04);
  --mat-expansion-header-focus-state-layer-color: rgba(255, 255, 255, 0.04);
  --mat-expansion-header-disabled-state-text-color: rgba(255, 255, 255, 0.3);
  --mat-expansion-header-text-color: white;
  --mat-expansion-header-description-color: rgba(255, 255, 255, 0.7);
  --mat-expansion-header-indicator-color: rgba(255, 255, 255, 0.7);
  --mat-icon-color: inherit;
  --mat-sidenav-container-shape: 0;
  --mat-sidenav-container-elevation-shadow: 0px 8px 10px -5px rgba(0, 0, 0, 0.2), 0px 16px 24px 2px rgba(0, 0, 0, 0.14), 0px 6px 30px 5px rgba(0, 0, 0, 0.12);
  --mat-sidenav-container-width: auto;
  --mat-sidenav-container-divider-color: rgba(255, 255, 255, 0.12);
  --mat-sidenav-container-background-color: #424242;
  --mat-sidenav-container-text-color: white;
  --mat-sidenav-content-background-color: #303030;
  --mat-sidenav-content-text-color: white;
  --mat-sidenav-scrim-color: rgba(189, 189, 189, 0.6);
  --mat-stepper-header-icon-foreground-color: rgba(0, 0, 0, 0.87);
  --mat-stepper-header-selected-state-icon-background-color: #42a5f5;
  --mat-stepper-header-selected-state-icon-foreground-color: rgba(0, 0, 0, 0.87);
  --mat-stepper-header-done-state-icon-background-color: #42a5f5;
  --mat-stepper-header-done-state-icon-foreground-color: rgba(0, 0, 0, 0.87);
  --mat-stepper-header-edit-state-icon-background-color: #42a5f5;
  --mat-stepper-header-edit-state-icon-foreground-color: rgba(0, 0, 0, 0.87);
  --mat-stepper-container-color: #424242;
  --mat-stepper-line-color: rgba(255, 255, 255, 0.12);
  --mat-stepper-header-hover-state-layer-color: rgba(255, 255, 255, 0.04);
  --mat-stepper-header-focus-state-layer-color: rgba(255, 255, 255, 0.04);
  --mat-stepper-header-label-text-color: rgba(255, 255, 255, 0.7);
  --mat-stepper-header-optional-label-text-color: rgba(255, 255, 255, 0.7);
  --mat-stepper-header-selected-state-label-text-color: white;
  --mat-stepper-header-error-state-label-text-color: #ff1744;
  --mat-stepper-header-icon-background-color: rgba(255, 255, 255, 0.7);
  --mat-stepper-header-error-state-icon-foreground-color: #ff1744;
  --mat-stepper-header-error-state-icon-background-color: transparent;
  --mat-sort-arrow-color: #c6c6c6;
  --mat-toolbar-container-background-color: #212121;
  --mat-toolbar-container-text-color: white;
  --mat-tree-container-background-color: #424242;
  --mat-tree-node-text-color: white;
  background-color: #202020;
  color: rgba(255, 255, 255, 0.87);
}
.motivatexr-theme .mat-accent {
  --mat-option-selected-state-label-text-color: #ffee58;
  --mat-option-label-text-color: white;
  --mat-option-hover-state-layer-color: rgba(255, 255, 255, 0.08);
  --mat-option-focus-state-layer-color: rgba(255, 255, 255, 0.08);
  --mat-option-selected-state-layer-color: rgba(255, 255, 255, 0.08);
}
.motivatexr-theme .mat-warn {
  --mat-option-selected-state-label-text-color: #ff1744;
  --mat-option-label-text-color: white;
  --mat-option-hover-state-layer-color: rgba(255, 255, 255, 0.08);
  --mat-option-focus-state-layer-color: rgba(255, 255, 255, 0.08);
  --mat-option-selected-state-layer-color: rgba(255, 255, 255, 0.08);
}
.motivatexr-theme .mat-primary {
  --mat-full-pseudo-checkbox-selected-icon-color: #42a5f5;
  --mat-full-pseudo-checkbox-selected-checkmark-color: #303030;
  --mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, 0.7);
  --mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;
  --mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;
  --mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;
  --mat-minimal-pseudo-checkbox-selected-checkmark-color: #42a5f5;
  --mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868;
}
.motivatexr-theme .mat-accent {
  --mat-full-pseudo-checkbox-selected-icon-color: #ffee58;
  --mat-full-pseudo-checkbox-selected-checkmark-color: #303030;
  --mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, 0.7);
  --mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;
  --mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;
  --mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;
  --mat-minimal-pseudo-checkbox-selected-checkmark-color: #ffee58;
  --mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868;
}
.motivatexr-theme .mat-warn {
  --mat-full-pseudo-checkbox-selected-icon-color: #ff1744;
  --mat-full-pseudo-checkbox-selected-checkmark-color: #303030;
  --mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, 0.7);
  --mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;
  --mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;
  --mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;
  --mat-minimal-pseudo-checkbox-selected-checkmark-color: #ff1744;
  --mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868;
}
.motivatexr-theme .mat-mdc-progress-bar {
  --mdc-linear-progress-active-indicator-color: #42a5f5;
  --mdc-linear-progress-track-color: rgba(66, 165, 245, 0.25);
}
.motivatexr-theme .mat-mdc-progress-bar.mat-accent {
  --mdc-linear-progress-active-indicator-color: #ffee58;
  --mdc-linear-progress-track-color: rgba(255, 238, 88, 0.25);
}
.motivatexr-theme .mat-mdc-progress-bar.mat-warn {
  --mdc-linear-progress-active-indicator-color: #ff1744;
  --mdc-linear-progress-track-color: rgba(255, 23, 68, 0.25);
}
.motivatexr-theme .mat-mdc-form-field.mat-accent {
  --mdc-filled-text-field-caret-color: #ffee58;
  --mdc-filled-text-field-focus-active-indicator-color: #ffee58;
  --mdc-filled-text-field-focus-label-text-color: rgba(255, 238, 88, 0.87);
  --mdc-outlined-text-field-caret-color: #ffee58;
  --mdc-outlined-text-field-focus-outline-color: #ffee58;
  --mdc-outlined-text-field-focus-label-text-color: rgba(255, 238, 88, 0.87);
  --mat-form-field-focus-select-arrow-color: rgba(255, 238, 88, 0.87);
}
.motivatexr-theme .mat-mdc-form-field.mat-warn {
  --mdc-filled-text-field-caret-color: #ff1744;
  --mdc-filled-text-field-focus-active-indicator-color: #ff1744;
  --mdc-filled-text-field-focus-label-text-color: rgba(255, 23, 68, 0.87);
  --mdc-outlined-text-field-caret-color: #ff1744;
  --mdc-outlined-text-field-focus-outline-color: #ff1744;
  --mdc-outlined-text-field-focus-label-text-color: rgba(255, 23, 68, 0.87);
  --mat-form-field-focus-select-arrow-color: rgba(255, 23, 68, 0.87);
}
.motivatexr-theme .mat-mdc-form-field.mat-accent {
  --mat-select-panel-background-color: #424242;
  --mat-select-enabled-trigger-text-color: rgba(255, 255, 255, 0.87);
  --mat-select-disabled-trigger-text-color: rgba(255, 255, 255, 0.38);
  --mat-select-placeholder-text-color: rgba(255, 255, 255, 0.6);
  --mat-select-enabled-arrow-color: rgba(255, 255, 255, 0.54);
  --mat-select-disabled-arrow-color: rgba(255, 255, 255, 0.38);
  --mat-select-focused-arrow-color: rgba(255, 238, 88, 0.87);
  --mat-select-invalid-arrow-color: rgba(255, 23, 68, 0.87);
}
.motivatexr-theme .mat-mdc-form-field.mat-warn {
  --mat-select-panel-background-color: #424242;
  --mat-select-enabled-trigger-text-color: rgba(255, 255, 255, 0.87);
  --mat-select-disabled-trigger-text-color: rgba(255, 255, 255, 0.38);
  --mat-select-placeholder-text-color: rgba(255, 255, 255, 0.6);
  --mat-select-enabled-arrow-color: rgba(255, 255, 255, 0.54);
  --mat-select-disabled-arrow-color: rgba(255, 255, 255, 0.38);
  --mat-select-focused-arrow-color: rgba(255, 23, 68, 0.87);
  --mat-select-invalid-arrow-color: rgba(255, 23, 68, 0.87);
}
.motivatexr-theme .mat-mdc-standard-chip {
  --mdc-chip-container-shape-radius: 16px;
  --mdc-chip-with-avatar-avatar-shape-radius: 14px;
  --mdc-chip-with-avatar-avatar-size: 28px;
  --mdc-chip-with-icon-icon-size: 18px;
  --mdc-chip-outline-width: 0;
  --mdc-chip-outline-color: transparent;
  --mdc-chip-disabled-outline-color: transparent;
  --mdc-chip-focus-outline-color: transparent;
  --mdc-chip-hover-state-layer-opacity: 0.04;
  --mdc-chip-with-avatar-disabled-avatar-opacity: 1;
  --mdc-chip-flat-selected-outline-width: 0;
  --mdc-chip-selected-hover-state-layer-opacity: 0.04;
  --mdc-chip-with-trailing-icon-disabled-trailing-icon-opacity: 1;
  --mdc-chip-with-icon-disabled-icon-opacity: 1;
  --mat-chip-disabled-container-opacity: 0.4;
  --mat-chip-trailing-action-opacity: 0.54;
  --mat-chip-trailing-action-focus-opacity: 1;
  --mat-chip-trailing-action-state-layer-color: transparent;
  --mat-chip-selected-trailing-action-state-layer-color: transparent;
  --mat-chip-trailing-action-hover-state-layer-opacity: 0;
  --mat-chip-trailing-action-focus-state-layer-opacity: 0;
  --mdc-chip-disabled-label-text-color: #fafafa;
  --mdc-chip-elevated-container-color: #595959;
  --mdc-chip-elevated-selected-container-color: #595959;
  --mdc-chip-elevated-disabled-container-color: #595959;
  --mdc-chip-flat-disabled-selected-container-color: #595959;
  --mdc-chip-focus-state-layer-color: white;
  --mdc-chip-hover-state-layer-color: white;
  --mdc-chip-selected-hover-state-layer-color: white;
  --mdc-chip-focus-state-layer-opacity: 0.12;
  --mdc-chip-selected-focus-state-layer-color: white;
  --mdc-chip-selected-focus-state-layer-opacity: 0.12;
  --mdc-chip-label-text-color: #fafafa;
  --mdc-chip-selected-label-text-color: #fafafa;
  --mdc-chip-with-icon-icon-color: #fafafa;
  --mdc-chip-with-icon-disabled-icon-color: #fafafa;
  --mdc-chip-with-icon-selected-icon-color: #fafafa;
  --mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #fafafa;
  --mdc-chip-with-trailing-icon-trailing-icon-color: #fafafa;
  --mat-chip-selected-disabled-trailing-icon-color: #fafafa;
  --mat-chip-selected-trailing-icon-color: #fafafa;
}
.motivatexr-theme .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary, .motivatexr-theme .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary {
  --mdc-chip-disabled-label-text-color: rgba(0, 0, 0, 0.87);
  --mdc-chip-elevated-container-color: #42a5f5;
  --mdc-chip-elevated-selected-container-color: #42a5f5;
  --mdc-chip-elevated-disabled-container-color: #42a5f5;
  --mdc-chip-flat-disabled-selected-container-color: #42a5f5;
  --mdc-chip-focus-state-layer-color: white;
  --mdc-chip-hover-state-layer-color: white;
  --mdc-chip-selected-hover-state-layer-color: white;
  --mdc-chip-focus-state-layer-opacity: 0.12;
  --mdc-chip-selected-focus-state-layer-color: white;
  --mdc-chip-selected-focus-state-layer-opacity: 0.12;
  --mdc-chip-label-text-color: rgba(0, 0, 0, 0.87);
  --mdc-chip-selected-label-text-color: rgba(0, 0, 0, 0.87);
  --mdc-chip-with-icon-icon-color: rgba(0, 0, 0, 0.87);
  --mdc-chip-with-icon-disabled-icon-color: rgba(0, 0, 0, 0.87);
  --mdc-chip-with-icon-selected-icon-color: rgba(0, 0, 0, 0.87);
  --mdc-chip-with-trailing-icon-disabled-trailing-icon-color: rgba(0, 0, 0, 0.87);
  --mdc-chip-with-trailing-icon-trailing-icon-color: rgba(0, 0, 0, 0.87);
  --mat-chip-selected-disabled-trailing-icon-color: rgba(0, 0, 0, 0.87);
  --mat-chip-selected-trailing-icon-color: rgba(0, 0, 0, 0.87);
}
.motivatexr-theme .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent, .motivatexr-theme .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent {
  --mdc-chip-disabled-label-text-color: rgba(0, 0, 0, 0.87);
  --mdc-chip-elevated-container-color: #ffee58;
  --mdc-chip-elevated-selected-container-color: #ffee58;
  --mdc-chip-elevated-disabled-container-color: #ffee58;
  --mdc-chip-flat-disabled-selected-container-color: #ffee58;
  --mdc-chip-focus-state-layer-color: white;
  --mdc-chip-hover-state-layer-color: white;
  --mdc-chip-selected-hover-state-layer-color: white;
  --mdc-chip-focus-state-layer-opacity: 0.12;
  --mdc-chip-selected-focus-state-layer-color: white;
  --mdc-chip-selected-focus-state-layer-opacity: 0.12;
  --mdc-chip-label-text-color: rgba(0, 0, 0, 0.87);
  --mdc-chip-selected-label-text-color: rgba(0, 0, 0, 0.87);
  --mdc-chip-with-icon-icon-color: rgba(0, 0, 0, 0.87);
  --mdc-chip-with-icon-disabled-icon-color: rgba(0, 0, 0, 0.87);
  --mdc-chip-with-icon-selected-icon-color: rgba(0, 0, 0, 0.87);
  --mdc-chip-with-trailing-icon-disabled-trailing-icon-color: rgba(0, 0, 0, 0.87);
  --mdc-chip-with-trailing-icon-trailing-icon-color: rgba(0, 0, 0, 0.87);
  --mat-chip-selected-disabled-trailing-icon-color: rgba(0, 0, 0, 0.87);
  --mat-chip-selected-trailing-icon-color: rgba(0, 0, 0, 0.87);
}
.motivatexr-theme .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn, .motivatexr-theme .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn {
  --mdc-chip-disabled-label-text-color: white;
  --mdc-chip-elevated-container-color: #ff1744;
  --mdc-chip-elevated-selected-container-color: #ff1744;
  --mdc-chip-elevated-disabled-container-color: #ff1744;
  --mdc-chip-flat-disabled-selected-container-color: #ff1744;
  --mdc-chip-focus-state-layer-color: white;
  --mdc-chip-hover-state-layer-color: white;
  --mdc-chip-selected-hover-state-layer-color: white;
  --mdc-chip-focus-state-layer-opacity: 0.12;
  --mdc-chip-selected-focus-state-layer-color: white;
  --mdc-chip-selected-focus-state-layer-opacity: 0.12;
  --mdc-chip-label-text-color: white;
  --mdc-chip-selected-label-text-color: white;
  --mdc-chip-with-icon-icon-color: white;
  --mdc-chip-with-icon-disabled-icon-color: white;
  --mdc-chip-with-icon-selected-icon-color: white;
  --mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;
  --mdc-chip-with-trailing-icon-trailing-icon-color: white;
  --mat-chip-selected-disabled-trailing-icon-color: white;
  --mat-chip-selected-trailing-icon-color: white;
}
.motivatexr-theme .mat-mdc-slide-toggle {
  --mat-switch-disabled-selected-handle-opacity: 0.38;
  --mat-switch-disabled-unselected-handle-opacity: 0.38;
  --mat-switch-unselected-handle-size: 20px;
  --mat-switch-selected-handle-size: 20px;
  --mat-switch-pressed-handle-size: 20px;
  --mat-switch-with-icon-handle-size: 20px;
  --mat-switch-selected-handle-horizontal-margin: 0;
  --mat-switch-selected-with-icon-handle-horizontal-margin: 0;
  --mat-switch-selected-pressed-handle-horizontal-margin: 0;
  --mat-switch-unselected-handle-horizontal-margin: 0;
  --mat-switch-unselected-with-icon-handle-horizontal-margin: 0;
  --mat-switch-unselected-pressed-handle-horizontal-margin: 0;
  --mat-switch-visible-track-opacity: 1;
  --mat-switch-hidden-track-opacity: 1;
  --mat-switch-visible-track-transition: transform 75ms 0ms cubic-bezier(0, 0, 0.2, 1);
  --mat-switch-hidden-track-transition: transform 75ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
  --mat-switch-track-outline-width: 1px;
  --mat-switch-track-outline-color: transparent;
  --mat-switch-selected-track-outline-width: 1px;
  --mat-switch-selected-track-outline-color: transparent;
  --mat-switch-disabled-unselected-track-outline-width: 1px;
  --mat-switch-disabled-unselected-track-outline-color: transparent;
  --mat-switch-label-text-color: white;
}
.motivatexr-theme .mat-mdc-slide-toggle.mat-accent {
  --mdc-switch-selected-focus-state-layer-color: #fff176;
  --mdc-switch-selected-handle-color: #fff176;
  --mdc-switch-selected-hover-state-layer-color: #fff176;
  --mdc-switch-selected-pressed-state-layer-color: #fff176;
  --mdc-switch-selected-focus-handle-color: #fff59d;
  --mdc-switch-selected-hover-handle-color: #fff59d;
  --mdc-switch-selected-pressed-handle-color: #fff59d;
  --mdc-switch-selected-focus-track-color: #fdd835;
  --mdc-switch-selected-hover-track-color: #fdd835;
  --mdc-switch-selected-pressed-track-color: #fdd835;
  --mdc-switch-selected-track-color: #fdd835;
}
.motivatexr-theme .mat-mdc-slide-toggle.mat-warn {
  --mdc-switch-selected-focus-state-layer-color: #e57373;
  --mdc-switch-selected-handle-color: #e57373;
  --mdc-switch-selected-hover-state-layer-color: #e57373;
  --mdc-switch-selected-pressed-state-layer-color: #e57373;
  --mdc-switch-selected-focus-handle-color: #ef9a9a;
  --mdc-switch-selected-hover-handle-color: #ef9a9a;
  --mdc-switch-selected-pressed-handle-color: #ef9a9a;
  --mdc-switch-selected-focus-track-color: #e53935;
  --mdc-switch-selected-hover-track-color: #e53935;
  --mdc-switch-selected-pressed-track-color: #e53935;
  --mdc-switch-selected-track-color: #e53935;
}
.motivatexr-theme .mat-mdc-radio-button.mat-primary {
  --mdc-radio-disabled-selected-icon-color: white;
  --mdc-radio-disabled-unselected-icon-color: white;
  --mdc-radio-unselected-hover-icon-color: #eeeeee;
  --mdc-radio-unselected-focus-icon-color: #eeeeee;
  --mdc-radio-unselected-icon-color: rgba(255, 255, 255, 0.54);
  --mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, 0.54);
  --mdc-radio-selected-focus-icon-color: #42a5f5;
  --mdc-radio-selected-hover-icon-color: #42a5f5;
  --mdc-radio-selected-icon-color: #42a5f5;
  --mdc-radio-selected-pressed-icon-color: #42a5f5;
  --mat-radio-ripple-color: white;
  --mat-radio-checked-ripple-color: #42a5f5;
  --mat-radio-disabled-label-color: rgba(255, 255, 255, 0.5);
  --mat-radio-label-text-color: white;
}
.motivatexr-theme .mat-mdc-radio-button.mat-accent {
  --mdc-radio-disabled-selected-icon-color: white;
  --mdc-radio-disabled-unselected-icon-color: white;
  --mdc-radio-unselected-hover-icon-color: #eeeeee;
  --mdc-radio-unselected-focus-icon-color: #eeeeee;
  --mdc-radio-unselected-icon-color: rgba(255, 255, 255, 0.54);
  --mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, 0.54);
  --mdc-radio-selected-focus-icon-color: #ffee58;
  --mdc-radio-selected-hover-icon-color: #ffee58;
  --mdc-radio-selected-icon-color: #ffee58;
  --mdc-radio-selected-pressed-icon-color: #ffee58;
  --mat-radio-ripple-color: white;
  --mat-radio-checked-ripple-color: #ffee58;
  --mat-radio-disabled-label-color: rgba(255, 255, 255, 0.5);
  --mat-radio-label-text-color: white;
}
.motivatexr-theme .mat-mdc-radio-button.mat-warn {
  --mdc-radio-disabled-selected-icon-color: white;
  --mdc-radio-disabled-unselected-icon-color: white;
  --mdc-radio-unselected-hover-icon-color: #eeeeee;
  --mdc-radio-unselected-focus-icon-color: #eeeeee;
  --mdc-radio-unselected-icon-color: rgba(255, 255, 255, 0.54);
  --mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, 0.54);
  --mdc-radio-selected-focus-icon-color: #ff1744;
  --mdc-radio-selected-hover-icon-color: #ff1744;
  --mdc-radio-selected-icon-color: #ff1744;
  --mdc-radio-selected-pressed-icon-color: #ff1744;
  --mat-radio-ripple-color: white;
  --mat-radio-checked-ripple-color: #ff1744;
  --mat-radio-disabled-label-color: rgba(255, 255, 255, 0.5);
  --mat-radio-label-text-color: white;
}
.motivatexr-theme .mat-accent {
  --mdc-slider-handle-color: #ffee58;
  --mdc-slider-focus-handle-color: #ffee58;
  --mdc-slider-hover-handle-color: #ffee58;
  --mdc-slider-active-track-color: #ffee58;
  --mdc-slider-inactive-track-color: #ffee58;
  --mdc-slider-with-tick-marks-inactive-container-color: #ffee58;
  --mdc-slider-with-tick-marks-active-container-color: rgba(0, 0, 0, 0.87);
  --mat-slider-ripple-color: #ffee58;
  --mat-slider-hover-state-layer-color: rgba(255, 238, 88, 0.05);
  --mat-slider-focus-state-layer-color: rgba(255, 238, 88, 0.2);
}
.motivatexr-theme .mat-warn {
  --mdc-slider-handle-color: #ff1744;
  --mdc-slider-focus-handle-color: #ff1744;
  --mdc-slider-hover-handle-color: #ff1744;
  --mdc-slider-active-track-color: #ff1744;
  --mdc-slider-inactive-track-color: #ff1744;
  --mdc-slider-with-tick-marks-inactive-container-color: #ff1744;
  --mdc-slider-with-tick-marks-active-container-color: white;
  --mat-slider-ripple-color: #ff1744;
  --mat-slider-hover-state-layer-color: rgba(255, 23, 68, 0.05);
  --mat-slider-focus-state-layer-color: rgba(255, 23, 68, 0.2);
}
.motivatexr-theme .mdc-list-item__start,
.motivatexr-theme .mdc-list-item__end {
  --mdc-radio-disabled-selected-icon-color: white;
  --mdc-radio-disabled-unselected-icon-color: white;
  --mdc-radio-unselected-hover-icon-color: #eeeeee;
  --mdc-radio-unselected-focus-icon-color: #eeeeee;
  --mdc-radio-unselected-icon-color: rgba(255, 255, 255, 0.54);
  --mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, 0.54);
  --mdc-radio-selected-focus-icon-color: #42a5f5;
  --mdc-radio-selected-hover-icon-color: #42a5f5;
  --mdc-radio-selected-icon-color: #42a5f5;
  --mdc-radio-selected-pressed-icon-color: #42a5f5;
}
.motivatexr-theme .mat-accent .mdc-list-item__start,
.motivatexr-theme .mat-accent .mdc-list-item__end {
  --mdc-radio-disabled-selected-icon-color: white;
  --mdc-radio-disabled-unselected-icon-color: white;
  --mdc-radio-unselected-hover-icon-color: #eeeeee;
  --mdc-radio-unselected-focus-icon-color: #eeeeee;
  --mdc-radio-unselected-icon-color: rgba(255, 255, 255, 0.54);
  --mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, 0.54);
  --mdc-radio-selected-focus-icon-color: #ffee58;
  --mdc-radio-selected-hover-icon-color: #ffee58;
  --mdc-radio-selected-icon-color: #ffee58;
  --mdc-radio-selected-pressed-icon-color: #ffee58;
}
.motivatexr-theme .mat-warn .mdc-list-item__start,
.motivatexr-theme .mat-warn .mdc-list-item__end {
  --mdc-radio-disabled-selected-icon-color: white;
  --mdc-radio-disabled-unselected-icon-color: white;
  --mdc-radio-unselected-hover-icon-color: #eeeeee;
  --mdc-radio-unselected-focus-icon-color: #eeeeee;
  --mdc-radio-unselected-icon-color: rgba(255, 255, 255, 0.54);
  --mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, 0.54);
  --mdc-radio-selected-focus-icon-color: #ff1744;
  --mdc-radio-selected-hover-icon-color: #ff1744;
  --mdc-radio-selected-icon-color: #ff1744;
  --mdc-radio-selected-pressed-icon-color: #ff1744;
}
.motivatexr-theme .mat-mdc-list-option {
  --mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, 0.38);
  --mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, 0.38);
  --mdc-checkbox-selected-checkmark-color: black;
  --mdc-checkbox-selected-focus-icon-color: #42a5f5;
  --mdc-checkbox-selected-hover-icon-color: #42a5f5;
  --mdc-checkbox-selected-icon-color: #42a5f5;
  --mdc-checkbox-selected-pressed-icon-color: #42a5f5;
  --mdc-checkbox-unselected-focus-icon-color: #eeeeee;
  --mdc-checkbox-unselected-hover-icon-color: #eeeeee;
  --mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, 0.54);
  --mdc-checkbox-selected-focus-state-layer-color: #42a5f5;
  --mdc-checkbox-selected-hover-state-layer-color: #42a5f5;
  --mdc-checkbox-selected-pressed-state-layer-color: #42a5f5;
  --mdc-checkbox-unselected-focus-state-layer-color: white;
  --mdc-checkbox-unselected-hover-state-layer-color: white;
  --mdc-checkbox-unselected-pressed-state-layer-color: white;
}
.motivatexr-theme .mat-mdc-list-option.mat-accent {
  --mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, 0.38);
  --mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, 0.38);
  --mdc-checkbox-selected-checkmark-color: black;
  --mdc-checkbox-selected-focus-icon-color: #ffee58;
  --mdc-checkbox-selected-hover-icon-color: #ffee58;
  --mdc-checkbox-selected-icon-color: #ffee58;
  --mdc-checkbox-selected-pressed-icon-color: #ffee58;
  --mdc-checkbox-unselected-focus-icon-color: #eeeeee;
  --mdc-checkbox-unselected-hover-icon-color: #eeeeee;
  --mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, 0.54);
  --mdc-checkbox-selected-focus-state-layer-color: #ffee58;
  --mdc-checkbox-selected-hover-state-layer-color: #ffee58;
  --mdc-checkbox-selected-pressed-state-layer-color: #ffee58;
  --mdc-checkbox-unselected-focus-state-layer-color: white;
  --mdc-checkbox-unselected-hover-state-layer-color: white;
  --mdc-checkbox-unselected-pressed-state-layer-color: white;
}
.motivatexr-theme .mat-mdc-list-option.mat-warn {
  --mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, 0.38);
  --mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, 0.38);
  --mdc-checkbox-selected-checkmark-color: white;
  --mdc-checkbox-selected-focus-icon-color: #ff1744;
  --mdc-checkbox-selected-hover-icon-color: #ff1744;
  --mdc-checkbox-selected-icon-color: #ff1744;
  --mdc-checkbox-selected-pressed-icon-color: #ff1744;
  --mdc-checkbox-unselected-focus-icon-color: #eeeeee;
  --mdc-checkbox-unselected-hover-icon-color: #eeeeee;
  --mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, 0.54);
  --mdc-checkbox-selected-focus-state-layer-color: #ff1744;
  --mdc-checkbox-selected-hover-state-layer-color: #ff1744;
  --mdc-checkbox-selected-pressed-state-layer-color: #ff1744;
  --mdc-checkbox-unselected-focus-state-layer-color: white;
  --mdc-checkbox-unselected-hover-state-layer-color: white;
  --mdc-checkbox-unselected-pressed-state-layer-color: white;
}
.motivatexr-theme .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text,
.motivatexr-theme .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__start,
.motivatexr-theme .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text,
.motivatexr-theme .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__start {
  color: #42a5f5;
}
.motivatexr-theme .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__start,
.motivatexr-theme .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__content,
.motivatexr-theme .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__end {
  opacity: 1;
}
.motivatexr-theme .mat-mdc-tab-group, .motivatexr-theme .mat-mdc-tab-nav-bar {
  --mdc-tab-indicator-active-indicator-color: #42a5f5;
  --mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, 0.5);
  --mat-tab-header-pagination-icon-color: white;
  --mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, 0.6);
  --mat-tab-header-active-label-text-color: #42a5f5;
  --mat-tab-header-active-ripple-color: #42a5f5;
  --mat-tab-header-inactive-ripple-color: #42a5f5;
  --mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, 0.6);
  --mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, 0.6);
  --mat-tab-header-active-focus-label-text-color: #42a5f5;
  --mat-tab-header-active-hover-label-text-color: #42a5f5;
  --mat-tab-header-active-focus-indicator-color: #42a5f5;
  --mat-tab-header-active-hover-indicator-color: #42a5f5;
}
.motivatexr-theme .mat-mdc-tab-group.mat-accent, .motivatexr-theme .mat-mdc-tab-nav-bar.mat-accent {
  --mdc-tab-indicator-active-indicator-color: #ffee58;
  --mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, 0.5);
  --mat-tab-header-pagination-icon-color: white;
  --mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, 0.6);
  --mat-tab-header-active-label-text-color: #ffee58;
  --mat-tab-header-active-ripple-color: #ffee58;
  --mat-tab-header-inactive-ripple-color: #ffee58;
  --mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, 0.6);
  --mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, 0.6);
  --mat-tab-header-active-focus-label-text-color: #ffee58;
  --mat-tab-header-active-hover-label-text-color: #ffee58;
  --mat-tab-header-active-focus-indicator-color: #ffee58;
  --mat-tab-header-active-hover-indicator-color: #ffee58;
}
.motivatexr-theme .mat-mdc-tab-group.mat-warn, .motivatexr-theme .mat-mdc-tab-nav-bar.mat-warn {
  --mdc-tab-indicator-active-indicator-color: #ff1744;
  --mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, 0.5);
  --mat-tab-header-pagination-icon-color: white;
  --mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, 0.6);
  --mat-tab-header-active-label-text-color: #ff1744;
  --mat-tab-header-active-ripple-color: #ff1744;
  --mat-tab-header-inactive-ripple-color: #ff1744;
  --mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, 0.6);
  --mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, 0.6);
  --mat-tab-header-active-focus-label-text-color: #ff1744;
  --mat-tab-header-active-hover-label-text-color: #ff1744;
  --mat-tab-header-active-focus-indicator-color: #ff1744;
  --mat-tab-header-active-hover-indicator-color: #ff1744;
}
.motivatexr-theme .mat-mdc-tab-group.mat-background-primary, .motivatexr-theme .mat-mdc-tab-nav-bar.mat-background-primary {
  --mat-tab-header-with-background-background-color: #42a5f5;
  --mat-tab-header-with-background-foreground-color: rgba(0, 0, 0, 0.87);
}
.motivatexr-theme .mat-mdc-tab-group.mat-background-accent, .motivatexr-theme .mat-mdc-tab-nav-bar.mat-background-accent {
  --mat-tab-header-with-background-background-color: #ffee58;
  --mat-tab-header-with-background-foreground-color: rgba(0, 0, 0, 0.87);
}
.motivatexr-theme .mat-mdc-tab-group.mat-background-warn, .motivatexr-theme .mat-mdc-tab-nav-bar.mat-background-warn {
  --mat-tab-header-with-background-background-color: #ff1744;
  --mat-tab-header-with-background-foreground-color: white;
}
.motivatexr-theme .mat-mdc-checkbox.mat-primary {
  --mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, 0.38);
  --mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, 0.38);
  --mdc-checkbox-selected-checkmark-color: black;
  --mdc-checkbox-selected-focus-icon-color: #42a5f5;
  --mdc-checkbox-selected-hover-icon-color: #42a5f5;
  --mdc-checkbox-selected-icon-color: #42a5f5;
  --mdc-checkbox-selected-pressed-icon-color: #42a5f5;
  --mdc-checkbox-unselected-focus-icon-color: #eeeeee;
  --mdc-checkbox-unselected-hover-icon-color: #eeeeee;
  --mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, 0.54);
  --mdc-checkbox-selected-focus-state-layer-color: #42a5f5;
  --mdc-checkbox-selected-hover-state-layer-color: #42a5f5;
  --mdc-checkbox-selected-pressed-state-layer-color: #42a5f5;
  --mdc-checkbox-unselected-focus-state-layer-color: white;
  --mdc-checkbox-unselected-hover-state-layer-color: white;
  --mdc-checkbox-unselected-pressed-state-layer-color: white;
}
.motivatexr-theme .mat-mdc-checkbox.mat-warn {
  --mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, 0.38);
  --mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, 0.38);
  --mdc-checkbox-selected-checkmark-color: white;
  --mdc-checkbox-selected-focus-icon-color: #ff1744;
  --mdc-checkbox-selected-hover-icon-color: #ff1744;
  --mdc-checkbox-selected-icon-color: #ff1744;
  --mdc-checkbox-selected-pressed-icon-color: #ff1744;
  --mdc-checkbox-unselected-focus-icon-color: #eeeeee;
  --mdc-checkbox-unselected-hover-icon-color: #eeeeee;
  --mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, 0.54);
  --mdc-checkbox-selected-focus-state-layer-color: #ff1744;
  --mdc-checkbox-selected-hover-state-layer-color: #ff1744;
  --mdc-checkbox-selected-pressed-state-layer-color: #ff1744;
  --mdc-checkbox-unselected-focus-state-layer-color: white;
  --mdc-checkbox-unselected-hover-state-layer-color: white;
  --mdc-checkbox-unselected-pressed-state-layer-color: white;
}
.motivatexr-theme .mat-mdc-button.mat-primary {
  --mdc-text-button-label-text-color: #42a5f5;
  --mat-text-button-state-layer-color: #42a5f5;
  --mat-text-button-ripple-color: rgba(66, 165, 245, 0.1);
}
.motivatexr-theme .mat-mdc-button.mat-accent {
  --mdc-text-button-label-text-color: #ffee58;
  --mat-text-button-state-layer-color: #ffee58;
  --mat-text-button-ripple-color: rgba(255, 238, 88, 0.1);
}
.motivatexr-theme .mat-mdc-button.mat-warn {
  --mdc-text-button-label-text-color: #ff1744;
  --mat-text-button-state-layer-color: #ff1744;
  --mat-text-button-ripple-color: rgba(255, 23, 68, 0.1);
}
.motivatexr-theme .mat-mdc-unelevated-button.mat-primary {
  --mdc-filled-button-container-color: #42a5f5;
  --mdc-filled-button-label-text-color: black;
  --mat-filled-button-state-layer-color: black;
  --mat-filled-button-ripple-color: rgba(0, 0, 0, 0.1);
}
.motivatexr-theme .mat-mdc-unelevated-button.mat-accent {
  --mdc-filled-button-container-color: #ffee58;
  --mdc-filled-button-label-text-color: black;
  --mat-filled-button-state-layer-color: black;
  --mat-filled-button-ripple-color: rgba(0, 0, 0, 0.1);
}
.motivatexr-theme .mat-mdc-unelevated-button.mat-warn {
  --mdc-filled-button-container-color: #ff1744;
  --mdc-filled-button-label-text-color: white;
  --mat-filled-button-state-layer-color: white;
  --mat-filled-button-ripple-color: rgba(255, 255, 255, 0.1);
}
.motivatexr-theme .mat-mdc-raised-button.mat-primary {
  --mdc-protected-button-container-color: #42a5f5;
  --mdc-protected-button-label-text-color: black;
  --mat-protected-button-state-layer-color: black;
  --mat-protected-button-ripple-color: rgba(0, 0, 0, 0.1);
}
.motivatexr-theme .mat-mdc-raised-button.mat-accent {
  --mdc-protected-button-container-color: #ffee58;
  --mdc-protected-button-label-text-color: black;
  --mat-protected-button-state-layer-color: black;
  --mat-protected-button-ripple-color: rgba(0, 0, 0, 0.1);
}
.motivatexr-theme .mat-mdc-raised-button.mat-warn {
  --mdc-protected-button-container-color: #ff1744;
  --mdc-protected-button-label-text-color: white;
  --mat-protected-button-state-layer-color: white;
  --mat-protected-button-ripple-color: rgba(255, 255, 255, 0.1);
}
.motivatexr-theme .mat-mdc-outlined-button.mat-primary {
  --mdc-outlined-button-label-text-color: #42a5f5;
  --mdc-outlined-button-outline-color: rgba(255, 255, 255, 0.12);
  --mat-outlined-button-state-layer-color: #42a5f5;
  --mat-outlined-button-ripple-color: rgba(66, 165, 245, 0.1);
}
.motivatexr-theme .mat-mdc-outlined-button.mat-accent {
  --mdc-outlined-button-label-text-color: #ffee58;
  --mdc-outlined-button-outline-color: rgba(255, 255, 255, 0.12);
  --mat-outlined-button-state-layer-color: #ffee58;
  --mat-outlined-button-ripple-color: rgba(255, 238, 88, 0.1);
}
.motivatexr-theme .mat-mdc-outlined-button.mat-warn {
  --mdc-outlined-button-label-text-color: #ff1744;
  --mdc-outlined-button-outline-color: rgba(255, 255, 255, 0.12);
  --mat-outlined-button-state-layer-color: #ff1744;
  --mat-outlined-button-ripple-color: rgba(255, 23, 68, 0.1);
}
.motivatexr-theme .mat-mdc-icon-button.mat-primary {
  --mdc-icon-button-icon-color: #42a5f5;
  --mat-icon-button-state-layer-color: #42a5f5;
  --mat-icon-button-ripple-color: rgba(66, 165, 245, 0.1);
}
.motivatexr-theme .mat-mdc-icon-button.mat-accent {
  --mdc-icon-button-icon-color: #ffee58;
  --mat-icon-button-state-layer-color: #ffee58;
  --mat-icon-button-ripple-color: rgba(255, 238, 88, 0.1);
}
.motivatexr-theme .mat-mdc-icon-button.mat-warn {
  --mdc-icon-button-icon-color: #ff1744;
  --mat-icon-button-state-layer-color: #ff1744;
  --mat-icon-button-ripple-color: rgba(255, 23, 68, 0.1);
}
.motivatexr-theme .mat-mdc-fab.mat-primary {
  --mdc-fab-container-color: #42a5f5;
  --mat-fab-foreground-color: black;
  --mat-fab-state-layer-color: black;
  --mat-fab-ripple-color: rgba(0, 0, 0, 0.1);
}
.motivatexr-theme .mat-mdc-fab.mat-accent {
  --mdc-fab-container-color: #ffee58;
  --mat-fab-foreground-color: black;
  --mat-fab-state-layer-color: black;
  --mat-fab-ripple-color: rgba(0, 0, 0, 0.1);
}
.motivatexr-theme .mat-mdc-fab.mat-warn {
  --mdc-fab-container-color: #ff1744;
  --mat-fab-foreground-color: white;
  --mat-fab-state-layer-color: white;
  --mat-fab-ripple-color: rgba(255, 255, 255, 0.1);
}
.motivatexr-theme .mat-mdc-mini-fab.mat-primary {
  --mdc-fab-small-container-color: #42a5f5;
  --mat-fab-small-foreground-color: black;
  --mat-fab-small-state-layer-color: black;
  --mat-fab-small-ripple-color: rgba(0, 0, 0, 0.1);
}
.motivatexr-theme .mat-mdc-mini-fab.mat-accent {
  --mdc-fab-small-container-color: #ffee58;
  --mat-fab-small-foreground-color: black;
  --mat-fab-small-state-layer-color: black;
  --mat-fab-small-ripple-color: rgba(0, 0, 0, 0.1);
}
.motivatexr-theme .mat-mdc-mini-fab.mat-warn {
  --mdc-fab-small-container-color: #ff1744;
  --mat-fab-small-foreground-color: white;
  --mat-fab-small-state-layer-color: white;
  --mat-fab-small-ripple-color: rgba(255, 255, 255, 0.1);
}
.motivatexr-theme .mat-accent {
  --mdc-circular-progress-active-indicator-color: #ffee58;
}
.motivatexr-theme .mat-warn {
  --mdc-circular-progress-active-indicator-color: #ff1744;
}
.motivatexr-theme .mat-badge-accent {
  --mat-badge-background-color: #ffee58;
  --mat-badge-text-color: rgba(0, 0, 0, 0.87);
}
.motivatexr-theme .mat-badge-warn {
  --mat-badge-background-color: #ff1744;
  --mat-badge-text-color: white;
}
.motivatexr-theme .mat-datepicker-content.mat-accent {
  --mat-datepicker-calendar-date-selected-state-text-color: rgba(0, 0, 0, 0.87);
  --mat-datepicker-calendar-date-selected-state-background-color: #ffee58;
  --mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(255, 238, 88, 0.4);
  --mat-datepicker-calendar-date-today-selected-state-outline-color: rgba(0, 0, 0, 0.87);
  --mat-datepicker-calendar-date-focus-state-background-color: rgba(255, 238, 88, 0.3);
  --mat-datepicker-calendar-date-hover-state-background-color: rgba(255, 238, 88, 0.3);
  --mat-datepicker-calendar-date-in-range-state-background-color: rgba(255, 238, 88, 0.2);
  --mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, 0.2);
  --mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;
  --mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e;
}
.motivatexr-theme .mat-datepicker-content.mat-warn {
  --mat-datepicker-calendar-date-selected-state-text-color: white;
  --mat-datepicker-calendar-date-selected-state-background-color: #ff1744;
  --mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(255, 23, 68, 0.4);
  --mat-datepicker-calendar-date-today-selected-state-outline-color: white;
  --mat-datepicker-calendar-date-focus-state-background-color: rgba(255, 23, 68, 0.3);
  --mat-datepicker-calendar-date-hover-state-background-color: rgba(255, 23, 68, 0.3);
  --mat-datepicker-calendar-date-in-range-state-background-color: rgba(255, 23, 68, 0.2);
  --mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, 0.2);
  --mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;
  --mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e;
}
.motivatexr-theme .mat-datepicker-toggle-active.mat-accent {
  --mat-datepicker-toggle-active-state-icon-color: #ffee58;
}
.motivatexr-theme .mat-datepicker-toggle-active.mat-warn {
  --mat-datepicker-toggle-active-state-icon-color: #ff1744;
}
.motivatexr-theme .mat-icon.mat-primary {
  --mat-icon-color: #42a5f5;
}
.motivatexr-theme .mat-icon.mat-accent {
  --mat-icon-color: #ffee58;
}
.motivatexr-theme .mat-icon.mat-warn {
  --mat-icon-color: #ff1744;
}
.motivatexr-theme .mat-step-header.mat-accent {
  --mat-stepper-header-icon-foreground-color: rgba(0, 0, 0, 0.87);
  --mat-stepper-header-selected-state-icon-background-color: #ffee58;
  --mat-stepper-header-selected-state-icon-foreground-color: rgba(0, 0, 0, 0.87);
  --mat-stepper-header-done-state-icon-background-color: #ffee58;
  --mat-stepper-header-done-state-icon-foreground-color: rgba(0, 0, 0, 0.87);
  --mat-stepper-header-edit-state-icon-background-color: #ffee58;
  --mat-stepper-header-edit-state-icon-foreground-color: rgba(0, 0, 0, 0.87);
}
.motivatexr-theme .mat-step-header.mat-warn {
  --mat-stepper-header-icon-foreground-color: white;
  --mat-stepper-header-selected-state-icon-background-color: #ff1744;
  --mat-stepper-header-selected-state-icon-foreground-color: white;
  --mat-stepper-header-done-state-icon-background-color: #ff1744;
  --mat-stepper-header-done-state-icon-foreground-color: white;
  --mat-stepper-header-edit-state-icon-background-color: #ff1744;
  --mat-stepper-header-edit-state-icon-foreground-color: white;
}
.motivatexr-theme .mat-toolbar.mat-primary {
  --mat-toolbar-container-background-color: #42a5f5;
  --mat-toolbar-container-text-color: rgba(0, 0, 0, 0.87);
}
.motivatexr-theme .mat-toolbar.mat-accent {
  --mat-toolbar-container-background-color: #ffee58;
  --mat-toolbar-container-text-color: rgba(0, 0, 0, 0.87);
}
.motivatexr-theme .mat-toolbar.mat-warn {
  --mat-toolbar-container-background-color: #ff1744;
  --mat-toolbar-container-text-color: white;
}

body {
  background-color: #f7f6f9;
}

.center-me {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.center-me-without-toolbar-row {
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(100vh - 64px);
}

.login-button-icon {
  line-height: 0.9em;
}

*, ::before, ::after{
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

::backdrop{
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}
.\!container{
  width: 100% !important;
}
.container{
  width: 100%;
}
@media (min-width: 640px){
  .\!container{
    max-width: 640px !important;
  }
  .container{
    max-width: 640px;
  }
}
@media (min-width: 768px){
  .\!container{
    max-width: 768px !important;
  }
  .container{
    max-width: 768px;
  }
}
@media (min-width: 1024px){
  .\!container{
    max-width: 1024px !important;
  }
  .container{
    max-width: 1024px;
  }
}
@media (min-width: 1280px){
  .\!container{
    max-width: 1280px !important;
  }
  .container{
    max-width: 1280px;
  }
}
@media (min-width: 1536px){
  .\!container{
    max-width: 1536px !important;
  }
  .container{
    max-width: 1536px;
  }
}
.visible{
  visibility: visible !important;
}
.invisible{
  visibility: hidden !important;
}
.collapse{
  visibility: collapse !important;
}
.static{
  position: static !important;
}
.fixed{
  position: fixed !important;
}
.absolute{
  position: absolute !important;
}
.relative{
  position: relative !important;
}
.-top-11{
  top: -2.75rem !important;
}
.bottom-0\.5{
  bottom: 0.125rem !important;
}
.left-1\/2{
  left: 50% !important;
}
.top-1\/2{
  top: 50% !important;
}
.z-0{
  z-index: 0 !important;
}
.z-\[1\]{
  z-index: 1 !important;
}
.m-0{
  margin: 0px !important;
}
.m-1{
  margin: 0.25rem !important;
}
.m-auto{
  margin: auto !important;
}
.my-0{
  margin-top: 0px !important;
  margin-bottom: 0px !important;
}
.mb-0\.5{
  margin-bottom: 0.125rem !important;
}
.mb-1{
  margin-bottom: 0.25rem !important;
}
.mb-4{
  margin-bottom: 1rem !important;
}
.mb-6{
  margin-bottom: 1.5rem !important;
}
.mb-\[18px\]{
  margin-bottom: 18px !important;
}
.ml-0{
  margin-left: 0px !important;
}
.ml-2{
  margin-left: 0.5rem !important;
}
.ml-20{
  margin-left: 5rem !important;
}
.ml-4{
  margin-left: 1rem !important;
}
.ml-auto{
  margin-left: auto !important;
}
.mr-1{
  margin-right: 0.25rem !important;
}
.mr-2{
  margin-right: 0.5rem !important;
}
.mt-0{
  margin-top: 0px !important;
}
.mt-0\.5{
  margin-top: 0.125rem !important;
}
.mt-1{
  margin-top: 0.25rem !important;
}
.mt-2{
  margin-top: 0.5rem !important;
}
.mt-20{
  margin-top: 5rem !important;
}
.mt-3{
  margin-top: 0.75rem !important;
}
.mt-4{
  margin-top: 1rem !important;
}
.mt-6{
  margin-top: 1.5rem !important;
}
.mt-8{
  margin-top: 2rem !important;
}
.box-border{
  box-sizing: border-box !important;
}
.line-clamp-1{
  overflow: hidden !important;
  display: -webkit-box !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 1 !important;
}
.block{
  display: block !important;
}
.flex{
  display: flex !important;
}
.inline-flex{
  display: inline-flex !important;
}
.grid{
  display: grid !important;
}
.contents{
  display: contents !important;
}
.\!hidden{
  display: none !important;
}
.hidden{
  display: none !important;
}
.h-10{
  height: 2.5rem !important;
}
.h-12{
  height: 3rem !important;
}
.h-14{
  height: 3.5rem !important;
}
.h-16{
  height: 4rem !important;
}
.h-3\/4{
  height: 75% !important;
}
.h-44{
  height: 11rem !important;
}
.h-48{
  height: 12rem !important;
}
.h-6{
  height: 1.5rem !important;
}
.h-8{
  height: 2rem !important;
}
.h-\[100px\]{
  height: 100px !important;
}
.h-\[60\.8px\]{
  height: 60.8px !important;
}
.h-\[61px\]{
  height: 61px !important;
}
.h-auto{
  height: auto !important;
}
.h-fit{
  height: -moz-fit-content !important;
  height: fit-content !important;
}
.h-full{
  height: 100% !important;
}
.h-max{
  height: max-content !important;
}
.h-screen{
  height: 100vh !important;
}
.max-h-12{
  max-height: 3rem !important;
}
.max-h-14{
  max-height: 3.5rem !important;
}
.max-h-16{
  max-height: 4rem !important;
}
.max-h-20{
  max-height: 5rem !important;
}
.max-h-48{
  max-height: 12rem !important;
}
.max-h-6{
  max-height: 1.5rem !important;
}
.max-h-60{
  max-height: 15rem !important;
}
.max-h-96{
  max-height: 24rem !important;
}
.max-h-\[10rem\]{
  max-height: 10rem !important;
}
.max-h-\[12rem\]{
  max-height: 12rem !important;
}
.max-h-\[64px\]{
  max-height: 64px !important;
}
.max-h-\[8rem\]{
  max-height: 8rem !important;
}
.max-h-fit{
  max-height: -moz-fit-content !important;
  max-height: fit-content !important;
}
.max-h-full{
  max-height: 100% !important;
}
.min-h-0{
  min-height: 0px !important;
}
.min-h-32{
  min-height: 8rem !important;
}
.min-h-\[112px\]{
  min-height: 112px !important;
}
.min-h-\[48px\]{
  min-height: 48px !important;
}
.min-h-\[64px\]{
  min-height: 64px !important;
}
.min-h-full{
  min-height: 100% !important;
}
.w-1\/3{
  width: 33.333333% !important;
}
.w-10{
  width: 2.5rem !important;
}
.w-12{
  width: 3rem !important;
}
.w-14{
  width: 3.5rem !important;
}
.w-16{
  width: 4rem !important;
}
.w-20{
  width: 5rem !important;
}
.w-24{
  width: 6rem !important;
}
.w-3\/12{
  width: 25% !important;
}
.w-3\/5{
  width: 60% !important;
}
.w-32{
  width: 8rem !important;
}
.w-40{
  width: 10rem !important;
}
.w-52{
  width: 13rem !important;
}
.w-6{
  width: 1.5rem !important;
}
.w-8{
  width: 2rem !important;
}
.w-9\/12{
  width: 75% !important;
}
.w-\[100px\]{
  width: 100px !important;
}
.w-auto{
  width: auto !important;
}
.w-fit{
  width: -moz-fit-content !important;
  width: fit-content !important;
}
.w-full{
  width: 100% !important;
}
.w-max{
  width: max-content !important;
}
.w-min{
  width: min-content !important;
}
.min-w-0{
  min-width: 0px !important;
}
.min-w-\[150px\]{
  min-width: 150px !important;
}
.min-w-full{
  min-width: 100% !important;
}
.max-w-12{
  max-width: 3rem !important;
}
.max-w-\[10rem\]{
  max-width: 10rem !important;
}
.max-w-\[10vw\]{
  max-width: 10vw !important;
}
.max-w-\[12rem\]{
  max-width: 12rem !important;
}
.max-w-\[500px\]{
  max-width: 500px !important;
}
.max-w-\[64px\]{
  max-width: 64px !important;
}
.max-w-\[8rem\]{
  max-width: 8rem !important;
}
.max-w-\[min\(70vw\2c 24rem\)\]{
  max-width: min(70vw, 24rem) !important;
}
.max-w-full{
  max-width: 100% !important;
}
.max-w-xl{
  max-width: 36rem !important;
}
.flex-1{
  flex: 1 1 0% !important;
}
.flex-auto{
  flex: 1 1 auto !important;
}
.shrink{
  flex-shrink: 1 !important;
}
.shrink-0{
  flex-shrink: 0 !important;
}
.flex-grow{
  flex-grow: 1 !important;
}
.grow{
  flex-grow: 1 !important;
}
.grow-\[2\]{
  flex-grow: 2 !important;
}
.grow-\[3\]{
  flex-grow: 3 !important;
}
.basis-0{
  flex-basis: 0px !important;
}
.-translate-x-1\/2{
  --tw-translate-x: -50% !important;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !important;
}
.-translate-y-1\/2{
  --tw-translate-y: -50% !important;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !important;
}
.transform{
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !important;
}
.cursor-default{
  cursor: default !important;
}
.cursor-pointer{
  cursor: pointer !important;
}
.cursor-zoom-in{
  cursor: zoom-in !important;
}
.select-none{
  -webkit-user-select: none !important;
          user-select: none !important;
}
.resize{
  resize: both !important;
}
.list-none{
  list-style-type: none !important;
}
.grid-flow-row{
  grid-auto-flow: row !important;
}
.auto-rows-max{
  grid-auto-rows: max-content !important;
}
.grid-cols-1{
  grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
}
.grid-cols-2{
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}
.grid-cols-3{
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}
.grid-cols-4{
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}
.grid-cols-5{
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
}
.flex-row{
  flex-direction: row !important;
}
.flex-col{
  flex-direction: column !important;
}
.flex-wrap{
  flex-wrap: wrap !important;
}
.flex-nowrap{
  flex-wrap: nowrap !important;
}
.content-center{
  align-content: center !important;
}
.content-between{
  align-content: space-between !important;
}
.items-start{
  align-items: flex-start !important;
}
.items-end{
  align-items: flex-end !important;
}
.items-center{
  align-items: center !important;
}
.items-baseline{
  align-items: baseline !important;
}
.items-stretch{
  align-items: stretch !important;
}
.justify-start{
  justify-content: flex-start !important;
}
.justify-end{
  justify-content: flex-end !important;
}
.justify-center{
  justify-content: center !important;
}
.justify-between{
  justify-content: space-between !important;
}
.justify-stretch{
  justify-content: stretch !important;
}
.gap-1{
  gap: 0.25rem !important;
}
.gap-12{
  gap: 3rem !important;
}
.gap-2{
  gap: 0.5rem !important;
}
.gap-3{
  gap: 0.75rem !important;
}
.gap-32{
  gap: 8rem !important;
}
.gap-4{
  gap: 1rem !important;
}
.gap-6{
  gap: 1.5rem !important;
}
.gap-8{
  gap: 2rem !important;
}
.gap-\[3px\]{
  gap: 3px !important;
}
.self-center{
  align-self: center !important;
}
.overflow-auto{
  overflow: auto !important;
}
.overflow-hidden{
  overflow: hidden !important;
}
.overflow-y-auto{
  overflow-y: auto !important;
}
.overflow-x-hidden{
  overflow-x: hidden !important;
}
.truncate{
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}
.whitespace-nowrap{
  white-space: nowrap !important;
}
.break-all{
  word-break: break-all !important;
}
.rounded{
  border-radius: 0.25rem !important;
}
.rounded-full{
  border-radius: 9999px !important;
}
.rounded-lg{
  border-radius: 0.5rem !important;
}
.rounded-none{
  border-radius: 0px !important;
}
.rounded-b{
  border-bottom-right-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}
.rounded-b-lg{
  border-bottom-right-radius: 0.5rem !important;
  border-bottom-left-radius: 0.5rem !important;
}
.rounded-b-none{
  border-bottom-right-radius: 0px !important;
  border-bottom-left-radius: 0px !important;
}
.rounded-t{
  border-top-left-radius: 0.25rem !important;
  border-top-right-radius: 0.25rem !important;
}
.rounded-t-lg{
  border-top-left-radius: 0.5rem !important;
  border-top-right-radius: 0.5rem !important;
}
.rounded-t-none{
  border-top-left-radius: 0px !important;
  border-top-right-radius: 0px !important;
}
.rounded-tr-none{
  border-top-right-radius: 0px !important;
}
.border{
  border-width: 1px !important;
}
.border-0{
  border-width: 0px !important;
}
.border-4{
  border-width: 4px !important;
}
.border-y{
  border-top-width: 1px !important;
  border-bottom-width: 1px !important;
}
.border-b{
  border-bottom-width: 1px !important;
}
.border-l-4{
  border-left-width: 4px !important;
}
.border-solid{
  border-style: solid !important;
}
.border-black\/\[\.12\]{
  border-color: rgb(0 0 0 / .12) !important;
}
.border-white{
  --tw-border-opacity: 1 !important;
  border-color: rgb(255 255 255 / var(--tw-border-opacity, 1)) !important;
}
.border-t-\[\#686868\]{
  --tw-border-opacity: 1 !important;
  border-top-color: rgb(104 104 104 / var(--tw-border-opacity, 1)) !important;
}
.bg-inherit{
  background-color: inherit !important;
}
.bg-contain{
  background-size: contain !important;
}
.bg-left{
  background-position: left !important;
}
.bg-no-repeat{
  background-repeat: no-repeat !important;
}
.p-0{
  padding: 0px !important;
}
.p-1{
  padding: 0.25rem !important;
}
.p-2{
  padding: 0.5rem !important;
}
.p-4{
  padding: 1rem !important;
}
.p-6{
  padding: 1.5rem !important;
}
.p-8{
  padding: 2rem !important;
}
.px-0{
  padding-left: 0px !important;
  padding-right: 0px !important;
}
.px-2{
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
}
.px-2\.5{
  padding-left: 0.625rem !important;
  padding-right: 0.625rem !important;
}
.px-3{
  padding-left: 0.75rem !important;
  padding-right: 0.75rem !important;
}
.px-6{
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}
.py-0{
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}
.py-1{
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}
.py-2{
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
.py-3{
  padding-top: 0.75rem !important;
  padding-bottom: 0.75rem !important;
}
.py-4{
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}
.pb-0{
  padding-bottom: 0px !important;
}
.pb-1{
  padding-bottom: 0.25rem !important;
}
.pb-2{
  padding-bottom: 0.5rem !important;
}
.pb-4{
  padding-bottom: 1rem !important;
}
.pb-6{
  padding-bottom: 1.5rem !important;
}
.pl-2{
  padding-left: 0.5rem !important;
}
.pl-4{
  padding-left: 1rem !important;
}
.pl-6{
  padding-left: 1.5rem !important;
}
.pr-2{
  padding-right: 0.5rem !important;
}
.pr-2\.5{
  padding-right: 0.625rem !important;
}
.pr-3{
  padding-right: 0.75rem !important;
}
.pr-4{
  padding-right: 1rem !important;
}
.pt-0{
  padding-top: 0px !important;
}
.pt-1{
  padding-top: 0.25rem !important;
}
.pt-11{
  padding-top: 2.75rem !important;
}
.pt-2{
  padding-top: 0.5rem !important;
}
.pt-4{
  padding-top: 1rem !important;
}
.pt-6{
  padding-top: 1.5rem !important;
}
.text-left{
  text-align: left !important;
}
.text-center{
  text-align: center !important;
}
.text-right{
  text-align: right !important;
}
.text-start{
  text-align: start !important;
}
.align-top{
  vertical-align: top !important;
}
.align-middle{
  vertical-align: middle !important;
}
.text-4xl{
  font-size: 2.25rem !important;
  line-height: 2.5rem !important;
}
.text-base{
  font-size: 1rem !important;
  line-height: 1.5rem !important;
}
.text-lg{
  font-size: 1.125rem !important;
  line-height: 1.75rem !important;
}
.text-sm{
  font-size: 0.875rem !important;
  line-height: 1.25rem !important;
}
.text-xl{
  font-size: 1.25rem !important;
  line-height: 1.75rem !important;
}
.text-xs{
  font-size: 0.75rem !important;
  line-height: 1rem !important;
}
.font-bold{
  font-weight: 700 !important;
}
.font-light{
  font-weight: 300 !important;
}
.font-medium{
  font-weight: 500 !important;
}
.uppercase{
  text-transform: uppercase !important;
}
.lowercase{
  text-transform: lowercase !important;
}
.capitalize{
  text-transform: capitalize !important;
}
.leading-4{
  line-height: 1rem !important;
}
.leading-none{
  line-height: 1 !important;
}
.text-black\/\[\.54\]{
  color: rgb(0 0 0 / .54) !important;
}
.opacity-25{
  opacity: 0.25 !important;
}
.opacity-60{
  opacity: 0.6 !important;
}
.opacity-80{
  opacity: 0.8 !important;
}
.shadow{
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1) !important;
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color) !important;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
}
.shadow-none{
  --tw-shadow: 0 0 #0000 !important;
  --tw-shadow-colored: 0 0 #0000 !important;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
}
.outline{
  outline-style: solid !important;
}
.ring{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
}
.blur{
  --tw-blur: blur(8px) !important;
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow) !important;
}
.grayscale{
  --tw-grayscale: grayscale(100%) !important;
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow) !important;
}
.invert{
  --tw-invert: invert(100%) !important;
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow) !important;
}
.filter{
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow) !important;
}
.transition{
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter !important;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
  transition-duration: 150ms !important;
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("/assets/fonts/roboto/roboto-latin-300-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/roboto/roboto-latin-400-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/assets/fonts/roboto/roboto-latin-500-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Material Icons";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("/assets/fonts/material-icons/material-icons-latin-400-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Material Icons Outlined";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("/assets/fonts/material-icons-outlined/material-icons-outlined-latin-400-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Material Icons Two Tone";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("/assets/fonts/material-icons-two-tone/material-icons-two-tone-latin-400-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Material Icons Round";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("/assets/fonts/material-icons-round/material-icons-round-latin-400-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Material Icons Sharp";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("/assets/fonts/material-icons-sharp/material-icons-sharp-latin-400-normal.woff2") format("woff2");
}
.material-icons {
  font-family: "Material Icons", sans-serif !important;
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "liga";
}

.material-icons-outlined {
  font-family: "Material Icons Outlined", sans-serif !important;
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "liga";
}

.material-icons-two-tone {
  font-family: "Material Icons Two Tone", sans-serif !important;
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "liga";
}

.material-icons-round {
  font-family: "Material Icons Round", sans-serif !important;
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "liga";
}

.material-icons-sharp {
  font-family: "Material Icons Sharp", sans-serif !important;
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "liga";
}

body.dark-theme .tab-group .mat-mdc-tab, body .tab-group .mat-mdc-tab, body.light-theme .tab-group .mat-mdc-tab, body.motivatexr-theme .tab-group .mat-mdc-tab {
  color: var(--tab-bar-text-color);
  background-color: var(--tab-bar-background-color);
  min-height: 36px;
}
body.dark-theme .tab-group .mdc-tab--active, body .tab-group .mdc-tab--active, body.light-theme .tab-group .mdc-tab--active, body.motivatexr-theme .tab-group .mdc-tab--active {
  color: var(--tab-bar-active-text-color) !important;
  background-color: var(--mat-tab-active-bg);
}
body.dark-theme .tab-group .mdc-tab--active .mdc-tab__text-label, body .tab-group .mdc-tab--active .mdc-tab__text-label,
body.dark-theme .tab-group .mdc-tab--active .tab-bar-title,
body .tab-group .mdc-tab--active .tab-bar-title,
body.dark-theme .tab-group .mdc-tab--active .tab-bar-subtitle,
body .tab-group .mdc-tab--active .tab-bar-subtitle, body.light-theme .tab-group .mdc-tab--active .mdc-tab__text-label,
body.light-theme .tab-group .mdc-tab--active .tab-bar-title,
body.light-theme .tab-group .mdc-tab--active .tab-bar-subtitle, body.motivatexr-theme .tab-group .mdc-tab--active .mdc-tab__text-label,
body.motivatexr-theme .tab-group .mdc-tab--active .tab-bar-title,
body.motivatexr-theme .tab-group .mdc-tab--active .tab-bar-subtitle {
  color: var(--tab-bar-active-text-color) !important;
}
body.dark-theme .tab-group .mdc-tab--active .mat-icon, body .tab-group .mdc-tab--active .mat-icon, body.light-theme .tab-group .mdc-tab--active .mat-icon, body.motivatexr-theme .tab-group .mdc-tab--active .mat-icon {
  color: var(--tab-bar-selected-color) !important;
}
body.dark-theme .tab-group mat-tab-group.mat-mdc-tab-group.mat-primary, body .tab-group mat-tab-group.mat-mdc-tab-group.mat-primary, body.light-theme .tab-group mat-tab-group.mat-mdc-tab-group.mat-primary, body.motivatexr-theme .tab-group mat-tab-group.mat-mdc-tab-group.mat-primary {
  background-color: transparent !important;
}
body.dark-theme .tab-group mat-tab-group.mat-mdc-tab-group.mat-primary .mdc-tab-indicator__content--underline, body .tab-group mat-tab-group.mat-mdc-tab-group.mat-primary .mdc-tab-indicator__content--underline, body.light-theme .tab-group mat-tab-group.mat-mdc-tab-group.mat-primary .mdc-tab-indicator__content--underline, body.motivatexr-theme .tab-group mat-tab-group.mat-mdc-tab-group.mat-primary .mdc-tab-indicator__content--underline {
  border-top-style: solid !important;
  border-top-width: 2px !important;
  border-top-color: var(--mat-tab-ink-bar) !important;
  background-color: transparent !important;
}
body.dark-theme .tab-group__white-selection .mdc-tab--active, body .tab-group__white-selection .mdc-tab--active, body.light-theme .tab-group__white-selection .mdc-tab--active, body.motivatexr-theme .tab-group__white-selection .mdc-tab--active {
  color: #000;
  background-color: #ffffff;
}
body.dark-theme .tab-group__white-selection .mdc-tab--active .mdc-tab__text-label, body .tab-group__white-selection .mdc-tab--active .mdc-tab__text-label,
body.dark-theme .tab-group__white-selection .mdc-tab--active .tab-bar-title,
body .tab-group__white-selection .mdc-tab--active .tab-bar-title,
body.dark-theme .tab-group__white-selection .mdc-tab--active .tab-bar-subtitle,
body .tab-group__white-selection .mdc-tab--active .tab-bar-subtitle,
body.dark-theme .tab-group__white-selection .mdc-tab--active .mat-icon,
body .tab-group__white-selection .mdc-tab--active .mat-icon, body.light-theme .tab-group__white-selection .mdc-tab--active .mdc-tab__text-label,
body.light-theme .tab-group__white-selection .mdc-tab--active .tab-bar-title,
body.light-theme .tab-group__white-selection .mdc-tab--active .tab-bar-subtitle,
body.light-theme .tab-group__white-selection .mdc-tab--active .mat-icon, body.motivatexr-theme .tab-group__white-selection .mdc-tab--active .mdc-tab__text-label,
body.motivatexr-theme .tab-group__white-selection .mdc-tab--active .tab-bar-title,
body.motivatexr-theme .tab-group__white-selection .mdc-tab--active .tab-bar-subtitle,
body.motivatexr-theme .tab-group__white-selection .mdc-tab--active .mat-icon {
  color: #000 !important;
}
body.dark-theme .tab-group__white-selection mat-tab-group.mat-mdc-tab-group.mat-primary, body .tab-group__white-selection mat-tab-group.mat-mdc-tab-group.mat-primary, body.light-theme .tab-group__white-selection mat-tab-group.mat-mdc-tab-group.mat-primary, body.motivatexr-theme .tab-group__white-selection mat-tab-group.mat-mdc-tab-group.mat-primary {
  background-color: transparent !important;
  opacity: 1;
}
body.dark-theme .tab-group__white-selection mat-tab-group.mat-mdc-tab-group.mat-primary .mdc-tab-indicator__content--underline, body .tab-group__white-selection mat-tab-group.mat-mdc-tab-group.mat-primary .mdc-tab-indicator__content--underline, body.light-theme .tab-group__white-selection mat-tab-group.mat-mdc-tab-group.mat-primary .mdc-tab-indicator__content--underline, body.motivatexr-theme .tab-group__white-selection mat-tab-group.mat-mdc-tab-group.mat-primary .mdc-tab-indicator__content--underline {
  border-top-color: #ffffff !important;
  opacity: 1;
}
body.dark-theme .secondary-tab-group.mat-mdc-tab-group.mat-primary, body .secondary-tab-group.mat-mdc-tab-group.mat-primary,
body.dark-theme .question-main-tab-group.mat-mdc-tab-group.mat-primary,
body .question-main-tab-group.mat-mdc-tab-group.mat-primary,
body.dark-theme .question-answers-tab-group.mat-mdc-tab-group.mat-primary,
body .question-answers-tab-group.mat-mdc-tab-group.mat-primary,
body.dark-theme .answer-tab-group.mat-mdc-tab-group.mat-primary,
body .answer-tab-group.mat-mdc-tab-group.mat-primary,
body.dark-theme .options-tab-group.mat-mdc-tab-group.mat-primary,
body .options-tab-group.mat-mdc-tab-group.mat-primary, body.light-theme .secondary-tab-group.mat-mdc-tab-group.mat-primary,
body.light-theme .question-main-tab-group.mat-mdc-tab-group.mat-primary,
body.light-theme .question-answers-tab-group.mat-mdc-tab-group.mat-primary,
body.light-theme .answer-tab-group.mat-mdc-tab-group.mat-primary,
body.light-theme .options-tab-group.mat-mdc-tab-group.mat-primary, body.motivatexr-theme .secondary-tab-group.mat-mdc-tab-group.mat-primary,
body.motivatexr-theme .question-main-tab-group.mat-mdc-tab-group.mat-primary,
body.motivatexr-theme .question-answers-tab-group.mat-mdc-tab-group.mat-primary,
body.motivatexr-theme .answer-tab-group.mat-mdc-tab-group.mat-primary,
body.motivatexr-theme .options-tab-group.mat-mdc-tab-group.mat-primary {
  background-color: transparent !important;
}
body.dark-theme .secondary-tab-group .mat-mdc-tab-header, body .secondary-tab-group .mat-mdc-tab-header,
body.dark-theme .question-main-tab-group .mat-mdc-tab-header,
body .question-main-tab-group .mat-mdc-tab-header,
body.dark-theme .question-answers-tab-group .mat-mdc-tab-header,
body .question-answers-tab-group .mat-mdc-tab-header,
body.dark-theme .answer-tab-group .mat-mdc-tab-header,
body .answer-tab-group .mat-mdc-tab-header,
body.dark-theme .options-tab-group .mat-mdc-tab-header,
body .options-tab-group .mat-mdc-tab-header, body.light-theme .secondary-tab-group .mat-mdc-tab-header,
body.light-theme .question-main-tab-group .mat-mdc-tab-header,
body.light-theme .question-answers-tab-group .mat-mdc-tab-header,
body.light-theme .answer-tab-group .mat-mdc-tab-header,
body.light-theme .options-tab-group .mat-mdc-tab-header, body.motivatexr-theme .secondary-tab-group .mat-mdc-tab-header,
body.motivatexr-theme .question-main-tab-group .mat-mdc-tab-header,
body.motivatexr-theme .question-answers-tab-group .mat-mdc-tab-header,
body.motivatexr-theme .answer-tab-group .mat-mdc-tab-header,
body.motivatexr-theme .options-tab-group .mat-mdc-tab-header {
  border-bottom-color: #686868 !important;
}
body.dark-theme .secondary-tab-group.mat-mdc-tab-group.mat-mdc-tab-group-stretch-tabs > .mat-mdc-tab-header .mat-mdc-tab.mdc-tab, body .secondary-tab-group.mat-mdc-tab-group.mat-mdc-tab-group-stretch-tabs > .mat-mdc-tab-header .mat-mdc-tab.mdc-tab,
body.dark-theme .question-main-tab-group.mat-mdc-tab-group.mat-mdc-tab-group-stretch-tabs > .mat-mdc-tab-header .mat-mdc-tab.mdc-tab,
body .question-main-tab-group.mat-mdc-tab-group.mat-mdc-tab-group-stretch-tabs > .mat-mdc-tab-header .mat-mdc-tab.mdc-tab,
body.dark-theme .question-answers-tab-group.mat-mdc-tab-group.mat-mdc-tab-group-stretch-tabs > .mat-mdc-tab-header .mat-mdc-tab.mdc-tab,
body .question-answers-tab-group.mat-mdc-tab-group.mat-mdc-tab-group-stretch-tabs > .mat-mdc-tab-header .mat-mdc-tab.mdc-tab,
body.dark-theme .answer-tab-group.mat-mdc-tab-group.mat-mdc-tab-group-stretch-tabs > .mat-mdc-tab-header .mat-mdc-tab.mdc-tab,
body .answer-tab-group.mat-mdc-tab-group.mat-mdc-tab-group-stretch-tabs > .mat-mdc-tab-header .mat-mdc-tab.mdc-tab,
body.dark-theme .options-tab-group.mat-mdc-tab-group.mat-mdc-tab-group-stretch-tabs > .mat-mdc-tab-header .mat-mdc-tab.mdc-tab,
body .options-tab-group.mat-mdc-tab-group.mat-mdc-tab-group-stretch-tabs > .mat-mdc-tab-header .mat-mdc-tab.mdc-tab, body.light-theme .secondary-tab-group.mat-mdc-tab-group.mat-mdc-tab-group-stretch-tabs > .mat-mdc-tab-header .mat-mdc-tab.mdc-tab,
body.light-theme .question-main-tab-group.mat-mdc-tab-group.mat-mdc-tab-group-stretch-tabs > .mat-mdc-tab-header .mat-mdc-tab.mdc-tab,
body.light-theme .question-answers-tab-group.mat-mdc-tab-group.mat-mdc-tab-group-stretch-tabs > .mat-mdc-tab-header .mat-mdc-tab.mdc-tab,
body.light-theme .answer-tab-group.mat-mdc-tab-group.mat-mdc-tab-group-stretch-tabs > .mat-mdc-tab-header .mat-mdc-tab.mdc-tab,
body.light-theme .options-tab-group.mat-mdc-tab-group.mat-mdc-tab-group-stretch-tabs > .mat-mdc-tab-header .mat-mdc-tab.mdc-tab, body.motivatexr-theme .secondary-tab-group.mat-mdc-tab-group.mat-mdc-tab-group-stretch-tabs > .mat-mdc-tab-header .mat-mdc-tab.mdc-tab,
body.motivatexr-theme .question-main-tab-group.mat-mdc-tab-group.mat-mdc-tab-group-stretch-tabs > .mat-mdc-tab-header .mat-mdc-tab.mdc-tab,
body.motivatexr-theme .question-answers-tab-group.mat-mdc-tab-group.mat-mdc-tab-group-stretch-tabs > .mat-mdc-tab-header .mat-mdc-tab.mdc-tab,
body.motivatexr-theme .answer-tab-group.mat-mdc-tab-group.mat-mdc-tab-group-stretch-tabs > .mat-mdc-tab-header .mat-mdc-tab.mdc-tab,
body.motivatexr-theme .options-tab-group.mat-mdc-tab-group.mat-mdc-tab-group-stretch-tabs > .mat-mdc-tab-header .mat-mdc-tab.mdc-tab {
  flex-grow: 0 !important;
}
body.dark-theme .secondary-tab-group > .mat-mdc-tab-header .mat-mdc-tab.mdc-tab, body .secondary-tab-group > .mat-mdc-tab-header .mat-mdc-tab.mdc-tab,
body.dark-theme .question-main-tab-group > .mat-mdc-tab-header .mat-mdc-tab.mdc-tab,
body .question-main-tab-group > .mat-mdc-tab-header .mat-mdc-tab.mdc-tab,
body.dark-theme .question-answers-tab-group > .mat-mdc-tab-header .mat-mdc-tab.mdc-tab,
body .question-answers-tab-group > .mat-mdc-tab-header .mat-mdc-tab.mdc-tab,
body.dark-theme .answer-tab-group > .mat-mdc-tab-header .mat-mdc-tab.mdc-tab,
body .answer-tab-group > .mat-mdc-tab-header .mat-mdc-tab.mdc-tab,
body.dark-theme .options-tab-group > .mat-mdc-tab-header .mat-mdc-tab.mdc-tab,
body .options-tab-group > .mat-mdc-tab-header .mat-mdc-tab.mdc-tab, body.light-theme .secondary-tab-group > .mat-mdc-tab-header .mat-mdc-tab.mdc-tab,
body.light-theme .question-main-tab-group > .mat-mdc-tab-header .mat-mdc-tab.mdc-tab,
body.light-theme .question-answers-tab-group > .mat-mdc-tab-header .mat-mdc-tab.mdc-tab,
body.light-theme .answer-tab-group > .mat-mdc-tab-header .mat-mdc-tab.mdc-tab,
body.light-theme .options-tab-group > .mat-mdc-tab-header .mat-mdc-tab.mdc-tab, body.motivatexr-theme .secondary-tab-group > .mat-mdc-tab-header .mat-mdc-tab.mdc-tab,
body.motivatexr-theme .question-main-tab-group > .mat-mdc-tab-header .mat-mdc-tab.mdc-tab,
body.motivatexr-theme .question-answers-tab-group > .mat-mdc-tab-header .mat-mdc-tab.mdc-tab,
body.motivatexr-theme .answer-tab-group > .mat-mdc-tab-header .mat-mdc-tab.mdc-tab,
body.motivatexr-theme .options-tab-group > .mat-mdc-tab-header .mat-mdc-tab.mdc-tab {
  height: 36px;
  min-height: 36px;
  max-height: 36px;
  box-sizing: border-box;
  padding: 0 12px;
}
body.dark-theme .secondary-tab-group .mdc-tab__text-label, body .secondary-tab-group .mdc-tab__text-label,
body.dark-theme .question-main-tab-group .mdc-tab__text-label,
body .question-main-tab-group .mdc-tab__text-label,
body.dark-theme .question-answers-tab-group .mdc-tab__text-label,
body .question-answers-tab-group .mdc-tab__text-label,
body.dark-theme .answer-tab-group .mdc-tab__text-label,
body .answer-tab-group .mdc-tab__text-label,
body.dark-theme .options-tab-group .mdc-tab__text-label,
body .options-tab-group .mdc-tab__text-label, body.light-theme .secondary-tab-group .mdc-tab__text-label,
body.light-theme .question-main-tab-group .mdc-tab__text-label,
body.light-theme .question-answers-tab-group .mdc-tab__text-label,
body.light-theme .answer-tab-group .mdc-tab__text-label,
body.light-theme .options-tab-group .mdc-tab__text-label, body.motivatexr-theme .secondary-tab-group .mdc-tab__text-label,
body.motivatexr-theme .question-main-tab-group .mdc-tab__text-label,
body.motivatexr-theme .question-answers-tab-group .mdc-tab__text-label,
body.motivatexr-theme .answer-tab-group .mdc-tab__text-label,
body.motivatexr-theme .options-tab-group .mdc-tab__text-label {
  color: var(--text-disabled) !important;
  background-color: transparent !important;
}
body.dark-theme .secondary-tab-group .mdc-tab--active.mat-mdc-tab, body .secondary-tab-group .mdc-tab--active.mat-mdc-tab,
body.dark-theme .question-main-tab-group .mdc-tab--active.mat-mdc-tab,
body .question-main-tab-group .mdc-tab--active.mat-mdc-tab,
body.dark-theme .question-answers-tab-group .mdc-tab--active.mat-mdc-tab,
body .question-answers-tab-group .mdc-tab--active.mat-mdc-tab,
body.dark-theme .answer-tab-group .mdc-tab--active.mat-mdc-tab,
body .answer-tab-group .mdc-tab--active.mat-mdc-tab,
body.dark-theme .options-tab-group .mdc-tab--active.mat-mdc-tab,
body .options-tab-group .mdc-tab--active.mat-mdc-tab, body.light-theme .secondary-tab-group .mdc-tab--active.mat-mdc-tab,
body.light-theme .question-main-tab-group .mdc-tab--active.mat-mdc-tab,
body.light-theme .question-answers-tab-group .mdc-tab--active.mat-mdc-tab,
body.light-theme .answer-tab-group .mdc-tab--active.mat-mdc-tab,
body.light-theme .options-tab-group .mdc-tab--active.mat-mdc-tab, body.motivatexr-theme .secondary-tab-group .mdc-tab--active.mat-mdc-tab,
body.motivatexr-theme .question-main-tab-group .mdc-tab--active.mat-mdc-tab,
body.motivatexr-theme .question-answers-tab-group .mdc-tab--active.mat-mdc-tab,
body.motivatexr-theme .answer-tab-group .mdc-tab--active.mat-mdc-tab,
body.motivatexr-theme .options-tab-group .mdc-tab--active.mat-mdc-tab {
  background-color: var(--mat-tab-active-bg) !important;
  color: var(--tab-bar-active-text-color) !important;
}
body.dark-theme .secondary-tab-group .mdc-tab--active .mdc-tab__text-label, body .secondary-tab-group .mdc-tab--active .mdc-tab__text-label,
body.dark-theme .question-main-tab-group .mdc-tab--active .mdc-tab__text-label,
body .question-main-tab-group .mdc-tab--active .mdc-tab__text-label,
body.dark-theme .question-answers-tab-group .mdc-tab--active .mdc-tab__text-label,
body .question-answers-tab-group .mdc-tab--active .mdc-tab__text-label,
body.dark-theme .answer-tab-group .mdc-tab--active .mdc-tab__text-label,
body .answer-tab-group .mdc-tab--active .mdc-tab__text-label,
body.dark-theme .options-tab-group .mdc-tab--active .mdc-tab__text-label,
body .options-tab-group .mdc-tab--active .mdc-tab__text-label, body.light-theme .secondary-tab-group .mdc-tab--active .mdc-tab__text-label,
body.light-theme .question-main-tab-group .mdc-tab--active .mdc-tab__text-label,
body.light-theme .question-answers-tab-group .mdc-tab--active .mdc-tab__text-label,
body.light-theme .answer-tab-group .mdc-tab--active .mdc-tab__text-label,
body.light-theme .options-tab-group .mdc-tab--active .mdc-tab__text-label, body.motivatexr-theme .secondary-tab-group .mdc-tab--active .mdc-tab__text-label,
body.motivatexr-theme .question-main-tab-group .mdc-tab--active .mdc-tab__text-label,
body.motivatexr-theme .question-answers-tab-group .mdc-tab--active .mdc-tab__text-label,
body.motivatexr-theme .answer-tab-group .mdc-tab--active .mdc-tab__text-label,
body.motivatexr-theme .options-tab-group .mdc-tab--active .mdc-tab__text-label {
  color: var(--tab-bar-active-text-color) !important;
}
body.dark-theme .secondary-tab-group .mdc-tab--active .mat-icon, body .secondary-tab-group .mdc-tab--active .mat-icon,
body.dark-theme .question-main-tab-group .mdc-tab--active .mat-icon,
body .question-main-tab-group .mdc-tab--active .mat-icon,
body.dark-theme .question-answers-tab-group .mdc-tab--active .mat-icon,
body .question-answers-tab-group .mdc-tab--active .mat-icon,
body.dark-theme .answer-tab-group .mdc-tab--active .mat-icon,
body .answer-tab-group .mdc-tab--active .mat-icon,
body.dark-theme .options-tab-group .mdc-tab--active .mat-icon,
body .options-tab-group .mdc-tab--active .mat-icon, body.light-theme .secondary-tab-group .mdc-tab--active .mat-icon,
body.light-theme .question-main-tab-group .mdc-tab--active .mat-icon,
body.light-theme .question-answers-tab-group .mdc-tab--active .mat-icon,
body.light-theme .answer-tab-group .mdc-tab--active .mat-icon,
body.light-theme .options-tab-group .mdc-tab--active .mat-icon, body.motivatexr-theme .secondary-tab-group .mdc-tab--active .mat-icon,
body.motivatexr-theme .question-main-tab-group .mdc-tab--active .mat-icon,
body.motivatexr-theme .question-answers-tab-group .mdc-tab--active .mat-icon,
body.motivatexr-theme .answer-tab-group .mdc-tab--active .mat-icon,
body.motivatexr-theme .options-tab-group .mdc-tab--active .mat-icon {
  color: var(--tab-bar-selected-color) !important;
}
body.dark-theme .secondary-tab-group .mdc-tab-indicator__content--underline, body .secondary-tab-group .mdc-tab-indicator__content--underline,
body.dark-theme .question-main-tab-group .mdc-tab-indicator__content--underline,
body .question-main-tab-group .mdc-tab-indicator__content--underline,
body.dark-theme .question-answers-tab-group .mdc-tab-indicator__content--underline,
body .question-answers-tab-group .mdc-tab-indicator__content--underline,
body.dark-theme .answer-tab-group .mdc-tab-indicator__content--underline,
body .answer-tab-group .mdc-tab-indicator__content--underline,
body.dark-theme .options-tab-group .mdc-tab-indicator__content--underline,
body .options-tab-group .mdc-tab-indicator__content--underline, body.light-theme .secondary-tab-group .mdc-tab-indicator__content--underline,
body.light-theme .question-main-tab-group .mdc-tab-indicator__content--underline,
body.light-theme .question-answers-tab-group .mdc-tab-indicator__content--underline,
body.light-theme .answer-tab-group .mdc-tab-indicator__content--underline,
body.light-theme .options-tab-group .mdc-tab-indicator__content--underline, body.motivatexr-theme .secondary-tab-group .mdc-tab-indicator__content--underline,
body.motivatexr-theme .question-main-tab-group .mdc-tab-indicator__content--underline,
body.motivatexr-theme .question-answers-tab-group .mdc-tab-indicator__content--underline,
body.motivatexr-theme .answer-tab-group .mdc-tab-indicator__content--underline,
body.motivatexr-theme .options-tab-group .mdc-tab-indicator__content--underline {
  border-top-style: solid !important;
  border-top-width: 2px !important;
  border-top-color: var(--mat-tab-ink-bar, var(--tab-bar-selected-color)) !important;
  background-color: transparent !important;
}
body.dark-theme .mdc-form-field .mdc-label, body .mdc-form-field .mdc-label, body.light-theme .mdc-form-field .mdc-label, body.motivatexr-theme .mdc-form-field .mdc-label {
  color: var(--mat-checkbox-label-color) !important;
}
body.dark-theme .mdc-checkbox__background, body .mdc-checkbox__background, body.light-theme .mdc-checkbox__background, body.motivatexr-theme .mdc-checkbox__background {
  border-color: var(--mat-checkbox-frame-color) !important;
}
body.dark-theme .cdk-overlay-container .cdk-global-overlay-wrapper .mat-mdc-dialog-container:not(.fullscreen) .mdc-dialog__surface, body .cdk-overlay-container .cdk-global-overlay-wrapper .mat-mdc-dialog-container:not(.fullscreen) .mdc-dialog__surface, body.light-theme .cdk-overlay-container .cdk-global-overlay-wrapper .mat-mdc-dialog-container:not(.fullscreen) .mdc-dialog__surface, body.motivatexr-theme .cdk-overlay-container .cdk-global-overlay-wrapper .mat-mdc-dialog-container:not(.fullscreen) .mdc-dialog__surface {
  background-color: var(--mat-dialog-bg) !important;
  color: var(--mat-dialog-text) !important;
}
body.dark-theme .cdk-overlay-container .cdk-global-overlay-wrapper .mat-mdc-dialog-container:not(.fullscreen) .mdc-dialog__surface input.mat-mdc-input-element, body .cdk-overlay-container .cdk-global-overlay-wrapper .mat-mdc-dialog-container:not(.fullscreen) .mdc-dialog__surface input.mat-mdc-input-element, body.light-theme .cdk-overlay-container .cdk-global-overlay-wrapper .mat-mdc-dialog-container:not(.fullscreen) .mdc-dialog__surface input.mat-mdc-input-element, body.motivatexr-theme .cdk-overlay-container .cdk-global-overlay-wrapper .mat-mdc-dialog-container:not(.fullscreen) .mdc-dialog__surface input.mat-mdc-input-element {
  color: var(--mat-dialog-text) !important;
}
body.dark-theme .mat-mdc-dialog-container input.mat-mdc-input-element, body .mat-mdc-dialog-container input.mat-mdc-input-element, body.light-theme .mat-mdc-dialog-container input.mat-mdc-input-element, body.motivatexr-theme .mat-mdc-dialog-container input.mat-mdc-input-element {
  background-color: var(--mat-dialog-input-bg) !important;
}
body.dark-theme .mat-mdc-dialog-container input.mat-mdc-input-element:-webkit-autofill, body .mat-mdc-dialog-container input.mat-mdc-input-element:-webkit-autofill,
body.dark-theme .mat-mdc-dialog-container input.mat-mdc-input-element:-webkit-autofill:hover,
body.dark-theme .mat-mdc-dialog-container input.mat-mdc-input-element:-webkit-autofill:focus,
body.dark-theme .mat-mdc-dialog-container input.mat-mdc-input-element:-webkit-autofill:active, body.light-theme .mat-mdc-dialog-container input.mat-mdc-input-element:-webkit-autofill,
body.light-theme .mat-mdc-dialog-container input.mat-mdc-input-element:-webkit-autofill:hover,
body.light-theme .mat-mdc-dialog-container input.mat-mdc-input-element:-webkit-autofill:focus,
body.light-theme .mat-mdc-dialog-container input.mat-mdc-input-element:-webkit-autofill:active, body.motivatexr-theme .mat-mdc-dialog-container input.mat-mdc-input-element:-webkit-autofill,
body.motivatexr-theme .mat-mdc-dialog-container input.mat-mdc-input-element:-webkit-autofill:hover,
body.motivatexr-theme .mat-mdc-dialog-container input.mat-mdc-input-element:-webkit-autofill:focus,
body.motivatexr-theme .mat-mdc-dialog-container input.mat-mdc-input-element:-webkit-autofill:active {
  -webkit-text-fill-color: var(--mat-dialog-autofill-text) !important;
  -webkit-background-clip: text;
  caret-color: var(--mat-dialog-autofill-text);
}

.mat-mdc-button > .mat-icon,
.mat-mdc-raised-button > .mat-icon,
.mat-mdc-outlined-button > .mat-icon,
.mat-mdc-unelevated-button > .mat-icon,
.mat-mdc-icon-button > .mat-icon {
  font-size: 24px !important;
  height: 24px !important;
  width: 24px !important;
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.mat-mdc-button.mat-mdc-button-base:not(.mat-mdc-icon-button):not(.mat-mdc-fab):not(.mat-mdc-mini-fab),
.mat-mdc-outlined-button.mat-mdc-button-base:not(.mat-mdc-icon-button) {
  min-height: 36px;
  --mdc-text-button-container-height: 36px;
  --mdc-outlined-button-container-height: 36px;
}

.mat-mdc-unelevated-button.mat-mdc-button-base:not(.mat-mdc-icon-button),
.mat-mdc-raised-button.mat-mdc-button-base:not(.mat-mdc-icon-button) {
  min-height: 36px;
  --mdc-filled-button-container-height: 36px;
  --mdc-protected-button-container-height: 36px;
}

.mat-mdc-button-base:not(.mat-mdc-icon-button):not(.mat-mdc-fab):not(.mat-mdc-mini-fab) .mdc-button__label {
  line-height: 14px;
}

:root {
  --mdc-plain-tooltip-container-color: rgba(97, 97, 97, 0.9);
  --mdc-plain-tooltip-supporting-text-color: #fff;
  --mdc-plain-tooltip-supporting-text-font: Roboto, "Helvetica Neue", sans-serif;
  --mdc-plain-tooltip-supporting-text-size: 10px;
  --mdc-plain-tooltip-supporting-text-line-height: 14px;
  --mdc-plain-tooltip-container-shape: 4px;
}

.mat-mdc-card.mdc-card {
  background-color: var(--surface-panel);
  color: var(--text-primary);
  box-shadow: 0 2px 1px -1px rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 1px 3px 0 rgba(0, 0, 0, 0.12);
}
.mat-mdc-card.mdc-card .mat-mdc-card-content {
  padding: 0;
}

body.dark-theme .mat-mdc-menu-panel, body .mat-mdc-menu-panel, body.light-theme .mat-mdc-menu-panel, body.motivatexr-theme .mat-mdc-menu-panel {
  background: var(--surface-panel);
  color: var(--text-primary);
}

body.motivatexr-theme .mat-mdc-select-panel, body.motivatexr-theme .mat-mdc-menu-panel {
  background: #6e6e6e;
  color: #ffffff;
}

body.dark-theme, body, body.light-theme, body.motivatexr-theme {
  --mdc-dialog-container-color: var(--mat-dialog-bg);
  --mdc-dialog-container-shape: 4px;
  --mdc-dialog-subhead-color: var(--mat-dialog-text);
  --mdc-dialog-subhead-font: Roboto, "Helvetica Neue", sans-serif;
  --mdc-dialog-subhead-size: 20px;
  --mdc-dialog-subhead-weight: 500;
  --mdc-dialog-subhead-line-height: 32px;
  --mdc-dialog-subhead-tracking: normal;
  --mdc-dialog-supporting-text-color: var(--mat-dialog-text);
  --mdc-dialog-supporting-text-font: Roboto, "Helvetica Neue", sans-serif;
  --mdc-dialog-supporting-text-size: 14px;
  --mdc-dialog-supporting-text-weight: 400;
  --mdc-dialog-supporting-text-line-height: 20px;
  --mdc-dialog-supporting-text-tracking: 0.0178571429em;
}

.mat-mdc-dialog-title.mdc-dialog__title {
  margin: 0 0 20px !important;
  padding: 0 24px !important;
}
.mat-mdc-dialog-title.mdc-dialog__title::before {
  display: none !important;
}

.mat-mdc-dialog-container:not(.fullscreen) {
  min-width: 280px !important;
  height: auto !important;
}

.mat-mdc-dialog-container:not(.fullscreen) .mdc-dialog__container {
  height: auto !important;
  flex-direction: column !important;
  align-items: stretch !important;
  justify-content: flex-start !important;
}

.mat-mdc-dialog-container:not(.fullscreen) .mdc-dialog__surface > *:not(.mat-mdc-dialog-actions) {
  display: block !important;
  width: 100%;
  box-sizing: border-box;
}

.mat-mdc-dialog-container:not(.fullscreen) .mdc-dialog__surface {
  box-sizing: border-box;
  padding: 24px;
  min-width: 280px !important;
  height: auto !important;
  flex: 0 0 auto !important;
  border-radius: 4px;
}
.mat-mdc-dialog-container:not(.fullscreen) .mdc-dialog__surface .mat-mdc-dialog-title.mdc-dialog__title {
  padding: 0 !important;
}
.mat-mdc-dialog-container:not(.fullscreen) .mdc-dialog__surface .mat-mdc-dialog-content.mdc-dialog__content {
  padding: 0 !important;
  max-height: unset;
}

.cdk-overlay-container .cdk-overlay-pane:not(.spinner-active):not(.tiwp-spinner-overlay-pane):not(.tiwp-dialog-fullbleed):not(.tiwp-message-dialog-pane):has(.mat-mdc-dialog-container) {
  min-width: 280px !important;
  min-height: 160px !important;
}

.cdk-overlay-container .cdk-overlay-pane.tiwp-message-dialog-pane {
  min-width: 0 !important;
  min-height: 0 !important;
  width: auto !important;
  max-width: min(90vw, 36rem) !important;
}

.cdk-overlay-container .cdk-overlay-pane.tiwp-message-dialog-pane .mat-mdc-dialog-container:not(.fullscreen) {
  min-width: 0 !important;
  width: auto !important;
  max-width: min(90vw, 36rem);
}

.cdk-overlay-container .cdk-overlay-pane.tiwp-message-dialog-pane .mat-mdc-dialog-container:not(.fullscreen) .mdc-dialog__surface {
  min-width: 0 !important;
  width: auto !important;
  max-width: min(90vw, 36rem) !important;
  height: auto !important;
}

.cdk-overlay-container .cdk-overlay-pane.tiwp-message-dialog-pane .mat-mdc-dialog-container:not(.fullscreen) .mat-mdc-dialog-content.mdc-dialog__content {
  min-height: 0 !important;
  max-height: 90vh;
  overflow: auto !important;
  overflow-wrap: break-word;
  word-break: break-word;
  white-space: pre-wrap;
}

.mat-mdc-dialog-container:not(.fullscreen) .mat-mdc-dialog-content.mdc-dialog__content {
  display: block !important;
  overflow: visible !important;
  min-height: 5rem !important;
}

.mat-mdc-dialog-container:not(.fullscreen) .mat-mdc-dialog-content.mdc-dialog__content.tiwp-mat-dialog-content--flex-center {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100%;
  box-sizing: border-box;
}

.mat-mdc-dialog-container:not(.fullscreen) .mat-mdc-dialog-actions.mdc-dialog__actions {
  display: flex !important;
  flex-direction: row;
  flex-wrap: wrap !important;
  align-items: center;
  gap: 8px;
  padding: 12px 0 0 !important;
  min-height: 48px !important;
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  overflow: visible !important;
}

.mat-mdc-dialog-container:not(.fullscreen) .mat-mdc-dialog-actions.mdc-dialog__actions .mat-mdc-button-base {
  flex-shrink: 0;
}

.mat-mdc-dialog-container.fullscreen .mdc-dialog__surface {
  padding: 0 !important;
  min-width: 0 !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  max-width: none !important;
  flex: none !important;
}

.mat-mdc-dialog-container.fullscreen .mat-mdc-dialog-content.mdc-dialog__content {
  display: flex !important;
  overflow: hidden !important;
  min-height: 0 !important;
  align-items: center !important;
  justify-content: center !important;
}

.cdk-overlay-pane.tiwp-dialog-fullbleed .mat-mdc-dialog-container:not(.fullscreen) .mdc-dialog__surface {
  padding: 0 !important;
  overflow-x: visible !important;
}

:root {
  --mdc-filled-text-field-label-text-font: Roboto, "Helvetica Neue", sans-serif;
  --mdc-filled-text-field-label-text-size: 16px;
  --mdc-filled-text-field-label-text-weight: 400;
  --mdc-filled-text-field-label-text-tracking: 0.03125em;
  --mdc-filled-text-field-container-text-font: Roboto, "Helvetica Neue", sans-serif;
  --mdc-filled-text-field-container-text-size: 14px;
  --mdc-filled-text-field-container-text-weight: 400;
  --mdc-filled-text-field-container-text-tracking: 0.03125em;
  --mat-form-field-container-text-font: Roboto, "Helvetica Neue", sans-serif;
  --mat-form-field-container-text-size: 14px;
  --mat-form-field-container-text-weight: 400;
  --mat-form-field-container-text-line-height: 20px;
  --mat-form-field-container-text-tracking: 0.03125em;
}

.mat-mdc-text-field-wrapper:not(.mdc-text-field--outlined) .mat-mdc-form-field-infix {
  padding-bottom: 2px !important;
}

.mat-mdc-form-field-bottom-align::before {
  display: none !important;
}

.mat-mdc-form-field-type-mat-input .mat-mdc-floating-label:not(.mdc-floating-label--float-above) {
  font-size: 14px !important;
}

.mat-mdc-form-field-type-mat-select .mat-mdc-floating-label:not(.mdc-floating-label--float-above),
.mat-mdc-form-field-type-mat-mdc-select .mat-mdc-floating-label:not(.mdc-floating-label--float-above),
.mat-mdc-form-field-type-mat-date-range-input .mat-mdc-floating-label:not(.mdc-floating-label--float-above) {
  transform: translateY(-106%) scale(0.75) !important;
  overflow: visible !important;
}

body.dark-theme .mat-mdc-option, body .mat-mdc-option, body.light-theme .mat-mdc-option, body.motivatexr-theme .mat-mdc-option {
  color: var(--common-select-panel-text) !important;
}
body.dark-theme .mat-mdc-option .mdc-list-item__primary-text, body .mat-mdc-option .mdc-list-item__primary-text, body.light-theme .mat-mdc-option .mdc-list-item__primary-text, body.motivatexr-theme .mat-mdc-option .mdc-list-item__primary-text {
  color: inherit !important;
}
body.dark-theme .mat-mdc-option:hover:not(.mdc-list-item--disabled), body .mat-mdc-option:hover:not(.mdc-list-item--disabled), body.light-theme .mat-mdc-option:hover:not(.mdc-list-item--disabled), body.motivatexr-theme .mat-mdc-option:hover:not(.mdc-list-item--disabled) {
  background-color: var(--option-hover-bg) !important;
}
body.dark-theme .mat-mdc-option:focus:not(.mdc-list-item--disabled), body .mat-mdc-option:focus:not(.mdc-list-item--disabled), body.dark-theme .mat-mdc-option.mat-mdc-option-active:not(.mdc-list-item--disabled), body .mat-mdc-option.mat-mdc-option-active:not(.mdc-list-item--disabled), body.light-theme .mat-mdc-option:focus:not(.mdc-list-item--disabled), body.light-theme .mat-mdc-option.mat-mdc-option-active:not(.mdc-list-item--disabled), body.motivatexr-theme .mat-mdc-option:focus:not(.mdc-list-item--disabled), body.motivatexr-theme .mat-mdc-option.mat-mdc-option-active:not(.mdc-list-item--disabled) {
  background-color: var(--option-hover-bg) !important;
}
body.dark-theme .mat-mdc-option.mdc-list-item--selected:not(.mdc-list-item--disabled), body .mat-mdc-option.mdc-list-item--selected:not(.mdc-list-item--disabled), body.light-theme .mat-mdc-option.mdc-list-item--selected:not(.mdc-list-item--disabled), body.motivatexr-theme .mat-mdc-option.mdc-list-item--selected:not(.mdc-list-item--disabled) {
  background-color: var(--option-selected-bg) !important;
}
body.dark-theme .mat-mdc-option.mdc-list-item--selected:not(.mdc-list-item--disabled) .mdc-list-item__primary-text, body .mat-mdc-option.mdc-list-item--selected:not(.mdc-list-item--disabled) .mdc-list-item__primary-text, body.light-theme .mat-mdc-option.mdc-list-item--selected:not(.mdc-list-item--disabled) .mdc-list-item__primary-text, body.motivatexr-theme .mat-mdc-option.mdc-list-item--selected:not(.mdc-list-item--disabled) .mdc-list-item__primary-text {
  color: var(--primary-color) !important;
}
body.dark-theme .mat-mdc-option .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-minimal::after, body .mat-mdc-option .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-minimal::after,
body.dark-theme .mat-mdc-option .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-minimal::after,
body .mat-mdc-option .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-minimal::after, body.light-theme .mat-mdc-option .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-minimal::after,
body.light-theme .mat-mdc-option .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-minimal::after, body.motivatexr-theme .mat-mdc-option .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-minimal::after,
body.motivatexr-theme .mat-mdc-option .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-minimal::after {
  color: var(--primary-color) !important;
}
body.dark-theme .mat-mdc-option .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full, body .mat-mdc-option .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full,
body.dark-theme .mat-mdc-option .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full,
body .mat-mdc-option .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full, body.light-theme .mat-mdc-option .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full,
body.light-theme .mat-mdc-option .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full, body.motivatexr-theme .mat-mdc-option .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full,
body.motivatexr-theme .mat-mdc-option .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full {
  background-color: var(--primary-color) !important;
}
body.dark-theme .mat-mdc-option .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full::after, body .mat-mdc-option .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full::after,
body.dark-theme .mat-mdc-option .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full::after,
body .mat-mdc-option .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full::after, body.light-theme .mat-mdc-option .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full::after,
body.light-theme .mat-mdc-option .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full::after, body.motivatexr-theme .mat-mdc-option .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full::after,
body.motivatexr-theme .mat-mdc-option .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full::after {
  color: var(--surface-select-search) !important;
}

.mat-mdc-list-item.mdc-list-item {
  min-height: 48px;
}

.dark-theme .mat-mdc-slide-toggle:not(.mat-warn) .mdc-switch.mdc-switch--selected:enabled, body .mat-mdc-slide-toggle:not(.mat-warn) .mdc-switch.mdc-switch--selected:enabled,
.light-theme .mat-mdc-slide-toggle:not(.mat-warn) .mdc-switch.mdc-switch--selected:enabled,
.motivatexr-theme .mat-mdc-slide-toggle:not(.mat-warn) .mdc-switch.mdc-switch--selected:enabled {
  --mdc-switch-selected-handle-color: var(--secondary-color);
  --mdc-switch-selected-hover-handle-color: var(--secondary-color);
  --mdc-switch-selected-focus-handle-color: var(--secondary-color);
  --mdc-switch-selected-pressed-handle-color: var(--secondary-color);
  --mdc-switch-selected-icon-color: var(--btn-secondary-text);
  --mdc-switch-selected-track-color: var(--secondary-color-disabled);
  --mdc-switch-selected-hover-track-color: var(--secondary-color-disabled);
  --mdc-switch-selected-focus-track-color: var(--secondary-color-disabled);
  --mdc-switch-selected-pressed-track-color: var(--secondary-color-disabled);
  --mdc-switch-selected-hover-state-layer-color: var(--secondary-color);
  --mdc-switch-selected-focus-state-layer-color: var(--secondary-color);
  --mdc-switch-selected-pressed-state-layer-color: var(--secondary-color);
}
.dark-theme .mat-mdc-slide-toggle:not(.mat-warn) .mdc-switch.mdc-switch--selected:disabled, body .mat-mdc-slide-toggle:not(.mat-warn) .mdc-switch.mdc-switch--selected:disabled,
.light-theme .mat-mdc-slide-toggle:not(.mat-warn) .mdc-switch.mdc-switch--selected:disabled,
.motivatexr-theme .mat-mdc-slide-toggle:not(.mat-warn) .mdc-switch.mdc-switch--selected:disabled {
  --mdc-switch-disabled-selected-handle-color: var(--secondary-color-disabled);
  --mdc-switch-disabled-selected-track-color: var(--secondary-color-disabled);
  --mdc-switch-disabled-selected-icon-color: var(--secondary-color);
}

body.dark-theme .mat-mdc-form-field.mat-focused .mat-mdc-floating-label, body .mat-mdc-form-field.mat-focused .mat-mdc-floating-label, body.light-theme .mat-mdc-form-field.mat-focused .mat-mdc-floating-label, body.motivatexr-theme .mat-mdc-form-field.mat-focused .mat-mdc-floating-label {
  color: var(--primary-color) !important;
}
body.dark-theme .primary-button[disabled], body .primary-button[disabled], body.light-theme .primary-button[disabled], body.motivatexr-theme .primary-button[disabled] {
  color: var(--color-middle) !important;
  background-color: var(--primary-color-disabled) !important;
}
body.dark-theme .secondary-button[disabled], body .secondary-button[disabled], body.light-theme .secondary-button[disabled], body.motivatexr-theme .secondary-button[disabled] {
  color: var(--color-middle) !important;
  background-color: var(--primary-color) !important;
}
body.dark-theme .mat-focused .mat-mdc-form-field-required-marker, body .mat-focused .mat-mdc-form-field-required-marker, body.light-theme .mat-focused .mat-mdc-form-field-required-marker, body.motivatexr-theme .mat-focused .mat-mdc-form-field-required-marker {
  color: var(--primary-color) !important;
}
body.dark-theme .mat-mdc-checkbox.mat-accent .mdc-checkbox__native-control.mdc-checkbox--selected ~ .mdc-checkbox__background, body .mat-mdc-checkbox.mat-accent .mdc-checkbox__native-control.mdc-checkbox--selected ~ .mdc-checkbox__background,
body.dark-theme .mat-mdc-checkbox.mat-accent .mdc-checkbox__native-control:indeterminate ~ .mdc-checkbox__background,
body .mat-mdc-checkbox.mat-accent .mdc-checkbox__native-control:indeterminate ~ .mdc-checkbox__background,
body.dark-theme .mat-mdc-checkbox.mat-accent .mdc-checkbox__native-control[data-indeterminate=true] ~ .mdc-checkbox__background,
body .mat-mdc-checkbox.mat-accent .mdc-checkbox__native-control[data-indeterminate=true] ~ .mdc-checkbox__background, body.light-theme .mat-mdc-checkbox.mat-accent .mdc-checkbox__native-control.mdc-checkbox--selected ~ .mdc-checkbox__background,
body.light-theme .mat-mdc-checkbox.mat-accent .mdc-checkbox__native-control:indeterminate ~ .mdc-checkbox__background,
body.light-theme .mat-mdc-checkbox.mat-accent .mdc-checkbox__native-control[data-indeterminate=true] ~ .mdc-checkbox__background, body.motivatexr-theme .mat-mdc-checkbox.mat-accent .mdc-checkbox__native-control.mdc-checkbox--selected ~ .mdc-checkbox__background,
body.motivatexr-theme .mat-mdc-checkbox.mat-accent .mdc-checkbox__native-control:indeterminate ~ .mdc-checkbox__background,
body.motivatexr-theme .mat-mdc-checkbox.mat-accent .mdc-checkbox__native-control[data-indeterminate=true] ~ .mdc-checkbox__background {
  background-color: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
}
body.dark-theme .mdc-checkbox__checkmark-path, body .mdc-checkbox__checkmark-path, body.light-theme .mdc-checkbox__checkmark-path, body.motivatexr-theme .mdc-checkbox__checkmark-path {
  stroke: rgba(255, 255, 255, 0.87) !important;
}
body.dark-theme .mat-mdc-checkbox-checked:not(.mdc-checkbox--disabled).mat-accent .mat-ripple-element, body .mat-mdc-checkbox-checked:not(.mdc-checkbox--disabled).mat-accent .mat-ripple-element,
body.dark-theme .mat-mdc-checkbox:active:not(.mdc-checkbox--disabled).mat-accent .mat-ripple-element,
body .mat-mdc-checkbox:active:not(.mdc-checkbox--disabled).mat-accent .mat-ripple-element, body.light-theme .mat-mdc-checkbox-checked:not(.mdc-checkbox--disabled).mat-accent .mat-ripple-element,
body.light-theme .mat-mdc-checkbox:active:not(.mdc-checkbox--disabled).mat-accent .mat-ripple-element, body.motivatexr-theme .mat-mdc-checkbox-checked:not(.mdc-checkbox--disabled).mat-accent .mat-ripple-element,
body.motivatexr-theme .mat-mdc-checkbox:active:not(.mdc-checkbox--disabled).mat-accent .mat-ripple-element {
  background-color: var(--secondary-color) !important;
}
body.dark-theme .mat-mdc-slider.mat-primary:not(.mat-warn), body .mat-mdc-slider.mat-primary:not(.mat-warn),
body.dark-theme .mat-mdc-slider.mat-accent:not(.mat-warn),
body .mat-mdc-slider.mat-accent:not(.mat-warn),
body.dark-theme mat-slider.mat-mdc-slider.mat-primary:not(.mat-warn),
body.dark-theme mat-slider.mat-mdc-slider.mat-accent:not(.mat-warn), body.light-theme .mat-mdc-slider.mat-primary:not(.mat-warn),
body.light-theme .mat-mdc-slider.mat-accent:not(.mat-warn),
body.light-theme mat-slider.mat-mdc-slider.mat-primary:not(.mat-warn),
body.light-theme mat-slider.mat-mdc-slider.mat-accent:not(.mat-warn), body.motivatexr-theme .mat-mdc-slider.mat-primary:not(.mat-warn),
body.motivatexr-theme .mat-mdc-slider.mat-accent:not(.mat-warn),
body.motivatexr-theme mat-slider.mat-mdc-slider.mat-primary:not(.mat-warn),
body.motivatexr-theme mat-slider.mat-mdc-slider.mat-accent:not(.mat-warn) {
  --mat-mdc-slider-ripple-color: var(--secondary-color);
  --mat-mdc-slider-hover-ripple-color: color-mix(in srgb, var(--secondary-color) 6%, transparent);
  --mat-mdc-slider-focus-ripple-color: color-mix(in srgb, var(--secondary-color) 22%, transparent);
}
body.dark-theme .mat-mdc-slider.mat-primary:not(.mat-warn) .mdc-slider__track--active_fill, body .mat-mdc-slider.mat-primary:not(.mat-warn) .mdc-slider__track--active_fill,
body.dark-theme .mat-mdc-slider.mat-accent:not(.mat-warn) .mdc-slider__track--active_fill,
body .mat-mdc-slider.mat-accent:not(.mat-warn) .mdc-slider__track--active_fill,
body.dark-theme mat-slider.mat-mdc-slider.mat-primary:not(.mat-warn) .mdc-slider__track--active_fill,
body.dark-theme mat-slider.mat-mdc-slider.mat-accent:not(.mat-warn) .mdc-slider__track--active_fill, body.light-theme .mat-mdc-slider.mat-primary:not(.mat-warn) .mdc-slider__track--active_fill,
body.light-theme .mat-mdc-slider.mat-accent:not(.mat-warn) .mdc-slider__track--active_fill,
body.light-theme mat-slider.mat-mdc-slider.mat-primary:not(.mat-warn) .mdc-slider__track--active_fill,
body.light-theme mat-slider.mat-mdc-slider.mat-accent:not(.mat-warn) .mdc-slider__track--active_fill, body.motivatexr-theme .mat-mdc-slider.mat-primary:not(.mat-warn) .mdc-slider__track--active_fill,
body.motivatexr-theme .mat-mdc-slider.mat-accent:not(.mat-warn) .mdc-slider__track--active_fill,
body.motivatexr-theme mat-slider.mat-mdc-slider.mat-primary:not(.mat-warn) .mdc-slider__track--active_fill,
body.motivatexr-theme mat-slider.mat-mdc-slider.mat-accent:not(.mat-warn) .mdc-slider__track--active_fill {
  border-color: var(--secondary-color) !important;
}
body.dark-theme .mat-mdc-slider.mat-primary:not(.mat-warn) .mdc-slider__thumb-knob, body .mat-mdc-slider.mat-primary:not(.mat-warn) .mdc-slider__thumb-knob,
body.dark-theme .mat-mdc-slider.mat-accent:not(.mat-warn) .mdc-slider__thumb-knob,
body .mat-mdc-slider.mat-accent:not(.mat-warn) .mdc-slider__thumb-knob,
body.dark-theme mat-slider.mat-mdc-slider.mat-primary:not(.mat-warn) .mdc-slider__thumb-knob,
body.dark-theme mat-slider.mat-mdc-slider.mat-accent:not(.mat-warn) .mdc-slider__thumb-knob, body.light-theme .mat-mdc-slider.mat-primary:not(.mat-warn) .mdc-slider__thumb-knob,
body.light-theme .mat-mdc-slider.mat-accent:not(.mat-warn) .mdc-slider__thumb-knob,
body.light-theme mat-slider.mat-mdc-slider.mat-primary:not(.mat-warn) .mdc-slider__thumb-knob,
body.light-theme mat-slider.mat-mdc-slider.mat-accent:not(.mat-warn) .mdc-slider__thumb-knob, body.motivatexr-theme .mat-mdc-slider.mat-primary:not(.mat-warn) .mdc-slider__thumb-knob,
body.motivatexr-theme .mat-mdc-slider.mat-accent:not(.mat-warn) .mdc-slider__thumb-knob,
body.motivatexr-theme mat-slider.mat-mdc-slider.mat-primary:not(.mat-warn) .mdc-slider__thumb-knob,
body.motivatexr-theme mat-slider.mat-mdc-slider.mat-accent:not(.mat-warn) .mdc-slider__thumb-knob {
  background-color: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
}
body.dark-theme .mat-mdc-slider.mat-primary:not(.mat-warn) .mdc-slider__value-indicator, body .mat-mdc-slider.mat-primary:not(.mat-warn) .mdc-slider__value-indicator,
body.dark-theme .mat-mdc-slider.mat-accent:not(.mat-warn) .mdc-slider__value-indicator,
body .mat-mdc-slider.mat-accent:not(.mat-warn) .mdc-slider__value-indicator,
body.dark-theme mat-slider.mat-mdc-slider.mat-primary:not(.mat-warn) .mdc-slider__value-indicator,
body.dark-theme mat-slider.mat-mdc-slider.mat-accent:not(.mat-warn) .mdc-slider__value-indicator, body.light-theme .mat-mdc-slider.mat-primary:not(.mat-warn) .mdc-slider__value-indicator,
body.light-theme .mat-mdc-slider.mat-accent:not(.mat-warn) .mdc-slider__value-indicator,
body.light-theme mat-slider.mat-mdc-slider.mat-primary:not(.mat-warn) .mdc-slider__value-indicator,
body.light-theme mat-slider.mat-mdc-slider.mat-accent:not(.mat-warn) .mdc-slider__value-indicator, body.motivatexr-theme .mat-mdc-slider.mat-primary:not(.mat-warn) .mdc-slider__value-indicator,
body.motivatexr-theme .mat-mdc-slider.mat-accent:not(.mat-warn) .mdc-slider__value-indicator,
body.motivatexr-theme mat-slider.mat-mdc-slider.mat-primary:not(.mat-warn) .mdc-slider__value-indicator,
body.motivatexr-theme mat-slider.mat-mdc-slider.mat-accent:not(.mat-warn) .mdc-slider__value-indicator {
  background-color: var(--secondary-color) !important;
}
body.dark-theme .mat-mdc-slider.mat-primary:not(.mat-warn) .mdc-slider__value-indicator::before, body .mat-mdc-slider.mat-primary:not(.mat-warn) .mdc-slider__value-indicator::before,
body.dark-theme .mat-mdc-slider.mat-accent:not(.mat-warn) .mdc-slider__value-indicator::before,
body .mat-mdc-slider.mat-accent:not(.mat-warn) .mdc-slider__value-indicator::before,
body.dark-theme mat-slider.mat-mdc-slider.mat-primary:not(.mat-warn) .mdc-slider__value-indicator::before,
body.dark-theme mat-slider.mat-mdc-slider.mat-accent:not(.mat-warn) .mdc-slider__value-indicator::before, body.light-theme .mat-mdc-slider.mat-primary:not(.mat-warn) .mdc-slider__value-indicator::before,
body.light-theme .mat-mdc-slider.mat-accent:not(.mat-warn) .mdc-slider__value-indicator::before,
body.light-theme mat-slider.mat-mdc-slider.mat-primary:not(.mat-warn) .mdc-slider__value-indicator::before,
body.light-theme mat-slider.mat-mdc-slider.mat-accent:not(.mat-warn) .mdc-slider__value-indicator::before, body.motivatexr-theme .mat-mdc-slider.mat-primary:not(.mat-warn) .mdc-slider__value-indicator::before,
body.motivatexr-theme .mat-mdc-slider.mat-accent:not(.mat-warn) .mdc-slider__value-indicator::before,
body.motivatexr-theme mat-slider.mat-mdc-slider.mat-primary:not(.mat-warn) .mdc-slider__value-indicator::before,
body.motivatexr-theme mat-slider.mat-mdc-slider.mat-accent:not(.mat-warn) .mdc-slider__value-indicator::before {
  border-top-color: var(--secondary-color) !important;
}
body.dark-theme .mat-mdc-slider.mat-primary:not(.mat-warn) .mdc-slider__value-indicator-text, body .mat-mdc-slider.mat-primary:not(.mat-warn) .mdc-slider__value-indicator-text,
body.dark-theme .mat-mdc-slider.mat-primary:not(.mat-warn) .mdc-slider__value-indicator span,
body .mat-mdc-slider.mat-primary:not(.mat-warn) .mdc-slider__value-indicator span,
body.dark-theme .mat-mdc-slider.mat-accent:not(.mat-warn) .mdc-slider__value-indicator-text,
body .mat-mdc-slider.mat-accent:not(.mat-warn) .mdc-slider__value-indicator-text,
body.dark-theme .mat-mdc-slider.mat-accent:not(.mat-warn) .mdc-slider__value-indicator span,
body .mat-mdc-slider.mat-accent:not(.mat-warn) .mdc-slider__value-indicator span,
body.dark-theme mat-slider.mat-mdc-slider.mat-primary:not(.mat-warn) .mdc-slider__value-indicator-text,
body.dark-theme mat-slider.mat-mdc-slider.mat-primary:not(.mat-warn) .mdc-slider__value-indicator span,
body.dark-theme mat-slider.mat-mdc-slider.mat-accent:not(.mat-warn) .mdc-slider__value-indicator-text,
body.dark-theme mat-slider.mat-mdc-slider.mat-accent:not(.mat-warn) .mdc-slider__value-indicator span, body.light-theme .mat-mdc-slider.mat-primary:not(.mat-warn) .mdc-slider__value-indicator-text,
body.light-theme .mat-mdc-slider.mat-primary:not(.mat-warn) .mdc-slider__value-indicator span,
body.light-theme .mat-mdc-slider.mat-accent:not(.mat-warn) .mdc-slider__value-indicator-text,
body.light-theme .mat-mdc-slider.mat-accent:not(.mat-warn) .mdc-slider__value-indicator span,
body.light-theme mat-slider.mat-mdc-slider.mat-primary:not(.mat-warn) .mdc-slider__value-indicator-text,
body.light-theme mat-slider.mat-mdc-slider.mat-primary:not(.mat-warn) .mdc-slider__value-indicator span,
body.light-theme mat-slider.mat-mdc-slider.mat-accent:not(.mat-warn) .mdc-slider__value-indicator-text,
body.light-theme mat-slider.mat-mdc-slider.mat-accent:not(.mat-warn) .mdc-slider__value-indicator span, body.motivatexr-theme .mat-mdc-slider.mat-primary:not(.mat-warn) .mdc-slider__value-indicator-text,
body.motivatexr-theme .mat-mdc-slider.mat-primary:not(.mat-warn) .mdc-slider__value-indicator span,
body.motivatexr-theme .mat-mdc-slider.mat-accent:not(.mat-warn) .mdc-slider__value-indicator-text,
body.motivatexr-theme .mat-mdc-slider.mat-accent:not(.mat-warn) .mdc-slider__value-indicator span,
body.motivatexr-theme mat-slider.mat-mdc-slider.mat-primary:not(.mat-warn) .mdc-slider__value-indicator-text,
body.motivatexr-theme mat-slider.mat-mdc-slider.mat-primary:not(.mat-warn) .mdc-slider__value-indicator span,
body.motivatexr-theme mat-slider.mat-mdc-slider.mat-accent:not(.mat-warn) .mdc-slider__value-indicator-text,
body.motivatexr-theme mat-slider.mat-mdc-slider.mat-accent:not(.mat-warn) .mdc-slider__value-indicator span {
  color: var(--btn-secondary-text) !important;
}
body.dark-theme .mat-mdc-slider.mat-primary:not(.mat-warn) .mdc-slider__tick-mark--active, body .mat-mdc-slider.mat-primary:not(.mat-warn) .mdc-slider__tick-mark--active,
body.dark-theme .mat-mdc-slider.mat-accent:not(.mat-warn) .mdc-slider__tick-mark--active,
body .mat-mdc-slider.mat-accent:not(.mat-warn) .mdc-slider__tick-mark--active,
body.dark-theme mat-slider.mat-mdc-slider.mat-primary:not(.mat-warn) .mdc-slider__tick-mark--active,
body.dark-theme mat-slider.mat-mdc-slider.mat-accent:not(.mat-warn) .mdc-slider__tick-mark--active, body.light-theme .mat-mdc-slider.mat-primary:not(.mat-warn) .mdc-slider__tick-mark--active,
body.light-theme .mat-mdc-slider.mat-accent:not(.mat-warn) .mdc-slider__tick-mark--active,
body.light-theme mat-slider.mat-mdc-slider.mat-primary:not(.mat-warn) .mdc-slider__tick-mark--active,
body.light-theme mat-slider.mat-mdc-slider.mat-accent:not(.mat-warn) .mdc-slider__tick-mark--active, body.motivatexr-theme .mat-mdc-slider.mat-primary:not(.mat-warn) .mdc-slider__tick-mark--active,
body.motivatexr-theme .mat-mdc-slider.mat-accent:not(.mat-warn) .mdc-slider__tick-mark--active,
body.motivatexr-theme mat-slider.mat-mdc-slider.mat-primary:not(.mat-warn) .mdc-slider__tick-mark--active,
body.motivatexr-theme mat-slider.mat-mdc-slider.mat-accent:not(.mat-warn) .mdc-slider__tick-mark--active {
  background-color: var(--secondary-color) !important;
}
body.dark-theme .mat-mdc-slider.mat-primary:not(.mat-warn) .mdc-slider__tick-mark--inactive, body .mat-mdc-slider.mat-primary:not(.mat-warn) .mdc-slider__tick-mark--inactive,
body.dark-theme .mat-mdc-slider.mat-accent:not(.mat-warn) .mdc-slider__tick-mark--inactive,
body .mat-mdc-slider.mat-accent:not(.mat-warn) .mdc-slider__tick-mark--inactive,
body.dark-theme mat-slider.mat-mdc-slider.mat-primary:not(.mat-warn) .mdc-slider__tick-mark--inactive,
body.dark-theme mat-slider.mat-mdc-slider.mat-accent:not(.mat-warn) .mdc-slider__tick-mark--inactive, body.light-theme .mat-mdc-slider.mat-primary:not(.mat-warn) .mdc-slider__tick-mark--inactive,
body.light-theme .mat-mdc-slider.mat-accent:not(.mat-warn) .mdc-slider__tick-mark--inactive,
body.light-theme mat-slider.mat-mdc-slider.mat-primary:not(.mat-warn) .mdc-slider__tick-mark--inactive,
body.light-theme mat-slider.mat-mdc-slider.mat-accent:not(.mat-warn) .mdc-slider__tick-mark--inactive, body.motivatexr-theme .mat-mdc-slider.mat-primary:not(.mat-warn) .mdc-slider__tick-mark--inactive,
body.motivatexr-theme .mat-mdc-slider.mat-accent:not(.mat-warn) .mdc-slider__tick-mark--inactive,
body.motivatexr-theme mat-slider.mat-mdc-slider.mat-primary:not(.mat-warn) .mdc-slider__tick-mark--inactive,
body.motivatexr-theme mat-slider.mat-mdc-slider.mat-accent:not(.mat-warn) .mdc-slider__tick-mark--inactive {
  background-color: var(--secondary-color-disabled) !important;
}
body.dark-theme .mat-mdc-slider:not(.mat-warn) .mdc-slider__track--inactive, body .mat-mdc-slider:not(.mat-warn) .mdc-slider__track--inactive, body.light-theme .mat-mdc-slider:not(.mat-warn) .mdc-slider__track--inactive, body.motivatexr-theme .mat-mdc-slider:not(.mat-warn) .mdc-slider__track--inactive {
  background-color: var(--secondary-color-disabled) !important;
}
body.dark-theme .mat-mdc-form-field.mat-focused .mdc-line-ripple::after, body .mat-mdc-form-field.mat-focused .mdc-line-ripple::after, body.light-theme .mat-mdc-form-field.mat-focused .mdc-line-ripple::after, body.motivatexr-theme .mat-mdc-form-field.mat-focused .mdc-line-ripple::after {
  background-color: var(--primary-color);
}
body.dark-theme .mat-mdc-form-field.mat-focused .mdc-line-ripple::after.mat-accent, body .mat-mdc-form-field.mat-focused .mdc-line-ripple::after.mat-accent, body.light-theme .mat-mdc-form-field.mat-focused .mdc-line-ripple::after.mat-accent, body.motivatexr-theme .mat-mdc-form-field.mat-focused .mdc-line-ripple::after.mat-accent {
  background-color: var(--color-accent);
}
body.dark-theme .mat-mdc-form-field.mat-focused .mdc-line-ripple::after.mat-warn, body .mat-mdc-form-field.mat-focused .mdc-line-ripple::after.mat-warn, body.light-theme .mat-mdc-form-field.mat-focused .mdc-line-ripple::after.mat-warn, body.motivatexr-theme .mat-mdc-form-field.mat-focused .mdc-line-ripple::after.mat-warn {
  background-color: var(--color-warn);
}

body.light-theme .mat-mdc-slider {
  --mat-mdc-slider-value-indicator-opacity: 0.9;
}

body.light-theme .mat-mdc-slide-toggle:not(.mat-warn) .mdc-switch:not(.mdc-switch--selected) {
  --mdc-switch-unselected-track-color: #bdbdbd;
  --mdc-switch-unselected-hover-track-color: #b5b5b5;
  --mdc-switch-unselected-focus-track-color: #b5b5b5;
  --mdc-switch-unselected-pressed-track-color: #b5b5b5;
}

body.light-theme .mat-mdc-slider:not(.mat-warn):not(.mdc-slider--disabled) .mdc-slider__track--inactive {
  opacity: 0.5 !important;
}

body.light-theme .mat-mdc-slider.mdc-slider--disabled:not(.mat-warn) .mdc-slider__thumb-knob {
  background-color: var(--text-secondary) !important;
  border-color: var(--text-secondary) !important;
}
body.light-theme .mat-mdc-slider.mdc-slider--disabled:not(.mat-warn) .mdc-slider__track--inactive {
  background-color: var(--text-secondary) !important;
  opacity: 0.45 !important;
}
body.light-theme .mat-mdc-slider.mdc-slider--disabled:not(.mat-warn) .mdc-slider__track--active_fill {
  border-color: var(--text-secondary) !important;
}
body.light-theme .mat-mdc-slider.mdc-slider--disabled:not(.mat-warn) .mdc-slider__tick-mark--inactive {
  background-color: var(--text-secondary) !important;
  opacity: 0.65 !important;
}
body.light-theme .mat-mdc-slider.mdc-slider--disabled:not(.mat-warn) .mdc-slider__tick-mark--active {
  background-color: var(--text-secondary) !important;
  opacity: 0.65 !important;
}

body.dark-theme .profile-form, body .profile-form, body.dark-theme .admin-form, body .admin-form, body.dark-theme .help-lobby-form, body .help-lobby-form, body.light-theme .profile-form, body.light-theme .admin-form, body.light-theme .help-lobby-form, body.motivatexr-theme .profile-form, body.motivatexr-theme .admin-form, body.motivatexr-theme .help-lobby-form {
  background-color: var(--surface-form-bg) !important;
}
body.dark-theme .profile-form .form-data-content, body .profile-form .form-data-content, body.dark-theme .admin-form .form-data-content, body .admin-form .form-data-content, body.dark-theme .help-lobby-form .form-data-content, body .help-lobby-form .form-data-content, body.light-theme .profile-form .form-data-content, body.light-theme .admin-form .form-data-content, body.light-theme .help-lobby-form .form-data-content, body.motivatexr-theme .profile-form .form-data-content, body.motivatexr-theme .admin-form .form-data-content, body.motivatexr-theme .help-lobby-form .form-data-content {
  background-color: var(--surface-form-data) !important;
  color: rgba(0, 0, 0, 0.87) !important;
  /* Mismo criterio que .mat-mdc-input-element:disabled ($text-color-gray) y tokens MDC 0.6.
     Fondo ligeramente más oscuro que --surface-form-data para que se perciba el botón en
     dark/motivateXR (panel claro con texto oscuro). */
  /* Nuevo usuario: hint/placeholder más suave que el valor escrito (42%: un pelín más claro que secondary 54%). */
}
body.dark-theme .profile-form .form-data-content h5, body .profile-form .form-data-content h5, body.dark-theme .profile-form .form-data-content h3, body .profile-form .form-data-content h3, body.dark-theme .profile-form .form-data-content p, body .profile-form .form-data-content p, body.dark-theme .profile-form .form-data-content span, body .profile-form .form-data-content span, body.dark-theme .profile-form .form-data-content label, body .profile-form .form-data-content label, body.dark-theme .admin-form .form-data-content h5, body .admin-form .form-data-content h5, body.dark-theme .admin-form .form-data-content h3, body .admin-form .form-data-content h3, body.dark-theme .admin-form .form-data-content p, body .admin-form .form-data-content p, body.dark-theme .admin-form .form-data-content span, body .admin-form .form-data-content span, body.dark-theme .admin-form .form-data-content label, body .admin-form .form-data-content label, body.dark-theme .help-lobby-form .form-data-content h5, body .help-lobby-form .form-data-content h5, body.dark-theme .help-lobby-form .form-data-content h3, body .help-lobby-form .form-data-content h3, body.dark-theme .help-lobby-form .form-data-content p, body .help-lobby-form .form-data-content p, body.dark-theme .help-lobby-form .form-data-content span, body .help-lobby-form .form-data-content span, body.dark-theme .help-lobby-form .form-data-content label, body .help-lobby-form .form-data-content label, body.light-theme .profile-form .form-data-content h5, body.light-theme .profile-form .form-data-content h3, body.light-theme .profile-form .form-data-content p, body.light-theme .profile-form .form-data-content span, body.light-theme .profile-form .form-data-content label, body.light-theme .admin-form .form-data-content h5, body.light-theme .admin-form .form-data-content h3, body.light-theme .admin-form .form-data-content p, body.light-theme .admin-form .form-data-content span, body.light-theme .admin-form .form-data-content label, body.light-theme .help-lobby-form .form-data-content h5, body.light-theme .help-lobby-form .form-data-content h3, body.light-theme .help-lobby-form .form-data-content p, body.light-theme .help-lobby-form .form-data-content span, body.light-theme .help-lobby-form .form-data-content label, body.motivatexr-theme .profile-form .form-data-content h5, body.motivatexr-theme .profile-form .form-data-content h3, body.motivatexr-theme .profile-form .form-data-content p, body.motivatexr-theme .profile-form .form-data-content span, body.motivatexr-theme .profile-form .form-data-content label, body.motivatexr-theme .admin-form .form-data-content h5, body.motivatexr-theme .admin-form .form-data-content h3, body.motivatexr-theme .admin-form .form-data-content p, body.motivatexr-theme .admin-form .form-data-content span, body.motivatexr-theme .admin-form .form-data-content label, body.motivatexr-theme .help-lobby-form .form-data-content h5, body.motivatexr-theme .help-lobby-form .form-data-content h3, body.motivatexr-theme .help-lobby-form .form-data-content p, body.motivatexr-theme .help-lobby-form .form-data-content span, body.motivatexr-theme .help-lobby-form .form-data-content label {
  color: rgba(0, 0, 0, 0.87) !important;
}
body.dark-theme .profile-form .form-data-content .mat-mdc-floating-label, body .profile-form .form-data-content .mat-mdc-floating-label, body.dark-theme .profile-form .form-data-content body .mat-mdc-floating-label, body.dark-theme .profile-form .form-data-content .mat-mdc-select-value, body .profile-form .form-data-content .mat-mdc-select-value, body.dark-theme .profile-form .form-data-content .mat-mdc-select-value-text, body .profile-form .form-data-content .mat-mdc-select-value-text,
body.dark-theme .profile-form .form-data-content .mat-mdc-select-arrow-wrapper,
body .profile-form .form-data-content .mat-mdc-select-arrow-wrapper, body.dark-theme .profile-form .form-data-content .mat-mdc-select-arrow, body .profile-form .form-data-content .mat-mdc-select-arrow, body.dark-theme .admin-form .form-data-content .mat-mdc-floating-label, body .admin-form .form-data-content .mat-mdc-floating-label, body.dark-theme .admin-form .form-data-content body .mat-mdc-floating-label, body.dark-theme .admin-form .form-data-content .mat-mdc-select-value, body .admin-form .form-data-content .mat-mdc-select-value, body.dark-theme .admin-form .form-data-content .mat-mdc-select-value-text, body .admin-form .form-data-content .mat-mdc-select-value-text,
body.dark-theme .admin-form .form-data-content .mat-mdc-select-arrow-wrapper,
body .admin-form .form-data-content .mat-mdc-select-arrow-wrapper, body.dark-theme .admin-form .form-data-content .mat-mdc-select-arrow, body .admin-form .form-data-content .mat-mdc-select-arrow, body.dark-theme .help-lobby-form .form-data-content .mat-mdc-floating-label, body .help-lobby-form .form-data-content .mat-mdc-floating-label, body.dark-theme .help-lobby-form .form-data-content body .mat-mdc-floating-label, body.dark-theme .help-lobby-form .form-data-content .mat-mdc-select-value, body .help-lobby-form .form-data-content .mat-mdc-select-value, body.dark-theme .help-lobby-form .form-data-content .mat-mdc-select-value-text, body .help-lobby-form .form-data-content .mat-mdc-select-value-text,
body.dark-theme .help-lobby-form .form-data-content .mat-mdc-select-arrow-wrapper,
body .help-lobby-form .form-data-content .mat-mdc-select-arrow-wrapper, body.dark-theme .help-lobby-form .form-data-content .mat-mdc-select-arrow, body .help-lobby-form .form-data-content .mat-mdc-select-arrow, body.light-theme .profile-form .form-data-content .mat-mdc-floating-label, body.light-theme .profile-form .form-data-content body .mat-mdc-floating-label, body.light-theme .profile-form .form-data-content .mat-mdc-select-value, body.light-theme .profile-form .form-data-content .mat-mdc-select-value-text,
body.light-theme .profile-form .form-data-content .mat-mdc-select-arrow-wrapper, body.light-theme .profile-form .form-data-content .mat-mdc-select-arrow, body.light-theme .admin-form .form-data-content .mat-mdc-floating-label, body.light-theme .admin-form .form-data-content body .mat-mdc-floating-label, body.light-theme .admin-form .form-data-content .mat-mdc-select-value, body.light-theme .admin-form .form-data-content .mat-mdc-select-value-text,
body.light-theme .admin-form .form-data-content .mat-mdc-select-arrow-wrapper, body.light-theme .admin-form .form-data-content .mat-mdc-select-arrow, body.light-theme .help-lobby-form .form-data-content .mat-mdc-floating-label, body.light-theme .help-lobby-form .form-data-content body .mat-mdc-floating-label, body.light-theme .help-lobby-form .form-data-content .mat-mdc-select-value, body.light-theme .help-lobby-form .form-data-content .mat-mdc-select-value-text,
body.light-theme .help-lobby-form .form-data-content .mat-mdc-select-arrow-wrapper, body.light-theme .help-lobby-form .form-data-content .mat-mdc-select-arrow, body.motivatexr-theme .profile-form .form-data-content .mat-mdc-floating-label, body.motivatexr-theme .profile-form .form-data-content body .mat-mdc-floating-label, body.motivatexr-theme .profile-form .form-data-content .mat-mdc-select-value, body.motivatexr-theme .profile-form .form-data-content .mat-mdc-select-value-text,
body.motivatexr-theme .profile-form .form-data-content .mat-mdc-select-arrow-wrapper, body.motivatexr-theme .profile-form .form-data-content .mat-mdc-select-arrow, body.motivatexr-theme .admin-form .form-data-content .mat-mdc-floating-label, body.motivatexr-theme .admin-form .form-data-content body .mat-mdc-floating-label, body.motivatexr-theme .admin-form .form-data-content .mat-mdc-select-value, body.motivatexr-theme .admin-form .form-data-content .mat-mdc-select-value-text,
body.motivatexr-theme .admin-form .form-data-content .mat-mdc-select-arrow-wrapper, body.motivatexr-theme .admin-form .form-data-content .mat-mdc-select-arrow, body.motivatexr-theme .help-lobby-form .form-data-content .mat-mdc-floating-label, body.motivatexr-theme .help-lobby-form .form-data-content body .mat-mdc-floating-label, body.motivatexr-theme .help-lobby-form .form-data-content .mat-mdc-select-value, body.motivatexr-theme .help-lobby-form .form-data-content .mat-mdc-select-value-text,
body.motivatexr-theme .help-lobby-form .form-data-content .mat-mdc-select-arrow-wrapper, body.motivatexr-theme .help-lobby-form .form-data-content .mat-mdc-select-arrow {
  color: rgba(0, 0, 0, 0.87) !important;
}
body.dark-theme .profile-form .form-data-content .mat-mdc-select-arrow svg, body .profile-form .form-data-content .mat-mdc-select-arrow svg, body.dark-theme .admin-form .form-data-content .mat-mdc-select-arrow svg, body .admin-form .form-data-content .mat-mdc-select-arrow svg, body.dark-theme .help-lobby-form .form-data-content .mat-mdc-select-arrow svg, body .help-lobby-form .form-data-content .mat-mdc-select-arrow svg, body.light-theme .profile-form .form-data-content .mat-mdc-select-arrow svg, body.light-theme .admin-form .form-data-content .mat-mdc-select-arrow svg, body.light-theme .help-lobby-form .form-data-content .mat-mdc-select-arrow svg, body.motivatexr-theme .profile-form .form-data-content .mat-mdc-select-arrow svg, body.motivatexr-theme .admin-form .form-data-content .mat-mdc-select-arrow svg, body.motivatexr-theme .help-lobby-form .form-data-content .mat-mdc-select-arrow svg {
  fill: currentColor !important;
}
body.dark-theme .profile-form .form-data-content .mat-form-field-disabled .mat-mdc-select-arrow-wrapper, body .profile-form .form-data-content .mat-form-field-disabled .mat-mdc-select-arrow-wrapper,
body.dark-theme .profile-form .form-data-content .mat-form-field-disabled .mat-mdc-select-arrow,
body .profile-form .form-data-content .mat-form-field-disabled .mat-mdc-select-arrow, body.dark-theme .admin-form .form-data-content .mat-form-field-disabled .mat-mdc-select-arrow-wrapper, body .admin-form .form-data-content .mat-form-field-disabled .mat-mdc-select-arrow-wrapper,
body.dark-theme .admin-form .form-data-content .mat-form-field-disabled .mat-mdc-select-arrow,
body .admin-form .form-data-content .mat-form-field-disabled .mat-mdc-select-arrow, body.dark-theme .help-lobby-form .form-data-content .mat-form-field-disabled .mat-mdc-select-arrow-wrapper, body .help-lobby-form .form-data-content .mat-form-field-disabled .mat-mdc-select-arrow-wrapper,
body.dark-theme .help-lobby-form .form-data-content .mat-form-field-disabled .mat-mdc-select-arrow,
body .help-lobby-form .form-data-content .mat-form-field-disabled .mat-mdc-select-arrow, body.light-theme .profile-form .form-data-content .mat-form-field-disabled .mat-mdc-select-arrow-wrapper,
body.light-theme .profile-form .form-data-content .mat-form-field-disabled .mat-mdc-select-arrow, body.light-theme .admin-form .form-data-content .mat-form-field-disabled .mat-mdc-select-arrow-wrapper,
body.light-theme .admin-form .form-data-content .mat-form-field-disabled .mat-mdc-select-arrow, body.light-theme .help-lobby-form .form-data-content .mat-form-field-disabled .mat-mdc-select-arrow-wrapper,
body.light-theme .help-lobby-form .form-data-content .mat-form-field-disabled .mat-mdc-select-arrow, body.motivatexr-theme .profile-form .form-data-content .mat-form-field-disabled .mat-mdc-select-arrow-wrapper,
body.motivatexr-theme .profile-form .form-data-content .mat-form-field-disabled .mat-mdc-select-arrow, body.motivatexr-theme .admin-form .form-data-content .mat-form-field-disabled .mat-mdc-select-arrow-wrapper,
body.motivatexr-theme .admin-form .form-data-content .mat-form-field-disabled .mat-mdc-select-arrow, body.motivatexr-theme .help-lobby-form .form-data-content .mat-form-field-disabled .mat-mdc-select-arrow-wrapper,
body.motivatexr-theme .help-lobby-form .form-data-content .mat-form-field-disabled .mat-mdc-select-arrow {
  color: #686868 !important;
}
body.dark-theme .profile-form .form-data-content .mat-mdc-input-element, body .profile-form .form-data-content .mat-mdc-input-element, body.dark-theme .admin-form .form-data-content .mat-mdc-input-element, body .admin-form .form-data-content .mat-mdc-input-element, body.dark-theme .help-lobby-form .form-data-content .mat-mdc-input-element, body .help-lobby-form .form-data-content .mat-mdc-input-element, body.light-theme .profile-form .form-data-content .mat-mdc-input-element, body.light-theme .admin-form .form-data-content .mat-mdc-input-element, body.light-theme .help-lobby-form .form-data-content .mat-mdc-input-element, body.motivatexr-theme .profile-form .form-data-content .mat-mdc-input-element, body.motivatexr-theme .admin-form .form-data-content .mat-mdc-input-element, body.motivatexr-theme .help-lobby-form .form-data-content .mat-mdc-input-element {
  color: rgba(0, 0, 0, 0.87) !important;
}
body.dark-theme .profile-form .form-data-content .mat-mdc-text-field-wrapper, body .profile-form .form-data-content .mat-mdc-text-field-wrapper, body.dark-theme .admin-form .form-data-content .mat-mdc-text-field-wrapper, body .admin-form .form-data-content .mat-mdc-text-field-wrapper, body.dark-theme .help-lobby-form .form-data-content .mat-mdc-text-field-wrapper, body .help-lobby-form .form-data-content .mat-mdc-text-field-wrapper, body.light-theme .profile-form .form-data-content .mat-mdc-text-field-wrapper, body.light-theme .admin-form .form-data-content .mat-mdc-text-field-wrapper, body.light-theme .help-lobby-form .form-data-content .mat-mdc-text-field-wrapper, body.motivatexr-theme .profile-form .form-data-content .mat-mdc-text-field-wrapper, body.motivatexr-theme .admin-form .form-data-content .mat-mdc-text-field-wrapper, body.motivatexr-theme .help-lobby-form .form-data-content .mat-mdc-text-field-wrapper {
  background-color: transparent !important;
}
body.dark-theme .profile-form .form-data-content .mat-mdc-form-field:not(.mat-form-field-disabled) .mdc-text-field:hover, body .profile-form .form-data-content .mat-mdc-form-field:not(.mat-form-field-disabled) .mdc-text-field:hover, body.dark-theme .admin-form .form-data-content .mat-mdc-form-field:not(.mat-form-field-disabled) .mdc-text-field:hover, body .admin-form .form-data-content .mat-mdc-form-field:not(.mat-form-field-disabled) .mdc-text-field:hover, body.dark-theme .help-lobby-form .form-data-content .mat-mdc-form-field:not(.mat-form-field-disabled) .mdc-text-field:hover, body .help-lobby-form .form-data-content .mat-mdc-form-field:not(.mat-form-field-disabled) .mdc-text-field:hover, body.light-theme .profile-form .form-data-content .mat-mdc-form-field:not(.mat-form-field-disabled) .mdc-text-field:hover, body.light-theme .admin-form .form-data-content .mat-mdc-form-field:not(.mat-form-field-disabled) .mdc-text-field:hover, body.light-theme .help-lobby-form .form-data-content .mat-mdc-form-field:not(.mat-form-field-disabled) .mdc-text-field:hover, body.motivatexr-theme .profile-form .form-data-content .mat-mdc-form-field:not(.mat-form-field-disabled) .mdc-text-field:hover, body.motivatexr-theme .admin-form .form-data-content .mat-mdc-form-field:not(.mat-form-field-disabled) .mdc-text-field:hover, body.motivatexr-theme .help-lobby-form .form-data-content .mat-mdc-form-field:not(.mat-form-field-disabled) .mdc-text-field:hover {
  background-color: #ececec !important;
}
body.dark-theme .profile-form .form-data-content .mdc-line-ripple::before, body .profile-form .form-data-content .mdc-line-ripple::before, body.dark-theme .admin-form .form-data-content .mdc-line-ripple::before, body .admin-form .form-data-content .mdc-line-ripple::before, body.dark-theme .help-lobby-form .form-data-content .mdc-line-ripple::before, body .help-lobby-form .form-data-content .mdc-line-ripple::before, body.light-theme .profile-form .form-data-content .mdc-line-ripple::before, body.light-theme .admin-form .form-data-content .mdc-line-ripple::before, body.light-theme .help-lobby-form .form-data-content .mdc-line-ripple::before, body.motivatexr-theme .profile-form .form-data-content .mdc-line-ripple::before, body.motivatexr-theme .admin-form .form-data-content .mdc-line-ripple::before, body.motivatexr-theme .help-lobby-form .form-data-content .mdc-line-ripple::before {
  border-bottom-color: rgba(0, 0, 0, 0.87) !important;
}
body.dark-theme .profile-form .form-data-content .mat-mdc-form-field:not(.mat-form-field-disabled) .mdc-line-ripple::before, body .profile-form .form-data-content .mat-mdc-form-field:not(.mat-form-field-disabled) .mdc-line-ripple::before, body.dark-theme .admin-form .form-data-content .mat-mdc-form-field:not(.mat-form-field-disabled) .mdc-line-ripple::before, body .admin-form .form-data-content .mat-mdc-form-field:not(.mat-form-field-disabled) .mdc-line-ripple::before, body.dark-theme .help-lobby-form .form-data-content .mat-mdc-form-field:not(.mat-form-field-disabled) .mdc-line-ripple::before, body .help-lobby-form .form-data-content .mat-mdc-form-field:not(.mat-form-field-disabled) .mdc-line-ripple::before, body.light-theme .profile-form .form-data-content .mat-mdc-form-field:not(.mat-form-field-disabled) .mdc-line-ripple::before, body.light-theme .admin-form .form-data-content .mat-mdc-form-field:not(.mat-form-field-disabled) .mdc-line-ripple::before, body.light-theme .help-lobby-form .form-data-content .mat-mdc-form-field:not(.mat-form-field-disabled) .mdc-line-ripple::before, body.motivatexr-theme .profile-form .form-data-content .mat-mdc-form-field:not(.mat-form-field-disabled) .mdc-line-ripple::before, body.motivatexr-theme .admin-form .form-data-content .mat-mdc-form-field:not(.mat-form-field-disabled) .mdc-line-ripple::before, body.motivatexr-theme .help-lobby-form .form-data-content .mat-mdc-form-field:not(.mat-form-field-disabled) .mdc-line-ripple::before {
  border-bottom-style: solid !important;
}
body.dark-theme .profile-form .form-data-content .mat-mdc-form-field.mat-form-field-disabled .mdc-line-ripple::before, body .profile-form .form-data-content .mat-mdc-form-field.mat-form-field-disabled .mdc-line-ripple::before, body.dark-theme .admin-form .form-data-content .mat-mdc-form-field.mat-form-field-disabled .mdc-line-ripple::before, body .admin-form .form-data-content .mat-mdc-form-field.mat-form-field-disabled .mdc-line-ripple::before, body.dark-theme .help-lobby-form .form-data-content .mat-mdc-form-field.mat-form-field-disabled .mdc-line-ripple::before, body .help-lobby-form .form-data-content .mat-mdc-form-field.mat-form-field-disabled .mdc-line-ripple::before, body.light-theme .profile-form .form-data-content .mat-mdc-form-field.mat-form-field-disabled .mdc-line-ripple::before, body.light-theme .admin-form .form-data-content .mat-mdc-form-field.mat-form-field-disabled .mdc-line-ripple::before, body.light-theme .help-lobby-form .form-data-content .mat-mdc-form-field.mat-form-field-disabled .mdc-line-ripple::before, body.motivatexr-theme .profile-form .form-data-content .mat-mdc-form-field.mat-form-field-disabled .mdc-line-ripple::before, body.motivatexr-theme .admin-form .form-data-content .mat-mdc-form-field.mat-form-field-disabled .mdc-line-ripple::before, body.motivatexr-theme .help-lobby-form .form-data-content .mat-mdc-form-field.mat-form-field-disabled .mdc-line-ripple::before {
  border-bottom-style: dashed !important;
}
body.dark-theme .profile-form .form-data-content .mat-mdc-form-field:not(.mat-form-field-disabled):has(.mat-mdc-input-element[readonly]) .mdc-line-ripple::before, body .profile-form .form-data-content .mat-mdc-form-field:not(.mat-form-field-disabled):has(.mat-mdc-input-element[readonly]) .mdc-line-ripple::before, body.dark-theme .admin-form .form-data-content .mat-mdc-form-field:not(.mat-form-field-disabled):has(.mat-mdc-input-element[readonly]) .mdc-line-ripple::before, body .admin-form .form-data-content .mat-mdc-form-field:not(.mat-form-field-disabled):has(.mat-mdc-input-element[readonly]) .mdc-line-ripple::before, body.dark-theme .help-lobby-form .form-data-content .mat-mdc-form-field:not(.mat-form-field-disabled):has(.mat-mdc-input-element[readonly]) .mdc-line-ripple::before, body .help-lobby-form .form-data-content .mat-mdc-form-field:not(.mat-form-field-disabled):has(.mat-mdc-input-element[readonly]) .mdc-line-ripple::before, body.light-theme .profile-form .form-data-content .mat-mdc-form-field:not(.mat-form-field-disabled):has(.mat-mdc-input-element[readonly]) .mdc-line-ripple::before, body.light-theme .admin-form .form-data-content .mat-mdc-form-field:not(.mat-form-field-disabled):has(.mat-mdc-input-element[readonly]) .mdc-line-ripple::before, body.light-theme .help-lobby-form .form-data-content .mat-mdc-form-field:not(.mat-form-field-disabled):has(.mat-mdc-input-element[readonly]) .mdc-line-ripple::before, body.motivatexr-theme .profile-form .form-data-content .mat-mdc-form-field:not(.mat-form-field-disabled):has(.mat-mdc-input-element[readonly]) .mdc-line-ripple::before, body.motivatexr-theme .admin-form .form-data-content .mat-mdc-form-field:not(.mat-form-field-disabled):has(.mat-mdc-input-element[readonly]) .mdc-line-ripple::before, body.motivatexr-theme .help-lobby-form .form-data-content .mat-mdc-form-field:not(.mat-form-field-disabled):has(.mat-mdc-input-element[readonly]) .mdc-line-ripple::before {
  border-bottom-style: dashed !important;
}
body.dark-theme .profile-form .form-data-content .mdc-line-ripple::after, body .profile-form .form-data-content .mdc-line-ripple::after, body.dark-theme .admin-form .form-data-content .mdc-line-ripple::after, body .admin-form .form-data-content .mdc-line-ripple::after, body.dark-theme .help-lobby-form .form-data-content .mdc-line-ripple::after, body .help-lobby-form .form-data-content .mdc-line-ripple::after, body.light-theme .profile-form .form-data-content .mdc-line-ripple::after, body.light-theme .admin-form .form-data-content .mdc-line-ripple::after, body.light-theme .help-lobby-form .form-data-content .mdc-line-ripple::after, body.motivatexr-theme .profile-form .form-data-content .mdc-line-ripple::after, body.motivatexr-theme .admin-form .form-data-content .mdc-line-ripple::after, body.motivatexr-theme .help-lobby-form .form-data-content .mdc-line-ripple::after {
  border-bottom-color: rgba(0, 0, 0, 0.87) !important;
}
body.dark-theme .profile-form .form-data-content .mat-mdc-button, body .profile-form .form-data-content .mat-mdc-button, body.dark-theme .profile-form .form-data-content .mat-mdc-outlined-button, body .profile-form .form-data-content .mat-mdc-outlined-button, body.dark-theme .admin-form .form-data-content .mat-mdc-button, body .admin-form .form-data-content .mat-mdc-button, body.dark-theme .admin-form .form-data-content .mat-mdc-outlined-button, body .admin-form .form-data-content .mat-mdc-outlined-button, body.dark-theme .help-lobby-form .form-data-content .mat-mdc-button, body .help-lobby-form .form-data-content .mat-mdc-button, body.dark-theme .help-lobby-form .form-data-content .mat-mdc-outlined-button, body .help-lobby-form .form-data-content .mat-mdc-outlined-button, body.light-theme .profile-form .form-data-content .mat-mdc-button, body.light-theme .profile-form .form-data-content .mat-mdc-outlined-button, body.light-theme .admin-form .form-data-content .mat-mdc-button, body.light-theme .admin-form .form-data-content .mat-mdc-outlined-button, body.light-theme .help-lobby-form .form-data-content .mat-mdc-button, body.light-theme .help-lobby-form .form-data-content .mat-mdc-outlined-button, body.motivatexr-theme .profile-form .form-data-content .mat-mdc-button, body.motivatexr-theme .profile-form .form-data-content .mat-mdc-outlined-button, body.motivatexr-theme .admin-form .form-data-content .mat-mdc-button, body.motivatexr-theme .admin-form .form-data-content .mat-mdc-outlined-button, body.motivatexr-theme .help-lobby-form .form-data-content .mat-mdc-button, body.motivatexr-theme .help-lobby-form .form-data-content .mat-mdc-outlined-button {
  color: rgba(0, 0, 0, 0.87) !important;
}
body.dark-theme .profile-form .form-data-content .mat-mdc-outlined-button:not(:disabled), body .profile-form .form-data-content .mat-mdc-outlined-button:not(:disabled), body.dark-theme .admin-form .form-data-content .mat-mdc-outlined-button:not(:disabled), body .admin-form .form-data-content .mat-mdc-outlined-button:not(:disabled), body.dark-theme .help-lobby-form .form-data-content .mat-mdc-outlined-button:not(:disabled), body .help-lobby-form .form-data-content .mat-mdc-outlined-button:not(:disabled), body.light-theme .profile-form .form-data-content .mat-mdc-outlined-button:not(:disabled), body.light-theme .admin-form .form-data-content .mat-mdc-outlined-button:not(:disabled), body.light-theme .help-lobby-form .form-data-content .mat-mdc-outlined-button:not(:disabled), body.motivatexr-theme .profile-form .form-data-content .mat-mdc-outlined-button:not(:disabled), body.motivatexr-theme .admin-form .form-data-content .mat-mdc-outlined-button:not(:disabled), body.motivatexr-theme .help-lobby-form .form-data-content .mat-mdc-outlined-button:not(:disabled) {
  border-color: rgba(0, 0, 0, 0.87) !important;
}
body.dark-theme .profile-form .form-data-content .mat-mdc-raised-button:not(:disabled), body .profile-form .form-data-content .mat-mdc-raised-button:not(:disabled), body.dark-theme .admin-form .form-data-content .mat-mdc-raised-button:not(:disabled), body .admin-form .form-data-content .mat-mdc-raised-button:not(:disabled), body.dark-theme .help-lobby-form .form-data-content .mat-mdc-raised-button:not(:disabled), body .help-lobby-form .form-data-content .mat-mdc-raised-button:not(:disabled), body.light-theme .profile-form .form-data-content .mat-mdc-raised-button:not(:disabled), body.light-theme .admin-form .form-data-content .mat-mdc-raised-button:not(:disabled), body.light-theme .help-lobby-form .form-data-content .mat-mdc-raised-button:not(:disabled), body.motivatexr-theme .profile-form .form-data-content .mat-mdc-raised-button:not(:disabled), body.motivatexr-theme .admin-form .form-data-content .mat-mdc-raised-button:not(:disabled), body.motivatexr-theme .help-lobby-form .form-data-content .mat-mdc-raised-button:not(:disabled) {
  border-color: rgba(0, 0, 0, 0.87) !important;
}
body.dark-theme .profile-form .form-data-content .mat-mdc-raised-button:disabled, body .profile-form .form-data-content .mat-mdc-raised-button:disabled, body.dark-theme .admin-form .form-data-content .mat-mdc-raised-button:disabled, body .admin-form .form-data-content .mat-mdc-raised-button:disabled, body.dark-theme .help-lobby-form .form-data-content .mat-mdc-raised-button:disabled, body .help-lobby-form .form-data-content .mat-mdc-raised-button:disabled, body.light-theme .profile-form .form-data-content .mat-mdc-raised-button:disabled, body.light-theme .admin-form .form-data-content .mat-mdc-raised-button:disabled, body.light-theme .help-lobby-form .form-data-content .mat-mdc-raised-button:disabled, body.motivatexr-theme .profile-form .form-data-content .mat-mdc-raised-button:disabled, body.motivatexr-theme .admin-form .form-data-content .mat-mdc-raised-button:disabled, body.motivatexr-theme .help-lobby-form .form-data-content .mat-mdc-raised-button:disabled {
  color: #686868 !important;
  border-color: rgba(0, 0, 0, 0.12) !important;
  background-color: #d9d9d9 !important;
}
body.dark-theme .profile-form .form-data-content .mat-mdc-raised-button.mat-mdc-button-disabled .mdc-button__label, body .profile-form .form-data-content .mat-mdc-raised-button.mat-mdc-button-disabled .mdc-button__label,
body.dark-theme .profile-form .form-data-content .mat-mdc-raised-button:disabled .mdc-button__label,
body .profile-form .form-data-content .mat-mdc-raised-button:disabled .mdc-button__label, body.dark-theme .admin-form .form-data-content .mat-mdc-raised-button.mat-mdc-button-disabled .mdc-button__label, body .admin-form .form-data-content .mat-mdc-raised-button.mat-mdc-button-disabled .mdc-button__label,
body.dark-theme .admin-form .form-data-content .mat-mdc-raised-button:disabled .mdc-button__label,
body .admin-form .form-data-content .mat-mdc-raised-button:disabled .mdc-button__label, body.dark-theme .help-lobby-form .form-data-content .mat-mdc-raised-button.mat-mdc-button-disabled .mdc-button__label, body .help-lobby-form .form-data-content .mat-mdc-raised-button.mat-mdc-button-disabled .mdc-button__label,
body.dark-theme .help-lobby-form .form-data-content .mat-mdc-raised-button:disabled .mdc-button__label,
body .help-lobby-form .form-data-content .mat-mdc-raised-button:disabled .mdc-button__label, body.light-theme .profile-form .form-data-content .mat-mdc-raised-button.mat-mdc-button-disabled .mdc-button__label,
body.light-theme .profile-form .form-data-content .mat-mdc-raised-button:disabled .mdc-button__label, body.light-theme .admin-form .form-data-content .mat-mdc-raised-button.mat-mdc-button-disabled .mdc-button__label,
body.light-theme .admin-form .form-data-content .mat-mdc-raised-button:disabled .mdc-button__label, body.light-theme .help-lobby-form .form-data-content .mat-mdc-raised-button.mat-mdc-button-disabled .mdc-button__label,
body.light-theme .help-lobby-form .form-data-content .mat-mdc-raised-button:disabled .mdc-button__label, body.motivatexr-theme .profile-form .form-data-content .mat-mdc-raised-button.mat-mdc-button-disabled .mdc-button__label,
body.motivatexr-theme .profile-form .form-data-content .mat-mdc-raised-button:disabled .mdc-button__label, body.motivatexr-theme .admin-form .form-data-content .mat-mdc-raised-button.mat-mdc-button-disabled .mdc-button__label,
body.motivatexr-theme .admin-form .form-data-content .mat-mdc-raised-button:disabled .mdc-button__label, body.motivatexr-theme .help-lobby-form .form-data-content .mat-mdc-raised-button.mat-mdc-button-disabled .mdc-button__label,
body.motivatexr-theme .help-lobby-form .form-data-content .mat-mdc-raised-button:disabled .mdc-button__label {
  color: inherit !important;
}
body.dark-theme .profile-form .form-data-content .execution-report-view__input-date-label .mat-mdc-text-field-wrapper, body .profile-form .form-data-content .execution-report-view__input-date-label .mat-mdc-text-field-wrapper, body.dark-theme .admin-form .form-data-content .execution-report-view__input-date-label .mat-mdc-text-field-wrapper, body .admin-form .form-data-content .execution-report-view__input-date-label .mat-mdc-text-field-wrapper, body.dark-theme .help-lobby-form .form-data-content .execution-report-view__input-date-label .mat-mdc-text-field-wrapper, body .help-lobby-form .form-data-content .execution-report-view__input-date-label .mat-mdc-text-field-wrapper, body.light-theme .profile-form .form-data-content .execution-report-view__input-date-label .mat-mdc-text-field-wrapper, body.light-theme .admin-form .form-data-content .execution-report-view__input-date-label .mat-mdc-text-field-wrapper, body.light-theme .help-lobby-form .form-data-content .execution-report-view__input-date-label .mat-mdc-text-field-wrapper, body.motivatexr-theme .profile-form .form-data-content .execution-report-view__input-date-label .mat-mdc-text-field-wrapper, body.motivatexr-theme .admin-form .form-data-content .execution-report-view__input-date-label .mat-mdc-text-field-wrapper, body.motivatexr-theme .help-lobby-form .form-data-content .execution-report-view__input-date-label .mat-mdc-text-field-wrapper {
  background-color: var(--surface-list-item) !important;
}
body.dark-theme .profile-form .form-data-content .mat-mdc-input-element:disabled, body .profile-form .form-data-content .mat-mdc-input-element:disabled, body.dark-theme .admin-form .form-data-content .mat-mdc-input-element:disabled, body .admin-form .form-data-content .mat-mdc-input-element:disabled, body.dark-theme .help-lobby-form .form-data-content .mat-mdc-input-element:disabled, body .help-lobby-form .form-data-content .mat-mdc-input-element:disabled, body.light-theme .profile-form .form-data-content .mat-mdc-input-element:disabled, body.light-theme .admin-form .form-data-content .mat-mdc-input-element:disabled, body.light-theme .help-lobby-form .form-data-content .mat-mdc-input-element:disabled, body.motivatexr-theme .profile-form .form-data-content .mat-mdc-input-element:disabled, body.motivatexr-theme .admin-form .form-data-content .mat-mdc-input-element:disabled, body.motivatexr-theme .help-lobby-form .form-data-content .mat-mdc-input-element:disabled {
  color: #686868 !important;
}
body.dark-theme .profile-form .form-data-content tiwp-new-user-card, body .profile-form .form-data-content tiwp-new-user-card, body.dark-theme .admin-form .form-data-content tiwp-new-user-card, body .admin-form .form-data-content tiwp-new-user-card, body.dark-theme .help-lobby-form .form-data-content tiwp-new-user-card, body .help-lobby-form .form-data-content tiwp-new-user-card, body.light-theme .profile-form .form-data-content tiwp-new-user-card, body.light-theme .admin-form .form-data-content tiwp-new-user-card, body.light-theme .help-lobby-form .form-data-content tiwp-new-user-card, body.motivatexr-theme .profile-form .form-data-content tiwp-new-user-card, body.motivatexr-theme .admin-form .form-data-content tiwp-new-user-card, body.motivatexr-theme .help-lobby-form .form-data-content tiwp-new-user-card {
  /* mat-label (p. ej. rol) queda cubierto por la regla global `label { color: alpha87 }` */
}
body.dark-theme .profile-form .form-data-content tiwp-new-user-card .mat-mdc-form-field, body .profile-form .form-data-content tiwp-new-user-card .mat-mdc-form-field, body.dark-theme .admin-form .form-data-content tiwp-new-user-card .mat-mdc-form-field, body .admin-form .form-data-content tiwp-new-user-card .mat-mdc-form-field, body.dark-theme .help-lobby-form .form-data-content tiwp-new-user-card .mat-mdc-form-field, body .help-lobby-form .form-data-content tiwp-new-user-card .mat-mdc-form-field, body.light-theme .profile-form .form-data-content tiwp-new-user-card .mat-mdc-form-field, body.light-theme .admin-form .form-data-content tiwp-new-user-card .mat-mdc-form-field, body.light-theme .help-lobby-form .form-data-content tiwp-new-user-card .mat-mdc-form-field, body.motivatexr-theme .profile-form .form-data-content tiwp-new-user-card .mat-mdc-form-field, body.motivatexr-theme .admin-form .form-data-content tiwp-new-user-card .mat-mdc-form-field, body.motivatexr-theme .help-lobby-form .form-data-content tiwp-new-user-card .mat-mdc-form-field {
  --mdc-filled-text-field-label-text-color: rgba(0, 0, 0, 0.42);
  --mdc-filled-text-field-input-text-color: rgba(0, 0, 0, 0.94);
}
body.dark-theme .profile-form .form-data-content tiwp-new-user-card .mat-mdc-input-element, body .profile-form .form-data-content tiwp-new-user-card .mat-mdc-input-element, body.dark-theme .admin-form .form-data-content tiwp-new-user-card .mat-mdc-input-element, body .admin-form .form-data-content tiwp-new-user-card .mat-mdc-input-element, body.dark-theme .help-lobby-form .form-data-content tiwp-new-user-card .mat-mdc-input-element, body .help-lobby-form .form-data-content tiwp-new-user-card .mat-mdc-input-element, body.light-theme .profile-form .form-data-content tiwp-new-user-card .mat-mdc-input-element, body.light-theme .admin-form .form-data-content tiwp-new-user-card .mat-mdc-input-element, body.light-theme .help-lobby-form .form-data-content tiwp-new-user-card .mat-mdc-input-element, body.motivatexr-theme .profile-form .form-data-content tiwp-new-user-card .mat-mdc-input-element, body.motivatexr-theme .admin-form .form-data-content tiwp-new-user-card .mat-mdc-input-element, body.motivatexr-theme .help-lobby-form .form-data-content tiwp-new-user-card .mat-mdc-input-element {
  color: rgba(0, 0, 0, 0.94) !important;
  caret-color: rgba(0, 0, 0, 0.94) !important;
}
body.dark-theme .profile-form .form-data-content tiwp-new-user-card .mat-mdc-input-element::placeholder, body .profile-form .form-data-content tiwp-new-user-card .mat-mdc-input-element::placeholder, body.dark-theme .admin-form .form-data-content tiwp-new-user-card .mat-mdc-input-element::placeholder, body .admin-form .form-data-content tiwp-new-user-card .mat-mdc-input-element::placeholder, body.dark-theme .help-lobby-form .form-data-content tiwp-new-user-card .mat-mdc-input-element::placeholder, body .help-lobby-form .form-data-content tiwp-new-user-card .mat-mdc-input-element::placeholder, body.light-theme .profile-form .form-data-content tiwp-new-user-card .mat-mdc-input-element::placeholder, body.light-theme .admin-form .form-data-content tiwp-new-user-card .mat-mdc-input-element::placeholder, body.light-theme .help-lobby-form .form-data-content tiwp-new-user-card .mat-mdc-input-element::placeholder, body.motivatexr-theme .profile-form .form-data-content tiwp-new-user-card .mat-mdc-input-element::placeholder, body.motivatexr-theme .admin-form .form-data-content tiwp-new-user-card .mat-mdc-input-element::placeholder, body.motivatexr-theme .help-lobby-form .form-data-content tiwp-new-user-card .mat-mdc-input-element::placeholder {
  color: rgba(0, 0, 0, 0.42) !important;
  opacity: 1 !important;
}
body.dark-theme .profile-form .form-data-content tiwp-new-user-card .mat-mdc-floating-label, body .profile-form .form-data-content tiwp-new-user-card .mat-mdc-floating-label,
body.dark-theme .profile-form .form-data-content tiwp-new-user-card .mdc-floating-label,
body .profile-form .form-data-content tiwp-new-user-card .mdc-floating-label, body.dark-theme .admin-form .form-data-content tiwp-new-user-card .mat-mdc-floating-label, body .admin-form .form-data-content tiwp-new-user-card .mat-mdc-floating-label,
body.dark-theme .admin-form .form-data-content tiwp-new-user-card .mdc-floating-label,
body .admin-form .form-data-content tiwp-new-user-card .mdc-floating-label, body.dark-theme .help-lobby-form .form-data-content tiwp-new-user-card .mat-mdc-floating-label, body .help-lobby-form .form-data-content tiwp-new-user-card .mat-mdc-floating-label,
body.dark-theme .help-lobby-form .form-data-content tiwp-new-user-card .mdc-floating-label,
body .help-lobby-form .form-data-content tiwp-new-user-card .mdc-floating-label, body.light-theme .profile-form .form-data-content tiwp-new-user-card .mat-mdc-floating-label,
body.light-theme .profile-form .form-data-content tiwp-new-user-card .mdc-floating-label, body.light-theme .admin-form .form-data-content tiwp-new-user-card .mat-mdc-floating-label,
body.light-theme .admin-form .form-data-content tiwp-new-user-card .mdc-floating-label, body.light-theme .help-lobby-form .form-data-content tiwp-new-user-card .mat-mdc-floating-label,
body.light-theme .help-lobby-form .form-data-content tiwp-new-user-card .mdc-floating-label, body.motivatexr-theme .profile-form .form-data-content tiwp-new-user-card .mat-mdc-floating-label,
body.motivatexr-theme .profile-form .form-data-content tiwp-new-user-card .mdc-floating-label, body.motivatexr-theme .admin-form .form-data-content tiwp-new-user-card .mat-mdc-floating-label,
body.motivatexr-theme .admin-form .form-data-content tiwp-new-user-card .mdc-floating-label, body.motivatexr-theme .help-lobby-form .form-data-content tiwp-new-user-card .mat-mdc-floating-label,
body.motivatexr-theme .help-lobby-form .form-data-content tiwp-new-user-card .mdc-floating-label {
  color: rgba(0, 0, 0, 0.42) !important;
}
body.dark-theme .profile-form .form-data-content tiwp-new-user-card .mat-mdc-form-field mat-label, body .profile-form .form-data-content tiwp-new-user-card .mat-mdc-form-field mat-label, body.dark-theme .admin-form .form-data-content tiwp-new-user-card .mat-mdc-form-field mat-label, body .admin-form .form-data-content tiwp-new-user-card .mat-mdc-form-field mat-label, body.dark-theme .help-lobby-form .form-data-content tiwp-new-user-card .mat-mdc-form-field mat-label, body .help-lobby-form .form-data-content tiwp-new-user-card .mat-mdc-form-field mat-label, body.light-theme .profile-form .form-data-content tiwp-new-user-card .mat-mdc-form-field mat-label, body.light-theme .admin-form .form-data-content tiwp-new-user-card .mat-mdc-form-field mat-label, body.light-theme .help-lobby-form .form-data-content tiwp-new-user-card .mat-mdc-form-field mat-label, body.motivatexr-theme .profile-form .form-data-content tiwp-new-user-card .mat-mdc-form-field mat-label, body.motivatexr-theme .admin-form .form-data-content tiwp-new-user-card .mat-mdc-form-field mat-label, body.motivatexr-theme .help-lobby-form .form-data-content tiwp-new-user-card .mat-mdc-form-field mat-label {
  color: rgba(0, 0, 0, 0.42) !important;
}
body.dark-theme .profile-form .form-data-content tiwp-new-user-card .mat-mdc-form-field mat-label b, body .profile-form .form-data-content tiwp-new-user-card .mat-mdc-form-field mat-label b, body.dark-theme .admin-form .form-data-content tiwp-new-user-card .mat-mdc-form-field mat-label b, body .admin-form .form-data-content tiwp-new-user-card .mat-mdc-form-field mat-label b, body.dark-theme .help-lobby-form .form-data-content tiwp-new-user-card .mat-mdc-form-field mat-label b, body .help-lobby-form .form-data-content tiwp-new-user-card .mat-mdc-form-field mat-label b, body.light-theme .profile-form .form-data-content tiwp-new-user-card .mat-mdc-form-field mat-label b, body.light-theme .admin-form .form-data-content tiwp-new-user-card .mat-mdc-form-field mat-label b, body.light-theme .help-lobby-form .form-data-content tiwp-new-user-card .mat-mdc-form-field mat-label b, body.motivatexr-theme .profile-form .form-data-content tiwp-new-user-card .mat-mdc-form-field mat-label b, body.motivatexr-theme .admin-form .form-data-content tiwp-new-user-card .mat-mdc-form-field mat-label b, body.motivatexr-theme .help-lobby-form .form-data-content tiwp-new-user-card .mat-mdc-form-field mat-label b {
  color: inherit !important;
  font-weight: 600;
}
body.dark-theme .profile-form .form-data-content tiwp-new-user-card .mat-mdc-form-field.mat-focused:not(.mat-form-field-invalid) .mdc-text-field--filled:not(.mdc-text-field--disabled) .mdc-floating-label--float-above, body .profile-form .form-data-content tiwp-new-user-card .mat-mdc-form-field.mat-focused:not(.mat-form-field-invalid) .mdc-text-field--filled:not(.mdc-text-field--disabled) .mdc-floating-label--float-above, body.dark-theme .admin-form .form-data-content tiwp-new-user-card .mat-mdc-form-field.mat-focused:not(.mat-form-field-invalid) .mdc-text-field--filled:not(.mdc-text-field--disabled) .mdc-floating-label--float-above, body .admin-form .form-data-content tiwp-new-user-card .mat-mdc-form-field.mat-focused:not(.mat-form-field-invalid) .mdc-text-field--filled:not(.mdc-text-field--disabled) .mdc-floating-label--float-above, body.dark-theme .help-lobby-form .form-data-content tiwp-new-user-card .mat-mdc-form-field.mat-focused:not(.mat-form-field-invalid) .mdc-text-field--filled:not(.mdc-text-field--disabled) .mdc-floating-label--float-above, body .help-lobby-form .form-data-content tiwp-new-user-card .mat-mdc-form-field.mat-focused:not(.mat-form-field-invalid) .mdc-text-field--filled:not(.mdc-text-field--disabled) .mdc-floating-label--float-above, body.light-theme .profile-form .form-data-content tiwp-new-user-card .mat-mdc-form-field.mat-focused:not(.mat-form-field-invalid) .mdc-text-field--filled:not(.mdc-text-field--disabled) .mdc-floating-label--float-above, body.light-theme .admin-form .form-data-content tiwp-new-user-card .mat-mdc-form-field.mat-focused:not(.mat-form-field-invalid) .mdc-text-field--filled:not(.mdc-text-field--disabled) .mdc-floating-label--float-above, body.light-theme .help-lobby-form .form-data-content tiwp-new-user-card .mat-mdc-form-field.mat-focused:not(.mat-form-field-invalid) .mdc-text-field--filled:not(.mdc-text-field--disabled) .mdc-floating-label--float-above, body.motivatexr-theme .profile-form .form-data-content tiwp-new-user-card .mat-mdc-form-field.mat-focused:not(.mat-form-field-invalid) .mdc-text-field--filled:not(.mdc-text-field--disabled) .mdc-floating-label--float-above, body.motivatexr-theme .admin-form .form-data-content tiwp-new-user-card .mat-mdc-form-field.mat-focused:not(.mat-form-field-invalid) .mdc-text-field--filled:not(.mdc-text-field--disabled) .mdc-floating-label--float-above, body.motivatexr-theme .help-lobby-form .form-data-content tiwp-new-user-card .mat-mdc-form-field.mat-focused:not(.mat-form-field-invalid) .mdc-text-field--filled:not(.mdc-text-field--disabled) .mdc-floating-label--float-above {
  color: rgba(0, 0, 0, 0.42) !important;
}
body.dark-theme .profile-form .form-data-content tiwp-new-user-card .mat-mdc-select-placeholder.mat-mdc-select-min-line, body .profile-form .form-data-content tiwp-new-user-card .mat-mdc-select-placeholder.mat-mdc-select-min-line, body.dark-theme .admin-form .form-data-content tiwp-new-user-card .mat-mdc-select-placeholder.mat-mdc-select-min-line, body .admin-form .form-data-content tiwp-new-user-card .mat-mdc-select-placeholder.mat-mdc-select-min-line, body.dark-theme .help-lobby-form .form-data-content tiwp-new-user-card .mat-mdc-select-placeholder.mat-mdc-select-min-line, body .help-lobby-form .form-data-content tiwp-new-user-card .mat-mdc-select-placeholder.mat-mdc-select-min-line, body.light-theme .profile-form .form-data-content tiwp-new-user-card .mat-mdc-select-placeholder.mat-mdc-select-min-line, body.light-theme .admin-form .form-data-content tiwp-new-user-card .mat-mdc-select-placeholder.mat-mdc-select-min-line, body.light-theme .help-lobby-form .form-data-content tiwp-new-user-card .mat-mdc-select-placeholder.mat-mdc-select-min-line, body.motivatexr-theme .profile-form .form-data-content tiwp-new-user-card .mat-mdc-select-placeholder.mat-mdc-select-min-line, body.motivatexr-theme .admin-form .form-data-content tiwp-new-user-card .mat-mdc-select-placeholder.mat-mdc-select-min-line, body.motivatexr-theme .help-lobby-form .form-data-content tiwp-new-user-card .mat-mdc-select-placeholder.mat-mdc-select-min-line {
  color: rgba(0, 0, 0, 0.42) !important;
}
body.dark-theme .profile-form .form-data-content tiwp-new-user-card .mat-mdc-select-value-text, body .profile-form .form-data-content tiwp-new-user-card .mat-mdc-select-value-text,
body.dark-theme .profile-form .form-data-content tiwp-new-user-card .mat-mdc-select-value-text .mat-mdc-select-min-line,
body .profile-form .form-data-content tiwp-new-user-card .mat-mdc-select-value-text .mat-mdc-select-min-line, body.dark-theme .admin-form .form-data-content tiwp-new-user-card .mat-mdc-select-value-text, body .admin-form .form-data-content tiwp-new-user-card .mat-mdc-select-value-text,
body.dark-theme .admin-form .form-data-content tiwp-new-user-card .mat-mdc-select-value-text .mat-mdc-select-min-line,
body .admin-form .form-data-content tiwp-new-user-card .mat-mdc-select-value-text .mat-mdc-select-min-line, body.dark-theme .help-lobby-form .form-data-content tiwp-new-user-card .mat-mdc-select-value-text, body .help-lobby-form .form-data-content tiwp-new-user-card .mat-mdc-select-value-text,
body.dark-theme .help-lobby-form .form-data-content tiwp-new-user-card .mat-mdc-select-value-text .mat-mdc-select-min-line,
body .help-lobby-form .form-data-content tiwp-new-user-card .mat-mdc-select-value-text .mat-mdc-select-min-line, body.light-theme .profile-form .form-data-content tiwp-new-user-card .mat-mdc-select-value-text,
body.light-theme .profile-form .form-data-content tiwp-new-user-card .mat-mdc-select-value-text .mat-mdc-select-min-line, body.light-theme .admin-form .form-data-content tiwp-new-user-card .mat-mdc-select-value-text,
body.light-theme .admin-form .form-data-content tiwp-new-user-card .mat-mdc-select-value-text .mat-mdc-select-min-line, body.light-theme .help-lobby-form .form-data-content tiwp-new-user-card .mat-mdc-select-value-text,
body.light-theme .help-lobby-form .form-data-content tiwp-new-user-card .mat-mdc-select-value-text .mat-mdc-select-min-line, body.motivatexr-theme .profile-form .form-data-content tiwp-new-user-card .mat-mdc-select-value-text,
body.motivatexr-theme .profile-form .form-data-content tiwp-new-user-card .mat-mdc-select-value-text .mat-mdc-select-min-line, body.motivatexr-theme .admin-form .form-data-content tiwp-new-user-card .mat-mdc-select-value-text,
body.motivatexr-theme .admin-form .form-data-content tiwp-new-user-card .mat-mdc-select-value-text .mat-mdc-select-min-line, body.motivatexr-theme .help-lobby-form .form-data-content tiwp-new-user-card .mat-mdc-select-value-text,
body.motivatexr-theme .help-lobby-form .form-data-content tiwp-new-user-card .mat-mdc-select-value-text .mat-mdc-select-min-line {
  color: rgba(0, 0, 0, 0.94) !important;
}
body.dark-theme::-webkit-scrollbar-thumb, body::-webkit-scrollbar-thumb, body.dark-theme::-webkit-scrollbar-thumb:hover,
body.dark-theme ::-webkit-scrollbar-thumb,
body ::-webkit-scrollbar-thumb,
body.dark-theme ::-webkit-scrollbar-thumb:hover, body.light-theme::-webkit-scrollbar-thumb, body.light-theme::-webkit-scrollbar-thumb:hover,
body.light-theme ::-webkit-scrollbar-thumb,
body.light-theme ::-webkit-scrollbar-thumb:hover, body.motivatexr-theme::-webkit-scrollbar-thumb, body.motivatexr-theme::-webkit-scrollbar-thumb:hover,
body.motivatexr-theme ::-webkit-scrollbar-thumb,
body.motivatexr-theme ::-webkit-scrollbar-thumb:hover {
  background-color: #d9d9d9;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
}
body.dark-theme .input-gray, body .input-gray, body.light-theme .input-gray, body.motivatexr-theme .input-gray {
  --mdc-filled-text-field-label-text-color: rgba(0, 0, 0, 0.87);
  --mdc-filled-text-field-disabled-label-text-color: rgba(0, 0, 0, 0.6);
  --mdc-filled-text-field-disabled-input-text-color: rgba(0, 0, 0, 0.6);
  color: rgba(0, 0, 0, 0.87) !important;
}
body.dark-theme .input-gray .input-light-gray, body .input-gray .input-light-gray, body.light-theme .input-gray .input-light-gray, body.motivatexr-theme .input-gray .input-light-gray {
  background-color: var(--surface-input) !important;
  color: rgba(0, 0, 0, 0.87) !important;
}
body.dark-theme .input-gray .arrow, body .input-gray .arrow, body.light-theme .input-gray .arrow, body.motivatexr-theme .input-gray .arrow {
  color: var(--common-arrow-color);
  background-color: var(--common-arrow-bg);
  border-color: var(--common-arrow-border);
}
body.dark-theme .input-gray mat-label, body .input-gray mat-label, body.dark-theme .input-gray .mat-mdc-floating-label, body .input-gray .mat-mdc-floating-label, body.dark-theme .input-gray .mat-hint, body .input-gray .mat-hint, body.light-theme .input-gray mat-label, body.light-theme .input-gray .mat-mdc-floating-label, body.light-theme .input-gray .mat-hint, body.motivatexr-theme .input-gray mat-label, body.motivatexr-theme .input-gray .mat-mdc-floating-label, body.motivatexr-theme .input-gray .mat-hint {
  color: rgba(0, 0, 0, 0.87) !important;
}
body.dark-theme .input-gray .mat-mdc-input-element, body .input-gray .mat-mdc-input-element, body.light-theme .input-gray .mat-mdc-input-element, body.motivatexr-theme .input-gray .mat-mdc-input-element {
  color: rgba(0, 0, 0, 0.87) !important;
}
body.dark-theme .input-gray.readonly .mat-mdc-floating-label, body .input-gray.readonly .mat-mdc-floating-label, body.dark-theme .input-gray.readonly .mat-mdc-floating-label mat-label, body .input-gray.readonly .mat-mdc-floating-label mat-label, body.light-theme .input-gray.readonly .mat-mdc-floating-label, body.light-theme .input-gray.readonly .mat-mdc-floating-label mat-label, body.motivatexr-theme .input-gray.readonly .mat-mdc-floating-label, body.motivatexr-theme .input-gray.readonly .mat-mdc-floating-label mat-label {
  color: rgba(255, 255, 255, 0.87) !important;
}
body.dark-theme .input-gray.readonly .mat-mdc-input-element, body .input-gray.readonly .mat-mdc-input-element, body.light-theme .input-gray.readonly .mat-mdc-input-element, body.motivatexr-theme .input-gray.readonly .mat-mdc-input-element {
  color: var(--text-on-input-readonly) !important;
}
body.dark-theme .input-gray.readonly .mat-mdc-text-field-wrapper, body .input-gray.readonly .mat-mdc-text-field-wrapper, body.light-theme .input-gray.readonly .mat-mdc-text-field-wrapper, body.motivatexr-theme .input-gray.readonly .mat-mdc-text-field-wrapper {
  color: var(--text-on-input-readonly) !important;
  background-color: var(--surface-input-readonly) !important;
}
body.dark-theme .input-gray .mat-mdc-text-field-wrapper, body .input-gray .mat-mdc-text-field-wrapper, body.light-theme .input-gray .mat-mdc-text-field-wrapper, body.motivatexr-theme .input-gray .mat-mdc-text-field-wrapper {
  background-color: var(--surface-input) !important;
}
body.dark-theme .input-gray .mat-mdc-form-field.mat-focused .mat-mdc-floating-label, body .input-gray .mat-mdc-form-field.mat-focused .mat-mdc-floating-label, body.light-theme .input-gray .mat-mdc-form-field.mat-focused .mat-mdc-floating-label, body.motivatexr-theme .input-gray .mat-mdc-form-field.mat-focused .mat-mdc-floating-label {
  color: rgba(0, 0, 0, 0.87) !important;
}
body.dark-theme .input-gray__error, body .input-gray__error, body.light-theme .input-gray__error, body.motivatexr-theme .input-gray__error {
  background: white !important;
  border-left: 4px var(--primary-color) solid !important;
}
body.dark-theme .input-gray__with-resetting .mdc-line-ripple, body .input-gray__with-resetting .mdc-line-ripple, body.light-theme .input-gray__with-resetting .mdc-line-ripple, body.motivatexr-theme .input-gray__with-resetting .mdc-line-ripple {
  color: var(--primary-color);
}
body.dark-theme .list-gray .mdc-list-item__content, body .list-gray .mdc-list-item__content, body.light-theme .list-gray .mdc-list-item__content, body.motivatexr-theme .list-gray .mdc-list-item__content {
  color: rgba(0, 0, 0, 0.87) !important;
}
body.dark-theme .textarea-gray, body .textarea-gray, body.light-theme .textarea-gray, body.motivatexr-theme .textarea-gray {
  --mdc-filled-text-field-label-text-color: rgba(0, 0, 0, 0.87);
  --mdc-filled-text-field-disabled-label-text-color: rgba(0, 0, 0, 0.6);
  --mdc-filled-text-field-disabled-input-text-color: rgba(0, 0, 0, 0.6);
  color: rgba(0, 0, 0, 0.87) !important;
}
body.dark-theme .textarea-gray .mat-mdc-floating-label, body .textarea-gray .mat-mdc-floating-label, body.light-theme .textarea-gray .mat-mdc-floating-label, body.motivatexr-theme .textarea-gray .mat-mdc-floating-label {
  color: rgba(0, 0, 0, 0.87) !important;
}
body.dark-theme .textarea-gray .mat-mdc-input-element, body .textarea-gray .mat-mdc-input-element, body.light-theme .textarea-gray .mat-mdc-input-element, body.motivatexr-theme .textarea-gray .mat-mdc-input-element {
  color: rgba(0, 0, 0, 0.87) !important;
}
body.dark-theme .textarea-gray .mat-mdc-text-field-wrapper, body .textarea-gray .mat-mdc-text-field-wrapper, body.light-theme .textarea-gray .mat-mdc-text-field-wrapper, body.motivatexr-theme .textarea-gray .mat-mdc-text-field-wrapper {
  background-color: var(--surface-input) !important;
}
body.dark-theme .textarea-gray .mat-mdc-form-field.mat-focused .mat-mdc-floating-label, body .textarea-gray .mat-mdc-form-field.mat-focused .mat-mdc-floating-label, body.light-theme .textarea-gray .mat-mdc-form-field.mat-focused .mat-mdc-floating-label, body.motivatexr-theme .textarea-gray .mat-mdc-form-field.mat-focused .mat-mdc-floating-label {
  color: black !important;
}
body.dark-theme .textarea-gray__error, body .textarea-gray__error, body.light-theme .textarea-gray__error, body.motivatexr-theme .textarea-gray__error {
  background: white !important;
  border-left: 4px var(--primary-color) solid !important;
}
body.dark-theme .textarea-gray-basic, body .textarea-gray-basic, body.light-theme .textarea-gray-basic, body.motivatexr-theme .textarea-gray-basic {
  color: rgba(0, 0, 0, 0.87) !important;
  background-color: #d9d9d9 !important;
}
body.dark-theme .textarea-gray-basic__error, body .textarea-gray-basic__error, body.light-theme .textarea-gray-basic__error, body.motivatexr-theme .textarea-gray-basic__error {
  background: white !important;
  border-left: 4px var(--primary-color) solid !important;
}
body.dark-theme .common-select-gray, body .common-select-gray, body.dark-theme .common-select-grey, body .common-select-grey, body.light-theme .common-select-gray, body.light-theme .common-select-grey, body.motivatexr-theme .common-select-gray, body.motivatexr-theme .common-select-grey {
  --mdc-filled-text-field-label-text-color: rgba(0, 0, 0, 0.87);
  --mdc-filled-text-field-disabled-label-text-color: rgba(0, 0, 0, 0.6);
  color: rgba(0, 0, 0, 0.87) !important;
}
body.dark-theme .common-select-gray .mat-mdc-form-field-flex, body .common-select-gray .mat-mdc-form-field-flex, body.dark-theme .common-select-grey .mat-mdc-form-field-flex, body .common-select-grey .mat-mdc-form-field-flex, body.light-theme .common-select-gray .mat-mdc-form-field-flex, body.light-theme .common-select-grey .mat-mdc-form-field-flex, body.motivatexr-theme .common-select-gray .mat-mdc-form-field-flex, body.motivatexr-theme .common-select-grey .mat-mdc-form-field-flex {
  color: rgba(0, 0, 0, 0.87) !important;
}
body.dark-theme .common-select-gray .mat-mdc-select-trigger, body .common-select-gray .mat-mdc-select-trigger, body.dark-theme .common-select-grey .mat-mdc-select-trigger, body .common-select-grey .mat-mdc-select-trigger, body.light-theme .common-select-gray .mat-mdc-select-trigger, body.light-theme .common-select-grey .mat-mdc-select-trigger, body.motivatexr-theme .common-select-gray .mat-mdc-select-trigger, body.motivatexr-theme .common-select-grey .mat-mdc-select-trigger {
  background-color: var(--surface-input) !important;
}
body.dark-theme .common-select-gray .mat-mdc-select-trigger .mat-mdc-select-min-line, body .common-select-gray .mat-mdc-select-trigger .mat-mdc-select-min-line, body.dark-theme .common-select-gray .mat-mdc-select-trigger .mat-mdc-select-arrow, body .common-select-gray .mat-mdc-select-trigger .mat-mdc-select-arrow, body.dark-theme .common-select-grey .mat-mdc-select-trigger .mat-mdc-select-min-line, body .common-select-grey .mat-mdc-select-trigger .mat-mdc-select-min-line, body.dark-theme .common-select-grey .mat-mdc-select-trigger .mat-mdc-select-arrow, body .common-select-grey .mat-mdc-select-trigger .mat-mdc-select-arrow, body.light-theme .common-select-gray .mat-mdc-select-trigger .mat-mdc-select-min-line, body.light-theme .common-select-gray .mat-mdc-select-trigger .mat-mdc-select-arrow, body.light-theme .common-select-grey .mat-mdc-select-trigger .mat-mdc-select-min-line, body.light-theme .common-select-grey .mat-mdc-select-trigger .mat-mdc-select-arrow, body.motivatexr-theme .common-select-gray .mat-mdc-select-trigger .mat-mdc-select-min-line, body.motivatexr-theme .common-select-gray .mat-mdc-select-trigger .mat-mdc-select-arrow, body.motivatexr-theme .common-select-grey .mat-mdc-select-trigger .mat-mdc-select-min-line, body.motivatexr-theme .common-select-grey .mat-mdc-select-trigger .mat-mdc-select-arrow {
  color: rgba(0, 0, 0, 0.87) !important;
}
body.dark-theme .common-select-gray .mat-mdc-floating-label, body .common-select-gray .mat-mdc-floating-label, body.dark-theme .common-select-gray .mat-mdc-select-value, body .common-select-gray .mat-mdc-select-value, body.dark-theme .common-select-gray .mat-mdc-select-value-text, body .common-select-gray .mat-mdc-select-value-text, body.dark-theme .common-select-grey .mat-mdc-floating-label, body .common-select-grey .mat-mdc-floating-label, body.dark-theme .common-select-grey .mat-mdc-select-value, body .common-select-grey .mat-mdc-select-value, body.dark-theme .common-select-grey .mat-mdc-select-value-text, body .common-select-grey .mat-mdc-select-value-text, body.light-theme .common-select-gray .mat-mdc-floating-label, body.light-theme .common-select-gray .mat-mdc-select-value, body.light-theme .common-select-gray .mat-mdc-select-value-text, body.light-theme .common-select-grey .mat-mdc-floating-label, body.light-theme .common-select-grey .mat-mdc-select-value, body.light-theme .common-select-grey .mat-mdc-select-value-text, body.motivatexr-theme .common-select-gray .mat-mdc-floating-label, body.motivatexr-theme .common-select-gray .mat-mdc-select-value, body.motivatexr-theme .common-select-gray .mat-mdc-select-value-text, body.motivatexr-theme .common-select-grey .mat-mdc-floating-label, body.motivatexr-theme .common-select-grey .mat-mdc-select-value, body.motivatexr-theme .common-select-grey .mat-mdc-select-value-text {
  color: rgba(0, 0, 0, 0.87) !important;
}
body.dark-theme .background-middle .input-gray .mat-mdc-floating-label, body .background-middle .input-gray .mat-mdc-floating-label, body.dark-theme .background-middle .input-gray .mat-mdc-select-value, body .background-middle .input-gray .mat-mdc-select-value, body.dark-theme .background-middle .input-gray .mat-mdc-select-value-text, body .background-middle .input-gray .mat-mdc-select-value-text, body.dark-theme .background-middle .input-gray .mat-mdc-select-arrow, body .background-middle .input-gray .mat-mdc-select-arrow, body.dark-theme .background-middle .textarea-gray .mat-mdc-floating-label, body .background-middle .textarea-gray .mat-mdc-floating-label, body.dark-theme .background-middle .textarea-gray .mat-mdc-select-value, body .background-middle .textarea-gray .mat-mdc-select-value, body.dark-theme .background-middle .textarea-gray .mat-mdc-select-value-text, body .background-middle .textarea-gray .mat-mdc-select-value-text, body.dark-theme .background-middle .textarea-gray .mat-mdc-select-arrow, body .background-middle .textarea-gray .mat-mdc-select-arrow, body.dark-theme .background-middle .select-gray .mat-mdc-floating-label, body .background-middle .select-gray .mat-mdc-floating-label, body.dark-theme .background-middle .select-gray .mat-mdc-select-value, body .background-middle .select-gray .mat-mdc-select-value, body.dark-theme .background-middle .select-gray .mat-mdc-select-value-text, body .background-middle .select-gray .mat-mdc-select-value-text, body.dark-theme .background-middle .select-gray .mat-mdc-select-arrow, body .background-middle .select-gray .mat-mdc-select-arrow, body.dark-theme .background-middle .select-yellow .mat-mdc-floating-label, body .background-middle .select-yellow .mat-mdc-floating-label, body.dark-theme .background-middle .select-yellow .mat-mdc-select-value, body .background-middle .select-yellow .mat-mdc-select-value, body.dark-theme .background-middle .select-yellow .mat-mdc-select-value-text, body .background-middle .select-yellow .mat-mdc-select-value-text, body.dark-theme .background-middle .select-yellow .mat-mdc-select-arrow, body .background-middle .select-yellow .mat-mdc-select-arrow, body.dark-theme .background-middle .common-select-gray .mat-mdc-floating-label, body .background-middle .common-select-gray .mat-mdc-floating-label, body.dark-theme .background-middle .common-select-gray .mat-mdc-select-value, body .background-middle .common-select-gray .mat-mdc-select-value, body.dark-theme .background-middle .common-select-gray .mat-mdc-select-value-text, body .background-middle .common-select-gray .mat-mdc-select-value-text, body.dark-theme .background-middle .common-select-gray .mat-mdc-select-arrow, body .background-middle .common-select-gray .mat-mdc-select-arrow, body.light-theme .background-middle .input-gray .mat-mdc-floating-label, body.light-theme .background-middle .input-gray .mat-mdc-select-value, body.light-theme .background-middle .input-gray .mat-mdc-select-value-text, body.light-theme .background-middle .input-gray .mat-mdc-select-arrow, body.light-theme .background-middle .textarea-gray .mat-mdc-floating-label, body.light-theme .background-middle .textarea-gray .mat-mdc-select-value, body.light-theme .background-middle .textarea-gray .mat-mdc-select-value-text, body.light-theme .background-middle .textarea-gray .mat-mdc-select-arrow, body.light-theme .background-middle .select-gray .mat-mdc-floating-label, body.light-theme .background-middle .select-gray .mat-mdc-select-value, body.light-theme .background-middle .select-gray .mat-mdc-select-value-text, body.light-theme .background-middle .select-gray .mat-mdc-select-arrow, body.light-theme .background-middle .select-yellow .mat-mdc-floating-label, body.light-theme .background-middle .select-yellow .mat-mdc-select-value, body.light-theme .background-middle .select-yellow .mat-mdc-select-value-text, body.light-theme .background-middle .select-yellow .mat-mdc-select-arrow, body.light-theme .background-middle .common-select-gray .mat-mdc-floating-label, body.light-theme .background-middle .common-select-gray .mat-mdc-select-value, body.light-theme .background-middle .common-select-gray .mat-mdc-select-value-text, body.light-theme .background-middle .common-select-gray .mat-mdc-select-arrow, body.motivatexr-theme .background-middle .input-gray .mat-mdc-floating-label, body.motivatexr-theme .background-middle .input-gray .mat-mdc-select-value, body.motivatexr-theme .background-middle .input-gray .mat-mdc-select-value-text, body.motivatexr-theme .background-middle .input-gray .mat-mdc-select-arrow, body.motivatexr-theme .background-middle .textarea-gray .mat-mdc-floating-label, body.motivatexr-theme .background-middle .textarea-gray .mat-mdc-select-value, body.motivatexr-theme .background-middle .textarea-gray .mat-mdc-select-value-text, body.motivatexr-theme .background-middle .textarea-gray .mat-mdc-select-arrow, body.motivatexr-theme .background-middle .select-gray .mat-mdc-floating-label, body.motivatexr-theme .background-middle .select-gray .mat-mdc-select-value, body.motivatexr-theme .background-middle .select-gray .mat-mdc-select-value-text, body.motivatexr-theme .background-middle .select-gray .mat-mdc-select-arrow, body.motivatexr-theme .background-middle .select-yellow .mat-mdc-floating-label, body.motivatexr-theme .background-middle .select-yellow .mat-mdc-select-value, body.motivatexr-theme .background-middle .select-yellow .mat-mdc-select-value-text, body.motivatexr-theme .background-middle .select-yellow .mat-mdc-select-arrow, body.motivatexr-theme .background-middle .common-select-gray .mat-mdc-floating-label, body.motivatexr-theme .background-middle .common-select-gray .mat-mdc-select-value, body.motivatexr-theme .background-middle .common-select-gray .mat-mdc-select-value-text, body.motivatexr-theme .background-middle .common-select-gray .mat-mdc-select-arrow {
  color: rgba(0, 0, 0, 0.87) !important;
}
body.dark-theme .background-middle .input-gray .mat-mdc-input-element, body .background-middle .input-gray .mat-mdc-input-element, body.dark-theme .background-middle .textarea-gray .mat-mdc-input-element, body .background-middle .textarea-gray .mat-mdc-input-element, body.dark-theme .background-middle .select-gray .mat-mdc-input-element, body .background-middle .select-gray .mat-mdc-input-element, body.dark-theme .background-middle .select-yellow .mat-mdc-input-element, body .background-middle .select-yellow .mat-mdc-input-element, body.dark-theme .background-middle .common-select-gray .mat-mdc-input-element, body .background-middle .common-select-gray .mat-mdc-input-element, body.light-theme .background-middle .input-gray .mat-mdc-input-element, body.light-theme .background-middle .textarea-gray .mat-mdc-input-element, body.light-theme .background-middle .select-gray .mat-mdc-input-element, body.light-theme .background-middle .select-yellow .mat-mdc-input-element, body.light-theme .background-middle .common-select-gray .mat-mdc-input-element, body.motivatexr-theme .background-middle .input-gray .mat-mdc-input-element, body.motivatexr-theme .background-middle .textarea-gray .mat-mdc-input-element, body.motivatexr-theme .background-middle .select-gray .mat-mdc-input-element, body.motivatexr-theme .background-middle .select-yellow .mat-mdc-input-element, body.motivatexr-theme .background-middle .common-select-gray .mat-mdc-input-element {
  color: rgba(0, 0, 0, 0.87) !important;
}
body.dark-theme .background-middle .input-gray .mat-mdc-text-field-wrapper, body .background-middle .input-gray .mat-mdc-text-field-wrapper, body.dark-theme .background-middle .textarea-gray .mat-mdc-text-field-wrapper, body .background-middle .textarea-gray .mat-mdc-text-field-wrapper, body.dark-theme .background-middle .select-gray .mat-mdc-text-field-wrapper, body .background-middle .select-gray .mat-mdc-text-field-wrapper, body.dark-theme .background-middle .select-yellow .mat-mdc-text-field-wrapper, body .background-middle .select-yellow .mat-mdc-text-field-wrapper, body.dark-theme .background-middle .common-select-gray .mat-mdc-text-field-wrapper, body .background-middle .common-select-gray .mat-mdc-text-field-wrapper, body.light-theme .background-middle .input-gray .mat-mdc-text-field-wrapper, body.light-theme .background-middle .textarea-gray .mat-mdc-text-field-wrapper, body.light-theme .background-middle .select-gray .mat-mdc-text-field-wrapper, body.light-theme .background-middle .select-yellow .mat-mdc-text-field-wrapper, body.light-theme .background-middle .common-select-gray .mat-mdc-text-field-wrapper, body.motivatexr-theme .background-middle .input-gray .mat-mdc-text-field-wrapper, body.motivatexr-theme .background-middle .textarea-gray .mat-mdc-text-field-wrapper, body.motivatexr-theme .background-middle .select-gray .mat-mdc-text-field-wrapper, body.motivatexr-theme .background-middle .select-yellow .mat-mdc-text-field-wrapper, body.motivatexr-theme .background-middle .common-select-gray .mat-mdc-text-field-wrapper {
  background-color: var(--surface-list-item) !important;
}
body.dark-theme .background-middle .common-select-gray .mat-mdc-select-trigger, body .background-middle .common-select-gray .mat-mdc-select-trigger, body.dark-theme .background-middle .common-select-grey .mat-mdc-select-trigger, body .background-middle .common-select-grey .mat-mdc-select-trigger, body.light-theme .background-middle .common-select-gray .mat-mdc-select-trigger, body.light-theme .background-middle .common-select-grey .mat-mdc-select-trigger, body.motivatexr-theme .background-middle .common-select-gray .mat-mdc-select-trigger, body.motivatexr-theme .background-middle .common-select-grey .mat-mdc-select-trigger {
  background-color: var(--surface-list-item) !important;
}
body.dark-theme .background-middle .mat-mdc-list, body .background-middle .mat-mdc-list, body.dark-theme .background-middle .mat-mdc-action-list, body .background-middle .mat-mdc-action-list, body.light-theme .background-middle .mat-mdc-list, body.light-theme .background-middle .mat-mdc-action-list, body.motivatexr-theme .background-middle .mat-mdc-list, body.motivatexr-theme .background-middle .mat-mdc-action-list {
  background-color: var(--surface-list-bg) !important;
}
body.dark-theme .background-middle .mat-mdc-list .mat-mdc-list-item, body .background-middle .mat-mdc-list .mat-mdc-list-item, body.dark-theme .background-middle .mat-mdc-action-list .mat-mdc-list-item, body .background-middle .mat-mdc-action-list .mat-mdc-list-item, body.light-theme .background-middle .mat-mdc-list .mat-mdc-list-item, body.light-theme .background-middle .mat-mdc-action-list .mat-mdc-list-item, body.motivatexr-theme .background-middle .mat-mdc-list .mat-mdc-list-item, body.motivatexr-theme .background-middle .mat-mdc-action-list .mat-mdc-list-item {
  background-color: var(--surface-list-item) !important;
}
body.dark-theme .background-middle .mat-mdc-list .mat-mdc-list-item .mdc-list-item__content, body .background-middle .mat-mdc-list .mat-mdc-list-item .mdc-list-item__content, body.dark-theme .background-middle .mat-mdc-action-list .mat-mdc-list-item .mdc-list-item__content, body .background-middle .mat-mdc-action-list .mat-mdc-list-item .mdc-list-item__content, body.light-theme .background-middle .mat-mdc-list .mat-mdc-list-item .mdc-list-item__content, body.light-theme .background-middle .mat-mdc-action-list .mat-mdc-list-item .mdc-list-item__content, body.motivatexr-theme .background-middle .mat-mdc-list .mat-mdc-list-item .mdc-list-item__content, body.motivatexr-theme .background-middle .mat-mdc-action-list .mat-mdc-list-item .mdc-list-item__content {
  color: rgba(0, 0, 0, 0.74) !important;
}
body.dark-theme .background-middle .mat-mdc-list .mat-mdc-list-item.augmented-manual-properties__list--selected, body .background-middle .mat-mdc-list .mat-mdc-list-item.augmented-manual-properties__list--selected, body.dark-theme .background-middle .mat-mdc-action-list .mat-mdc-list-item.augmented-manual-properties__list--selected, body .background-middle .mat-mdc-action-list .mat-mdc-list-item.augmented-manual-properties__list--selected, body.light-theme .background-middle .mat-mdc-list .mat-mdc-list-item.augmented-manual-properties__list--selected, body.light-theme .background-middle .mat-mdc-action-list .mat-mdc-list-item.augmented-manual-properties__list--selected, body.motivatexr-theme .background-middle .mat-mdc-list .mat-mdc-list-item.augmented-manual-properties__list--selected, body.motivatexr-theme .background-middle .mat-mdc-action-list .mat-mdc-list-item.augmented-manual-properties__list--selected {
  background-color: var(--tree-selected-bg) !important;
}
body.dark-theme .background-middle .mat-mdc-list .mat-mdc-list-item.augmented-manual-properties__list--selected .mdc-list-item__content, body .background-middle .mat-mdc-list .mat-mdc-list-item.augmented-manual-properties__list--selected .mdc-list-item__content,
body.dark-theme .background-middle .mat-mdc-list .mat-mdc-list-item.augmented-manual-properties__list--selected .mdc-list-item__primary-text,
body .background-middle .mat-mdc-list .mat-mdc-list-item.augmented-manual-properties__list--selected .mdc-list-item__primary-text, body.dark-theme .background-middle .mat-mdc-action-list .mat-mdc-list-item.augmented-manual-properties__list--selected .mdc-list-item__content, body .background-middle .mat-mdc-action-list .mat-mdc-list-item.augmented-manual-properties__list--selected .mdc-list-item__content,
body.dark-theme .background-middle .mat-mdc-action-list .mat-mdc-list-item.augmented-manual-properties__list--selected .mdc-list-item__primary-text,
body .background-middle .mat-mdc-action-list .mat-mdc-list-item.augmented-manual-properties__list--selected .mdc-list-item__primary-text, body.light-theme .background-middle .mat-mdc-list .mat-mdc-list-item.augmented-manual-properties__list--selected .mdc-list-item__content,
body.light-theme .background-middle .mat-mdc-list .mat-mdc-list-item.augmented-manual-properties__list--selected .mdc-list-item__primary-text, body.light-theme .background-middle .mat-mdc-action-list .mat-mdc-list-item.augmented-manual-properties__list--selected .mdc-list-item__content,
body.light-theme .background-middle .mat-mdc-action-list .mat-mdc-list-item.augmented-manual-properties__list--selected .mdc-list-item__primary-text, body.motivatexr-theme .background-middle .mat-mdc-list .mat-mdc-list-item.augmented-manual-properties__list--selected .mdc-list-item__content,
body.motivatexr-theme .background-middle .mat-mdc-list .mat-mdc-list-item.augmented-manual-properties__list--selected .mdc-list-item__primary-text, body.motivatexr-theme .background-middle .mat-mdc-action-list .mat-mdc-list-item.augmented-manual-properties__list--selected .mdc-list-item__content,
body.motivatexr-theme .background-middle .mat-mdc-action-list .mat-mdc-list-item.augmented-manual-properties__list--selected .mdc-list-item__primary-text {
  color: var(--object-tree-selected-text) !important;
}
body.dark-theme .background-middle .mat-mdc-list .mat-mdc-list-item.augmented-manual-properties__list--selected .mat-icon, body .background-middle .mat-mdc-list .mat-mdc-list-item.augmented-manual-properties__list--selected .mat-icon, body.dark-theme .background-middle .mat-mdc-action-list .mat-mdc-list-item.augmented-manual-properties__list--selected .mat-icon, body .background-middle .mat-mdc-action-list .mat-mdc-list-item.augmented-manual-properties__list--selected .mat-icon, body.light-theme .background-middle .mat-mdc-list .mat-mdc-list-item.augmented-manual-properties__list--selected .mat-icon, body.light-theme .background-middle .mat-mdc-action-list .mat-mdc-list-item.augmented-manual-properties__list--selected .mat-icon, body.motivatexr-theme .background-middle .mat-mdc-list .mat-mdc-list-item.augmented-manual-properties__list--selected .mat-icon, body.motivatexr-theme .background-middle .mat-mdc-action-list .mat-mdc-list-item.augmented-manual-properties__list--selected .mat-icon {
  color: var(--object-tree-selected-text) !important;
}
body.dark-theme .background-middle .mat-mdc-list.augmented-manual-properties__list::-webkit-scrollbar-thumb, body .background-middle .mat-mdc-list.augmented-manual-properties__list::-webkit-scrollbar-thumb, body.dark-theme .background-middle .mat-mdc-action-list.augmented-manual-properties__list::-webkit-scrollbar-thumb, body .background-middle .mat-mdc-action-list.augmented-manual-properties__list::-webkit-scrollbar-thumb, body.light-theme .background-middle .mat-mdc-list.augmented-manual-properties__list::-webkit-scrollbar-thumb, body.light-theme .background-middle .mat-mdc-action-list.augmented-manual-properties__list::-webkit-scrollbar-thumb, body.motivatexr-theme .background-middle .mat-mdc-list.augmented-manual-properties__list::-webkit-scrollbar-thumb, body.motivatexr-theme .background-middle .mat-mdc-action-list.augmented-manual-properties__list::-webkit-scrollbar-thumb {
  background: #202125;
  border-color: transparent;
}
body.dark-theme tiwp-reports .report-select.select-date .mat-date-range-input-inner, body tiwp-reports .report-select.select-date .mat-date-range-input-inner, body.light-theme tiwp-reports .report-select.select-date .mat-date-range-input-inner, body.motivatexr-theme tiwp-reports .report-select.select-date .mat-date-range-input-inner {
  color: var(--common-report-text);
}
body.dark-theme tiwp-reports .report-select.select-date .mat-date-range-input-separator, body tiwp-reports .report-select.select-date .mat-date-range-input-separator, body.light-theme tiwp-reports .report-select.select-date .mat-date-range-input-separator, body.motivatexr-theme tiwp-reports .report-select.select-date .mat-date-range-input-separator {
  color: var(--common-report-text);
}
body.dark-theme tiwp-reports .report-select .mat-mdc-text-field-wrapper, body tiwp-reports .report-select .mat-mdc-text-field-wrapper, body.light-theme tiwp-reports .report-select .mat-mdc-text-field-wrapper, body.motivatexr-theme tiwp-reports .report-select .mat-mdc-text-field-wrapper {
  border: 1px solid var(--item-text-color);
  background-color: var(--common-report-field-bg);
}
body.dark-theme tiwp-reports .report-select .mat-mdc-icon-button, body tiwp-reports .report-select .mat-mdc-icon-button, body.light-theme tiwp-reports .report-select .mat-mdc-icon-button, body.motivatexr-theme tiwp-reports .report-select .mat-mdc-icon-button {
  color: var(--common-report-text);
}
body.dark-theme tiwp-reports .report-select .mat-mdc-form-field, body tiwp-reports .report-select .mat-mdc-form-field, body.light-theme tiwp-reports .report-select .mat-mdc-form-field, body.motivatexr-theme tiwp-reports .report-select .mat-mdc-form-field {
  color: var(--common-report-text);
}
body.dark-theme tiwp-reports .report-select mat-label, body tiwp-reports .report-select mat-label, body.light-theme tiwp-reports .report-select mat-label, body.motivatexr-theme tiwp-reports .report-select mat-label {
  color: var(--common-report-text);
}
body.dark-theme tiwp-reports .report-select .mat-mdc-select-min-line, body tiwp-reports .report-select .mat-mdc-select-min-line, body.light-theme tiwp-reports .report-select .mat-mdc-select-min-line, body.motivatexr-theme tiwp-reports .report-select .mat-mdc-select-min-line {
  color: var(--common-report-text);
}
body.dark-theme .mat-mdc-select-panel, body .mat-mdc-select-panel, body.light-theme .mat-mdc-select-panel, body.motivatexr-theme .mat-mdc-select-panel {
  background-color: var(--surface-select-search) !important;
}
body.dark-theme .mat-mdc-select-panel .tiwp-reports-option, body .mat-mdc-select-panel .tiwp-reports-option, body.light-theme .mat-mdc-select-panel .tiwp-reports-option, body.motivatexr-theme .mat-mdc-select-panel .tiwp-reports-option {
  background-color: var(--surface-select-search) !important;
}
body.dark-theme .mat-mdc-select-panel .tiwp-reports-option.search, body .mat-mdc-select-panel .tiwp-reports-option.search, body.light-theme .mat-mdc-select-panel .tiwp-reports-option.search, body.motivatexr-theme .mat-mdc-select-panel .tiwp-reports-option.search {
  color: var(--common-select-panel-text) !important;
  background-color: var(--surface-select-search) !important;
}
body.dark-theme .mat-mdc-select-panel .tiwp-reports-option .mat-select-search-no-entries-found, body .mat-mdc-select-panel .tiwp-reports-option .mat-select-search-no-entries-found, body.light-theme .mat-mdc-select-panel .tiwp-reports-option .mat-select-search-no-entries-found, body.motivatexr-theme .mat-mdc-select-panel .tiwp-reports-option .mat-select-search-no-entries-found {
  color: var(--common-select-panel-muted) !important;
}
body.dark-theme .mat-mdc-select-panel .tiwp-reports-option .mdc-list-item__primary-text, body .mat-mdc-select-panel .tiwp-reports-option .mdc-list-item__primary-text, body.light-theme .mat-mdc-select-panel .tiwp-reports-option .mdc-list-item__primary-text, body.motivatexr-theme .mat-mdc-select-panel .tiwp-reports-option .mdc-list-item__primary-text {
  color: var(--common-select-panel-text) !important;
}
body.dark-theme .mat-mdc-select-panel .tiwp-reports-option .mdc-list-item__primary-text .mat-select-search-clear, body .mat-mdc-select-panel .tiwp-reports-option .mdc-list-item__primary-text .mat-select-search-clear, body.light-theme .mat-mdc-select-panel .tiwp-reports-option .mdc-list-item__primary-text .mat-select-search-clear, body.motivatexr-theme .mat-mdc-select-panel .tiwp-reports-option .mdc-list-item__primary-text .mat-select-search-clear {
  color: var(--common-select-search-text) !important;
}
body.dark-theme .mat-mdc-select-panel .tiwp-reports-option .mat-select-search-input, body .mat-mdc-select-panel .tiwp-reports-option .mat-select-search-input, body.light-theme .mat-mdc-select-panel .tiwp-reports-option .mat-select-search-input, body.motivatexr-theme .mat-mdc-select-panel .tiwp-reports-option .mat-select-search-input {
  color: var(--common-select-search-text) !important;
  background-color: var(--surface-select-search) !important;
}
body.dark-theme .select-gray, body .select-gray, body.dark-theme .select-yellow, body .select-yellow, body.dark-theme .common-select-gray, body .common-select-gray, body.light-theme .select-gray, body.light-theme .select-yellow, body.light-theme .common-select-gray, body.motivatexr-theme .select-gray, body.motivatexr-theme .select-yellow, body.motivatexr-theme .common-select-gray {
  --mdc-filled-text-field-label-text-color: rgba(0, 0, 0, 0.87);
  --mdc-filled-text-field-disabled-label-text-color: rgba(0, 0, 0, 0.6);
  --mdc-filled-text-field-disabled-input-text-color: rgba(0, 0, 0, 0.6);
}
body.dark-theme .select-gray mat-label, body .select-gray mat-label, body.dark-theme .select-gray .mat-mdc-floating-label, body .select-gray .mat-mdc-floating-label, body.dark-theme .select-gray .mat-hint, body .select-gray .mat-hint, body.dark-theme .select-yellow mat-label, body .select-yellow mat-label, body.dark-theme .select-yellow .mat-mdc-floating-label, body .select-yellow .mat-mdc-floating-label, body.dark-theme .select-yellow .mat-hint, body .select-yellow .mat-hint, body.dark-theme .common-select-gray mat-label, body .common-select-gray mat-label, body.dark-theme .common-select-gray .mat-mdc-floating-label, body .common-select-gray .mat-mdc-floating-label, body.dark-theme .common-select-gray .mat-hint, body .common-select-gray .mat-hint, body.light-theme .select-gray mat-label, body.light-theme .select-gray .mat-mdc-floating-label, body.light-theme .select-gray .mat-hint, body.light-theme .select-yellow mat-label, body.light-theme .select-yellow .mat-mdc-floating-label, body.light-theme .select-yellow .mat-hint, body.light-theme .common-select-gray mat-label, body.light-theme .common-select-gray .mat-mdc-floating-label, body.light-theme .common-select-gray .mat-hint, body.motivatexr-theme .select-gray mat-label, body.motivatexr-theme .select-gray .mat-mdc-floating-label, body.motivatexr-theme .select-gray .mat-hint, body.motivatexr-theme .select-yellow mat-label, body.motivatexr-theme .select-yellow .mat-mdc-floating-label, body.motivatexr-theme .select-yellow .mat-hint, body.motivatexr-theme .common-select-gray mat-label, body.motivatexr-theme .common-select-gray .mat-mdc-floating-label, body.motivatexr-theme .common-select-gray .mat-hint {
  color: rgba(0, 0, 0, 0.87) !important;
}
body.dark-theme .select-gray .mat-mdc-select-value-text, body .select-gray .mat-mdc-select-value-text, body.dark-theme .select-yellow .mat-mdc-select-value-text, body .select-yellow .mat-mdc-select-value-text, body.dark-theme .common-select-gray .mat-mdc-select-value-text, body .common-select-gray .mat-mdc-select-value-text, body.light-theme .select-gray .mat-mdc-select-value-text, body.light-theme .select-yellow .mat-mdc-select-value-text, body.light-theme .common-select-gray .mat-mdc-select-value-text, body.motivatexr-theme .select-gray .mat-mdc-select-value-text, body.motivatexr-theme .select-yellow .mat-mdc-select-value-text, body.motivatexr-theme .common-select-gray .mat-mdc-select-value-text {
  color: rgba(0, 0, 0, 0.87) !important;
}
body.dark-theme .select-gray .mat-mdc-select-arrow, body .select-gray .mat-mdc-select-arrow, body.dark-theme .select-yellow .mat-mdc-select-arrow, body .select-yellow .mat-mdc-select-arrow, body.dark-theme .common-select-gray .mat-mdc-select-arrow, body .common-select-gray .mat-mdc-select-arrow, body.light-theme .select-gray .mat-mdc-select-arrow, body.light-theme .select-yellow .mat-mdc-select-arrow, body.light-theme .common-select-gray .mat-mdc-select-arrow, body.motivatexr-theme .select-gray .mat-mdc-select-arrow, body.motivatexr-theme .select-yellow .mat-mdc-select-arrow, body.motivatexr-theme .common-select-gray .mat-mdc-select-arrow {
  color: var(--item-text-color) !important;
}
body.dark-theme .select-gray .mat-mdc-text-field-wrapper, body .select-gray .mat-mdc-text-field-wrapper, body.dark-theme .select-yellow .mat-mdc-text-field-wrapper, body .select-yellow .mat-mdc-text-field-wrapper, body.dark-theme .common-select-gray .mat-mdc-text-field-wrapper, body .common-select-gray .mat-mdc-text-field-wrapper, body.light-theme .select-gray .mat-mdc-text-field-wrapper, body.light-theme .select-yellow .mat-mdc-text-field-wrapper, body.light-theme .common-select-gray .mat-mdc-text-field-wrapper, body.motivatexr-theme .select-gray .mat-mdc-text-field-wrapper, body.motivatexr-theme .select-yellow .mat-mdc-text-field-wrapper, body.motivatexr-theme .common-select-gray .mat-mdc-text-field-wrapper {
  background-color: var(--surface-input) !important;
}
body.dark-theme .select-gray .mat-mdc-form-field.mat-focused .mat-mdc-select-arrow, body .select-gray .mat-mdc-form-field.mat-focused .mat-mdc-select-arrow,
body.dark-theme .select-gray .mat-mdc-form-field.mat-focused .mat-mdc-floating-label,
body .select-gray .mat-mdc-form-field.mat-focused .mat-mdc-floating-label, body.dark-theme .select-yellow .mat-mdc-form-field.mat-focused .mat-mdc-select-arrow, body .select-yellow .mat-mdc-form-field.mat-focused .mat-mdc-select-arrow,
body.dark-theme .select-yellow .mat-mdc-form-field.mat-focused .mat-mdc-floating-label,
body .select-yellow .mat-mdc-form-field.mat-focused .mat-mdc-floating-label, body.dark-theme .common-select-gray .mat-mdc-form-field.mat-focused .mat-mdc-select-arrow, body .common-select-gray .mat-mdc-form-field.mat-focused .mat-mdc-select-arrow,
body.dark-theme .common-select-gray .mat-mdc-form-field.mat-focused .mat-mdc-floating-label,
body .common-select-gray .mat-mdc-form-field.mat-focused .mat-mdc-floating-label, body.light-theme .select-gray .mat-mdc-form-field.mat-focused .mat-mdc-select-arrow,
body.light-theme .select-gray .mat-mdc-form-field.mat-focused .mat-mdc-floating-label, body.light-theme .select-yellow .mat-mdc-form-field.mat-focused .mat-mdc-select-arrow,
body.light-theme .select-yellow .mat-mdc-form-field.mat-focused .mat-mdc-floating-label, body.light-theme .common-select-gray .mat-mdc-form-field.mat-focused .mat-mdc-select-arrow,
body.light-theme .common-select-gray .mat-mdc-form-field.mat-focused .mat-mdc-floating-label, body.motivatexr-theme .select-gray .mat-mdc-form-field.mat-focused .mat-mdc-select-arrow,
body.motivatexr-theme .select-gray .mat-mdc-form-field.mat-focused .mat-mdc-floating-label, body.motivatexr-theme .select-yellow .mat-mdc-form-field.mat-focused .mat-mdc-select-arrow,
body.motivatexr-theme .select-yellow .mat-mdc-form-field.mat-focused .mat-mdc-floating-label, body.motivatexr-theme .common-select-gray .mat-mdc-form-field.mat-focused .mat-mdc-select-arrow,
body.motivatexr-theme .common-select-gray .mat-mdc-form-field.mat-focused .mat-mdc-floating-label {
  color: var(--item-text-selected-color) !important;
}
body.dark-theme .select-gray .mdc-line-ripple::after, body .select-gray .mdc-line-ripple::after,
body.dark-theme .select-gray .mdc-line-ripple::before,
body .select-gray .mdc-line-ripple::before, body.dark-theme .select-yellow .mdc-line-ripple::after, body .select-yellow .mdc-line-ripple::after,
body.dark-theme .select-yellow .mdc-line-ripple::before,
body .select-yellow .mdc-line-ripple::before, body.dark-theme .common-select-gray .mdc-line-ripple::after, body .common-select-gray .mdc-line-ripple::after,
body.dark-theme .common-select-gray .mdc-line-ripple::before,
body .common-select-gray .mdc-line-ripple::before, body.light-theme .select-gray .mdc-line-ripple::after,
body.light-theme .select-gray .mdc-line-ripple::before, body.light-theme .select-yellow .mdc-line-ripple::after,
body.light-theme .select-yellow .mdc-line-ripple::before, body.light-theme .common-select-gray .mdc-line-ripple::after,
body.light-theme .common-select-gray .mdc-line-ripple::before, body.motivatexr-theme .select-gray .mdc-line-ripple::after,
body.motivatexr-theme .select-gray .mdc-line-ripple::before, body.motivatexr-theme .select-yellow .mdc-line-ripple::after,
body.motivatexr-theme .select-yellow .mdc-line-ripple::before, body.motivatexr-theme .common-select-gray .mdc-line-ripple::after,
body.motivatexr-theme .common-select-gray .mdc-line-ripple::before {
  background-color: transparent !important;
}
body.dark-theme .select-gray__error, body .select-gray__error, body.dark-theme .select-yellow__error, body .select-yellow__error, body.dark-theme .common-select-gray__error, body .common-select-gray__error, body.light-theme .select-gray__error, body.light-theme .select-yellow__error, body.light-theme .common-select-gray__error, body.motivatexr-theme .select-gray__error, body.motivatexr-theme .select-yellow__error, body.motivatexr-theme .common-select-gray__error {
  background: white !important;
  border-left: 4px var(--primary-color) solid !important;
}
body.dark-theme .select-gray__with-resetting .mdc-line-ripple, body .select-gray__with-resetting .mdc-line-ripple, body.dark-theme .select-yellow__with-resetting .mdc-line-ripple, body .select-yellow__with-resetting .mdc-line-ripple, body.dark-theme .common-select-gray__with-resetting .mdc-line-ripple, body .common-select-gray__with-resetting .mdc-line-ripple, body.light-theme .select-gray__with-resetting .mdc-line-ripple, body.light-theme .select-yellow__with-resetting .mdc-line-ripple, body.light-theme .common-select-gray__with-resetting .mdc-line-ripple, body.motivatexr-theme .select-gray__with-resetting .mdc-line-ripple, body.motivatexr-theme .select-yellow__with-resetting .mdc-line-ripple, body.motivatexr-theme .common-select-gray__with-resetting .mdc-line-ripple {
  color: var(--primary-color);
}
body.dark-theme .select-yellow .mat-mdc-text-field-wrapper, body .select-yellow .mat-mdc-text-field-wrapper, body.light-theme .select-yellow .mat-mdc-text-field-wrapper, body.motivatexr-theme .select-yellow .mat-mdc-text-field-wrapper {
  background-color: var(--common-select-yellow-bg) !important;
}
body.dark-theme .border-gray, body .border-gray, body.light-theme .border-gray, body.motivatexr-theme .border-gray {
  border-color: var(--common-border-gray) !important;
}
body.dark-theme .border-l-gray, body .border-l-gray, body.light-theme .border-l-gray, body.motivatexr-theme .border-l-gray {
  border-left-color: var(--common-border-gray) !important;
}
body.dark-theme .border-light-gray, body .border-light-gray, body.light-theme .border-light-gray, body.motivatexr-theme .border-light-gray {
  border-color: #d9d9d9 !important;
}
body.dark-theme .border-l-light-gray, body .border-l-light-gray, body.light-theme .border-l-light-gray, body.motivatexr-theme .border-l-light-gray {
  border-left-color: #d9d9d9 !important;
}
body.dark-theme .border-color, body .border-color, body.light-theme .border-color, body.motivatexr-theme .border-color {
  border-color: var(--primary-color) !important;
}
body.dark-theme .border-l-color, body .border-l-color, body.light-theme .border-l-color, body.motivatexr-theme .border-l-color {
  border-left-color: var(--primary-color) !important;
}
body.dark-theme .question-details .answer-icons, body .question-details .answer-icons, body.light-theme .question-details .answer-icons, body.motivatexr-theme .question-details .answer-icons {
  background-color: var(--primary-color);
  color: #ffffff !important;
}
body.dark-theme .question-details__wrong-time-gap .mat-mdc-slider.mat-primary:not(.mat-warn) .mdc-slider__value-indicator-text, body .question-details__wrong-time-gap .mat-mdc-slider.mat-primary:not(.mat-warn) .mdc-slider__value-indicator-text,
body.dark-theme .question-details__wrong-time-gap .mat-mdc-slider.mat-primary:not(.mat-warn) .mdc-slider__value-indicator span,
body .question-details__wrong-time-gap .mat-mdc-slider.mat-primary:not(.mat-warn) .mdc-slider__value-indicator span,
body.dark-theme .question-details__wrong-time-gap .mat-mdc-slider.mat-accent:not(.mat-warn) .mdc-slider__value-indicator-text,
body .question-details__wrong-time-gap .mat-mdc-slider.mat-accent:not(.mat-warn) .mdc-slider__value-indicator-text,
body.dark-theme .question-details__wrong-time-gap .mat-mdc-slider.mat-accent:not(.mat-warn) .mdc-slider__value-indicator span,
body .question-details__wrong-time-gap .mat-mdc-slider.mat-accent:not(.mat-warn) .mdc-slider__value-indicator span, body.light-theme .question-details__wrong-time-gap .mat-mdc-slider.mat-primary:not(.mat-warn) .mdc-slider__value-indicator-text,
body.light-theme .question-details__wrong-time-gap .mat-mdc-slider.mat-primary:not(.mat-warn) .mdc-slider__value-indicator span,
body.light-theme .question-details__wrong-time-gap .mat-mdc-slider.mat-accent:not(.mat-warn) .mdc-slider__value-indicator-text,
body.light-theme .question-details__wrong-time-gap .mat-mdc-slider.mat-accent:not(.mat-warn) .mdc-slider__value-indicator span, body.motivatexr-theme .question-details__wrong-time-gap .mat-mdc-slider.mat-primary:not(.mat-warn) .mdc-slider__value-indicator-text,
body.motivatexr-theme .question-details__wrong-time-gap .mat-mdc-slider.mat-primary:not(.mat-warn) .mdc-slider__value-indicator span,
body.motivatexr-theme .question-details__wrong-time-gap .mat-mdc-slider.mat-accent:not(.mat-warn) .mdc-slider__value-indicator-text,
body.motivatexr-theme .question-details__wrong-time-gap .mat-mdc-slider.mat-accent:not(.mat-warn) .mdc-slider__value-indicator span {
  color: var(--common-question-warn);
}

body.dark-theme .augmented-manual-properties__list .mat-mdc-list-item, body .augmented-manual-properties__list .mat-mdc-list-item, body.motivatexr-theme .augmented-manual-properties__list .mat-mdc-list-item {
  background-color: #d4d4d4;
}
body.dark-theme .augmented-manual-properties__list::-webkit-scrollbar-thumb, body .augmented-manual-properties__list::-webkit-scrollbar-thumb, body.motivatexr-theme .augmented-manual-properties__list::-webkit-scrollbar-thumb {
  background: var(--surface-panel);
  border-color: transparent;
}
body.dark-theme .augmented-manual-properties__list--selected, body .augmented-manual-properties__list--selected, body.motivatexr-theme .augmented-manual-properties__list--selected {
  background-color: var(--tree-selected-bg) !important;
  color: var(--object-tree-selected-text) !important;
}
body.dark-theme .augmented-manual-properties__list--selected .mdc-list-item__content, body .augmented-manual-properties__list--selected .mdc-list-item__content,
body.dark-theme .augmented-manual-properties__list--selected .mdc-list-item__primary-text,
body .augmented-manual-properties__list--selected .mdc-list-item__primary-text,
body.dark-theme .augmented-manual-properties__list--selected .mat-icon,
body .augmented-manual-properties__list--selected .mat-icon, body.motivatexr-theme .augmented-manual-properties__list--selected .mdc-list-item__content,
body.motivatexr-theme .augmented-manual-properties__list--selected .mdc-list-item__primary-text,
body.motivatexr-theme .augmented-manual-properties__list--selected .mat-icon {
  color: var(--object-tree-selected-text) !important;
}

body.light-theme .profile-form .background-middle, body.light-theme .admin-form .background-middle, body.light-theme .help-lobby-form .background-middle, body.light-theme .profile-form .background-middle {
  background-color: #d9d9d9 !important;
}
body.light-theme .profile-form .object-tree .object-tree__item-box.object-tree__selected, body.light-theme .admin-form .object-tree .object-tree__item-box.object-tree__selected, body.light-theme .help-lobby-form .object-tree .object-tree__item-box.object-tree__selected, body.light-theme .profile-form .object-tree .object-tree__item-box.object-tree__selected {
  background-color: var(--tree-selected-bg) !important;
}
body.light-theme .background-middle .input-gray .input-light-gray {
  background-color: #f7f7f7 !important;
  color: rgba(0, 0, 0, 0.87) !important;
}

body.motivatexr-theme tiwp-reports .report-select mat-label, body.motivatexr-theme tiwp-reports .report-select .mat-mdc-floating-label, body.motivatexr-theme tiwp-reports .report-select .mat-hint {
  color: #000 !important;
}
body.motivatexr-theme tiwp-reports .report-select .mat-mdc-select-arrow {
  color: #000 !important;
}

tiwp-asset3d-panel .asset3d-properties .mat-mdc-text-field-wrapper {
  max-height: 3.5rem !important;
}
tiwp-asset3d-panel .asset3d-properties .mat-expansion-panel-body {
  padding: 0 !important;
}

tiwp-edit-object-properties .sheet-container .mat-mdc-text-field-wrapper {
  padding-bottom: 0.5em;
}
tiwp-edit-object-properties .sheet-container .mdc-line-ripple {
  bottom: 0.5em;
}

tiwp-poi-view-dialog .mat-mdc-text-field-wrapper {
  max-height: 3.5rem !important;
}
tiwp-poi-view-dialog .poi-view-dialog-main .mat-mdc-form-field {
  width: 100%;
  max-width: 100%;
}

tiwp-poi-panel .poi-properties .mat-mdc-text-field-wrapper {
  max-height: 3.5rem !important;
}
tiwp-poi-panel .poi-properties .mat-expansion-panel-body {
  padding: 0 !important;
}

tiwp-scene3d-properties .scene3d-properties .mat-expansion-panel-content {
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
}

tiwp-scene3d-properties .scene3d-properties .mat-expansion-panel-body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
  min-width: 0;
  overflow: auto;
  padding: 0 0 2rem 0 !important;
}

tiwp-scene3d-properties .scene-details .mat-mdc-text-field-wrapper {
  padding-bottom: 0;
  max-height: 4rem !important;
  width: 100%;
  box-sizing: border-box;
}
tiwp-scene3d-properties .scene-details .input-gray .mat-mdc-form-field {
  width: 100%;
  max-width: 100%;
}
tiwp-scene3d-properties .scene-details .input-gray .mat-mdc-form-field-flex {
  width: 100%;
  min-width: 0;
}
tiwp-scene3d-properties .scene-details .input-gray .mat-mdc-form-field-infix {
  flex: 1 1 auto;
  min-width: 0;
}

tiwp-login .login-background .input-gray .mat-mdc-text-field-wrapper,
tiwp-login-tecnalia .login-background .input-gray .mat-mdc-text-field-wrapper,
tiwp-login-motivate-xr .login-background .input-gray .mat-mdc-text-field-wrapper {
  padding-left: 0.4rem !important;
  padding-right: 0.4rem !important;
}
tiwp-login .login-background .input-gray form > mat-form-field:nth-child(1),
tiwp-login-tecnalia .login-background .input-gray form > mat-form-field:nth-child(1),
tiwp-login-motivate-xr .login-background .input-gray form > mat-form-field:nth-child(1) {
  position: relative;
  z-index: 2;
}
tiwp-login .login-background .input-gray form > mat-form-field:nth-child(2),
tiwp-login-tecnalia .login-background .input-gray form > mat-form-field:nth-child(2),
tiwp-login-motivate-xr .login-background .input-gray form > mat-form-field:nth-child(2) {
  position: relative;
  z-index: 1;
}
tiwp-login .login-background .input-gray .mat-mdc-form-field-subscript-wrapper,
tiwp-login-tecnalia .login-background .input-gray .mat-mdc-form-field-subscript-wrapper,
tiwp-login-motivate-xr .login-background .input-gray .mat-mdc-form-field-subscript-wrapper {
  position: relative;
  z-index: 1;
  background-color: var(--login-bg);
  border-radius: 2px;
}

tiwp-geometry-question .geometry-question .mat-mdc-list {
  padding: 0 !important;
}
tiwp-geometry-question .geometry-question .mat-mdc-list .mdc-form-field .mdc-label {
  color: rgba(0, 0, 0, 0.87) !important;
}
tiwp-geometry-question .geometry-question .mat-mdc-list .mdc-checkbox__background {
  border-color: rgba(0, 0, 0, 0.87) !important;
}
tiwp-geometry-question .geometry-question .mat-mdc-list .mdc-checkbox__checkmark-path {
  stroke: rgba(255, 255, 255, 0.87) !important;
}
tiwp-geometry-question .geometry-question .mat-mdc-list .mdc-checkbox__mixedmark {
  border-color: rgba(255, 255, 255, 0.87) !important;
}
tiwp-geometry-question .geometry-question .mat-expansion-panel-body {
  padding: 0 !important;
}
tiwp-geometry-question .geometry-question tiwp-tab-bar .tab-group .mat-mdc-tab {
  opacity: 1 !important;
}
tiwp-geometry-question .geometry-question tiwp-tab-bar .tab-group .mdc-tab__text-label {
  color: var(--text-disabled) !important;
}
tiwp-geometry-question .geometry-question tiwp-tab-bar .tab-group .mdc-tab--active .mdc-tab__text-label {
  color: var(--item-text-selected-color) !important;
}

tiwp-geometry-question .geometry-question__model-content > .mat-mdc-tab-group.secondary-tab-group > .mat-mdc-tab-header {
  padding-right: calc(var(--gq-model-filter-w) + 0.5rem);
  box-sizing: border-box;
}
@media (max-width: 720px) {
  tiwp-geometry-question .geometry-question__model-content > .mat-mdc-tab-group.secondary-tab-group > .mat-mdc-tab-header {
    padding-right: 0;
  }
}

tiwp-geometry-question .geometry-question__model-filter .geometry-question__model-filter-field.mat-mdc-form-field {
  width: 100%;
  height: 28px;
}
tiwp-geometry-question .geometry-question__model-filter .mat-mdc-form-field-subscript-wrapper {
  display: none !important;
}
tiwp-geometry-question .geometry-question__model-filter .mat-mdc-form-field-flex {
  height: 28px;
  align-items: center;
}
tiwp-geometry-question .geometry-question__model-filter .mat-mdc-text-field-wrapper {
  height: 28px !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  overflow: visible;
}
tiwp-geometry-question .geometry-question__model-filter .mdc-text-field--filled {
  height: 28px !important;
  align-items: center;
  overflow: visible;
  --mdc-filled-text-field-container-height: 28px;
}
tiwp-geometry-question .geometry-question__model-filter .mat-mdc-form-field-infix {
  min-height: 0 !important;
  height: 28px;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  border-top: 0 !important;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  overflow: visible;
}
tiwp-geometry-question .geometry-question__model-filter .geometry-question__model-filter-field input.mat-mdc-input-element {
  align-self: center;
  line-height: normal !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin: 0 !important;
  color: var(--text-primary) !important;
}
tiwp-geometry-question .geometry-question__model-filter .geometry-question__model-filter-field input.mat-mdc-input-element::placeholder {
  color: var(--text-disabled, rgba(0, 0, 0, 0.5));
  opacity: 1;
}
tiwp-geometry-question .geometry-question__model-filter .mdc-line-ripple {
  background-color: #686868 !important;
}
tiwp-geometry-question .geometry-question__model-filter .mat-mdc-form-field.mat-focused .mdc-line-ripple::after {
  background-color: var(--text-primary) !important;
}

tiwp-question-details .question-details .mat-expansion-panel-body {
  padding: 0;
}
tiwp-question-details .question-details .question-details__answer-tab-input .mat-mdc-text-field-wrapper {
  padding-bottom: 0 !important;
}

tiwp-object-tree .object-tree .mat-expansion-panel:not(.mat-expanded),
tiwp-object-tree .object-tree .mat-expansion-panel:not(.mat-expansion-panel-spacing),
tiwp-object-tree .object-tree .mat-expansion-panel:not([class*=mat-elevation-z]),
tiwp-object-tree .object-tree .mat-expansion-panel:last-of-type,
tiwp-object-tree .object-tree .mat-expansion-panel:first-of-type {
  border: none;
  border-radius: 0;
}
tiwp-object-tree .object-tree .mat-expansion-panel-body {
  padding: 0 !important;
}

twip-themed-classroom .themed-classroom .mat-expansion-panel-body {
  padding: 0 !important;
}

tiwp-scene-details .scene-details .mat-expansion-panel-body {
  padding: 0;
}

tiwp-object-properties .object-properties .mat-expansion-panel-content {
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
}

tiwp-object-properties .object-properties .mat-expansion-panel-body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
  min-width: 0;
  overflow: auto;
  padding: 0 0 2rem 0 !important;
}

tiwp-augmented-manual-properties-new-box .augmented-manual-new-properties .mat-expansion-panel-body {
  padding: 0 !important;
}

tiwp-augmented-manual-edit-bar .mat-button-toggle-label-content {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 100%;
  padding: 0 !important;
}

tiwp-augmented-manual-properties-box .augmented-manual-properties__name-field .input-gray .mat-mdc-form-field-infix {
  padding-bottom: 0.5rem !important;
}
tiwp-augmented-manual-properties-box .augmented-manual-properties__name-field .input-gray .mat-mdc-text-field-wrapper {
  padding-bottom: 0.5rem !important;
}
tiwp-augmented-manual-properties-box .augmented-manual-properties__name-field .input-gray .mat-mdc-form-field-subscript-wrapper {
  min-height: 1rem;
}
tiwp-augmented-manual-properties-box .augmented-manual-properties__name-field.augmented-manual-properties__name-field--marker {
  margin-bottom: 0.3rem;
}

tiwp-augmented-manual-properties-box .augmented-manual-properties__input .mat-mdc-form-field {
  color: white !important;
}
tiwp-augmented-manual-properties-box .augmented-manual-properties__input .mat-mdc-form-field .mat-mdc-form-field-infix {
  width: auto !important;
}
tiwp-augmented-manual-properties-box .augmented-manual-properties__input .mat-mdc-form-field .mdc-line-ripple::before {
  background-color: transparent !important;
  border-top: 1px dotted white !important;
}
tiwp-augmented-manual-properties-box .augmented-manual-properties__input .mat-mdc-form-field .mdc-line-ripple::after {
  background-color: white !important;
}
tiwp-augmented-manual-properties-box .augmented-manual-properties__input .mat-mdc-form-field .mat-mdc-text-field-wrapper {
  background-color: transparent !important;
}

tiwp-augmented-manual-properties-box .augmented-manual-properties__selection-in-events .mat-mdc-text-field-wrapper {
  padding-bottom: 0.25rem !important;
}
tiwp-augmented-manual-properties-box .augmented-manual-properties__selection-in-events .mat-mdc-form-field-infix {
  min-height: 3.375rem;
}
tiwp-augmented-manual-properties-box .augmented-manual-properties__selection-in-events .mat-mdc-floating-label,
tiwp-augmented-manual-properties-box .augmented-manual-properties__selection-in-events .mdc-floating-label {
  font-size: 1.0625rem !important;
  line-height: 1.4375rem !important;
}
tiwp-augmented-manual-properties-box .augmented-manual-properties__selection-in-events .mat-mdc-select-value-text,
tiwp-augmented-manual-properties-box .augmented-manual-properties__selection-in-events .mat-mdc-select-min-line,
tiwp-augmented-manual-properties-box .augmented-manual-properties__selection-in-events .mat-mdc-select-trigger {
  font-size: 0.9375rem !important;
  line-height: 1.375rem !important;
}

tiwp-augmented-manual-properties-box .augmented-manual-properties__list .mat-mdc-list-item {
  min-height: 2.5rem;
  height: auto;
  margin-top: 2px;
}
tiwp-augmented-manual-properties-box .augmented-manual-properties__list .mdc-list-item__primary-text {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

tiwp-augmented-manual-properties-box .augmented-manual-properties .mat-expansion-panel-content {
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
}

tiwp-augmented-manual-properties-box .augmented-manual-properties .mat-expansion-panel-body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
  min-width: 0;
  overflow: hidden;
  padding: 0 !important;
}

tiwp-animation-timeline .values-area .mat-mdc-text-field-wrapper {
  padding-bottom: 0 !important;
}
tiwp-animation-timeline .values-area .key-values .mat-mdc-form-field.input-x .mat-mdc-floating-label {
  color: #ff8383 !important;
}
tiwp-animation-timeline .values-area .key-values .mat-mdc-form-field.input-y .mat-mdc-floating-label {
  color: #05c900 !important;
}
tiwp-animation-timeline .values-area .key-values .mat-mdc-form-field.input-z .mat-mdc-floating-label {
  color: #1f78ff !important;
}

tiwp-create-marker-dialog .mdc-list-item__content {
  width: 100%;
}

body {
  cursor: default; /* cursor por defecto */
}
body .axis-color-x {
  background-color: #EF3141;
  color: #ffffff;
}
body .axis-color-y {
  background-color: #76CB33;
  color: #ffffff;
}
body .axis-color-z {
  background-color: #348EED;
  color: #ffffff;
}
body .login-background .logo-min-size {
  min-width: 499px;
  min-height: 86px;
}
body tiwp-play-dialog .container .mat-mdc-button.mat-mdc-button-base {
  background-color: transparent !important;
  color: var(--primary-color-disabled) !important;
}
body tiwp-play-dialog .container .mat-mdc-button.mat-mdc-button-base:hover {
  background-color: transparent !important;
  color: var(--primary-color) !important;
}
body tiwp-poi-view-dialog .poi-view-dialog-body {
  background-color: #d9d9d9;
}
body tiwp-poi-view-dialog .poi-view-dialog-body .grid-container {
  background-color: #d9d9d9;
}
body tiwp-poi-view-dialog .poi-view-dialog-body .image-wrapper {
  border-color: transparent;
  background-color: transparent;
}
body tiwp-poi-view-dialog .poi-view-dialog-body .image-wrapper.active {
  border-color: var(--primary-color) !important;
  background-color: #ffffff;
}
body tiwp-poi-view-dialog .poi-view-dialog-body button.selected {
  background-color: var(--primary-color);
  color: #d9d9d9;
}
body tiwp-create-marker-dialog .item-list {
  border-color: #d9d9d9;
  background-color: #ffffff;
}
body tiwp-create-marker-dialog .label-type {
  color: rgba(0, 0, 0, 0.54);
}
body tiwp-create-marker-dialog .item-box {
  border-bottom-color: #d9d9d9;
}
body tiwp-asset-selection-dialog .assets-container {
  height: 55vh;
  overflow: auto !important;
}
body tiwp-item-selection-dialog .bg-image-selection {
  background-color: #ffffff !important;
}
body tiwp-filter-bar mat-toolbar > div > a {
  color: #000;
}
body tiwp-object-tree .object-tree .mat-expansion-indicator::after {
  color: #ffffff !important;
}
body tiwp-object-tree .object-tree .mat-expansion-panel.mat-expansion-panel-header.cdk-keyboard-focused:not([aria-disabled=true]),
body tiwp-object-tree .object-tree .mat-expansion-panel.mat-expansion-panel-header.cdk-program-focused:not([aria-disabled=true]),
body tiwp-object-tree .object-tree .mat-expansion-panel:not(.mat-expanded).mat-expansion-panel-header:hover:not([aria-disabled=true]),
body tiwp-object-tree .object-tree .mat-expansion-panel-header.mat-expanded:focus,
body tiwp-object-tree .object-tree .mat-expansion-panel-header.mat-expanded:hover {
  background-color: #000;
}
body tiwp-object-tree .object-tree .mat-expansion-panel-body {
  background-color: #202125;
}
body tiwp-object-tree .cdk-drag-preview {
  box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12);
}
body tiwp-object-tree .drop-inside {
  border-color: var(--primary-color) !important;
}
body tiwp-object-tree .drop-before {
  border-top-color: var(--primary-color) !important;
}
body tiwp-object-tree .drop-after {
  border-bottom-color: var(--primary-color) !important;
}
body tiwp-edit-exp360 tiwp-object-tree .object-tree__item-list .mat-icon {
  font-size: 1rem !important;
  line-height: 1rem !important;
  height: 1rem !important;
  width: 1rem !important;
}
body .login-background .logo-container {
  min-width: 400px !important;
  max-width: 1024px !important;
  width: 100%;
  position: relative;
}
body .login-background .logo-container .logo {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
body .top-toolbar .logo-container {
  min-width: 104px !important;
  max-width: 186px !important;
  width: 100%;
  position: relative;
}
body .top-toolbar .logo-container .logo {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
body .edit-project-background .properties-background .scene-navigator-properties .back-arrow, body .edit-project-background .properties-background .scene-navigator-properties .forward-arrow {
  background-color: transparent !important;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
body .edit-project-background .properties-background .scene-navigator-properties .back-arrow {
  background-image: url('left_arrow_white.239020e32abcafcc.svg') !important;
}
body .edit-project-background .properties-background .scene-navigator-properties .forward-arrow {
  background-image: url('right_arrow_white.76ba816101227441.svg') !important;
}

tiwp-offline .main-offline__subtitle {
  color: rgba(0, 0, 0, 0.74);
}

tiwp-offline-experiences-view .top-row .offline-option .offline-option-card.enabled:hover {
  cursor: pointer;
}
tiwp-offline-experiences-view .top-row .offline-option .offline-option-card.enabled:hover img {
  background: rgba(0, 0, 0, 0.08);
}
tiwp-offline-experiences-view .top-row .offline-option .offline-option-card.disabled {
  background: rgba(0, 0, 0, 0.08);
  opacity: 0.6;
  color: #AdAeB2;
}
tiwp-offline-experiences-view .main-container {
  background-color: white;
}

tiwp-help-lobby .button-fullscreen-exit.active {
  color: #fff !important;
}
tiwp-help-lobby .rows-me {
  background-color: #ffffff;
}
tiwp-help-lobby .rows-me .left-row {
  color: rgba(0, 0, 0, 0.87);
  background-color: white;
  border-right-color: rgba(0, 0, 0, 0.12);
}
tiwp-help-lobby .rows-me .left-row .title-container {
  border-bottom-color: var(--primary-color);
}
tiwp-help-lobby .rows-me .left-row .select-row {
  color: rgba(0, 0, 0, 0.87);
}
tiwp-help-lobby .rows-me .left-row .full-row .smooth-color {
  color: rgba(0, 0, 0, 0.87);
}
tiwp-help-lobby .rows-me .left-row .full-row .mat-datepicker-toggle {
  color: rgba(0, 0, 0, 0.87);
}
tiwp-help-lobby .rows-me .left-row .full-row .mat-mdc-form-field .mdc-text-field--disabled .mat-mdc-floating-label {
  color: rgba(0, 0, 0, 0.87) !important;
}
tiwp-help-lobby .rows-me .left-row .full-row .mat-mdc-form-field .mdc-text-field--disabled .mat-mdc-input-element {
  color: rgba(0, 0, 0, 0.87) !important;
}
tiwp-help-lobby .rows-me .right-row {
  background-color: #ffffff;
  color: rgba(0, 0, 0, 0.87);
}

tiwp-item-list .item-timer {
  color: var(--primary-color);
}
tiwp-item-list .item-timer.time-string-redundant {
  color: var(--color-warn);
}
tiwp-item-list .default-color {
  color: rgba(0, 0, 0, 0.87);
}
tiwp-item-list .color-1 {
  color: #7c00de;
}
tiwp-item-list .color-2 {
  color: #ab68ee;
}
tiwp-item-list .color-3 {
  color: #de00d6;
}
tiwp-item-list .color-4 {
  color: #87007f;
}
tiwp-item-list .color-5 {
  color: #0040ac;
}
tiwp-item-list mat-list {
  background-color: #f7f6f9;
  border-color: #d9d9d9;
}
tiwp-item-list mat-list h1 {
  color: #ffffff;
  background: #ffccbc;
  border-bottom-color: #d9d9d9;
}
tiwp-item-list mat-list mat-icon.add-scene-button {
  color: white;
}
tiwp-item-list .flex-right-button mat-icon.unlock {
  color: #888b9d;
}
tiwp-item-list .item-list {
  background-color: white;
}
tiwp-item-list .item-box {
  border-bottom-color: #ccc;
  color: rgba(0, 0, 0, 0.87);
  background-color: white;
}
tiwp-item-list .item-box:hover {
  background-color: rgba(0, 0, 0, 0.08);
}
tiwp-item-list .item-box:active {
  background-color: #fff8e1;
}
tiwp-item-list .item-box.selected {
  background-color: #fff8e1;
}
tiwp-item-list .item-box button:hover {
  background-color: rgba(0, 0, 0, 0.08);
}

body.cursor-dragging {
  cursor: grabbing !important; /* cursor al arrastrar */
}

@media screen and (min-height: 600px) {
  .desktop .desktop__body {
    height: calc(100vh - 32px);
  }
  .desktop .desktop__content {
    height: calc(100vh - 32px);
  }
  .desktop .desktop__work-area {
    height: calc(100vh - 32px);
  }
}
@media screen and (min-height: 800px) {
  .desktop .desktop__body {
    height: calc(100vh - 48px);
  }
  .desktop .desktop__content {
    height: calc(100vh - 48px);
  }
  .desktop .desktop__work-area {
    height: calc(100vh - 48px);
  }
}
tiwp-geometry-question .mat-mdc-text-field-wrapper, twip-themed-classroom .mat-mdc-text-field-wrapper, tiwp-scene-details .mat-mdc-text-field-wrapper, tiwp-augmented-manual-properties-box .mat-mdc-text-field-wrapper {
  padding-bottom: 0.25rem !important;
}

.desktop__body {
  width: 100vw;
  height: calc(100vh - 24px);
  box-sizing: border-box;
  overflow: hidden;
  border-radius: 0;
  padding-top: 0;
}
.desktop__content {
  height: calc(100vh - 24px);
  margin: auto;
  vertical-align: middle;
}
.desktop__work-area {
  height: calc(100vh - 24px);
}
.desktop__work-area-left-panel {
  width: 22em;
  min-width: 22em;
  max-width: 22em;
}

::-webkit-scrollbar {
  width: 16px;
}

::-webkit-scrollbar-thumb,
::-webkit-scrollbar-thumb:hover {
  border-radius: 6px 6px 6px 6px;
  background-clip: padding-box;
}

::-webkit-scrollbar-corner {
  visibility: hidden;
}

.input-gray.readonly .mat-mdc-text-field-wrapper {
  border-radius: 4px 4px 0 0 !important;
  padding-left: 0.4rem !important;
  padding-right: 0.4rem !important;
}
.input-gray.pb-0 .mat-mdc-text-field-wrapper {
  padding-bottom: 0 !important;
}
.input-gray.pb-small .mat-mdc-text-field-wrapper {
  padding-bottom: 0.4rem !important;
}
.input-gray .mat-mdc-text-field-wrapper {
  border-radius: 4px 4px 0 0 !important;
  padding-left: 0.4rem !important;
  padding-right: 0.4rem !important;
}
.input-gray .mdc-line-ripple {
  display: none !important;
}
.input-gray .mat-mdc-form-field-infix {
  padding-bottom: 0 !important;
}
.input-gray__error {
  padding: 4px !important;
}
.input-gray__with-resetting .mat-mdc-text-field-wrapper {
  border-radius: 4px 0 0 0 !important;
}

input:-webkit-autofill {
  -webkit-background-clip: text;
}

.textarea-gray .mat-mdc-text-field-wrapper {
  border-radius: 0 !important;
  padding-left: 0.4rem !important;
  padding-right: 0.4rem !important;
}
.textarea-gray .mdc-line-ripple {
  display: none !important;
}
.textarea-gray .mat-mdc-form-field-infix {
  padding-bottom: 0 !important;
}
.textarea-gray__error {
  padding: 4px !important;
}

.textarea-gray-basic {
  border-radius: 4px 4px 0 0 !important;
}
.textarea-gray-basic__error {
  padding: 4px !important;
}

.select-padding-rounded .mat-mdc-text-field-wrapper {
  border-radius: 4px 4px 0 0 !important;
  padding-left: 0.4rem !important;
  padding-right: 0.4rem !important;
  transition: filter 0.2s ease, box-shadow 0.2s ease;
}
.select-padding-rounded:not(.mat-form-field-disabled):hover > .mat-mdc-text-field-wrapper,
.select-padding-rounded mat-form-field:not(.mat-form-field-disabled):hover > .mat-mdc-text-field-wrapper {
  filter: brightness(0.88);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}
.select-padding-rounded .mat-mdc-form-field-infix {
  padding-bottom: 0 !important;
}

.common-select-gray .mat-mdc-select-trigger, .common-select-grey .mat-mdc-select-trigger {
  border-radius: 4px !important;
  transition: filter 0.2s ease;
}
.common-select-gray:not(.mat-form-field-disabled):hover .mat-mdc-select-trigger,
.common-select-gray mat-form-field:not(.mat-form-field-disabled):hover .mat-mdc-select-trigger, .common-select-grey:not(.mat-form-field-disabled):hover .mat-mdc-select-trigger,
.common-select-grey mat-form-field:not(.mat-form-field-disabled):hover .mat-mdc-select-trigger {
  filter: brightness(0.88);
}

tiwp-reports .report-select .mat-mdc-text-field-wrapper {
  border-radius: 4px 4px 0 0;
}

.mat-mdc-select-panel {
  border-radius: 4px !important;
  padding: 0 !important;
}

.select-container {
  margin-bottom: 4px;
  display: flex;
  align-items: normal;
}

.select-gray .mat-mdc-select-arrow, .select-yellow .mat-mdc-select-arrow, .common-select-gray .mat-mdc-select-arrow {
  color: #d9d9d9 !important;
  transition: color 0.2s ease;
}
.select-gray .mat-mdc-text-field-wrapper, .select-yellow .mat-mdc-text-field-wrapper, .common-select-gray .mat-mdc-text-field-wrapper {
  background-color: #d9d9d9 !important;
  padding-left: 0.4rem !important;
  padding-right: 0.4rem !important;
  transition: filter 0.2s ease, box-shadow 0.2s ease;
}
.select-gray:not(.mat-form-field-disabled),
.select-gray mat-form-field:not(.mat-form-field-disabled), .select-yellow:not(.mat-form-field-disabled),
.select-yellow mat-form-field:not(.mat-form-field-disabled), .common-select-gray:not(.mat-form-field-disabled),
.common-select-gray mat-form-field:not(.mat-form-field-disabled) {
  cursor: pointer;
}
.select-gray:not(.mat-form-field-disabled):hover > .mat-mdc-text-field-wrapper,
.select-gray mat-form-field:not(.mat-form-field-disabled):hover > .mat-mdc-text-field-wrapper, .select-yellow:not(.mat-form-field-disabled):hover > .mat-mdc-text-field-wrapper,
.select-yellow mat-form-field:not(.mat-form-field-disabled):hover > .mat-mdc-text-field-wrapper, .common-select-gray:not(.mat-form-field-disabled):hover > .mat-mdc-text-field-wrapper,
.common-select-gray mat-form-field:not(.mat-form-field-disabled):hover > .mat-mdc-text-field-wrapper {
  filter: brightness(0.88);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}
.select-gray:not(.mat-form-field-disabled):hover .mat-mdc-select-arrow,
.select-gray mat-form-field:not(.mat-form-field-disabled):hover .mat-mdc-select-arrow, .select-yellow:not(.mat-form-field-disabled):hover .mat-mdc-select-arrow,
.select-yellow mat-form-field:not(.mat-form-field-disabled):hover .mat-mdc-select-arrow, .common-select-gray:not(.mat-form-field-disabled):hover .mat-mdc-select-arrow,
.common-select-gray mat-form-field:not(.mat-form-field-disabled):hover .mat-mdc-select-arrow {
  color: var(--primary-color) !important;
}
.select-gray .mat-mdc-form-field-infix, .select-yellow .mat-mdc-form-field-infix, .common-select-gray .mat-mdc-form-field-infix {
  padding-bottom: 0 !important;
}
.select-gray .mat-mdc-form-field.mat-focused .mat-mdc-select-arrow,
.select-gray .mat-mdc-form-field.mat-focused .mat-mdc-floating-label, .select-yellow .mat-mdc-form-field.mat-focused .mat-mdc-select-arrow,
.select-yellow .mat-mdc-form-field.mat-focused .mat-mdc-floating-label, .common-select-gray .mat-mdc-form-field.mat-focused .mat-mdc-select-arrow,
.common-select-gray .mat-mdc-form-field.mat-focused .mat-mdc-floating-label {
  color: black !important;
}
.select-gray .mdc-line-ripple, .select-yellow .mdc-line-ripple, .common-select-gray .mdc-line-ripple {
  display: none;
}
.select-gray .mdc-line-ripple::after,
.select-gray .mdc-line-ripple::before, .select-yellow .mdc-line-ripple::after,
.select-yellow .mdc-line-ripple::before, .common-select-gray .mdc-line-ripple::after,
.common-select-gray .mdc-line-ripple::before {
  background-color: transparent !important;
}
.select-gray .mat-mdc-form-field-subscript-wrapper, .select-yellow .mat-mdc-form-field-subscript-wrapper, .common-select-gray .mat-mdc-form-field-subscript-wrapper {
  padding: 0 !important;
}
.select-gray__error, .select-yellow__error, .common-select-gray__error {
  background: white !important;
  padding: 4px !important;
  border-left: 4px #df655e solid !important;
}
.select-gray__with-resetting .mat-mdc-text-field-wrapper, .select-yellow__with-resetting .mat-mdc-text-field-wrapper, .common-select-gray__with-resetting .mat-mdc-text-field-wrapper {
  border-radius: 4px 0 0 0 !important;
}
.select-gray__with-resetting .mdc-line-ripple, .select-yellow__with-resetting .mdc-line-ripple, .common-select-gray__with-resetting .mdc-line-ripple {
  color: #df655e;
}

.select-yellow .mat-mdc-text-field-wrapper {
  background-color: #c5c566 !important;
}

.secondary-tab-group .mdc-tab__text-label {
  opacity: 1 !important;
  font-weight: 400;
}
.secondary-tab-group .mat-mdc-tab {
  opacity: 1 !important;
}
.secondary-tab-group .mdc-tab--active .mdc-tab__text-label {
  font-weight: 500;
}

.asset3d-properties .mat-divider {
  background: #d9d9d9;
}
.asset3d-properties .input-gray {
  color: black !important;
}
.asset3d-properties .input-gray .mat-mdc-text-field-wrapper {
  background-color: #3d3e42 !important;
}

.question-visibility-time {
  overflow: visible;
}

.question-visibility-time__slider {
  padding-top: 0;
  margin-top: 0.125rem;
  overflow: visible;
  position: relative;
  z-index: 2;
}
.question-visibility-time__slider mat-slider.mat-mdc-slider,
.question-visibility-time__slider .mat-mdc-slider {
  overflow: visible;
}
.question-visibility-time__slider .mdc-slider__value-indicator-container {
  z-index: 5;
}

.question-visibility-time__labels {
  position: relative;
  z-index: 1;
}

.transform-container .transform-xyz-axes .property-underline-hover:hover, .transform-container .transform-single-scale .property-underline-hover:hover {
  border-color: var(--primary-color) !important;
}
.transform-container .transform-xyz-axes .property-underline, .transform-container .transform-single-scale .property-underline {
  border-color: var(--primary-color) !important;
}

tiwp-create-basicquestion-dialog .dialog-main-container .main-form .body-select-row, tiwp-create-question-and-select-dialog .dialog-main-container .main-form .body-select-row {
  border-bottom: 1px solid #e0e0e0;
}
tiwp-create-basicquestion-dialog .dialog-main-container .main-form .body-select-row mat-label, tiwp-create-question-and-select-dialog .dialog-main-container .main-form .body-select-row mat-label {
  color: rgba(0, 0, 0, 0.54);
}
tiwp-create-basicquestion-dialog .dialog-main-container .main-form .body-select-row > .container img.selected, tiwp-create-question-and-select-dialog .dialog-main-container .main-form .body-select-row > .container img.selected {
  border-color: var(--primary-color) !important;
}
tiwp-create-basicquestion-dialog .dialog-main-container .main-form .body-select-row > .container img:hover, tiwp-create-question-and-select-dialog .dialog-main-container .main-form .body-select-row > .container img:hover {
  background-color: rgba(0, 0, 0, 0.08);
}
tiwp-create-basicquestion-dialog .question-main-tab-group .question-visibility-time .mat-mdc-slider:not(.mat-warn) .mdc-slider__thumb--focused .mdc-slider__thumb-knob, tiwp-create-question-and-select-dialog .question-main-tab-group .question-visibility-time .mat-mdc-slider:not(.mat-warn) .mdc-slider__thumb--focused .mdc-slider__thumb-knob {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}
tiwp-create-basicquestion-dialog .question-main-tab-group .question-visibility-time .mat-mdc-slider:not(.mat-warn) .mdc-slider__thumb--focused .mdc-slider__value-indicator, tiwp-create-question-and-select-dialog .question-main-tab-group .question-visibility-time .mat-mdc-slider:not(.mat-warn) .mdc-slider__thumb--focused .mdc-slider__value-indicator {
  background-color: var(--secondary-color);
}
tiwp-create-basicquestion-dialog .question-main-tab-group .question-visibility-time .mat-mdc-slider:not(.mat-warn) .mdc-slider__thumb--focused .mdc-slider__value-indicator::before, tiwp-create-question-and-select-dialog .question-main-tab-group .question-visibility-time .mat-mdc-slider:not(.mat-warn) .mdc-slider__thumb--focused .mdc-slider__value-indicator::before {
  border-top-color: var(--secondary-color);
}
tiwp-create-basicquestion-dialog .question-main-tab-group .question-visibility-time.wrong-time-gap .mat-mdc-slider.mat-primary:not(.mat-warn) .mdc-slider__value-indicator-text,
tiwp-create-basicquestion-dialog .question-main-tab-group .question-visibility-time.wrong-time-gap .mat-mdc-slider.mat-primary:not(.mat-warn) .mdc-slider__value-indicator span,
tiwp-create-basicquestion-dialog .question-main-tab-group .question-visibility-time.wrong-time-gap .mat-mdc-slider.mat-accent:not(.mat-warn) .mdc-slider__value-indicator-text,
tiwp-create-basicquestion-dialog .question-main-tab-group .question-visibility-time.wrong-time-gap .mat-mdc-slider.mat-accent:not(.mat-warn) .mdc-slider__value-indicator span, tiwp-create-question-and-select-dialog .question-main-tab-group .question-visibility-time.wrong-time-gap .mat-mdc-slider.mat-primary:not(.mat-warn) .mdc-slider__value-indicator-text,
tiwp-create-question-and-select-dialog .question-main-tab-group .question-visibility-time.wrong-time-gap .mat-mdc-slider.mat-primary:not(.mat-warn) .mdc-slider__value-indicator span,
tiwp-create-question-and-select-dialog .question-main-tab-group .question-visibility-time.wrong-time-gap .mat-mdc-slider.mat-accent:not(.mat-warn) .mdc-slider__value-indicator-text,
tiwp-create-question-and-select-dialog .question-main-tab-group .question-visibility-time.wrong-time-gap .mat-mdc-slider.mat-accent:not(.mat-warn) .mdc-slider__value-indicator span {
  color: var(--color-warn);
}
tiwp-create-basicquestion-dialog .question-main-tab-group .question-visibility-time.disabled, tiwp-create-question-and-select-dialog .question-main-tab-group .question-visibility-time.disabled {
  opacity: 0.26;
}
tiwp-create-basicquestion-dialog .question-main-tab-group .question-visibility-time .time-row-title mat-label.wrong-time-gap, tiwp-create-question-and-select-dialog .question-main-tab-group .question-visibility-time .time-row-title mat-label.wrong-time-gap {
  color: var(--color-warn);
}
tiwp-create-basicquestion-dialog .question-answers-tab-group mat-tab-body .scene-remove div.removeSceneToJump mat-icon, tiwp-create-question-and-select-dialog .question-answers-tab-group mat-tab-body .scene-remove div.removeSceneToJump mat-icon {
  color: var(--color-accent);
}
tiwp-create-basicquestion-dialog .question-answers-tab-group mat-tab-body .scene-remove div.removeSceneToJump mat-icon:hover, tiwp-create-question-and-select-dialog .question-answers-tab-group mat-tab-body .scene-remove div.removeSceneToJump mat-icon:hover {
  background-color: rgba(0, 0, 0, 0.08);
}
tiwp-create-basicquestion-dialog .img-container .img-item:hover, tiwp-create-question-and-select-dialog .img-container .img-item:hover {
  background-color: rgba(0, 0, 0, 0.08);
}
tiwp-create-basicquestion-dialog .img-container .img-item.empty-img, tiwp-create-question-and-select-dialog .img-container .img-item.empty-img {
  opacity: 0.5;
}
tiwp-create-basicquestion-dialog .img-container .img-item.empty-img:hover, tiwp-create-question-and-select-dialog .img-container .img-item.empty-img:hover {
  opacity: 1;
}
tiwp-create-basicquestion-dialog .img-container div.removeImg mat-icon:hover, tiwp-create-question-and-select-dialog .img-container div.removeImg mat-icon:hover {
  background-color: rgba(0, 0, 0, 0.08);
}
tiwp-create-basicquestion-dialog .question-show-answers-ok, tiwp-create-question-and-select-dialog .question-show-answers-ok {
  border-bottom-color: #e8e8e8;
}
tiwp-create-basicquestion-dialog .item-row, tiwp-create-question-and-select-dialog .item-row {
  color: rgba(0, 0, 0, 0.87);
}
tiwp-create-basicquestion-dialog .item-row.nodata, tiwp-create-question-and-select-dialog .item-row.nodata {
  color: var(--color-warn);
}
tiwp-create-basicquestion-dialog .item-row mat-label.empty, tiwp-create-question-and-select-dialog .item-row mat-label.empty {
  color: var(--color-warn);
}
@media (min-width: 640px){
  .sm\:gap-1{
    gap: 0.25rem !important;
  }
  .sm\:gap-4{
    gap: 1rem !important;
  }
  .sm\:p-0{
    padding: 0px !important;
  }
  .sm\:p-1{
    padding: 0.25rem !important;
  }
  .sm\:pl-4{
    padding-left: 1rem !important;
  }
}
@media (min-width: 768px){
  .md\:grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .md\:p-1{
    padding: 0.25rem !important;
  }
}
@media (min-width: 1024px){
  .lg\:p-1{
    padding: 0.25rem !important;
  }
  .lg\:p-2{
    padding: 0.5rem !important;
  }
}
@media (min-width: 1280px){
  .xl\:p-2{
    padding: 0.5rem !important;
  }
}

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