@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: calc(1 * 2);
  animation-iteration-count: calc(var(--animate-repeat) * 2);
}
.animate__animated.animate__repeat-3 {
  animation-iteration-count: calc(1 * 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: calc(1s * 2);
  animation-delay: calc(var(--animate-delay) * 2);
}
.animate__animated.animate__delay-3s {
  animation-delay: calc(1s * 3);
  animation-delay: calc(var(--animate-delay) * 3);
}
.animate__animated.animate__delay-4s {
  animation-delay: calc(1s * 4);
  animation-delay: calc(var(--animate-delay) * 4);
}
.animate__animated.animate__delay-5s {
  animation-delay: calc(1s * 5);
  animation-delay: calc(var(--animate-delay) * 5);
}
.animate__animated.animate__faster {
  animation-duration: calc(1s / 2);
  animation-duration: calc(var(--animate-duration) / 2);
}
.animate__animated.animate__fast {
  animation-duration: calc(1s * 0.8);
  animation-duration: calc(var(--animate-duration) * 0.8);
}
.animate__animated.animate__slow {
  animation-duration: calc(1s * 2);
  animation-duration: calc(var(--animate-duration) * 2);
}
.animate__animated.animate__slower {
  animation-duration: calc(1s * 3);
  animation-duration: calc(var(--animate-duration) * 3);
}
@media print, (prefers-reduced-motion: reduce) {
  .animate__animated {
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }

  .animate__animated[class*='Out'] {
    opacity: 0;
  }
}
/* Attention seekers  */
@keyframes bounce {
  from,
  20%,
  53%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 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: translate3d(0, 0, 0) scaleY(0.95);
  }

  90% {
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
.animate__bounce {
  animation-name: bounce;
  transform-origin: center bottom;
}
@keyframes flash {
  from,
  50%,
  to {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}
.animate__flash {
  animation-name: flash;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }

  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}
.animate__pulse {
  animation-name: pulse;
  animation-timing-function: ease-in-out;
}
@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 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: scale3d(1, 1, 1);
  }
}
.animate__rubberBand {
  animation-name: rubberBand;
}
@keyframes shakeX {
  from,
  to {
    transform: translate3d(0, 0, 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 {
  from,
  to {
    transform: translate3d(0, 0, 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: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.animate__swing {
  transform-origin: top center;
  animation-name: swing;
}
@keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
  }

  10%,
  20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }

  30%,
  50%,
  70%,
  90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%,
  60%,
  80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}
.animate__tada {
  animation-name: tada;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes wobble {
  from {
    transform: translate3d(0, 0, 0);
  }

  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__wobble {
  animation-name: wobble;
}
@keyframes jello {
  from,
  11.1%,
  to {
    transform: translate3d(0, 0, 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: calc(1s * 1.3);
  animation-duration: calc(var(--animate-duration) * 1.3);
  animation-timing-function: ease-in-out;
}
/* Back entrances */
@keyframes backInDown {
  0% {
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    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(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    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(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    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(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInUp {
  animation-name: backInUp;
}
/* Back exits */
@keyframes backOutDown {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  20% {
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    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(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    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(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    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(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutUp {
  animation-name: backOutUp;
}
/* Bouncing entrances  */
@keyframes bounceIn {
  from,
  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: scale3d(1, 1, 1);
  }
}
.animate__bounceIn {
  animation-duration: calc(1s * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  animation-name: bounceIn;
}
@keyframes bounceInDown {
  from,
  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: translate3d(0, 0, 0);
  }
}
.animate__bounceInDown {
  animation-name: bounceInDown;
}
@keyframes bounceInLeft {
  from,
  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: translate3d(0, 0, 0);
  }
}
.animate__bounceInLeft {
  animation-name: bounceInLeft;
}
@keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    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: translate3d(0, 0, 0);
  }
}
.animate__bounceInRight {
  animation-name: bounceInRight;
}
@keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    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: translate3d(0, 0, 0);
  }
}
.animate__bounceInUp {
  animation-name: bounceInUp;
}
/* Bouncing exits  */
@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: calc(1s * 0.75);
  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;
}
/* Fading entrances  */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
.animate__fadeIn {
  animation-name: fadeIn;
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInDown {
  animation-name: fadeInDown;
}
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInDownBig {
  animation-name: fadeInDownBig;
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInLeft {
  animation-name: fadeInLeft;
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInLeftBig {
  animation-name: fadeInLeftBig;
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInRight {
  animation-name: fadeInRight;
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInRightBig {
  animation-name: fadeInRightBig;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInUp {
  animation-name: fadeInUp;
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInUpBig {
  animation-name: fadeInUpBig;
}
@keyframes fadeInTopLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInTopLeft {
  animation-name: fadeInTopLeft;
}
@keyframes fadeInTopRight {
  from {
    opacity: 0;
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInTopRight {
  animation-name: fadeInTopRight;
}
@keyframes fadeInBottomLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInBottomLeft {
  animation-name: fadeInBottomLeft;
}
@keyframes fadeInBottomRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInBottomRight {
  animation-name: fadeInBottomRight;
}
/* Fading exits */
@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}
.animate__fadeOut {
  animation-name: fadeOut;
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}
.animate__fadeOutDown {
  animation-name: fadeOutDown;
}
@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.animate__fadeOutDownBig {
  animation-name: fadeOutDownBig;
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}
.animate__fadeOutLeft {
  animation-name: fadeOutLeft;
}
@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.animate__fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}
.animate__fadeOutRight {
  animation-name: fadeOutRight;
}
@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.animate__fadeOutRightBig {
  animation-name: fadeOutRightBig;
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
.animate__fadeOutUp {
  animation-name: fadeOutUp;
}
@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.animate__fadeOutUpBig {
  animation-name: fadeOutUpBig;
}
@keyframes fadeOutTopLeft {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, -100%, 0);
  }
}
.animate__fadeOutTopLeft {
  animation-name: fadeOutTopLeft;
}
@keyframes fadeOutTopRight {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(100%, -100%, 0);
  }
}
.animate__fadeOutTopRight {
  animation-name: fadeOutTopRight;
}
@keyframes fadeOutBottomRight {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 100%, 0);
  }
}
.animate__fadeOutBottomRight {
  animation-name: fadeOutBottomRight;
}
@keyframes fadeOutBottomLeft {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 100%, 0);
  }
}
.animate__fadeOutBottomLeft {
  animation-name: fadeOutBottomLeft;
}
/* Flippers */
@keyframes flip {
  from {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    animation-timing-function: ease-out;
  }

  40% {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    animation-timing-function: ease-out;
  }

  50% {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    animation-timing-function: ease-in;
  }

  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    animation-timing-function: ease-in;
  }

  to {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    animation-timing-function: ease-in;
  }
}
.animate__animated.animate__flip {
  backface-visibility: visible;
  animation-name: flip;
}
@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }

  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    transform: perspective(400px);
  }
}
.animate__flipInX {
  backface-visibility: visible !important;
  animation-name: flipInX;
}
@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    animation-timing-function: ease-in;
  }

  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  to {
    transform: perspective(400px);
  }
}
.animate__flipInY {
  backface-visibility: visible !important;
  animation-name: flipInY;
}
@keyframes flipOutX {
  from {
    transform: perspective(400px);
  }

  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.animate__flipOutX {
  animation-duration: calc(1s * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  animation-name: flipOutX;
  backface-visibility: visible !important;
}
@keyframes flipOutY {
  from {
    transform: perspective(400px);
  }

  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.animate__flipOutY {
  animation-duration: calc(1s * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  backface-visibility: visible !important;
  animation-name: flipOutY;
}
/* Lightspeed */
@keyframes lightSpeedInRight {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    transform: skewX(-5deg);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__lightSpeedInRight {
  animation-name: lightSpeedInRight;
  animation-timing-function: ease-out;
}
@keyframes lightSpeedInLeft {
  from {
    transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0;
  }

  60% {
    transform: skewX(-20deg);
    opacity: 1;
  }

  80% {
    transform: skewX(5deg);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__lightSpeedInLeft {
  animation-name: lightSpeedInLeft;
  animation-timing-function: ease-out;
}
@keyframes lightSpeedOutRight {
  from {
    opacity: 1;
  }

  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.animate__lightSpeedOutRight {
  animation-name: lightSpeedOutRight;
  animation-timing-function: ease-in;
}
@keyframes lightSpeedOutLeft {
  from {
    opacity: 1;
  }

  to {
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
}
.animate__lightSpeedOutLeft {
  animation-name: lightSpeedOutLeft;
  animation-timing-function: ease-in;
}
/* Rotating entrances */
@keyframes rotateIn {
  from {
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateIn {
  animation-name: rotateIn;
  transform-origin: center;
}
@keyframes rotateInDownLeft {
  from {
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInDownLeft {
  animation-name: rotateInDownLeft;
  transform-origin: left bottom;
}
@keyframes rotateInDownRight {
  from {
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInDownRight {
  animation-name: rotateInDownRight;
  transform-origin: right bottom;
}
@keyframes rotateInUpLeft {
  from {
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInUpLeft {
  animation-name: rotateInUpLeft;
  transform-origin: left bottom;
}
@keyframes rotateInUpRight {
  from {
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInUpRight {
  animation-name: rotateInUpRight;
  transform-origin: right bottom;
}
/* Rotating exits */
@keyframes rotateOut {
  from {
    opacity: 1;
  }

  to {
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.animate__rotateOut {
  animation-name: rotateOut;
  transform-origin: center;
}
@keyframes rotateOutDownLeft {
  from {
    opacity: 1;
  }

  to {
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.animate__rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
  transform-origin: left bottom;
}
@keyframes rotateOutDownRight {
  from {
    opacity: 1;
  }

  to {
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.animate__rotateOutDownRight {
  animation-name: rotateOutDownRight;
  transform-origin: right bottom;
}
@keyframes rotateOutUpLeft {
  from {
    opacity: 1;
  }

  to {
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.animate__rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
  transform-origin: left bottom;
}
@keyframes rotateOutUpRight {
  from {
    opacity: 1;
  }

  to {
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.animate__rotateOutUpRight {
  animation-name: rotateOutUpRight;
  transform-origin: right bottom;
}
/* Specials */
@keyframes hinge {
  0% {
    animation-timing-function: ease-in-out;
  }

  20%,
  60% {
    transform: rotate3d(0, 0, 1, 80deg);
    animation-timing-function: ease-in-out;
  }

  40%,
  80% {
    transform: rotate3d(0, 0, 1, 60deg);
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.animate__hinge {
  animation-duration: calc(1s * 2);
  animation-duration: calc(var(--animate-duration) * 2);
  animation-name: hinge;
  transform-origin: top left;
}
@keyframes jackInTheBox {
  from {
    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;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__rollIn {
  animation-name: rollIn;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.animate__rollOut {
  animation-name: rollOut;
}
/* Zooming entrances */
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}
.animate__zoomIn {
  animation-name: zoomIn;
}
@keyframes zoomInDown {
  from {
    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 {
  from {
    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 {
  from {
    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 {
  from {
    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;
}
/* Zooming exits */
@keyframes zoomOut {
  from {
    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;
}
/* Sliding entrances */
@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInDown {
  animation-name: slideInDown;
}
@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInLeft {
  animation-name: slideInLeft;
}
@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInRight {
  animation-name: slideInRight;
}
@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInUp {
  animation-name: slideInUp;
}
/* Sliding exits */
@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}
.animate__slideOutDown {
  animation-name: slideOutDown;
}
@keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}
.animate__slideOutLeft {
  animation-name: slideOutLeft;
}
@keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}
.animate__slideOutRight {
  animation-name: slideOutRight;
}
@keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}
.animate__slideOutUp {
  animation-name: slideOutUp;
}

@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:.5s;animation-duration:calc(var(--animate-duration)/2)}.animate__animated.animate__fast{animation-duration:.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(.215,.61,.355,1);transform:translateZ(0)}40%,43%{animation-timing-function:cubic-bezier(.755,.05,.855,.06);transform:translate3d(0,-30px,0) scaleY(1.1)}70%{animation-timing-function:cubic-bezier(.755,.05,.855,.06);transform:translate3d(0,-15px,0) scaleY(1.05)}80%{transition-timing-function:cubic-bezier(.215,.61,.355,1);transform:translateZ(0) scaleY(.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,.75,1)}40%{transform:scale3d(.75,1.25,1)}50%{transform:scale3d(1.15,.85,1)}65%{transform:scale3d(.95,1.05,1)}75%{transform:scale3d(1.05,.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(.9,.9,.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(-.78125deg) skewY(-.78125deg)}77.7%{transform:skewX(.390625deg) skewY(.390625deg)}88.8%{transform:skewX(-.1953125deg) skewY(-.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(.7);opacity:.7}80%{transform:translateY(0) scale(.7);opacity:.7}to{transform:scale(1);opacity:1}}.animate__backInDown{animation-name:backInDown}@keyframes backInLeft{0%{transform:translateX(-2000px) scale(.7);opacity:.7}80%{transform:translateX(0) scale(.7);opacity:.7}to{transform:scale(1);opacity:1}}.animate__backInLeft{animation-name:backInLeft}@keyframes backInRight{0%{transform:translateX(2000px) scale(.7);opacity:.7}80%{transform:translateX(0) scale(.7);opacity:.7}to{transform:scale(1);opacity:1}}.animate__backInRight{animation-name:backInRight}@keyframes backInUp{0%{transform:translateY(1200px) scale(.7);opacity:.7}80%{transform:translateY(0) scale(.7);opacity:.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(.7);opacity:.7}to{transform:translateY(700px) scale(.7);opacity:.7}}.animate__backOutDown{animation-name:backOutDown}@keyframes backOutLeft{0%{transform:scale(1);opacity:1}20%{transform:translateX(0) scale(.7);opacity:.7}to{transform:translateX(-2000px) scale(.7);opacity:.7}}.animate__backOutLeft{animation-name:backOutLeft}@keyframes backOutRight{0%{transform:scale(1);opacity:1}20%{transform:translateX(0) scale(.7);opacity:.7}to{transform:translateX(2000px) scale(.7);opacity:.7}}.animate__backOutRight{animation-name:backOutRight}@keyframes backOutUp{0%{transform:scale(1);opacity:1}20%{transform:translateY(0) scale(.7);opacity:.7}to{transform:translateY(-700px) scale(.7);opacity:.7}}.animate__backOutUp{animation-name:backOutUp}@keyframes bounceIn{0%,20%,40%,60%,80%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:scale3d(.3,.3,.3)}20%{transform:scale3d(1.1,1.1,1.1)}40%{transform:scale3d(.9,.9,.9)}60%{opacity:1;transform:scale3d(1.03,1.03,1.03)}80%{transform:scale3d(.97,.97,.97)}to{opacity:1;transform:scaleX(1)}}.animate__bounceIn{animation-duration:.75s;animation-duration:calc(var(--animate-duration)*0.75);animation-name:bounceIn}@keyframes bounceInDown{0%,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(0,-3000px,0) scaleY(3)}60%{opacity:1;transform:translate3d(0,25px,0) scaleY(.9)}75%{transform:translate3d(0,-10px,0) scaleY(.95)}90%{transform:translate3d(0,5px,0) scaleY(.985)}to{transform:translateZ(0)}}.animate__bounceInDown{animation-name:bounceInDown}@keyframes bounceInLeft{0%,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.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(.98)}90%{transform:translate3d(5px,0,0) scaleX(.995)}to{transform:translateZ(0)}}.animate__bounceInLeft{animation-name:bounceInLeft}@keyframes bounceInRight{0%,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.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(.98)}90%{transform:translate3d(-5px,0,0) scaleX(.995)}to{transform:translateZ(0)}}.animate__bounceInRight{animation-name:bounceInRight}@keyframes bounceInUp{0%,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(0,3000px,0) scaleY(5)}60%{opacity:1;transform:translate3d(0,-20px,0) scaleY(.9)}75%{transform:translate3d(0,10px,0) scaleY(.95)}90%{transform:translate3d(0,-5px,0) scaleY(.985)}to{transform:translateZ(0)}}.animate__bounceInUp{animation-name:bounceInUp}@keyframes bounceOut{20%{transform:scale3d(.9,.9,.9)}50%,55%{opacity:1;transform:scale3d(1.1,1.1,1.1)}to{opacity:0;transform:scale3d(.3,.3,.3)}}.animate__bounceOut{animation-duration:.75s;animation-duration:calc(var(--animate-duration)*0.75);animation-name:bounceOut}@keyframes bounceOutDown{20%{transform:translate3d(0,10px,0) scaleY(.985)}40%,45%{opacity:1;transform:translate3d(0,-20px,0) scaleY(.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(.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(.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(.985)}40%,45%{opacity:1;transform:translate3d(0,20px,0) scaleY(.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(.95,.95,.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:.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:.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(.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(.3,.3,.3)}50%{opacity:1}}.animate__zoomIn{animation-name:zoomIn}@keyframes zoomInDown{0%{opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,60px,0);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomInDown{animation-name:zoomInDown}@keyframes zoomInLeft{0%{opacity:0;transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(10px,0,0);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomInLeft{animation-name:zoomInLeft}@keyframes zoomInRight{0%{opacity:0;transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomInRight{animation-name:zoomInRight}@keyframes zoomInUp{0%{opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomInUp{animation-name:zoomInUp}@keyframes zoomOut{0%{opacity:1}50%{opacity:0;transform:scale3d(.3,.3,.3)}to{opacity:0}}.animate__zoomOut{animation-name:zoomOut}@keyframes zoomOutDown{40%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomOutDown{animation-name:zoomOutDown;transform-origin:center bottom}@keyframes zoomOutLeft{40%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(42px,0,0)}to{opacity:0;transform:scale(.1) translate3d(-2000px,0,0)}}.animate__zoomOutLeft{animation-name:zoomOutLeft;transform-origin:left center}@keyframes zoomOutRight{40%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(-42px,0,0)}to{opacity:0;transform:scale(.1) translate3d(2000px,0,0)}}.animate__zoomOutRight{animation-name:zoomOutRight;transform-origin:right center}@keyframes zoomOutUp{40%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,60px,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);animation-timing-function:cubic-bezier(.175,.885,.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}
@charset "UTF-8";
/* You can add global styles to this file, and also import other style files */
/* You can add global styles to this file, and also import other style files */
@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes ghost-lines {
  0% {
    background-position: -100px;
  }
  40% {
    background-position: 40vw;
  }
  100% {
    background-position: 60vw;
  }
}
@keyframes ghost-avatar {
  0% {
    background-position: -32px;
  }
  40%, 100% {
    background-position: 208px;
  }
}
html {
  --mat-ripple-color: rgba(0, 0, 0, 0.1);
}

html {
  --mat-option-selected-state-label-text-color: teal;
  --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-accent {
  --mat-option-selected-state-label-text-color: teal;
  --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-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);
}

html {
  --mat-optgroup-label-text-color: rgba(0, 0, 0, 0.87);
}

html {
  --mat-full-pseudo-checkbox-selected-icon-color: teal;
  --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;
}
html {
  --mat-minimal-pseudo-checkbox-selected-checkmark-color: teal;
  --mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0;
}

.mat-primary {
  --mat-full-pseudo-checkbox-selected-icon-color: teal;
  --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-primary {
  --mat-minimal-pseudo-checkbox-selected-checkmark-color: teal;
  --mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0;
}

.mat-accent {
  --mat-full-pseudo-checkbox-selected-icon-color: teal;
  --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-accent {
  --mat-minimal-pseudo-checkbox-selected-checkmark-color: teal;
  --mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0;
}

.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-warn {
  --mat-minimal-pseudo-checkbox-selected-checkmark-color: #f44336;
  --mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0;
}

html {
  --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);
}

html {
  --mat-option-label-text-font: Inter, Arial, Helvetica, Roboto, sans-serif;
  --mat-option-label-text-line-height: 1.6;
  --mat-option-label-text-size: var(--text-size-small);
  --mat-option-label-text-tracking: normal;
  --mat-option-label-text-weight: normal;
}

html {
  --mat-optgroup-label-text-font: Inter, Arial, Helvetica, Roboto, sans-serif;
  --mat-optgroup-label-text-line-height: 1.6;
  --mat-optgroup-label-text-size: var(--text-size-small);
  --mat-optgroup-label-text-tracking: normal;
  --mat-optgroup-label-text-weight: normal;
}

html {
  --mdc-elevated-card-container-shape: 4px;
}
html {
  --mdc-outlined-card-container-shape: 4px;
  --mdc-outlined-card-outline-width: 1px;
}
html {
  --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);
}
html {
  --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);
}
html {
  --mat-card-subtitle-text-color: rgba(0, 0, 0, 0.54);
}

html {
  --mat-card-title-text-font: Inter, Arial, Helvetica, Roboto, sans-serif;
  --mat-card-title-text-line-height: 32px;
  --mat-card-title-text-size: 20px;
  --mat-card-title-text-tracking: 0.0125em;
  --mat-card-title-text-weight: 500;
  --mat-card-subtitle-text-font: Inter, Arial, Helvetica, Roboto, sans-serif;
  --mat-card-subtitle-text-line-height: 22px;
  --mat-card-subtitle-text-size: 14px;
  --mat-card-subtitle-text-tracking: 0.0071428571em;
  --mat-card-subtitle-text-weight: 500;
}

html {
  --mdc-linear-progress-active-indicator-height: 4px;
  --mdc-linear-progress-track-height: 4px;
  --mdc-linear-progress-track-shape: 0;
}

.mat-mdc-progress-bar {
  --mdc-linear-progress-active-indicator-color: teal;
  --mdc-linear-progress-track-color: rgba(0, 128, 128, 0.25);
}
.mat-mdc-progress-bar.mat-accent {
  --mdc-linear-progress-active-indicator-color: teal;
  --mdc-linear-progress-track-color: rgba(0, 128, 128, 0.25);
}
.mat-mdc-progress-bar.mat-warn {
  --mdc-linear-progress-active-indicator-color: #f44336;
  --mdc-linear-progress-track-color: rgba(244, 67, 54, 0.25);
}

html {
  --mdc-plain-tooltip-container-shape: 4px;
  --mdc-plain-tooltip-supporting-text-line-height: 16px;
}

html {
  --mdc-plain-tooltip-container-color: #616161;
  --mdc-plain-tooltip-supporting-text-color: #fff;
}

html {
  --mdc-plain-tooltip-supporting-text-font: Inter, Arial, Helvetica, Roboto, sans-serif;
  --mdc-plain-tooltip-supporting-text-size: 12px;
  --mdc-plain-tooltip-supporting-text-weight: 400;
  --mdc-plain-tooltip-supporting-text-tracking: 0.0333333333em;
}

html {
  --mdc-filled-text-field-active-indicator-height: 1px;
  --mdc-filled-text-field-focus-active-indicator-height: 2px;
  --mdc-filled-text-field-container-shape: 4px;
}
html {
  --mdc-outlined-text-field-outline-width: 1px;
  --mdc-outlined-text-field-focus-outline-width: 2px;
  --mdc-outlined-text-field-container-shape: 4px;
}
html {
  --mdc-filled-text-field-caret-color: teal;
  --mdc-filled-text-field-focus-active-indicator-color: teal;
  --mdc-filled-text-field-focus-label-text-color: rgba(0, 128, 128, 0.87);
  --mdc-filled-text-field-container-color: rgb(244.8, 244.8, 244.8);
  --mdc-filled-text-field-disabled-container-color: rgb(249.9, 249.9, 249.9);
  --mdc-filled-text-field-label-text-color: rgba(0, 0, 0, 0.6);
  --mdc-filled-text-field-hover-label-text-color: rgba(0, 0, 0, 0.6);
  --mdc-filled-text-field-disabled-label-text-color: rgba(0, 0, 0, 0.38);
  --mdc-filled-text-field-input-text-color: rgba(0, 0, 0, 0.87);
  --mdc-filled-text-field-disabled-input-text-color: rgba(0, 0, 0, 0.38);
  --mdc-filled-text-field-input-text-placeholder-color: rgba(0, 0, 0, 0.6);
  --mdc-filled-text-field-error-hover-label-text-color: #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;
}
html {
  --mdc-outlined-text-field-caret-color: teal;
  --mdc-outlined-text-field-focus-outline-color: teal;
  --mdc-outlined-text-field-focus-label-text-color: rgba(0, 128, 128, 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;
}
html {
  --mat-form-field-focus-select-arrow-color: rgba(0, 128, 128, 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-mdc-form-field.mat-accent {
  --mdc-filled-text-field-caret-color: teal;
  --mdc-filled-text-field-focus-active-indicator-color: teal;
  --mdc-filled-text-field-focus-label-text-color: rgba(0, 128, 128, 0.87);
}
.mat-mdc-form-field.mat-accent {
  --mdc-outlined-text-field-caret-color: teal;
  --mdc-outlined-text-field-focus-outline-color: teal;
  --mdc-outlined-text-field-focus-label-text-color: rgba(0, 128, 128, 0.87);
}
.mat-mdc-form-field.mat-accent {
  --mat-form-field-focus-select-arrow-color: rgba(0, 128, 128, 0.87);
}

.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);
}
.mat-mdc-form-field.mat-warn {
  --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-mdc-form-field.mat-warn {
  --mat-form-field-focus-select-arrow-color: rgba(244, 67, 54, 0.87);
}

html {
  --mat-form-field-container-height: 56px;
  --mat-form-field-filled-label-display: block;
  --mat-form-field-container-vertical-padding: 16px;
  --mat-form-field-filled-with-label-container-padding-top: 24px;
  --mat-form-field-filled-with-label-container-padding-bottom: 8px;
}

html {
  --mdc-filled-text-field-label-text-font: Inter, Arial, Helvetica, Roboto, sans-serif;
  --mdc-filled-text-field-label-text-size: var(--text-size-small);
  --mdc-filled-text-field-label-text-tracking: normal;
  --mdc-filled-text-field-label-text-weight: normal;
}
html {
  --mdc-outlined-text-field-label-text-font: Inter, Arial, Helvetica, Roboto, sans-serif;
  --mdc-outlined-text-field-label-text-size: var(--text-size-small);
  --mdc-outlined-text-field-label-text-tracking: normal;
  --mdc-outlined-text-field-label-text-weight: normal;
}
html {
  --mat-form-field-container-text-font: Inter, Arial, Helvetica, Roboto, sans-serif;
  --mat-form-field-container-text-line-height: 1.6;
  --mat-form-field-container-text-size: var(--text-size-small);
  --mat-form-field-container-text-tracking: normal;
  --mat-form-field-container-text-weight: normal;
  --mat-form-field-outlined-label-text-populated-size: var(--text-size-small);
  --mat-form-field-subscript-text-font: Inter, Arial, Helvetica, Roboto, sans-serif;
  --mat-form-field-subscript-text-line-height: 20px;
  --mat-form-field-subscript-text-size: 12px;
  --mat-form-field-subscript-text-tracking: 0.0333333333em;
  --mat-form-field-subscript-text-weight: 400;
}

html {
  --mat-select-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);
}

html {
  --mat-select-panel-background-color: white;
  --mat-select-enabled-trigger-text-color: rgba(0, 0, 0, 0.87);
  --mat-select-disabled-trigger-text-color: rgba(0, 0, 0, 0.38);
  --mat-select-placeholder-text-color: rgba(0, 0, 0, 0.6);
  --mat-select-enabled-arrow-color: rgba(0, 0, 0, 0.54);
  --mat-select-disabled-arrow-color: rgba(0, 0, 0, 0.38);
  --mat-select-focused-arrow-color: rgba(0, 128, 128, 0.87);
  --mat-select-invalid-arrow-color: rgba(244, 67, 54, 0.87);
}
html .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(0, 128, 128, 0.87);
  --mat-select-invalid-arrow-color: rgba(244, 67, 54, 0.87);
}
html .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);
}

html {
  --mat-select-arrow-transform: translateY(-8px);
}

html {
  --mat-select-trigger-text-font: Inter, Arial, Helvetica, Roboto, sans-serif;
  --mat-select-trigger-text-line-height: 1.6;
  --mat-select-trigger-text-size: var(--text-size-small);
  --mat-select-trigger-text-tracking: normal;
  --mat-select-trigger-text-weight: normal;
}

html {
  --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);
}

html {
  --mat-autocomplete-background-color: white;
}

html {
  --mdc-dialog-container-shape: 4px;
}
html {
  --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;
}

html {
  --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);
}
html {
  --mdc-dialog-subhead-font: Inter, Arial, Helvetica, Roboto, sans-serif;
  --mdc-dialog-subhead-line-height: 32px;
  --mdc-dialog-subhead-size: 20px;
  --mdc-dialog-subhead-weight: 500;
  --mdc-dialog-subhead-tracking: 0.0125em;
  --mdc-dialog-supporting-text-font: Inter, Arial, Helvetica, Roboto, sans-serif;
  --mdc-dialog-supporting-text-line-height: 1.6;
  --mdc-dialog-supporting-text-size: var(--text-size-small);
  --mdc-dialog-supporting-text-weight: normal;
  --mdc-dialog-supporting-text-tracking: normal;
}
.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-mdc-standard-chip {
  --mat-chip-disabled-container-opacity: 0.4;
  --mat-chip-trailing-action-opacity: 0.54;
  --mat-chip-trailing-action-focus-opacity: 1;
  --mat-chip-trailing-action-state-layer-color: transparent;
  --mat-chip-selected-trailing-action-state-layer-color: transparent;
  --mat-chip-trailing-action-hover-state-layer-opacity: 0;
  --mat-chip-trailing-action-focus-state-layer-opacity: 0;
}

.mat-mdc-standard-chip {
  --mdc-chip-disabled-label-text-color: #212121;
  --mdc-chip-elevated-container-color: rgb(224.4, 224.4, 224.4);
  --mdc-chip-elevated-selected-container-color: rgb(224.4, 224.4, 224.4);
  --mdc-chip-elevated-disabled-container-color: rgb(224.4, 224.4, 224.4);
  --mdc-chip-flat-disabled-selected-container-color: rgb(224.4, 224.4, 224.4);
  --mdc-chip-focus-state-layer-color: black;
  --mdc-chip-hover-state-layer-color: black;
  --mdc-chip-selected-hover-state-layer-color: black;
  --mdc-chip-focus-state-layer-opacity: 0.12;
  --mdc-chip-selected-focus-state-layer-color: black;
  --mdc-chip-selected-focus-state-layer-opacity: 0.12;
  --mdc-chip-label-text-color: #212121;
  --mdc-chip-selected-label-text-color: #212121;
  --mdc-chip-with-icon-icon-color: #212121;
  --mdc-chip-with-icon-disabled-icon-color: #212121;
  --mdc-chip-with-icon-selected-icon-color: #212121;
  --mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #212121;
  --mdc-chip-with-trailing-icon-trailing-icon-color: #212121;
}
.mat-mdc-standard-chip {
  --mat-chip-selected-disabled-trailing-icon-color: #212121;
  --mat-chip-selected-trailing-icon-color: #212121;
}
.mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary, .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary {
  --mdc-chip-disabled-label-text-color: white;
  --mdc-chip-elevated-container-color: teal;
  --mdc-chip-elevated-selected-container-color: teal;
  --mdc-chip-elevated-disabled-container-color: teal;
  --mdc-chip-flat-disabled-selected-container-color: teal;
  --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-mdc-standard-chip.mat-mdc-chip-selected.mat-primary, .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary {
  --mat-chip-selected-disabled-trailing-icon-color: white;
  --mat-chip-selected-trailing-icon-color: white;
}
.mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent, .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent {
  --mdc-chip-disabled-label-text-color: white;
  --mdc-chip-elevated-container-color: teal;
  --mdc-chip-elevated-selected-container-color: teal;
  --mdc-chip-elevated-disabled-container-color: teal;
  --mdc-chip-flat-disabled-selected-container-color: teal;
  --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-mdc-standard-chip.mat-mdc-chip-selected.mat-accent, .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent {
  --mat-chip-selected-disabled-trailing-icon-color: white;
  --mat-chip-selected-trailing-icon-color: white;
}
.mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn, .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-mdc-standard-chip.mat-mdc-chip-selected.mat-warn, .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn {
  --mat-chip-selected-disabled-trailing-icon-color: white;
  --mat-chip-selected-trailing-icon-color: white;
}

.mat-mdc-chip.mat-mdc-standard-chip {
  --mdc-chip-container-height: 32px;
}
.mat-mdc-standard-chip {
  --mdc-chip-label-text-font: Inter, Arial, Helvetica, Roboto, sans-serif;
  --mdc-chip-label-text-line-height: 1.6;
  --mdc-chip-label-text-size: var(--text-size-small);
  --mdc-chip-label-text-tracking: normal;
  --mdc-chip-label-text-weight: bold;
}
html {
  --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;
}
html .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;
}

html {
  --mdc-switch-selected-focus-state-layer-color: teal;
  --mdc-switch-selected-handle-color: teal;
  --mdc-switch-selected-hover-state-layer-color: teal;
  --mdc-switch-selected-pressed-state-layer-color: teal;
  --mdc-switch-selected-focus-handle-color: teal;
  --mdc-switch-selected-hover-handle-color: teal;
  --mdc-switch-selected-pressed-handle-color: teal;
  --mdc-switch-selected-focus-track-color: teal;
  --mdc-switch-selected-hover-track-color: teal;
  --mdc-switch-selected-pressed-track-color: teal;
  --mdc-switch-selected-track-color: teal;
  --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);
}
html {
  --mdc-switch-disabled-label-text-color: rgba(0, 0, 0, 0.38);
}
html .mat-mdc-slide-toggle {
  --mat-switch-label-text-color: rgba(0, 0, 0, 0.87);
}
html .mat-mdc-slide-toggle.mat-accent {
  --mdc-switch-selected-focus-state-layer-color: teal;
  --mdc-switch-selected-handle-color: teal;
  --mdc-switch-selected-hover-state-layer-color: teal;
  --mdc-switch-selected-pressed-state-layer-color: teal;
  --mdc-switch-selected-focus-handle-color: teal;
  --mdc-switch-selected-hover-handle-color: teal;
  --mdc-switch-selected-pressed-handle-color: teal;
  --mdc-switch-selected-focus-track-color: teal;
  --mdc-switch-selected-hover-track-color: teal;
  --mdc-switch-selected-pressed-track-color: teal;
  --mdc-switch-selected-track-color: teal;
}
html .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;
}

html {
  --mdc-switch-state-layer-size: 40px;
}
html .mat-mdc-slide-toggle {
  --mat-switch-label-text-font: Inter, Arial, Helvetica, Roboto, sans-serif;
  --mat-switch-label-text-line-height: 1.6;
  --mat-switch-label-text-size: var(--text-size-small);
  --mat-switch-label-text-tracking: normal;
  --mat-switch-label-text-weight: bold;
}

html {
  --mdc-radio-disabled-selected-icon-opacity: 0.38;
  --mdc-radio-disabled-unselected-icon-opacity: 0.38;
  --mdc-radio-state-layer-size: 40px;
}
.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: teal;
  --mdc-radio-selected-hover-icon-color: teal;
  --mdc-radio-selected-icon-color: teal;
  --mdc-radio-selected-pressed-icon-color: teal;
}
.mat-mdc-radio-button.mat-primary {
  --mat-radio-ripple-color: black;
  --mat-radio-checked-ripple-color: teal;
  --mat-radio-disabled-label-color: rgba(0, 0, 0, 0.38);
  --mat-radio-label-text-color: rgba(0, 0, 0, 0.87);
}
.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: teal;
  --mdc-radio-selected-hover-icon-color: teal;
  --mdc-radio-selected-icon-color: teal;
  --mdc-radio-selected-pressed-icon-color: teal;
}
.mat-mdc-radio-button.mat-accent {
  --mat-radio-ripple-color: black;
  --mat-radio-checked-ripple-color: teal;
  --mat-radio-disabled-label-color: rgba(0, 0, 0, 0.38);
  --mat-radio-label-text-color: rgba(0, 0, 0, 0.87);
}
.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-mdc-radio-button.mat-warn {
  --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);
}

html {
  --mdc-radio-state-layer-size: 40px;
}
html {
  --mat-radio-touch-target-display: block;
}

html {
  --mat-radio-label-text-font: Inter, Arial, Helvetica, Roboto, sans-serif;
  --mat-radio-label-text-line-height: 1.6;
  --mat-radio-label-text-size: var(--text-size-small);
  --mat-radio-label-text-tracking: normal;
  --mat-radio-label-text-weight: bold;
}

html {
  --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);
}
html {
  --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%);
}

html {
  --mdc-slider-handle-color: teal;
  --mdc-slider-focus-handle-color: teal;
  --mdc-slider-hover-handle-color: teal;
  --mdc-slider-active-track-color: teal;
  --mdc-slider-inactive-track-color: teal;
  --mdc-slider-with-tick-marks-inactive-container-color: teal;
  --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;
}
html {
  --mat-slider-ripple-color: teal;
  --mat-slider-hover-state-layer-color: rgba(0, 128, 128, 0.05);
  --mat-slider-focus-state-layer-color: rgba(0, 128, 128, 0.2);
  --mat-slider-value-indicator-opacity: 0.6;
}
html .mat-accent {
  --mdc-slider-handle-color: teal;
  --mdc-slider-focus-handle-color: teal;
  --mdc-slider-hover-handle-color: teal;
  --mdc-slider-active-track-color: teal;
  --mdc-slider-inactive-track-color: teal;
  --mdc-slider-with-tick-marks-inactive-container-color: teal;
  --mdc-slider-with-tick-marks-active-container-color: white;
}
html .mat-accent {
  --mat-slider-ripple-color: teal;
  --mat-slider-hover-state-layer-color: rgba(0, 128, 128, 0.05);
  --mat-slider-focus-state-layer-color: rgba(0, 128, 128, 0.2);
}
html .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;
}
html .mat-warn {
  --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);
}

html {
  --mdc-slider-label-label-text-font: Inter, Arial, Helvetica, Roboto, sans-serif;
  --mdc-slider-label-label-text-size: 14px;
  --mdc-slider-label-label-text-line-height: 22px;
  --mdc-slider-label-label-text-tracking: 0.0071428571em;
  --mdc-slider-label-label-text-weight: 500;
}

html {
  --mat-menu-container-shape: 4px;
  --mat-menu-divider-bottom-spacing: 0;
  --mat-menu-divider-top-spacing: 0;
  --mat-menu-item-spacing: 16px;
  --mat-menu-item-icon-size: 24px;
  --mat-menu-item-leading-spacing: 16px;
  --mat-menu-item-trailing-spacing: 16px;
  --mat-menu-item-with-icon-leading-spacing: 16px;
  --mat-menu-item-with-icon-trailing-spacing: 16px;
  --mat-menu-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
}

html {
  --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);
}

html {
  --mat-menu-item-label-text-font: Inter, Arial, Helvetica, Roboto, sans-serif;
  --mat-menu-item-label-text-size: var(--text-size-small);
  --mat-menu-item-label-text-tracking: normal;
  --mat-menu-item-label-text-line-height: 1.6;
  --mat-menu-item-label-text-weight: normal;
}

html {
  --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;
}
html {
  --mat-list-active-indicator-color: transparent;
  --mat-list-active-indicator-shape: 4px;
}

html {
  --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;
}
.mdc-list-item__start,
.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: teal;
  --mdc-radio-selected-hover-icon-color: teal;
  --mdc-radio-selected-icon-color: teal;
  --mdc-radio-selected-pressed-icon-color: teal;
}

.mat-accent .mdc-list-item__start,
.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: teal;
  --mdc-radio-selected-hover-icon-color: teal;
  --mdc-radio-selected-icon-color: teal;
  --mdc-radio-selected-pressed-icon-color: teal;
}

.mat-warn .mdc-list-item__start,
.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;
}

.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: teal;
  --mdc-checkbox-selected-hover-icon-color: teal;
  --mdc-checkbox-selected-icon-color: teal;
  --mdc-checkbox-selected-pressed-icon-color: teal;
  --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: teal;
  --mdc-checkbox-selected-hover-state-layer-color: teal;
  --mdc-checkbox-selected-pressed-state-layer-color: teal;
  --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-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: teal;
  --mdc-checkbox-selected-hover-icon-color: teal;
  --mdc-checkbox-selected-icon-color: teal;
  --mdc-checkbox-selected-pressed-icon-color: teal;
  --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: teal;
  --mdc-checkbox-selected-hover-state-layer-color: teal;
  --mdc-checkbox-selected-pressed-state-layer-color: teal;
  --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-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;
}

.mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text,
.mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__start,
.mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text,
.mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__start {
  color: teal;
}

.mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__start,
.mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__content,
.mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__end {
  opacity: 1;
}

html {
  --mdc-list-list-item-one-line-container-height: 48px;
  --mdc-list-list-item-two-line-container-height: 64px;
  --mdc-list-list-item-three-line-container-height: 88px;
}
html {
  --mat-list-list-item-leading-icon-start-space: 16px;
  --mat-list-list-item-leading-icon-end-space: 32px;
}

.mdc-list-item__start,
.mdc-list-item__end {
  --mdc-radio-state-layer-size: 40px;
}

.mat-mdc-list-item.mdc-list-item--with-leading-avatar.mdc-list-item--with-one-line, .mat-mdc-list-item.mdc-list-item--with-leading-checkbox.mdc-list-item--with-one-line, .mat-mdc-list-item.mdc-list-item--with-leading-icon.mdc-list-item--with-one-line {
  height: 56px;
}
.mat-mdc-list-item.mdc-list-item--with-leading-avatar.mdc-list-item--with-two-lines, .mat-mdc-list-item.mdc-list-item--with-leading-checkbox.mdc-list-item--with-two-lines, .mat-mdc-list-item.mdc-list-item--with-leading-icon.mdc-list-item--with-two-lines {
  height: 72px;
}

html {
  --mdc-list-list-item-label-text-font: Inter, Arial, Helvetica, Roboto, sans-serif;
  --mdc-list-list-item-label-text-line-height: 1.6;
  --mdc-list-list-item-label-text-size: var(--text-size-small);
  --mdc-list-list-item-label-text-tracking: normal;
  --mdc-list-list-item-label-text-weight: normal;
  --mdc-list-list-item-supporting-text-font: Inter, Arial, Helvetica, Roboto, sans-serif;
  --mdc-list-list-item-supporting-text-line-height: 1.6;
  --mdc-list-list-item-supporting-text-size: var(--text-size-small);
  --mdc-list-list-item-supporting-text-tracking: normal;
  --mdc-list-list-item-supporting-text-weight: bold;
  --mdc-list-list-item-trailing-supporting-text-font: Inter, Arial, Helvetica, Roboto, sans-serif;
  --mdc-list-list-item-trailing-supporting-text-line-height: 20px;
  --mdc-list-list-item-trailing-supporting-text-size: 12px;
  --mdc-list-list-item-trailing-supporting-text-tracking: 0.0333333333em;
  --mdc-list-list-item-trailing-supporting-text-weight: 400;
}
.mdc-list-group__subheader {
  font: 400 16px / 28px Inter, Arial, Helvetica, Roboto, sans-serif;
  letter-spacing: 0.009375em;
}

html {
  --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);
}

html {
  --mat-paginator-container-size: 56px;
  --mat-paginator-form-field-container-height: 40px;
  --mat-paginator-form-field-container-vertical-padding: 8px;
  --mat-paginator-touch-target-display: block;
}

html {
  --mat-paginator-container-text-font: Inter, Arial, Helvetica, Roboto, sans-serif;
  --mat-paginator-container-text-line-height: 20px;
  --mat-paginator-container-text-size: 12px;
  --mat-paginator-container-text-tracking: 0.0333333333em;
  --mat-paginator-container-text-weight: 400;
  --mat-paginator-select-trigger-text-size: 12px;
}

html {
  --mdc-secondary-navigation-tab-container-height: 48px;
}
html {
  --mdc-tab-indicator-active-indicator-height: 2px;
  --mdc-tab-indicator-active-indicator-shape: 0;
}
html {
  --mat-tab-header-divider-color: transparent;
  --mat-tab-header-divider-height: 0;
}
.mat-mdc-tab-group,
.mat-mdc-tab-nav-bar {
  --mdc-tab-indicator-active-indicator-color: teal;
}
.mat-mdc-tab-group,
.mat-mdc-tab-nav-bar {
  --mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, 0.38);
  --mat-tab-header-pagination-icon-color: black;
  --mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, 0.6);
  --mat-tab-header-active-label-text-color: teal;
  --mat-tab-header-active-ripple-color: teal;
  --mat-tab-header-inactive-ripple-color: teal;
  --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: teal;
  --mat-tab-header-active-hover-label-text-color: teal;
  --mat-tab-header-active-focus-indicator-color: teal;
  --mat-tab-header-active-hover-indicator-color: teal;
}
.mat-mdc-tab-group.mat-accent,
.mat-mdc-tab-nav-bar.mat-accent {
  --mdc-tab-indicator-active-indicator-color: teal;
}
.mat-mdc-tab-group.mat-accent,
.mat-mdc-tab-nav-bar.mat-accent {
  --mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, 0.38);
  --mat-tab-header-pagination-icon-color: black;
  --mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, 0.6);
  --mat-tab-header-active-label-text-color: teal;
  --mat-tab-header-active-ripple-color: teal;
  --mat-tab-header-inactive-ripple-color: teal;
  --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: teal;
  --mat-tab-header-active-hover-label-text-color: teal;
  --mat-tab-header-active-focus-indicator-color: teal;
  --mat-tab-header-active-hover-indicator-color: teal;
}
.mat-mdc-tab-group.mat-warn,
.mat-mdc-tab-nav-bar.mat-warn {
  --mdc-tab-indicator-active-indicator-color: #f44336;
}
.mat-mdc-tab-group.mat-warn,
.mat-mdc-tab-nav-bar.mat-warn {
  --mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, 0.38);
  --mat-tab-header-pagination-icon-color: black;
  --mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, 0.6);
  --mat-tab-header-active-label-text-color: #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;
}
.mat-mdc-tab-group.mat-background-primary,
.mat-mdc-tab-nav-bar.mat-background-primary {
  --mat-tab-header-with-background-background-color: teal;
  --mat-tab-header-with-background-foreground-color: white;
}
.mat-mdc-tab-group.mat-background-accent,
.mat-mdc-tab-nav-bar.mat-background-accent {
  --mat-tab-header-with-background-background-color: teal;
  --mat-tab-header-with-background-foreground-color: white;
}
.mat-mdc-tab-group.mat-background-warn,
.mat-mdc-tab-nav-bar.mat-background-warn {
  --mat-tab-header-with-background-background-color: #f44336;
  --mat-tab-header-with-background-foreground-color: white;
}

.mat-mdc-tab-header {
  --mdc-secondary-navigation-tab-container-height: 48px;
}
.mat-mdc-tab-header {
  --mat-tab-header-label-text-font: Inter, Arial, Helvetica, Roboto, sans-serif;
  --mat-tab-header-label-text-size: var(--text-size-small);
  --mat-tab-header-label-text-tracking: normal;
  --mat-tab-header-label-text-line-height: 1.6;
  --mat-tab-header-label-text-weight: normal;
}
html {
  --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;
}
html {
  --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: teal;
  --mdc-checkbox-selected-hover-icon-color: teal;
  --mdc-checkbox-selected-icon-color: teal;
  --mdc-checkbox-selected-pressed-icon-color: teal;
  --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: teal;
  --mdc-checkbox-selected-hover-state-layer-color: teal;
  --mdc-checkbox-selected-pressed-state-layer-color: teal;
  --mdc-checkbox-unselected-focus-state-layer-color: black;
  --mdc-checkbox-unselected-hover-state-layer-color: black;
  --mdc-checkbox-unselected-pressed-state-layer-color: black;
}
html {
  --mat-checkbox-disabled-label-color: rgba(0, 0, 0, 0.38);
  --mat-checkbox-label-text-color: rgba(0, 0, 0, 0.87);
}

.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: teal;
  --mdc-checkbox-selected-hover-icon-color: teal;
  --mdc-checkbox-selected-icon-color: teal;
  --mdc-checkbox-selected-pressed-icon-color: teal;
  --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: teal;
  --mdc-checkbox-selected-hover-state-layer-color: teal;
  --mdc-checkbox-selected-pressed-state-layer-color: teal;
  --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-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;
}

html {
  --mdc-checkbox-state-layer-size: 40px;
}
html {
  --mat-checkbox-touch-target-display: block;
}

html {
  --mat-checkbox-label-text-font: Inter, Arial, Helvetica, Roboto, sans-serif;
  --mat-checkbox-label-text-line-height: 1.6;
  --mat-checkbox-label-text-size: var(--text-size-small);
  --mat-checkbox-label-text-tracking: normal;
  --mat-checkbox-label-text-weight: bold;
}

html {
  --mdc-text-button-container-shape: 4px;
  --mdc-text-button-keep-touch-target: false;
}
html {
  --mdc-filled-button-container-shape: 4px;
  --mdc-filled-button-keep-touch-target: false;
}
html {
  --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);
}
html {
  --mdc-outlined-button-keep-touch-target: false;
  --mdc-outlined-button-outline-width: 1px;
  --mdc-outlined-button-container-shape: 4px;
}
html {
  --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;
}
html {
  --mat-filled-button-horizontal-padding: 16px;
  --mat-filled-button-icon-spacing: 8px;
  --mat-filled-button-icon-offset: -4px;
}
html {
  --mat-protected-button-horizontal-padding: 16px;
  --mat-protected-button-icon-spacing: 8px;
  --mat-protected-button-icon-offset: -4px;
}
html {
  --mat-outlined-button-horizontal-padding: 15px;
  --mat-outlined-button-icon-spacing: 8px;
  --mat-outlined-button-icon-offset: -4px;
}

html {
  --mdc-text-button-label-text-color: black;
  --mdc-text-button-disabled-label-text-color: rgba(0, 0, 0, 0.38);
}
html {
  --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;
}
html {
  --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);
}
html {
  --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;
}
html {
  --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);
}
html {
  --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;
}
html {
  --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);
}
html {
  --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;
}

.mat-mdc-button.mat-primary {
  --mdc-text-button-label-text-color: teal;
}
.mat-mdc-button.mat-primary {
  --mat-text-button-state-layer-color: teal;
  --mat-text-button-ripple-color: rgba(0, 128, 128, 0.1);
}
.mat-mdc-button.mat-accent {
  --mdc-text-button-label-text-color: teal;
}
.mat-mdc-button.mat-accent {
  --mat-text-button-state-layer-color: teal;
  --mat-text-button-ripple-color: rgba(0, 128, 128, 0.1);
}
.mat-mdc-button.mat-warn {
  --mdc-text-button-label-text-color: #f44336;
}
.mat-mdc-button.mat-warn {
  --mat-text-button-state-layer-color: #f44336;
  --mat-text-button-ripple-color: rgba(244, 67, 54, 0.1);
}

.mat-mdc-unelevated-button.mat-primary {
  --mdc-filled-button-container-color: teal;
  --mdc-filled-button-label-text-color: white;
}
.mat-mdc-unelevated-button.mat-primary {
  --mat-filled-button-state-layer-color: white;
  --mat-filled-button-ripple-color: rgba(255, 255, 255, 0.1);
}
.mat-mdc-unelevated-button.mat-accent {
  --mdc-filled-button-container-color: teal;
  --mdc-filled-button-label-text-color: white;
}
.mat-mdc-unelevated-button.mat-accent {
  --mat-filled-button-state-layer-color: white;
  --mat-filled-button-ripple-color: rgba(255, 255, 255, 0.1);
}
.mat-mdc-unelevated-button.mat-warn {
  --mdc-filled-button-container-color: #f44336;
  --mdc-filled-button-label-text-color: white;
}
.mat-mdc-unelevated-button.mat-warn {
  --mat-filled-button-state-layer-color: white;
  --mat-filled-button-ripple-color: rgba(255, 255, 255, 0.1);
}

.mat-mdc-raised-button.mat-primary {
  --mdc-protected-button-container-color: teal;
  --mdc-protected-button-label-text-color: white;
}
.mat-mdc-raised-button.mat-primary {
  --mat-protected-button-state-layer-color: white;
  --mat-protected-button-ripple-color: rgba(255, 255, 255, 0.1);
}
.mat-mdc-raised-button.mat-accent {
  --mdc-protected-button-container-color: teal;
  --mdc-protected-button-label-text-color: white;
}
.mat-mdc-raised-button.mat-accent {
  --mat-protected-button-state-layer-color: white;
  --mat-protected-button-ripple-color: rgba(255, 255, 255, 0.1);
}
.mat-mdc-raised-button.mat-warn {
  --mdc-protected-button-container-color: #f44336;
  --mdc-protected-button-label-text-color: white;
}
.mat-mdc-raised-button.mat-warn {
  --mat-protected-button-state-layer-color: white;
  --mat-protected-button-ripple-color: rgba(255, 255, 255, 0.1);
}

.mat-mdc-outlined-button.mat-primary {
  --mdc-outlined-button-label-text-color: teal;
  --mdc-outlined-button-outline-color: rgba(0, 0, 0, 0.12);
}
.mat-mdc-outlined-button.mat-primary {
  --mat-outlined-button-state-layer-color: teal;
  --mat-outlined-button-ripple-color: rgba(0, 128, 128, 0.1);
}
.mat-mdc-outlined-button.mat-accent {
  --mdc-outlined-button-label-text-color: teal;
  --mdc-outlined-button-outline-color: rgba(0, 0, 0, 0.12);
}
.mat-mdc-outlined-button.mat-accent {
  --mat-outlined-button-state-layer-color: teal;
  --mat-outlined-button-ripple-color: rgba(0, 128, 128, 0.1);
}
.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-mdc-outlined-button.mat-warn {
  --mat-outlined-button-state-layer-color: #f44336;
  --mat-outlined-button-ripple-color: rgba(244, 67, 54, 0.1);
}

html {
  --mdc-text-button-container-height: 36px;
}
html {
  --mdc-filled-button-container-height: 36px;
}
html {
  --mdc-protected-button-container-height: 36px;
}
html {
  --mdc-outlined-button-container-height: 36px;
}
html {
  --mat-text-button-touch-target-display: block;
}
html {
  --mat-filled-button-touch-target-display: block;
}
html {
  --mat-protected-button-touch-target-display: block;
}
html {
  --mat-outlined-button-touch-target-display: block;
}

html {
  --mdc-text-button-label-text-font: Inter, Arial, Helvetica, Roboto, sans-serif;
  --mdc-text-button-label-text-size: var(--text-size-small);
  --mdc-text-button-label-text-tracking: normal;
  --mdc-text-button-label-text-weight: normal;
  --mdc-text-button-label-text-transform: none;
}
html {
  --mdc-filled-button-label-text-font: Inter, Arial, Helvetica, Roboto, sans-serif;
  --mdc-filled-button-label-text-size: var(--text-size-small);
  --mdc-filled-button-label-text-tracking: normal;
  --mdc-filled-button-label-text-weight: normal;
  --mdc-filled-button-label-text-transform: none;
}
html {
  --mdc-protected-button-label-text-font: Inter, Arial, Helvetica, Roboto, sans-serif;
  --mdc-protected-button-label-text-size: var(--text-size-small);
  --mdc-protected-button-label-text-tracking: normal;
  --mdc-protected-button-label-text-weight: normal;
  --mdc-protected-button-label-text-transform: none;
}
html {
  --mdc-outlined-button-label-text-font: Inter, Arial, Helvetica, Roboto, sans-serif;
  --mdc-outlined-button-label-text-size: var(--text-size-small);
  --mdc-outlined-button-label-text-tracking: normal;
  --mdc-outlined-button-label-text-weight: normal;
  --mdc-outlined-button-label-text-transform: none;
}
html {
  --mdc-icon-button-icon-size: 24px;
}

html {
  --mdc-icon-button-icon-color: inherit;
  --mdc-icon-button-disabled-icon-color: rgba(0, 0, 0, 0.38);
}
html {
  --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;
}
html .mat-mdc-icon-button.mat-primary {
  --mdc-icon-button-icon-color: teal;
}
html .mat-mdc-icon-button.mat-primary {
  --mat-icon-button-state-layer-color: teal;
  --mat-icon-button-ripple-color: rgba(0, 128, 128, 0.1);
}
html .mat-mdc-icon-button.mat-accent {
  --mdc-icon-button-icon-color: teal;
}
html .mat-mdc-icon-button.mat-accent {
  --mat-icon-button-state-layer-color: teal;
  --mat-icon-button-ripple-color: rgba(0, 128, 128, 0.1);
}
html .mat-mdc-icon-button.mat-warn {
  --mdc-icon-button-icon-color: #f44336;
}
html .mat-mdc-icon-button.mat-warn {
  --mat-icon-button-state-layer-color: #f44336;
  --mat-icon-button-ripple-color: rgba(244, 67, 54, 0.1);
}

html {
  --mat-icon-button-touch-target-display: block;
}

.mat-mdc-icon-button.mat-mdc-button-base {
  --mdc-icon-button-state-layer-size: 48px;
  width: var(--mdc-icon-button-state-layer-size);
  height: var(--mdc-icon-button-state-layer-size);
  padding: 12px;
}

html {
  --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);
}
html {
  --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);
}
html {
  --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);
}

html {
  --mdc-fab-container-color: white;
}
html {
  --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);
}
html {
  --mdc-fab-small-container-color: white;
}
html {
  --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);
}
html .mat-mdc-fab.mat-primary {
  --mdc-fab-container-color: teal;
}
html .mat-mdc-fab.mat-primary {
  --mat-fab-foreground-color: white;
  --mat-fab-state-layer-color: white;
  --mat-fab-ripple-color: rgba(255, 255, 255, 0.1);
}
html .mat-mdc-fab.mat-accent {
  --mdc-fab-container-color: teal;
}
html .mat-mdc-fab.mat-accent {
  --mat-fab-foreground-color: white;
  --mat-fab-state-layer-color: white;
  --mat-fab-ripple-color: rgba(255, 255, 255, 0.1);
}
html .mat-mdc-fab.mat-warn {
  --mdc-fab-container-color: #f44336;
}
html .mat-mdc-fab.mat-warn {
  --mat-fab-foreground-color: white;
  --mat-fab-state-layer-color: white;
  --mat-fab-ripple-color: rgba(255, 255, 255, 0.1);
}
html .mat-mdc-mini-fab.mat-primary {
  --mdc-fab-small-container-color: teal;
}
html .mat-mdc-mini-fab.mat-primary {
  --mat-fab-small-foreground-color: white;
  --mat-fab-small-state-layer-color: white;
  --mat-fab-small-ripple-color: rgba(255, 255, 255, 0.1);
}
html .mat-mdc-mini-fab.mat-accent {
  --mdc-fab-small-container-color: teal;
}
html .mat-mdc-mini-fab.mat-accent {
  --mat-fab-small-foreground-color: white;
  --mat-fab-small-state-layer-color: white;
  --mat-fab-small-ripple-color: rgba(255, 255, 255, 0.1);
}
html .mat-mdc-mini-fab.mat-warn {
  --mdc-fab-small-container-color: #f44336;
}
html .mat-mdc-mini-fab.mat-warn {
  --mat-fab-small-foreground-color: white;
  --mat-fab-small-state-layer-color: white;
  --mat-fab-small-ripple-color: rgba(255, 255, 255, 0.1);
}

html {
  --mat-fab-touch-target-display: block;
}
html {
  --mat-fab-small-touch-target-display: block;
}

html {
  --mdc-extended-fab-label-text-font: Inter, Arial, Helvetica, Roboto, sans-serif;
  --mdc-extended-fab-label-text-size: var(--text-size-small);
  --mdc-extended-fab-label-text-tracking: normal;
  --mdc-extended-fab-label-text-weight: normal;
}
html {
  --mdc-snackbar-container-shape: 4px;
}

html {
  --mdc-snackbar-container-color: #333333;
  --mdc-snackbar-supporting-text-color: rgba(255, 255, 255, 0.87);
}
html {
  --mat-snack-bar-button-color: teal;
}

html {
  --mdc-snackbar-supporting-text-font: Inter, Arial, Helvetica, Roboto, sans-serif;
  --mdc-snackbar-supporting-text-line-height: 1.6;
  --mdc-snackbar-supporting-text-size: var(--text-size-small);
  --mdc-snackbar-supporting-text-weight: bold;
}

html {
  --mat-table-row-item-outline-width: 1px;
}

html {
  --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);
}

html {
  --mat-table-header-container-height: 56px;
  --mat-table-footer-container-height: 52px;
  --mat-table-row-item-container-height: 52px;
}

html {
  --mat-table-header-headline-font: Inter, Arial, Helvetica, Roboto, sans-serif;
  --mat-table-header-headline-line-height: 22px;
  --mat-table-header-headline-size: 14px;
  --mat-table-header-headline-weight: 500;
  --mat-table-header-headline-tracking: 0.0071428571em;
  --mat-table-row-item-label-text-font: Inter, Arial, Helvetica, Roboto, sans-serif;
  --mat-table-row-item-label-text-line-height: 1.6;
  --mat-table-row-item-label-text-size: var(--text-size-small);
  --mat-table-row-item-label-text-weight: bold;
  --mat-table-row-item-label-text-tracking: normal;
  --mat-table-footer-supporting-text-font: Inter, Arial, Helvetica, Roboto, sans-serif;
  --mat-table-footer-supporting-text-line-height: 1.6;
  --mat-table-footer-supporting-text-size: var(--text-size-small);
  --mat-table-footer-supporting-text-weight: bold;
  --mat-table-footer-supporting-text-tracking: normal;
}

html {
  --mdc-circular-progress-active-indicator-width: 4px;
  --mdc-circular-progress-size: 48px;
}

html {
  --mdc-circular-progress-active-indicator-color: teal;
}
html .mat-accent {
  --mdc-circular-progress-active-indicator-color: teal;
}
html .mat-warn {
  --mdc-circular-progress-active-indicator-color: #f44336;
}

html {
  --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;
}

html {
  --mat-badge-background-color: teal;
  --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-badge-accent {
  --mat-badge-background-color: teal;
  --mat-badge-text-color: white;
}

.mat-badge-warn {
  --mat-badge-background-color: #f44336;
  --mat-badge-text-color: white;
}

html {
  --mat-badge-text-font: Inter, Arial, Helvetica, Roboto, 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;
}

html {
  --mat-bottom-sheet-container-shape: 4px;
}

html {
  --mat-bottom-sheet-container-text-color: rgba(0, 0, 0, 0.87);
  --mat-bottom-sheet-container-background-color: white;
}

html {
  --mat-bottom-sheet-container-text-font: Inter, Arial, Helvetica, Roboto, sans-serif;
  --mat-bottom-sheet-container-text-line-height: 1.6;
  --mat-bottom-sheet-container-text-size: var(--text-size-small);
  --mat-bottom-sheet-container-text-tracking: normal;
  --mat-bottom-sheet-container-text-weight: bold;
}

html {
  --mat-legacy-button-toggle-height: 36px;
  --mat-legacy-button-toggle-shape: 2px;
  --mat-legacy-button-toggle-focus-state-layer-opacity: 1;
}
html {
  --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;
}

html {
  --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;
}
html {
  --mat-standard-button-toggle-text-color: rgba(0, 0, 0, 0.87);
  --mat-standard-button-toggle-background-color: white;
  --mat-standard-button-toggle-state-layer-color: black;
  --mat-standard-button-toggle-selected-state-background-color: #e0e0e0;
  --mat-standard-button-toggle-selected-state-text-color: rgba(0, 0, 0, 0.87);
  --mat-standard-button-toggle-disabled-state-text-color: rgba(0, 0, 0, 0.26);
  --mat-standard-button-toggle-disabled-state-background-color: white;
  --mat-standard-button-toggle-disabled-selected-state-text-color: rgba(0, 0, 0, 0.87);
  --mat-standard-button-toggle-disabled-selected-state-background-color: #bdbdbd;
  --mat-standard-button-toggle-divider-color: rgb(224.4, 224.4, 224.4);
}

html {
  --mat-standard-button-toggle-height: 48px;
}

html {
  --mat-legacy-button-toggle-label-text-font: Inter, Arial, Helvetica, Roboto, sans-serif;
  --mat-legacy-button-toggle-label-text-line-height: 1.6;
  --mat-legacy-button-toggle-label-text-size: var(--text-size-small);
  --mat-legacy-button-toggle-label-text-tracking: normal;
  --mat-legacy-button-toggle-label-text-weight: normal;
}
html {
  --mat-standard-button-toggle-label-text-font: Inter, Arial, Helvetica, Roboto, sans-serif;
  --mat-standard-button-toggle-label-text-line-height: 1.6;
  --mat-standard-button-toggle-label-text-size: var(--text-size-small);
  --mat-standard-button-toggle-label-text-tracking: normal;
  --mat-standard-button-toggle-label-text-weight: normal;
}

html {
  --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);
}

html {
  --mat-datepicker-calendar-date-selected-state-text-color: white;
  --mat-datepicker-calendar-date-selected-state-background-color: teal;
  --mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(0, 128, 128, 0.4);
  --mat-datepicker-calendar-date-today-selected-state-outline-color: white;
  --mat-datepicker-calendar-date-focus-state-background-color: rgba(0, 128, 128, 0.3);
  --mat-datepicker-calendar-date-hover-state-background-color: rgba(0, 128, 128, 0.3);
  --mat-datepicker-toggle-active-state-icon-color: teal;
  --mat-datepicker-calendar-date-in-range-state-background-color: rgba(0, 128, 128, 0.2);
  --mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, 0.2);
  --mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;
  --mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);
  --mat-datepicker-toggle-icon-color: rgba(0, 0, 0, 0.54);
  --mat-datepicker-calendar-body-label-text-color: rgba(0, 0, 0, 0.54);
  --mat-datepicker-calendar-period-button-text-color: black;
  --mat-datepicker-calendar-period-button-icon-color: rgba(0, 0, 0, 0.54);
  --mat-datepicker-calendar-navigation-button-icon-color: rgba(0, 0, 0, 0.54);
  --mat-datepicker-calendar-header-divider-color: rgba(0, 0, 0, 0.12);
  --mat-datepicker-calendar-header-text-color: rgba(0, 0, 0, 0.54);
  --mat-datepicker-calendar-date-today-outline-color: rgba(0, 0, 0, 0.38);
  --mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(0, 0, 0, 0.18);
  --mat-datepicker-calendar-date-text-color: rgba(0, 0, 0, 0.87);
  --mat-datepicker-calendar-date-outline-color: transparent;
  --mat-datepicker-calendar-date-disabled-state-text-color: rgba(0, 0, 0, 0.38);
  --mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, 0.24);
  --mat-datepicker-range-input-separator-color: rgba(0, 0, 0, 0.87);
  --mat-datepicker-range-input-disabled-state-separator-color: rgba(0, 0, 0, 0.38);
  --mat-datepicker-range-input-disabled-state-text-color: rgba(0, 0, 0, 0.38);
  --mat-datepicker-calendar-container-background-color: white;
  --mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, 0.87);
}

.mat-datepicker-content.mat-accent {
  --mat-datepicker-calendar-date-selected-state-text-color: white;
  --mat-datepicker-calendar-date-selected-state-background-color: teal;
  --mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(0, 128, 128, 0.4);
  --mat-datepicker-calendar-date-today-selected-state-outline-color: white;
  --mat-datepicker-calendar-date-focus-state-background-color: rgba(0, 128, 128, 0.3);
  --mat-datepicker-calendar-date-hover-state-background-color: rgba(0, 128, 128, 0.3);
  --mat-datepicker-calendar-date-in-range-state-background-color: rgba(0, 128, 128, 0.2);
  --mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, 0.2);
  --mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;
  --mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);
}
.mat-datepicker-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: rgb(69.5241935484, 163.4758064516, 93.9516129032);
}

.mat-datepicker-toggle-active.mat-accent {
  --mat-datepicker-toggle-active-state-icon-color: teal;
}
.mat-datepicker-toggle-active.mat-warn {
  --mat-datepicker-toggle-active-state-icon-color: #f44336;
}

.mat-calendar-controls {
  --mat-icon-button-touch-target-display: none;
}
.mat-calendar-controls .mat-mdc-icon-button.mat-mdc-button-base {
  --mdc-icon-button-state-layer-size: 40px;
  width: var(--mdc-icon-button-state-layer-size);
  height: var(--mdc-icon-button-state-layer-size);
  padding: 8px;
}

html {
  --mat-datepicker-calendar-text-font: Inter, Arial, Helvetica, Roboto, sans-serif;
  --mat-datepicker-calendar-text-size: 13px;
  --mat-datepicker-calendar-body-label-text-size: var(--text-size-small);
  --mat-datepicker-calendar-body-label-text-weight: normal;
  --mat-datepicker-calendar-period-button-text-size: var(--text-size-small);
  --mat-datepicker-calendar-period-button-text-weight: normal;
  --mat-datepicker-calendar-header-text-size: 11px;
  --mat-datepicker-calendar-header-text-weight: normal;
}

html {
  --mat-divider-width: 1px;
}

html {
  --mat-divider-color: rgba(0, 0, 0, 0.12);
}

html {
  --mat-expansion-container-shape: 4px;
  --mat-expansion-legacy-header-indicator-display: inline-block;
  --mat-expansion-header-indicator-display: none;
}

html {
  --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);
}

html {
  --mat-expansion-header-collapsed-state-height: 48px;
  --mat-expansion-header-expanded-state-height: 64px;
}

html {
  --mat-expansion-header-text-font: Inter, Arial, Helvetica, Roboto, 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: Inter, Arial, Helvetica, Roboto, sans-serif;
  --mat-expansion-container-text-line-height: 1.6;
  --mat-expansion-container-text-size: var(--text-size-small);
  --mat-expansion-container-text-tracking: normal;
  --mat-expansion-container-text-weight: bold;
}

html {
  --mat-grid-list-tile-header-primary-text-size: var(--text-size-small);
  --mat-grid-list-tile-header-secondary-text-size: 12px;
  --mat-grid-list-tile-footer-primary-text-size: var(--text-size-small);
  --mat-grid-list-tile-footer-secondary-text-size: 12px;
}

html {
  --mat-icon-color: inherit;
}

.mat-icon.mat-primary {
  --mat-icon-color: teal;
}
.mat-icon.mat-accent {
  --mat-icon-color: teal;
}
.mat-icon.mat-warn {
  --mat-icon-color: #f44336;
}

html {
  --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;
}

html {
  --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);
}

html {
  --mat-stepper-header-icon-foreground-color: white;
  --mat-stepper-header-selected-state-icon-background-color: teal;
  --mat-stepper-header-selected-state-icon-foreground-color: white;
  --mat-stepper-header-done-state-icon-background-color: teal;
  --mat-stepper-header-done-state-icon-foreground-color: white;
  --mat-stepper-header-edit-state-icon-background-color: teal;
  --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;
}
html .mat-step-header.mat-accent {
  --mat-stepper-header-icon-foreground-color: white;
  --mat-stepper-header-selected-state-icon-background-color: teal;
  --mat-stepper-header-selected-state-icon-foreground-color: white;
  --mat-stepper-header-done-state-icon-background-color: teal;
  --mat-stepper-header-done-state-icon-foreground-color: white;
  --mat-stepper-header-edit-state-icon-background-color: teal;
  --mat-stepper-header-edit-state-icon-foreground-color: white;
}
html .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;
}

html {
  --mat-stepper-header-height: 72px;
}

html {
  --mat-stepper-container-text-font: Inter, Arial, Helvetica, Roboto, sans-serif;
  --mat-stepper-header-label-text-font: Inter, Arial, Helvetica, Roboto, sans-serif;
  --mat-stepper-header-label-text-size: var(--text-size-small);
  --mat-stepper-header-label-text-weight: bold;
  --mat-stepper-header-error-state-label-text-size: var(--text-size-small);
  --mat-stepper-header-selected-state-label-text-size: var(--text-size-small);
  --mat-stepper-header-selected-state-label-text-weight: normal;
}

html {
  --mat-sort-arrow-color: rgb(117.3, 117.3, 117.3);
}

html {
  --mat-toolbar-container-background-color: whitesmoke;
  --mat-toolbar-container-text-color: rgba(0, 0, 0, 0.87);
}

.mat-toolbar.mat-primary {
  --mat-toolbar-container-background-color: teal;
  --mat-toolbar-container-text-color: white;
}
.mat-toolbar.mat-accent {
  --mat-toolbar-container-background-color: teal;
  --mat-toolbar-container-text-color: white;
}
.mat-toolbar.mat-warn {
  --mat-toolbar-container-background-color: #f44336;
  --mat-toolbar-container-text-color: white;
}

html {
  --mat-toolbar-standard-height: 64px;
  --mat-toolbar-mobile-height: 56px;
}

html {
  --mat-toolbar-title-text-font: Inter, Arial, Helvetica, Roboto, sans-serif;
  --mat-toolbar-title-text-line-height: 32px;
  --mat-toolbar-title-text-size: 20px;
  --mat-toolbar-title-text-tracking: 0.0125em;
  --mat-toolbar-title-text-weight: 500;
}

html {
  --mat-tree-container-background-color: white;
  --mat-tree-node-text-color: rgba(0, 0, 0, 0.87);
}

html {
  --mat-tree-node-min-height: 48px;
}

html {
  --mat-tree-node-text-font: Inter, Arial, Helvetica, Roboto, sans-serif;
  --mat-tree-node-text-size: var(--text-size-small);
  --mat-tree-node-text-weight: bold;
}

html {
  --mat-timepicker-container-shape: 4px;
  --mat-timepicker-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
}

html {
  --mat-timepicker-container-background-color: white;
}

html {
  --mat-menu-item-label-text-font: Roboto, sans-serif;
  --mat-menu-item-label-text-size: var(--text-size-small);
  --mat-menu-item-label-text-tracking: normal;
  --mat-menu-item-label-text-line-height: var(--text-size-small);
  --mat-menu-item-label-text-weight: bold;
}

.mat-mdc-tab-header {
  --mat-tab-header-label-text-font: Roboto, sans-serif;
  --mat-tab-header-label-text-size: var(--text-size-small);
  --mat-tab-header-label-text-tracking: normal;
  --mat-tab-header-label-text-line-height: var(--text-size-small);
  --mat-tab-header-label-text-weight: bold;
}
.mat-select-list-search {
  width: 300px;
}

body mat-accordion.gray-header {
  --mat-expansion-container-background-color: var(--gray01);
}
body mat-accordion.gray-header {
  --mat-expansion-header-expanded-state-height: 48px;
}
body mat-accordion.gray-header mat-expansion-panel {
  border: 1px solid var(--gray03);
}
body mat-accordion.gray-header mat-expansion-panel:not(:first-of-type) {
  border-top: none;
}
body mat-accordion.gray-header .mat-expansion-panel-header {
  padding: 0 16px;
}
body mat-accordion.gray-header .mat-expansion-panel-header .mat-expanded {
  border-bottom: 1px solid var(--gray03);
}
body mat-accordion.gray-header .mat-expansion-panel-content-wrapper {
  background-color: #fff;
}
body mat-accordion.gray-header .mat-expansion-panel {
  box-shadow: none;
}
body mat-accordion.gray-header .mat-expansion-panel-body {
  padding: 0 16px;
}
body .mat-mdc-form-field-infix {
  min-height: 36px !important;
}
body .mat-mdc-form-field-icon-prefix {
  padding-right: 0;
}
body .mat-mdc-form-field-icon-prefix > .mat-icon,
body .mat-mdc-form-field-icon-suffix > .mat-icon {
  padding-left: 8px;
  padding-right: 8px;
}
body .mat-mdc-form-field .mat-mdc-text-field-wrapper .mdc-notched-outline > div {
  border-color: rgb(224, 224, 224);
}
body .mat-mdc-form-field .mat-mdc-text-field-wrapper .mdc-notched-outline:hover > div {
  border-color: rgb(128, 128, 128);
}
body .mat-mdc-form-field .mat-mdc-text-field-wrapper.mdc-text-field--outlined {
  background: #fff;
}
body .mat-mdc-text-field-wrapper.mdc-text-field--outlined .mat-mdc-form-field-infix {
  padding-top: 9px;
  padding-bottom: 0 !important;
}
body .mat-mdc-text-field-wrapper.mdc-text-field--outlined .mat-mdc-form-field-infix mat-select {
  padding-top: 0;
}
body .mat-mdc-text-field-wrapper.mdc-text-field--outlined .mat-mdc-form-field-infix mat-select .mat-mdc-select-value {
  padding: 1px;
}
body .mdc-text-field--no-label:not(.mdc-text-field--textarea) .mat-mdc-text-field-wrapper .mat-mdc-form-field-input-control {
  height: 30px;
}
body .mat-mdc-form-field .mat-mdc-floating-label.mdc-floating-label {
  padding-bottom: 20px;
}
body .mat-mdc-form-field .mat-mdc-text-field-wrapper.mdc-text-field .mdc-notched-outline__notch {
  padding-top: 9px;
}
body .mat-mdc-form-field-has-icon-suffix .mat-mdc-text-field-wrapper {
  height: 36px;
}
body .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-floating-label {
  top: 20px;
}
body .mat-mdc-icon-button.mat-mdc-button-base {
  width: 48px;
  height: 43px;
  padding: 8px;
}
body .mat-mdc-tab-body-content {
  padding: 2rem;
  height: 88vh;
  overflow: auto;
}
body .mat-mdc-tab-group.mat-mdc-tab-group-stretch-tabs > .mat-mdc-tab-header .mat-mdc-tab {
  flex-grow: 0;
}
body .mat-mdc-select-trigger {
  margin-top: -7px;
}
body .mat-mdc-card-content:first-child {
  padding-top: 0;
}
body .mat-mdc-card-content:last-child {
  padding-bottom: 0;
}
body .mat-mdc-card-content {
  display: flex;
  padding: 0 16px 0 0;
}
body mat-checkbox.tt-aligncheckbox .mdc-form-field .mdc-checkbox {
  padding: 0.6rem 0.8rem;
  margin-top: -11px;
}
@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes ghost-lines {
  0% {
    background-position: -100px;
  }
  40% {
    background-position: 40vw;
  }
  100% {
    background-position: 60vw;
  }
}
@keyframes ghost-avatar {
  0% {
    background-position: -32px;
  }
  40%, 100% {
    background-position: 208px;
  }
}
body mat-dialog-container.mat-mdc-dialog-container div[mat-dialog-title] {
  margin: 0 -24px;
  font-size: var(--text-size-small);
  font-weight: normal;
  position: relative;
}
body mat-dialog-container.mat-mdc-dialog-container div[mat-dialog-title] h1 {
  display: block;
  padding: 0.8rem 0rem;
  text-align: center;
  font-size: var(--text-size-medium);
  border-bottom: 1px solid #dde4eb;
  margin-top: -40px;
}
body mat-dialog-container.mat-mdc-dialog-container div[mat-dialog-title] h1 .note {
  font-size: var(--text-size-small);
  color: #999;
  line-height: 1.4rem;
}
body mat-dialog-container.mat-mdc-dialog-container div[mat-dialog-title] .tt-close {
  position: absolute;
  right: 40px;
  top: 28px;
  color: #000;
  font-size: 1.5rem;
  border-bottom: none;
}
body mat-dialog-container.mat-mdc-dialog-container div[mat-dialog-title] .tt-note .mat-mdc-form-field {
  margin: 0 7px 0 7px;
  /* TODO(mdc-migration): The following rule targets internal classes of form-field that may no longer apply for the MDC version.*/
}
body mat-dialog-container.mat-mdc-dialog-container div[mat-dialog-title] .tt-note .mat-mdc-form-field .mat-form-field-wrapper {
  padding: 0;
}
body mat-dialog-container.mat-mdc-dialog-container div[mat-dialog-content] {
  margin: -10px 0.8rem 0.8rem 0.8rem;
  padding-left: 0.8rem;
}
body mat-dialog-container.mat-mdc-dialog-container div[mat-dialog-content] textarea {
  padding: 1.6rem 0 0 1.6rem;
}
body mat-dialog-container.mat-mdc-dialog-container div[mat-dialog-actions] {
  border-top: 1px solid #dde4eb;
  text-align: center;
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  position: relative;
  padding: 2rem 4rem;
}
body mat-dialog-container.mat-mdc-dialog-container div[mat-dialog-actions] .action-left {
  left: 2rem;
  position: absolute;
}
body .mat-mdc-dialog-container .mdc-dialog__surface {
  overflow-x: hidden;
}
body .mat-content {
  overflow: visible !important;
}
body .no-subscript .mat-mdc-form-field-subscript-wrapper {
  display: none;
}
body .mat-field-small .mat-mdc-text-field-wrapper {
  height: 36px;
}
body .mat-field-small .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix {
  padding-top: 9px;
}
body .mat-field-small .mat-mdc-form-field-icon-prefix > .mat-icon,
body .mat-field-small .mat-mdc-form-field-icon-suffix > .mat-icon {
  padding-top: 7px;
}
body .cdk-overlay-pane {
  max-height: none;
}
body .cdk-overlay-pane.cdk-overlay-lozenge {
  padding-top: 4px;
}
body .drawer-overlay-backdrop {
  background: rgba(0, 0, 0, 0.2);
}
body .center .mat-sort-header-container {
  display: inline-flex;
}
body .pe-select-menu {
  max-height: 50rem;
}
body .pe-select-menu .mat-mdc-menu-content {
  padding: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
}
body .pe-select-menu .mat-mdc-menu-content > .mat-mdc-menu-item {
  padding: 0;
  margin: 0;
  min-height: 0;
  flex: 1 1 auto;
  width: 100%;
  display: flex;
  align-items: stretch;
}
body .pe-select-menu .mat-mdc-menu-content > .mat-mdc-menu-item .mdc-list-item__primary-text {
  flex: 1 1 auto;
  width: 100%;
  display: flex;
  align-items: center;
  font-weight: 500;
  line-height: 16px;
}
body .pe-select-menu .mat-mdc-menu-content > .mat-mdc-menu-item .mat-mdc-menu-submenu-icon {
  display: none;
  color: red;
}
@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes ghost-lines {
  0% {
    background-position: -100px;
  }
  40% {
    background-position: 40vw;
  }
  100% {
    background-position: 60vw;
  }
}
@keyframes ghost-avatar {
  0% {
    background-position: -32px;
  }
  40%, 100% {
    background-position: 208px;
  }
}
body .mat-calendar-body-selected {
  color: #fff;
}
@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes ghost-lines {
  0% {
    background-position: -100px;
  }
  40% {
    background-position: 40vw;
  }
  100% {
    background-position: 60vw;
  }
}
@keyframes ghost-avatar {
  0% {
    background-position: -32px;
  }
  40%, 100% {
    background-position: 208px;
  }
}
body .mat-mdc-slide-toggle .mdc-switch__icons {
  display: none;
}
body .mat-mdc-slide-toggle .mdc-form-field > label {
  padding-left: 8px;
}
body .mat-mdc-slide-toggle .mdc-switch {
  width: 40px;
}
body .mat-mdc-slide-toggle .mdc-switch .mdc-switch__handle {
  left: 4px;
  width: 16px;
  height: 16px;
}
body .mat-mdc-slide-toggle .mdc-switch .mdc-switch__handle::after {
  background: #fff !important;
}
body .mat-mdc-slide-toggle .mdc-switch .mdc-switch__track {
  border-radius: 11px;
  height: 22px;
}
body .mat-mdc-slide-toggle .mdc-switch .mdc-switch__track::before {
  background-color: #808080 !important;
}
body .mat-mdc-slide-toggle .mdc-switch .mdc-switch__handle-track {
  width: 16px;
}
body .gray.mat-mdc-progress-spinner .mdc-circular-progress__indeterminate-circle-graphic {
  stroke: #cccccc;
}
@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes ghost-lines {
  0% {
    background-position: -100px;
  }
  40% {
    background-position: 40vw;
  }
  100% {
    background-position: 60vw;
  }
}
@keyframes ghost-avatar {
  0% {
    background-position: -32px;
  }
  40%, 100% {
    background-position: 208px;
  }
}
body mat-button-toggle-group[appearance=legacy] {
  border: 2px solid #00a69f;
  border-radius: 4px;
}
body mat-button-toggle-group[appearance=legacy] .pe-button-tertiaryOutline {
  color: #00a69f;
  background-color: #fff;
  border-color: #fff;
}
body mat-button-toggle-group[appearance=legacy] .pe-button-tertiaryOutline:hover:not(.pe-button-spinner):not(.pe-button-disabled) {
  background-color: #fff;
  border-color: #fff;
  color: #80c8c4;
}
body mat-button-toggle-group[appearance=legacy] .pe-button-tertiaryOutline.pe-button-disabled {
  color: var(--gray05);
}
body mat-button-toggle-group[appearance=legacy] .pe-button-primary {
  color: #fff;
  background-color: #00a69f;
  border-color: #00a69f;
}
body mat-button-toggle-group[appearance=legacy] .pe-button-primary .pe-button-spinner {
  background: #fff; /* the color of the spinner */
}
body mat-button-toggle-group[appearance=legacy] .pe-button-primary:hover:not(.pe-button-spinner):not(.pe-button-disabled) {
  background-color: #66cac6;
  border-color: #66cac6;
}
body .mat-button-toggle-group-appearance-standard {
  --mat-standard-button-toggle-height: 24px;
  --mat-standard-button-toggle-divider-color: var(--gray04);
}
body .mat-button-toggle-group-appearance-standard .mat-button-toggle-appearance-standard {
  font-weight: bold;
  margin: 4px;
}
body .mat-button-toggle-group-appearance-standard .mat-button-toggle-appearance-standard + .mat-button-toggle-appearance-standard {
  border-left: 0;
}
body .mat-button-toggle-group-appearance-standard .pe-button-primary {
  background-color: var(--primary-dark);
  color: var(--gray00);
  border-radius: 4px;
}
body .mat-button-toggle-group-appearance-standard .mat-button-toggle-label-content {
  padding: 0 16px;
}
body .mat-button-toggle-group-appearance-standard .pe-button-tertiaryOutline {
  color: #212121;
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

li {
  padding: 0;
  margin: 0;
}
@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes ghost-lines {
  0% {
    background-position: -100px;
  }
  40% {
    background-position: 40vw;
  }
  100% {
    background-position: 60vw;
  }
}
@keyframes ghost-avatar {
  0% {
    background-position: -32px;
  }
  40%, 100% {
    background-position: 208px;
  }
}
:root {
  width: 100%;
  height: 100%;
}
:root body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

@font-face {
  font-family: "ScalaSansBold";
  src: url('ScalaSansWeb-Bold.6cac00787307ba59.eot');
  src: url('ScalaSansWeb-Bold.6cac00787307ba59.eot?#iefix') format("embedded-opentype"), url('ScalaSansWeb-Bold.dbd6771d01c3313b.woff') format("woff");
}
@font-face {
  font-family: "tt-icons";
  src: url('tt-icons.d09ef41991e76210.eot?f18nqe');
  src: url('tt-icons.d09ef41991e76210.eot?f18nqe#iefix') format("embedded-opentype"), url('tt-icons.9a961eea915097eb.ttf?f18nqe') format("truetype"), url('tt-icons.0c3046f2700be675.woff?f18nqe') format("woff"), url('tt-icons.d62a9e63cc558164.svg?f18nqe#icomoon') format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "ttPE-Glyphicons-Halflings";
  src: url('glyphicons-halflings-regular.7a0f4b092e86cb52.eot');
  src: url('glyphicons-halflings-regular.7a0f4b092e86cb52.eot?#iefix') format("embedded-opentype"), url('glyphicons-halflings-regular.b70781972ce7320b.woff2') format("woff2"), url('glyphicons-halflings-regular.4ba85deaf3670942.woff') format("woff"), url('glyphicons-halflings-regular.009b407a9881be10.ttf') format("truetype"), url('glyphicons-halflings-regular.85f0466cb4ab3a4d.svg#glyphicons_halflingsregular') format("svg");
}
.tt-glyphicon-after:after,
.tt-glyphicon:before {
  position: relative;
  top: 1px;
  display: inline-block;
  font-family: "ttPE-Glyphicons-Halflings";
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.tt-glyphicon-after:after {
  padding-left: 4px;
}

a.tt-glyphicon:before {
  padding-right: 4px;
}

a.tt-glyphicon-after.tt-disabled:after a.tt-glyphicon.tt-disabled:before {
  color: #b9b9b9;
}

.tt-glyphicon-asterisk:before {
  content: "*";
}

.tt-glyphicon-plus:before {
  content: "+";
}

.tt-glyphicon-euro:before,
.tt-glyphicon-eur:before {
  content: "€";
}

.tt-glyphicon-minus:before {
  content: "−";
}

.tt-glyphicon-cloud:before {
  content: "☁";
}

.tt-glyphicon-envelope:before {
  content: "✉";
}

.tt-glyphicon-pencil:before {
  content: "✏";
}

.tt-glyphicon-glass:before {
  content: "\e001";
}

.tt-glyphicon-music:before {
  content: "\e002";
}

.tt-glyphicon-search:before {
  content: "\e003";
}

.tt-glyphicon-heart:before {
  content: "\e005";
}

.tt-glyphicon-star:before {
  content: "\e006";
}

.tt-glyphicon-star-empty:before {
  content: "\e007";
}

.tt-glyphicon-user:before {
  content: "\e008";
}

.tt-glyphicon-film:before {
  content: "\e009";
}

.tt-glyphicon-th-large:before {
  content: "\e010";
}

.tt-glyphicon-th:before {
  content: "\e011";
}

.tt-glyphicon-th-list:before {
  content: "\e012";
}

.tt-glyphicon-ok:before {
  content: "\e013";
}

.tt-glyphicon-remove:before {
  content: "\e014";
}

.tt-glyphicon-zoom-in:before {
  content: "\e015";
}

.tt-glyphicon-zoom-out:before {
  content: "\e016";
}

.tt-glyphicon-off:before {
  content: "\e017";
}

.tt-glyphicon-signal:before {
  content: "\e018";
}

.tt-glyphicon-cog:before {
  content: "\e019";
}

.tt-glyphicon-trash:before {
  content: "\e020";
}

.tt-glyphicon-home:before {
  content: "\e021";
}

.tt-glyphicon-file:before {
  content: "\e022";
}

.tt-glyphicon-time:before {
  content: "\e023";
}

.tt-glyphicon-road:before {
  content: "\e024";
}

.tt-glyphicon-download-alt:before {
  content: "\e025";
}

.tt-glyphicon-download:before {
  content: "\e026";
}

.tt-glyphicon-upload:before {
  content: "\e027";
}

.tt-glyphicon-inbox:before {
  content: "\e028";
}

.tt-glyphicon-play-circle:before {
  content: "\e029";
}

.tt-glyphicon-repeat:before {
  content: "\e030";
}

.tt-glyphicon-refresh:before {
  content: "\e031";
}

.tt-glyphicon-list-alt:before {
  content: "\e032";
}

.tt-glyphicon-lock:before {
  content: "\e033";
}

.tt-glyphicon-flag:before {
  content: "\e034";
}

.tt-glyphicon-headphones:before {
  content: "\e035";
}

.tt-glyphicon-volume-off:before {
  content: "\e036";
}

.tt-glyphicon-volume-down:before {
  content: "\e037";
}

.tt-glyphicon-volume-up:before {
  content: "\e038";
}

.tt-glyphicon-qrcode:before {
  content: "\e039";
}

.tt-glyphicon-barcode:before {
  content: "\e040";
}

.tt-glyphicon-tag:before {
  content: "\e041";
}

.tt-glyphicon-tags:before {
  content: "\e042";
}

.tt-glyphicon-book:before {
  content: "\e043";
}

.tt-glyphicon-bookmark:before {
  content: "\e044";
}

.tt-glyphicon-print:before {
  content: "\e045";
}

.tt-glyphicon-camera:before {
  content: "\e046";
}

.tt-glyphicon-font:before {
  content: "\e047";
}

.tt-glyphicon-bold:before {
  content: "\e048";
}

.tt-glyphicon-italic:before {
  content: "\e049";
}

.tt-glyphicon-text-height:before {
  content: "\e050";
}

.tt-glyphicon-text-width:before {
  content: "\e051";
}

.tt-glyphicon-align-left:before {
  content: "\e052";
}

.tt-glyphicon-align-center:before {
  content: "\e053";
}

.tt-glyphicon-align-right:before {
  content: "\e054";
}

.tt-glyphicon-align-justify:before {
  content: "\e055";
}

.tt-glyphicon-list:before {
  content: "\e056";
}

.tt-glyphicon-indent-left:before {
  content: "\e057";
}

.tt-glyphicon-indent-right:before {
  content: "\e058";
}

.tt-glyphicon-facetime-video:before {
  content: "\e059";
}

.tt-glyphicon-picture:before {
  content: "\e060";
}

.tt-glyphicon-map-marker:before {
  content: "\e062";
}

.tt-glyphicon-adjust:before {
  content: "\e063";
}

.tt-glyphicon-tint:before {
  content: "\e064";
}

.tt-glyphicon-edit:before {
  content: "\e065";
}

.tt-glyphicon-share:before {
  content: "\e066";
}

.tt-glyphicon-check:before {
  content: "\e067";
}

.tt-glyphicon-move:before {
  content: "\e068";
}

.tt-glyphicon-step-backward:before {
  content: "\e069";
}

.tt-glyphicon-fast-backward:before {
  content: "\e070";
}

.tt-glyphicon-backward:before {
  content: "\e071";
}

.tt-glyphicon-play:before {
  content: "\e072";
}

.tt-glyphicon-pause:before {
  content: "\e073";
}

.tt-glyphicon-stop:before {
  content: "\e074";
}

.tt-glyphicon-forward:before {
  content: "\e075";
}

.tt-glyphicon-fast-forward:before {
  content: "\e076";
}

.tt-glyphicon-step-forward:before {
  content: "\e077";
}

.tt-glyphicon-eject:before {
  content: "\e078";
}

.tt-glyphicon-chevron-left:before {
  content: "\e079";
}

.tt-glyphicon-chevron-right:before {
  content: "\e080";
}

.tt-glyphicon-plus-sign:before {
  content: "\e081";
}

.tt-glyphicon-minus-sign:before {
  content: "\e082";
}

.tt-glyphicon-remove-sign:before {
  content: "\e083";
}

.tt-glyphicon-ok-sign:before {
  content: "\e084";
}

.tt-glyphicon-question-sign:before {
  content: "\e085";
}

.tt-glyphicon-info-sign:before {
  content: "\e086";
}

.tt-glyphicon-screenshot:before {
  content: "\e087";
}

.tt-glyphicon-remove-circle:before {
  content: "\e088";
}

.tt-glyphicon-ok-circle:before {
  content: "\e089";
}

.tt-glyphicon-ban-circle:before {
  content: "\e090";
}

.tt-glyphicon-arrow-left:before {
  content: "\e091";
}

.tt-glyphicon-arrow-right:before {
  content: "\e092";
}

.tt-glyphicon-arrow-up:before {
  content: "\e093";
}

.tt-glyphicon-arrow-down:before {
  content: "\e094";
}

.tt-glyphicon-share-alt:before {
  content: "\e095";
}

.tt-glyphicon-resize-full:before {
  content: "\e096";
}

.tt-glyphicon-resize-small:before {
  content: "\e097";
}

.tt-glyphicon-exclamation-sign:before {
  content: "\e101";
}

.tt-glyphicon-gift:before {
  content: "\e102";
}

.tt-glyphicon-leaf:before {
  content: "\e103";
}

.tt-glyphicon-fire:before {
  content: "\e104";
}

.tt-glyphicon-eye-open:before {
  content: "\e105";
}

.tt-glyphicon-eye-close:before {
  content: "\e106";
}

.tt-glyphicon-warning-sign:before {
  content: "\e107";
}

.tt-glyphicon-plane:before {
  content: "\e108";
}

.tt-glyphicon-calendar:before {
  content: "\e109";
}

.tt-glyphicon-random:before {
  content: "\e110";
}

.tt-glyphicon-comment:before {
  content: "\e111";
}

.tt-glyphicon-magnet:before {
  content: "\e112";
}

.tt-glyphicon-chevron-up:before {
  content: "\e113";
}

.tt-glyphicon-chevron-down:before {
  content: "\e114";
}

.tt-glyphicon-retweet:before {
  content: "\e115";
}

.tt-glyphicon-shopping-cart:before {
  content: "\e116";
}

.tt-glyphicon-folder-close:before {
  content: "\e117";
}

.tt-glyphicon-folder-open:before {
  content: "\e118";
}

.tt-glyphicon-resize-vertical:before {
  content: "\e119";
}

.tt-glyphicon-resize-horizontal:before {
  content: "\e120";
}

.tt-glyphicon-hdd:before {
  content: "\e121";
}

.tt-glyphicon-bullhorn:before {
  content: "\e122";
}

.tt-glyphicon-bell:before {
  content: "\e123";
}

.tt-glyphicon-certificate:before {
  content: "\e124";
}

.tt-glyphicon-thumbs-up:before {
  content: "\e125";
}

.tt-glyphicon-thumbs-down:before {
  content: "\e126";
}

.tt-glyphicon-hand-right:before {
  content: "\e127";
}

.tt-glyphicon-hand-left:before {
  content: "\e128";
}

.tt-glyphicon-hand-up:before {
  content: "\e129";
}

.tt-glyphicon-hand-down:before {
  content: "\e130";
}

.tt-glyphicon-circle-arrow-right:before {
  content: "\e131";
}

.tt-glyphicon-circle-arrow-left:before {
  content: "\e132";
}

.tt-glyphicon-circle-arrow-up:before {
  content: "\e133";
}

.tt-glyphicon-circle-arrow-down:before {
  content: "\e134";
}

.tt-glyphicon-globe:before {
  content: "\e135";
}

.tt-glyphicon-wrench:before {
  content: "\e136";
}

.tt-glyphicon-tasks:before {
  content: "\e137";
}

.tt-glyphicon-filter:before {
  content: "\e138";
}

.tt-glyphicon-briefcase:before {
  content: "\e139";
}

.tt-glyphicon-fullscreen:before {
  content: "\e140";
}

.tt-glyphicon-dashboard:before {
  content: "\e141";
}

.tt-glyphicon-paperclip:before {
  content: "\e142";
}

.tt-glyphicon-heart-empty:before {
  content: "\e143";
}

.tt-glyphicon-link:before {
  content: "\e144";
}

.tt-glyphicon-phone:before {
  content: "\e145";
}

.tt-glyphicon-pushpin:before {
  content: "\e146";
}

.tt-glyphicon-usd:before {
  content: "\e148";
}

.tt-glyphicon-gbp:before {
  content: "\e149";
}

.tt-glyphicon-sort:before {
  content: "\e150";
}

.tt-glyphicon-sort-by-alphabet:before {
  content: "\e151";
}

.tt-glyphicon-sort-by-alphabet-alt:before {
  content: "\e152";
}

.tt-glyphicon-sort-by-order:before {
  content: "\e153";
}

.tt-glyphicon-sort-by-order-alt:before {
  content: "\e154";
}

.tt-glyphicon-sort-by-attributes:before {
  content: "\e155";
}

.tt-glyphicon-sort-by-attributes-alt:before {
  content: "\e156";
}

.tt-glyphicon-unchecked:before {
  content: "\e157";
}

.tt-glyphicon-expand:before {
  content: "\e158";
}

.tt-glyphicon-collapse-down:before {
  content: "\e159";
}

.tt-glyphicon-collapse-up:before {
  content: "\e160";
}

.tt-glyphicon-log-in:before {
  content: "\e161";
}

.tt-glyphicon-flash:before {
  content: "\e162";
}

.tt-glyphicon-log-out:before {
  content: "\e163";
}

.tt-glyphicon-after.tt-glyphicon-new-window:after,
.tt-glyphicon.tt-glyphicon-new-window:before {
  content: "\e164";
}

.tt-glyphicon-record:before {
  content: "\e165";
}

.tt-glyphicon-save:before {
  content: "\e166";
}

.tt-glyphicon-open:before {
  content: "\e167";
}

.tt-glyphicon-saved:before {
  content: "\e168";
}

.tt-glyphicon-import:before {
  content: "\e169";
}

.tt-glyphicon-export:before {
  content: "\e170";
}

.tt-glyphicon-send:before {
  content: "\e171";
}

.tt-glyphicon-floppy-disk:before {
  content: "\e172";
}

.tt-glyphicon-floppy-saved:before {
  content: "\e173";
}

.tt-glyphicon-floppy-remove:before {
  content: "\e174";
}

.tt-glyphicon-floppy-save:before {
  content: "\e175";
}

.tt-glyphicon-floppy-open:before {
  content: "\e176";
}

.tt-glyphicon-credit-card:before {
  content: "\e177";
}

.tt-glyphicon-transfer:before {
  content: "\e178";
}

.tt-glyphicon-cutlery:before {
  content: "\e179";
}

.tt-glyphicon-header:before {
  content: "\e180";
}

.tt-glyphicon-compressed:before {
  content: "\e181";
}

.tt-glyphicon-earphone:before {
  content: "\e182";
}

.tt-glyphicon-phone-alt:before {
  content: "\e183";
}

.tt-glyphicon-tower:before {
  content: "\e184";
}

.tt-glyphicon-stats:before {
  content: "\e185";
}

.tt-glyphicon-sd-video:before {
  content: "\e186";
}

.tt-glyphicon-hd-video:before {
  content: "\e187";
}

.tt-glyphicon-subtitles:before {
  content: "\e188";
}

.tt-glyphicon-sound-stereo:before {
  content: "\e189";
}

.tt-glyphicon-sound-dolby:before {
  content: "\e190";
}

.tt-glyphicon-sound-5-1:before {
  content: "\e191";
}

.tt-glyphicon-sound-6-1:before {
  content: "\e192";
}

.tt-glyphicon-sound-7-1:before {
  content: "\e193";
}

.tt-glyphicon-copyright-mark:before {
  content: "\e194";
}

.tt-glyphicon-registration-mark:before {
  content: "\e195";
}

.tt-glyphicon-cloud-download:before {
  content: "\e197";
}

.tt-glyphicon-cloud-upload:before {
  content: "\e198";
}

.tt-glyphicon-tree-conifer:before {
  content: "\e199";
}

.tt-glyphicon-tree-deciduous:before {
  content: "\e200";
}

.tt-glyphicon-cd:before {
  content: "\e201";
}

.tt-glyphicon-save-file:before {
  content: "\e202";
}

.tt-glyphicon-open-file:before {
  content: "\e203";
}

.tt-glyphicon-level-up:before {
  content: "\e204";
}

.tt-glyphicon-copy:before {
  content: "\e205";
}

.tt-glyphicon-paste:before {
  content: "\e206";
}

.tt-glyphicon-alert:before {
  content: "\e209";
}

.tt-glyphicon-equalizer:before {
  content: "\e210";
}

.tt-glyphicon-king:before {
  content: "\e211";
}

.tt-glyphicon-queen:before {
  content: "\e212";
}

.tt-glyphicon-pawn:before {
  content: "\e213";
}

.tt-glyphicon-bishop:before {
  content: "\e214";
}

.tt-glyphicon-knight:before {
  content: "\e215";
}

.tt-glyphicon-baby-formula:before {
  content: "\e216";
}

.tt-glyphicon-tent:before {
  content: "⛺";
}

.tt-glyphicon-blackboard:before {
  content: "\e218";
}

.tt-glyphicon-bed:before {
  content: "\e219";
}

.tt-glyphicon-apple:before {
  content: "\f8ff";
}

.tt-glyphicon-erase:before {
  content: "\e221";
}

.tt-glyphicon-hourglass:before {
  content: "⌛";
}

.tt-glyphicon-lamp:before {
  content: "\e223";
}

.tt-glyphicon-duplicate:before {
  content: "\e224";
}

.tt-glyphicon-piggy-bank:before {
  content: "\e225";
}

.tt-glyphicon-scissors:before {
  content: "\e226";
}

.tt-glyphicon-bitcoin:before {
  content: "\e227";
}

.tt-glyphicon-btc:before {
  content: "\e227";
}

.tt-glyphicon-xbt:before {
  content: "\e227";
}

.tt-glyphicon-yen:before {
  content: "¥";
}

.tt-glyphicon-jpy:before {
  content: "¥";
}

.tt-glyphicon-ruble:before {
  content: "₽";
}

.tt-glyphicon-rub:before {
  content: "₽";
}

.tt-glyphicon-scale:before {
  content: "\e230";
}

.tt-glyphicon-ice-lolly:before {
  content: "\e231";
}

.tt-glyphicon-ice-lolly-tasted:before {
  content: "\e232";
}

.tt-glyphicon-education:before {
  content: "\e233";
}

.tt-glyphicon-option-horizontal:before {
  content: "\e234";
}

.tt-glyphicon-option-vertical:before {
  content: "\e235";
}

.tt-glyphicon-menu-hamburger:before {
  content: "\e236";
}

.tt-glyphicon-modal-window:before {
  content: "\e237";
}

.tt-glyphicon-oil:before {
  content: "\e238";
}

.tt-glyphicon-grain:before {
  content: "\e239";
}

.tt-glyphicon-sunglasses:before {
  content: "\e240";
}

.tt-glyphicon-text-size:before {
  content: "\e241";
}

.tt-glyphicon-text-color:before {
  content: "\e242";
}

.tt-glyphicon-text-background:before {
  content: "\e243";
}

.tt-glyphicon-object-align-top:before {
  content: "\e244";
}

.tt-glyphicon-object-align-bottom:before {
  content: "\e245";
}

.tt-glyphicon-object-align-horizontal:before {
  content: "\e246";
}

.tt-glyphicon-object-align-left:before {
  content: "\e247";
}

.tt-glyphicon-object-align-vertical:before {
  content: "\e248";
}

.tt-glyphicon-object-align-right:before {
  content: "\e249";
}

.tt-glyphicon-triangle-right:before {
  content: "\e250";
}

.tt-glyphicon-triangle-left:before {
  content: "\e251";
}

.tt-glyphicon-triangle-bottom:before {
  content: "\e252";
}

.tt-glyphicon-triangle-top:before {
  content: "\e253";
}

.tt-glyphicon-console:before {
  content: "\e254";
}

.tt-glyphicon-superscript:before {
  content: "\e255";
}

.tt-glyphicon-subscript:before {
  content: "\e256";
}

.tt-glyphicon-menu-left:before {
  content: "\e257";
}

.tt-glyphicon-menu-right:before {
  content: "\e258";
}

.tt-glyphicon-menu-down:before {
  content: "\e259";
}

.tt-glyphicon-menu-up:before {
  content: "\e260";
}

[class^=icon-]:before,
[class*=" icon-"]:before,
[class^=tt-icon-]:before,
[class*=" tt-icon-"]:before {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "tt-icons" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
}

a[class^=icon-]:before,
a[class*=" icon-"]:before,
a[class^=tt-icon-]:before,
a[class*=" tt-icon-"]:before {
  padding-right: 4px;
}

a.disabled[class^=icon-]:before,
a.tt-disabled[class^=icon-]:before,
a.disabled[class*=" icon-"]:before,
a.tt-disabled[class*=" icon-"]:before,
a.disabled[class^=tt-icon-]:before,
a.tt-disabled[class^=tt-icon-]:before,
a.disabled[class*=" tt-icon-"]:before,
a.tt-disabled[class*=" tt-icon-"]:before {
  color: #b9b9b9;
}

.temp-icons {
  font-size: 24px;
  padding-left: 20px;
}

.tt-icon-heads3:before {
  content: "\e900";
}

.tt-icon-heads2:before {
  content: "\e901";
}

.tt-icon-head:before {
  content: "\e902";
}

.tt-icon-head-check:before {
  content: "\e975";
}

.tt-icon-fire:before {
  content: "\e9a9";
}

.tt-icon-head-plus:before {
  content: "\e904";
}

.tt-icon-checkmark:before {
  content: "\e909";
}

.tt-icon-help:before,
.tt-icon-help-with-circle:before {
  content: "\e903";
  color: #00a69f;
}

.tt-icon-i:before {
  content: "\e91c";
  color: #00a69f;
}

.tt-icon-info:before {
  content: "\e91b";
  color: #00a69f;
}

.tt-icon-search:before {
  content: "\e907";
}

.tt-icon-double-arrows-down:before {
  content: "\e905";
}

.tt-icon-eye:before {
  content: "\e9ce";
}

.tt-icon-cross:before {
  content: "\ea0f";
}

.tt-icon-stats-dots:before {
  content: "\e99b";
}

.tt-icon-doubleArrows:before {
  content: "\e906";
}

.tt-icon-graph:before {
  content: "\e908";
}

.tt-icon-headPlus:before {
  content: "\e90a";
}

.tt-icon-people:before {
  content: "\e90b";
}

.tt-icon-headRotate:before {
  content: "\e90c";
}

.tt-icon-running:before {
  content: "\e90d";
}

.tt-icon-plus-square:before {
  content: "\e90f";
}

.tt-icon-minus-square:before {
  content: "\e90e";
}

.tt-icon-check-box-intermediate:before {
  content: "\e910";
}

.tt-icon-check-box-unchecked:before {
  content: "\e911";
}

.tt-icon-check-box-checked:before {
  content: "\e912";
}

.tt-icon-warning:before {
  content: "\e913";
}

.tt-icon-radio-checked:before {
  content: "\ea54";
}

.tt-icon-radio-checked2:before {
  content: "\ea55";
}

.tt-icon-radio-unchecked:before {
  content: "\ea56";
}

.tt-icon-trending-up:before {
  content: "\e918";
}

.tt-icon-upload:before {
  content: "\e9c6";
}

.icon-youtube:before,
.tt-icon-youtube:before {
  content: "\e914";
  color: #f00;
}

.icon-linkedin:before,
.tt-icon-linkedin:before {
  display: inline-block;
  margin-left: 0.7rem;
  font-size: 1.6rem;
  content: "\e915";
  color: #0077b5;
}

.icon.linkedin svg {
  fill: #0077b5;
}

.icon-linkedin.no-padding:before {
  margin: 0;
  padding: 0;
}

.icon-twitter:before,
.tt-icon-twitter:before {
  content: "\e916";
  color: #1da1f2;
}

.icon-facebook:before,
.tt-icon-facebook:before {
  content: "\e917";
  color: #3b5998;
}

.icon-youtubeBlack:before,
.tt-icon-youtubeBlack:before {
  content: "\ea9d";
}

.icon-linkedinBlack:before,
.tt-icon-linkedinBlack:before {
  content: "\eac9";
}

.icon-twitterBlack:before,
.tt-icon-twitterBlack:before {
  content: "\ea96";
}

.icon-facebookBlack:before,
.tt-icon-facebookBlack:before {
  content: "\ea91";
}

.tt-icon-thin-check:before {
  content: "\e919";
}

.tt-icon-thin-X:before {
  content: "\e91a";
}

.tt-icon-price-tag:before {
  content: "\e935";
}

.tt-icon-spinner:before {
  content: "\e984";
}

.tt-icon-calendar:before {
  content: "\e91e";
}

.tt-icon-list:before {
  content: "\e91f";
}

.tt-icon-thumbs-up:before {
  content: "\e920";
}

.tt-icon-alarm:before {
  content: "\e921";
}

.tt-icon-timeline1:before {
  content: "\e923";
}

.tt-icon-layout:before {
  content: "\e924";
  transform: scaleX(-1);
  display: block;
}

.tt-icon-info-pane:before {
  content: "\e925";
}

.tt-icon-info-pane-active:before {
  content: "\e926";
}

.tt-icon-hand:before {
  content: "\e927";
}

.tt-icon-sort-arrows:before {
  content: "\e92a";
}

.tt-iconlink-user:before {
  content: "\e008";
  position: relative;
  top: 1px;
  display: inline-block;
  font-family: "ttPE-Glyphicons-Halflings";
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  left: -0.5rem;
  top: 0.2rem;
}

div[data-loader=tt-circle] {
  display: inline-block;
  width: 25px;
  height: 25px;
  animation: tt-circle infinite 1s linear;
  border: 2px solid #000;
  border-top-color: transparent;
  border-radius: 100%;
}
@keyframes tt-circle {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
#launcher {
  z-index: 998 !important;
}

.tt-sticky { /* Safari */
  position: sticky;
  top: 0;
  z-index: 2;
}

.link,
.tt-link,
a {
  color: #00a69f;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
  outline: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.link:hover,
.tt-link:hover,
a:hover {
  text-decoration: underline;
  color: #008080;
}
.link svg,
.tt-link svg,
a svg {
  fill: #00a69f;
  display: block;
}
.link:not(.tt-disabled):not(.disabled):hover,
.tt-link:not(.tt-disabled):not(.disabled):hover,
a:not(.tt-disabled):not(.disabled):hover {
  color: #008080;
}
.link.disabled, .link.tt-disabled,
.tt-link.disabled,
.tt-link.tt-disabled,
a.disabled,
a.tt-disabled {
  color: #b9b9b9;
  text-decoration: none;
  cursor: not-allowed;
}
.link.disabled:hover, .link.tt-disabled:hover,
.tt-link.disabled:hover,
.tt-link.tt-disabled:hover,
a.disabled:hover,
a.tt-disabled:hover {
  cursor: not-allowed;
}

p,
h1,
h2,
h3,
h4,
h5 {
  padding: 0;
  margin: 0;
}

em {
  font-style: normal;
  font-weight: 600;
}

.tt-error {
  color: #e57373;
  font-weight: bold;
}

.tt-muted {
  color: #b9b9b9;
}

.tt-force-wrap {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.columns,
.tt-columns {
  display: flex;
  flex-direction: row;
}
.columns [class^=column],
.columns [class^=tt-column],
.tt-columns [class^=column],
.tt-columns [class^=tt-column] {
  flex: 0 0 auto;
  padding: 0 1rem;
  width: 50%;
}
.columns [class^=column]:first-child,
.columns [class^=tt-column]:first-child,
.tt-columns [class^=column]:first-child,
.tt-columns [class^=tt-column]:first-child {
  padding-left: 0;
}
.columns [class^=column]:last-child,
.columns [class^=tt-column]:last-child,
.tt-columns [class^=column]:last-child,
.tt-columns [class^=tt-column]:last-child {
  padding-right: 0;
}
.columns [class^=column].tt-min,
.columns [class^=tt-column].tt-min,
.tt-columns [class^=column].tt-min,
.tt-columns [class^=tt-column].tt-min {
  flex: 0 0 auto;
  width: auto;
}
.columns [class^=column].column-33,
.columns [class^=tt-column].column-33,
.tt-columns [class^=column].column-33,
.tt-columns [class^=tt-column].column-33 {
  width: 33%;
}

.tt-name-value-columns {
  display: table;
}
.tt-name-value-columns > * {
  display: table-row;
}
.tt-name-value-columns > * > * {
  display: table-cell;
  padding: 0.3rem 0;
}
.tt-name-value-columns > * > *.tt-label {
  padding: 0 1.2rem 0 0;
}
.tt-label {
  color: #808080;
  font-style: italic;
}

.tt-social-list a {
  display: inline-block;
  font-size: 2rem;
  margin: 0 1.2rem 0 0;
}
.tt-social-list a:before {
  font-size: 2rem;
  margin: 0;
  top: 0;
}

.tt-no-data {
  padding: 1.6rem 0;
  font-weight: bold;
  text-align: center;
}

.tt-bad-data {
  padding: 2rem 0;
  font-weight: bold;
  text-align: center;
}

.tt-cards-viewport {
  display: block;
}

.tt-back {
  display: inline-block;
  width: 24px;
  height: 24px;
  color: #666666;
}
.tt-back mat-icon {
  position: relative;
  font-size: 24px;
  line-height: 24px;
  height: 24px;
}

.tt-previous,
.tt-next {
  display: inline-block;
  width: 24px;
  height: 24px;
  color: #666666;
}
.tt-previous mat-icon,
.tt-next mat-icon {
  position: relative;
  font-size: 24px;
  line-height: 24px;
  height: 24px;
}

.tt-pill {
  display: inline-block;
  padding: 0.3rem 0.6rem;
  border: 1px solid #dde4eb;
  background-clip: padding-box; /* stops bg color from leaking outside the border: */
  border-radius: 2px;
  background: #fff;
}

.tt-page-main-middle-top {
  border-bottom: 1px solid #dde4eb;
}

.tt-busy-wrapper {
  position: relative;
}

.tt-information {
  color: #134c90;
  font-weight: bold;
}

em.em {
  font-weight: bold;
  font-style: normal;
}

ul {
  list-style-type: none;
}
ul > li {
  padding: 0 0 0.4rem 0;
}

.bullet-list,
ul.tt-bullet-list,
ul.bullet-list-check,
ul.tt-bullet-list-check {
  list-style-type: none;
  margin-left: 1.2rem;
  padding-left: 1.4rem;
}
.bullet-list > li,
ul.tt-bullet-list > li,
ul.bullet-list-check > li,
ul.tt-bullet-list-check > li {
  padding: 0 0 0.6rem 0;
  position: relative;
}
.bullet-list > li:before,
ul.tt-bullet-list > li:before,
ul.bullet-list-check > li:before,
ul.tt-bullet-list-check > li:before {
  display: block;
  content: "";
  position: absolute;
  top: 0.7rem;
  left: -1.2rem;
  width: 6px;
  height: 6px;
  background: #323232;
  background-clip: padding-box; /* stops bg color from leaking outside the border: */
  border-radius: 10px;
}
.bullet-list > li.tt-no-bullet:before,
ul.tt-bullet-list > li.tt-no-bullet:before,
ul.bullet-list-check > li.tt-no-bullet:before,
ul.tt-bullet-list-check > li.tt-no-bullet:before {
  display: none;
}
.bullet-list > li > ul.tt-bullet-list > li, .bullet-list > li > ul.bullet-list-check > li,
.bullet-list > li > ul.tt-bullet-list-check > li,
ul.tt-bullet-list > li > ul.tt-bullet-list > li,
ul.bullet-list-check > li > ul.tt-bullet-list > li,
ul.tt-bullet-list-check > li > ul.tt-bullet-list > li,
ul.tt-bullet-list > li > ul.bullet-list-check > li,
ul.bullet-list-check > li > ul.bullet-list-check > li,
ul.tt-bullet-list-check > li > ul.bullet-list-check > li,
ul.tt-bullet-list > li > ul.tt-bullet-list-check > li,
ul.bullet-list-check > li > ul.tt-bullet-list-check > li,
ul.tt-bullet-list-check > li > ul.tt-bullet-list-check > li {
  padding: 0 0 0.2rem 0;
}
.bullet-list > li > ul.tt-bullet-list > li:before, .bullet-list > li > ul.bullet-list-check > li:before,
.bullet-list > li > ul.tt-bullet-list-check > li:before,
ul.tt-bullet-list > li > ul.tt-bullet-list > li:before,
ul.bullet-list-check > li > ul.tt-bullet-list > li:before,
ul.tt-bullet-list-check > li > ul.tt-bullet-list > li:before,
ul.tt-bullet-list > li > ul.bullet-list-check > li:before,
ul.bullet-list-check > li > ul.bullet-list-check > li:before,
ul.tt-bullet-list-check > li > ul.bullet-list-check > li:before,
ul.tt-bullet-list > li > ul.tt-bullet-list-check > li:before,
ul.bullet-list-check > li > ul.tt-bullet-list-check > li:before,
ul.tt-bullet-list-check > li > ul.tt-bullet-list-check > li:before {
  top: 0.9rem;
  height: 2px;
  background-clip: padding-box; /* stops bg color from leaking outside the border: */
  border-radius: 0;
  background: #a6a6a6;
}

.bullet-list-check > li:before,
ul.tt-bullet-list-check > li:before {
  position: relative;
  top: 1px;
  display: inline-block;
  font-family: "ttPE-Glyphicons-Halflings";
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-clip: padding-box; /* stops bg color from leaking outside the border: */
  border-radius: 0;
  content: "\e067";
  left: -1.8rem;
  top: 0.3rem;
  width: auto;
  height: auto;
  color: #3290ba;
  background: none;
  font-size: 1.2rem;
  position: absolute;
  display: block;
}

:root :not(.loading-data) .mask-data,
:root :not(.tt-loading-data) .mask-data {
  filter: blur(0.4rem);
}

.tt-badge-bubble {
  display: inline-block;
  background: #134c90;
  padding: 0.4rem 0.9rem;
  text-align: center;
  font-weight: bold;
  font-size: 1.3rem;
  line-height: 1.3rem;
  color: #fff;
  min-width: 2.1rem;
  height: 2.1rem;
  position: relative;
  top: -0.2rem;
  background-clip: padding-box; /* stops bg color from leaking outside the border: */
  border-radius: 40px;
}

.tt-status-badge,
.tt-status-badge-new {
  display: inline-block;
  font-weight: bold;
  text-transform: uppercase;
  color: #9d8b54;
}

.tt-status-badge-new {
  color: #036691;
}

.badge,
.tt-badge,
.tt-badge-information,
.tt-badge-highlight {
  background: #e3e3e3;
  background-clip: padding-box; /* stops bg color from leaking outside the border: */
  border-radius: 2px;
  padding: 0.3rem 0.6rem;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  color: #323232;
}

.badge-error {
  background: #f5444f;
  color: #fff;
}

.tt-badge-highlight {
  background: #3290ba;
  color: #fff;
}

.tt-badge-information {
  background: #134c90;
  color: #fff;
}

.tt-priority-page {
  display: inline-block;
  padding: 0 0 0 1rem;
  margin: 0 0 0 1rem;
  border-left: 1px solid #cccccc;
  font-weight: bold;
  color: #3290ba;
}

em.tt-text-search-highlight {
  display: inline-block;
  background: #ffe88e;
  font-style: normal;
}

.tt-loader {
  font-style: italic;
}
.tt-loader:before {
  content: "";
  display: inline-block;
  position: relative;
  border-radius: 100%;
  width: 11px;
  height: 11px;
  border: 2px solid #000;
  border-top: 2px solid transparent;
  animation: rotating 1.2s infinite linear;
  margin: 0 0.3em 0 0.3em;
}

.loading-self,
.tt-loading-data-self,
.loading-data span:not(.no-data-loading),
.tt-loading-data span:not(.no-data-loading),
.loading-data a:not(.tt-no-data-loading),
.tt-loading-data a:not(.tt-no-data-loading),
.loading-data g,
.tt-loading-data g,
tr.loading-data td span,
tr.tt-loading-data td span,
tr.loading-data td a,
tr.tt-loading-data td a,
span.loading-data-field,
span.tt-loading-data-field {
  background-image: linear-gradient(90deg, #c2c2c2 0px, #e9e9e9 40px, #c2c2c2 80px);
  background-size: 80vw;
  background-clip: padding-box; /* stops bg color from leaking outside the border: */
  border-radius: 2px;
  font-weight: normal;
  color: rgba(194, 194, 194, 0) !important;
  animation: ghost-lines 1000ms infinite linear;
}
.loading-self svg,
.tt-loading-data-self svg,
.loading-data span:not(.no-data-loading) svg,
.tt-loading-data span:not(.no-data-loading) svg,
.loading-data a:not(.tt-no-data-loading) svg,
.tt-loading-data a:not(.tt-no-data-loading) svg,
.loading-data g svg,
.tt-loading-data g svg,
tr.loading-data td span svg,
tr.tt-loading-data td span svg,
tr.loading-data td a svg,
tr.tt-loading-data td a svg,
span.loading-data-field svg,
span.tt-loading-data-field svg {
  visibility: hidden;
}
.loading-self *,
.tt-loading-data-self *,
.loading-data span:not(.no-data-loading) *,
.tt-loading-data span:not(.no-data-loading) *,
.loading-data a:not(.tt-no-data-loading) *,
.tt-loading-data a:not(.tt-no-data-loading) *,
.loading-data g *,
.tt-loading-data g *,
tr.loading-data td span *,
tr.tt-loading-data td span *,
tr.loading-data td a *,
tr.tt-loading-data td a *,
span.loading-data-field *,
span.tt-loading-data-field * {
  color: rgba(194, 194, 194, 0) !important;
}

.tt-loading-data .tt-debug span {
  color: #0d1114 !important;
  background: none;
  animation: none;
}

@keyframes rotating {
  100% {
    transform: rotate(360deg);
  }
}
.tt-circle-expand {
  background: #e3e3e3;
  background-clip: padding-box; /* stops bg color from leaking outside the border: */
  border-radius: 20px;
  width: 30px;
  height: 30px;
  display: inline-block;
  margin: 8px 10px 0 0;
}
.tt-circle-expand mat-icon {
  position: relative;
  top: 9px;
  left: 6px;
  color: #000;
  font-size: 17px;
}

.spacer {
  display: flex;
  flex: 1 1 auto;
}

.tt-debug {
  background-clip: padding-box; /* stops bg color from leaking outside the border: */
  border-radius: 5px;
  border: 2px dashed #bb540f;
  margin: 10px 0 0 0;
  padding: 4px 4px;
  color: #000;
  clear: both;
  width: 100%;
  position: relative;
  font-size: var(--text-size-small);
  font-weight: normal;
  text-align: left;
  white-space: normal;
  background-image: linear-gradient(45deg, #efefef 25%, #ebebeb 25%, #ebebeb 50%, #efefef 50%, #efefef 75%, #ebebeb 75%, #ebebeb 100%);
  background-size: 42.43px 42.43px;
}
.tt-debug .tt-label {
  color: #000;
  font-style: normal;
}
.tt-debug em {
  font-weight: bold;
  font-style: normal;
}
.tt-debug.tt-has-h2 {
  padding: 4px 4px 4px 34px;
  overflow: hidden;
  overflow-y: auto;
  white-space: nowrap;
}
.tt-debug h2 {
  position: absolute;
  top: 0;
  left: 4px;
  writing-mode: vertical-lr;
  text-orientation: mixed;
  font-size: 14px;
  color: #bb540f;
}
.tt-debug h3 {
  font-size: 14px;
  color: #bb540f;
}
.tt-debug mat-icon {
  position: relative;
  top: 5px;
  font-size: 20px;
  width: 20px;
  height: 20px;
}
.tt-debug .tt-body {
  padding: 0 5px;
}
.tt-debug .tt-border-top {
  border-top: 1px solid #808080;
  margin-top: 0.8rem;
  padding-top: 1rem;
}
.tt-debug > table {
  width: 100%;
}
.tt-debug > table td {
  vertical-align: top;
  padding: 3px 5px 3px 0;
  border-top: 1px solid #cccccc;
}
.tt-debug > table > tr > td {
  width: 50%;
  white-space: normal;
}
.tt-debug > table > tr > td.tt-33 {
  width: 33%;
}
.tt-debug > table > tr:last-child > td {
  border-bottom: none;
}
.tt-debug > table table td.tt-value {
  width: 100%;
}
.tt-debug .tt-strikethrough {
  text-decoration: line-through;
}
.tt-debug mat-spinner {
  width: 12px;
  height: 12px;
}
.tt-debug i {
  font-style: normal;
  font-weight: bold;
  background: #a6a6a6;
  color: #fff;
  display: inline-block;
  padding: 2px 10px;
  background-clip: padding-box; /* stops bg color from leaking outside the border: */
  border-radius: 20px;
  min-width: 26px;
  text-align: center;
}
.tt-debug .tt-debug-list {
  padding: 0;
  margin: 0;
  display: block !important;
}
.tt-debug .tt-debug-list li {
  display: list-item !important;
  padding: 0 0 0 16px !important;
  margin: 0;
}
.tt-debug .tt-index em {
  font-size: 26px;
  font-weight: bold;
  font-style: normal;
}
.tt-debug ul.tt-inline {
  display: inline;
}
.tt-debug ul.tt-inline > li {
  display: inline-block;
}
.tt-debug ul.tt-inline > li .tt-pill {
  margin-right: 0.8rem;
  margin-bottom: 0.5rem;
}

span.tt-debug {
  display: inline-block;
  width: auto;
}

.tt-toast-animation,
.tt-toast-animation.ng-enter {
  animation: slideInDown 0.2s;
}

.tt-toast-animation.ng-leave {
  animation: slideOutUp 0.5s;
}

.tt-info-box-animation,
.tt-info-box-animation.ng-enter {
  animation: slideInUp 0.3s;
}

.tt-info-box-animation.ng-leave {
  animation: slideOutDown 0.3s;
}

.tt-fade,
.tt-fade.ng-enter {
  animation: fadeIn 0.8s;
}

.tt-fade.ng-leave {
  animation: fadeOut 0.5s;
}

.tt-fade-fast,
.tt-fade-fast.ng-enter {
  animation: fadeIn 0.3s;
}

.tt-fade-fast.ng-leave {
  animation: fadeOut 0.1s;
}
@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes ghost-lines {
  0% {
    background-position: -100px;
  }
  40% {
    background-position: 40vw;
  }
  100% {
    background-position: 60vw;
  }
}
@keyframes ghost-avatar {
  0% {
    background-position: -32px;
  }
  40%, 100% {
    background-position: 208px;
  }
}
.pill-input {
  min-height: 32px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.7rem;
  border: 1px solid #e0e0e0;
  min-height: 32px;
  padding: 0 8px 0px 15px;
  color: #000;
  background: #fff;
  border-radius: 30px;
  font-size: 12px;
  position: relative;
  cursor: pointer;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  display: block;
  min-width: 6rem;
  padding: 0 28px 0px 15px;
  border: 0.5px solid #e0e0e0;
}
.pill-input .selected-label {
  color: #000;
  text-transform: none;
  font-size: var(--text-size-small);
  font-weight: normal;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  display: block;
  display: inline-block;
}
.pill-input .selected-items {
  flex: 1 1 auto;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  min-width: 0;
}
.pill-input .selected-item {
  display: flex;
  align-items: center;
  background: #f6f7fa;
  color: #42484e;
  background-clip: padding-box; /* stops bg color from leaking outside the border: */
  border-radius: 2px;
  position: relative;
  max-width: 100%;
  min-width: 0;
  padding: 0;
  min-height: 31px;
}
.pill-input .selected-item .selected-item-label {
  padding: 0.6rem 0.8rem 0.6rem 0.8rem;
  flex: 1;
  min-width: 0;
}
.pill-input .selected-item .selected-item-label > span {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  display: block;
}
.pill-input .selected-item svg {
  display: block;
  fill: #a6a6a6;
  padding: 0 0.8rem 0 0;
}
.pill-input .selected-item svg:hover {
  fill: #808080;
}
.pill-input .selected-item.more {
  font-weight: bold;
}
.pill-input .selected-item.add {
  background: transparent;
  color: #00a69f;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
  outline: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.pill-input .selected-item.add:hover {
  text-decoration: underline;
  color: #008080;
}
.pill-input .selected-item.add svg {
  fill: #00a69f;
  display: block;
}
.pill-input .selected-item.add .selected-item-label {
  padding: 0;
}
.pill-input.filter-active {
  background-color: #d5fafa;
  border-color: #d5fafa;
  color: #116e69;
}
.pill-input .arrow-drop-down {
  flex: 0 0 auto;
  fill: #333;
  display: block;
}

.fancy-input {
  min-height: 32px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.7rem;
  border: 1px solid #e0e0e0;
  padding: 0 8px 0 8px;
  color: #000;
  background: #fff;
  border-radius: 5px;
  font-size: 13px;
  line-height: 16px;
  position: relative;
  cursor: pointer;
}
.fancy-input .selected-label {
  color: #000;
  text-transform: none;
  font-size: var(--text-size-small);
  font-weight: normal;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  display: block;
  display: inline-block;
}
.fancy-input .selected-items {
  flex: 1 1 auto;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  min-width: 0;
}
.fancy-input .selected-item {
  display: flex;
  align-items: center;
  background: #f6f7fa;
  color: #42484e;
  background-clip: padding-box; /* stops bg color from leaking outside the border: */
  border-radius: 2px;
  position: relative;
  max-width: 100%;
  min-width: 0;
  padding: 0;
  min-height: 31px;
}
.fancy-input .selected-item .selected-item-label {
  padding: 0.6rem 0.8rem 0.6rem 0.8rem;
  flex: 1;
  min-width: 0;
}
.fancy-input .selected-item .selected-item-label > span {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  display: block;
}
.fancy-input .selected-item svg {
  display: block;
  fill: #a6a6a6;
  padding: 0 0.8rem 0 0;
}
.fancy-input .selected-item svg:hover {
  fill: #808080;
}
.fancy-input .selected-item.more {
  font-weight: bold;
}
.fancy-input .selected-item.add {
  background: transparent;
  color: #00a69f;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
  outline: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.fancy-input .selected-item.add:hover {
  text-decoration: underline;
  color: #008080;
}
.fancy-input .selected-item.add svg {
  fill: #00a69f;
  display: block;
}
.fancy-input .selected-item.add .selected-item-label {
  padding: 0;
}
.fancy-input .selected-label {
  flex: 1 1 auto;
}
.fancy-input.appearance-display-selections {
  padding-top: 3px;
  padding-bottom: 3px;
  font-size: 12px;
}
.fancy-input .arrow-drop-down {
  flex: 0 0 auto;
  fill: #333;
  display: block;
}
.fancy-input:hover {
  border-color: #808080;
}
.fancy-input.disabled {
  border-color: #f0f0f0;
  color: #9e9e9e;
}
.fancy-input.disabled .arrow-drop-down {
  color: #9e9e9e;
}
.fancy-input.readonly {
  border: 1px solid var(--gray03);
  background-color: var(--brand-gray05);
  color: var(--gray07);
  cursor: default;
}
.fancy-input.pill-input {
  min-height: 32px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.7rem;
  border: 1px solid #e0e0e0;
  min-height: 32px;
  padding: 0 8px 0px 15px;
  color: #000;
  background: #fff;
  border-radius: 30px;
  font-size: 12px;
  position: relative;
  cursor: pointer;
  padding: 0 28px 0px 15px;
}
.fancy-input.pill-input .selected-label {
  color: #000;
  text-transform: none;
  font-size: var(--text-size-small);
  font-weight: normal;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  display: block;
  display: inline-block;
}
.fancy-input.pill-input .selected-items {
  flex: 1 1 auto;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  min-width: 0;
}
.fancy-input.pill-input .selected-item {
  display: flex;
  align-items: center;
  background: #f6f7fa;
  color: #42484e;
  background-clip: padding-box; /* stops bg color from leaking outside the border: */
  border-radius: 2px;
  position: relative;
  max-width: 100%;
  min-width: 0;
  padding: 0;
  min-height: 31px;
}
.fancy-input.pill-input .selected-item .selected-item-label {
  padding: 0.6rem 0.8rem 0.6rem 0.8rem;
  flex: 1;
  min-width: 0;
}
.fancy-input.pill-input .selected-item .selected-item-label > span {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  display: block;
}
.fancy-input.pill-input .selected-item svg {
  display: block;
  fill: #a6a6a6;
  padding: 0 0.8rem 0 0;
}
.fancy-input.pill-input .selected-item svg:hover {
  fill: #808080;
}
.fancy-input.pill-input .selected-item.more {
  font-weight: bold;
}
.fancy-input.pill-input .selected-item.add {
  background: transparent;
  color: #00a69f;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
  outline: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.fancy-input.pill-input .selected-item.add:hover {
  text-decoration: underline;
  color: #008080;
}
.fancy-input.pill-input .selected-item.add svg {
  fill: #00a69f;
  display: block;
}
.fancy-input.pill-input .selected-item.add .selected-item-label {
  padding: 0;
}
.fancy-input.pill-input.filter-active {
  background-color: #d5fafa;
  border-color: #d5fafa;
  color: #116e69;
}
.fancy-input.pill-input .arrow-drop-down {
  flex: 0 0 auto;
  fill: #333;
  display: block;
}

pe-form-field.error .fancy-input {
  border-color: red;
}

.pe-input {
  flex: 1 1 auto;
  cursor: pointer;
}

.input-clear {
  padding-right: 30px;
}
.input-clear:placeholder-shown ~ .clear {
  opacity: 0.2;
}

.input-search {
  padding-left: 34px;
}

.form-field,
.tt-form-field {
  margin: 0 0 1rem 0;
}
.form-field > label,
.tt-form-field > label {
  font-weight: bold;
  display: block;
}
.form-field > label.required::before,
.tt-form-field > label.required::before {
  content: "*";
  display: inline-block;
  margin: 0 0.3rem 0 0;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 13px;
  color: #d92e37;
}
.form-field mat-form-field,
.tt-form-field mat-form-field {
  display: block;
}
.form-field .read-only,
.form-field .tt-read-only-value,
.tt-form-field .read-only,
.tt-form-field .tt-read-only-value {
  padding: 19px 0 26px 0;
}
.form-field label + mat-form-field,
.tt-form-field label + mat-form-field {
  /* TODO(mdc-migration): The following rule targets internal classes of form-field that may no longer apply for the MDC version.*/
  /* TODO(mdc-migration): The following rule targets internal classes of select that may no longer apply for the MDC version.*/
}
.form-field label + mat-form-field .mat-form-field-infix,
.tt-form-field label + mat-form-field .mat-form-field-infix {
  padding-top: 0.8rem;
}
.form-field label + mat-form-field .mat-select-arrow-wrapper,
.tt-form-field label + mat-form-field .mat-select-arrow-wrapper {
  transform: translateY(0%);
}

mat-form-field.outline-and-fill:not(.mat-form-field-disabled) .mat-mdc-text-field-wrapper {
  background-color: #fff;
  border-radius: 0.5rem;
}

.form-field-error {
  color: #f5444f;
  font-size: 1rem;
  padding: 0 0 0 1rem;
}

.l-three-column {
  display: grid;
  grid-gap: 25px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 992px) {
  .l-three-column {
    grid-template-columns: repeat(3, 1fr);
  }
}
@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes ghost-lines {
  0% {
    background-position: -100px;
  }
  40% {
    background-position: 40vw;
  }
  100% {
    background-position: 60vw;
  }
}
@keyframes ghost-avatar {
  0% {
    background-position: -32px;
  }
  40%, 100% {
    background-position: 208px;
  }
}
:root {
  --mdc-typography-body2-font-weight: normal;
}

.tt-table-paginator-wrapper.tt-center .mat-mdc-paginator-container {
  justify-content: center;
}

.mat-mdc-table-sticky-border-elem-left {
  border-right: 1px solid #dfe4eb;
}

.mat-mdc-table-sticky-border-elem-right {
  border-left: 1px solid #dfe4eb;
}

.table-type1,
.tt-table-type1 {
  border-collapse: separate;
}
.table-type1 tr[mat-header-row],
.tt-table-type1 tr[mat-header-row] {
  height: auto;
}
.table-type1 tr.mat-row,
.table-type1 tr.mat-footer-row,
.table-type1 tr.mat-header-row,
.table-type1 mat-row,
.table-type1 mat-header-row,
.table-type1 mat-footer-row,
.tt-table-type1 tr.mat-row,
.tt-table-type1 tr.mat-footer-row,
.tt-table-type1 tr.mat-header-row,
.tt-table-type1 mat-row,
.tt-table-type1 mat-header-row,
.tt-table-type1 mat-footer-row {
  min-height: 4.2rem;
  height: auto;
}
.table-type1 .mat-mdc-row,
.tt-table-type1 .mat-mdc-row {
  font-weight: normal;
}
.table-type1 th,
.table-type1 th[mat-header-cell],
.table-type1 mat-row.tt-thead mat-cell,
.table-type1 mat-header-cell,
.table-type1 mat-header-cell:first-of-type,
.table-type1 mat-header-cell:last-of-type,
.tt-table-type1 th,
.tt-table-type1 th[mat-header-cell],
.tt-table-type1 mat-row.tt-thead mat-cell,
.tt-table-type1 mat-header-cell,
.tt-table-type1 mat-header-cell:first-of-type,
.tt-table-type1 mat-header-cell:last-of-type {
  font-size: var(--text-size-base);
  color: var(--gray07);
  padding: 1rem 1.7rem;
  white-space: nowrap;
  background: #f6f7fa;
  border-top: 1px solid #dfe4eb;
}
.table-type1 th:first-of-type,
.table-type1 th[mat-header-cell]:first-of-type,
.table-type1 mat-row.tt-thead mat-cell:first-of-type,
.table-type1 mat-header-cell:first-of-type,
.table-type1 mat-header-cell:first-of-type:first-of-type,
.table-type1 mat-header-cell:last-of-type:first-of-type,
.tt-table-type1 th:first-of-type,
.tt-table-type1 th[mat-header-cell]:first-of-type,
.tt-table-type1 mat-row.tt-thead mat-cell:first-of-type,
.tt-table-type1 mat-header-cell:first-of-type,
.tt-table-type1 mat-header-cell:first-of-type:first-of-type,
.tt-table-type1 mat-header-cell:last-of-type:first-of-type {
  border-left: 1px solid #dfe4eb;
}
.table-type1 th:last-of-type,
.table-type1 th[mat-header-cell]:last-of-type,
.table-type1 mat-row.tt-thead mat-cell:last-of-type,
.table-type1 mat-header-cell:last-of-type,
.table-type1 mat-header-cell:first-of-type:last-of-type,
.table-type1 mat-header-cell:last-of-type:last-of-type,
.tt-table-type1 th:last-of-type,
.tt-table-type1 th[mat-header-cell]:last-of-type,
.tt-table-type1 mat-row.tt-thead mat-cell:last-of-type,
.tt-table-type1 mat-header-cell:last-of-type,
.tt-table-type1 mat-header-cell:first-of-type:last-of-type,
.tt-table-type1 mat-header-cell:last-of-type:last-of-type {
  border-right: 1px solid #dfe4eb;
}
.table-type1 td,
.table-type1 td.mat-cell,
.table-type1 td:first-of-type,
.table-type1 td:first-of-type.mat-cell,
.table-type1 td:last-of-type,
.table-type1 td:last-of-type.mat-cell,
.table-type1 mat-cell,
.table-type1 mat-cell:first-of-type,
.table-type1 mat-cell:last-of-type,
.tt-table-type1 td,
.tt-table-type1 td.mat-cell,
.tt-table-type1 td:first-of-type,
.tt-table-type1 td:first-of-type.mat-cell,
.tt-table-type1 td:last-of-type,
.tt-table-type1 td:last-of-type.mat-cell,
.tt-table-type1 mat-cell,
.tt-table-type1 mat-cell:first-of-type,
.tt-table-type1 mat-cell:last-of-type {
  border-bottom: 1px solid #dfe4eb;
  font-size: var(--text-size-base);
  padding: 0.8rem 1.6rem;
  vertical-align: middle;
}
.table-type1 td:first-child,
.tt-table-type1 td:first-child {
  border-left: solid 1px #dfe4eb;
}
.table-type1 td:last-child,
.tt-table-type1 td:last-child {
  border-right: solid 1px #dfe4eb;
}
.table-type1.tt-table-row-highlight tr:not(.tt-thead):not(.tt-no-hover):not([mat-header-row]):hover,
.tt-table-type1.tt-table-row-highlight tr:not(.tt-thead):not(.tt-no-hover):not([mat-header-row]):hover {
  background-color: #f6f7fa;
  cursor: pointer;
}
.table-type1.tt-table-row-highlight tr:not(.tt-thead):not(.tt-no-hover):not([mat-header-row]):hover th,
.table-type1.tt-table-row-highlight tr:not(.tt-thead):not(.tt-no-hover):not([mat-header-row]):hover mat-header-cell,
.tt-table-type1.tt-table-row-highlight tr:not(.tt-thead):not(.tt-no-hover):not([mat-header-row]):hover th,
.tt-table-type1.tt-table-row-highlight tr:not(.tt-thead):not(.tt-no-hover):not([mat-header-row]):hover mat-header-cell {
  background: #fff;
}

.tt-table, .tt-table-slim {
  width: 100%;
  border-collapse: separate;
}
.tt-table tr.mat-mdc-header-row, .tt-table-slim tr.mat-mdc-header-row,
.tt-table mat-header-row,
.tt-table-slim mat-header-row {
  height: auto;
}
.tt-table .mat-sort-header-content, .tt-table-slim .mat-sort-header-content {
  text-align: left;
}
.tt-table tr.tt-thead td, .tt-table-slim tr.tt-thead td,
.tt-table th,
.tt-table-slim th,
.tt-table th.mdc-data-table__header-cell,
.tt-table th.mat-mdc-header-cell,
.tt-table th:first-of-type,
.tt-table th:first-of-type.mat-header-cell,
.tt-table th:last-of-type,
.tt-table th:last-of-type.mat-header-cell,
.tt-table mat-row.tt-thead mat-cell,
.tt-table-slim mat-row.tt-thead mat-cell,
.tt-table mat-header-cell,
.tt-table-slim mat-header-cell,
.tt-table mat-header-cell:first-of-type,
.tt-table mat-header-cell:last-of-type {
  border-bottom: 1px solid #dfe4eb;
  vertical-align: middle;
  font-size: var(--text-size-base);
  font-weight: normal;
  color: #323232;
  font-weight: bold;
  padding: 0 1.6rem;
  white-space: nowrap;
}
.tt-table tr.tt-thead td:not(mat-header-cell):not(mat-cell), .tt-table-slim tr.tt-thead td:not(mat-header-cell):not(mat-cell),
.tt-table th:not(mat-header-cell):not(mat-cell),
.tt-table-slim th:not(mat-header-cell):not(mat-cell),
.tt-table th.mdc-data-table__header-cell:not(mat-header-cell):not(mat-cell),
.tt-table th.mat-mdc-header-cell:not(mat-header-cell):not(mat-cell),
.tt-table th:first-of-type:not(mat-header-cell):not(mat-cell),
.tt-table th:first-of-type.mat-header-cell:not(mat-header-cell):not(mat-cell),
.tt-table th:last-of-type:not(mat-header-cell):not(mat-cell),
.tt-table th:last-of-type.mat-header-cell:not(mat-header-cell):not(mat-cell),
.tt-table mat-row.tt-thead mat-cell:not(mat-header-cell):not(mat-cell),
.tt-table-slim mat-row.tt-thead mat-cell:not(mat-header-cell):not(mat-cell),
.tt-table mat-header-cell:not(mat-header-cell):not(mat-cell),
.tt-table-slim mat-header-cell:not(mat-header-cell):not(mat-cell),
.tt-table mat-header-cell:first-of-type:not(mat-header-cell):not(mat-cell),
.tt-table mat-header-cell:last-of-type:not(mat-header-cell):not(mat-cell) {
  padding: 0.8rem 1.6rem;
}
.tt-table tr.tt-thead td.no-bottom-border, .tt-table-slim tr.tt-thead td.no-bottom-border,
.tt-table th.no-bottom-border,
.tt-table-slim th.no-bottom-border,
.tt-table th.mdc-data-table__header-cell.no-bottom-border,
.tt-table th.mat-mdc-header-cell.no-bottom-border,
.tt-table th:first-of-type.no-bottom-border,
.tt-table th:first-of-type.mat-header-cell.no-bottom-border,
.tt-table th:last-of-type.no-bottom-border,
.tt-table th:last-of-type.mat-header-cell.no-bottom-border,
.tt-table mat-row.tt-thead mat-cell.no-bottom-border,
.tt-table-slim mat-row.tt-thead mat-cell.no-bottom-border,
.tt-table mat-header-cell.no-bottom-border,
.tt-table-slim mat-header-cell.no-bottom-border,
.tt-table mat-header-cell:first-of-type.no-bottom-border,
.tt-table mat-header-cell:last-of-type.no-bottom-border {
  border-bottom: none;
}
.tt-table td, .tt-table-slim td,
.tt-table td.mdc-data-table__cell,
.tt-table td.mat-mdc-cell,
.tt-table td:first-of-type,
.tt-table td:first-of-type.mat-cell,
.tt-table td:last-of-type,
.tt-table td:last-of-type.mat-cell,
.tt-table mat-cell,
.tt-table-slim mat-cell,
.tt-table mat-cell:first-of-type,
.tt-table mat-cell:last-of-type {
  border-bottom: 1px solid #dfe4eb;
  font-size: var(--text-size-base);
  padding: 0 1.6rem;
  vertical-align: middle;
}
.tt-table th.tt-sticky, .tt-table-slim th.tt-sticky,
.tt-table td.tt-sticky,
.tt-table-slim td.tt-sticky,
.tt-table mat-header-cell.tt-sticky,
.tt-table-slim mat-header-cell.tt-sticky,
.tt-table mat-cell.tt-sticky,
.tt-table-slim mat-cell.tt-sticky {
  background-color: #f8f8f8;
}
.tt-table.tt-no-thead tr:first-of-type td, .tt-no-thead.tt-table-slim tr:first-of-type td,
.tt-table.tt-no-thead tr:first-of-type mat-cell,
.tt-no-thead.tt-table-slim tr:first-of-type mat-cell,
.tt-table.tt-no-thead mat-row:first-of-type td,
.tt-no-thead.tt-table-slim mat-row:first-of-type td,
.tt-table.tt-no-thead mat-row:first-of-type mat-cell,
.tt-no-thead.tt-table-slim mat-row:first-of-type mat-cell {
  border-top: 1px solid #dfe4eb;
}
.tt-table th.mat-mdc-header-cell.tt-cell-width-50, .tt-table-slim th.mat-mdc-header-cell.tt-cell-width-50,
.tt-table td.mat-mdc-cell.tt-cell-width-50,
.tt-table-slim td.mat-mdc-cell.tt-cell-width-50 {
  width: 50%;
}
.tt-table th.mat-mdc-header-cell.tt-cell-width-40, .tt-table-slim th.mat-mdc-header-cell.tt-cell-width-40,
.tt-table td.mat-mdc-cell.tt-cell-width-40,
.tt-table-slim td.mat-mdc-cell.tt-cell-width-40 {
  width: 40%;
}
.tt-table th.mat-mdc-header-cell.tt-cell-width-30, .tt-table-slim th.mat-mdc-header-cell.tt-cell-width-30,
.tt-table td.mat-mdc-cell.tt-cell-width-30,
.tt-table-slim td.mat-mdc-cell.tt-cell-width-30 {
  width: 30%;
}
.tt-table th.mat-mdc-header-cell.tt-cell-nowrap, .tt-table-slim th.mat-mdc-header-cell.tt-cell-nowrap,
.tt-table td.mat-mdc-cell.tt-cell-nowrap,
.tt-table-slim td.mat-mdc-cell.tt-cell-nowrap {
  white-space: nowrap;
}
.tt-table tr:not(.tt-thead):not(.tt-no-hover):not(.mat-header-row):hover, .tt-table-slim tr:not(.tt-thead):not(.tt-no-hover):not(.mat-header-row):hover,
.tt-table .mat-row:not(.tt-no-hover):hover,
.tt-table-slim .mat-row:not(.tt-no-hover):hover,
.tt-table mat-row:not(.tt-no-hover):not(.tt-no-hover):not(.tt-thead):not(.mat-header-row):hover,
.tt-table mat-row:not(.tt-no-hover):not(.tt-no-hover):hover,
.tt-table-slim mat-row:not(.tt-no-hover):not(.tt-no-hover):hover {
  background-color: #f6f7fa;
  cursor: pointer;
}
.tt-table tr:not(.tt-thead):not(.tt-no-hover):not(.mat-header-row):hover th, .tt-table-slim tr:not(.tt-thead):not(.tt-no-hover):not(.mat-header-row):hover th,
.tt-table tr:not(.tt-thead):not(.tt-no-hover):not(.mat-header-row):hover mat-header-cell,
.tt-table-slim tr:not(.tt-thead):not(.tt-no-hover):not(.mat-header-row):hover mat-header-cell,
.tt-table .mat-row:not(.tt-no-hover):hover th,
.tt-table-slim .mat-row:not(.tt-no-hover):hover th,
.tt-table .mat-row:not(.tt-no-hover):hover mat-header-cell,
.tt-table-slim .mat-row:not(.tt-no-hover):hover mat-header-cell,
.tt-table mat-row:not(.tt-no-hover):not(.tt-no-hover):not(.tt-thead):not(.mat-header-row):hover th,
.tt-table mat-row:not(.tt-no-hover):not(.tt-no-hover):not(.tt-thead):not(.mat-header-row):hover mat-header-cell,
.tt-table mat-row:not(.tt-no-hover):not(.tt-no-hover):hover th,
.tt-table-slim mat-row:not(.tt-no-hover):not(.tt-no-hover):hover th,
.tt-table mat-row:not(.tt-no-hover):not(.tt-no-hover):hover mat-header-cell,
.tt-table-slim mat-row:not(.tt-no-hover):not(.tt-no-hover):hover mat-header-cell {
  background: #fff;
}
.tt-table th.cdk-header-cell .mat-focus-indicator, .tt-table-slim th.cdk-header-cell .mat-focus-indicator,
.tt-table mat-header-cell.cdk-header-cell .mat-focus-indicator,
.tt-table-slim mat-header-cell.cdk-header-cell .mat-focus-indicator {
  position: static;
}

.tt-table-slim th,
.tt-table-slim th.mat-mdc-header-cell {
  padding: 0.8rem 1rem 1.2rem 1rem;
}
.tt-table-slim td,
.tt-table-slim td.mat-mdc-cell {
  padding: 1rem 0.4rem;
}

.tt-mat-table-wrapper {
  max-height: 600px;
  overflow: auto;
  border-bottom: 1px solid #dde4eb;
}

table[mat-table],
mat-table {
  width: 100%;
}

.tt-mat-table-no-data,
.mat-cell-nodata {
  text-align: center;
  padding: 9rem 0;
  font-weight: bold;
}

.tt-mat-table-no-filtered-data {
  text-align: center;
  padding: 9rem 0;
  font-weight: bold;
}

th.header-being-sorted,
th.tt-header-being-sorted,
mat-header-cell.header-being-sorted,
mat-header-cell.tt-header-being-sorted {
  background: #d5ebea !important;
}

th.cdk-header-cell,
mat-header-cell.cdk-header-cell {
  position: relative;
  overflow: visible;
}
th.cdk-header-cell .tt-drag-handle,
mat-header-cell.cdk-header-cell .tt-drag-handle {
  display: flex;
  position: absolute;
  top: -24px;
  left: 0;
  width: 100%;
  background: #fff;
  text-align: center;
  font-size: 10px;
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #dfe4eb;
  border-top: none;
  height: 26px;
}
th.cdk-header-cell .tt-drag-handle a,
mat-header-cell.cdk-header-cell .tt-drag-handle a {
  display: none;
  flex: 0 0 auto;
  padding: 5px 0 5px 1px;
  height: 20px;
}
th.cdk-header-cell .tt-drag-handle a:last-child,
mat-header-cell.cdk-header-cell .tt-drag-handle a:last-child {
  padding: 5px 1px 5px 0;
}
th.cdk-header-cell .tt-drag-handle span,
mat-header-cell.cdk-header-cell .tt-drag-handle span {
  flex: 1 1 auto;
  padding: 5px 3px;
  color: #999;
}
th.cdk-header-cell .tt-drag-handle span em,
mat-header-cell.cdk-header-cell .tt-drag-handle span em {
  display: none;
  font-style: normal;
}
th.cdk-header-cell .tt-drag-handle mat-icon,
mat-header-cell.cdk-header-cell .tt-drag-handle mat-icon {
  position: relative;
  font-size: 19px;
  line-height: 19px;
  height: 19px;
  color: #000;
  opacity: 0.2;
}
th.cdk-header-cell:first-of-type .tt-drag-handle,
mat-header-cell.cdk-header-cell:first-of-type .tt-drag-handle {
  border-left: none;
}
th.cdk-header-cell:last-of-type .tt-drag-handle,
mat-header-cell.cdk-header-cell:last-of-type .tt-drag-handle {
  border-right: none;
}
th.cdk-header-cell:hover .tt-drag-handle,
mat-header-cell.cdk-header-cell:hover .tt-drag-handle {
  border-color: #dfe4eb;
}
th.cdk-header-cell:hover a,
mat-header-cell.cdk-header-cell:hover a {
  display: block;
}
th.cdk-header-cell .tt-drag-handle:hover,
mat-header-cell.cdk-header-cell .tt-drag-handle:hover {
  background: #f6f7fa;
}
th.cdk-header-cell .tt-drag-handle:hover em,
mat-header-cell.cdk-header-cell .tt-drag-handle:hover em {
  display: block;
}
th.cdk-header-cell .tt-drag-handle:hover span,
mat-header-cell.cdk-header-cell .tt-drag-handle:hover span {
  color: #000;
}
th.cdk-header-cell .tt-drag-handle:hover span,
th.cdk-header-cell .tt-drag-handle:hover a,
mat-header-cell.cdk-header-cell .tt-drag-handle:hover span,
mat-header-cell.cdk-header-cell .tt-drag-handle:hover a {
  display: block;
}

.mat-sort-header:hover .tt-placehold-sorter,
.tt-placehold-sorter {
  display: none;
  position: relative;
  top: 11px;
  left: 2px;
}

th.center .mat-sort-header-container {
  justify-content: center;
}

th:not(.tt-no-sort-placeholder) .mat-sort-header-container:not(.mat-sort-header-sorted) .mat-sort-header-arrow,
mat-header-cell:not(.tt-no-sort-placeholder) .mat-sort-header-container:not(.mat-sort-header-sorted) .mat-sort-header-arrow {
  opacity: 0.54 !important;
  transform: translateY(0px) !important;
  position: relative;
}
th:not(.tt-no-sort-placeholder) .mat-sort-header-container:not(.mat-sort-header-sorted) .mat-sort-header-arrow > svg,
th:not(.tt-no-sort-placeholder) .mat-sort-header-container:not(.mat-sort-header-sorted) .mat-sort-header-arrow > div,
mat-header-cell:not(.tt-no-sort-placeholder) .mat-sort-header-container:not(.mat-sort-header-sorted) .mat-sort-header-arrow > svg,
mat-header-cell:not(.tt-no-sort-placeholder) .mat-sort-header-container:not(.mat-sort-header-sorted) .mat-sort-header-arrow > div {
  visibility: hidden;
}
th:not(.tt-no-sort-placeholder) .mat-sort-header-container:not(.mat-sort-header-sorted) .mat-sort-header-arrow:before,
mat-header-cell:not(.tt-no-sort-placeholder) .mat-sort-header-container:not(.mat-sort-header-sorted) .mat-sort-header-arrow:before {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "tt-icons" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e92a";
  display: block;
  position: absolute;
  color: #000;
  left: -1px;
  font-size: 14px;
  opacity: 0.2;
}

.mat-sort-header-container:not(.mat-sort-header-sorted):hover .mat-sort-header-arrow > div {
  visibility: visible;
}
.mat-sort-header-container:not(.mat-sort-header-sorted):hover .mat-sort-header-arrow:before {
  display: none;
}

.mdc-data-table__row:last-child .mdc-data-table__cell {
  border-bottom: 1px solid #dfe4eb !important;
}

tooltip.tt-tooltip {
  text-align: left;
  border: 1px solid red;
}

tooltip.tt-tooltip.tooltip-light {
  border: 1px solid #cccccc;
}

.appearance-dark .pe-tooltip {
  background: var(--gray13) !important;
  color: var(--gray00);
}
.appearance-dark .pe-tooltip:before {
  background: #000000 !important;
}

.engagement-tooltip {
  font-size: var(--text-size-small);
  min-width: 200px;
}
.engagement-tooltip li {
  display: flex;
  justify-content: space-between;
}

/* based on angular-toastr css https://github.com/Foxandxss/angular-toastr/blob/cb508fe6801d6b288d3afc525bb40fee1b101650/dist/angular-toastr.css */
/* position */
.toast-center-center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.toast-top-center {
  top: 0;
  right: 0;
  width: 100%;
}

.toast-bottom-center {
  bottom: 0;
  right: 0;
  width: 100%;
}

.toast-top-full-width {
  top: 0;
  right: 0;
  width: 100%;
}

.toast-bottom-full-width {
  bottom: 0;
  right: 0;
  width: 100%;
}

.toast-top-left {
  top: 12px;
  left: 12px;
}

.toast-top-right {
  top: 12px;
  right: 12px;
}

.toast-bottom-right {
  right: 12px;
  bottom: 12px;
}

.toast-bottom-left {
  bottom: 12px;
  left: 12px;
}

/* toast styles */
.toast-title {
  font-weight: bold;
}

.toast-message {
  word-wrap: break-word;
}

.toast-message a,
.toast-message label {
  color: #FFFFFF;
}

.toast-message a:hover {
  color: #CCCCCC;
  text-decoration: none;
}

.toast-close-button {
  position: relative;
  right: -0.3em;
  top: -0.3em;
  float: right;
  font-size: 20px;
  font-weight: bold;
  color: #FFFFFF;
  text-shadow: 0 1px 0 #ffffff;
  /* opacity: 0.8; */
}

.toast-close-button:hover,
.toast-close-button:focus {
  color: #000000;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.4;
}

/*Additional properties for button version
 iOS requires the button element instead of an anchor tag.
 If you want the anchor version, it requires `href="#"`.*/
button.toast-close-button {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
}

.toast-container {
  pointer-events: none;
  position: fixed;
  z-index: 999999;
}

.toast-container * {
  box-sizing: border-box;
}

.toast-container .ngx-toastr {
  position: relative;
  overflow: hidden;
  margin: 0 0 6px;
  padding: 15px 15px 15px 50px;
  width: 300px;
  border-radius: 3px 3px 3px 3px;
  background-position: 15px center;
  background-repeat: no-repeat;
  background-size: 24px;
  box-shadow: 0 0 12px #999999;
  color: #FFFFFF;
}

.toast-container .ngx-toastr:hover {
  box-shadow: 0 0 12px #000000;
  opacity: 1;
  cursor: pointer;
}

/* https://github.com/FortAwesome/Font-Awesome-Pro/blob/master/advanced-options/raw-svg/regular/info-circle.svg */
.toast-info {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCA1MTIgNTEyJyB3aWR0aD0nNTEyJyBoZWlnaHQ9JzUxMic+PHBhdGggZmlsbD0ncmdiKDI1NSwyNTUsMjU1KScgZD0nTTI1NiA4QzExOS4wNDMgOCA4IDExOS4wODMgOCAyNTZjMCAxMzYuOTk3IDExMS4wNDMgMjQ4IDI0OCAyNDhzMjQ4LTExMS4wMDMgMjQ4LTI0OEM1MDQgMTE5LjA4MyAzOTIuOTU3IDggMjU2IDh6bTAgMTEwYzIzLjE5NiAwIDQyIDE4LjgwNCA0MiA0MnMtMTguODA0IDQyLTQyIDQyLTQyLTE4LjgwNC00Mi00MiAxOC44MDQtNDIgNDItNDJ6bTU2IDI1NGMwIDYuNjI3LTUuMzczIDEyLTEyIDEyaC04OGMtNi42MjcgMC0xMi01LjM3My0xMi0xMnYtMjRjMC02LjYyNyA1LjM3My0xMiAxMi0xMmgxMnYtNjRoLTEyYy02LjYyNyAwLTEyLTUuMzczLTEyLTEydi0yNGMwLTYuNjI3IDUuMzczLTEyIDEyLTEyaDY0YzYuNjI3IDAgMTIgNS4zNzMgMTIgMTJ2MTAwaDEyYzYuNjI3IDAgMTIgNS4zNzMgMTIgMTJ2MjR6Jy8+PC9zdmc+");
}

/* https://github.com/FortAwesome/Font-Awesome-Pro/blob/master/advanced-options/raw-svg/regular/times-circle.svg */
.toast-error {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCA1MTIgNTEyJyB3aWR0aD0nNTEyJyBoZWlnaHQ9JzUxMic+PHBhdGggZmlsbD0ncmdiKDI1NSwyNTUsMjU1KScgZD0nTTI1NiA4QzExOSA4IDggMTE5IDggMjU2czExMSAyNDggMjQ4IDI0OCAyNDgtMTExIDI0OC0yNDhTMzkzIDggMjU2IDh6bTEyMS42IDMxMy4xYzQuNyA0LjcgNC43IDEyLjMgMCAxN0wzMzggMzc3LjZjLTQuNyA0LjctMTIuMyA0LjctMTcgMEwyNTYgMzEybC02NS4xIDY1LjZjLTQuNyA0LjctMTIuMyA0LjctMTcgMEwxMzQuNCAzMzhjLTQuNy00LjctNC43LTEyLjMgMC0xN2w2NS42LTY1LTY1LjYtNjUuMWMtNC43LTQuNy00LjctMTIuMyAwLTE3bDM5LjYtMzkuNmM0LjctNC43IDEyLjMtNC43IDE3IDBsNjUgNjUuNyA2NS4xLTY1LjZjNC43LTQuNyAxMi4zLTQuNyAxNyAwbDM5LjYgMzkuNmM0LjcgNC43IDQuNyAxMi4zIDAgMTdMMzEyIDI1Nmw2NS42IDY1LjF6Jy8+PC9zdmc+");
}

/* https://github.com/FortAwesome/Font-Awesome-Pro/blob/master/advanced-options/raw-svg/regular/check.svg */
.toast-success {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCA1MTIgNTEyJyB3aWR0aD0nNTEyJyBoZWlnaHQ9JzUxMic+PHBhdGggZmlsbD0ncmdiKDI1NSwyNTUsMjU1KScgZD0nTTE3My44OTggNDM5LjQwNGwtMTY2LjQtMTY2LjRjLTkuOTk3LTkuOTk3LTkuOTk3LTI2LjIwNiAwLTM2LjIwNGwzNi4yMDMtMzYuMjA0YzkuOTk3LTkuOTk4IDI2LjIwNy05Ljk5OCAzNi4yMDQgMEwxOTIgMzEyLjY5IDQzMi4wOTUgNzIuNTk2YzkuOTk3LTkuOTk3IDI2LjIwNy05Ljk5NyAzNi4yMDQgMGwzNi4yMDMgMzYuMjA0YzkuOTk3IDkuOTk3IDkuOTk3IDI2LjIwNiAwIDM2LjIwNGwtMjk0LjQgMjk0LjQwMWMtOS45OTggOS45OTctMjYuMjA3IDkuOTk3LTM2LjIwNC0uMDAxeicvPjwvc3ZnPg==");
}

/* https://github.com/FortAwesome/Font-Awesome-Pro/blob/master/advanced-options/raw-svg/regular/exclamation-triangle.svg */
.toast-warning {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCA1NzYgNTEyJyB3aWR0aD0nNTc2JyBoZWlnaHQ9JzUxMic+PHBhdGggZmlsbD0ncmdiKDI1NSwyNTUsMjU1KScgZD0nTTU2OS41MTcgNDQwLjAxM0M1ODcuOTc1IDQ3Mi4wMDcgNTY0LjgwNiA1MTIgNTI3Ljk0IDUxMkg0OC4wNTRjLTM2LjkzNyAwLTU5Ljk5OS00MC4wNTUtNDEuNTc3LTcxLjk4N0wyNDYuNDIzIDIzLjk4NWMxOC40NjctMzIuMDA5IDY0LjcyLTMxLjk1MSA4My4xNTQgMGwyMzkuOTQgNDE2LjAyOHpNMjg4IDM1NGMtMjUuNDA1IDAtNDYgMjAuNTk1LTQ2IDQ2czIwLjU5NSA0NiA0NiA0NiA0Ni0yMC41OTUgNDYtNDYtMjAuNTk1LTQ2LTQ2LTQ2em0tNDMuNjczLTE2NS4zNDZsNy40MTggMTM2Yy4zNDcgNi4zNjQgNS42MDkgMTEuMzQ2IDExLjk4MiAxMS4zNDZoNDguNTQ2YzYuMzczIDAgMTEuNjM1LTQuOTgyIDExLjk4Mi0xMS4zNDZsNy40MTgtMTM2Yy4zNzUtNi44NzQtNS4wOTgtMTIuNjU0LTExLjk4Mi0xMi42NTRoLTYzLjM4M2MtNi44ODQgMC0xMi4zNTYgNS43OC0xMS45ODEgMTIuNjU0eicvPjwvc3ZnPg==");
}

.toast-container.toast-top-center .ngx-toastr,
.toast-container.toast-bottom-center .ngx-toastr {
  width: 300px;
  margin-left: auto;
  margin-right: auto;
}

.toast-container.toast-top-full-width .ngx-toastr,
.toast-container.toast-bottom-full-width .ngx-toastr {
  width: 96%;
  margin-left: auto;
  margin-right: auto;
}

.ngx-toastr {
  background-color: #030303;
  pointer-events: auto;
}

.toast-success {
  background-color: #51A351;
}

.toast-error {
  background-color: #BD362F;
}

.toast-info {
  background-color: #2F96B4;
}

.toast-warning {
  background-color: #F89406;
}

.toast-progress {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  background-color: #000000;
  opacity: 0.4;
}

/* Responsive Design */
@media all and (max-width: 240px) {
  .toast-container .ngx-toastr.div {
    padding: 8px 8px 8px 50px;
    width: 11em;
  }
  .toast-container .toast-close-button {
    right: -0.2em;
    top: -0.2em;
  }
}
@media all and (min-width: 241px) and (max-width: 480px) {
  .toast-container .ngx-toastr.div {
    padding: 8px 8px 8px 50px;
    width: 18em;
  }
  .toast-container .toast-close-button {
    right: -0.2em;
    top: -0.2em;
  }
}
@media all and (min-width: 481px) and (max-width: 768px) {
  .toast-container .ngx-toastr.div {
    padding: 15px 15px 15px 50px;
    width: 25em;
  }
}
.ng-busy {
  z-index: 1002;
}

.ng-busy,
.ng-busy > *,
.ng-busy > ng-component > * {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
}

.ng-busy-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1001;
  background: #fff;
  opacity: 0.7;
}

.ng-busy-default-wrapper {
  text-align: center;
}

.ng-busy-default-sign {
  position: relative;
  display: inline-block;
  z-index: 1003;
  padding: 12px 14px;
  border: 1px solid #d8d8d8;
  border-top: 0;
  border-radius: 4px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  background: #f8f8f8;
  color: #333;
}

.ng-busy-default-text {
  display: inline-block;
  margin-left: 6px;
  max-width: 400px;
  font-size: 14px;
  text-align: left;
}

.ng-busy-default-spinner {
  position: relative;
  display: inline-block;
  width: 25px;
  height: 25px;
  vertical-align: middle;
}

.ng-busy-default-spinner div {
  position: absolute;
  left: 44.5%;
  top: 37%;
  width: 10%;
  height: 26%;
  background: #666;
  border-radius: 50px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  opacity: 0;
  animation: busy-spinner-anim 1s linear infinite;
}

.ng-busy-default-spinner .bar1 {
  transform: rotate(0deg) translate(0, -142%);
  animation-delay: -1s;
}

.ng-busy-default-spinner .bar2 {
  transform: rotate(30deg) translate(0, -142%);
  animation-delay: -0.91666667s;
}

.ng-busy-default-spinner .bar3 {
  transform: rotate(60deg) translate(0, -142%);
  animation-delay: -0.83333333s;
}

.ng-busy-default-spinner .bar4 {
  transform: rotate(90deg) translate(0, -142%);
  animation-delay: -0.75s;
}

.ng-busy-default-spinner .bar5 {
  transform: rotate(120deg) translate(0, -142%);
  animation-delay: -0.66666667s;
}

.ng-busy-default-spinner .bar6 {
  transform: rotate(150deg) translate(0, -142%);
  animation-delay: -0.58333333s;
}

.ng-busy-default-spinner .bar7 {
  transform: rotate(180deg) translate(0, -142%);
  animation-delay: -0.5s;
}

.ng-busy-default-spinner .bar8 {
  transform: rotate(210deg) translate(0, -142%);
  animation-delay: -0.41666667s;
}

.ng-busy-default-spinner .bar9 {
  transform: rotate(240deg) translate(0, -142%);
  animation-delay: -0.33333333s;
}

.ng-busy-default-spinner .bar10 {
  transform: rotate(270deg) translate(0, -142%);
  animation-delay: -0.25s;
}

.ng-busy-default-spinner .bar11 {
  transform: rotate(300deg) translate(0, -142%);
  animation-delay: -0.16666667s;
}

.ng-busy-default-spinner .bar12 {
  transform: rotate(330deg) translate(0, -142%);
  animation-delay: -0.08333333s;
}

@keyframes busy-spinner-anim {
  from {
    opacity: 1;
  }
  to {
    opacity: 0.25;
  }
}
pe-nav-navigation-deprecated mat-icon[data-mat-icon-name=brand-salesloft] svg path {
  fill: #b3d334;
}
pe-nav-navigation-deprecated mat-icon[data-mat-icon-name=brand-salesloft] svg path + path {
  fill: #04472c;
}
@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes ghost-lines {
  0% {
    background-position: -100px;
  }
  40% {
    background-position: 40vw;
  }
  100% {
    background-position: 60vw;
  }
}
@keyframes ghost-avatar {
  0% {
    background-position: -32px;
  }
  40%, 100% {
    background-position: 208px;
  }
}
pe-dashboards .table-settings .tt-link,
pe-dashboards .tt-table-settings .tt-link,
pe-dashboards .mat-column-metric .tt-link {
  color: #666666;
}
pe-dashboards .table-settings .tt-link:hover:not(.tt-disabled):not(.disabled),
pe-dashboards .tt-table-settings .tt-link:hover:not(.tt-disabled):not(.disabled),
pe-dashboards .mat-column-metric .tt-link:hover:not(.tt-disabled):not(.disabled) {
  color: #323232;
}
pe-dashboards .table-settings .tt-link.tt-disabled,
pe-dashboards .tt-table-settings .tt-link.tt-disabled,
pe-dashboards .mat-column-metric .tt-link.tt-disabled {
  color: #b9b9b9;
}
pe-dashboards .table-settings .tt-configure .tt-link,
pe-dashboards .tt-table-settings .tt-configure .tt-link,
pe-dashboards .mat-column-metric .tt-configure .tt-link {
  display: inline-block;
  position: relative;
  top: -2px;
}
pe-dashboards .table-settings .tt-configure mat-icon,
pe-dashboards .tt-table-settings .tt-configure mat-icon,
pe-dashboards .mat-column-metric .tt-configure mat-icon {
  position: relative;
  top: 7px;
}
pe-dashboards .page-header {
  position: sticky;
  top: 0;
}
@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes ghost-lines {
  0% {
    background-position: -100px;
  }
  40% {
    background-position: 40vw;
  }
  100% {
    background-position: 60vw;
  }
}
@keyframes ghost-avatar {
  0% {
    background-position: -32px;
  }
  40%, 100% {
    background-position: 208px;
  }
}
.daterange-picker-overlay-backdrop {
  transition: visibility 1ms linear, opacity 1ms linear;
  visibility: hidden;
  opacity: 1;
}
.daterange-picker-overlay-backdrop.cdk-overlay-backdrop-showing {
  opacity: 0;
  visibility: visible;
}

.daterange-picker-overlay-panel .mat-calendar .mat-calendar-body-cell .mat-focus-indicator.mat-calendar-body-selected {
  background-color: #00a69f;
  color: #f6f7fa;
}
.daterange-picker-overlay-panel .mat-calendar .mat-calendar-body-cell.mat-calendar-body-range-end .mat-focus-indicator {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.daterange-picker-overlay-panel .mat-calendar .mat-calendar-body-cell.mat-calendar-body-range-start .mat-focus-indicator {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.daterange-picker-overlay-panel .calendar-filters-wrapper .calendar-filter-option,
.daterange-picker-overlay-panel .calendar-filters-wrapper .mat-ripple {
  border-radius: 3em;
}
.daterange-picker-overlay-panel .calendar-filters-wrapper .calendar-filter-option.mat-list-single-selected-option {
  background-color: rgb(222, 229, 236);
}
@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes ghost-lines {
  0% {
    background-position: -100px;
  }
  40% {
    background-position: 40vw;
  }
  100% {
    background-position: 60vw;
  }
}
@keyframes ghost-avatar {
  0% {
    background-position: -32px;
  }
  40%, 100% {
    background-position: 208px;
  }
}
pe-activity-leaderboard .tt-configure-columns {
  padding: 1.5rem 1.5rem 0 0;
  text-align: right;
}
pe-activity-leaderboard .tt-configure-columns pe-form-field {
  min-width: 0;
}
pe-activity-leaderboard pe-select.appearance-outline > div {
  border: none !important;
}
pe-activity-leaderboard mat-table {
  border: 1px solid #dde4eb;
  border-radius: 3px;
}
pe-activity-leaderboard mat-table mat-footer-row {
  border: 0;
}
pe-activity-leaderboard mat-table mat-row[mat-header-row] {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
pe-activity-leaderboard mat-table mat-row[mat-header-row] mat-header-cell:first-of-type {
  border-top-left-radius: 3px;
}
pe-activity-leaderboard mat-table mat-row[mat-header-row] mat-header-cell:last-of-type {
  border-top-right-radius: 3px;
}
pe-activity-leaderboard mat-table mat-row[mat-header-row] mat-row:last-of-type {
  border-bottom-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
pe-activity-leaderboard mat-table mat-row[mat-header-row] mat-row:last-of-type mat-cell:first-of-type {
  border-bottom-left-radius: 3px;
}
pe-activity-leaderboard mat-table mat-row[mat-header-row] mat-row:last-of-type mat-cell:last-of-type {
  border-bottom-left-radius: 3px;
}
pe-activity-leaderboard mat-table mat-row[mat-header-row] mat-footer-row {
  border-bottom-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
pe-activity-leaderboard mat-table mat-row[mat-header-row] mat-footer-row mat-footer-cell:first-of-type {
  border-bottom-left-radius: 3px;
}
pe-activity-leaderboard mat-table mat-row[mat-header-row] mat-footer-row mat-footer-cell:last-of-type {
  border-bottom-left-radius: 3px;
}
@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes ghost-lines {
  0% {
    background-position: -100px;
  }
  40% {
    background-position: 40vw;
  }
  100% {
    background-position: 60vw;
  }
}
@keyframes ghost-avatar {
  0% {
    background-position: -32px;
  }
  40%, 100% {
    background-position: 208px;
  }
}
pe-activity-summary .highcharts-series.tt-tier-3 .highcharts-point {
  fill: #11498c;
  stroke: #11498c;
}
pe-activity-summary .highcharts-series.tt-tier-2 .highcharts-point {
  fill: #2386df;
  stroke: #2386df;
}
pe-activity-summary .highcharts-series.tt-tier-1 .highcharts-point {
  fill: #7bc8fb;
  stroke: #7bc8fb;
}
pe-activity-summary .tt-configure-columns {
  padding: 1.5rem 1.5rem 0 0;
  text-align: right;
}
pe-activity-summary .tt-configure-columns pe-form-field {
  min-width: 0;
}
pe-activity-summary pe-select.appearance-outline > div {
  border: none !important;
}
pe-activity-summary mat-table {
  border: 1px solid #dde4eb;
  border-radius: 3px;
}
pe-activity-summary mat-table mat-footer-row {
  border: 0;
}
pe-activity-summary mat-table mat-row[mat-header-row] {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
pe-activity-summary mat-table mat-row[mat-header-row] mat-header-cell:first-of-type {
  border-top-left-radius: 3px;
}
pe-activity-summary mat-table mat-row[mat-header-row] mat-header-cell:last-of-type {
  border-top-right-radius: 3px;
}
pe-activity-summary mat-table mat-row[mat-header-row] mat-row:last-of-type {
  border-bottom-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
pe-activity-summary mat-table mat-row[mat-header-row] mat-row:last-of-type mat-cell:first-of-type {
  border-bottom-left-radius: 3px;
}
pe-activity-summary mat-table mat-row[mat-header-row] mat-row:last-of-type mat-cell:last-of-type {
  border-bottom-left-radius: 3px;
}
pe-activity-summary mat-table mat-row[mat-header-row] mat-footer-row {
  border-bottom-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
pe-activity-summary mat-table mat-row[mat-header-row] mat-footer-row mat-footer-cell:first-of-type {
  border-bottom-left-radius: 3px;
}
pe-activity-summary mat-table mat-row[mat-header-row] mat-footer-row mat-footer-cell:last-of-type {
  border-bottom-left-radius: 3px;
}
@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes ghost-lines {
  0% {
    background-position: -100px;
  }
  40% {
    background-position: 40vw;
  }
  100% {
    background-position: 60vw;
  }
}
@keyframes ghost-avatar {
  0% {
    background-position: -32px;
  }
  40%, 100% {
    background-position: 208px;
  }
}
pe-manage-licenses-and-users .tt-page-section .summary-stat-item mat-progress-bar,
pe-manage-licenses-and-users .tt-page-section .summary-stat-section mat-progress-bar {
  --mdc-linear-progress-active-indicator-color: #00a69f;
  --mdc-linear-progress-track-height: 16px;
}
pe-manage-licenses-and-users .tt-page-section .summary-stat-item mat-progress-bar,
pe-manage-licenses-and-users .tt-page-section .summary-stat-item mat-progress-bar > div,
pe-manage-licenses-and-users .tt-page-section .summary-stat-section mat-progress-bar,
pe-manage-licenses-and-users .tt-page-section .summary-stat-section mat-progress-bar > div {
  border-radius: 16px;
}
pe-manage-licenses-and-users .tt-page-section .summary-stat-item mat-progress-bar .mdc-linear-progress__bar,
pe-manage-licenses-and-users .tt-page-section .summary-stat-section mat-progress-bar .mdc-linear-progress__bar {
  height: 16px;
}
pe-manage-licenses-and-users .tt-page-section .summary-stat-item mat-progress-bar .mdc-linear-progress__bar-inner,
pe-manage-licenses-and-users .tt-page-section .summary-stat-section mat-progress-bar .mdc-linear-progress__bar-inner {
  border-top-width: 16px;
}
pe-manage-licenses-and-users .tt-page-section .summary-stat-item mat-progress-bar .mdc-linear-progress__buffer-bar,
pe-manage-licenses-and-users .tt-page-section .summary-stat-section mat-progress-bar .mdc-linear-progress__buffer-bar {
  background-color: rgb(237, 242, 247);
}
pe-manage-licenses-and-users .tt-search mat-form-field .mdc-text-field--outlined .mdc-notched-outline__leading,
pe-manage-licenses-and-users .tt-search mat-form-field .mdc-text-field--outlined .mdc-notched-outline__notch,
pe-manage-licenses-and-users .tt-search mat-form-field .mdc-text-field--outlined .mdc-notched-outline__trailing {
  border-color: #e0e0e0;
}
pe-manage-licenses-and-users .tt-search mat-form-field mat-icon[matPrefix] {
  color: #00a69f;
}

.drawer-overlay-backdrop {
  background-color: rgba(102, 102, 102, 0.5);
}

.drawer-overlay-panel {
  align-self: stretch;
}

.cdk-global-scrollblock {
  overflow: hidden;
}

.drawer-navigation {
  padding: 2.4rem 2.4rem 0 2.4rem;
}
.drawer-navigation .mat-tab-nav-bar {
  border: none;
}
.drawer-navigation .mat-tab-nav-bar .mat-tab-link {
  color: #323232;
  min-width: unset;
  opacity: 1;
}
.drawer-navigation .mat-tab-nav-bar .mat-tab-link:hover {
  background: #ecf6f5;
}
.drawer-navigation .mat-tab-nav-bar .mat-ink-bar {
  background-color: #00a69f;
  height: 3px;
}

pe-select-option .mdc-form-field {
  width: 100%;
  display: flex;
  align-items: stretch;
  align-content: center;
  font-weight: normal;
}
pe-select-option .mdc-form-field > label {
  padding-left: 0;
}
pe-select-option mat-checkbox {
  display: flex;
  width: 100%;
}
pe-select-option mat-checkbox label {
  overflow: hidden;
  flex: 1 1 auto;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
}
@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes ghost-lines {
  0% {
    background-position: -100px;
  }
  40% {
    background-position: 40vw;
  }
  100% {
    background-position: 60vw;
  }
}
@keyframes ghost-avatar {
  0% {
    background-position: -32px;
  }
  40%, 100% {
    background-position: 208px;
  }
}
.toastr.animate__animated {
  --animate-duration: 0.6s;
}

.toast-container.toast-top-center .ngx-toastr,
.toast-container.toast-bottom-center .ngx-toastr {
  width: auto;
}

.toast-success {
  background: none;
}

.toast-success {
  background: #fff;
  color: #000;
}

.toast-container {
  margin: 2.5rem 0 0 0;
}

.toast-container .ngx-toastr {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
  width: auto;
  border-radius: none;
  border: none;
  background: transparent;
  box-shadow: none;
  color: #000;
}
.toast-container .ngx-toastr:hover {
  box-shadow: none;
  cursor: auto;
}

.toast-progress {
  display: none;
  background-color: #000;
}

pe-toast-component {
  display: block;
}

.toastr .icon-error,
.toastr .icon-notice,
.toastr .icon-success {
  display: none;
}

.toast-success .toastr .messages {
  border-left-color: #00a69f;
}
.toast-success .toastr .indicator .icon-success {
  display: block;
  color: #00a69f;
}

.toast-error .toastr .messages {
  border-left-color: #e57373;
}
.toast-error .toastr .indicator .icon-error {
  display: block;
  color: #e57373;
}

.toast-info .toastr .messages {
  border-left-color: #2386df;
}
.toast-info .toastr .indicator .icon-notice {
  display: block;
  color: #2386df;
}

.toastr em {
  font-weight: bold;
  font-style: normal;
}
.toastr .messages {
  background-color: #fff;
  color: #000;
  margin: 1rem auto 1rem auto;
  width: 52rem;
  background-clip: padding-box; /* stops bg color from leaking outside the border: */
  border-radius: 4px;
  border-left: 4px solid #fff;
  display: flex;
  overflow: hidden;
  position: relative;
  box-shadow: 0 3.2px 7.2px 0 rgba(13, 17, 20, 0.13), 0 0.6px 1.8px 0 rgba(13, 17, 20, 0.06);
}
.toastr .messages:hover {
  cursor: pointer;
  box-shadow: 0 3.2px 7.2px 0 rgba(13, 17, 20, 0.23), 0 0.6px 1.8px 0 rgba(13, 17, 20, 0.16);
}
.toastr .messages .tt-close {
  position: absolute;
  top: 1.4rem;
  right: 0.5rem;
}
.toastr .messages div.indicator {
  flex: 0 0;
  padding: 1rem 1rem;
}
.toastr .messages div.indicator mat-icon {
  box-sizing: border-box;
  font-size: 2rem;
  line-height: 2rem;
  height: 2rem;
  position: relative;
  top: 9px;
  width: 20px;
  height: 20px;
}
.toastr .messages div.content {
  flex: 1 1;
  position: relative;
  font-weight: bold;
  width: 100%;
}
.toastr .messages div.content ul {
  padding: 1rem 2rem 1rem 0.8rem;
  background: #fff;
}
.toastr .messages div.content ul li {
  color: #323232;
  padding: 0.6rem 0;
}
.toastr .messages div.close {
  flex: 0 0;
}
.toastr .messages div.close mat-icon {
  font-size: 1.8rem;
  line-height: 1rem;
  position: relative;
  top: 9px;
  left: -3px;
}
.toastr .messages.tt-has-close > ul {
  padding-top: 2.8rem;
}
@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes ghost-lines {
  0% {
    background-position: -100px;
  }
  40% {
    background-position: 40vw;
  }
  100% {
    background-position: 60vw;
  }
}
@keyframes ghost-avatar {
  0% {
    background-position: -32px;
  }
  40%, 100% {
    background-position: 208px;
  }
}
.toastr.animate__animated {
  --animate-duration: 0.6s;
}

.toast-container.toast-top-center .ngx-toastr,
.toast-container.toast-bottom-center .ngx-toastr {
  width: auto;
}

.toast-success {
  background: none;
}

.toast-success {
  background: #fff;
  color: #000;
}

.toast-container {
  margin: 2.5rem 0 0 0;
}

.toast-container .ngx-toastr {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
  width: auto;
  border-radius: none;
  border: none;
  background: transparent;
  box-shadow: none;
  color: #000;
}
.toast-container .ngx-toastr:hover {
  box-shadow: none;
  cursor: auto;
}

.toast-progress {
  display: none;
  background-color: #000;
}

pe-toast-component {
  display: block;
}

.toastr .icon-error,
.toastr .icon-notice,
.toastr .icon-success {
  display: none;
}

.toast-success .toastr .messages {
  border-left-color: #00a69f;
}
.toast-success .toastr .indicator .icon-success {
  display: block;
  color: #00a69f;
}

.toast-error .toastr .messages {
  border-left-color: #e57373;
}
.toast-error .toastr .indicator .icon-error {
  display: block;
  color: #e57373;
}

.toast-info .toastr .messages {
  border-left-color: #2386df;
}
.toast-info .toastr .indicator .icon-notice {
  display: block;
  color: #2386df;
}

.toastr em {
  font-weight: bold;
  font-style: normal;
}
.toastr .messages {
  background-color: #fff;
  color: #000;
  margin: 1rem auto 1rem auto;
  width: 52rem;
  background-clip: padding-box; /* stops bg color from leaking outside the border: */
  border-radius: 4px;
  border-left: 4px solid #fff;
  display: flex;
  overflow: hidden;
  position: relative;
  box-shadow: 0 3.2px 7.2px 0 rgba(13, 17, 20, 0.13), 0 0.6px 1.8px 0 rgba(13, 17, 20, 0.06);
}
.toastr .messages:hover {
  cursor: pointer;
  box-shadow: 0 3.2px 7.2px 0 rgba(13, 17, 20, 0.23), 0 0.6px 1.8px 0 rgba(13, 17, 20, 0.16);
}
.toastr .messages .tt-close {
  position: absolute;
  top: 1.4rem;
  right: 0.5rem;
}
.toastr .messages div.indicator {
  flex: 0 0;
  padding: 1rem 1rem;
}
.toastr .messages div.indicator mat-icon {
  box-sizing: border-box;
  font-size: 2rem;
  line-height: 2rem;
  height: 2rem;
  position: relative;
  top: 9px;
  width: 20px;
  height: 20px;
}
.toastr .messages div.content {
  flex: 1 1;
  position: relative;
  font-weight: bold;
  width: 100%;
}
.toastr .messages div.content ul {
  padding: 1rem 2rem 1rem 0.8rem;
  background: #fff;
}
.toastr .messages div.content ul li {
  color: #323232;
  padding: 0.6rem 0;
}
.toastr .messages div.close {
  flex: 0 0;
}
.toastr .messages div.close mat-icon {
  font-size: 1.8rem;
  line-height: 1rem;
  position: relative;
  top: 9px;
  left: -3px;
}
.toastr .messages.tt-has-close > ul {
  padding-top: 2.8rem;
}

:root body {
  background: #f6f7fa;
}
:root body #launcher {
  display: none;
}

router-outlet {
  display: none;
}

cc-root cc-command-center-deprecated,
cc-root cc-no-access-to-command-center,
cc-root cc-command-center {
  box-sizing: border-box;
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-left: 204px;
  transition: margin 0.3s;
}
cc-root cc-command-center-deprecated.minified,
cc-root cc-no-access-to-command-center.minified,
cc-root cc-command-center.minified {
  margin-left: 60px;
}
cc-root cc-command-center-deprecated pe-global-page app-pe > *:not(router-outlet):not(.full-width-module),
cc-root cc-no-access-to-command-center pe-global-page app-pe > *:not(router-outlet):not(.full-width-module),
cc-root cc-command-center pe-global-page app-pe > *:not(router-outlet):not(.full-width-module) {
  display: flex;
  flex: 1 1 auto;
  min-width: 0;
  align-items: flex-start;
}
cc-root cc-command-center-deprecated pe-global-page app-pe > *:not(router-outlet):not(.full-width-module) > *:not(pe-page-navigation):not(router-outlet).full-height,
cc-root cc-no-access-to-command-center pe-global-page app-pe > *:not(router-outlet):not(.full-width-module) > *:not(pe-page-navigation):not(router-outlet).full-height,
cc-root cc-command-center pe-global-page app-pe > *:not(router-outlet):not(.full-width-module) > *:not(pe-page-navigation):not(router-outlet).full-height {
  flex: 1 1 auto;
  align-self: stretch;
  display: flex;
  flex-direction: row;
}
:root {
  color: #212121;
  --purple01: #f5f0fe;
  --purple02: #e4d5fd;
  --purple03: #ceb2fb;
  --purple04: #b689f9;
  --purple05: #9b62f8;
  --purple06: #7f35f4;
  --purple07: #5e22b7;
  --purple08: #401a7c;
  --blue01: #e2f5fe;
  --blue02: #b4e2fd;
  --blue03: #7bc8fb;
  --blue04: #39a7fa;
  --blue05: #2386df;
  --blue06: #1866b7;
  --blue07: #11498c;
  --blue08: #0a325f;
  --green01: #d5fafa;
  --green02: #98eeed;
  --green03: #42d6d3;
  --green04: #23b5b1;
  --green05: #1b928f;
  --green06: #15726d;
  --green07: #0f5252;
  --green08: #08393b;
  --red01: #feefef;
  --red02: #fed2d4;
  --red03: #fcaab0;
  --red04: #fb7880;
  --red05: #f5444f;
  --red06: #d11d29;
  --red07: #951920;
  --red08: #681116;
  --orange01: #fdefda;
  --orange02: #fbdfb4;
  --orange03: #f9ce8f;
  --orange04: #f6b85b;
  --orange05: #f5ae44;
  --orange06: #ee930d;
  --orange07: #b26f0a;
  --orange08: #774a06;
  --brightGreen01: #dafdec;
  --brightGreen02: #b4fbd9;
  --brightGreen03: #8ff9c6;
  --brightGreen04: #69f7b3;
  --brightGreen05: #44f5a0;
  --brightGreen06: #0dee82;
  --brightGreen07: #0ab261;
  --brightGreen08: #067741;
  --systemRed: #f5444f;
  --systemOrange: #fb7835;
  --systemYellow: #edbb37;
  --systemGreen: #299746;
  --systemRedTint: #fddadc;
  --systemOrangeTint: #fee4d7;
  --systemYellowTint: #fbf1d7;
  --systemGreenTint: #d4eada;
  --gray00: #ffffff;
  --gray01: #f5f7fa;
  --gray02: #edf2f7;
  --gray03: #dde4eb;
  --gray04: #bec6cf;
  --gray05: #a3acb5;
  --gray06: #8a939c;
  --gray07: #6c737a;
  --gray08: #585f66;
  --gray09: #41484f;
  --gray10: #2c3238;
  --gray11: #21262b;
  --gray12: #181c21;
  --gray13: #0d1114;
  --white: #FFFFFF;
  --primary-dark: color-mix(in srgb, #000000 20%, #00A69F);
  --primary: #00A69F;
  --primary-light: color-mix(in srgb, #FFFFFF 40%, #00A69F);
  --error: var(--systemRed);
  --error-light: var(--systemRedTint);
  --success: var(--brightGreen08);
  --success-light: var(--brightGreen01);
  --notice: var(--systemYellow);
  --notice-light: var(--systemYellowTint);
  --brand-green-light: color-mix(in srgb, #FFFFFF 40%, #00A69F);
  --brand-green: #00A69F;
  --brand-green-dark: color-mix(in srgb, #000000 20%, #00A69F);
  --brand-blue-light: #006884;
  --brand-blue: #004661;
  --brand-blue-dark: #002A3F;
  --brand-red: #7B1716;
  --brand-red-dark: #50140C;
  --brand-black: #212121;
  --brand-gray01: #333333;
  --brand-gray02: #5C5C5C;
  --brand-gray03: #808080;
  --brand-gray04: #A0A0A0;
  --brand-gray05: #F5F5F5;
  --brand-gray06: #C4C4C4;
  --brand-riptide: #8CD4D1;
}

:root {
  font-size: 62.5%;
  --text-family-base: Inter, Arial, Helvetica, Roboto, sans-serif;
  --text-family-brand: Aleo, Garamond, serif;
  --text-size-jumbo: 2.4rem;
  --text-size-large: 2rem;
  --text-size-medium: 1.8rem;
  --text-size-base: 1.4rem;
  --text-size-small: 1.2rem;
  --text-size-tiny: 1rem;
  --text-weight-bold: 700;
  --text-weight-semi: 600;
  --text-weight-body: 400;
}
:root a {
  color: var(--primary);
  text-decoration: none;
  font-weight: var(--text-weight-bold);
}
:root body {
  font-size: 1.4rem;
  line-height: 1.6;
  font-weight: 400;
  font-family: Inter, Arial, Helvetica, Roboto, sans-serif;
  letter-spacing: normal;
}
:root h1 {
  font-size: var(--text-size-base);
  line-height: 1.6;
  font-weight: var(--text-weight-bold);
  font-family: Inter, Arial, Helvetica, Roboto, sans-serif;
  letter-spacing: normal;
}
:root h2 {
  font-size: var(--text-size-medium);
  line-height: normal;
  font-weight: var(--text-weight-bold);
  font-family: Inter, Arial, Helvetica, Roboto, sans-serif;
  letter-spacing: normal;
}
:root h3 {
  font-size: var(--text-size-base);
  line-height: 1.6;
  font-weight: var(--text-weight-bold);
  font-family: Inter, Arial, Helvetica, Roboto, sans-serif;
  letter-spacing: normal;
}
:root h4 {
  font-size: var(--text-size-base);
  line-height: 1.6;
  font-weight: var(--text-weight-semi);
  font-family: Inter, Arial, Helvetica, Roboto, sans-serif;
  letter-spacing: normal;
}
:root h5 {
  font-size: var(--text-size-small);
  line-height: normal;
  font-weight: var(--text-weight-bold);
  font-family: Inter, Arial, Helvetica, Roboto, sans-serif;
  letter-spacing: normal;
}
:root small {
  font-size: var(--text-size-small);
  line-height: normal;
  font-weight: 400;
  font-family: Inter, Arial, Helvetica, Roboto, sans-serif;
  letter-spacing: normal;
}
:root .body-tiny {
  font-size: var(--text-size-tiny);
  line-height: normal;
  font-weight: 400;
  font-family: Inter, Arial, Helvetica, Roboto, sans-serif;
  letter-spacing: normal;
}
:root strong {
  font-weight: var(--text-weight-bold);
}
:root .text-weight-semi {
  font-weight: 600;
}
:root .text-weight-bold {
  font-weight: 700;
}
:root .text-weight-body {
  font-weight: 400;
}
:root .text-size-jumbo {
  font-size: 2.4rem;
}
:root .text-size-medium {
  font-size: 1.8rem;
}
:root .text-size-large {
  font-size: 2rem;
}
:root .text-size-base {
  font-size: 1.4rem;
}
:root .text-size-small {
  font-size: 1.2rem;
}
:root .text-size-tiny {
  font-size: 1rem;
}
:root .brand-heading {
  font-family: var(--text-family-brand);
  font-size: var(--text-size-jumbo);
  color: var(--blue07);
}

@keyframes ghost-lines {
  0% {
    background-position: -100px;
  }
  40% {
    background-position: 40vw;
  }
  100% {
    background-position: 60vw;
  }
}
mat-button-toggle.pe-ui-button-toggle-small,
mat-button-toggle.pe-ui-button-toggle-medium,
mat-button-toggle.pe-ui-button-toggle-large {
  --mat-standard-button-toggle-shape: 4px;
  --mat-standard-button-toggle-hover-state-layer-opacity: 1;
  --mat-standard-button-toggle-focus-state-layer-opacity: 1;
  --mat-standard-button-toggle-text-color: var(--brand-black);
  --mat-standard-button-toggle-background-color: var(--white);
  --mat-standard-button-toggle-state-layer-color: transparent;
  --mat-standard-button-toggle-selected-state-background-color: var(--primary);
  --mat-standard-button-toggle-selected-state-text-color: var(--white);
  --mat-standard-button-toggle-disabled-state-text-color: var(--gray05);
  --mat-standard-button-toggle-disabled-state-background-color: var(--white);
  --mat-standard-button-toggle-disabled-selected-state-text-color: var(--gray05);
  --mat-standard-button-toggle-disabled-selected-state-background-color: var(--gray03);
  --mat-standard-button-toggle-divider-color: transparent;
  --mat-standard-button-toggle-label-text-weight: var(--text-weight-bold);
}

.mat-button-toggle-group-appearance-standard {
  --mat-standard-button-toggle-height: 1.6rem;
  --mat-standard-button-toggle-divider-color: var(--gray04);
  --mat-standard-button-toggle-shape: 4px;
}

mat-button-toggle-group.mat-button-toggle-group-appearance-standard .mat-button-toggle-appearance-standard.pe-ui-button-toggle-small,
mat-button-toggle-group.mat-button-toggle-group-appearance-standard .mat-button-toggle-appearance-standard.pe-ui-button-toggle-medium,
mat-button-toggle-group.mat-button-toggle-group-appearance-standard .mat-button-toggle-appearance-standard.pe-ui-button-toggle-large {
  margin: 4px;
  display: flex;
  padding: 0 16px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 4px;
}
mat-button-toggle-group.mat-button-toggle-group-appearance-standard .mat-button-toggle-appearance-standard.pe-ui-button-toggle-small .mat-button-toggle-label-content,
mat-button-toggle-group.mat-button-toggle-group-appearance-standard .mat-button-toggle-appearance-standard.pe-ui-button-toggle-medium .mat-button-toggle-label-content,
mat-button-toggle-group.mat-button-toggle-group-appearance-standard .mat-button-toggle-appearance-standard.pe-ui-button-toggle-large .mat-button-toggle-label-content {
  padding: 0;
}

mat-button-toggle-group.mat-button-toggle-group-appearance-standard .mat-button-toggle-appearance-standard.pe-ui-button-toggle-small {
  height: 1.6rem;
  --mat-standard-button-toggle-label-text-size: var(--text-size-small);
}

mat-button-toggle-group.mat-button-toggle-group-appearance-standard .mat-button-toggle-appearance-standard.pe-ui-button-toggle-medium {
  height: 2.4rem;
  --mat-standard-button-toggle-label-text-size: var(--text-size-base);
}

mat-button-toggle-group.mat-button-toggle-group-appearance-standard .mat-button-toggle-appearance-standard.pe-ui-button-toggle-large {
  height: 3.2rem;
  --mat-standard-button-toggle-label-text-size: var(--text-size-base);
}

html mat-checkbox.pe-ui-check-small,
html mat-checkbox.pe-ui-check-large {
  --mdc-checkbox-disabled-selected-icon-color: var(--gray03);
  --mdc-checkbox-disabled-unselected-icon-color: var(--gray05);
  --mdc-checkbox-disabled-selected-checkmark-color: var(--gray05);
  --mdc-checkbox-selected-checkmark-color: var(--white);
  --mdc-checkbox-selected-focus-icon-color: var(--primary);
  --mdc-checkbox-selected-hover-icon-color: var(--primary-light);
  --mdc-checkbox-selected-icon-color: var(--primary);
  --mdc-checkbox-selected-pressed-icon-color: var(--primary-dark);
  --mdc-checkbox-unselected-focus-icon-color: var(--brand-black);
  --mdc-checkbox-unselected-hover-icon-color: var(--primary-light);
  --mdc-checkbox-unselected-icon-color: var(--brand-black);
  --mdc-checkbox-selected-focus-state-layer-color: transparent;
  --mdc-checkbox-selected-hover-state-layer-color: transparent;
  --mdc-checkbox-selected-pressed-state-layer-color: transparent;
  --mdc-checkbox-unselected-focus-state-layer-color: transparent;
  --mdc-checkbox-unselected-hover-state-layer-color: transparent;
  --mdc-checkbox-unselected-pressed-state-layer-color: transparent;
  --mat-checkbox-label-text-size: var(--text-size-base);
  --mat-checkbox-label-text-weight: var(--text-weight-body);
}

html mat-checkbox.pe-ui-check-small {
  --mdc-checkbox-state-layer-size: $size-sm;
}

html mat-checkbox.pe-ui-check-large {
  --mdc-checkbox-state-layer-size: $size-lg;
}

mat-checkbox.pe-ui-check-small.mdc-checkbox--disabled .mdc-checkbox__background {
  background: var(--gray03);
}
mat-checkbox.pe-ui-check-small .mat-mdc-checkbox-touch-target {
  height: calc(1.6rem + 2px);
  width: calc(1.6rem + 2px);
}
mat-checkbox.pe-ui-check-small .mdc-checkbox__background {
  height: 1.6rem;
  width: 1.6rem;
}
mat-checkbox.pe-ui-check-small .mdc-checkbox__background {
  border: 1px solid currentColor;
}
mat-checkbox.pe-ui-check-small .mdc-checkbox {
  height: 1.6rem;
  width: 1.6rem;
  flex: 0 0 1.6rem;
  padding: 0;
  margin: 0;
}
mat-checkbox.pe-ui-check-small .mat-internal-form-field > label {
  padding-left: 0.8rem;
  padding-right: 2.4rem;
}
mat-checkbox.pe-ui-check-small .mdc-checkbox:active > .mdc-checkbox__native-control:not(:checked) ~ .mdc-checkbox__background,
mat-checkbox.pe-ui-check-small .mdc-checkbox:active > .mdc-checkbox__native-control:checked ~ .mdc-checkbox__background {
  border-color: var(--primary-dark);
}
mat-checkbox.pe-ui-check-small .mdc-checkbox:active > .mdc-checkbox__native-control:indeterminate ~ .mdc-checkbox__background,
mat-checkbox.pe-ui-check-small .mdc-checkbox:active > .mdc-checkbox__native-control:checked ~ .mdc-checkbox__background {
  background-color: var(--primary-dark);
}
mat-checkbox .mdc-checkbox__mixedmark {
  width: 1rem;
}
mat-checkbox .mdc-checkbox__checkmark {
  height: 1.2rem;
  width: 1.2rem;
  margin: auto;
}

mat-checkbox.pe-ui-check-large.mdc-checkbox--disabled .mdc-checkbox__background {
  background: var(--gray03);
}
mat-checkbox.pe-ui-check-large .mat-mdc-checkbox-touch-target {
  height: calc(2.4rem + 2px);
  width: calc(2.4rem + 2px);
}
mat-checkbox.pe-ui-check-large .mdc-checkbox__background {
  height: 2.4rem;
  width: 2.4rem;
}
mat-checkbox.pe-ui-check-large .mdc-checkbox__background {
  border: 1px solid currentColor;
}
mat-checkbox.pe-ui-check-large .mdc-checkbox {
  height: 2.4rem;
  width: 2.4rem;
  flex: 0 0 2.4rem;
  padding: 0;
  margin: 0;
}
mat-checkbox.pe-ui-check-large .mat-internal-form-field > label {
  padding-left: 0.8rem;
  padding-right: 2.4rem;
}
mat-checkbox.pe-ui-check-large .mdc-checkbox:active > .mdc-checkbox__native-control:not(:checked) ~ .mdc-checkbox__background,
mat-checkbox.pe-ui-check-large .mdc-checkbox:active > .mdc-checkbox__native-control:checked ~ .mdc-checkbox__background {
  border-color: var(--primary-dark);
}
mat-checkbox.pe-ui-check-large .mdc-checkbox:active > .mdc-checkbox__native-control:indeterminate ~ .mdc-checkbox__background,
mat-checkbox.pe-ui-check-large .mdc-checkbox:active > .mdc-checkbox__native-control:checked ~ .mdc-checkbox__background {
  background-color: var(--primary-dark);
}
mat-checkbox.pe-ui-check-large .mdc-checkbox__mixedmark {
  width: 1.6rem;
}
mat-checkbox.pe-ui-check-large .mdc-checkbox__checkmark {
  height: 1.8rem;
  width: 1.8rem;
  margin: auto;
}

.mat-mdc-radio-button.mat-accent.pe-ui-radio-small,
.mat-mdc-radio-button.mat-accent.pe-ui-radio-large {
  --mdc-radio-disabled-selected-icon-color: var(--gray05);
  --mdc-radio-disabled-unselected-icon-color: var(--gray05);
  --mdc-radio-unselected-hover-icon-color: var(--primary-light);
  --mdc-radio-unselected-focus-icon-color: var(--primary-dark);
  --mdc-radio-unselected-icon-color: var(--brand-black);
  --mdc-radio-unselected-pressed-icon-color: var(--primary-dark);
  --mdc-radio-selected-focus-icon-color: var(--primary-dark);
  --mdc-radio-selected-hover-icon-color: var(--primary-light);
  --mdc-radio-selected-icon-color: var(--primary);
  --mdc-radio-selected-pressed-icon-color: var(--primary-dark);
  --mat-radio-ripple-color: transparent;
  --mat-radio-checked-ripple-color: transparent;
  --mat-radio-disabled-label-color: var(--gray05);
  --mat-radio-label-text-color: var(--brand-black);
}

html mat-radio-button.pe-ui-radio-small,
html mat-radio-button.pe-ui-radio-large {
  --mat-radio-label-text-size: var(--text-size-base);
  --mat-radio-label-text-weight: var(--text-weight-body);
}

mat-radio-button.pe-ui-radio-small.mat-mdc-radio-disabled .mdc-radio .mdc-radio__outer-circle {
  background: var(--gray03);
}
mat-radio-button.pe-ui-radio-small .mat-internal-form-field > label {
  padding-left: 0.8rem;
  padding-right: 2.4rem;
}
mat-radio-button.pe-ui-radio-small .mdc-radio,
mat-radio-button.pe-ui-radio-small .mdc-radio__native-control,
mat-radio-button.pe-ui-radio-small .mdc-radio__background {
  height: 1.6rem;
  width: 1.6rem;
}
mat-radio-button.pe-ui-radio-small .mdc-radio {
  padding: 0;
}
mat-radio-button.pe-ui-radio-small .mat-mdc-radio-button .mdc-radio__native-control,
mat-radio-button.pe-ui-radio-small .mat-radio-ripple {
  height: 3.2rem;
  width: 3.2rem;
  left: calc(50% - 1.6rem);
  top: calc(50% - 1.6rem);
}
mat-radio-button.pe-ui-radio-small .mdc-radio__background::before {
  height: 3.2rem;
  width: 3.2rem;
  left: calc(50% - 1.6rem);
  top: calc(50% - 1.6rem);
}
mat-radio-button.pe-ui-radio-small .mdc-radio__inner-circle {
  border-width: 0.8rem;
}
mat-radio-button.pe-ui-radio-small .mat-mdc-radio-touch-target {
  height: 1.6rem;
  width: 1.6rem;
}

mat-radio-button.pe-ui-radio-large.mat-mdc-radio-disabled .mdc-radio .mdc-radio__outer-circle {
  background: var(--gray03);
}
mat-radio-button.pe-ui-radio-large .mat-internal-form-field > label {
  padding-left: 0.8rem;
  padding-right: 2.4rem;
}
mat-radio-button.pe-ui-radio-large .mdc-radio,
mat-radio-button.pe-ui-radio-large .mdc-radio__native-control,
mat-radio-button.pe-ui-radio-large .mdc-radio__background {
  height: 2.4rem;
  width: 2.4rem;
}
mat-radio-button.pe-ui-radio-large .mdc-radio {
  padding: 0;
}
mat-radio-button.pe-ui-radio-large .mat-mdc-radio-button .mdc-radio__native-control,
mat-radio-button.pe-ui-radio-large .mat-radio-ripple {
  height: 4.8rem;
  width: 4.8rem;
  left: calc(50% - 2.4rem);
  top: calc(50% - 2.4rem);
}
mat-radio-button.pe-ui-radio-large .mdc-radio__background::before {
  height: 4.8rem;
  width: 4.8rem;
  left: calc(50% - 2.4rem);
  top: calc(50% - 2.4rem);
}
mat-radio-button.pe-ui-radio-large .mdc-radio__inner-circle {
  border-width: 1.2rem;
}
mat-radio-button.pe-ui-radio-large .mat-mdc-radio-touch-target {
  height: 2.4rem;
  width: 2.4rem;
}

html mat-slide-toggle.mat-mdc-slide-toggle.pe-ui-toggle-small,
html mat-slide-toggle.mat-mdc-slide-toggle.pe-ui-toggle-large {
  --mdc-switch-selected-focus-state-layer-color: transparent;
  --mdc-switch-selected-handle-color: var(--primary);
  --mdc-switch-selected-hover-state-layer-color: transparent;
  --mdc-switch-selected-pressed-state-layer-color: transparent;
  --mdc-switch-selected-focus-handle-color: var(--primary);
  --mdc-switch-selected-hover-handle-color: var(--primary-light);
  --mdc-switch-selected-pressed-handle-color: var(--primary-dark);
  --mdc-switch-selected-focus-track-color: var(--white);
  --mdc-switch-selected-hover-track-color: var(--white);
  --mdc-switch-selected-pressed-track-color: var(--white);
  --mdc-switch-selected-track-color: var(--white);
  --mdc-switch-selected-icon-color: var(--white);
  --mat-switch-selected-track-outline-width: 1px;
  --mat-switch-selected-track-outline-color: transparent;
  --mdc-switch-handle-surface-color: var(--white);
  --mdc-switch-unselected-focus-handle-color: var(--brand-black);
  --mdc-switch-unselected-focus-state-layer-color: transparent;
  --mdc-switch-unselected-focus-track-color: var(--white);
  --mdc-switch-unselected-handle-color: var(--brand-black);
  --mdc-switch-unselected-hover-handle-color: var(--primary-light);
  --mdc-switch-unselected-hover-state-layer-color: transparent;
  --mdc-switch-unselected-hover-track-color: var(--white);
  --mdc-switch-unselected-icon-color: var(--brand-black);
  --mdc-switch-unselected-pressed-handle-color: var(--primary-dark);
  --mdc-switch-unselected-pressed-state-layer-color: transparent;
  --mdc-switch-unselected-pressed-track-color: var(--white);
  --mdc-switch-unselected-track-color: var(--white);
  --mat-switch-label-text-size: var(--text-size-base);
  --mat-switch-label-text-weight: var(--text-weight-body);
  --mat-switch-track-outline-width: 1px;
  --mat-switch-track-outline-color: transparent;
  --mat-switch-disabled-selected-handle-opacity: 1;
  --mat-switch-disabled-unselected-handle-opacity: 1;
  --mdc-switch-disabled-selected-icon-opacity: 1;
  --mdc-switch-disabled-track-opacity: 1;
  --mdc-switch-disabled-unselected-icon-opacity: 1;
  --mat-switch-disabled-unselected-track-outline-width: 1px;
  --mat-switch-disabled-unselected-track-outline-color: var(--gray05);
  --mat-switch-disabled-track-outline-width: 1px;
  --mat-switch-disabled-track-outline-color: var(--gray05);
  --mdc-switch-disabled-unselected-track-color: var(--gray03);
  --mdc-switch-disabled-selected-handle-color: var(--gray05);
  --mdc-switch-disabled-selected-track-color: var(--gray03);
  --mdc-switch-disabled-unselected-handle-color: var(--gray05);
  --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);
}
html mat-slide-toggle.mat-mdc-slide-toggle.pe-ui-toggle-small .mdc-switch__icons,
html mat-slide-toggle.mat-mdc-slide-toggle.pe-ui-toggle-large .mdc-switch__icons {
  display: none;
}
html mat-slide-toggle.mat-mdc-slide-toggle.pe-ui-toggle-small .mdc-switch .mdc-switch__handle,
html mat-slide-toggle.mat-mdc-slide-toggle.pe-ui-toggle-large .mdc-switch .mdc-switch__handle {
  left: 3px;
  border-radius: 50%;
}
html mat-slide-toggle.mat-mdc-slide-toggle.pe-ui-toggle-small .mdc-form-field > label,
html mat-slide-toggle.mat-mdc-slide-toggle.pe-ui-toggle-large .mdc-form-field > label {
  padding-left: 8px;
}
html mat-slide-toggle.mat-mdc-slide-toggle.pe-ui-toggle-small .mdc-switch--selected:enabled > .mdc-switch__track,
html mat-slide-toggle.mat-mdc-slide-toggle.pe-ui-toggle-large .mdc-switch--selected:enabled > .mdc-switch__track {
  outline: 1px solid var(--primary);
}
html mat-slide-toggle.mat-mdc-slide-toggle.pe-ui-toggle-small .mdc-switch--unselected:enabled > .mdc-switch__track,
html mat-slide-toggle.mat-mdc-slide-toggle.pe-ui-toggle-large .mdc-switch--unselected:enabled > .mdc-switch__track {
  outline: 1px solid var(--brand-black);
}
html mat-slide-toggle.mat-mdc-slide-toggle.pe-ui-toggle-small .mdc-switch--selected:enabled:active > .mdc-switch__track,
html mat-slide-toggle.mat-mdc-slide-toggle.pe-ui-toggle-small .mdc-switch--unselected:enabled:active > .mdc-switch__track,
html mat-slide-toggle.mat-mdc-slide-toggle.pe-ui-toggle-large .mdc-switch--selected:enabled:active > .mdc-switch__track,
html mat-slide-toggle.mat-mdc-slide-toggle.pe-ui-toggle-large .mdc-switch--unselected:enabled:active > .mdc-switch__track {
  outline: 1px solid var(--primary-dark);
}
html mat-slide-toggle.mat-mdc-slide-toggle.pe-ui-toggle-small .mdc-switch--selected:enabled:hover:not(:active) > .mdc-switch__track,
html mat-slide-toggle.mat-mdc-slide-toggle.pe-ui-toggle-small .mdc-switch--unselected:enabled:hover:not(:active) > .mdc-switch__track,
html mat-slide-toggle.mat-mdc-slide-toggle.pe-ui-toggle-large .mdc-switch--selected:enabled:hover:not(:active) > .mdc-switch__track,
html mat-slide-toggle.mat-mdc-slide-toggle.pe-ui-toggle-large .mdc-switch--unselected:enabled:hover:not(:active) > .mdc-switch__track {
  outline: 1px solid var(--primary-light);
}
html mat-slide-toggle.mat-mdc-slide-toggle.pe-ui-toggle-small .mdc-switch--selected:enabled:hover:not(:active) .mdc-switch__handle::after,
html mat-slide-toggle.mat-mdc-slide-toggle.pe-ui-toggle-small .mdc-switch--unselected:enabled:hover:not(:active) .mdc-switch__handle::after,
html mat-slide-toggle.mat-mdc-slide-toggle.pe-ui-toggle-large .mdc-switch--selected:enabled:hover:not(:active) .mdc-switch__handle::after,
html mat-slide-toggle.mat-mdc-slide-toggle.pe-ui-toggle-large .mdc-switch--unselected:enabled:hover:not(:active) .mdc-switch__handle::after {
  background: var(--primary-light);
}

html mat-slide-toggle.mat-mdc-slide-toggle.pe-ui-toggle-small {
  --mdc-switch-track-shape: 0.8rem;
  --mdc-switch-track-height: 1.6rem;
  --mat-switch-with-icon-handle-size: 1.2rem;
  --mdc-switch-track-width: 2.6rem;
  --mat-switch-pressed-handle-size: 1.2rem;
}
html mat-slide-toggle.mat-mdc-slide-toggle.pe-ui-toggle-small .mdc-switch .mdc-switch__handle-track {
  width: 0.8rem;
}

html mat-slide-toggle.mat-mdc-slide-toggle.pe-ui-toggle-large {
  --mdc-switch-track-shape: 1.2rem;
  --mdc-switch-track-height: 2.4rem;
  --mat-switch-with-icon-handle-size: 1.6rem;
  --mdc-switch-track-width: 4rem;
  --mat-switch-pressed-handle-size: 1.6rem;
}
html mat-slide-toggle.mat-mdc-slide-toggle.pe-ui-toggle-large .mdc-switch .mdc-switch__handle-track {
  width: 1.8rem;
}

.card {
  --card-bg: #f5f7fa;
  background-clip: padding-box; /* stops bg color from leaking outside the border: */
  border-radius: 4px;
  background-color: var(--card-bg);
  border: 1px solid #dde4eb;
  padding: 1.6rem 1.6rem;
}
.card--flat, .card--default {
  --card-bg: #ffffff;
}
.card--raised {
  --card-bg: #f5f7fa;
}
.card--highlighted {
  --card-bg: #fffcf1;
}

.card {
  display: flex;
  flex-direction: column;
}
.card.tier-4 {
  --tier-color: #0a325f;
}
.card.tier-3 {
  --tier-color: #11498c;
}
.card.tier-2 {
  --tier-color: #2386df;
}
.card.tier-1 {
  --tier-color: #7bc8fb;
}
.card.tier-1, .card.tier-2, .card.tier-3, .card.tier-4 {
  background: linear-gradient(to right, var(--tier-color), var(--tier-color) 4px, var(--card-bg) 4px);
}

.card-title {
  font-size: var(--text-size-base);
  font-weight: var(--text-weight-bold);
}
.card-title:not(:empty) {
  margin: 0 0 1.6rem 0;
  padding: 0 0 1.6rem 0;
  border-bottom: 1px solid #dde4eb;
}
.card-title header {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  flex-grow: 1;
  align-items: center;
  justify-content: space-between;
  min-height: 16px;
  overflow: visible;
}

.card-content {
  color: var(--gray11);
  font-size: var(--text-size-base);
  display: flex;
  flex-grow: 1;
  align-items: stretch;
  gap: 1.6rem;
}
.card-content--stretched {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

.card-image {
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  border: 1px solid #dde4eb;
}
.card-image, .card-image--normal {
  height: 70px;
  min-width: 70px;
  width: 70px;
}
.card-image img, .card-image--normal img {
  width: 60px;
  height: 60px;
}
.card-image--small {
  height: 40px;
  min-width: 40px;
  width: 40px;
}
.card-image--small img {
  width: 32px;
}
.card-image--large {
  height: 90px;
  min-width: 90px;
  width: 90px;
}
.card-image--large img {
  width: 80px;
}
.card-image img {
  object-fit: contain;
}
.card-image .fallback-image {
  width: auto;
}

.card-bottom:not(:empty) {
  font-size: var(--text-size-base);
  border-top: 1px solid #dde4eb;
  display: flex;
  margin: 1.2rem 0 0 0;
  padding: 1.2rem 0 0 0;
}

.card-error:not(:empty) {
  background-clip: padding-box; /* stops bg color from leaking outside the border: */
  border-radius: 0 0 4px 4px;
  border-top: 1px solid #f5444f;
  background-color: #feefef;
  margin: 1.6rem -1.6rem -1.6rem -1.6rem;
  padding: 16px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

html {
  --mat-sys-on-surface: initial;
}

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

pe-ui-button:not(.pe-ui-button-tertiary) mat-icon,
button[pe-ui-button]:not(.pe-ui-button-tertiary) mat-icon {
  width: 16px;
  height: 16px;
}
