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

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

  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }

  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0) scaleY(0.95);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
@keyframes bounce {
  from,
  20%,
  53%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }

  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0) scaleY(0.95);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }

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

  25%,
  75% {
    opacity: 0;
  }
}
@keyframes flash {
  from,
  50%,
  to {
    opacity: 1;
  }

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

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

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

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

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}
@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}
@-webkit-keyframes shakeX {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shakeX {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
.animate__shakeX {
  -webkit-animation-name: shakeX;
  animation-name: shakeX;
}
@-webkit-keyframes shakeY {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
}
@keyframes shakeY {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
}
.animate__shakeY {
  -webkit-animation-name: shakeY;
  animation-name: shakeY;
}
@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.animate__headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}
@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

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

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

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

  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

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

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

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

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

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

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

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

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

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

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

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

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

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

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

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

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

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

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

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

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

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

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}
@-webkit-keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
@keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.animate__jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}
@-webkit-keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.animate__heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: calc(1s * 1.3);
  animation-duration: calc(1s * 1.3);
  -webkit-animation-duration: calc(var(--animate-duration) * 1.3);
  animation-duration: calc(var(--animate-duration) * 1.3);
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}
/* Back entrances */
@-webkit-keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }

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

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }

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

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInDown {
  -webkit-animation-name: backInDown;
  animation-name: backInDown;
}
@-webkit-keyframes backInLeft {
  0% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInLeft {
  0% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInLeft {
  -webkit-animation-name: backInLeft;
  animation-name: backInLeft;
}
@-webkit-keyframes backInRight {
  0% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInRight {
  0% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInRight {
  -webkit-animation-name: backInRight;
  animation-name: backInRight;
}
@-webkit-keyframes backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }

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

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }

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

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

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

  100% {
    -webkit-transform: translateY(700px) scale(0.7);
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutDown {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

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

  100% {
    -webkit-transform: translateY(700px) scale(0.7);
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutDown {
  -webkit-animation-name: backOutDown;
  animation-name: backOutDown;
}
@-webkit-keyframes backOutLeft {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutLeft {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutLeft {
  -webkit-animation-name: backOutLeft;
  animation-name: backOutLeft;
}
@-webkit-keyframes backOutRight {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutRight {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutRight {
  -webkit-animation-name: backOutRight;
  animation-name: backOutRight;
}
@-webkit-keyframes backOutUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

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

  100% {
    -webkit-transform: translateY(-700px) scale(0.7);
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

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

  100% {
    -webkit-transform: translateY(-700px) scale(0.7);
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutUp {
  -webkit-animation-name: backOutUp;
  animation-name: backOutUp;
}
/* Bouncing entrances  */
@-webkit-keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__bounceIn {
  -webkit-animation-duration: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}
@-webkit-keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) scaleY(3);
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0) scaleY(0.9);
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.95);
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0) scaleY(0.985);
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) scaleY(3);
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0) scaleY(0.9);
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.95);
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0) scaleY(0.985);
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}
@-webkit-keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0) scaleX(3);
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0) scaleX(1);
    transform: translate3d(25px, 0, 0) scaleX(1);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0) scaleX(0.98);
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0) scaleX(0.995);
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0) scaleX(3);
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0) scaleX(1);
    transform: translate3d(25px, 0, 0) scaleX(1);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0) scaleX(0.98);
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0) scaleX(0.995);
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}
@-webkit-keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0) scaleX(0.98);
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995);
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0) scaleX(0.98);
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995);
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}
@-webkit-keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0) scaleY(5);
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.95);
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0) scaleY(0.985);
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0) scaleY(5);
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.95);
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0) scaleY(0.985);
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}
/* Bouncing exits  */
@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.animate__bounceOut {
  -webkit-animation-duration: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}
@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.985);
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.985);
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
.animate__bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}
@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0) scaleX(0.9);
    transform: translate3d(20px, 0, 0) scaleX(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0) scaleX(2);
    transform: translate3d(-2000px, 0, 0) scaleX(2);
  }
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0) scaleX(0.9);
    transform: translate3d(20px, 0, 0) scaleX(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0) scaleX(2);
    transform: translate3d(-2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}
@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0) scaleX(0.9);
    transform: translate3d(-20px, 0, 0) scaleX(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0) scaleX(2);
    transform: translate3d(2000px, 0, 0) scaleX(2);
  }
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0) scaleX(0.9);
    transform: translate3d(-20px, 0, 0) scaleX(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0) scaleX(2);
    transform: translate3d(2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}
@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.985);
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0) scaleY(0.9);
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.985);
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0) scaleY(0.9);
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
.animate__bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}
/* Fading entrances  */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }

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

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

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

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }

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

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

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

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }

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

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

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

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }

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

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

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

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

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

  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

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

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

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

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

  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

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

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

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

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

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

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

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

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

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

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

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

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

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

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

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

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

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

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

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

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

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

  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

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

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

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

  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

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

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

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

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes lightSpeedInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

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

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

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

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

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes lightSpeedInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(30deg);
    transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0;
  }

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

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

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

  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOutRight {
  from {
    opacity: 1;
  }

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

  to {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg);
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOutLeft {
  from {
    opacity: 1;
  }

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateIn {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

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

  to {
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  from {
    opacity: 1;
  }

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

  to {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  from {
    opacity: 1;
  }

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

  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  from {
    opacity: 1;
  }

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

  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  from {
    opacity: 1;
  }

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

  to {
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  from {
    opacity: 1;
  }

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

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

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

  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

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

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

  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.animate__hinge {
  -webkit-animation-duration: calc(1s * 2);
  animation-duration: calc(1s * 2);
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
  -webkit-animation-name: hinge;
  animation-name: hinge;
  -webkit-transform-origin: top left;
  transform-origin: top left;
}
@-webkit-keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }

  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }

  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.animate__jackInTheBox {
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
@keyframes rollOut {
  from {
    opacity: 1;
  }

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

  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}
.animate__zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}
@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}
@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}
@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}
@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}
/* Zooming exits */
@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  to {
    opacity: 0;
  }
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  to {
    opacity: 0;
  }
}
.animate__zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}
@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}
@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
  }
}
.animate__zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
  -webkit-transform-origin: left center;
  transform-origin: left center;
}
@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
  }
}
.animate__zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
  -webkit-transform-origin: right center;
  transform-origin: right center;
}
@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}
/* Sliding entrances */
@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

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

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

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

  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

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

  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

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

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

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

/*
 * Container style
 */
.ps {
  overflow: hidden !important;
  overflow-anchor: none;
  -ms-overflow-style: none;
  touch-action: auto;
  -ms-touch-action: auto;
}
/*
 * Scrollbar rail styles
 */
.ps__rail-x {
  display: none;
  opacity: 0;
  transition: background-color .2s linear, opacity .2s linear;
  -webkit-transition: background-color .2s linear, opacity .2s linear;
  height: 15px;
  /* there must be 'bottom' or 'top' for ps__rail-x */
  bottom: 0px;
  /* please don't change 'position' */
  position: absolute;
}
.ps__rail-y {
  display: none;
  opacity: 0;
  transition: background-color .2s linear, opacity .2s linear;
  -webkit-transition: background-color .2s linear, opacity .2s linear;
  width: 15px;
  /* there must be 'right' or 'left' for ps__rail-y */
  right: 0;
  /* please don't change 'position' */
  position: absolute;
}
.ps--active-x > .ps__rail-x,
.ps--active-y > .ps__rail-y {
  display: block;
  background-color: transparent;
}
.ps:hover > .ps__rail-x,
.ps:hover > .ps__rail-y,
.ps--focus > .ps__rail-x,
.ps--focus > .ps__rail-y,
.ps--scrolling-x > .ps__rail-x,
.ps--scrolling-y > .ps__rail-y {
  opacity: 0.6;
}
.ps .ps__rail-x:hover,
.ps .ps__rail-y:hover,
.ps .ps__rail-x:focus,
.ps .ps__rail-y:focus,
.ps .ps__rail-x.ps--clicking,
.ps .ps__rail-y.ps--clicking {
  background-color: #eee;
  opacity: 0.9;
}
/*
 * Scrollbar thumb styles
 */
.ps__thumb-x {
  background-color: #aaa;
  border-radius: 6px;
  transition: background-color .2s linear, height .2s ease-in-out;
  -webkit-transition: background-color .2s linear, height .2s ease-in-out;
  height: 6px;
  /* there must be 'bottom' for ps__thumb-x */
  bottom: 2px;
  /* please don't change 'position' */
  position: absolute;
}
.ps__thumb-y {
  background-color: #aaa;
  border-radius: 6px;
  transition: background-color .2s linear, width .2s ease-in-out;
  -webkit-transition: background-color .2s linear, width .2s ease-in-out;
  width: 6px;
  /* there must be 'right' for ps__thumb-y */
  right: 2px;
  /* please don't change 'position' */
  position: absolute;
}
.ps__rail-x:hover > .ps__thumb-x,
.ps__rail-x:focus > .ps__thumb-x,
.ps__rail-x.ps--clicking .ps__thumb-x {
  background-color: #999;
  height: 11px;
}
.ps__rail-y:hover > .ps__thumb-y,
.ps__rail-y:focus > .ps__thumb-y,
.ps__rail-y.ps--clicking .ps__thumb-y {
  background-color: #999;
  width: 11px;
}
/* MS supports */
@supports (-ms-overflow-style: none) {
  .ps {
    overflow: auto !important;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .ps {
    overflow: auto !important;
  }
}
.ps {
    position: relative;
}
/* -------------------------------- 

Basic Style

-------------------------------- */

.cd-breadcrumb, .cd-multi-steps {
    width: 90%;
    max-width: 768px;
    padding: 0.5em 1em;
    margin: 1em auto;
    background-color: #edeff0;
    border-radius: .25em;
  }
  .cd-breadcrumb:after, .cd-multi-steps:after {
    content: "";
    display: table;
    clear: both;
  }
  .cd-breadcrumb li, .cd-multi-steps li {
    display: inline-block;
    float: left;
    margin: 0.5em 0;
  }
  .cd-breadcrumb li::after, .cd-multi-steps li::after {
    /* this is the separator between items */
    display: inline-block;
    content: '\00bb';
    margin: 0 .6em;
    color: #959fa5;
  }
  .cd-breadcrumb li:last-of-type::after, .cd-multi-steps li:last-of-type::after {
    /* hide separator after the last item */
    display: none;
  }
  .cd-breadcrumb li > *, .cd-multi-steps li > * {
    /* single step */
    display: inline-block;
    font-size: 1.4rem;
    color: #2c3f4c;
  }
  .cd-breadcrumb li.current > *, .cd-multi-steps li.current > * {
    /* selected step */
    color: #d04c8d;
  }
  .no-touch .cd-breadcrumb a:hover, .no-touch .cd-multi-steps a:hover {
    /* steps already visited */
    color: #d04c8d;
  }

  .cd-breadcrumb.custom-icons li:not(.current):nth-of-type(2) > *::before, .cd-multi-steps.custom-icons li:not(.current):nth-of-type(2) > *::before {
    /* change custom icon using image sprites */
    background-position: -20px 0;
  }
  .cd-breadcrumb.custom-icons li:not(.current):nth-of-type(3) > *::before, .cd-multi-steps.custom-icons li:not(.current):nth-of-type(3) > *::before {
    background-position: -40px 0;
  }
  .cd-breadcrumb.custom-icons li:not(.current):nth-of-type(4) > *::before, .cd-multi-steps.custom-icons li:not(.current):nth-of-type(4) > *::before {
    background-position: -60px 0;
  }
  .cd-breadcrumb.custom-icons li.current:first-of-type > *::before, .cd-multi-steps.custom-icons li.current:first-of-type > *::before {
    /* change custom icon for the current item */
    background-position: 0 -20px;
  }
  .cd-breadcrumb.custom-icons li.current:nth-of-type(2) > *::before, .cd-multi-steps.custom-icons li.current:nth-of-type(2) > *::before {
    background-position: -20px -20px;
  }
  .cd-breadcrumb.custom-icons li.current:nth-of-type(3) > *::before, .cd-multi-steps.custom-icons li.current:nth-of-type(3) > *::before {
    background-position: -40px -20px;
  }
  .cd-breadcrumb.custom-icons li.current:nth-of-type(4) > *::before, .cd-multi-steps.custom-icons li.current:nth-of-type(4) > *::before {
    background-position: -60px -20px;
  }
  @media only screen and (min-width: 768px) {
    .cd-breadcrumb, .cd-multi-steps {
      padding: 0 1.2em;
    }
    .cd-breadcrumb li, .cd-multi-steps li {
      margin: 1.2em 0;
    }
    .cd-breadcrumb li::after, .cd-multi-steps li::after {
      margin: 0 1em;
    }
    .cd-breadcrumb li > *, .cd-multi-steps li > * {
      font-size: 1.6rem;
    }
  }
  
  /* -------------------------------- 
  
  Triangle breadcrumb
  
  -------------------------------- */
  @media only screen and (min-width: 768px) {
    .cd-breadcrumb.triangle {
      /* reset basic style */
      background-color: transparent;
      padding: 0;
    }
    .cd-breadcrumb.triangle li {
      position: relative;
      padding: 0;
      margin: 4px 4px 4px 0;
    }
    .cd-breadcrumb.triangle li:last-of-type {
      margin-right: 0;
    }
    .cd-breadcrumb.triangle li > * {
      position: relative;
      padding: 1em .8em 1em 2.5em;
      color: #2c3f4c;
      background-color: #edeff0;
      /* the border color is used to style its ::after pseudo-element */
      border-color: #edeff0;
    }
    .cd-breadcrumb.triangle li.current > * {
      /* selected step */
      color: #ffffff;
      background-color: #d04c8d;
      border-color: #d04c8d;
    }
    .cd-breadcrumb.triangle li:first-of-type > * {
      padding-left: 1.6em;
      border-radius: .25em 0 0 .25em;
    }
    .cd-breadcrumb.triangle li:last-of-type > * {
      padding-right: 1.6em;
      border-radius: 0 .25em .25em 0;
    }
    .no-touch .cd-breadcrumb.triangle a:hover {
      /* steps already visited */
      color: #ffffff;
      background-color: #2c3f4c;
      border-color: #2c3f4c;
    }
    .cd-breadcrumb.triangle li::after, .cd-breadcrumb.triangle li > *::after {
      /* 
          li > *::after is the colored triangle after each item
          li::after is the white separator between two items
      */
      content: '';
      position: absolute;
      top: 0;
      left: 100%;
      content: '';
      height: 0;
      width: 0;
      /* 48px is the height of the <a> element */
      border: 24px solid transparent;
      border-right-width: 0;
      border-left-width: 20px;
    }
    .cd-breadcrumb.triangle li::after {
      /* this is the white separator between two items */
      z-index: 1;
      transform: translateX(4px);
      border-left-color: #ffffff;
      /* reset style */
      margin: 0;
    }
    .cd-breadcrumb.triangle li > *::after {
      /* this is the colored triangle after each element */
      z-index: 2;
      border-left-color: inherit;
    }
    .cd-breadcrumb.triangle li:last-of-type::after, .cd-breadcrumb.triangle li:last-of-type > *::after {
      /* hide the triangle after the last step */
      display: none;
    }
    .cd-breadcrumb.triangle.custom-separator li::after {
      /* reset style */
      background-image: none;
    }
    .cd-breadcrumb.triangle.custom-icons li::after, .cd-breadcrumb.triangle.custom-icons li > *::after {
      /* 50px is the height of the <a> element */
      border-top-width: 25px;
      border-bottom-width: 25px;
    }
  
    @-moz-document url-prefix() {
      .cd-breadcrumb.triangle li::after,
      .cd-breadcrumb.triangle li > *::after {
        /* fix a bug on Firefix - tooth edge on css triangle */
        border-left-style: dashed;
      }
    }
  }
  /* -------------------------------- 
  
  Custom icons hover effects - breadcrumb and multi-steps
  
  -------------------------------- */
  @media only screen and (min-width: 768px) {
    .no-touch .cd-breadcrumb.triangle.custom-icons li:first-of-type a:hover::before, .cd-breadcrumb.triangle.custom-icons li.current:first-of-type em::before, .no-touch .cd-multi-steps.text-center.custom-icons li:first-of-type a:hover::before, .cd-multi-steps.text-center.custom-icons li.current:first-of-type em::before {
      /* change custom icon using image sprites - hover effect or current item */
      background-position: 0 -40px;
    }
    .no-touch .cd-breadcrumb.triangle.custom-icons li:nth-of-type(2) a:hover::before, .cd-breadcrumb.triangle.custom-icons li.current:nth-of-type(2) em::before, .no-touch .cd-multi-steps.text-center.custom-icons li:nth-of-type(2) a:hover::before, .cd-multi-steps.text-center.custom-icons li.current:nth-of-type(2) em::before {
      background-position: -20px -40px;
    }
    .no-touch .cd-breadcrumb.triangle.custom-icons li:nth-of-type(3) a:hover::before, .cd-breadcrumb.triangle.custom-icons li.current:nth-of-type(3) em::before, .no-touch .cd-multi-steps.text-center.custom-icons li:nth-of-type(3) a:hover::before, .cd-multi-steps.text-center.custom-icons li.current:nth-of-type(3) em::before {
      background-position: -40px -40px;
    }
    .no-touch .cd-breadcrumb.triangle.custom-icons li:nth-of-type(4) a:hover::before, .cd-breadcrumb.triangle.custom-icons li.current:nth-of-type(4) em::before, .no-touch .cd-multi-steps.text-center.custom-icons li:nth-of-type(4) a:hover::before, .cd-multi-steps.text-center.custom-icons li.current:nth-of-type(4) em::before {
      background-position: -60px -40px;
    }
  }
  /* -------------------------------- 
  
  Multi steps indicator 
  
  -------------------------------- */
  @media only screen and (min-width: 768px) {
    .cd-multi-steps {
      /* reset style */
      background-color: transparent;
      padding: 0;
      text-align: center;
    }
  
    .cd-multi-steps li {
      position: relative;
      float: none;
      margin: 0.4em 40px 0.4em 0;
    }
    .cd-multi-steps li:last-of-type {
      margin-right: 0;
    }
    .cd-multi-steps li::after {
      /* this is the line connecting 2 adjacent items */
      position: absolute;
      content: '';
      height: 4px;
      background: #edeff0;
      /* reset style */
      margin: 0;
    }
    .cd-multi-steps li.visited::after {
      background-color: #d04c8d;
    }
    .cd-multi-steps li > *, .cd-multi-steps li.current > * {
      position: relative;
      color: #2c3f4c;
    }
  
    .cd-multi-steps.custom-separator li::after {
      /* reset style */
      height: 4px;
      background: #edeff0;
    }
  
    .cd-multi-steps.text-center li::after {
      width: 100%;
      top: 50%;
      left: 100%;
      transform: translateY(-50%) translateX(-1px);
    }
    .cd-multi-steps.text-center li > * {
      z-index: 1;
      padding: .6em 1em;
      border-radius: .25em;
      background-color: #edeff0;
    }
    .no-touch .cd-multi-steps.text-center a:hover {
      background-color: #2c3f4c;
    }
    .cd-multi-steps.text-center li.current > *, .cd-multi-steps.text-center li.visited > * {
      color: #ffffff;
      background-color: #d04c8d;
    }
    .cd-multi-steps.text-center.custom-icons li.visited a::before {
      /* change the custom icon for the visited item - check icon */
      background-position: 0 -60px;
    }
  
    .cd-multi-steps.text-top li, .cd-multi-steps.text-bottom li {
      width: 80px;
      text-align: center;
    }
    .cd-multi-steps.text-top li::after, .cd-multi-steps.text-bottom li::after {
      /* this is the line connecting 2 adjacent items */
      position: absolute;
      left: 50%;
      /* 40px is the <li> right margin value */
      width: calc(100% + 40px);
    }
    .cd-multi-steps.text-top li > *::before, .cd-multi-steps.text-bottom li > *::before {
      /* this is the spot indicator */
      content: '';
      position: absolute;
      z-index: 1;
      left: 50%;
      right: auto;
      transform: translateX(-50%);
      height: 12px;
      width: 12px;
      border-radius: 50%;
      background-color: #edeff0;
    }
    .cd-multi-steps.text-top li.visited > *::before,
    .cd-multi-steps.text-top li.current > *::before, .cd-multi-steps.text-bottom li.visited > *::before,
    .cd-multi-steps.text-bottom li.current > *::before {
      background-color: #d04c8d;
    }
    .no-touch .cd-multi-steps.text-top a:hover, .no-touch .cd-multi-steps.text-bottom a:hover {
      color: #d04c8d;
    }
    .no-touch .cd-multi-steps.text-top a:hover::before, .no-touch .cd-multi-steps.text-bottom a:hover::before {
      box-shadow: 0 0 0 3px rgba(150, 192, 61, 0.3);
    }
  
    .cd-multi-steps.text-top li::after {
      /* this is the line connecting 2 adjacent items */
      bottom: 4px;
    }
    .cd-multi-steps.text-top li > * {
      padding-bottom: 20px;
    }
    .cd-multi-steps.text-top li > *::before {
      /* this is the spot indicator */
      bottom: 0;
    }
  
    .cd-multi-steps.text-bottom li::after {
      /* this is the line connecting 2 adjacent items */
      top: 3px;
    }
    .cd-multi-steps.text-bottom li > * {
      padding-top: 20px;
    }
    .cd-multi-steps.text-bottom li > *::before {
      /* this is the spot indicator */
      top: 0;
    }
  }
  /* -------------------------------- 
  
  Add a counter to the multi-steps indicator 
  
  -------------------------------- */
  .cd-multi-steps.count li {
    counter-increment: steps;
  }
  
  .cd-multi-steps.count li > *::before {
    content: counter(steps) " - ";
  }
  
  @media only screen and (min-width: 768px) {
    .cd-multi-steps.text-top.count li > *::before,
    .cd-multi-steps.text-bottom.count li > *::before {
      /* this is the spot indicator */
      content: counter(steps);
      height: 26px;
      width: 26px;
      line-height: 26px;
      font-size: 1.4rem;
      color: #ffffff;
    }
  
    .cd-multi-steps.text-top.count li:not(.current) em::before,
    .cd-multi-steps.text-bottom.count li:not(.current) em::before {
      /* steps not visited yet - counter color */
      color: #2c3f4c;
    }
  
    .cd-multi-steps.text-top.count li::after {
      bottom: 11px;
    }
  
    .cd-multi-steps.text-top.count li > * {
      padding-bottom: 34px;
    }
  
    .cd-multi-steps.text-bottom.count li::after {
      top: 11px;
    }
  
    .cd-multi-steps.text-bottom.count li > * {
      padding-top: 34px;
    }
  }
  
.table {
    --bs-table-bg: transparent;
    --bs-table-accent-bg: transparent;
    --bs-table-striped-color: #212529;
    --bs-table-striped-bg: rgba(0, 0, 0, 0.05);
    --bs-table-active-color: #212529;
    --bs-table-active-bg: rgba(0, 0, 0, 0.1);
    --bs-table-hover-color: #212529;
    --bs-table-hover-bg: rgba(0, 0, 0, 0.075);
    width: 100%;
    margin-bottom: 1rem;
    color: #212529;
    vertical-align: top;
    border-color: #dee2e6;
  }
  .table > :not(caption) > * > * {
    padding: 0.5rem 0.5rem;
    background-color: var(--bs-table-bg);
    border-bottom-width: 1px;
    box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
  }
  .table > tbody {
    vertical-align: inherit;
  }
  .table > thead {
    vertical-align: bottom;
  }
  .table > :not(:last-child) > :last-child > * {
    border-bottom-color: currentColor;
  }
  
  .caption-top {
    caption-side: top;
  }
  
  .table-sm > :not(caption) > * > * {
    padding: 0.25rem 0.25rem;
  }
  
  .table-bordered > :not(caption) > * {
    border-width: 1px 0;
  }
  .table-bordered > :not(caption) > * > * {
    border-width: 0 1px;
  }
  
  .table-borderless > :not(caption) > * > * {
    border-bottom-width: 0;
  }
  
  .table-striped > tbody > tr:nth-of-type(odd) {
    --bs-table-accent-bg: var(--bs-table-striped-bg);
    color: var(--bs-table-striped-color);
  }
  
  .table-active {
    --bs-table-accent-bg: var(--bs-table-active-bg);
    color: var(--bs-table-active-color);
  }
  
  .table-hover > tbody > tr:hover {
    --bs-table-accent-bg: var(--bs-table-hover-bg);
    color: var(--bs-table-hover-color);
  }
  
  .table-primary {
    --bs-table-bg: #cfe2ff;
    --bs-table-striped-bg: #c5d7f2;
    --bs-table-striped-color: #000;
    --bs-table-active-bg: #bacbe6;
    --bs-table-active-color: #000;
    --bs-table-hover-bg: #bfd1ec;
    --bs-table-hover-color: #000;
    color: #000;
    border-color: #bacbe6;
  }
  
  .table-secondary {
    --bs-table-bg: #e2e3e5;
    --bs-table-striped-bg: #d7d8da;
    --bs-table-striped-color: #000;
    --bs-table-active-bg: #cbccce;
    --bs-table-active-color: #000;
    --bs-table-hover-bg: #d1d2d4;
    --bs-table-hover-color: #000;
    color: #000;
    border-color: #cbccce;
  }
  
  .table-success {
    --bs-table-bg: #d1e7dd;
    --bs-table-striped-bg: #c7dbd2;
    --bs-table-striped-color: #000;
    --bs-table-active-bg: #bcd0c7;
    --bs-table-active-color: #000;
    --bs-table-hover-bg: #c1d6cc;
    --bs-table-hover-color: #000;
    color: #000;
    border-color: #bcd0c7;
  }
  
  .table-info {
    --bs-table-bg: #cff4fc;
    --bs-table-striped-bg: #c5e8ef;
    --bs-table-striped-color: #000;
    --bs-table-active-bg: #badce3;
    --bs-table-active-color: #000;
    --bs-table-hover-bg: #bfe2e9;
    --bs-table-hover-color: #000;
    color: #000;
    border-color: #badce3;
  }
  
  .table-warning {
    --bs-table-bg: #fff3cd;
    --bs-table-striped-bg: #f2e7c3;
    --bs-table-striped-color: #000;
    --bs-table-active-bg: #e6dbb9;
    --bs-table-active-color: #000;
    --bs-table-hover-bg: #ece1be;
    --bs-table-hover-color: #000;
    color: #000;
    border-color: #e6dbb9;
  }
  
  .table-danger {
    --bs-table-bg: #f8d7da;
    --bs-table-striped-bg: #eccccf;
    --bs-table-striped-color: #000;
    --bs-table-active-bg: #dfc2c4;
    --bs-table-active-color: #000;
    --bs-table-hover-bg: #e5c7ca;
    --bs-table-hover-color: #000;
    color: #000;
    border-color: #dfc2c4;
  }
  
  .table-light {
    --bs-table-bg: #f8f9fa;
    --bs-table-striped-bg: #ecedee;
    --bs-table-striped-color: #000;
    --bs-table-active-bg: #dfe0e1;
    --bs-table-active-color: #000;
    --bs-table-hover-bg: #e5e6e7;
    --bs-table-hover-color: #000;
    color: #000;
    border-color: #dfe0e1;
  }
  
  .table-dark {
    --bs-table-bg: #212529;
    --bs-table-striped-bg: #2c3034;
    --bs-table-striped-color: #fff;
    --bs-table-active-bg: #373b3e;
    --bs-table-active-color: #fff;
    --bs-table-hover-bg: #323539;
    --bs-table-hover-color: #fff;
    color: #fff;
    border-color: #373b3e;
  }
  
  .table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  @media (max-width: 575.98px) {
    .table-responsive-sm {
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
    }
  }
  @media (max-width: 767.98px) {
    .table-responsive-md {
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
    }
  }
  @media (max-width: 991.98px) {
    .table-responsive-lg {
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
    }
  }
  @media (max-width: 1199.98px) {
    .table-responsive-xl {
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
    }
  }
  @media (max-width: 1399.98px) {
    .table-responsive-xxl {
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
    }
  }
.invoice {
    background: #fff;
    padding: 20px;
    /* width: 21cm; */
    /* height: 29.7cm; */
}

.invoice-company {
    font-size: 20px
}

.invoice-header {
    margin: 0 -20px;
    background: #f0f3f4;
    padding: 20px 40px 10px 40px
}

.invoice-content {
    margin: 0 -20px;
}

.invoice-subheader {
    background: #ffffff;
    padding: 40px 20px 40px 20px
}

.invoice-date,
.invoice-cust-details1,
.invoice-cust-details2 {
    display: table-cell;
    width: 1%
}

.invoice-date .date,
.invoice-from strong,
.invoice-details strong {
    font-size: 16px;
    font-weight: 600
}

.invoice-date {
    text-align: right;
    padding-left: 20px
}

.invoice-price {
    background: #f0f3f4;
    display: table;
    width: 100%
}

.invoice-price .invoice-price-left,
.invoice-price .invoice-price-right {
    display: table-cell;
    padding: 20px;
    font-size: 20px;
    font-weight: 600;
    width: 75%;
    position: relative;
    vertical-align: middle
}

.invoice-price .invoice-price-left .sub-price {
    display: table-cell;
    vertical-align: middle;
    padding: 0 20px
}

.invoice-price small {
    font-size: 12px;
    font-weight: 400;
    display: block
}

.invoice-price .invoice-price-row {
    display: table;
    float: left
}

.invoice-price .invoice-price-right {
    width: 25%;
    background: #2d353c;
    color: #fff;
    font-size: 28px;
    text-align: right;
    vertical-align: bottom;
    font-weight: 300
}

.invoice-price .invoice-price-right small {
    display: block;
    opacity: .6;
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 12px
}

.invoice-footer {
    border-top: 1px solid #ddd;
    padding-top: 10px;
    font-size: 12px
}

.invoice-note {
    color: #999;
    margin-top: 50px;
    font-size: 85%
}

/* .invoice>div:not(.invoice-footer) {
    margin-bottom: 20px
} */

.table-invoice td {
    border: none;
    padding: 5px 20px 5px 20px
}

.table-invoice th {
    padding: 5px 20px 5px 20px
}
@charset "UTF-8";
body {
  --color-text-link: #D04C8D;
  --color-menu-border-active: #D04C8D;
  --color-btn-focus-shadow: 0 0 0 3px #f4e2eb;
  --color-btn-outline-text: #0c4b88;
  --color-btn-outline-selected-bg: #0c4b88;
  --color-btn-outline-hover-bg: #0c4b88;
  --color-btn-primary-bg: #d04c8d;
  --color-btn-primary-border: #d04c8d;
  --color-btn-primary-hover-bg: #cf2e76;
  --color-btn-primary-hover-border: #cf2e76;
  --color-btn-primary-selected-bg: #cf2e76;
  --color-btn-primary-focus-bg: #cf2e76;
  --color-btn-primary-focus-shadow: #ff89db;
  --color-btn-primary-focus-border: #cf2e76;
  --color-btn-primary-disabled-bg: #ff89db;
  --color-btn-primary-disabled-border: #ff89db;
  --color-btn-danger-hover-bg: #f42d2d;
  --color-btn-danger-hover-border: #f42d2d;
  --color-state-hover-primary-bg: #d04c8d;
  --color-state-focus-border: #d04c8d;
  --color-state-focus-shadow: 0 0 0 3px #f4e2eb;
  --color-state-selected-primary-bg: #0c4b88;
  --color-state-selected-primary-border: #0c4b88;
}

/*!
 * Primer CSS
 * https://primer.style
 *
 * Released under MIT license.
 */
/*!
 * @primer/css/core
 * http://primer.style/css
 *
 * Released under MIT license. Copyright (c) 2019 GitHub Inc.
 */
/*! normalize.css v4.1.1 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Change the default font family in all browsers (opinionated).
 * 2. Prevent adjustments of font size after orientation changes in IE and iOS.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 * 2. Add the correct display in IE.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section {
  /* 1 */
  display: block;
}

summary {
  display: list-item;
}

/**
 * Add the correct display in IE 9-.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

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

/**
 * Add the correct display in IE 10-.
 * 1. Add the correct display in IE.
 */
template,
[hidden] {
  display: none !important;
}

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

/**
 * Remove the outline on focused links when they are also active or hovered
 * in all browsers (opinionated).
 */
a:active,
a:hover {
  outline-width: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the bottom border in Firefox 39-.
 * 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 */
}

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit;
}

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

/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
  font-style: italic;
}

/**
 * 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;
}

/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ff0;
  color: var(--color-text-primary);
}

/**
 * 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;
}

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}

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

/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 1em 40px;
}

/**
 * 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 */
}

/* Forms
   ========================================================================== */
/**
 * 1. Change font properties to `inherit` in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
select,
textarea {
  font: inherit;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
 * Restore the font weight unset by the previous rule.
 */
optgroup {
  font-weight: 700;
}

/**
 * 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;
}

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
  /* 2 */
}

/**
 * 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;
}

/**
 * Change the border, margin, and padding in all browsers (opinionated).
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 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 */
}

/**
 * Remove the default vertical scrollbar in IE.
 */
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 and cancel buttons in Chrome and Safari on OS X.
 */
[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

/**
 * 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 */
}

:root,
[data-color-mode=light][data-light-theme=light],
[data-color-mode=dark][data-dark-theme=light] {
  /*! */
}
:root,
[data-color-mode=light][data-light-theme=light],
[data-color-mode=dark][data-dark-theme=light] {
  --color-auto-black: #1b1f24;
  --color-auto-white: #ffffff;
  --color-auto-gray-0: #f6f8fa;
  --color-auto-gray-1: #eaeef2;
  --color-auto-gray-2: #d0d7de;
  --color-auto-gray-3: #afb8c1;
  --color-auto-gray-4: #8c959f;
  --color-auto-gray-5: #6e7781;
  --color-auto-gray-6: #57606a;
  --color-auto-gray-7: #424a53;
  --color-auto-gray-8: #32383f;
  --color-auto-gray-9: #24292f;
  --color-auto-blue-0: #ddf4ff;
  --color-auto-blue-1: #b6e3ff;
  --color-auto-blue-2: #80ccff;
  --color-auto-blue-3: #54aeff;
  --color-auto-blue-4: #218bff;
  --color-auto-blue-5: #0969da;
  --color-auto-blue-6: #0550ae;
  --color-auto-blue-7: #033d8b;
  --color-auto-blue-8: #0a3069;
  --color-auto-blue-9: #002155;
  --color-auto-green-0: #dafbe1;
  --color-auto-green-1: #aceebb;
  --color-auto-green-2: #6fdd8b;
  --color-auto-green-3: #4ac26b;
  --color-auto-green-4: #2da44e;
  --color-auto-green-5: #1a7f37;
  --color-auto-green-6: #116329;
  --color-auto-green-7: #044f1e;
  --color-auto-green-8: #003d16;
  --color-auto-green-9: #002d11;
  --color-auto-yellow-0: #fff8c5;
  --color-auto-yellow-1: #fae17d;
  --color-auto-yellow-2: #eac54f;
  --color-auto-yellow-3: #d4a72c;
  --color-auto-yellow-4: #bf8700;
  --color-auto-yellow-5: #9a6700;
  --color-auto-yellow-6: #7d4e00;
  --color-auto-yellow-7: #633c01;
  --color-auto-yellow-8: #4d2d00;
  --color-auto-yellow-9: #3b2300;
  --color-auto-orange-0: #fff1e5;
  --color-auto-orange-1: #ffd8b5;
  --color-auto-orange-2: #ffb77c;
  --color-auto-orange-3: #fb8f44;
  --color-auto-orange-4: #e16f24;
  --color-auto-orange-5: #bc4c00;
  --color-auto-orange-6: #953800;
  --color-auto-orange-7: #762c00;
  --color-auto-orange-8: #5c2200;
  --color-auto-orange-9: #471700;
  --color-auto-red-0: #FFEBE9;
  --color-auto-red-1: #ffcecb;
  --color-auto-red-2: #ffaba8;
  --color-auto-red-3: #ff8182;
  --color-auto-red-4: #fa4549;
  --color-auto-red-5: #cf222e;
  --color-auto-red-6: #a40e26;
  --color-auto-red-7: #82071e;
  --color-auto-red-8: #660018;
  --color-auto-red-9: #4c0014;
  --color-auto-purple-0: #fbefff;
  --color-auto-purple-1: #ecd8ff;
  --color-auto-purple-2: #d8b9ff;
  --color-auto-purple-3: #c297ff;
  --color-auto-purple-4: #a475f9;
  --color-auto-purple-5: #8250df;
  --color-auto-purple-6: #6639ba;
  --color-auto-purple-7: #512a97;
  --color-auto-purple-8: #3e1f79;
  --color-auto-purple-9: #2e1461;
  --color-auto-pink-0: #ffeff7;
  --color-auto-pink-1: #ffd3eb;
  --color-auto-pink-2: #ffadda;
  --color-auto-pink-3: #ff80c8;
  --color-auto-pink-4: #e85aad;
  --color-auto-pink-5: #bf3989;
  --color-auto-pink-6: #99286e;
  --color-auto-pink-7: #772057;
  --color-auto-pink-8: #611347;
  --color-auto-pink-9: #4d0336;
  --color-text-primary: #24292f;
  --color-text-secondary: #57606a;
  --color-text-tertiary: #57606a;
  --color-text-placeholder: #6e7781;
  --color-text-disabled: #57606a;
  --color-text-inverse: #ffffff;
  --color-text-link: #0969da;
  --color-text-danger: #cf222e;
  --color-text-success: #1a7f37;
  --color-text-warning: #9a6700;
  --color-text-white: #ffffff;
  --color-icon-primary: #24292f;
  --color-icon-secondary: #57606a;
  --color-icon-tertiary: #57606a;
  --color-icon-info: #0969da;
  --color-icon-danger: #cf222e;
  --color-icon-success: #1a7f37;
  --color-icon-warning: #9a6700;
  --color-border-primary: #d0d7de;
  --color-border-secondary: hsla(210,18%,87%,1);
  --color-border-tertiary: #d0d7de;
  --color-border-overlay: #d0d7de;
  --color-border-inverse: #ffffff;
  --color-border-info: #0969da;
  --color-border-danger: #cf222e;
  --color-border-success: #2da44e;
  --color-border-warning: #bf8700;
  --color-border-default: #d0d7de;
  --color-border-muted: hsla(210,18%,87%,1);
  --color-border-subtle: rgba(27,31,36,0.15);
  --color-bg-canvas: #ffffff;
  --color-bg-canvas-mobile: rgba(0,0,0,0);
  --color-bg-canvas-inverse: #6e7781;
  --color-bg-canvas-inset: #f6f8fa;
  --color-bg-primary: #ffffff;
  --color-bg-secondary: #f6f8fa;
  --color-bg-tertiary: #f6f8fa;
  --color-bg-overlay: #ffffff;
  --color-bg-backdrop: rgba(27,31,36,0.5);
  --color-bg-info: #ddf4ff;
  --color-bg-info-inverse: #0969da;
  --color-bg-danger: #FFEBE9;
  --color-bg-danger-inverse: #cf222e;
  --color-bg-success: #dafbe1;
  --color-bg-success-inverse: #2da44e;
  --color-bg-warning: #fff8c5;
  --color-bg-warning-inverse: #bf8700;
  --color-shadow-highlight: inset 0 1px 0 rgba(255,255,255,0.25);
  --color-shadow-inset: inset 0 1px 0 rgba(208,215,222,0.2);
  --color-shadow-small: 0 1px 0 rgba(27,31,36,0.04);
  --color-shadow-medium: 0 3px 6px rgba(140,149,159,0.15);
  --color-shadow-large: 0 8px 24px rgba(140,149,159,0.2);
  --color-shadow-extra-large: 0 12px 28px rgba(140,149,159,0.3);
  --color-state-hover-primary-bg: #0969da;
  --color-state-hover-primary-border: #0969da;
  --color-state-hover-primary-text: #ffffff;
  --color-state-hover-primary-icon: #ffffff;
  --color-state-hover-secondary-bg: rgba(234,238,242,0.5);
  --color-state-hover-secondary-border: rgba(234,238,242,0.5);
  --color-state-selected-primary-bg: #0969da;
  --color-state-selected-primary-border: #0969da;
  --color-state-selected-primary-text: #ffffff;
  --color-state-selected-primary-icon: #ffffff;
  --color-state-focus-border: #0969da;
  --color-state-focus-shadow: 0 0 0 3px rgba(9,105,218,0.3);
  --color-fade-fg-10: rgba(27,31,36,0.1);
  --color-fade-fg-15: rgba(27,31,36,0.15);
  --color-fade-fg-30: rgba(27,31,36,0.3);
  --color-fade-fg-50: rgba(27,31,36,0.5);
  --color-fade-fg-70: rgba(27,31,36,0.7);
  --color-fade-fg-85: rgba(27,31,36,0.85);
  --color-fade-black-10: rgba(27,31,36,0.1);
  --color-fade-black-15: rgba(27,31,36,0.15);
  --color-fade-black-30: rgba(27,31,36,0.3);
  --color-fade-black-50: rgba(27,31,36,0.5);
  --color-fade-black-70: rgba(27,31,36,0.7);
  --color-fade-black-85: rgba(27,31,36,0.85);
  --color-fade-white-10: rgba(255,255,255,0.1);
  --color-fade-white-15: rgba(255,255,255,0.15);
  --color-fade-white-30: rgba(255,255,255,0.3);
  --color-fade-white-50: rgba(255,255,255,0.5);
  --color-fade-white-70: rgba(255,255,255,0.7);
  --color-fade-white-85: rgba(255,255,255,0.85);
  --color-alert-info-text: #24292f;
  --color-alert-info-icon: #0969da;
  --color-alert-info-bg: #ddf4ff;
  --color-alert-info-border: rgba(84,174,255,0.4);
  --color-alert-warn-text: #24292f;
  --color-alert-warn-icon: #9a6700;
  --color-alert-warn-bg: #fff8c5;
  --color-alert-warn-border: rgba(212,167,44,0.4);
  --color-alert-error-text: #24292f;
  --color-alert-error-icon: #cf222e;
  --color-alert-error-bg: #FFEBE9;
  --color-alert-error-border: rgba(255,129,130,0.4);
  --color-alert-success-text: #24292f;
  --color-alert-success-icon: #1a7f37;
  --color-alert-success-bg: #dafbe1;
  --color-alert-success-border: rgba(74,194,107,0.4);
  --color-autocomplete-shadow: 0 3px 6px rgba(140,149,159,0.15);
  --color-autocomplete-row-border: hsla(210,18%,87%,1);
  --color-blankslate-icon: #57606a;
  --color-counter-text: #24292f;
  --color-counter-bg: rgba(175,184,193,0.2);
  --color-counter-primary-text: #ffffff;
  --color-counter-primary-bg: #6e7781;
  --color-counter-secondary-text: #57606a;
  --color-counter-secondary-bg: rgba(234,238,242,0.5);
  --color-box-blue-border: rgba(84,174,255,0.4);
  --color-box-row-yellow-bg: #fff8c5;
  --color-box-row-blue-bg: #ddf4ff;
  --color-box-header-blue-bg: #ddf4ff;
  --color-box-header-blue-border: rgba(84,174,255,0.4);
  --color-box-border-info: rgba(84,174,255,0.4);
  --color-box-bg-info: #ddf4ff;
  --color-box-border-warning: rgba(212,167,44,0.4);
  --color-box-bg-warning: #fff8c5;
  --color-branch-name-text: #57606a;
  --color-branch-name-icon: #57606a;
  --color-branch-name-bg: #ddf4ff;
  --color-branch-name-link-text: #0969da;
  --color-branch-name-link-icon: #0969da;
  --color-branch-name-link-bg: #ddf4ff;
  --color-markdown-code-bg: rgba(175,184,193,0.2);
  --color-markdown-frame-border: #d0d7de;
  --color-markdown-blockquote-border: #d0d7de;
  --color-markdown-table-border: #d0d7de;
  --color-markdown-table-tr-border: hsla(210,18%,87%,1);
  --color-filter-item-bar-bg: rgba(234,238,242,0.5);
  --color-hidden-text-expander-bg: rgba(175,184,193,0.2);
  --color-hidden-text-expander-bg-hover: rgba(84,174,255,0.4);
  --color-drag-and-drop-border: #d0d7de;
  --color-upload-enabled-border: #d0d7de;
  --color-upload-enabled-border-focused: #0969da;
  --color-previewable-comment-form-border: #d0d7de;
  --color-verified-badge-text: #1a7f37;
  --color-verified-badge-bg: #ffffff;
  --color-verified-badge-border: #d0d7de;
  --color-social-count-bg: #ffffff;
  --color-tooltip-text: #ffffff;
  --color-tooltip-bg: #24292f;
  --color-files-explorer-icon: #0969da;
  --color-hl-author-bg: #ddf4ff;
  --color-hl-author-border: rgba(84,174,255,0.4);
  --color-logo-subdued: rgba(175,184,193,0.2);
  --color-discussion-border: rgba(74,194,107,0.4);
  --color-discussion-bg-success: #2da44e;
  --color-actions-workflow-table-sticky-bg: rgba(255,255,255,0.95);
  --color-repo-language-color-border: rgba(27,31,36,0.1);
  --color-code-selection-bg: rgba(84,174,255,0.4);
  --color-highlight-text: #24292f;
  --color-highlight-bg: #fff8c5;
  --color-blob-line-highlight-bg: #fff8c5;
  --color-blob-line-highlight-border: rgba(212,167,44,0.4);
  --color-topic-tag-text: #0969da;
  --color-topic-tag-bg: #ddf4ff;
  --color-topic-tag-hover-bg: #0969da;
  --color-topic-tag-active-bg: #ddf4ff;
  --color-topic-tag-border: rgba(0,0,0,0);
  --color-footer-invertocat-octicon: #6e7781;
  --color-footer-invertocat-octicon-hover: #57606a;
  --color-dropdown-shadow: 0 8px 24px rgba(140,149,159,0.2);
  --color-label-border: #d0d7de;
  --color-label-primary-text: #24292f;
  --color-label-primary-border: #6e7781;
  --color-label-secondary-text: #57606a;
  --color-label-secondary-border: #d0d7de;
  --color-label-info-text: #0969da;
  --color-label-info-border: #0969da;
  --color-label-success-text: #1a7f37;
  --color-label-success-border: #2da44e;
  --color-label-warning-text: #9a6700;
  --color-label-warning-border: #bf8700;
  --color-label-danger-text: #cf222e;
  --color-label-danger-border: #cf222e;
  --color-label-orange-text: #bc4c00;
  --color-label-orange-border: #bc4c00;
  --color-input-bg: #ffffff;
  --color-input-contrast-bg: #f6f8fa;
  --color-input-border: #d0d7de;
  --color-input-shadow: inset 0 1px 0 rgba(208,215,222,0.2);
  --color-input-disabled-border: #d0d7de;
  --color-input-warning-border: #bf8700;
  --color-input-error-border: #cf222e;
  --color-input-tooltip-success-text: #24292f;
  --color-input-tooltip-success-bg: #dafbe1;
  --color-input-tooltip-success-border: rgba(74,194,107,0.4);
  --color-input-tooltip-warning-text: #24292f;
  --color-input-tooltip-warning-bg: #fff8c5;
  --color-input-tooltip-warning-border: rgba(212,167,44,0.4);
  --color-input-tooltip-error-text: #24292f;
  --color-input-tooltip-error-bg: #FFEBE9;
  --color-input-tooltip-error-border: rgba(255,129,130,0.4);
  --color-input-disabled-bg: rgba(175,184,193,0.2);
  --color-toast-text: #24292f;
  --color-toast-bg: #ffffff;
  --color-toast-border: #d0d7de;
  --color-toast-shadow: 0 8px 24px rgba(140,149,159,0.2);
  --color-toast-icon: #ffffff;
  --color-toast-icon-bg: #0969da;
  --color-toast-icon-border: rgba(0,0,0,0);
  --color-toast-success-text: #24292f;
  --color-toast-success-border: #d0d7de;
  --color-toast-success-icon: #ffffff;
  --color-toast-success-icon-bg: #2da44e;
  --color-toast-success-icon-border: rgba(0,0,0,0);
  --color-toast-warning-text: #24292f;
  --color-toast-warning-border: #d0d7de;
  --color-toast-warning-icon: #24292f;
  --color-toast-warning-icon-bg: #bf8700;
  --color-toast-warning-icon-border: rgba(0,0,0,0);
  --color-toast-danger-text: #24292f;
  --color-toast-danger-border: #d0d7de;
  --color-toast-danger-icon: #ffffff;
  --color-toast-danger-icon-bg: #cf222e;
  --color-toast-danger-icon-border: rgba(0,0,0,0);
  --color-toast-loading-text: #24292f;
  --color-toast-loading-border: #d0d7de;
  --color-toast-loading-icon: #ffffff;
  --color-toast-loading-icon-bg: #6e7781;
  --color-toast-loading-icon-border: rgba(0,0,0,0);
  --color-timeline-text: #57606a;
  --color-timeline-badge-success-border: rgba(0,0,0,0);
  --color-timeline-target-badge-border: #0969da;
  --color-timeline-target-badge-shadow: rgba(84,174,255,0.4);
  --color-timeline-badge-bg: #eaeef2;
  --color-diffstat-neutral-bg: rgba(175,184,193,0.2);
  --color-diffstat-neutral-border: rgba(27,31,36,0.15);
  --color-diffstat-deletion-border: rgba(27,31,36,0.15);
  --color-diffstat-addition-border: rgba(27,31,36,0.15);
  --color-diffstat-deletion-bg: #cf222e;
  --color-diffstat-addition-bg: #2da44e;
  --color-diff-addition-text: #24292f;
  --color-diff-addition-bg: #dafbe1;
  --color-diff-addition-border: rgba(74,194,107,0.4);
  --color-diff-deletion-text: #24292f;
  --color-diff-deletion-bg: #FFEBE9;
  --color-diff-deletion-border: rgba(255,129,130,0.4);
  --color-diff-change-text: #9a6700;
  --color-diff-change-bg: #fff8c5;
  --color-diff-change-border: rgba(212,167,44,0.4);
  --color-merge-box-success-icon-bg: #2da44e;
  --color-merge-box-success-icon-text: #ffffff;
  --color-merge-box-success-icon-border: rgba(0,0,0,0);
  --color-merge-box-success-indicator-bg: #2da44e;
  --color-merge-box-success-indicator-border: rgba(0,0,0,0);
  --color-merge-box-merged-icon-bg: #8250df;
  --color-merge-box-merged-icon-text: #ffffff;
  --color-merge-box-merged-icon-border: rgba(0,0,0,0);
  --color-merge-box-merged-box-border: #8250df;
  --color-merge-box-neutral-icon-bg: #6e7781;
  --color-merge-box-neutral-icon-text: #ffffff;
  --color-merge-box-neutral-icon-border: rgba(0,0,0,0);
  --color-merge-box-neutral-indicator-bg: #6e7781;
  --color-merge-box-neutral-indicator-border: rgba(0,0,0,0);
  --color-merge-box-warning-icon-bg: #bf8700;
  --color-merge-box-warning-icon-text: #ffffff;
  --color-merge-box-warning-icon-border: rgba(0,0,0,0);
  --color-merge-box-warning-box-border: #bf8700;
  --color-merge-box-warning-merge-highlight: rgba(0,0,0,0);
  --color-merge-box-error-icon-bg: #cf222e;
  --color-merge-box-error-icon-text: #ffffff;
  --color-merge-box-error-icon-border: rgba(0,0,0,0);
  --color-merge-box-error-indicator-bg: #cf222e;
  --color-merge-box-error-indicator-border: rgba(0,0,0,0);
  --color-underlinenav-border: rgba(0,0,0,0);
  --color-underlinenav-border-hover: rgba(175,184,193,0.2);
  --color-underlinenav-border-active: #FD8C73;
  --color-underlinenav-text: #24292f;
  --color-underlinenav-text-hover: #24292f;
  --color-underlinenav-text-active: #24292f;
  --color-underlinenav-icon: #6e7781;
  --color-underlinenav-icon-hover: #6e7781;
  --color-underlinenav-icon-active: #24292f;
  --color-underlinenav-counter-text: #24292f;
  --color-underlinenav-counter-bg: rgba(175,184,193,0.2);
  --color-select-menu-border-secondary: hsla(210,18%,87%,1);
  --color-select-menu-shadow: 0 8px 24px rgba(140,149,159,0.2);
  --color-select-menu-backdrop-bg: rgba(27,31,36,0.5);
  --color-select-menu-backdrop-border: rgba(0,0,0,0);
  --color-select-menu-tap-highlight: rgba(175,184,193,0.5);
  --color-select-menu-tap-focus-bg: #b6e3ff;
  --color-sidenav-border-active: #FD8C73;
  --color-sidenav-selected-bg: #ffffff;
  --color-menu-heading-text: #24292f;
  --color-menu-border-active: #FD8C73;
  --color-menu-bg-active: rgba(0,0,0,0);
  --color-project-card-bg: #ffffff;
  --color-project-header-bg: #24292f;
  --color-project-sidebar-bg: #ffffff;
  --color-project-gradient-in: #ffffff;
  --color-project-gradient-out: rgba(255,255,255,0);
  --color-pr-state-draft-text: #ffffff;
  --color-pr-state-draft-bg: #6e7781;
  --color-pr-state-draft-border: rgba(0,0,0,0);
  --color-pr-state-open-text: #ffffff;
  --color-pr-state-open-bg: #2da44e;
  --color-pr-state-open-border: rgba(0,0,0,0);
  --color-pr-state-merged-text: #ffffff;
  --color-pr-state-merged-bg: #8250df;
  --color-pr-state-merged-border: rgba(0,0,0,0);
  --color-pr-state-closed-text: #ffffff;
  --color-pr-state-closed-bg: #cf222e;
  --color-pr-state-closed-border: rgba(0,0,0,0);
  --color-diff-blob-num-text: #6e7781;
  --color-diff-blob-num-hover-text: #24292f;
  --color-diff-blob-addition-num-hover-text: #24292f;
  --color-diff-blob-addition-num-text: #24292f;
  --color-diff-blob-addition-fg: #24292f;
  --color-diff-blob-addition-num-bg: #CCFFD8;
  --color-diff-blob-addition-line-bg: #E6FFEC;
  --color-diff-blob-addition-word-bg: #ABF2BC;
  --color-diff-blob-deletion-num-hover-text: #24292f;
  --color-diff-blob-deletion-num-text: #24292f;
  --color-diff-blob-deletion-fg: #24292f;
  --color-diff-blob-deletion-num-bg: #FFD7D5;
  --color-diff-blob-deletion-line-bg: #FFEBE9;
  --color-diff-blob-deletion-word-bg: rgba(255,129,130,0.4);
  --color-diff-blob-hunk-text: #57606a;
  --color-diff-blob-hunk-num-bg: rgba(84,174,255,0.4);
  --color-diff-blob-hunk-line-bg: #ddf4ff;
  --color-diff-blob-empty-block-bg: rgba(234,238,242,0.5);
  --color-diff-blob-selected-line-highlight-bg: #fff8c5;
  --color-diff-blob-selected-line-highlight-border: rgba(212,167,44,0.4);
  --color-diff-blob-expander-hover-icon: #ffffff;
  --color-diff-blob-expander-hover-bg: #0969da;
  --color-diff-blob-expander-icon: #57606a;
  --color-diff-blob-comment-button-icon: #ffffff;
  --color-diff-blob-comment-button-bg: #0969da;
  --color-diff-blob-comment-button-gradient-bg: rgba(0,0,0,0);
  --color-diff-blob-selected-line-highlight-mix-blend-mode: multiply;
  --color-global-nav-logo: #ffffff;
  --color-global-nav-bg: #24292f;
  --color-global-nav-text: #ffffff;
  --color-global-nav-icon: #ffffff;
  --color-global-nav-input-bg: #f6f8fa;
  --color-global-nav-input-border: #f6f8fa;
  --color-global-nav-input-icon: #afb8c1;
  --color-global-nav-input-placeholder: #8c959f;
  --color-intro-shelf-gradient-left: #ddf4ff;
  --color-intro-shelf-gradient-right: #dafbe1;
  --color-intro-shelf-gradient-in: #ffffff;
  --color-intro-shelf-gradient-out: rgba(255,255,255,0);
  --color-canvas-default-transparent: rgba(255,255,255,0);
  --color-marketing-icon-primary: #218bff;
  --color-marketing-icon-secondary: #54aeff;
  --color-search-keyword-hl: #fff8c5;
  --color-prettylights-syntax-comment: #6e7781;
  --color-prettylights-syntax-constant: #0550ae;
  --color-prettylights-syntax-entity: #8250df;
  --color-prettylights-syntax-storage-modifier-import: #24292f;
  --color-prettylights-syntax-entity-tag: #116329;
  --color-prettylights-syntax-keyword: #cf222e;
  --color-prettylights-syntax-string: #0a3069;
  --color-prettylights-syntax-variable: #953800;
  --color-prettylights-syntax-brackethighlighter-unmatched: #82071e;
  --color-prettylights-syntax-invalid-illegal-text: #f6f8fa;
  --color-prettylights-syntax-invalid-illegal-bg: #82071e;
  --color-prettylights-syntax-carriage-return-text: #f6f8fa;
  --color-prettylights-syntax-carriage-return-bg: #cf222e;
  --color-prettylights-syntax-string-regexp: #116329;
  --color-prettylights-syntax-markup-list: #3b2300;
  --color-prettylights-syntax-markup-heading: #0550ae;
  --color-prettylights-syntax-markup-italic: #24292f;
  --color-prettylights-syntax-markup-bold: #24292f;
  --color-prettylights-syntax-markup-deleted-text: #82071e;
  --color-prettylights-syntax-markup-deleted-bg: #FFEBE9;
  --color-prettylights-syntax-markup-inserted-text: #116329;
  --color-prettylights-syntax-markup-inserted-bg: #dafbe1;
  --color-prettylights-syntax-markup-changed-text: #953800;
  --color-prettylights-syntax-markup-changed-bg: #ffd8b5;
  --color-prettylights-syntax-markup-ignored-text: #eaeef2;
  --color-prettylights-syntax-markup-ignored-bg: #0550ae;
  --color-prettylights-syntax-meta-diff-range: #8250df;
  --color-prettylights-syntax-brackethighlighter-angle: #57606a;
  --color-prettylights-syntax-sublimelinter-gutter-mark: #8c959f;
  --color-prettylights-syntax-constant-other-reference-link: #0a3069;
  --color-codemirror-text: #24292f;
  --color-codemirror-bg: #ffffff;
  --color-codemirror-gutters-bg: #ffffff;
  --color-codemirror-guttermarker-text: #ffffff;
  --color-codemirror-guttermarker-subtle-text: #6e7781;
  --color-codemirror-linenumber-text: #57606a;
  --color-codemirror-cursor: #24292f;
  --color-codemirror-selection-bg: rgba(84,174,255,0.4);
  --color-codemirror-activeline-bg: rgba(234,238,242,0.5);
  --color-codemirror-matchingbracket-text: #24292f;
  --color-codemirror-lines-bg: #ffffff;
  --color-codemirror-syntax-comment: #24292f;
  --color-codemirror-syntax-constant: #0550ae;
  --color-codemirror-syntax-entity: #8250df;
  --color-codemirror-syntax-keyword: #cf222e;
  --color-codemirror-syntax-storage: #cf222e;
  --color-codemirror-syntax-string: #0a3069;
  --color-codemirror-syntax-support: #0550ae;
  --color-codemirror-syntax-variable: #953800;
  --color-checks-bg: #24292f;
  --color-checks-run-border-width: 0px;
  --color-checks-container-border-width: 0px;
  --color-checks-text-primary: #f6f8fa;
  --color-checks-text-secondary: #8c959f;
  --color-checks-text-link: #54aeff;
  --color-checks-btn-icon: #afb8c1;
  --color-checks-btn-hover-icon: #f6f8fa;
  --color-checks-btn-hover-bg: rgba(255,255,255,0.125);
  --color-checks-input-text: #eaeef2;
  --color-checks-input-placeholder-text: #8c959f;
  --color-checks-input-focus-text: #8c959f;
  --color-checks-input-bg: #32383f;
  --color-checks-input-shadow: none;
  --color-checks-donut-error: #fa4549;
  --color-checks-donut-pending: #bf8700;
  --color-checks-donut-success: #2da44e;
  --color-checks-donut-neutral: #afb8c1;
  --color-checks-dropdown-text: #afb8c1;
  --color-checks-dropdown-bg: #32383f;
  --color-checks-dropdown-border: #424a53;
  --color-checks-dropdown-shadow: rgba(27,31,36,0.3);
  --color-checks-dropdown-hover-text: #f6f8fa;
  --color-checks-dropdown-hover-bg: #424a53;
  --color-checks-dropdown-btn-hover-text: #f6f8fa;
  --color-checks-dropdown-btn-hover-bg: #32383f;
  --color-checks-scrollbar-thumb-bg: #57606a;
  --color-checks-header-label-text: #d0d7de;
  --color-checks-header-label-open-text: #f6f8fa;
  --color-checks-header-border: #32383f;
  --color-checks-header-icon: #8c959f;
  --color-checks-line-text: #d0d7de;
  --color-checks-line-num-text: rgba(140,149,159,0.75);
  --color-checks-line-timestamp-text: #8c959f;
  --color-checks-line-hover-bg: #32383f;
  --color-checks-line-selected-bg: rgba(33,139,255,0.15);
  --color-checks-line-selected-num-text: #54aeff;
  --color-checks-line-dt-fm-text: #24292f;
  --color-checks-line-dt-fm-bg: #9a6700;
  --color-checks-gate-bg: rgba(125,78,0,0.15);
  --color-checks-gate-text: #d0d7de;
  --color-checks-gate-waiting-text: #afb8c1;
  --color-checks-step-header-open-bg: #32383f;
  --color-checks-step-error-text: #ff8182;
  --color-checks-step-warning-text: #d4a72c;
  --color-checks-logline-text: #8c959f;
  --color-checks-logline-num-text: rgba(140,149,159,0.75);
  --color-checks-logline-debug-text: #c297ff;
  --color-checks-logline-error-text: #d0d7de;
  --color-checks-logline-error-num-text: #ff8182;
  --color-checks-logline-error-bg: rgba(164,14,38,0.15);
  --color-checks-logline-warning-text: #d0d7de;
  --color-checks-logline-warning-num-text: #d4a72c;
  --color-checks-logline-warning-bg: rgba(125,78,0,0.15);
  --color-checks-logline-command-text: #54aeff;
  --color-checks-logline-section-text: #4ac26b;
  --color-checks-ansi-black: #24292f;
  --color-checks-ansi-black-bright: #32383f;
  --color-checks-ansi-white: #d0d7de;
  --color-checks-ansi-white-bright: #d0d7de;
  --color-checks-ansi-gray: #8c959f;
  --color-checks-ansi-red: #ff8182;
  --color-checks-ansi-red-bright: #ffaba8;
  --color-checks-ansi-green: #4ac26b;
  --color-checks-ansi-green-bright: #6fdd8b;
  --color-checks-ansi-yellow: #d4a72c;
  --color-checks-ansi-yellow-bright: #eac54f;
  --color-checks-ansi-blue: #54aeff;
  --color-checks-ansi-blue-bright: #80ccff;
  --color-checks-ansi-magenta: #c297ff;
  --color-checks-ansi-magenta-bright: #d8b9ff;
  --color-checks-ansi-cyan: #76e3ea;
  --color-checks-ansi-cyan-bright: #b3f0ff;
  --color-mktg-success: rgba(36,146,67,1);
  --color-mktg-info: rgba(19,119,234,1);
  --color-mktg-bg-shade-gradient-top: rgba(27,31,36,0.065);
  --color-mktg-bg-shade-gradient-bottom: rgba(27,31,36,0);
  --color-mktg-btn-bg-top: hsla(228,82%,66%,1);
  --color-mktg-btn-bg-bottom: #4969ed;
  --color-mktg-btn-bg-overlay-top: hsla(228,74%,59%,1);
  --color-mktg-btn-bg-overlay-bottom: #3355e0;
  --color-mktg-btn-text: #ffffff;
  --color-mktg-btn-primary-bg-top: hsla(137,56%,46%,1);
  --color-mktg-btn-primary-bg-bottom: #2ea44f;
  --color-mktg-btn-primary-bg-overlay-top: hsla(134,60%,38%,1);
  --color-mktg-btn-primary-bg-overlay-bottom: #22863a;
  --color-mktg-btn-primary-text: #ffffff;
  --color-mktg-btn-enterprise-bg-top: hsla(249,100%,72%,1);
  --color-mktg-btn-enterprise-bg-bottom: #6f57ff;
  --color-mktg-btn-enterprise-bg-overlay-top: hsla(248,65%,63%,1);
  --color-mktg-btn-enterprise-bg-overlay-bottom: #614eda;
  --color-mktg-btn-enterprise-text: #ffffff;
  --color-mktg-btn-outline-text: #4969ed;
  --color-mktg-btn-outline-border: rgba(73,105,237,0.3);
  --color-mktg-btn-outline-hover-text: #3355e0;
  --color-mktg-btn-outline-hover-border: rgba(51,85,224,0.5);
  --color-mktg-btn-outline-focus-border: #4969ed;
  --color-mktg-btn-outline-focus-border-inset: rgba(73,105,237,0.5);
  --color-mktg-btn-dark-text: #ffffff;
  --color-mktg-btn-dark-border: rgba(255,255,255,0.3);
  --color-mktg-btn-dark-hover-text: #ffffff;
  --color-mktg-btn-dark-hover-border: rgba(255,255,255,0.5);
  --color-mktg-btn-dark-focus-border: #ffffff;
  --color-mktg-btn-dark-focus-border-inset: rgba(255,255,255,0.5);
  --color-avatar-bg: #ffffff;
  --color-avatar-border: rgba(27,31,36,0.15);
  --color-avatar-stack-fade: #afb8c1;
  --color-avatar-stack-fade-more: #d0d7de;
  --color-avatar-child-shadow: -2px -2px 0 rgba(255,255,255,0.8);
  --color-overlay-shadow: 0 1px 3px rgba(27,31,36,0.12), 0 8px 24px rgba(66,74,83,0.12);
  --color-header-text: rgba(255,255,255,0.7);
  --color-header-bg: #24292f;
  --color-header-logo: #ffffff;
  --color-header-search-bg: #24292f;
  --color-header-search-border: #57606a;
  --color-ansi-black: #24292f;
  --color-ansi-black-bright: #57606a;
  --color-ansi-white: #6e7781;
  --color-ansi-white-bright: #8c959f;
  --color-ansi-gray: #6e7781;
  --color-ansi-red: #cf222e;
  --color-ansi-red-bright: #a40e26;
  --color-ansi-green: #116329;
  --color-ansi-green-bright: #1a7f37;
  --color-ansi-yellow: #4d2d00;
  --color-ansi-yellow-bright: #633c01;
  --color-ansi-blue: #0969da;
  --color-ansi-blue-bright: #218bff;
  --color-ansi-magenta: #8250df;
  --color-ansi-magenta-bright: #a475f9;
  --color-ansi-cyan: #1b7c83;
  --color-ansi-cyan-bright: #3192aa;
  --color-btn-text: #24292f;
  --color-btn-bg: #f6f8fa;
  --color-btn-border: rgba(27,31,36,0.15);
  --color-btn-shadow: 0 1px 0 rgba(27,31,36,0.04);
  --color-btn-inset-shadow: inset 0 1px 0 rgba(255,255,255,0.25);
  --color-btn-hover-bg: #f3f4f6;
  --color-btn-hover-border: rgba(27,31,36,0.15);
  --color-btn-active-bg: hsla(220,14%,93%,1);
  --color-btn-active-border: rgba(27,31,36,0.15);
  --color-btn-selected-bg: hsla(220,14%,94%,1);
  --color-btn-focus-bg: #f6f8fa;
  --color-btn-focus-border: rgba(27,31,36,0.15);
  --color-btn-focus-shadow: 0 0 0 3px rgba(9,105,218,0.3);
  --color-btn-shadow-active: inset 0 0.15em 0.3em rgba(27,31,36,0.15);
  --color-btn-shadow-input-focus: 0 0 0 0.2em rgba(9,105,218,0.3);
  --color-btn-counter-bg: rgba(27,31,36,0.08);
  --color-btn-primary-text: #ffffff;
  --color-btn-primary-bg: #2da44e;
  --color-btn-primary-border: rgba(27,31,36,0.15);
  --color-btn-primary-shadow: 0 1px 0 rgba(27,31,36,0.1);
  --color-btn-primary-inset-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
  --color-btn-primary-hover-bg: #2c974b;
  --color-btn-primary-hover-border: rgba(27,31,36,0.15);
  --color-btn-primary-selected-bg: hsla(137,55%,36%,1);
  --color-btn-primary-selected-shadow: inset 0 1px 0 rgba(0,45,17,0.2);
  --color-btn-primary-disabled-text: rgba(255,255,255,0.8);
  --color-btn-primary-disabled-bg: #94d3a2;
  --color-btn-primary-disabled-border: rgba(27,31,36,0.15);
  --color-btn-primary-focus-bg: #2da44e;
  --color-btn-primary-focus-border: rgba(27,31,36,0.15);
  --color-btn-primary-focus-shadow: 0 0 0 3px rgba(45,164,78,0.4);
  --color-btn-primary-icon: rgba(255,255,255,0.8);
  --color-btn-primary-counter-bg: rgba(255,255,255,0.2);
  --color-btn-outline-text: #0969da;
  --color-btn-outline-hover-text: #ffffff;
  --color-btn-outline-hover-bg: #0969da;
  --color-btn-outline-hover-border: rgba(27,31,36,0.15);
  --color-btn-outline-hover-shadow: 0 1px 0 rgba(27,31,36,0.1);
  --color-btn-outline-hover-inset-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
  --color-btn-outline-hover-counter-bg: rgba(255,255,255,0.2);
  --color-btn-outline-selected-text: #ffffff;
  --color-btn-outline-selected-bg: hsla(212,92%,42%,1);
  --color-btn-outline-selected-border: rgba(27,31,36,0.15);
  --color-btn-outline-selected-shadow: inset 0 1px 0 rgba(0,33,85,0.2);
  --color-btn-outline-disabled-text: rgba(9,105,218,0.5);
  --color-btn-outline-disabled-bg: #f6f8fa;
  --color-btn-outline-disabled-counter-bg: rgba(9,105,218,0.05);
  --color-btn-outline-focus-border: rgba(27,31,36,0.15);
  --color-btn-outline-focus-shadow: 0 0 0 3px rgba(5,80,174,0.4);
  --color-btn-outline-counter-bg: rgba(9,105,218,0.1);
  --color-btn-danger-text: #cf222e;
  --color-btn-danger-hover-text: #ffffff;
  --color-btn-danger-hover-bg: #a40e26;
  --color-btn-danger-hover-border: rgba(27,31,36,0.15);
  --color-btn-danger-hover-shadow: 0 1px 0 rgba(27,31,36,0.1);
  --color-btn-danger-hover-inset-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
  --color-btn-danger-hover-counter-bg: rgba(255,255,255,0.2);
  --color-btn-danger-selected-text: #ffffff;
  --color-btn-danger-selected-bg: hsla(356,72%,44%,1);
  --color-btn-danger-selected-border: rgba(27,31,36,0.15);
  --color-btn-danger-selected-shadow: inset 0 1px 0 rgba(76,0,20,0.2);
  --color-btn-danger-disabled-text: rgba(207,34,46,0.5);
  --color-btn-danger-disabled-bg: #f6f8fa;
  --color-btn-danger-disabled-counter-bg: rgba(207,34,46,0.05);
  --color-btn-danger-focus-border: rgba(27,31,36,0.15);
  --color-btn-danger-focus-shadow: 0 0 0 3px rgba(164,14,38,0.4);
  --color-btn-danger-counter-bg: rgba(207,34,46,0.1);
  --color-btn-danger-icon: #cf222e;
  --color-btn-danger-hover-icon: #ffffff;
  --color-fg-default: #24292f;
  --color-fg-muted: #57606a;
  --color-fg-subtle: #6e7781;
  --color-fg-on-emphasis: #ffffff;
  --color-canvas-default: #ffffff;
  --color-canvas-overlay: #ffffff;
  --color-canvas-inset: #f6f8fa;
  --color-canvas-subtle: #f6f8fa;
  --color-neutral-emphasis-plus: #24292f;
  --color-neutral-emphasis: #6e7781;
  --color-neutral-muted: rgba(175,184,193,0.2);
  --color-neutral-subtle: rgba(234,238,242,0.5);
  --color-accent-fg: #0969da;
  --color-accent-emphasis: #0969da;
  --color-accent-muted: rgba(84,174,255,0.4);
  --color-accent-subtle: #ddf4ff;
  --color-success-fg: #1a7f37;
  --color-success-emphasis: #2da44e;
  --color-success-muted: rgba(74,194,107,0.4);
  --color-success-subtle: #dafbe1;
  --color-attention-fg: #9a6700;
  --color-attention-emphasis: #bf8700;
  --color-attention-muted: rgba(212,167,44,0.4);
  --color-attention-subtle: #fff8c5;
  --color-severe-fg: #bc4c00;
  --color-severe-emphasis: #bc4c00;
  --color-severe-muted: rgba(251,143,68,0.4);
  --color-severe-subtle: #fff1e5;
  --color-danger-fg: #cf222e;
  --color-danger-emphasis: #cf222e;
  --color-danger-muted: rgba(255,129,130,0.4);
  --color-danger-subtle: #FFEBE9;
  --color-done-fg: #8250df;
  --color-done-emphasis: #8250df;
  --color-done-muted: rgba(194,151,255,0.4);
  --color-done-subtle: #fbefff;
  --color-sponsors-fg: #bf3989;
  --color-sponsors-emphasis: #bf3989;
  --color-sponsors-muted: rgba(255,128,200,0.4);
  --color-sponsors-subtle: #ffeff7;
  --color-primer-canvas-backdrop: rgba(27,31,36,0.5);
  --color-primer-canvas-sticky: rgba(255,255,255,0.95);
  --color-primer-border-active: #FD8C73;
  --color-primer-border-contrast: rgba(27,31,36,0.1);
  --color-primer-shadow-highlight: inset 0 1px 0 rgba(255,255,255,0.25);
  --color-primer-shadow-inset: inset 0 1px 0 rgba(208,215,222,0.2);
  --color-primer-shadow-focus: 0 0 0 3px rgba(9,105,218,0.3);
  --color-scale-black: #1b1f24;
  --color-scale-white: #ffffff;
  --color-scale-gray-0: #f6f8fa;
  --color-scale-gray-1: #eaeef2;
  --color-scale-gray-2: #d0d7de;
  --color-scale-gray-3: #afb8c1;
  --color-scale-gray-4: #8c959f;
  --color-scale-gray-5: #6e7781;
  --color-scale-gray-6: #57606a;
  --color-scale-gray-7: #424a53;
  --color-scale-gray-8: #32383f;
  --color-scale-gray-9: #24292f;
  --color-scale-blue-0: #ddf4ff;
  --color-scale-blue-1: #b6e3ff;
  --color-scale-blue-2: #80ccff;
  --color-scale-blue-3: #54aeff;
  --color-scale-blue-4: #218bff;
  --color-scale-blue-5: #0969da;
  --color-scale-blue-6: #0550ae;
  --color-scale-blue-7: #033d8b;
  --color-scale-blue-8: #0a3069;
  --color-scale-blue-9: #002155;
  --color-scale-green-0: #dafbe1;
  --color-scale-green-1: #aceebb;
  --color-scale-green-2: #6fdd8b;
  --color-scale-green-3: #4ac26b;
  --color-scale-green-4: #2da44e;
  --color-scale-green-5: #1a7f37;
  --color-scale-green-6: #116329;
  --color-scale-green-7: #044f1e;
  --color-scale-green-8: #003d16;
  --color-scale-green-9: #002d11;
  --color-scale-yellow-0: #fff8c5;
  --color-scale-yellow-1: #fae17d;
  --color-scale-yellow-2: #eac54f;
  --color-scale-yellow-3: #d4a72c;
  --color-scale-yellow-4: #bf8700;
  --color-scale-yellow-5: #9a6700;
  --color-scale-yellow-6: #7d4e00;
  --color-scale-yellow-7: #633c01;
  --color-scale-yellow-8: #4d2d00;
  --color-scale-yellow-9: #3b2300;
  --color-scale-orange-0: #fff1e5;
  --color-scale-orange-1: #ffd8b5;
  --color-scale-orange-2: #ffb77c;
  --color-scale-orange-3: #fb8f44;
  --color-scale-orange-4: #e16f24;
  --color-scale-orange-5: #bc4c00;
  --color-scale-orange-6: #953800;
  --color-scale-orange-7: #762c00;
  --color-scale-orange-8: #5c2200;
  --color-scale-orange-9: #471700;
  --color-scale-red-0: #FFEBE9;
  --color-scale-red-1: #ffcecb;
  --color-scale-red-2: #ffaba8;
  --color-scale-red-3: #ff8182;
  --color-scale-red-4: #fa4549;
  --color-scale-red-5: #cf222e;
  --color-scale-red-6: #a40e26;
  --color-scale-red-7: #82071e;
  --color-scale-red-8: #660018;
  --color-scale-red-9: #4c0014;
  --color-scale-purple-0: #fbefff;
  --color-scale-purple-1: #ecd8ff;
  --color-scale-purple-2: #d8b9ff;
  --color-scale-purple-3: #c297ff;
  --color-scale-purple-4: #a475f9;
  --color-scale-purple-5: #8250df;
  --color-scale-purple-6: #6639ba;
  --color-scale-purple-7: #512a97;
  --color-scale-purple-8: #3e1f79;
  --color-scale-purple-9: #2e1461;
  --color-scale-pink-0: #ffeff7;
  --color-scale-pink-1: #ffd3eb;
  --color-scale-pink-2: #ffadda;
  --color-scale-pink-3: #ff80c8;
  --color-scale-pink-4: #e85aad;
  --color-scale-pink-5: #bf3989;
  --color-scale-pink-6: #99286e;
  --color-scale-pink-7: #772057;
  --color-scale-pink-8: #611347;
  --color-scale-pink-9: #4d0336;
  --color-scale-coral-0: #FFF0EB;
  --color-scale-coral-1: #FFD6CC;
  --color-scale-coral-2: #FFB4A1;
  --color-scale-coral-3: #FD8C73;
  --color-scale-coral-4: #EC6547;
  --color-scale-coral-5: #C4432B;
  --color-scale-coral-6: #9E2F1C;
  --color-scale-coral-7: #801F0F;
  --color-scale-coral-8: #691105;
  --color-scale-coral-9: #510901;
}

@media (prefers-color-scheme: light) {
  [data-color-mode=auto][data-light-theme=light] {
    --color-auto-black: #1b1f24;
    --color-auto-white: #ffffff;
    --color-auto-gray-0: #f6f8fa;
    --color-auto-gray-1: #eaeef2;
    --color-auto-gray-2: #d0d7de;
    --color-auto-gray-3: #afb8c1;
    --color-auto-gray-4: #8c959f;
    --color-auto-gray-5: #6e7781;
    --color-auto-gray-6: #57606a;
    --color-auto-gray-7: #424a53;
    --color-auto-gray-8: #32383f;
    --color-auto-gray-9: #24292f;
    --color-auto-blue-0: #ddf4ff;
    --color-auto-blue-1: #b6e3ff;
    --color-auto-blue-2: #80ccff;
    --color-auto-blue-3: #54aeff;
    --color-auto-blue-4: #218bff;
    --color-auto-blue-5: #0969da;
    --color-auto-blue-6: #0550ae;
    --color-auto-blue-7: #033d8b;
    --color-auto-blue-8: #0a3069;
    --color-auto-blue-9: #002155;
    --color-auto-green-0: #dafbe1;
    --color-auto-green-1: #aceebb;
    --color-auto-green-2: #6fdd8b;
    --color-auto-green-3: #4ac26b;
    --color-auto-green-4: #2da44e;
    --color-auto-green-5: #1a7f37;
    --color-auto-green-6: #116329;
    --color-auto-green-7: #044f1e;
    --color-auto-green-8: #003d16;
    --color-auto-green-9: #002d11;
    --color-auto-yellow-0: #fff8c5;
    --color-auto-yellow-1: #fae17d;
    --color-auto-yellow-2: #eac54f;
    --color-auto-yellow-3: #d4a72c;
    --color-auto-yellow-4: #bf8700;
    --color-auto-yellow-5: #9a6700;
    --color-auto-yellow-6: #7d4e00;
    --color-auto-yellow-7: #633c01;
    --color-auto-yellow-8: #4d2d00;
    --color-auto-yellow-9: #3b2300;
    --color-auto-orange-0: #fff1e5;
    --color-auto-orange-1: #ffd8b5;
    --color-auto-orange-2: #ffb77c;
    --color-auto-orange-3: #fb8f44;
    --color-auto-orange-4: #e16f24;
    --color-auto-orange-5: #bc4c00;
    --color-auto-orange-6: #953800;
    --color-auto-orange-7: #762c00;
    --color-auto-orange-8: #5c2200;
    --color-auto-orange-9: #471700;
    --color-auto-red-0: #FFEBE9;
    --color-auto-red-1: #ffcecb;
    --color-auto-red-2: #ffaba8;
    --color-auto-red-3: #ff8182;
    --color-auto-red-4: #fa4549;
    --color-auto-red-5: #cf222e;
    --color-auto-red-6: #a40e26;
    --color-auto-red-7: #82071e;
    --color-auto-red-8: #660018;
    --color-auto-red-9: #4c0014;
    --color-auto-purple-0: #fbefff;
    --color-auto-purple-1: #ecd8ff;
    --color-auto-purple-2: #d8b9ff;
    --color-auto-purple-3: #c297ff;
    --color-auto-purple-4: #a475f9;
    --color-auto-purple-5: #8250df;
    --color-auto-purple-6: #6639ba;
    --color-auto-purple-7: #512a97;
    --color-auto-purple-8: #3e1f79;
    --color-auto-purple-9: #2e1461;
    --color-auto-pink-0: #ffeff7;
    --color-auto-pink-1: #ffd3eb;
    --color-auto-pink-2: #ffadda;
    --color-auto-pink-3: #ff80c8;
    --color-auto-pink-4: #e85aad;
    --color-auto-pink-5: #bf3989;
    --color-auto-pink-6: #99286e;
    --color-auto-pink-7: #772057;
    --color-auto-pink-8: #611347;
    --color-auto-pink-9: #4d0336;
    --color-text-primary: #24292f;
    --color-text-secondary: #57606a;
    --color-text-tertiary: #57606a;
    --color-text-placeholder: #6e7781;
    --color-text-disabled: #57606a;
    --color-text-inverse: #ffffff;
    --color-text-link: #0969da;
    --color-text-danger: #cf222e;
    --color-text-success: #1a7f37;
    --color-text-warning: #9a6700;
    --color-text-white: #ffffff;
    --color-icon-primary: #24292f;
    --color-icon-secondary: #57606a;
    --color-icon-tertiary: #57606a;
    --color-icon-info: #0969da;
    --color-icon-danger: #cf222e;
    --color-icon-success: #1a7f37;
    --color-icon-warning: #9a6700;
    --color-border-primary: #d0d7de;
    --color-border-secondary: hsla(210,18%,87%,1);
    --color-border-tertiary: #d0d7de;
    --color-border-overlay: #d0d7de;
    --color-border-inverse: #ffffff;
    --color-border-info: #0969da;
    --color-border-danger: #cf222e;
    --color-border-success: #2da44e;
    --color-border-warning: #bf8700;
    --color-border-default: #d0d7de;
    --color-border-muted: hsla(210,18%,87%,1);
    --color-border-subtle: rgba(27,31,36,0.15);
    --color-bg-canvas: #ffffff;
    --color-bg-canvas-mobile: rgba(0,0,0,0);
    --color-bg-canvas-inverse: #6e7781;
    --color-bg-canvas-inset: #f6f8fa;
    --color-bg-primary: #ffffff;
    --color-bg-secondary: #f6f8fa;
    --color-bg-tertiary: #f6f8fa;
    --color-bg-overlay: #ffffff;
    --color-bg-backdrop: rgba(27,31,36,0.5);
    --color-bg-info: #ddf4ff;
    --color-bg-info-inverse: #0969da;
    --color-bg-danger: #FFEBE9;
    --color-bg-danger-inverse: #cf222e;
    --color-bg-success: #dafbe1;
    --color-bg-success-inverse: #2da44e;
    --color-bg-warning: #fff8c5;
    --color-bg-warning-inverse: #bf8700;
    --color-shadow-highlight: inset 0 1px 0 rgba(255,255,255,0.25);
    --color-shadow-inset: inset 0 1px 0 rgba(208,215,222,0.2);
    --color-shadow-small: 0 1px 0 rgba(27,31,36,0.04);
    --color-shadow-medium: 0 3px 6px rgba(140,149,159,0.15);
    --color-shadow-large: 0 8px 24px rgba(140,149,159,0.2);
    --color-shadow-extra-large: 0 12px 28px rgba(140,149,159,0.3);
    --color-state-hover-primary-bg: #0969da;
    --color-state-hover-primary-border: #0969da;
    --color-state-hover-primary-text: #ffffff;
    --color-state-hover-primary-icon: #ffffff;
    --color-state-hover-secondary-bg: rgba(234,238,242,0.5);
    --color-state-hover-secondary-border: rgba(234,238,242,0.5);
    --color-state-selected-primary-bg: #0969da;
    --color-state-selected-primary-border: #0969da;
    --color-state-selected-primary-text: #ffffff;
    --color-state-selected-primary-icon: #ffffff;
    --color-state-focus-border: #0969da;
    --color-state-focus-shadow: 0 0 0 3px rgba(9,105,218,0.3);
    --color-fade-fg-10: rgba(27,31,36,0.1);
    --color-fade-fg-15: rgba(27,31,36,0.15);
    --color-fade-fg-30: rgba(27,31,36,0.3);
    --color-fade-fg-50: rgba(27,31,36,0.5);
    --color-fade-fg-70: rgba(27,31,36,0.7);
    --color-fade-fg-85: rgba(27,31,36,0.85);
    --color-fade-black-10: rgba(27,31,36,0.1);
    --color-fade-black-15: rgba(27,31,36,0.15);
    --color-fade-black-30: rgba(27,31,36,0.3);
    --color-fade-black-50: rgba(27,31,36,0.5);
    --color-fade-black-70: rgba(27,31,36,0.7);
    --color-fade-black-85: rgba(27,31,36,0.85);
    --color-fade-white-10: rgba(255,255,255,0.1);
    --color-fade-white-15: rgba(255,255,255,0.15);
    --color-fade-white-30: rgba(255,255,255,0.3);
    --color-fade-white-50: rgba(255,255,255,0.5);
    --color-fade-white-70: rgba(255,255,255,0.7);
    --color-fade-white-85: rgba(255,255,255,0.85);
    --color-alert-info-text: #24292f;
    --color-alert-info-icon: #0969da;
    --color-alert-info-bg: #ddf4ff;
    --color-alert-info-border: rgba(84,174,255,0.4);
    --color-alert-warn-text: #24292f;
    --color-alert-warn-icon: #9a6700;
    --color-alert-warn-bg: #fff8c5;
    --color-alert-warn-border: rgba(212,167,44,0.4);
    --color-alert-error-text: #24292f;
    --color-alert-error-icon: #cf222e;
    --color-alert-error-bg: #FFEBE9;
    --color-alert-error-border: rgba(255,129,130,0.4);
    --color-alert-success-text: #24292f;
    --color-alert-success-icon: #1a7f37;
    --color-alert-success-bg: #dafbe1;
    --color-alert-success-border: rgba(74,194,107,0.4);
    --color-autocomplete-shadow: 0 3px 6px rgba(140,149,159,0.15);
    --color-autocomplete-row-border: hsla(210,18%,87%,1);
    --color-blankslate-icon: #57606a;
    --color-counter-text: #24292f;
    --color-counter-bg: rgba(175,184,193,0.2);
    --color-counter-primary-text: #ffffff;
    --color-counter-primary-bg: #6e7781;
    --color-counter-secondary-text: #57606a;
    --color-counter-secondary-bg: rgba(234,238,242,0.5);
    --color-box-blue-border: rgba(84,174,255,0.4);
    --color-box-row-yellow-bg: #fff8c5;
    --color-box-row-blue-bg: #ddf4ff;
    --color-box-header-blue-bg: #ddf4ff;
    --color-box-header-blue-border: rgba(84,174,255,0.4);
    --color-box-border-info: rgba(84,174,255,0.4);
    --color-box-bg-info: #ddf4ff;
    --color-box-border-warning: rgba(212,167,44,0.4);
    --color-box-bg-warning: #fff8c5;
    --color-branch-name-text: #57606a;
    --color-branch-name-icon: #57606a;
    --color-branch-name-bg: #ddf4ff;
    --color-branch-name-link-text: #0969da;
    --color-branch-name-link-icon: #0969da;
    --color-branch-name-link-bg: #ddf4ff;
    --color-markdown-code-bg: rgba(175,184,193,0.2);
    --color-markdown-frame-border: #d0d7de;
    --color-markdown-blockquote-border: #d0d7de;
    --color-markdown-table-border: #d0d7de;
    --color-markdown-table-tr-border: hsla(210,18%,87%,1);
    --color-filter-item-bar-bg: rgba(234,238,242,0.5);
    --color-hidden-text-expander-bg: rgba(175,184,193,0.2);
    --color-hidden-text-expander-bg-hover: rgba(84,174,255,0.4);
    --color-drag-and-drop-border: #d0d7de;
    --color-upload-enabled-border: #d0d7de;
    --color-upload-enabled-border-focused: #0969da;
    --color-previewable-comment-form-border: #d0d7de;
    --color-verified-badge-text: #1a7f37;
    --color-verified-badge-bg: #ffffff;
    --color-verified-badge-border: #d0d7de;
    --color-social-count-bg: #ffffff;
    --color-tooltip-text: #ffffff;
    --color-tooltip-bg: #24292f;
    --color-files-explorer-icon: #0969da;
    --color-hl-author-bg: #ddf4ff;
    --color-hl-author-border: rgba(84,174,255,0.4);
    --color-logo-subdued: rgba(175,184,193,0.2);
    --color-discussion-border: rgba(74,194,107,0.4);
    --color-discussion-bg-success: #2da44e;
    --color-actions-workflow-table-sticky-bg: rgba(255,255,255,0.95);
    --color-repo-language-color-border: rgba(27,31,36,0.1);
    --color-code-selection-bg: rgba(84,174,255,0.4);
    --color-highlight-text: #24292f;
    --color-highlight-bg: #fff8c5;
    --color-blob-line-highlight-bg: #fff8c5;
    --color-blob-line-highlight-border: rgba(212,167,44,0.4);
    --color-topic-tag-text: #0969da;
    --color-topic-tag-bg: #ddf4ff;
    --color-topic-tag-hover-bg: #0969da;
    --color-topic-tag-active-bg: #ddf4ff;
    --color-topic-tag-border: rgba(0,0,0,0);
    --color-footer-invertocat-octicon: #6e7781;
    --color-footer-invertocat-octicon-hover: #57606a;
    --color-dropdown-shadow: 0 8px 24px rgba(140,149,159,0.2);
    --color-label-border: #d0d7de;
    --color-label-primary-text: #24292f;
    --color-label-primary-border: #6e7781;
    --color-label-secondary-text: #57606a;
    --color-label-secondary-border: #d0d7de;
    --color-label-info-text: #0969da;
    --color-label-info-border: #0969da;
    --color-label-success-text: #1a7f37;
    --color-label-success-border: #2da44e;
    --color-label-warning-text: #9a6700;
    --color-label-warning-border: #bf8700;
    --color-label-danger-text: #cf222e;
    --color-label-danger-border: #cf222e;
    --color-label-orange-text: #bc4c00;
    --color-label-orange-border: #bc4c00;
    --color-input-bg: #ffffff;
    --color-input-contrast-bg: #f6f8fa;
    --color-input-border: #d0d7de;
    --color-input-shadow: inset 0 1px 0 rgba(208,215,222,0.2);
    --color-input-disabled-border: #d0d7de;
    --color-input-warning-border: #bf8700;
    --color-input-error-border: #cf222e;
    --color-input-tooltip-success-text: #24292f;
    --color-input-tooltip-success-bg: #dafbe1;
    --color-input-tooltip-success-border: rgba(74,194,107,0.4);
    --color-input-tooltip-warning-text: #24292f;
    --color-input-tooltip-warning-bg: #fff8c5;
    --color-input-tooltip-warning-border: rgba(212,167,44,0.4);
    --color-input-tooltip-error-text: #24292f;
    --color-input-tooltip-error-bg: #FFEBE9;
    --color-input-tooltip-error-border: rgba(255,129,130,0.4);
    --color-input-disabled-bg: rgba(175,184,193,0.2);
    --color-toast-text: #24292f;
    --color-toast-bg: #ffffff;
    --color-toast-border: #d0d7de;
    --color-toast-shadow: 0 8px 24px rgba(140,149,159,0.2);
    --color-toast-icon: #ffffff;
    --color-toast-icon-bg: #0969da;
    --color-toast-icon-border: rgba(0,0,0,0);
    --color-toast-success-text: #24292f;
    --color-toast-success-border: #d0d7de;
    --color-toast-success-icon: #ffffff;
    --color-toast-success-icon-bg: #2da44e;
    --color-toast-success-icon-border: rgba(0,0,0,0);
    --color-toast-warning-text: #24292f;
    --color-toast-warning-border: #d0d7de;
    --color-toast-warning-icon: #24292f;
    --color-toast-warning-icon-bg: #bf8700;
    --color-toast-warning-icon-border: rgba(0,0,0,0);
    --color-toast-danger-text: #24292f;
    --color-toast-danger-border: #d0d7de;
    --color-toast-danger-icon: #ffffff;
    --color-toast-danger-icon-bg: #cf222e;
    --color-toast-danger-icon-border: rgba(0,0,0,0);
    --color-toast-loading-text: #24292f;
    --color-toast-loading-border: #d0d7de;
    --color-toast-loading-icon: #ffffff;
    --color-toast-loading-icon-bg: #6e7781;
    --color-toast-loading-icon-border: rgba(0,0,0,0);
    --color-timeline-text: #57606a;
    --color-timeline-badge-success-border: rgba(0,0,0,0);
    --color-timeline-target-badge-border: #0969da;
    --color-timeline-target-badge-shadow: rgba(84,174,255,0.4);
    --color-timeline-badge-bg: #eaeef2;
    --color-diffstat-neutral-bg: rgba(175,184,193,0.2);
    --color-diffstat-neutral-border: rgba(27,31,36,0.15);
    --color-diffstat-deletion-border: rgba(27,31,36,0.15);
    --color-diffstat-addition-border: rgba(27,31,36,0.15);
    --color-diffstat-deletion-bg: #cf222e;
    --color-diffstat-addition-bg: #2da44e;
    --color-diff-addition-text: #24292f;
    --color-diff-addition-bg: #dafbe1;
    --color-diff-addition-border: rgba(74,194,107,0.4);
    --color-diff-deletion-text: #24292f;
    --color-diff-deletion-bg: #FFEBE9;
    --color-diff-deletion-border: rgba(255,129,130,0.4);
    --color-diff-change-text: #9a6700;
    --color-diff-change-bg: #fff8c5;
    --color-diff-change-border: rgba(212,167,44,0.4);
    --color-merge-box-success-icon-bg: #2da44e;
    --color-merge-box-success-icon-text: #ffffff;
    --color-merge-box-success-icon-border: rgba(0,0,0,0);
    --color-merge-box-success-indicator-bg: #2da44e;
    --color-merge-box-success-indicator-border: rgba(0,0,0,0);
    --color-merge-box-merged-icon-bg: #8250df;
    --color-merge-box-merged-icon-text: #ffffff;
    --color-merge-box-merged-icon-border: rgba(0,0,0,0);
    --color-merge-box-merged-box-border: #8250df;
    --color-merge-box-neutral-icon-bg: #6e7781;
    --color-merge-box-neutral-icon-text: #ffffff;
    --color-merge-box-neutral-icon-border: rgba(0,0,0,0);
    --color-merge-box-neutral-indicator-bg: #6e7781;
    --color-merge-box-neutral-indicator-border: rgba(0,0,0,0);
    --color-merge-box-warning-icon-bg: #bf8700;
    --color-merge-box-warning-icon-text: #ffffff;
    --color-merge-box-warning-icon-border: rgba(0,0,0,0);
    --color-merge-box-warning-box-border: #bf8700;
    --color-merge-box-warning-merge-highlight: rgba(0,0,0,0);
    --color-merge-box-error-icon-bg: #cf222e;
    --color-merge-box-error-icon-text: #ffffff;
    --color-merge-box-error-icon-border: rgba(0,0,0,0);
    --color-merge-box-error-indicator-bg: #cf222e;
    --color-merge-box-error-indicator-border: rgba(0,0,0,0);
    --color-underlinenav-border: rgba(0,0,0,0);
    --color-underlinenav-border-hover: rgba(175,184,193,0.2);
    --color-underlinenav-border-active: #FD8C73;
    --color-underlinenav-text: #24292f;
    --color-underlinenav-text-hover: #24292f;
    --color-underlinenav-text-active: #24292f;
    --color-underlinenav-icon: #6e7781;
    --color-underlinenav-icon-hover: #6e7781;
    --color-underlinenav-icon-active: #24292f;
    --color-underlinenav-counter-text: #24292f;
    --color-underlinenav-counter-bg: rgba(175,184,193,0.2);
    --color-select-menu-border-secondary: hsla(210,18%,87%,1);
    --color-select-menu-shadow: 0 8px 24px rgba(140,149,159,0.2);
    --color-select-menu-backdrop-bg: rgba(27,31,36,0.5);
    --color-select-menu-backdrop-border: rgba(0,0,0,0);
    --color-select-menu-tap-highlight: rgba(175,184,193,0.5);
    --color-select-menu-tap-focus-bg: #b6e3ff;
    --color-sidenav-border-active: #FD8C73;
    --color-sidenav-selected-bg: #ffffff;
    --color-menu-heading-text: #24292f;
    --color-menu-border-active: #FD8C73;
    --color-menu-bg-active: rgba(0,0,0,0);
    --color-project-card-bg: #ffffff;
    --color-project-header-bg: #24292f;
    --color-project-sidebar-bg: #ffffff;
    --color-project-gradient-in: #ffffff;
    --color-project-gradient-out: rgba(255,255,255,0);
    --color-pr-state-draft-text: #ffffff;
    --color-pr-state-draft-bg: #6e7781;
    --color-pr-state-draft-border: rgba(0,0,0,0);
    --color-pr-state-open-text: #ffffff;
    --color-pr-state-open-bg: #2da44e;
    --color-pr-state-open-border: rgba(0,0,0,0);
    --color-pr-state-merged-text: #ffffff;
    --color-pr-state-merged-bg: #8250df;
    --color-pr-state-merged-border: rgba(0,0,0,0);
    --color-pr-state-closed-text: #ffffff;
    --color-pr-state-closed-bg: #cf222e;
    --color-pr-state-closed-border: rgba(0,0,0,0);
    --color-diff-blob-num-text: #6e7781;
    --color-diff-blob-num-hover-text: #24292f;
    --color-diff-blob-addition-num-hover-text: #24292f;
    --color-diff-blob-addition-num-text: #24292f;
    --color-diff-blob-addition-fg: #24292f;
    --color-diff-blob-addition-num-bg: #CCFFD8;
    --color-diff-blob-addition-line-bg: #E6FFEC;
    --color-diff-blob-addition-word-bg: #ABF2BC;
    --color-diff-blob-deletion-num-hover-text: #24292f;
    --color-diff-blob-deletion-num-text: #24292f;
    --color-diff-blob-deletion-fg: #24292f;
    --color-diff-blob-deletion-num-bg: #FFD7D5;
    --color-diff-blob-deletion-line-bg: #FFEBE9;
    --color-diff-blob-deletion-word-bg: rgba(255,129,130,0.4);
    --color-diff-blob-hunk-text: #57606a;
    --color-diff-blob-hunk-num-bg: rgba(84,174,255,0.4);
    --color-diff-blob-hunk-line-bg: #ddf4ff;
    --color-diff-blob-empty-block-bg: rgba(234,238,242,0.5);
    --color-diff-blob-selected-line-highlight-bg: #fff8c5;
    --color-diff-blob-selected-line-highlight-border: rgba(212,167,44,0.4);
    --color-diff-blob-expander-hover-icon: #ffffff;
    --color-diff-blob-expander-hover-bg: #0969da;
    --color-diff-blob-expander-icon: #57606a;
    --color-diff-blob-comment-button-icon: #ffffff;
    --color-diff-blob-comment-button-bg: #0969da;
    --color-diff-blob-comment-button-gradient-bg: rgba(0,0,0,0);
    --color-diff-blob-selected-line-highlight-mix-blend-mode: multiply;
    --color-global-nav-logo: #ffffff;
    --color-global-nav-bg: #24292f;
    --color-global-nav-text: #ffffff;
    --color-global-nav-icon: #ffffff;
    --color-global-nav-input-bg: #f6f8fa;
    --color-global-nav-input-border: #f6f8fa;
    --color-global-nav-input-icon: #afb8c1;
    --color-global-nav-input-placeholder: #8c959f;
    --color-intro-shelf-gradient-left: #ddf4ff;
    --color-intro-shelf-gradient-right: #dafbe1;
    --color-intro-shelf-gradient-in: #ffffff;
    --color-intro-shelf-gradient-out: rgba(255,255,255,0);
    --color-canvas-default-transparent: rgba(255,255,255,0);
    --color-marketing-icon-primary: #218bff;
    --color-marketing-icon-secondary: #54aeff;
    --color-search-keyword-hl: #fff8c5;
    --color-prettylights-syntax-comment: #6e7781;
    --color-prettylights-syntax-constant: #0550ae;
    --color-prettylights-syntax-entity: #8250df;
    --color-prettylights-syntax-storage-modifier-import: #24292f;
    --color-prettylights-syntax-entity-tag: #116329;
    --color-prettylights-syntax-keyword: #cf222e;
    --color-prettylights-syntax-string: #0a3069;
    --color-prettylights-syntax-variable: #953800;
    --color-prettylights-syntax-brackethighlighter-unmatched: #82071e;
    --color-prettylights-syntax-invalid-illegal-text: #f6f8fa;
    --color-prettylights-syntax-invalid-illegal-bg: #82071e;
    --color-prettylights-syntax-carriage-return-text: #f6f8fa;
    --color-prettylights-syntax-carriage-return-bg: #cf222e;
    --color-prettylights-syntax-string-regexp: #116329;
    --color-prettylights-syntax-markup-list: #3b2300;
    --color-prettylights-syntax-markup-heading: #0550ae;
    --color-prettylights-syntax-markup-italic: #24292f;
    --color-prettylights-syntax-markup-bold: #24292f;
    --color-prettylights-syntax-markup-deleted-text: #82071e;
    --color-prettylights-syntax-markup-deleted-bg: #FFEBE9;
    --color-prettylights-syntax-markup-inserted-text: #116329;
    --color-prettylights-syntax-markup-inserted-bg: #dafbe1;
    --color-prettylights-syntax-markup-changed-text: #953800;
    --color-prettylights-syntax-markup-changed-bg: #ffd8b5;
    --color-prettylights-syntax-markup-ignored-text: #eaeef2;
    --color-prettylights-syntax-markup-ignored-bg: #0550ae;
    --color-prettylights-syntax-meta-diff-range: #8250df;
    --color-prettylights-syntax-brackethighlighter-angle: #57606a;
    --color-prettylights-syntax-sublimelinter-gutter-mark: #8c959f;
    --color-prettylights-syntax-constant-other-reference-link: #0a3069;
    --color-codemirror-text: #24292f;
    --color-codemirror-bg: #ffffff;
    --color-codemirror-gutters-bg: #ffffff;
    --color-codemirror-guttermarker-text: #ffffff;
    --color-codemirror-guttermarker-subtle-text: #6e7781;
    --color-codemirror-linenumber-text: #57606a;
    --color-codemirror-cursor: #24292f;
    --color-codemirror-selection-bg: rgba(84,174,255,0.4);
    --color-codemirror-activeline-bg: rgba(234,238,242,0.5);
    --color-codemirror-matchingbracket-text: #24292f;
    --color-codemirror-lines-bg: #ffffff;
    --color-codemirror-syntax-comment: #24292f;
    --color-codemirror-syntax-constant: #0550ae;
    --color-codemirror-syntax-entity: #8250df;
    --color-codemirror-syntax-keyword: #cf222e;
    --color-codemirror-syntax-storage: #cf222e;
    --color-codemirror-syntax-string: #0a3069;
    --color-codemirror-syntax-support: #0550ae;
    --color-codemirror-syntax-variable: #953800;
    --color-checks-bg: #24292f;
    --color-checks-run-border-width: 0px;
    --color-checks-container-border-width: 0px;
    --color-checks-text-primary: #f6f8fa;
    --color-checks-text-secondary: #8c959f;
    --color-checks-text-link: #54aeff;
    --color-checks-btn-icon: #afb8c1;
    --color-checks-btn-hover-icon: #f6f8fa;
    --color-checks-btn-hover-bg: rgba(255,255,255,0.125);
    --color-checks-input-text: #eaeef2;
    --color-checks-input-placeholder-text: #8c959f;
    --color-checks-input-focus-text: #8c959f;
    --color-checks-input-bg: #32383f;
    --color-checks-input-shadow: none;
    --color-checks-donut-error: #fa4549;
    --color-checks-donut-pending: #bf8700;
    --color-checks-donut-success: #2da44e;
    --color-checks-donut-neutral: #afb8c1;
    --color-checks-dropdown-text: #afb8c1;
    --color-checks-dropdown-bg: #32383f;
    --color-checks-dropdown-border: #424a53;
    --color-checks-dropdown-shadow: rgba(27,31,36,0.3);
    --color-checks-dropdown-hover-text: #f6f8fa;
    --color-checks-dropdown-hover-bg: #424a53;
    --color-checks-dropdown-btn-hover-text: #f6f8fa;
    --color-checks-dropdown-btn-hover-bg: #32383f;
    --color-checks-scrollbar-thumb-bg: #57606a;
    --color-checks-header-label-text: #d0d7de;
    --color-checks-header-label-open-text: #f6f8fa;
    --color-checks-header-border: #32383f;
    --color-checks-header-icon: #8c959f;
    --color-checks-line-text: #d0d7de;
    --color-checks-line-num-text: rgba(140,149,159,0.75);
    --color-checks-line-timestamp-text: #8c959f;
    --color-checks-line-hover-bg: #32383f;
    --color-checks-line-selected-bg: rgba(33,139,255,0.15);
    --color-checks-line-selected-num-text: #54aeff;
    --color-checks-line-dt-fm-text: #24292f;
    --color-checks-line-dt-fm-bg: #9a6700;
    --color-checks-gate-bg: rgba(125,78,0,0.15);
    --color-checks-gate-text: #d0d7de;
    --color-checks-gate-waiting-text: #afb8c1;
    --color-checks-step-header-open-bg: #32383f;
    --color-checks-step-error-text: #ff8182;
    --color-checks-step-warning-text: #d4a72c;
    --color-checks-logline-text: #8c959f;
    --color-checks-logline-num-text: rgba(140,149,159,0.75);
    --color-checks-logline-debug-text: #c297ff;
    --color-checks-logline-error-text: #d0d7de;
    --color-checks-logline-error-num-text: #ff8182;
    --color-checks-logline-error-bg: rgba(164,14,38,0.15);
    --color-checks-logline-warning-text: #d0d7de;
    --color-checks-logline-warning-num-text: #d4a72c;
    --color-checks-logline-warning-bg: rgba(125,78,0,0.15);
    --color-checks-logline-command-text: #54aeff;
    --color-checks-logline-section-text: #4ac26b;
    --color-checks-ansi-black: #24292f;
    --color-checks-ansi-black-bright: #32383f;
    --color-checks-ansi-white: #d0d7de;
    --color-checks-ansi-white-bright: #d0d7de;
    --color-checks-ansi-gray: #8c959f;
    --color-checks-ansi-red: #ff8182;
    --color-checks-ansi-red-bright: #ffaba8;
    --color-checks-ansi-green: #4ac26b;
    --color-checks-ansi-green-bright: #6fdd8b;
    --color-checks-ansi-yellow: #d4a72c;
    --color-checks-ansi-yellow-bright: #eac54f;
    --color-checks-ansi-blue: #54aeff;
    --color-checks-ansi-blue-bright: #80ccff;
    --color-checks-ansi-magenta: #c297ff;
    --color-checks-ansi-magenta-bright: #d8b9ff;
    --color-checks-ansi-cyan: #76e3ea;
    --color-checks-ansi-cyan-bright: #b3f0ff;
    --color-mktg-success: rgba(36,146,67,1);
    --color-mktg-info: rgba(19,119,234,1);
    --color-mktg-bg-shade-gradient-top: rgba(27,31,36,0.065);
    --color-mktg-bg-shade-gradient-bottom: rgba(27,31,36,0);
    --color-mktg-btn-bg-top: hsla(228,82%,66%,1);
    --color-mktg-btn-bg-bottom: #4969ed;
    --color-mktg-btn-bg-overlay-top: hsla(228,74%,59%,1);
    --color-mktg-btn-bg-overlay-bottom: #3355e0;
    --color-mktg-btn-text: #ffffff;
    --color-mktg-btn-primary-bg-top: hsla(137,56%,46%,1);
    --color-mktg-btn-primary-bg-bottom: #2ea44f;
    --color-mktg-btn-primary-bg-overlay-top: hsla(134,60%,38%,1);
    --color-mktg-btn-primary-bg-overlay-bottom: #22863a;
    --color-mktg-btn-primary-text: #ffffff;
    --color-mktg-btn-enterprise-bg-top: hsla(249,100%,72%,1);
    --color-mktg-btn-enterprise-bg-bottom: #6f57ff;
    --color-mktg-btn-enterprise-bg-overlay-top: hsla(248,65%,63%,1);
    --color-mktg-btn-enterprise-bg-overlay-bottom: #614eda;
    --color-mktg-btn-enterprise-text: #ffffff;
    --color-mktg-btn-outline-text: #4969ed;
    --color-mktg-btn-outline-border: rgba(73,105,237,0.3);
    --color-mktg-btn-outline-hover-text: #3355e0;
    --color-mktg-btn-outline-hover-border: rgba(51,85,224,0.5);
    --color-mktg-btn-outline-focus-border: #4969ed;
    --color-mktg-btn-outline-focus-border-inset: rgba(73,105,237,0.5);
    --color-mktg-btn-dark-text: #ffffff;
    --color-mktg-btn-dark-border: rgba(255,255,255,0.3);
    --color-mktg-btn-dark-hover-text: #ffffff;
    --color-mktg-btn-dark-hover-border: rgba(255,255,255,0.5);
    --color-mktg-btn-dark-focus-border: #ffffff;
    --color-mktg-btn-dark-focus-border-inset: rgba(255,255,255,0.5);
    --color-avatar-bg: #ffffff;
    --color-avatar-border: rgba(27,31,36,0.15);
    --color-avatar-stack-fade: #afb8c1;
    --color-avatar-stack-fade-more: #d0d7de;
    --color-avatar-child-shadow: -2px -2px 0 rgba(255,255,255,0.8);
    --color-overlay-shadow: 0 1px 3px rgba(27,31,36,0.12), 0 8px 24px rgba(66,74,83,0.12);
    --color-header-text: rgba(255,255,255,0.7);
    --color-header-bg: #24292f;
    --color-header-logo: #ffffff;
    --color-header-search-bg: #24292f;
    --color-header-search-border: #57606a;
    --color-ansi-black: #24292f;
    --color-ansi-black-bright: #57606a;
    --color-ansi-white: #6e7781;
    --color-ansi-white-bright: #8c959f;
    --color-ansi-gray: #6e7781;
    --color-ansi-red: #cf222e;
    --color-ansi-red-bright: #a40e26;
    --color-ansi-green: #116329;
    --color-ansi-green-bright: #1a7f37;
    --color-ansi-yellow: #4d2d00;
    --color-ansi-yellow-bright: #633c01;
    --color-ansi-blue: #0969da;
    --color-ansi-blue-bright: #218bff;
    --color-ansi-magenta: #8250df;
    --color-ansi-magenta-bright: #a475f9;
    --color-ansi-cyan: #1b7c83;
    --color-ansi-cyan-bright: #3192aa;
    --color-btn-text: #24292f;
    --color-btn-bg: #f6f8fa;
    --color-btn-border: rgba(27,31,36,0.15);
    --color-btn-shadow: 0 1px 0 rgba(27,31,36,0.04);
    --color-btn-inset-shadow: inset 0 1px 0 rgba(255,255,255,0.25);
    --color-btn-hover-bg: #f3f4f6;
    --color-btn-hover-border: rgba(27,31,36,0.15);
    --color-btn-active-bg: hsla(220,14%,93%,1);
    --color-btn-active-border: rgba(27,31,36,0.15);
    --color-btn-selected-bg: hsla(220,14%,94%,1);
    --color-btn-focus-bg: #f6f8fa;
    --color-btn-focus-border: rgba(27,31,36,0.15);
    --color-btn-focus-shadow: 0 0 0 3px rgba(9,105,218,0.3);
    --color-btn-shadow-active: inset 0 0.15em 0.3em rgba(27,31,36,0.15);
    --color-btn-shadow-input-focus: 0 0 0 0.2em rgba(9,105,218,0.3);
    --color-btn-counter-bg: rgba(27,31,36,0.08);
    --color-btn-primary-text: #ffffff;
    --color-btn-primary-bg: #2da44e;
    --color-btn-primary-border: rgba(27,31,36,0.15);
    --color-btn-primary-shadow: 0 1px 0 rgba(27,31,36,0.1);
    --color-btn-primary-inset-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
    --color-btn-primary-hover-bg: #2c974b;
    --color-btn-primary-hover-border: rgba(27,31,36,0.15);
    --color-btn-primary-selected-bg: hsla(137,55%,36%,1);
    --color-btn-primary-selected-shadow: inset 0 1px 0 rgba(0,45,17,0.2);
    --color-btn-primary-disabled-text: rgba(255,255,255,0.8);
    --color-btn-primary-disabled-bg: #94d3a2;
    --color-btn-primary-disabled-border: rgba(27,31,36,0.15);
    --color-btn-primary-focus-bg: #2da44e;
    --color-btn-primary-focus-border: rgba(27,31,36,0.15);
    --color-btn-primary-focus-shadow: 0 0 0 3px rgba(45,164,78,0.4);
    --color-btn-primary-icon: rgba(255,255,255,0.8);
    --color-btn-primary-counter-bg: rgba(255,255,255,0.2);
    --color-btn-outline-text: #0969da;
    --color-btn-outline-hover-text: #ffffff;
    --color-btn-outline-hover-bg: #0969da;
    --color-btn-outline-hover-border: rgba(27,31,36,0.15);
    --color-btn-outline-hover-shadow: 0 1px 0 rgba(27,31,36,0.1);
    --color-btn-outline-hover-inset-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
    --color-btn-outline-hover-counter-bg: rgba(255,255,255,0.2);
    --color-btn-outline-selected-text: #ffffff;
    --color-btn-outline-selected-bg: hsla(212,92%,42%,1);
    --color-btn-outline-selected-border: rgba(27,31,36,0.15);
    --color-btn-outline-selected-shadow: inset 0 1px 0 rgba(0,33,85,0.2);
    --color-btn-outline-disabled-text: rgba(9,105,218,0.5);
    --color-btn-outline-disabled-bg: #f6f8fa;
    --color-btn-outline-disabled-counter-bg: rgba(9,105,218,0.05);
    --color-btn-outline-focus-border: rgba(27,31,36,0.15);
    --color-btn-outline-focus-shadow: 0 0 0 3px rgba(5,80,174,0.4);
    --color-btn-outline-counter-bg: rgba(9,105,218,0.1);
    --color-btn-danger-text: #cf222e;
    --color-btn-danger-hover-text: #ffffff;
    --color-btn-danger-hover-bg: #a40e26;
    --color-btn-danger-hover-border: rgba(27,31,36,0.15);
    --color-btn-danger-hover-shadow: 0 1px 0 rgba(27,31,36,0.1);
    --color-btn-danger-hover-inset-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
    --color-btn-danger-hover-counter-bg: rgba(255,255,255,0.2);
    --color-btn-danger-selected-text: #ffffff;
    --color-btn-danger-selected-bg: hsla(356,72%,44%,1);
    --color-btn-danger-selected-border: rgba(27,31,36,0.15);
    --color-btn-danger-selected-shadow: inset 0 1px 0 rgba(76,0,20,0.2);
    --color-btn-danger-disabled-text: rgba(207,34,46,0.5);
    --color-btn-danger-disabled-bg: #f6f8fa;
    --color-btn-danger-disabled-counter-bg: rgba(207,34,46,0.05);
    --color-btn-danger-focus-border: rgba(27,31,36,0.15);
    --color-btn-danger-focus-shadow: 0 0 0 3px rgba(164,14,38,0.4);
    --color-btn-danger-counter-bg: rgba(207,34,46,0.1);
    --color-btn-danger-icon: #cf222e;
    --color-btn-danger-hover-icon: #ffffff;
    --color-fg-default: #24292f;
    --color-fg-muted: #57606a;
    --color-fg-subtle: #6e7781;
    --color-fg-on-emphasis: #ffffff;
    --color-canvas-default: #ffffff;
    --color-canvas-overlay: #ffffff;
    --color-canvas-inset: #f6f8fa;
    --color-canvas-subtle: #f6f8fa;
    --color-neutral-emphasis-plus: #24292f;
    --color-neutral-emphasis: #6e7781;
    --color-neutral-muted: rgba(175,184,193,0.2);
    --color-neutral-subtle: rgba(234,238,242,0.5);
    --color-accent-fg: #0969da;
    --color-accent-emphasis: #0969da;
    --color-accent-muted: rgba(84,174,255,0.4);
    --color-accent-subtle: #ddf4ff;
    --color-success-fg: #1a7f37;
    --color-success-emphasis: #2da44e;
    --color-success-muted: rgba(74,194,107,0.4);
    --color-success-subtle: #dafbe1;
    --color-attention-fg: #9a6700;
    --color-attention-emphasis: #bf8700;
    --color-attention-muted: rgba(212,167,44,0.4);
    --color-attention-subtle: #fff8c5;
    --color-severe-fg: #bc4c00;
    --color-severe-emphasis: #bc4c00;
    --color-severe-muted: rgba(251,143,68,0.4);
    --color-severe-subtle: #fff1e5;
    --color-danger-fg: #cf222e;
    --color-danger-emphasis: #cf222e;
    --color-danger-muted: rgba(255,129,130,0.4);
    --color-danger-subtle: #FFEBE9;
    --color-done-fg: #8250df;
    --color-done-emphasis: #8250df;
    --color-done-muted: rgba(194,151,255,0.4);
    --color-done-subtle: #fbefff;
    --color-sponsors-fg: #bf3989;
    --color-sponsors-emphasis: #bf3989;
    --color-sponsors-muted: rgba(255,128,200,0.4);
    --color-sponsors-subtle: #ffeff7;
    --color-primer-canvas-backdrop: rgba(27,31,36,0.5);
    --color-primer-canvas-sticky: rgba(255,255,255,0.95);
    --color-primer-border-active: #FD8C73;
    --color-primer-border-contrast: rgba(27,31,36,0.1);
    --color-primer-shadow-highlight: inset 0 1px 0 rgba(255,255,255,0.25);
    --color-primer-shadow-inset: inset 0 1px 0 rgba(208,215,222,0.2);
    --color-primer-shadow-focus: 0 0 0 3px rgba(9,105,218,0.3);
    --color-scale-black: #1b1f24;
    --color-scale-white: #ffffff;
    --color-scale-gray-0: #f6f8fa;
    --color-scale-gray-1: #eaeef2;
    --color-scale-gray-2: #d0d7de;
    --color-scale-gray-3: #afb8c1;
    --color-scale-gray-4: #8c959f;
    --color-scale-gray-5: #6e7781;
    --color-scale-gray-6: #57606a;
    --color-scale-gray-7: #424a53;
    --color-scale-gray-8: #32383f;
    --color-scale-gray-9: #24292f;
    --color-scale-blue-0: #ddf4ff;
    --color-scale-blue-1: #b6e3ff;
    --color-scale-blue-2: #80ccff;
    --color-scale-blue-3: #54aeff;
    --color-scale-blue-4: #218bff;
    --color-scale-blue-5: #0969da;
    --color-scale-blue-6: #0550ae;
    --color-scale-blue-7: #033d8b;
    --color-scale-blue-8: #0a3069;
    --color-scale-blue-9: #002155;
    --color-scale-green-0: #dafbe1;
    --color-scale-green-1: #aceebb;
    --color-scale-green-2: #6fdd8b;
    --color-scale-green-3: #4ac26b;
    --color-scale-green-4: #2da44e;
    --color-scale-green-5: #1a7f37;
    --color-scale-green-6: #116329;
    --color-scale-green-7: #044f1e;
    --color-scale-green-8: #003d16;
    --color-scale-green-9: #002d11;
    --color-scale-yellow-0: #fff8c5;
    --color-scale-yellow-1: #fae17d;
    --color-scale-yellow-2: #eac54f;
    --color-scale-yellow-3: #d4a72c;
    --color-scale-yellow-4: #bf8700;
    --color-scale-yellow-5: #9a6700;
    --color-scale-yellow-6: #7d4e00;
    --color-scale-yellow-7: #633c01;
    --color-scale-yellow-8: #4d2d00;
    --color-scale-yellow-9: #3b2300;
    --color-scale-orange-0: #fff1e5;
    --color-scale-orange-1: #ffd8b5;
    --color-scale-orange-2: #ffb77c;
    --color-scale-orange-3: #fb8f44;
    --color-scale-orange-4: #e16f24;
    --color-scale-orange-5: #bc4c00;
    --color-scale-orange-6: #953800;
    --color-scale-orange-7: #762c00;
    --color-scale-orange-8: #5c2200;
    --color-scale-orange-9: #471700;
    --color-scale-red-0: #FFEBE9;
    --color-scale-red-1: #ffcecb;
    --color-scale-red-2: #ffaba8;
    --color-scale-red-3: #ff8182;
    --color-scale-red-4: #fa4549;
    --color-scale-red-5: #cf222e;
    --color-scale-red-6: #a40e26;
    --color-scale-red-7: #82071e;
    --color-scale-red-8: #660018;
    --color-scale-red-9: #4c0014;
    --color-scale-purple-0: #fbefff;
    --color-scale-purple-1: #ecd8ff;
    --color-scale-purple-2: #d8b9ff;
    --color-scale-purple-3: #c297ff;
    --color-scale-purple-4: #a475f9;
    --color-scale-purple-5: #8250df;
    --color-scale-purple-6: #6639ba;
    --color-scale-purple-7: #512a97;
    --color-scale-purple-8: #3e1f79;
    --color-scale-purple-9: #2e1461;
    --color-scale-pink-0: #ffeff7;
    --color-scale-pink-1: #ffd3eb;
    --color-scale-pink-2: #ffadda;
    --color-scale-pink-3: #ff80c8;
    --color-scale-pink-4: #e85aad;
    --color-scale-pink-5: #bf3989;
    --color-scale-pink-6: #99286e;
    --color-scale-pink-7: #772057;
    --color-scale-pink-8: #611347;
    --color-scale-pink-9: #4d0336;
    --color-scale-coral-0: #FFF0EB;
    --color-scale-coral-1: #FFD6CC;
    --color-scale-coral-2: #FFB4A1;
    --color-scale-coral-3: #FD8C73;
    --color-scale-coral-4: #EC6547;
    --color-scale-coral-5: #C4432B;
    --color-scale-coral-6: #9E2F1C;
    --color-scale-coral-7: #801F0F;
    --color-scale-coral-8: #691105;
    --color-scale-coral-9: #510901;
  }
}
@media (prefers-color-scheme: dark) {
  [data-color-mode=auto][data-dark-theme=light] {
    --color-auto-black: #1b1f24;
    --color-auto-white: #ffffff;
    --color-auto-gray-0: #f6f8fa;
    --color-auto-gray-1: #eaeef2;
    --color-auto-gray-2: #d0d7de;
    --color-auto-gray-3: #afb8c1;
    --color-auto-gray-4: #8c959f;
    --color-auto-gray-5: #6e7781;
    --color-auto-gray-6: #57606a;
    --color-auto-gray-7: #424a53;
    --color-auto-gray-8: #32383f;
    --color-auto-gray-9: #24292f;
    --color-auto-blue-0: #ddf4ff;
    --color-auto-blue-1: #b6e3ff;
    --color-auto-blue-2: #80ccff;
    --color-auto-blue-3: #54aeff;
    --color-auto-blue-4: #218bff;
    --color-auto-blue-5: #0969da;
    --color-auto-blue-6: #0550ae;
    --color-auto-blue-7: #033d8b;
    --color-auto-blue-8: #0a3069;
    --color-auto-blue-9: #002155;
    --color-auto-green-0: #dafbe1;
    --color-auto-green-1: #aceebb;
    --color-auto-green-2: #6fdd8b;
    --color-auto-green-3: #4ac26b;
    --color-auto-green-4: #2da44e;
    --color-auto-green-5: #1a7f37;
    --color-auto-green-6: #116329;
    --color-auto-green-7: #044f1e;
    --color-auto-green-8: #003d16;
    --color-auto-green-9: #002d11;
    --color-auto-yellow-0: #fff8c5;
    --color-auto-yellow-1: #fae17d;
    --color-auto-yellow-2: #eac54f;
    --color-auto-yellow-3: #d4a72c;
    --color-auto-yellow-4: #bf8700;
    --color-auto-yellow-5: #9a6700;
    --color-auto-yellow-6: #7d4e00;
    --color-auto-yellow-7: #633c01;
    --color-auto-yellow-8: #4d2d00;
    --color-auto-yellow-9: #3b2300;
    --color-auto-orange-0: #fff1e5;
    --color-auto-orange-1: #ffd8b5;
    --color-auto-orange-2: #ffb77c;
    --color-auto-orange-3: #fb8f44;
    --color-auto-orange-4: #e16f24;
    --color-auto-orange-5: #bc4c00;
    --color-auto-orange-6: #953800;
    --color-auto-orange-7: #762c00;
    --color-auto-orange-8: #5c2200;
    --color-auto-orange-9: #471700;
    --color-auto-red-0: #FFEBE9;
    --color-auto-red-1: #ffcecb;
    --color-auto-red-2: #ffaba8;
    --color-auto-red-3: #ff8182;
    --color-auto-red-4: #fa4549;
    --color-auto-red-5: #cf222e;
    --color-auto-red-6: #a40e26;
    --color-auto-red-7: #82071e;
    --color-auto-red-8: #660018;
    --color-auto-red-9: #4c0014;
    --color-auto-purple-0: #fbefff;
    --color-auto-purple-1: #ecd8ff;
    --color-auto-purple-2: #d8b9ff;
    --color-auto-purple-3: #c297ff;
    --color-auto-purple-4: #a475f9;
    --color-auto-purple-5: #8250df;
    --color-auto-purple-6: #6639ba;
    --color-auto-purple-7: #512a97;
    --color-auto-purple-8: #3e1f79;
    --color-auto-purple-9: #2e1461;
    --color-auto-pink-0: #ffeff7;
    --color-auto-pink-1: #ffd3eb;
    --color-auto-pink-2: #ffadda;
    --color-auto-pink-3: #ff80c8;
    --color-auto-pink-4: #e85aad;
    --color-auto-pink-5: #bf3989;
    --color-auto-pink-6: #99286e;
    --color-auto-pink-7: #772057;
    --color-auto-pink-8: #611347;
    --color-auto-pink-9: #4d0336;
    --color-text-primary: #24292f;
    --color-text-secondary: #57606a;
    --color-text-tertiary: #57606a;
    --color-text-placeholder: #6e7781;
    --color-text-disabled: #57606a;
    --color-text-inverse: #ffffff;
    --color-text-link: #0969da;
    --color-text-danger: #cf222e;
    --color-text-success: #1a7f37;
    --color-text-warning: #9a6700;
    --color-text-white: #ffffff;
    --color-icon-primary: #24292f;
    --color-icon-secondary: #57606a;
    --color-icon-tertiary: #57606a;
    --color-icon-info: #0969da;
    --color-icon-danger: #cf222e;
    --color-icon-success: #1a7f37;
    --color-icon-warning: #9a6700;
    --color-border-primary: #d0d7de;
    --color-border-secondary: hsla(210,18%,87%,1);
    --color-border-tertiary: #d0d7de;
    --color-border-overlay: #d0d7de;
    --color-border-inverse: #ffffff;
    --color-border-info: #0969da;
    --color-border-danger: #cf222e;
    --color-border-success: #2da44e;
    --color-border-warning: #bf8700;
    --color-border-default: #d0d7de;
    --color-border-muted: hsla(210,18%,87%,1);
    --color-border-subtle: rgba(27,31,36,0.15);
    --color-bg-canvas: #ffffff;
    --color-bg-canvas-mobile: rgba(0,0,0,0);
    --color-bg-canvas-inverse: #6e7781;
    --color-bg-canvas-inset: #f6f8fa;
    --color-bg-primary: #ffffff;
    --color-bg-secondary: #f6f8fa;
    --color-bg-tertiary: #f6f8fa;
    --color-bg-overlay: #ffffff;
    --color-bg-backdrop: rgba(27,31,36,0.5);
    --color-bg-info: #ddf4ff;
    --color-bg-info-inverse: #0969da;
    --color-bg-danger: #FFEBE9;
    --color-bg-danger-inverse: #cf222e;
    --color-bg-success: #dafbe1;
    --color-bg-success-inverse: #2da44e;
    --color-bg-warning: #fff8c5;
    --color-bg-warning-inverse: #bf8700;
    --color-shadow-highlight: inset 0 1px 0 rgba(255,255,255,0.25);
    --color-shadow-inset: inset 0 1px 0 rgba(208,215,222,0.2);
    --color-shadow-small: 0 1px 0 rgba(27,31,36,0.04);
    --color-shadow-medium: 0 3px 6px rgba(140,149,159,0.15);
    --color-shadow-large: 0 8px 24px rgba(140,149,159,0.2);
    --color-shadow-extra-large: 0 12px 28px rgba(140,149,159,0.3);
    --color-state-hover-primary-bg: #0969da;
    --color-state-hover-primary-border: #0969da;
    --color-state-hover-primary-text: #ffffff;
    --color-state-hover-primary-icon: #ffffff;
    --color-state-hover-secondary-bg: rgba(234,238,242,0.5);
    --color-state-hover-secondary-border: rgba(234,238,242,0.5);
    --color-state-selected-primary-bg: #0969da;
    --color-state-selected-primary-border: #0969da;
    --color-state-selected-primary-text: #ffffff;
    --color-state-selected-primary-icon: #ffffff;
    --color-state-focus-border: #0969da;
    --color-state-focus-shadow: 0 0 0 3px rgba(9,105,218,0.3);
    --color-fade-fg-10: rgba(27,31,36,0.1);
    --color-fade-fg-15: rgba(27,31,36,0.15);
    --color-fade-fg-30: rgba(27,31,36,0.3);
    --color-fade-fg-50: rgba(27,31,36,0.5);
    --color-fade-fg-70: rgba(27,31,36,0.7);
    --color-fade-fg-85: rgba(27,31,36,0.85);
    --color-fade-black-10: rgba(27,31,36,0.1);
    --color-fade-black-15: rgba(27,31,36,0.15);
    --color-fade-black-30: rgba(27,31,36,0.3);
    --color-fade-black-50: rgba(27,31,36,0.5);
    --color-fade-black-70: rgba(27,31,36,0.7);
    --color-fade-black-85: rgba(27,31,36,0.85);
    --color-fade-white-10: rgba(255,255,255,0.1);
    --color-fade-white-15: rgba(255,255,255,0.15);
    --color-fade-white-30: rgba(255,255,255,0.3);
    --color-fade-white-50: rgba(255,255,255,0.5);
    --color-fade-white-70: rgba(255,255,255,0.7);
    --color-fade-white-85: rgba(255,255,255,0.85);
    --color-alert-info-text: #24292f;
    --color-alert-info-icon: #0969da;
    --color-alert-info-bg: #ddf4ff;
    --color-alert-info-border: rgba(84,174,255,0.4);
    --color-alert-warn-text: #24292f;
    --color-alert-warn-icon: #9a6700;
    --color-alert-warn-bg: #fff8c5;
    --color-alert-warn-border: rgba(212,167,44,0.4);
    --color-alert-error-text: #24292f;
    --color-alert-error-icon: #cf222e;
    --color-alert-error-bg: #FFEBE9;
    --color-alert-error-border: rgba(255,129,130,0.4);
    --color-alert-success-text: #24292f;
    --color-alert-success-icon: #1a7f37;
    --color-alert-success-bg: #dafbe1;
    --color-alert-success-border: rgba(74,194,107,0.4);
    --color-autocomplete-shadow: 0 3px 6px rgba(140,149,159,0.15);
    --color-autocomplete-row-border: hsla(210,18%,87%,1);
    --color-blankslate-icon: #57606a;
    --color-counter-text: #24292f;
    --color-counter-bg: rgba(175,184,193,0.2);
    --color-counter-primary-text: #ffffff;
    --color-counter-primary-bg: #6e7781;
    --color-counter-secondary-text: #57606a;
    --color-counter-secondary-bg: rgba(234,238,242,0.5);
    --color-box-blue-border: rgba(84,174,255,0.4);
    --color-box-row-yellow-bg: #fff8c5;
    --color-box-row-blue-bg: #ddf4ff;
    --color-box-header-blue-bg: #ddf4ff;
    --color-box-header-blue-border: rgba(84,174,255,0.4);
    --color-box-border-info: rgba(84,174,255,0.4);
    --color-box-bg-info: #ddf4ff;
    --color-box-border-warning: rgba(212,167,44,0.4);
    --color-box-bg-warning: #fff8c5;
    --color-branch-name-text: #57606a;
    --color-branch-name-icon: #57606a;
    --color-branch-name-bg: #ddf4ff;
    --color-branch-name-link-text: #0969da;
    --color-branch-name-link-icon: #0969da;
    --color-branch-name-link-bg: #ddf4ff;
    --color-markdown-code-bg: rgba(175,184,193,0.2);
    --color-markdown-frame-border: #d0d7de;
    --color-markdown-blockquote-border: #d0d7de;
    --color-markdown-table-border: #d0d7de;
    --color-markdown-table-tr-border: hsla(210,18%,87%,1);
    --color-filter-item-bar-bg: rgba(234,238,242,0.5);
    --color-hidden-text-expander-bg: rgba(175,184,193,0.2);
    --color-hidden-text-expander-bg-hover: rgba(84,174,255,0.4);
    --color-drag-and-drop-border: #d0d7de;
    --color-upload-enabled-border: #d0d7de;
    --color-upload-enabled-border-focused: #0969da;
    --color-previewable-comment-form-border: #d0d7de;
    --color-verified-badge-text: #1a7f37;
    --color-verified-badge-bg: #ffffff;
    --color-verified-badge-border: #d0d7de;
    --color-social-count-bg: #ffffff;
    --color-tooltip-text: #ffffff;
    --color-tooltip-bg: #24292f;
    --color-files-explorer-icon: #0969da;
    --color-hl-author-bg: #ddf4ff;
    --color-hl-author-border: rgba(84,174,255,0.4);
    --color-logo-subdued: rgba(175,184,193,0.2);
    --color-discussion-border: rgba(74,194,107,0.4);
    --color-discussion-bg-success: #2da44e;
    --color-actions-workflow-table-sticky-bg: rgba(255,255,255,0.95);
    --color-repo-language-color-border: rgba(27,31,36,0.1);
    --color-code-selection-bg: rgba(84,174,255,0.4);
    --color-highlight-text: #24292f;
    --color-highlight-bg: #fff8c5;
    --color-blob-line-highlight-bg: #fff8c5;
    --color-blob-line-highlight-border: rgba(212,167,44,0.4);
    --color-topic-tag-text: #0969da;
    --color-topic-tag-bg: #ddf4ff;
    --color-topic-tag-hover-bg: #0969da;
    --color-topic-tag-active-bg: #ddf4ff;
    --color-topic-tag-border: rgba(0,0,0,0);
    --color-footer-invertocat-octicon: #6e7781;
    --color-footer-invertocat-octicon-hover: #57606a;
    --color-dropdown-shadow: 0 8px 24px rgba(140,149,159,0.2);
    --color-label-border: #d0d7de;
    --color-label-primary-text: #24292f;
    --color-label-primary-border: #6e7781;
    --color-label-secondary-text: #57606a;
    --color-label-secondary-border: #d0d7de;
    --color-label-info-text: #0969da;
    --color-label-info-border: #0969da;
    --color-label-success-text: #1a7f37;
    --color-label-success-border: #2da44e;
    --color-label-warning-text: #9a6700;
    --color-label-warning-border: #bf8700;
    --color-label-danger-text: #cf222e;
    --color-label-danger-border: #cf222e;
    --color-label-orange-text: #bc4c00;
    --color-label-orange-border: #bc4c00;
    --color-input-bg: #ffffff;
    --color-input-contrast-bg: #f6f8fa;
    --color-input-border: #d0d7de;
    --color-input-shadow: inset 0 1px 0 rgba(208,215,222,0.2);
    --color-input-disabled-border: #d0d7de;
    --color-input-warning-border: #bf8700;
    --color-input-error-border: #cf222e;
    --color-input-tooltip-success-text: #24292f;
    --color-input-tooltip-success-bg: #dafbe1;
    --color-input-tooltip-success-border: rgba(74,194,107,0.4);
    --color-input-tooltip-warning-text: #24292f;
    --color-input-tooltip-warning-bg: #fff8c5;
    --color-input-tooltip-warning-border: rgba(212,167,44,0.4);
    --color-input-tooltip-error-text: #24292f;
    --color-input-tooltip-error-bg: #FFEBE9;
    --color-input-tooltip-error-border: rgba(255,129,130,0.4);
    --color-input-disabled-bg: rgba(175,184,193,0.2);
    --color-toast-text: #24292f;
    --color-toast-bg: #ffffff;
    --color-toast-border: #d0d7de;
    --color-toast-shadow: 0 8px 24px rgba(140,149,159,0.2);
    --color-toast-icon: #ffffff;
    --color-toast-icon-bg: #0969da;
    --color-toast-icon-border: rgba(0,0,0,0);
    --color-toast-success-text: #24292f;
    --color-toast-success-border: #d0d7de;
    --color-toast-success-icon: #ffffff;
    --color-toast-success-icon-bg: #2da44e;
    --color-toast-success-icon-border: rgba(0,0,0,0);
    --color-toast-warning-text: #24292f;
    --color-toast-warning-border: #d0d7de;
    --color-toast-warning-icon: #24292f;
    --color-toast-warning-icon-bg: #bf8700;
    --color-toast-warning-icon-border: rgba(0,0,0,0);
    --color-toast-danger-text: #24292f;
    --color-toast-danger-border: #d0d7de;
    --color-toast-danger-icon: #ffffff;
    --color-toast-danger-icon-bg: #cf222e;
    --color-toast-danger-icon-border: rgba(0,0,0,0);
    --color-toast-loading-text: #24292f;
    --color-toast-loading-border: #d0d7de;
    --color-toast-loading-icon: #ffffff;
    --color-toast-loading-icon-bg: #6e7781;
    --color-toast-loading-icon-border: rgba(0,0,0,0);
    --color-timeline-text: #57606a;
    --color-timeline-badge-success-border: rgba(0,0,0,0);
    --color-timeline-target-badge-border: #0969da;
    --color-timeline-target-badge-shadow: rgba(84,174,255,0.4);
    --color-timeline-badge-bg: #eaeef2;
    --color-diffstat-neutral-bg: rgba(175,184,193,0.2);
    --color-diffstat-neutral-border: rgba(27,31,36,0.15);
    --color-diffstat-deletion-border: rgba(27,31,36,0.15);
    --color-diffstat-addition-border: rgba(27,31,36,0.15);
    --color-diffstat-deletion-bg: #cf222e;
    --color-diffstat-addition-bg: #2da44e;
    --color-diff-addition-text: #24292f;
    --color-diff-addition-bg: #dafbe1;
    --color-diff-addition-border: rgba(74,194,107,0.4);
    --color-diff-deletion-text: #24292f;
    --color-diff-deletion-bg: #FFEBE9;
    --color-diff-deletion-border: rgba(255,129,130,0.4);
    --color-diff-change-text: #9a6700;
    --color-diff-change-bg: #fff8c5;
    --color-diff-change-border: rgba(212,167,44,0.4);
    --color-merge-box-success-icon-bg: #2da44e;
    --color-merge-box-success-icon-text: #ffffff;
    --color-merge-box-success-icon-border: rgba(0,0,0,0);
    --color-merge-box-success-indicator-bg: #2da44e;
    --color-merge-box-success-indicator-border: rgba(0,0,0,0);
    --color-merge-box-merged-icon-bg: #8250df;
    --color-merge-box-merged-icon-text: #ffffff;
    --color-merge-box-merged-icon-border: rgba(0,0,0,0);
    --color-merge-box-merged-box-border: #8250df;
    --color-merge-box-neutral-icon-bg: #6e7781;
    --color-merge-box-neutral-icon-text: #ffffff;
    --color-merge-box-neutral-icon-border: rgba(0,0,0,0);
    --color-merge-box-neutral-indicator-bg: #6e7781;
    --color-merge-box-neutral-indicator-border: rgba(0,0,0,0);
    --color-merge-box-warning-icon-bg: #bf8700;
    --color-merge-box-warning-icon-text: #ffffff;
    --color-merge-box-warning-icon-border: rgba(0,0,0,0);
    --color-merge-box-warning-box-border: #bf8700;
    --color-merge-box-warning-merge-highlight: rgba(0,0,0,0);
    --color-merge-box-error-icon-bg: #cf222e;
    --color-merge-box-error-icon-text: #ffffff;
    --color-merge-box-error-icon-border: rgba(0,0,0,0);
    --color-merge-box-error-indicator-bg: #cf222e;
    --color-merge-box-error-indicator-border: rgba(0,0,0,0);
    --color-underlinenav-border: rgba(0,0,0,0);
    --color-underlinenav-border-hover: rgba(175,184,193,0.2);
    --color-underlinenav-border-active: #FD8C73;
    --color-underlinenav-text: #24292f;
    --color-underlinenav-text-hover: #24292f;
    --color-underlinenav-text-active: #24292f;
    --color-underlinenav-icon: #6e7781;
    --color-underlinenav-icon-hover: #6e7781;
    --color-underlinenav-icon-active: #24292f;
    --color-underlinenav-counter-text: #24292f;
    --color-underlinenav-counter-bg: rgba(175,184,193,0.2);
    --color-select-menu-border-secondary: hsla(210,18%,87%,1);
    --color-select-menu-shadow: 0 8px 24px rgba(140,149,159,0.2);
    --color-select-menu-backdrop-bg: rgba(27,31,36,0.5);
    --color-select-menu-backdrop-border: rgba(0,0,0,0);
    --color-select-menu-tap-highlight: rgba(175,184,193,0.5);
    --color-select-menu-tap-focus-bg: #b6e3ff;
    --color-sidenav-border-active: #FD8C73;
    --color-sidenav-selected-bg: #ffffff;
    --color-menu-heading-text: #24292f;
    --color-menu-border-active: #FD8C73;
    --color-menu-bg-active: rgba(0,0,0,0);
    --color-project-card-bg: #ffffff;
    --color-project-header-bg: #24292f;
    --color-project-sidebar-bg: #ffffff;
    --color-project-gradient-in: #ffffff;
    --color-project-gradient-out: rgba(255,255,255,0);
    --color-pr-state-draft-text: #ffffff;
    --color-pr-state-draft-bg: #6e7781;
    --color-pr-state-draft-border: rgba(0,0,0,0);
    --color-pr-state-open-text: #ffffff;
    --color-pr-state-open-bg: #2da44e;
    --color-pr-state-open-border: rgba(0,0,0,0);
    --color-pr-state-merged-text: #ffffff;
    --color-pr-state-merged-bg: #8250df;
    --color-pr-state-merged-border: rgba(0,0,0,0);
    --color-pr-state-closed-text: #ffffff;
    --color-pr-state-closed-bg: #cf222e;
    --color-pr-state-closed-border: rgba(0,0,0,0);
    --color-diff-blob-num-text: #6e7781;
    --color-diff-blob-num-hover-text: #24292f;
    --color-diff-blob-addition-num-hover-text: #24292f;
    --color-diff-blob-addition-num-text: #24292f;
    --color-diff-blob-addition-fg: #24292f;
    --color-diff-blob-addition-num-bg: #CCFFD8;
    --color-diff-blob-addition-line-bg: #E6FFEC;
    --color-diff-blob-addition-word-bg: #ABF2BC;
    --color-diff-blob-deletion-num-hover-text: #24292f;
    --color-diff-blob-deletion-num-text: #24292f;
    --color-diff-blob-deletion-fg: #24292f;
    --color-diff-blob-deletion-num-bg: #FFD7D5;
    --color-diff-blob-deletion-line-bg: #FFEBE9;
    --color-diff-blob-deletion-word-bg: rgba(255,129,130,0.4);
    --color-diff-blob-hunk-text: #57606a;
    --color-diff-blob-hunk-num-bg: rgba(84,174,255,0.4);
    --color-diff-blob-hunk-line-bg: #ddf4ff;
    --color-diff-blob-empty-block-bg: rgba(234,238,242,0.5);
    --color-diff-blob-selected-line-highlight-bg: #fff8c5;
    --color-diff-blob-selected-line-highlight-border: rgba(212,167,44,0.4);
    --color-diff-blob-expander-hover-icon: #ffffff;
    --color-diff-blob-expander-hover-bg: #0969da;
    --color-diff-blob-expander-icon: #57606a;
    --color-diff-blob-comment-button-icon: #ffffff;
    --color-diff-blob-comment-button-bg: #0969da;
    --color-diff-blob-comment-button-gradient-bg: rgba(0,0,0,0);
    --color-diff-blob-selected-line-highlight-mix-blend-mode: multiply;
    --color-global-nav-logo: #ffffff;
    --color-global-nav-bg: #24292f;
    --color-global-nav-text: #ffffff;
    --color-global-nav-icon: #ffffff;
    --color-global-nav-input-bg: #f6f8fa;
    --color-global-nav-input-border: #f6f8fa;
    --color-global-nav-input-icon: #afb8c1;
    --color-global-nav-input-placeholder: #8c959f;
    --color-intro-shelf-gradient-left: #ddf4ff;
    --color-intro-shelf-gradient-right: #dafbe1;
    --color-intro-shelf-gradient-in: #ffffff;
    --color-intro-shelf-gradient-out: rgba(255,255,255,0);
    --color-canvas-default-transparent: rgba(255,255,255,0);
    --color-marketing-icon-primary: #218bff;
    --color-marketing-icon-secondary: #54aeff;
    --color-search-keyword-hl: #fff8c5;
    --color-prettylights-syntax-comment: #6e7781;
    --color-prettylights-syntax-constant: #0550ae;
    --color-prettylights-syntax-entity: #8250df;
    --color-prettylights-syntax-storage-modifier-import: #24292f;
    --color-prettylights-syntax-entity-tag: #116329;
    --color-prettylights-syntax-keyword: #cf222e;
    --color-prettylights-syntax-string: #0a3069;
    --color-prettylights-syntax-variable: #953800;
    --color-prettylights-syntax-brackethighlighter-unmatched: #82071e;
    --color-prettylights-syntax-invalid-illegal-text: #f6f8fa;
    --color-prettylights-syntax-invalid-illegal-bg: #82071e;
    --color-prettylights-syntax-carriage-return-text: #f6f8fa;
    --color-prettylights-syntax-carriage-return-bg: #cf222e;
    --color-prettylights-syntax-string-regexp: #116329;
    --color-prettylights-syntax-markup-list: #3b2300;
    --color-prettylights-syntax-markup-heading: #0550ae;
    --color-prettylights-syntax-markup-italic: #24292f;
    --color-prettylights-syntax-markup-bold: #24292f;
    --color-prettylights-syntax-markup-deleted-text: #82071e;
    --color-prettylights-syntax-markup-deleted-bg: #FFEBE9;
    --color-prettylights-syntax-markup-inserted-text: #116329;
    --color-prettylights-syntax-markup-inserted-bg: #dafbe1;
    --color-prettylights-syntax-markup-changed-text: #953800;
    --color-prettylights-syntax-markup-changed-bg: #ffd8b5;
    --color-prettylights-syntax-markup-ignored-text: #eaeef2;
    --color-prettylights-syntax-markup-ignored-bg: #0550ae;
    --color-prettylights-syntax-meta-diff-range: #8250df;
    --color-prettylights-syntax-brackethighlighter-angle: #57606a;
    --color-prettylights-syntax-sublimelinter-gutter-mark: #8c959f;
    --color-prettylights-syntax-constant-other-reference-link: #0a3069;
    --color-codemirror-text: #24292f;
    --color-codemirror-bg: #ffffff;
    --color-codemirror-gutters-bg: #ffffff;
    --color-codemirror-guttermarker-text: #ffffff;
    --color-codemirror-guttermarker-subtle-text: #6e7781;
    --color-codemirror-linenumber-text: #57606a;
    --color-codemirror-cursor: #24292f;
    --color-codemirror-selection-bg: rgba(84,174,255,0.4);
    --color-codemirror-activeline-bg: rgba(234,238,242,0.5);
    --color-codemirror-matchingbracket-text: #24292f;
    --color-codemirror-lines-bg: #ffffff;
    --color-codemirror-syntax-comment: #24292f;
    --color-codemirror-syntax-constant: #0550ae;
    --color-codemirror-syntax-entity: #8250df;
    --color-codemirror-syntax-keyword: #cf222e;
    --color-codemirror-syntax-storage: #cf222e;
    --color-codemirror-syntax-string: #0a3069;
    --color-codemirror-syntax-support: #0550ae;
    --color-codemirror-syntax-variable: #953800;
    --color-checks-bg: #24292f;
    --color-checks-run-border-width: 0px;
    --color-checks-container-border-width: 0px;
    --color-checks-text-primary: #f6f8fa;
    --color-checks-text-secondary: #8c959f;
    --color-checks-text-link: #54aeff;
    --color-checks-btn-icon: #afb8c1;
    --color-checks-btn-hover-icon: #f6f8fa;
    --color-checks-btn-hover-bg: rgba(255,255,255,0.125);
    --color-checks-input-text: #eaeef2;
    --color-checks-input-placeholder-text: #8c959f;
    --color-checks-input-focus-text: #8c959f;
    --color-checks-input-bg: #32383f;
    --color-checks-input-shadow: none;
    --color-checks-donut-error: #fa4549;
    --color-checks-donut-pending: #bf8700;
    --color-checks-donut-success: #2da44e;
    --color-checks-donut-neutral: #afb8c1;
    --color-checks-dropdown-text: #afb8c1;
    --color-checks-dropdown-bg: #32383f;
    --color-checks-dropdown-border: #424a53;
    --color-checks-dropdown-shadow: rgba(27,31,36,0.3);
    --color-checks-dropdown-hover-text: #f6f8fa;
    --color-checks-dropdown-hover-bg: #424a53;
    --color-checks-dropdown-btn-hover-text: #f6f8fa;
    --color-checks-dropdown-btn-hover-bg: #32383f;
    --color-checks-scrollbar-thumb-bg: #57606a;
    --color-checks-header-label-text: #d0d7de;
    --color-checks-header-label-open-text: #f6f8fa;
    --color-checks-header-border: #32383f;
    --color-checks-header-icon: #8c959f;
    --color-checks-line-text: #d0d7de;
    --color-checks-line-num-text: rgba(140,149,159,0.75);
    --color-checks-line-timestamp-text: #8c959f;
    --color-checks-line-hover-bg: #32383f;
    --color-checks-line-selected-bg: rgba(33,139,255,0.15);
    --color-checks-line-selected-num-text: #54aeff;
    --color-checks-line-dt-fm-text: #24292f;
    --color-checks-line-dt-fm-bg: #9a6700;
    --color-checks-gate-bg: rgba(125,78,0,0.15);
    --color-checks-gate-text: #d0d7de;
    --color-checks-gate-waiting-text: #afb8c1;
    --color-checks-step-header-open-bg: #32383f;
    --color-checks-step-error-text: #ff8182;
    --color-checks-step-warning-text: #d4a72c;
    --color-checks-logline-text: #8c959f;
    --color-checks-logline-num-text: rgba(140,149,159,0.75);
    --color-checks-logline-debug-text: #c297ff;
    --color-checks-logline-error-text: #d0d7de;
    --color-checks-logline-error-num-text: #ff8182;
    --color-checks-logline-error-bg: rgba(164,14,38,0.15);
    --color-checks-logline-warning-text: #d0d7de;
    --color-checks-logline-warning-num-text: #d4a72c;
    --color-checks-logline-warning-bg: rgba(125,78,0,0.15);
    --color-checks-logline-command-text: #54aeff;
    --color-checks-logline-section-text: #4ac26b;
    --color-checks-ansi-black: #24292f;
    --color-checks-ansi-black-bright: #32383f;
    --color-checks-ansi-white: #d0d7de;
    --color-checks-ansi-white-bright: #d0d7de;
    --color-checks-ansi-gray: #8c959f;
    --color-checks-ansi-red: #ff8182;
    --color-checks-ansi-red-bright: #ffaba8;
    --color-checks-ansi-green: #4ac26b;
    --color-checks-ansi-green-bright: #6fdd8b;
    --color-checks-ansi-yellow: #d4a72c;
    --color-checks-ansi-yellow-bright: #eac54f;
    --color-checks-ansi-blue: #54aeff;
    --color-checks-ansi-blue-bright: #80ccff;
    --color-checks-ansi-magenta: #c297ff;
    --color-checks-ansi-magenta-bright: #d8b9ff;
    --color-checks-ansi-cyan: #76e3ea;
    --color-checks-ansi-cyan-bright: #b3f0ff;
    --color-mktg-success: rgba(36,146,67,1);
    --color-mktg-info: rgba(19,119,234,1);
    --color-mktg-bg-shade-gradient-top: rgba(27,31,36,0.065);
    --color-mktg-bg-shade-gradient-bottom: rgba(27,31,36,0);
    --color-mktg-btn-bg-top: hsla(228,82%,66%,1);
    --color-mktg-btn-bg-bottom: #4969ed;
    --color-mktg-btn-bg-overlay-top: hsla(228,74%,59%,1);
    --color-mktg-btn-bg-overlay-bottom: #3355e0;
    --color-mktg-btn-text: #ffffff;
    --color-mktg-btn-primary-bg-top: hsla(137,56%,46%,1);
    --color-mktg-btn-primary-bg-bottom: #2ea44f;
    --color-mktg-btn-primary-bg-overlay-top: hsla(134,60%,38%,1);
    --color-mktg-btn-primary-bg-overlay-bottom: #22863a;
    --color-mktg-btn-primary-text: #ffffff;
    --color-mktg-btn-enterprise-bg-top: hsla(249,100%,72%,1);
    --color-mktg-btn-enterprise-bg-bottom: #6f57ff;
    --color-mktg-btn-enterprise-bg-overlay-top: hsla(248,65%,63%,1);
    --color-mktg-btn-enterprise-bg-overlay-bottom: #614eda;
    --color-mktg-btn-enterprise-text: #ffffff;
    --color-mktg-btn-outline-text: #4969ed;
    --color-mktg-btn-outline-border: rgba(73,105,237,0.3);
    --color-mktg-btn-outline-hover-text: #3355e0;
    --color-mktg-btn-outline-hover-border: rgba(51,85,224,0.5);
    --color-mktg-btn-outline-focus-border: #4969ed;
    --color-mktg-btn-outline-focus-border-inset: rgba(73,105,237,0.5);
    --color-mktg-btn-dark-text: #ffffff;
    --color-mktg-btn-dark-border: rgba(255,255,255,0.3);
    --color-mktg-btn-dark-hover-text: #ffffff;
    --color-mktg-btn-dark-hover-border: rgba(255,255,255,0.5);
    --color-mktg-btn-dark-focus-border: #ffffff;
    --color-mktg-btn-dark-focus-border-inset: rgba(255,255,255,0.5);
    --color-avatar-bg: #ffffff;
    --color-avatar-border: rgba(27,31,36,0.15);
    --color-avatar-stack-fade: #afb8c1;
    --color-avatar-stack-fade-more: #d0d7de;
    --color-avatar-child-shadow: -2px -2px 0 rgba(255,255,255,0.8);
    --color-overlay-shadow: 0 1px 3px rgba(27,31,36,0.12), 0 8px 24px rgba(66,74,83,0.12);
    --color-header-text: rgba(255,255,255,0.7);
    --color-header-bg: #24292f;
    --color-header-logo: #ffffff;
    --color-header-search-bg: #24292f;
    --color-header-search-border: #57606a;
    --color-ansi-black: #24292f;
    --color-ansi-black-bright: #57606a;
    --color-ansi-white: #6e7781;
    --color-ansi-white-bright: #8c959f;
    --color-ansi-gray: #6e7781;
    --color-ansi-red: #cf222e;
    --color-ansi-red-bright: #a40e26;
    --color-ansi-green: #116329;
    --color-ansi-green-bright: #1a7f37;
    --color-ansi-yellow: #4d2d00;
    --color-ansi-yellow-bright: #633c01;
    --color-ansi-blue: #0969da;
    --color-ansi-blue-bright: #218bff;
    --color-ansi-magenta: #8250df;
    --color-ansi-magenta-bright: #a475f9;
    --color-ansi-cyan: #1b7c83;
    --color-ansi-cyan-bright: #3192aa;
    --color-btn-text: #24292f;
    --color-btn-bg: #f6f8fa;
    --color-btn-border: rgba(27,31,36,0.15);
    --color-btn-shadow: 0 1px 0 rgba(27,31,36,0.04);
    --color-btn-inset-shadow: inset 0 1px 0 rgba(255,255,255,0.25);
    --color-btn-hover-bg: #f3f4f6;
    --color-btn-hover-border: rgba(27,31,36,0.15);
    --color-btn-active-bg: hsla(220,14%,93%,1);
    --color-btn-active-border: rgba(27,31,36,0.15);
    --color-btn-selected-bg: hsla(220,14%,94%,1);
    --color-btn-focus-bg: #f6f8fa;
    --color-btn-focus-border: rgba(27,31,36,0.15);
    --color-btn-focus-shadow: 0 0 0 3px rgba(9,105,218,0.3);
    --color-btn-shadow-active: inset 0 0.15em 0.3em rgba(27,31,36,0.15);
    --color-btn-shadow-input-focus: 0 0 0 0.2em rgba(9,105,218,0.3);
    --color-btn-counter-bg: rgba(27,31,36,0.08);
    --color-btn-primary-text: #ffffff;
    --color-btn-primary-bg: #2da44e;
    --color-btn-primary-border: rgba(27,31,36,0.15);
    --color-btn-primary-shadow: 0 1px 0 rgba(27,31,36,0.1);
    --color-btn-primary-inset-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
    --color-btn-primary-hover-bg: #2c974b;
    --color-btn-primary-hover-border: rgba(27,31,36,0.15);
    --color-btn-primary-selected-bg: hsla(137,55%,36%,1);
    --color-btn-primary-selected-shadow: inset 0 1px 0 rgba(0,45,17,0.2);
    --color-btn-primary-disabled-text: rgba(255,255,255,0.8);
    --color-btn-primary-disabled-bg: #94d3a2;
    --color-btn-primary-disabled-border: rgba(27,31,36,0.15);
    --color-btn-primary-focus-bg: #2da44e;
    --color-btn-primary-focus-border: rgba(27,31,36,0.15);
    --color-btn-primary-focus-shadow: 0 0 0 3px rgba(45,164,78,0.4);
    --color-btn-primary-icon: rgba(255,255,255,0.8);
    --color-btn-primary-counter-bg: rgba(255,255,255,0.2);
    --color-btn-outline-text: #0969da;
    --color-btn-outline-hover-text: #ffffff;
    --color-btn-outline-hover-bg: #0969da;
    --color-btn-outline-hover-border: rgba(27,31,36,0.15);
    --color-btn-outline-hover-shadow: 0 1px 0 rgba(27,31,36,0.1);
    --color-btn-outline-hover-inset-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
    --color-btn-outline-hover-counter-bg: rgba(255,255,255,0.2);
    --color-btn-outline-selected-text: #ffffff;
    --color-btn-outline-selected-bg: hsla(212,92%,42%,1);
    --color-btn-outline-selected-border: rgba(27,31,36,0.15);
    --color-btn-outline-selected-shadow: inset 0 1px 0 rgba(0,33,85,0.2);
    --color-btn-outline-disabled-text: rgba(9,105,218,0.5);
    --color-btn-outline-disabled-bg: #f6f8fa;
    --color-btn-outline-disabled-counter-bg: rgba(9,105,218,0.05);
    --color-btn-outline-focus-border: rgba(27,31,36,0.15);
    --color-btn-outline-focus-shadow: 0 0 0 3px rgba(5,80,174,0.4);
    --color-btn-outline-counter-bg: rgba(9,105,218,0.1);
    --color-btn-danger-text: #cf222e;
    --color-btn-danger-hover-text: #ffffff;
    --color-btn-danger-hover-bg: #a40e26;
    --color-btn-danger-hover-border: rgba(27,31,36,0.15);
    --color-btn-danger-hover-shadow: 0 1px 0 rgba(27,31,36,0.1);
    --color-btn-danger-hover-inset-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
    --color-btn-danger-hover-counter-bg: rgba(255,255,255,0.2);
    --color-btn-danger-selected-text: #ffffff;
    --color-btn-danger-selected-bg: hsla(356,72%,44%,1);
    --color-btn-danger-selected-border: rgba(27,31,36,0.15);
    --color-btn-danger-selected-shadow: inset 0 1px 0 rgba(76,0,20,0.2);
    --color-btn-danger-disabled-text: rgba(207,34,46,0.5);
    --color-btn-danger-disabled-bg: #f6f8fa;
    --color-btn-danger-disabled-counter-bg: rgba(207,34,46,0.05);
    --color-btn-danger-focus-border: rgba(27,31,36,0.15);
    --color-btn-danger-focus-shadow: 0 0 0 3px rgba(164,14,38,0.4);
    --color-btn-danger-counter-bg: rgba(207,34,46,0.1);
    --color-btn-danger-icon: #cf222e;
    --color-btn-danger-hover-icon: #ffffff;
    --color-fg-default: #24292f;
    --color-fg-muted: #57606a;
    --color-fg-subtle: #6e7781;
    --color-fg-on-emphasis: #ffffff;
    --color-canvas-default: #ffffff;
    --color-canvas-overlay: #ffffff;
    --color-canvas-inset: #f6f8fa;
    --color-canvas-subtle: #f6f8fa;
    --color-neutral-emphasis-plus: #24292f;
    --color-neutral-emphasis: #6e7781;
    --color-neutral-muted: rgba(175,184,193,0.2);
    --color-neutral-subtle: rgba(234,238,242,0.5);
    --color-accent-fg: #0969da;
    --color-accent-emphasis: #0969da;
    --color-accent-muted: rgba(84,174,255,0.4);
    --color-accent-subtle: #ddf4ff;
    --color-success-fg: #1a7f37;
    --color-success-emphasis: #2da44e;
    --color-success-muted: rgba(74,194,107,0.4);
    --color-success-subtle: #dafbe1;
    --color-attention-fg: #9a6700;
    --color-attention-emphasis: #bf8700;
    --color-attention-muted: rgba(212,167,44,0.4);
    --color-attention-subtle: #fff8c5;
    --color-severe-fg: #bc4c00;
    --color-severe-emphasis: #bc4c00;
    --color-severe-muted: rgba(251,143,68,0.4);
    --color-severe-subtle: #fff1e5;
    --color-danger-fg: #cf222e;
    --color-danger-emphasis: #cf222e;
    --color-danger-muted: rgba(255,129,130,0.4);
    --color-danger-subtle: #FFEBE9;
    --color-done-fg: #8250df;
    --color-done-emphasis: #8250df;
    --color-done-muted: rgba(194,151,255,0.4);
    --color-done-subtle: #fbefff;
    --color-sponsors-fg: #bf3989;
    --color-sponsors-emphasis: #bf3989;
    --color-sponsors-muted: rgba(255,128,200,0.4);
    --color-sponsors-subtle: #ffeff7;
    --color-primer-canvas-backdrop: rgba(27,31,36,0.5);
    --color-primer-canvas-sticky: rgba(255,255,255,0.95);
    --color-primer-border-active: #FD8C73;
    --color-primer-border-contrast: rgba(27,31,36,0.1);
    --color-primer-shadow-highlight: inset 0 1px 0 rgba(255,255,255,0.25);
    --color-primer-shadow-inset: inset 0 1px 0 rgba(208,215,222,0.2);
    --color-primer-shadow-focus: 0 0 0 3px rgba(9,105,218,0.3);
    --color-scale-black: #1b1f24;
    --color-scale-white: #ffffff;
    --color-scale-gray-0: #f6f8fa;
    --color-scale-gray-1: #eaeef2;
    --color-scale-gray-2: #d0d7de;
    --color-scale-gray-3: #afb8c1;
    --color-scale-gray-4: #8c959f;
    --color-scale-gray-5: #6e7781;
    --color-scale-gray-6: #57606a;
    --color-scale-gray-7: #424a53;
    --color-scale-gray-8: #32383f;
    --color-scale-gray-9: #24292f;
    --color-scale-blue-0: #ddf4ff;
    --color-scale-blue-1: #b6e3ff;
    --color-scale-blue-2: #80ccff;
    --color-scale-blue-3: #54aeff;
    --color-scale-blue-4: #218bff;
    --color-scale-blue-5: #0969da;
    --color-scale-blue-6: #0550ae;
    --color-scale-blue-7: #033d8b;
    --color-scale-blue-8: #0a3069;
    --color-scale-blue-9: #002155;
    --color-scale-green-0: #dafbe1;
    --color-scale-green-1: #aceebb;
    --color-scale-green-2: #6fdd8b;
    --color-scale-green-3: #4ac26b;
    --color-scale-green-4: #2da44e;
    --color-scale-green-5: #1a7f37;
    --color-scale-green-6: #116329;
    --color-scale-green-7: #044f1e;
    --color-scale-green-8: #003d16;
    --color-scale-green-9: #002d11;
    --color-scale-yellow-0: #fff8c5;
    --color-scale-yellow-1: #fae17d;
    --color-scale-yellow-2: #eac54f;
    --color-scale-yellow-3: #d4a72c;
    --color-scale-yellow-4: #bf8700;
    --color-scale-yellow-5: #9a6700;
    --color-scale-yellow-6: #7d4e00;
    --color-scale-yellow-7: #633c01;
    --color-scale-yellow-8: #4d2d00;
    --color-scale-yellow-9: #3b2300;
    --color-scale-orange-0: #fff1e5;
    --color-scale-orange-1: #ffd8b5;
    --color-scale-orange-2: #ffb77c;
    --color-scale-orange-3: #fb8f44;
    --color-scale-orange-4: #e16f24;
    --color-scale-orange-5: #bc4c00;
    --color-scale-orange-6: #953800;
    --color-scale-orange-7: #762c00;
    --color-scale-orange-8: #5c2200;
    --color-scale-orange-9: #471700;
    --color-scale-red-0: #FFEBE9;
    --color-scale-red-1: #ffcecb;
    --color-scale-red-2: #ffaba8;
    --color-scale-red-3: #ff8182;
    --color-scale-red-4: #fa4549;
    --color-scale-red-5: #cf222e;
    --color-scale-red-6: #a40e26;
    --color-scale-red-7: #82071e;
    --color-scale-red-8: #660018;
    --color-scale-red-9: #4c0014;
    --color-scale-purple-0: #fbefff;
    --color-scale-purple-1: #ecd8ff;
    --color-scale-purple-2: #d8b9ff;
    --color-scale-purple-3: #c297ff;
    --color-scale-purple-4: #a475f9;
    --color-scale-purple-5: #8250df;
    --color-scale-purple-6: #6639ba;
    --color-scale-purple-7: #512a97;
    --color-scale-purple-8: #3e1f79;
    --color-scale-purple-9: #2e1461;
    --color-scale-pink-0: #ffeff7;
    --color-scale-pink-1: #ffd3eb;
    --color-scale-pink-2: #ffadda;
    --color-scale-pink-3: #ff80c8;
    --color-scale-pink-4: #e85aad;
    --color-scale-pink-5: #bf3989;
    --color-scale-pink-6: #99286e;
    --color-scale-pink-7: #772057;
    --color-scale-pink-8: #611347;
    --color-scale-pink-9: #4d0336;
    --color-scale-coral-0: #FFF0EB;
    --color-scale-coral-1: #FFD6CC;
    --color-scale-coral-2: #FFB4A1;
    --color-scale-coral-3: #FD8C73;
    --color-scale-coral-4: #EC6547;
    --color-scale-coral-5: #C4432B;
    --color-scale-coral-6: #9E2F1C;
    --color-scale-coral-7: #801F0F;
    --color-scale-coral-8: #691105;
    --color-scale-coral-9: #510901;
  }
}
[data-color-mode=light][data-light-theme=dark],
[data-color-mode=dark][data-dark-theme=dark] {
  --color-auto-black: #f0f6fc;
  --color-auto-white: #010409;
  --color-auto-gray-0: #0d1117;
  --color-auto-gray-1: #161b22;
  --color-auto-gray-2: #21262d;
  --color-auto-gray-3: #30363d;
  --color-auto-gray-4: #484f58;
  --color-auto-gray-5: #6e7681;
  --color-auto-gray-6: #8b949e;
  --color-auto-gray-7: #b1bac4;
  --color-auto-gray-8: #c9d1d9;
  --color-auto-gray-9: #f0f6fc;
  --color-auto-blue-0: #051d4d;
  --color-auto-blue-1: #0c2d6b;
  --color-auto-blue-2: #0d419d;
  --color-auto-blue-3: #1158c7;
  --color-auto-blue-4: #1f6feb;
  --color-auto-blue-5: #388bfd;
  --color-auto-blue-6: #58a6ff;
  --color-auto-blue-7: #79c0ff;
  --color-auto-blue-8: #a5d6ff;
  --color-auto-blue-9: #cae8ff;
  --color-auto-green-0: #04260f;
  --color-auto-green-1: #033a16;
  --color-auto-green-2: #0f5323;
  --color-auto-green-3: #196c2e;
  --color-auto-green-4: #238636;
  --color-auto-green-5: #2ea043;
  --color-auto-green-6: #3fb950;
  --color-auto-green-7: #56d364;
  --color-auto-green-8: #7ee787;
  --color-auto-green-9: #aff5b4;
  --color-auto-yellow-0: #341a00;
  --color-auto-yellow-1: #4b2900;
  --color-auto-yellow-2: #693e00;
  --color-auto-yellow-3: #845306;
  --color-auto-yellow-4: #9e6a03;
  --color-auto-yellow-5: #bb8009;
  --color-auto-yellow-6: #d29922;
  --color-auto-yellow-7: #e3b341;
  --color-auto-yellow-8: #f2cc60;
  --color-auto-yellow-9: #f8e3a1;
  --color-auto-orange-0: #3d1300;
  --color-auto-orange-1: #5a1e02;
  --color-auto-orange-2: #762d0a;
  --color-auto-orange-3: #9b4215;
  --color-auto-orange-4: #bd561d;
  --color-auto-orange-5: #db6d28;
  --color-auto-orange-6: #f0883e;
  --color-auto-orange-7: #ffa657;
  --color-auto-orange-8: #ffc680;
  --color-auto-orange-9: #ffdfb6;
  --color-auto-red-0: #490202;
  --color-auto-red-1: #67060c;
  --color-auto-red-2: #8e1519;
  --color-auto-red-3: #b62324;
  --color-auto-red-4: #da3633;
  --color-auto-red-5: #f85149;
  --color-auto-red-6: #ff7b72;
  --color-auto-red-7: #ffa198;
  --color-auto-red-8: #ffc1ba;
  --color-auto-red-9: #ffdcd7;
  --color-auto-purple-0: #271052;
  --color-auto-purple-1: #3c1e70;
  --color-auto-purple-2: #553098;
  --color-auto-purple-3: #6e40c9;
  --color-auto-purple-4: #8957e5;
  --color-auto-purple-5: #a371f7;
  --color-auto-purple-6: #bc8cff;
  --color-auto-purple-7: #d2a8ff;
  --color-auto-purple-8: #e2c5ff;
  --color-auto-purple-9: #eddeff;
  --color-auto-pink-0: #42062a;
  --color-auto-pink-1: #5e103e;
  --color-auto-pink-2: #7d2457;
  --color-auto-pink-3: #9e3670;
  --color-auto-pink-4: #bf4b8a;
  --color-auto-pink-5: #db61a2;
  --color-auto-pink-6: #f778ba;
  --color-auto-pink-7: #ff9bce;
  --color-auto-pink-8: #ffbedd;
  --color-auto-pink-9: #ffdaec;
  --color-text-primary: #c9d1d9;
  --color-text-secondary: #8b949e;
  --color-text-tertiary: #8b949e;
  --color-text-placeholder: #484f58;
  --color-text-disabled: #8b949e;
  --color-text-inverse: #f0f6fc;
  --color-text-link: #58a6ff;
  --color-text-danger: #f85149;
  --color-text-success: #3fb950;
  --color-text-warning: #d29922;
  --color-text-white: #f0f6fc;
  --color-icon-primary: #c9d1d9;
  --color-icon-secondary: #8b949e;
  --color-icon-tertiary: #8b949e;
  --color-icon-info: #58a6ff;
  --color-icon-danger: #f85149;
  --color-icon-success: #3fb950;
  --color-icon-warning: #d29922;
  --color-border-primary: #30363d;
  --color-border-secondary: #21262d;
  --color-border-tertiary: #30363d;
  --color-border-overlay: #30363d;
  --color-border-inverse: #f0f6fc;
  --color-border-info: #1f6feb;
  --color-border-danger: #da3633;
  --color-border-success: #238636;
  --color-border-warning: #9e6a03;
  --color-border-default: #30363d;
  --color-border-muted: #21262d;
  --color-border-subtle: rgba(240,246,252,0.1);
  --color-bg-canvas: #0d1117;
  --color-bg-canvas-mobile: rgba(0,0,0,0);
  --color-bg-canvas-inverse: #6e7681;
  --color-bg-canvas-inset: #010409;
  --color-bg-primary: #0d1117;
  --color-bg-secondary: #161b22;
  --color-bg-tertiary: #161b22;
  --color-bg-overlay: #161b22;
  --color-bg-backdrop: rgba(1,4,9,0.8);
  --color-bg-info: rgba(56,139,253,0.15);
  --color-bg-info-inverse: #1f6feb;
  --color-bg-danger: rgba(248,81,73,0.15);
  --color-bg-danger-inverse: #da3633;
  --color-bg-success: rgba(46,160,67,0.15);
  --color-bg-success-inverse: #238636;
  --color-bg-warning: rgba(187,128,9,0.15);
  --color-bg-warning-inverse: #9e6a03;
  --color-shadow-highlight: 0 0 transparent;
  --color-shadow-inset: 0 0 transparent;
  --color-shadow-small: 0 0 transparent;
  --color-shadow-medium: 0 3px 6px #010409;
  --color-shadow-large: 0 8px 24px #010409;
  --color-shadow-extra-large: 0 12px 48px #010409;
  --color-state-hover-primary-bg: #1f6feb;
  --color-state-hover-primary-border: #1f6feb;
  --color-state-hover-primary-text: #f0f6fc;
  --color-state-hover-primary-icon: #f0f6fc;
  --color-state-hover-secondary-bg: rgba(110,118,129,0.1);
  --color-state-hover-secondary-border: rgba(110,118,129,0.1);
  --color-state-selected-primary-bg: #1f6feb;
  --color-state-selected-primary-border: #1f6feb;
  --color-state-selected-primary-text: #f0f6fc;
  --color-state-selected-primary-icon: #f0f6fc;
  --color-state-focus-border: #1f6feb;
  --color-state-focus-shadow: 0 0 0 3px #0c2d6b;
  --color-fade-fg-10: rgba(240,246,252,0.1);
  --color-fade-fg-15: rgba(240,246,252,0.15);
  --color-fade-fg-30: rgba(240,246,252,0.3);
  --color-fade-fg-50: rgba(240,246,252,0.5);
  --color-fade-fg-70: rgba(240,246,252,0.7);
  --color-fade-fg-85: rgba(240,246,252,0.85);
  --color-fade-black-10: rgba(1,4,9,0.1);
  --color-fade-black-15: rgba(1,4,9,0.15);
  --color-fade-black-30: rgba(1,4,9,0.3);
  --color-fade-black-50: rgba(1,4,9,0.5);
  --color-fade-black-70: rgba(1,4,9,0.7);
  --color-fade-black-85: rgba(1,4,9,0.85);
  --color-fade-white-10: rgba(240,246,252,0.1);
  --color-fade-white-15: rgba(240,246,252,0.15);
  --color-fade-white-30: rgba(240,246,252,0.3);
  --color-fade-white-50: rgba(240,246,252,0.5);
  --color-fade-white-70: rgba(240,246,252,0.7);
  --color-fade-white-85: rgba(240,246,252,0.85);
  --color-alert-info-text: #c9d1d9;
  --color-alert-info-icon: #58a6ff;
  --color-alert-info-bg: rgba(56,139,253,0.15);
  --color-alert-info-border: rgba(56,139,253,0.4);
  --color-alert-warn-text: #c9d1d9;
  --color-alert-warn-icon: #d29922;
  --color-alert-warn-bg: rgba(187,128,9,0.15);
  --color-alert-warn-border: rgba(187,128,9,0.4);
  --color-alert-error-text: #c9d1d9;
  --color-alert-error-icon: #f85149;
  --color-alert-error-bg: rgba(248,81,73,0.15);
  --color-alert-error-border: rgba(248,81,73,0.4);
  --color-alert-success-text: #c9d1d9;
  --color-alert-success-icon: #3fb950;
  --color-alert-success-bg: rgba(46,160,67,0.15);
  --color-alert-success-border: rgba(46,160,67,0.4);
  --color-autocomplete-shadow: 0 3px 6px #010409;
  --color-autocomplete-row-border: #21262d;
  --color-blankslate-icon: #8b949e;
  --color-counter-text: #c9d1d9;
  --color-counter-bg: rgba(110,118,129,0.4);
  --color-counter-primary-text: #f0f6fc;
  --color-counter-primary-bg: #6e7681;
  --color-counter-secondary-text: #8b949e;
  --color-counter-secondary-bg: rgba(110,118,129,0.1);
  --color-box-blue-border: rgba(56,139,253,0.4);
  --color-box-row-yellow-bg: rgba(187,128,9,0.15);
  --color-box-row-blue-bg: rgba(56,139,253,0.15);
  --color-box-header-blue-bg: rgba(56,139,253,0.15);
  --color-box-header-blue-border: rgba(56,139,253,0.4);
  --color-box-border-info: rgba(56,139,253,0.4);
  --color-box-bg-info: rgba(56,139,253,0.15);
  --color-box-border-warning: rgba(187,128,9,0.4);
  --color-box-bg-warning: rgba(187,128,9,0.15);
  --color-branch-name-text: #8b949e;
  --color-branch-name-icon: #8b949e;
  --color-branch-name-bg: rgba(56,139,253,0.15);
  --color-branch-name-link-text: #58a6ff;
  --color-branch-name-link-icon: #58a6ff;
  --color-branch-name-link-bg: rgba(56,139,253,0.15);
  --color-markdown-code-bg: rgba(110,118,129,0.4);
  --color-markdown-frame-border: #30363d;
  --color-markdown-blockquote-border: #30363d;
  --color-markdown-table-border: #30363d;
  --color-markdown-table-tr-border: #21262d;
  --color-filter-item-bar-bg: rgba(110,118,129,0.1);
  --color-hidden-text-expander-bg: rgba(110,118,129,0.4);
  --color-hidden-text-expander-bg-hover: rgba(56,139,253,0.4);
  --color-drag-and-drop-border: #30363d;
  --color-upload-enabled-border: #30363d;
  --color-upload-enabled-border-focused: #1f6feb;
  --color-previewable-comment-form-border: #30363d;
  --color-verified-badge-text: #3fb950;
  --color-verified-badge-bg: #0d1117;
  --color-verified-badge-border: #30363d;
  --color-social-count-bg: #0d1117;
  --color-tooltip-text: #f0f6fc;
  --color-tooltip-bg: #6e7681;
  --color-files-explorer-icon: #58a6ff;
  --color-hl-author-bg: rgba(56,139,253,0.15);
  --color-hl-author-border: rgba(56,139,253,0.4);
  --color-logo-subdued: rgba(110,118,129,0.4);
  --color-discussion-border: rgba(46,160,67,0.4);
  --color-discussion-bg-success: #238636;
  --color-actions-workflow-table-sticky-bg: rgba(13,17,23,0.95);
  --color-repo-language-color-border: rgba(240,246,252,0.2);
  --color-code-selection-bg: rgba(56,139,253,0.4);
  --color-highlight-text: #c9d1d9;
  --color-highlight-bg: rgba(187,128,9,0.15);
  --color-blob-line-highlight-bg: rgba(187,128,9,0.15);
  --color-blob-line-highlight-border: rgba(187,128,9,0.4);
  --color-topic-tag-text: #58a6ff;
  --color-topic-tag-bg: rgba(56,139,253,0.15);
  --color-topic-tag-hover-bg: #1f6feb;
  --color-topic-tag-active-bg: rgba(56,139,253,0.15);
  --color-topic-tag-border: rgba(0,0,0,0);
  --color-footer-invertocat-octicon: #484f58;
  --color-footer-invertocat-octicon-hover: #8b949e;
  --color-dropdown-shadow: 0 8px 24px #010409;
  --color-label-border: #30363d;
  --color-label-primary-text: #c9d1d9;
  --color-label-primary-border: #6e7681;
  --color-label-secondary-text: #8b949e;
  --color-label-secondary-border: #30363d;
  --color-label-info-text: #58a6ff;
  --color-label-info-border: #1f6feb;
  --color-label-success-text: #3fb950;
  --color-label-success-border: #238636;
  --color-label-warning-text: #d29922;
  --color-label-warning-border: #9e6a03;
  --color-label-danger-text: #f85149;
  --color-label-danger-border: #da3633;
  --color-label-orange-text: #db6d28;
  --color-label-orange-border: #bd561d;
  --color-input-bg: #0d1117;
  --color-input-contrast-bg: #010409;
  --color-input-border: #30363d;
  --color-input-shadow: 0 0 transparent;
  --color-input-disabled-border: #30363d;
  --color-input-warning-border: #9e6a03;
  --color-input-error-border: #da3633;
  --color-input-tooltip-success-text: #c9d1d9;
  --color-input-tooltip-success-bg: rgba(46,160,67,0.15);
  --color-input-tooltip-success-border: rgba(46,160,67,0.4);
  --color-input-tooltip-warning-text: #c9d1d9;
  --color-input-tooltip-warning-bg: rgba(187,128,9,0.15);
  --color-input-tooltip-warning-border: rgba(187,128,9,0.4);
  --color-input-tooltip-error-text: #c9d1d9;
  --color-input-tooltip-error-bg: rgba(248,81,73,0.15);
  --color-input-tooltip-error-border: rgba(248,81,73,0.4);
  --color-input-disabled-bg: rgba(110,118,129,0);
  --color-toast-text: #c9d1d9;
  --color-toast-bg: #0d1117;
  --color-toast-border: #30363d;
  --color-toast-shadow: 0 8px 24px #010409;
  --color-toast-icon: #f0f6fc;
  --color-toast-icon-bg: #1f6feb;
  --color-toast-icon-border: rgba(0,0,0,0);
  --color-toast-success-text: #c9d1d9;
  --color-toast-success-border: #30363d;
  --color-toast-success-icon: #f0f6fc;
  --color-toast-success-icon-bg: #238636;
  --color-toast-success-icon-border: rgba(0,0,0,0);
  --color-toast-warning-text: #c9d1d9;
  --color-toast-warning-border: #30363d;
  --color-toast-warning-icon: #c9d1d9;
  --color-toast-warning-icon-bg: #9e6a03;
  --color-toast-warning-icon-border: rgba(0,0,0,0);
  --color-toast-danger-text: #c9d1d9;
  --color-toast-danger-border: #30363d;
  --color-toast-danger-icon: #f0f6fc;
  --color-toast-danger-icon-bg: #da3633;
  --color-toast-danger-icon-border: rgba(0,0,0,0);
  --color-toast-loading-text: #c9d1d9;
  --color-toast-loading-border: #30363d;
  --color-toast-loading-icon: #f0f6fc;
  --color-toast-loading-icon-bg: #6e7681;
  --color-toast-loading-icon-border: rgba(0,0,0,0);
  --color-timeline-text: #8b949e;
  --color-timeline-badge-success-border: rgba(0,0,0,0);
  --color-timeline-target-badge-border: #1f6feb;
  --color-timeline-target-badge-shadow: rgba(56,139,253,0.4);
  --color-timeline-badge-bg: #21262d;
  --color-diffstat-neutral-bg: rgba(110,118,129,0.4);
  --color-diffstat-neutral-border: rgba(240,246,252,0.1);
  --color-diffstat-deletion-border: rgba(240,246,252,0.1);
  --color-diffstat-addition-border: rgba(240,246,252,0.1);
  --color-diffstat-deletion-bg: #da3633;
  --color-diffstat-addition-bg: #3fb950;
  --color-diff-addition-text: #c9d1d9;
  --color-diff-addition-bg: rgba(46,160,67,0.15);
  --color-diff-addition-border: rgba(46,160,67,0.4);
  --color-diff-deletion-text: #c9d1d9;
  --color-diff-deletion-bg: rgba(248,81,73,0.15);
  --color-diff-deletion-border: rgba(248,81,73,0.4);
  --color-diff-change-text: #d29922;
  --color-diff-change-bg: rgba(187,128,9,0.15);
  --color-diff-change-border: rgba(187,128,9,0.4);
  --color-merge-box-success-icon-bg: #238636;
  --color-merge-box-success-icon-text: #f0f6fc;
  --color-merge-box-success-icon-border: rgba(0,0,0,0);
  --color-merge-box-success-indicator-bg: #238636;
  --color-merge-box-success-indicator-border: rgba(0,0,0,0);
  --color-merge-box-merged-icon-bg: #8957e5;
  --color-merge-box-merged-icon-text: #f0f6fc;
  --color-merge-box-merged-icon-border: rgba(0,0,0,0);
  --color-merge-box-merged-box-border: #8957e5;
  --color-merge-box-neutral-icon-bg: #6e7681;
  --color-merge-box-neutral-icon-text: #f0f6fc;
  --color-merge-box-neutral-icon-border: rgba(0,0,0,0);
  --color-merge-box-neutral-indicator-bg: #6e7681;
  --color-merge-box-neutral-indicator-border: rgba(0,0,0,0);
  --color-merge-box-warning-icon-bg: #9e6a03;
  --color-merge-box-warning-icon-text: #f0f6fc;
  --color-merge-box-warning-icon-border: rgba(0,0,0,0);
  --color-merge-box-warning-box-border: #9e6a03;
  --color-merge-box-warning-merge-highlight: rgba(0,0,0,0);
  --color-merge-box-error-icon-bg: #da3633;
  --color-merge-box-error-icon-text: #f0f6fc;
  --color-merge-box-error-icon-border: rgba(0,0,0,0);
  --color-merge-box-error-indicator-bg: #da3633;
  --color-merge-box-error-indicator-border: rgba(0,0,0,0);
  --color-underlinenav-border: rgba(0,0,0,0);
  --color-underlinenav-border-hover: rgba(110,118,129,0.4);
  --color-underlinenav-border-active: #F78166;
  --color-underlinenav-text: #c9d1d9;
  --color-underlinenav-text-hover: #c9d1d9;
  --color-underlinenav-text-active: #c9d1d9;
  --color-underlinenav-icon: #484f58;
  --color-underlinenav-icon-hover: #484f58;
  --color-underlinenav-icon-active: #c9d1d9;
  --color-underlinenav-counter-text: #c9d1d9;
  --color-underlinenav-counter-bg: rgba(110,118,129,0.4);
  --color-select-menu-border-secondary: #21262d;
  --color-select-menu-shadow: 0 8px 24px #010409;
  --color-select-menu-backdrop-bg: rgba(1,4,9,0.8);
  --color-select-menu-backdrop-border: #484f58;
  --color-select-menu-tap-highlight: rgba(48,54,61,0.5);
  --color-select-menu-tap-focus-bg: #0c2d6b;
  --color-sidenav-border-active: #F78166;
  --color-sidenav-selected-bg: #21262d;
  --color-menu-heading-text: #c9d1d9;
  --color-menu-border-active: #F78166;
  --color-menu-bg-active: #161b22;
  --color-project-card-bg: #161b22;
  --color-project-header-bg: #0d1117;
  --color-project-sidebar-bg: #161b22;
  --color-project-gradient-in: #161b22;
  --color-project-gradient-out: rgba(22,27,34,0);
  --color-pr-state-draft-text: #f0f6fc;
  --color-pr-state-draft-bg: #6e7681;
  --color-pr-state-draft-border: rgba(0,0,0,0);
  --color-pr-state-open-text: #f0f6fc;
  --color-pr-state-open-bg: #238636;
  --color-pr-state-open-border: rgba(0,0,0,0);
  --color-pr-state-merged-text: #f0f6fc;
  --color-pr-state-merged-bg: #8957e5;
  --color-pr-state-merged-border: rgba(0,0,0,0);
  --color-pr-state-closed-text: #f0f6fc;
  --color-pr-state-closed-bg: #da3633;
  --color-pr-state-closed-border: rgba(0,0,0,0);
  --color-diff-blob-num-text: #484f58;
  --color-diff-blob-num-hover-text: #c9d1d9;
  --color-diff-blob-addition-num-hover-text: #c9d1d9;
  --color-diff-blob-addition-num-text: #c9d1d9;
  --color-diff-blob-addition-fg: #c9d1d9;
  --color-diff-blob-addition-num-bg: rgba(63,185,80,0.3);
  --color-diff-blob-addition-line-bg: rgba(46,160,67,0.15);
  --color-diff-blob-addition-word-bg: rgba(46,160,67,0.4);
  --color-diff-blob-deletion-num-hover-text: #c9d1d9;
  --color-diff-blob-deletion-num-text: #c9d1d9;
  --color-diff-blob-deletion-fg: #c9d1d9;
  --color-diff-blob-deletion-num-bg: rgba(248,81,73,0.3);
  --color-diff-blob-deletion-line-bg: rgba(248,81,73,0.15);
  --color-diff-blob-deletion-word-bg: rgba(248,81,73,0.4);
  --color-diff-blob-hunk-text: #8b949e;
  --color-diff-blob-hunk-num-bg: rgba(56,139,253,0.4);
  --color-diff-blob-hunk-line-bg: rgba(56,139,253,0.15);
  --color-diff-blob-empty-block-bg: rgba(110,118,129,0.1);
  --color-diff-blob-selected-line-highlight-bg: rgba(187,128,9,0.15);
  --color-diff-blob-selected-line-highlight-border: rgba(187,128,9,0.4);
  --color-diff-blob-expander-hover-icon: #f0f6fc;
  --color-diff-blob-expander-hover-bg: #1f6feb;
  --color-diff-blob-expander-icon: #8b949e;
  --color-diff-blob-comment-button-icon: #f0f6fc;
  --color-diff-blob-comment-button-bg: #1f6feb;
  --color-diff-blob-comment-button-gradient-bg: rgba(0,0,0,0);
  --color-diff-blob-selected-line-highlight-mix-blend-mode: screen;
  --color-global-nav-logo: #f0f6fc;
  --color-global-nav-bg: #161b22;
  --color-global-nav-text: #c9d1d9;
  --color-global-nav-icon: #c9d1d9;
  --color-global-nav-input-bg: #0d1117;
  --color-global-nav-input-border: #21262d;
  --color-global-nav-input-icon: #21262d;
  --color-global-nav-input-placeholder: #484f58;
  --color-intro-shelf-gradient-left: rgba(56,139,253,0.15);
  --color-intro-shelf-gradient-right: rgba(46,160,67,0.15);
  --color-intro-shelf-gradient-in: #0d1117;
  --color-intro-shelf-gradient-out: rgba(240,246,252,0);
  --color-canvas-default-transparent: rgba(13,17,23,0);
  --color-marketing-icon-primary: #79c0ff;
  --color-marketing-icon-secondary: #1f6feb;
  --color-search-keyword-hl: rgba(210,153,34,0.4);
  --color-prettylights-syntax-comment: #8b949e;
  --color-prettylights-syntax-constant: #79c0ff;
  --color-prettylights-syntax-entity: #d2a8ff;
  --color-prettylights-syntax-storage-modifier-import: #c9d1d9;
  --color-prettylights-syntax-entity-tag: #7ee787;
  --color-prettylights-syntax-keyword: #ff7b72;
  --color-prettylights-syntax-string: #a5d6ff;
  --color-prettylights-syntax-variable: #ffa657;
  --color-prettylights-syntax-brackethighlighter-unmatched: #f85149;
  --color-prettylights-syntax-invalid-illegal-text: #f0f6fc;
  --color-prettylights-syntax-invalid-illegal-bg: #8e1519;
  --color-prettylights-syntax-carriage-return-text: #f0f6fc;
  --color-prettylights-syntax-carriage-return-bg: #b62324;
  --color-prettylights-syntax-string-regexp: #7ee787;
  --color-prettylights-syntax-markup-list: #f2cc60;
  --color-prettylights-syntax-markup-heading: #1f6feb;
  --color-prettylights-syntax-markup-italic: #c9d1d9;
  --color-prettylights-syntax-markup-bold: #c9d1d9;
  --color-prettylights-syntax-markup-deleted-text: #ffdcd7;
  --color-prettylights-syntax-markup-deleted-bg: #67060c;
  --color-prettylights-syntax-markup-inserted-text: #aff5b4;
  --color-prettylights-syntax-markup-inserted-bg: #033a16;
  --color-prettylights-syntax-markup-changed-text: #ffdfb6;
  --color-prettylights-syntax-markup-changed-bg: #5a1e02;
  --color-prettylights-syntax-markup-ignored-text: #c9d1d9;
  --color-prettylights-syntax-markup-ignored-bg: #1158c7;
  --color-prettylights-syntax-meta-diff-range: #d2a8ff;
  --color-prettylights-syntax-brackethighlighter-angle: #8b949e;
  --color-prettylights-syntax-sublimelinter-gutter-mark: #484f58;
  --color-prettylights-syntax-constant-other-reference-link: #a5d6ff;
  --color-codemirror-text: #c9d1d9;
  --color-codemirror-bg: #0d1117;
  --color-codemirror-gutters-bg: #0d1117;
  --color-codemirror-guttermarker-text: #0d1117;
  --color-codemirror-guttermarker-subtle-text: #484f58;
  --color-codemirror-linenumber-text: #8b949e;
  --color-codemirror-cursor: #c9d1d9;
  --color-codemirror-selection-bg: rgba(56,139,253,0.4);
  --color-codemirror-activeline-bg: rgba(110,118,129,0.1);
  --color-codemirror-matchingbracket-text: #c9d1d9;
  --color-codemirror-lines-bg: #0d1117;
  --color-codemirror-syntax-comment: #8b949e;
  --color-codemirror-syntax-constant: #79c0ff;
  --color-codemirror-syntax-entity: #d2a8ff;
  --color-codemirror-syntax-keyword: #ff7b72;
  --color-codemirror-syntax-storage: #ff7b72;
  --color-codemirror-syntax-string: #a5d6ff;
  --color-codemirror-syntax-support: #79c0ff;
  --color-codemirror-syntax-variable: #ffa657;
  --color-checks-bg: #010409;
  --color-checks-run-border-width: 1px;
  --color-checks-container-border-width: 1px;
  --color-checks-text-primary: #c9d1d9;
  --color-checks-text-secondary: #8b949e;
  --color-checks-text-link: #58a6ff;
  --color-checks-btn-icon: #8b949e;
  --color-checks-btn-hover-icon: #c9d1d9;
  --color-checks-btn-hover-bg: rgba(110,118,129,0.1);
  --color-checks-input-text: #8b949e;
  --color-checks-input-placeholder-text: #484f58;
  --color-checks-input-focus-text: #c9d1d9;
  --color-checks-input-bg: #161b22;
  --color-checks-input-shadow: 0 0 0 1px (obj) => get_1.default(obj, path);
  --color-checks-donut-error: #f85149;
  --color-checks-donut-pending: #d29922;
  --color-checks-donut-success: #2ea043;
  --color-checks-donut-neutral: #8b949e;
  --color-checks-dropdown-text: #c9d1d9;
  --color-checks-dropdown-bg: #161b22;
  --color-checks-dropdown-border: #30363d;
  --color-checks-dropdown-shadow: rgba(1,4,9,0.3);
  --color-checks-dropdown-hover-text: #c9d1d9;
  --color-checks-dropdown-hover-bg: rgba(110,118,129,0.1);
  --color-checks-dropdown-btn-hover-text: #c9d1d9;
  --color-checks-dropdown-btn-hover-bg: rgba(110,118,129,0.1);
  --color-checks-scrollbar-thumb-bg: rgba(110,118,129,0.4);
  --color-checks-header-label-text: #8b949e;
  --color-checks-header-label-open-text: #c9d1d9;
  --color-checks-header-border: #21262d;
  --color-checks-header-icon: #8b949e;
  --color-checks-line-text: #8b949e;
  --color-checks-line-num-text: #484f58;
  --color-checks-line-timestamp-text: #484f58;
  --color-checks-line-hover-bg: rgba(110,118,129,0.1);
  --color-checks-line-selected-bg: rgba(56,139,253,0.15);
  --color-checks-line-selected-num-text: #58a6ff;
  --color-checks-line-dt-fm-text: #f0f6fc;
  --color-checks-line-dt-fm-bg: #9e6a03;
  --color-checks-gate-bg: rgba(187,128,9,0.15);
  --color-checks-gate-text: #8b949e;
  --color-checks-gate-waiting-text: #d29922;
  --color-checks-step-header-open-bg: #161b22;
  --color-checks-step-error-text: #f85149;
  --color-checks-step-warning-text: #d29922;
  --color-checks-logline-text: #8b949e;
  --color-checks-logline-num-text: #484f58;
  --color-checks-logline-debug-text: #a371f7;
  --color-checks-logline-error-text: #8b949e;
  --color-checks-logline-error-num-text: #484f58;
  --color-checks-logline-error-bg: rgba(248,81,73,0.15);
  --color-checks-logline-warning-text: #8b949e;
  --color-checks-logline-warning-num-text: #d29922;
  --color-checks-logline-warning-bg: rgba(187,128,9,0.15);
  --color-checks-logline-command-text: #58a6ff;
  --color-checks-logline-section-text: #3fb950;
  --color-checks-ansi-black: #0d1117;
  --color-checks-ansi-black-bright: #161b22;
  --color-checks-ansi-white: #b1bac4;
  --color-checks-ansi-white-bright: #b1bac4;
  --color-checks-ansi-gray: #6e7681;
  --color-checks-ansi-red: #ff7b72;
  --color-checks-ansi-red-bright: #ffa198;
  --color-checks-ansi-green: #3fb950;
  --color-checks-ansi-green-bright: #56d364;
  --color-checks-ansi-yellow: #d29922;
  --color-checks-ansi-yellow-bright: #e3b341;
  --color-checks-ansi-blue: #58a6ff;
  --color-checks-ansi-blue-bright: #79c0ff;
  --color-checks-ansi-magenta: #bc8cff;
  --color-checks-ansi-magenta-bright: #d2a8ff;
  --color-checks-ansi-cyan: #76e3ea;
  --color-checks-ansi-cyan-bright: #b3f0ff;
  --color-mktg-success: rgba(41,147,61,1);
  --color-mktg-info: rgba(42,123,243,1);
  --color-mktg-bg-shade-gradient-top: rgba(1,4,9,0.065);
  --color-mktg-bg-shade-gradient-bottom: rgba(1,4,9,0);
  --color-mktg-btn-bg-top: hsla(228,82%,66%,1);
  --color-mktg-btn-bg-bottom: #4969ed;
  --color-mktg-btn-bg-overlay-top: hsla(228,74%,59%,1);
  --color-mktg-btn-bg-overlay-bottom: #3355e0;
  --color-mktg-btn-text: #f0f6fc;
  --color-mktg-btn-primary-bg-top: hsla(137,56%,46%,1);
  --color-mktg-btn-primary-bg-bottom: #2ea44f;
  --color-mktg-btn-primary-bg-overlay-top: hsla(134,60%,38%,1);
  --color-mktg-btn-primary-bg-overlay-bottom: #22863a;
  --color-mktg-btn-primary-text: #f0f6fc;
  --color-mktg-btn-enterprise-bg-top: hsla(249,100%,72%,1);
  --color-mktg-btn-enterprise-bg-bottom: #6f57ff;
  --color-mktg-btn-enterprise-bg-overlay-top: hsla(248,65%,63%,1);
  --color-mktg-btn-enterprise-bg-overlay-bottom: #614eda;
  --color-mktg-btn-enterprise-text: #f0f6fc;
  --color-mktg-btn-outline-text: #f0f6fc;
  --color-mktg-btn-outline-border: rgba(240,246,252,0.3);
  --color-mktg-btn-outline-hover-text: #f0f6fc;
  --color-mktg-btn-outline-hover-border: rgba(240,246,252,0.5);
  --color-mktg-btn-outline-focus-border: #f0f6fc;
  --color-mktg-btn-outline-focus-border-inset: rgba(240,246,252,0.5);
  --color-mktg-btn-dark-text: #f0f6fc;
  --color-mktg-btn-dark-border: rgba(240,246,252,0.3);
  --color-mktg-btn-dark-hover-text: #f0f6fc;
  --color-mktg-btn-dark-hover-border: rgba(240,246,252,0.5);
  --color-mktg-btn-dark-focus-border: #f0f6fc;
  --color-mktg-btn-dark-focus-border-inset: rgba(240,246,252,0.5);
  --color-avatar-bg: rgba(240,246,252,0.1);
  --color-avatar-border: rgba(240,246,252,0.1);
  --color-avatar-stack-fade: #30363d;
  --color-avatar-stack-fade-more: #21262d;
  --color-avatar-child-shadow: -2px -2px 0 #0d1117;
  --color-overlay-shadow: 0 0 0 1px #30363d, 0 16px 32px rgba(1,4,9,0.85);
  --color-header-text: rgba(240,246,252,0.7);
  --color-header-bg: #161b22;
  --color-header-logo: #f0f6fc;
  --color-header-search-bg: #0d1117;
  --color-header-search-border: #30363d;
  --color-ansi-black: #484f58;
  --color-ansi-black-bright: #6e7681;
  --color-ansi-white: #b1bac4;
  --color-ansi-white-bright: #f0f6fc;
  --color-ansi-gray: #6e7681;
  --color-ansi-red: #ff7b72;
  --color-ansi-red-bright: #ffa198;
  --color-ansi-green: #3fb950;
  --color-ansi-green-bright: #56d364;
  --color-ansi-yellow: #d29922;
  --color-ansi-yellow-bright: #e3b341;
  --color-ansi-blue: #58a6ff;
  --color-ansi-blue-bright: #79c0ff;
  --color-ansi-magenta: #bc8cff;
  --color-ansi-magenta-bright: #d2a8ff;
  --color-ansi-cyan: #39c5cf;
  --color-ansi-cyan-bright: #56d4dd;
  --color-btn-text: #c9d1d9;
  --color-btn-bg: #21262d;
  --color-btn-border: rgba(240,246,252,0.1);
  --color-btn-shadow: 0 0 transparent;
  --color-btn-inset-shadow: 0 0 transparent;
  --color-btn-hover-bg: #30363d;
  --color-btn-hover-border: #8b949e;
  --color-btn-active-bg: hsla(212,12%,18%,1);
  --color-btn-active-border: #6e7681;
  --color-btn-selected-bg: #161b22;
  --color-btn-focus-bg: #21262d;
  --color-btn-focus-border: #8b949e;
  --color-btn-focus-shadow: 0 0 0 3px rgba(139,148,158,0.3);
  --color-btn-shadow-active: inset 0 0.15em 0.3em rgba(1,4,9,0.15);
  --color-btn-shadow-input-focus: 0 0 0 0.2em rgba(31,111,235,0.3);
  --color-btn-counter-bg: #30363d;
  --color-btn-primary-text: #ffffff;
  --color-btn-primary-bg: #238636;
  --color-btn-primary-border: rgba(240,246,252,0.1);
  --color-btn-primary-shadow: 0 0 transparent;
  --color-btn-primary-inset-shadow: 0 0 transparent;
  --color-btn-primary-hover-bg: #2ea043;
  --color-btn-primary-hover-border: rgba(240,246,252,0.1);
  --color-btn-primary-selected-bg: #238636;
  --color-btn-primary-selected-shadow: 0 0 transparent;
  --color-btn-primary-disabled-text: rgba(240,246,252,0.5);
  --color-btn-primary-disabled-bg: rgba(35,134,54,0.6);
  --color-btn-primary-disabled-border: rgba(240,246,252,0.1);
  --color-btn-primary-focus-bg: #238636;
  --color-btn-primary-focus-border: rgba(240,246,252,0.1);
  --color-btn-primary-focus-shadow: 0 0 0 3px rgba(46,164,79,0.4);
  --color-btn-primary-icon: #f0f6fc;
  --color-btn-primary-counter-bg: rgba(240,246,252,0.2);
  --color-btn-outline-text: #58a6ff;
  --color-btn-outline-hover-text: #58a6ff;
  --color-btn-outline-hover-bg: #30363d;
  --color-btn-outline-hover-border: rgba(240,246,252,0.1);
  --color-btn-outline-hover-shadow: 0 1px 0 rgba(1,4,9,0.1);
  --color-btn-outline-hover-inset-shadow: inset 0 1px 0 rgba(240,246,252,0.03);
  --color-btn-outline-hover-counter-bg: rgba(240,246,252,0.2);
  --color-btn-outline-selected-text: #f0f6fc;
  --color-btn-outline-selected-bg: #0d419d;
  --color-btn-outline-selected-border: rgba(240,246,252,0.1);
  --color-btn-outline-selected-shadow: 0 0 transparent;
  --color-btn-outline-disabled-text: rgba(88,166,255,0.5);
  --color-btn-outline-disabled-bg: #0d1117;
  --color-btn-outline-disabled-counter-bg: rgba(31,111,235,0.05);
  --color-btn-outline-focus-border: rgba(240,246,252,0.1);
  --color-btn-outline-focus-shadow: 0 0 0 3px rgba(17,88,199,0.4);
  --color-btn-outline-counter-bg: rgba(31,111,235,0.1);
  --color-btn-danger-text: #f85149;
  --color-btn-danger-hover-text: #f0f6fc;
  --color-btn-danger-hover-bg: #da3633;
  --color-btn-danger-hover-border: #f85149;
  --color-btn-danger-hover-shadow: 0 0 transparent;
  --color-btn-danger-hover-inset-shadow: 0 0 transparent;
  --color-btn-danger-hover-icon: #f0f6fc;
  --color-btn-danger-hover-counter-bg: rgba(255,255,255,0.2);
  --color-btn-danger-selected-text: #ffffff;
  --color-btn-danger-selected-bg: #b62324;
  --color-btn-danger-selected-border: #ff7b72;
  --color-btn-danger-selected-shadow: 0 0 transparent;
  --color-btn-danger-disabled-text: rgba(248,81,73,0.5);
  --color-btn-danger-disabled-bg: #0d1117;
  --color-btn-danger-disabled-counter-bg: rgba(218,54,51,0.05);
  --color-btn-danger-focus-border: #f85149;
  --color-btn-danger-focus-shadow: 0 0 0 3px rgba(248,81,73,0.4);
  --color-btn-danger-counter-bg: rgba(218,54,51,0.1);
  --color-btn-danger-icon: #f85149;
  --color-fg-default: #c9d1d9;
  --color-fg-muted: #8b949e;
  --color-fg-subtle: #484f58;
  --color-fg-on-emphasis: #f0f6fc;
  --color-canvas-default: #0d1117;
  --color-canvas-overlay: #161b22;
  --color-canvas-inset: #010409;
  --color-canvas-subtle: #161b22;
  --color-neutral-emphasis-plus: #6e7681;
  --color-neutral-emphasis: #6e7681;
  --color-neutral-muted: rgba(110,118,129,0.4);
  --color-neutral-subtle: rgba(110,118,129,0.1);
  --color-accent-fg: #58a6ff;
  --color-accent-emphasis: #1f6feb;
  --color-accent-muted: rgba(56,139,253,0.4);
  --color-accent-subtle: rgba(56,139,253,0.15);
  --color-success-fg: #3fb950;
  --color-success-emphasis: #238636;
  --color-success-muted: rgba(46,160,67,0.4);
  --color-success-subtle: rgba(46,160,67,0.15);
  --color-attention-fg: #d29922;
  --color-attention-emphasis: #9e6a03;
  --color-attention-muted: rgba(187,128,9,0.4);
  --color-attention-subtle: rgba(187,128,9,0.15);
  --color-severe-fg: #db6d28;
  --color-severe-emphasis: #bd561d;
  --color-severe-muted: rgba(219,109,40,0.4);
  --color-severe-subtle: rgba(219,109,40,0.15);
  --color-danger-fg: #f85149;
  --color-danger-emphasis: #da3633;
  --color-danger-muted: rgba(248,81,73,0.4);
  --color-danger-subtle: rgba(248,81,73,0.15);
  --color-done-fg: #a371f7;
  --color-done-emphasis: #8957e5;
  --color-done-muted: rgba(163,113,247,0.4);
  --color-done-subtle: rgba(163,113,247,0.15);
  --color-sponsors-fg: #db61a2;
  --color-sponsors-emphasis: #bf4b8a;
  --color-sponsors-muted: rgba(219,97,162,0.4);
  --color-sponsors-subtle: rgba(219,97,162,0.15);
  --color-primer-canvas-backdrop: rgba(1,4,9,0.8);
  --color-primer-canvas-sticky: rgba(13,17,23,0.95);
  --color-primer-border-active: #F78166;
  --color-primer-border-contrast: rgba(240,246,252,0.2);
  --color-primer-shadow-highlight: 0 0 transparent;
  --color-primer-shadow-inset: 0 0 transparent;
  --color-primer-shadow-focus: 0 0 0 3px #0c2d6b;
  --color-scale-black: #010409;
  --color-scale-white: #f0f6fc;
  --color-scale-gray-0: #f0f6fc;
  --color-scale-gray-1: #c9d1d9;
  --color-scale-gray-2: #b1bac4;
  --color-scale-gray-3: #8b949e;
  --color-scale-gray-4: #6e7681;
  --color-scale-gray-5: #484f58;
  --color-scale-gray-6: #30363d;
  --color-scale-gray-7: #21262d;
  --color-scale-gray-8: #161b22;
  --color-scale-gray-9: #0d1117;
  --color-scale-blue-0: #cae8ff;
  --color-scale-blue-1: #a5d6ff;
  --color-scale-blue-2: #79c0ff;
  --color-scale-blue-3: #58a6ff;
  --color-scale-blue-4: #388bfd;
  --color-scale-blue-5: #1f6feb;
  --color-scale-blue-6: #1158c7;
  --color-scale-blue-7: #0d419d;
  --color-scale-blue-8: #0c2d6b;
  --color-scale-blue-9: #051d4d;
  --color-scale-green-0: #aff5b4;
  --color-scale-green-1: #7ee787;
  --color-scale-green-2: #56d364;
  --color-scale-green-3: #3fb950;
  --color-scale-green-4: #2ea043;
  --color-scale-green-5: #238636;
  --color-scale-green-6: #196c2e;
  --color-scale-green-7: #0f5323;
  --color-scale-green-8: #033a16;
  --color-scale-green-9: #04260f;
  --color-scale-yellow-0: #f8e3a1;
  --color-scale-yellow-1: #f2cc60;
  --color-scale-yellow-2: #e3b341;
  --color-scale-yellow-3: #d29922;
  --color-scale-yellow-4: #bb8009;
  --color-scale-yellow-5: #9e6a03;
  --color-scale-yellow-6: #845306;
  --color-scale-yellow-7: #693e00;
  --color-scale-yellow-8: #4b2900;
  --color-scale-yellow-9: #341a00;
  --color-scale-orange-0: #ffdfb6;
  --color-scale-orange-1: #ffc680;
  --color-scale-orange-2: #ffa657;
  --color-scale-orange-3: #f0883e;
  --color-scale-orange-4: #db6d28;
  --color-scale-orange-5: #bd561d;
  --color-scale-orange-6: #9b4215;
  --color-scale-orange-7: #762d0a;
  --color-scale-orange-8: #5a1e02;
  --color-scale-orange-9: #3d1300;
  --color-scale-red-0: #ffdcd7;
  --color-scale-red-1: #ffc1ba;
  --color-scale-red-2: #ffa198;
  --color-scale-red-3: #ff7b72;
  --color-scale-red-4: #f85149;
  --color-scale-red-5: #da3633;
  --color-scale-red-6: #b62324;
  --color-scale-red-7: #8e1519;
  --color-scale-red-8: #67060c;
  --color-scale-red-9: #490202;
  --color-scale-purple-0: #eddeff;
  --color-scale-purple-1: #e2c5ff;
  --color-scale-purple-2: #d2a8ff;
  --color-scale-purple-3: #bc8cff;
  --color-scale-purple-4: #a371f7;
  --color-scale-purple-5: #8957e5;
  --color-scale-purple-6: #6e40c9;
  --color-scale-purple-7: #553098;
  --color-scale-purple-8: #3c1e70;
  --color-scale-purple-9: #271052;
  --color-scale-pink-0: #ffdaec;
  --color-scale-pink-1: #ffbedd;
  --color-scale-pink-2: #ff9bce;
  --color-scale-pink-3: #f778ba;
  --color-scale-pink-4: #db61a2;
  --color-scale-pink-5: #bf4b8a;
  --color-scale-pink-6: #9e3670;
  --color-scale-pink-7: #7d2457;
  --color-scale-pink-8: #5e103e;
  --color-scale-pink-9: #42062a;
  --color-scale-coral-0: #FFDDD2;
  --color-scale-coral-1: #FFC2B2;
  --color-scale-coral-2: #FFA28B;
  --color-scale-coral-3: #F78166;
  --color-scale-coral-4: #EA6045;
  --color-scale-coral-5: #CF462D;
  --color-scale-coral-6: #AC3220;
  --color-scale-coral-7: #872012;
  --color-scale-coral-8: #640D04;
  --color-scale-coral-9: #460701;
}

@media (prefers-color-scheme: light) {
  [data-color-mode=auto][data-light-theme=dark] {
    --color-auto-black: #f0f6fc;
    --color-auto-white: #010409;
    --color-auto-gray-0: #0d1117;
    --color-auto-gray-1: #161b22;
    --color-auto-gray-2: #21262d;
    --color-auto-gray-3: #30363d;
    --color-auto-gray-4: #484f58;
    --color-auto-gray-5: #6e7681;
    --color-auto-gray-6: #8b949e;
    --color-auto-gray-7: #b1bac4;
    --color-auto-gray-8: #c9d1d9;
    --color-auto-gray-9: #f0f6fc;
    --color-auto-blue-0: #051d4d;
    --color-auto-blue-1: #0c2d6b;
    --color-auto-blue-2: #0d419d;
    --color-auto-blue-3: #1158c7;
    --color-auto-blue-4: #1f6feb;
    --color-auto-blue-5: #388bfd;
    --color-auto-blue-6: #58a6ff;
    --color-auto-blue-7: #79c0ff;
    --color-auto-blue-8: #a5d6ff;
    --color-auto-blue-9: #cae8ff;
    --color-auto-green-0: #04260f;
    --color-auto-green-1: #033a16;
    --color-auto-green-2: #0f5323;
    --color-auto-green-3: #196c2e;
    --color-auto-green-4: #238636;
    --color-auto-green-5: #2ea043;
    --color-auto-green-6: #3fb950;
    --color-auto-green-7: #56d364;
    --color-auto-green-8: #7ee787;
    --color-auto-green-9: #aff5b4;
    --color-auto-yellow-0: #341a00;
    --color-auto-yellow-1: #4b2900;
    --color-auto-yellow-2: #693e00;
    --color-auto-yellow-3: #845306;
    --color-auto-yellow-4: #9e6a03;
    --color-auto-yellow-5: #bb8009;
    --color-auto-yellow-6: #d29922;
    --color-auto-yellow-7: #e3b341;
    --color-auto-yellow-8: #f2cc60;
    --color-auto-yellow-9: #f8e3a1;
    --color-auto-orange-0: #3d1300;
    --color-auto-orange-1: #5a1e02;
    --color-auto-orange-2: #762d0a;
    --color-auto-orange-3: #9b4215;
    --color-auto-orange-4: #bd561d;
    --color-auto-orange-5: #db6d28;
    --color-auto-orange-6: #f0883e;
    --color-auto-orange-7: #ffa657;
    --color-auto-orange-8: #ffc680;
    --color-auto-orange-9: #ffdfb6;
    --color-auto-red-0: #490202;
    --color-auto-red-1: #67060c;
    --color-auto-red-2: #8e1519;
    --color-auto-red-3: #b62324;
    --color-auto-red-4: #da3633;
    --color-auto-red-5: #f85149;
    --color-auto-red-6: #ff7b72;
    --color-auto-red-7: #ffa198;
    --color-auto-red-8: #ffc1ba;
    --color-auto-red-9: #ffdcd7;
    --color-auto-purple-0: #271052;
    --color-auto-purple-1: #3c1e70;
    --color-auto-purple-2: #553098;
    --color-auto-purple-3: #6e40c9;
    --color-auto-purple-4: #8957e5;
    --color-auto-purple-5: #a371f7;
    --color-auto-purple-6: #bc8cff;
    --color-auto-purple-7: #d2a8ff;
    --color-auto-purple-8: #e2c5ff;
    --color-auto-purple-9: #eddeff;
    --color-auto-pink-0: #42062a;
    --color-auto-pink-1: #5e103e;
    --color-auto-pink-2: #7d2457;
    --color-auto-pink-3: #9e3670;
    --color-auto-pink-4: #bf4b8a;
    --color-auto-pink-5: #db61a2;
    --color-auto-pink-6: #f778ba;
    --color-auto-pink-7: #ff9bce;
    --color-auto-pink-8: #ffbedd;
    --color-auto-pink-9: #ffdaec;
    --color-text-primary: #c9d1d9;
    --color-text-secondary: #8b949e;
    --color-text-tertiary: #8b949e;
    --color-text-placeholder: #484f58;
    --color-text-disabled: #8b949e;
    --color-text-inverse: #f0f6fc;
    --color-text-link: #58a6ff;
    --color-text-danger: #f85149;
    --color-text-success: #3fb950;
    --color-text-warning: #d29922;
    --color-text-white: #f0f6fc;
    --color-icon-primary: #c9d1d9;
    --color-icon-secondary: #8b949e;
    --color-icon-tertiary: #8b949e;
    --color-icon-info: #58a6ff;
    --color-icon-danger: #f85149;
    --color-icon-success: #3fb950;
    --color-icon-warning: #d29922;
    --color-border-primary: #30363d;
    --color-border-secondary: #21262d;
    --color-border-tertiary: #30363d;
    --color-border-overlay: #30363d;
    --color-border-inverse: #f0f6fc;
    --color-border-info: #1f6feb;
    --color-border-danger: #da3633;
    --color-border-success: #238636;
    --color-border-warning: #9e6a03;
    --color-border-default: #30363d;
    --color-border-muted: #21262d;
    --color-border-subtle: rgba(240,246,252,0.1);
    --color-bg-canvas: #0d1117;
    --color-bg-canvas-mobile: rgba(0,0,0,0);
    --color-bg-canvas-inverse: #6e7681;
    --color-bg-canvas-inset: #010409;
    --color-bg-primary: #0d1117;
    --color-bg-secondary: #161b22;
    --color-bg-tertiary: #161b22;
    --color-bg-overlay: #161b22;
    --color-bg-backdrop: rgba(1,4,9,0.8);
    --color-bg-info: rgba(56,139,253,0.15);
    --color-bg-info-inverse: #1f6feb;
    --color-bg-danger: rgba(248,81,73,0.15);
    --color-bg-danger-inverse: #da3633;
    --color-bg-success: rgba(46,160,67,0.15);
    --color-bg-success-inverse: #238636;
    --color-bg-warning: rgba(187,128,9,0.15);
    --color-bg-warning-inverse: #9e6a03;
    --color-shadow-highlight: 0 0 transparent;
    --color-shadow-inset: 0 0 transparent;
    --color-shadow-small: 0 0 transparent;
    --color-shadow-medium: 0 3px 6px #010409;
    --color-shadow-large: 0 8px 24px #010409;
    --color-shadow-extra-large: 0 12px 48px #010409;
    --color-state-hover-primary-bg: #1f6feb;
    --color-state-hover-primary-border: #1f6feb;
    --color-state-hover-primary-text: #f0f6fc;
    --color-state-hover-primary-icon: #f0f6fc;
    --color-state-hover-secondary-bg: rgba(110,118,129,0.1);
    --color-state-hover-secondary-border: rgba(110,118,129,0.1);
    --color-state-selected-primary-bg: #1f6feb;
    --color-state-selected-primary-border: #1f6feb;
    --color-state-selected-primary-text: #f0f6fc;
    --color-state-selected-primary-icon: #f0f6fc;
    --color-state-focus-border: #1f6feb;
    --color-state-focus-shadow: 0 0 0 3px #0c2d6b;
    --color-fade-fg-10: rgba(240,246,252,0.1);
    --color-fade-fg-15: rgba(240,246,252,0.15);
    --color-fade-fg-30: rgba(240,246,252,0.3);
    --color-fade-fg-50: rgba(240,246,252,0.5);
    --color-fade-fg-70: rgba(240,246,252,0.7);
    --color-fade-fg-85: rgba(240,246,252,0.85);
    --color-fade-black-10: rgba(1,4,9,0.1);
    --color-fade-black-15: rgba(1,4,9,0.15);
    --color-fade-black-30: rgba(1,4,9,0.3);
    --color-fade-black-50: rgba(1,4,9,0.5);
    --color-fade-black-70: rgba(1,4,9,0.7);
    --color-fade-black-85: rgba(1,4,9,0.85);
    --color-fade-white-10: rgba(240,246,252,0.1);
    --color-fade-white-15: rgba(240,246,252,0.15);
    --color-fade-white-30: rgba(240,246,252,0.3);
    --color-fade-white-50: rgba(240,246,252,0.5);
    --color-fade-white-70: rgba(240,246,252,0.7);
    --color-fade-white-85: rgba(240,246,252,0.85);
    --color-alert-info-text: #c9d1d9;
    --color-alert-info-icon: #58a6ff;
    --color-alert-info-bg: rgba(56,139,253,0.15);
    --color-alert-info-border: rgba(56,139,253,0.4);
    --color-alert-warn-text: #c9d1d9;
    --color-alert-warn-icon: #d29922;
    --color-alert-warn-bg: rgba(187,128,9,0.15);
    --color-alert-warn-border: rgba(187,128,9,0.4);
    --color-alert-error-text: #c9d1d9;
    --color-alert-error-icon: #f85149;
    --color-alert-error-bg: rgba(248,81,73,0.15);
    --color-alert-error-border: rgba(248,81,73,0.4);
    --color-alert-success-text: #c9d1d9;
    --color-alert-success-icon: #3fb950;
    --color-alert-success-bg: rgba(46,160,67,0.15);
    --color-alert-success-border: rgba(46,160,67,0.4);
    --color-autocomplete-shadow: 0 3px 6px #010409;
    --color-autocomplete-row-border: #21262d;
    --color-blankslate-icon: #8b949e;
    --color-counter-text: #c9d1d9;
    --color-counter-bg: rgba(110,118,129,0.4);
    --color-counter-primary-text: #f0f6fc;
    --color-counter-primary-bg: #6e7681;
    --color-counter-secondary-text: #8b949e;
    --color-counter-secondary-bg: rgba(110,118,129,0.1);
    --color-box-blue-border: rgba(56,139,253,0.4);
    --color-box-row-yellow-bg: rgba(187,128,9,0.15);
    --color-box-row-blue-bg: rgba(56,139,253,0.15);
    --color-box-header-blue-bg: rgba(56,139,253,0.15);
    --color-box-header-blue-border: rgba(56,139,253,0.4);
    --color-box-border-info: rgba(56,139,253,0.4);
    --color-box-bg-info: rgba(56,139,253,0.15);
    --color-box-border-warning: rgba(187,128,9,0.4);
    --color-box-bg-warning: rgba(187,128,9,0.15);
    --color-branch-name-text: #8b949e;
    --color-branch-name-icon: #8b949e;
    --color-branch-name-bg: rgba(56,139,253,0.15);
    --color-branch-name-link-text: #58a6ff;
    --color-branch-name-link-icon: #58a6ff;
    --color-branch-name-link-bg: rgba(56,139,253,0.15);
    --color-markdown-code-bg: rgba(110,118,129,0.4);
    --color-markdown-frame-border: #30363d;
    --color-markdown-blockquote-border: #30363d;
    --color-markdown-table-border: #30363d;
    --color-markdown-table-tr-border: #21262d;
    --color-filter-item-bar-bg: rgba(110,118,129,0.1);
    --color-hidden-text-expander-bg: rgba(110,118,129,0.4);
    --color-hidden-text-expander-bg-hover: rgba(56,139,253,0.4);
    --color-drag-and-drop-border: #30363d;
    --color-upload-enabled-border: #30363d;
    --color-upload-enabled-border-focused: #1f6feb;
    --color-previewable-comment-form-border: #30363d;
    --color-verified-badge-text: #3fb950;
    --color-verified-badge-bg: #0d1117;
    --color-verified-badge-border: #30363d;
    --color-social-count-bg: #0d1117;
    --color-tooltip-text: #f0f6fc;
    --color-tooltip-bg: #6e7681;
    --color-files-explorer-icon: #58a6ff;
    --color-hl-author-bg: rgba(56,139,253,0.15);
    --color-hl-author-border: rgba(56,139,253,0.4);
    --color-logo-subdued: rgba(110,118,129,0.4);
    --color-discussion-border: rgba(46,160,67,0.4);
    --color-discussion-bg-success: #238636;
    --color-actions-workflow-table-sticky-bg: rgba(13,17,23,0.95);
    --color-repo-language-color-border: rgba(240,246,252,0.2);
    --color-code-selection-bg: rgba(56,139,253,0.4);
    --color-highlight-text: #c9d1d9;
    --color-highlight-bg: rgba(187,128,9,0.15);
    --color-blob-line-highlight-bg: rgba(187,128,9,0.15);
    --color-blob-line-highlight-border: rgba(187,128,9,0.4);
    --color-topic-tag-text: #58a6ff;
    --color-topic-tag-bg: rgba(56,139,253,0.15);
    --color-topic-tag-hover-bg: #1f6feb;
    --color-topic-tag-active-bg: rgba(56,139,253,0.15);
    --color-topic-tag-border: rgba(0,0,0,0);
    --color-footer-invertocat-octicon: #484f58;
    --color-footer-invertocat-octicon-hover: #8b949e;
    --color-dropdown-shadow: 0 8px 24px #010409;
    --color-label-border: #30363d;
    --color-label-primary-text: #c9d1d9;
    --color-label-primary-border: #6e7681;
    --color-label-secondary-text: #8b949e;
    --color-label-secondary-border: #30363d;
    --color-label-info-text: #58a6ff;
    --color-label-info-border: #1f6feb;
    --color-label-success-text: #3fb950;
    --color-label-success-border: #238636;
    --color-label-warning-text: #d29922;
    --color-label-warning-border: #9e6a03;
    --color-label-danger-text: #f85149;
    --color-label-danger-border: #da3633;
    --color-label-orange-text: #db6d28;
    --color-label-orange-border: #bd561d;
    --color-input-bg: #0d1117;
    --color-input-contrast-bg: #010409;
    --color-input-border: #30363d;
    --color-input-shadow: 0 0 transparent;
    --color-input-disabled-border: #30363d;
    --color-input-warning-border: #9e6a03;
    --color-input-error-border: #da3633;
    --color-input-tooltip-success-text: #c9d1d9;
    --color-input-tooltip-success-bg: rgba(46,160,67,0.15);
    --color-input-tooltip-success-border: rgba(46,160,67,0.4);
    --color-input-tooltip-warning-text: #c9d1d9;
    --color-input-tooltip-warning-bg: rgba(187,128,9,0.15);
    --color-input-tooltip-warning-border: rgba(187,128,9,0.4);
    --color-input-tooltip-error-text: #c9d1d9;
    --color-input-tooltip-error-bg: rgba(248,81,73,0.15);
    --color-input-tooltip-error-border: rgba(248,81,73,0.4);
    --color-input-disabled-bg: rgba(110,118,129,0);
    --color-toast-text: #c9d1d9;
    --color-toast-bg: #0d1117;
    --color-toast-border: #30363d;
    --color-toast-shadow: 0 8px 24px #010409;
    --color-toast-icon: #f0f6fc;
    --color-toast-icon-bg: #1f6feb;
    --color-toast-icon-border: rgba(0,0,0,0);
    --color-toast-success-text: #c9d1d9;
    --color-toast-success-border: #30363d;
    --color-toast-success-icon: #f0f6fc;
    --color-toast-success-icon-bg: #238636;
    --color-toast-success-icon-border: rgba(0,0,0,0);
    --color-toast-warning-text: #c9d1d9;
    --color-toast-warning-border: #30363d;
    --color-toast-warning-icon: #c9d1d9;
    --color-toast-warning-icon-bg: #9e6a03;
    --color-toast-warning-icon-border: rgba(0,0,0,0);
    --color-toast-danger-text: #c9d1d9;
    --color-toast-danger-border: #30363d;
    --color-toast-danger-icon: #f0f6fc;
    --color-toast-danger-icon-bg: #da3633;
    --color-toast-danger-icon-border: rgba(0,0,0,0);
    --color-toast-loading-text: #c9d1d9;
    --color-toast-loading-border: #30363d;
    --color-toast-loading-icon: #f0f6fc;
    --color-toast-loading-icon-bg: #6e7681;
    --color-toast-loading-icon-border: rgba(0,0,0,0);
    --color-timeline-text: #8b949e;
    --color-timeline-badge-success-border: rgba(0,0,0,0);
    --color-timeline-target-badge-border: #1f6feb;
    --color-timeline-target-badge-shadow: rgba(56,139,253,0.4);
    --color-timeline-badge-bg: #21262d;
    --color-diffstat-neutral-bg: rgba(110,118,129,0.4);
    --color-diffstat-neutral-border: rgba(240,246,252,0.1);
    --color-diffstat-deletion-border: rgba(240,246,252,0.1);
    --color-diffstat-addition-border: rgba(240,246,252,0.1);
    --color-diffstat-deletion-bg: #da3633;
    --color-diffstat-addition-bg: #3fb950;
    --color-diff-addition-text: #c9d1d9;
    --color-diff-addition-bg: rgba(46,160,67,0.15);
    --color-diff-addition-border: rgba(46,160,67,0.4);
    --color-diff-deletion-text: #c9d1d9;
    --color-diff-deletion-bg: rgba(248,81,73,0.15);
    --color-diff-deletion-border: rgba(248,81,73,0.4);
    --color-diff-change-text: #d29922;
    --color-diff-change-bg: rgba(187,128,9,0.15);
    --color-diff-change-border: rgba(187,128,9,0.4);
    --color-merge-box-success-icon-bg: #238636;
    --color-merge-box-success-icon-text: #f0f6fc;
    --color-merge-box-success-icon-border: rgba(0,0,0,0);
    --color-merge-box-success-indicator-bg: #238636;
    --color-merge-box-success-indicator-border: rgba(0,0,0,0);
    --color-merge-box-merged-icon-bg: #8957e5;
    --color-merge-box-merged-icon-text: #f0f6fc;
    --color-merge-box-merged-icon-border: rgba(0,0,0,0);
    --color-merge-box-merged-box-border: #8957e5;
    --color-merge-box-neutral-icon-bg: #6e7681;
    --color-merge-box-neutral-icon-text: #f0f6fc;
    --color-merge-box-neutral-icon-border: rgba(0,0,0,0);
    --color-merge-box-neutral-indicator-bg: #6e7681;
    --color-merge-box-neutral-indicator-border: rgba(0,0,0,0);
    --color-merge-box-warning-icon-bg: #9e6a03;
    --color-merge-box-warning-icon-text: #f0f6fc;
    --color-merge-box-warning-icon-border: rgba(0,0,0,0);
    --color-merge-box-warning-box-border: #9e6a03;
    --color-merge-box-warning-merge-highlight: rgba(0,0,0,0);
    --color-merge-box-error-icon-bg: #da3633;
    --color-merge-box-error-icon-text: #f0f6fc;
    --color-merge-box-error-icon-border: rgba(0,0,0,0);
    --color-merge-box-error-indicator-bg: #da3633;
    --color-merge-box-error-indicator-border: rgba(0,0,0,0);
    --color-underlinenav-border: rgba(0,0,0,0);
    --color-underlinenav-border-hover: rgba(110,118,129,0.4);
    --color-underlinenav-border-active: #F78166;
    --color-underlinenav-text: #c9d1d9;
    --color-underlinenav-text-hover: #c9d1d9;
    --color-underlinenav-text-active: #c9d1d9;
    --color-underlinenav-icon: #484f58;
    --color-underlinenav-icon-hover: #484f58;
    --color-underlinenav-icon-active: #c9d1d9;
    --color-underlinenav-counter-text: #c9d1d9;
    --color-underlinenav-counter-bg: rgba(110,118,129,0.4);
    --color-select-menu-border-secondary: #21262d;
    --color-select-menu-shadow: 0 8px 24px #010409;
    --color-select-menu-backdrop-bg: rgba(1,4,9,0.8);
    --color-select-menu-backdrop-border: #484f58;
    --color-select-menu-tap-highlight: rgba(48,54,61,0.5);
    --color-select-menu-tap-focus-bg: #0c2d6b;
    --color-sidenav-border-active: #F78166;
    --color-sidenav-selected-bg: #21262d;
    --color-menu-heading-text: #c9d1d9;
    --color-menu-border-active: #F78166;
    --color-menu-bg-active: #161b22;
    --color-project-card-bg: #161b22;
    --color-project-header-bg: #0d1117;
    --color-project-sidebar-bg: #161b22;
    --color-project-gradient-in: #161b22;
    --color-project-gradient-out: rgba(22,27,34,0);
    --color-pr-state-draft-text: #f0f6fc;
    --color-pr-state-draft-bg: #6e7681;
    --color-pr-state-draft-border: rgba(0,0,0,0);
    --color-pr-state-open-text: #f0f6fc;
    --color-pr-state-open-bg: #238636;
    --color-pr-state-open-border: rgba(0,0,0,0);
    --color-pr-state-merged-text: #f0f6fc;
    --color-pr-state-merged-bg: #8957e5;
    --color-pr-state-merged-border: rgba(0,0,0,0);
    --color-pr-state-closed-text: #f0f6fc;
    --color-pr-state-closed-bg: #da3633;
    --color-pr-state-closed-border: rgba(0,0,0,0);
    --color-diff-blob-num-text: #484f58;
    --color-diff-blob-num-hover-text: #c9d1d9;
    --color-diff-blob-addition-num-hover-text: #c9d1d9;
    --color-diff-blob-addition-num-text: #c9d1d9;
    --color-diff-blob-addition-fg: #c9d1d9;
    --color-diff-blob-addition-num-bg: rgba(63,185,80,0.3);
    --color-diff-blob-addition-line-bg: rgba(46,160,67,0.15);
    --color-diff-blob-addition-word-bg: rgba(46,160,67,0.4);
    --color-diff-blob-deletion-num-hover-text: #c9d1d9;
    --color-diff-blob-deletion-num-text: #c9d1d9;
    --color-diff-blob-deletion-fg: #c9d1d9;
    --color-diff-blob-deletion-num-bg: rgba(248,81,73,0.3);
    --color-diff-blob-deletion-line-bg: rgba(248,81,73,0.15);
    --color-diff-blob-deletion-word-bg: rgba(248,81,73,0.4);
    --color-diff-blob-hunk-text: #8b949e;
    --color-diff-blob-hunk-num-bg: rgba(56,139,253,0.4);
    --color-diff-blob-hunk-line-bg: rgba(56,139,253,0.15);
    --color-diff-blob-empty-block-bg: rgba(110,118,129,0.1);
    --color-diff-blob-selected-line-highlight-bg: rgba(187,128,9,0.15);
    --color-diff-blob-selected-line-highlight-border: rgba(187,128,9,0.4);
    --color-diff-blob-expander-hover-icon: #f0f6fc;
    --color-diff-blob-expander-hover-bg: #1f6feb;
    --color-diff-blob-expander-icon: #8b949e;
    --color-diff-blob-comment-button-icon: #f0f6fc;
    --color-diff-blob-comment-button-bg: #1f6feb;
    --color-diff-blob-comment-button-gradient-bg: rgba(0,0,0,0);
    --color-diff-blob-selected-line-highlight-mix-blend-mode: screen;
    --color-global-nav-logo: #f0f6fc;
    --color-global-nav-bg: #161b22;
    --color-global-nav-text: #c9d1d9;
    --color-global-nav-icon: #c9d1d9;
    --color-global-nav-input-bg: #0d1117;
    --color-global-nav-input-border: #21262d;
    --color-global-nav-input-icon: #21262d;
    --color-global-nav-input-placeholder: #484f58;
    --color-intro-shelf-gradient-left: rgba(56,139,253,0.15);
    --color-intro-shelf-gradient-right: rgba(46,160,67,0.15);
    --color-intro-shelf-gradient-in: #0d1117;
    --color-intro-shelf-gradient-out: rgba(240,246,252,0);
    --color-canvas-default-transparent: rgba(13,17,23,0);
    --color-marketing-icon-primary: #79c0ff;
    --color-marketing-icon-secondary: #1f6feb;
    --color-search-keyword-hl: rgba(210,153,34,0.4);
    --color-prettylights-syntax-comment: #8b949e;
    --color-prettylights-syntax-constant: #79c0ff;
    --color-prettylights-syntax-entity: #d2a8ff;
    --color-prettylights-syntax-storage-modifier-import: #c9d1d9;
    --color-prettylights-syntax-entity-tag: #7ee787;
    --color-prettylights-syntax-keyword: #ff7b72;
    --color-prettylights-syntax-string: #a5d6ff;
    --color-prettylights-syntax-variable: #ffa657;
    --color-prettylights-syntax-brackethighlighter-unmatched: #f85149;
    --color-prettylights-syntax-invalid-illegal-text: #f0f6fc;
    --color-prettylights-syntax-invalid-illegal-bg: #8e1519;
    --color-prettylights-syntax-carriage-return-text: #f0f6fc;
    --color-prettylights-syntax-carriage-return-bg: #b62324;
    --color-prettylights-syntax-string-regexp: #7ee787;
    --color-prettylights-syntax-markup-list: #f2cc60;
    --color-prettylights-syntax-markup-heading: #1f6feb;
    --color-prettylights-syntax-markup-italic: #c9d1d9;
    --color-prettylights-syntax-markup-bold: #c9d1d9;
    --color-prettylights-syntax-markup-deleted-text: #ffdcd7;
    --color-prettylights-syntax-markup-deleted-bg: #67060c;
    --color-prettylights-syntax-markup-inserted-text: #aff5b4;
    --color-prettylights-syntax-markup-inserted-bg: #033a16;
    --color-prettylights-syntax-markup-changed-text: #ffdfb6;
    --color-prettylights-syntax-markup-changed-bg: #5a1e02;
    --color-prettylights-syntax-markup-ignored-text: #c9d1d9;
    --color-prettylights-syntax-markup-ignored-bg: #1158c7;
    --color-prettylights-syntax-meta-diff-range: #d2a8ff;
    --color-prettylights-syntax-brackethighlighter-angle: #8b949e;
    --color-prettylights-syntax-sublimelinter-gutter-mark: #484f58;
    --color-prettylights-syntax-constant-other-reference-link: #a5d6ff;
    --color-codemirror-text: #c9d1d9;
    --color-codemirror-bg: #0d1117;
    --color-codemirror-gutters-bg: #0d1117;
    --color-codemirror-guttermarker-text: #0d1117;
    --color-codemirror-guttermarker-subtle-text: #484f58;
    --color-codemirror-linenumber-text: #8b949e;
    --color-codemirror-cursor: #c9d1d9;
    --color-codemirror-selection-bg: rgba(56,139,253,0.4);
    --color-codemirror-activeline-bg: rgba(110,118,129,0.1);
    --color-codemirror-matchingbracket-text: #c9d1d9;
    --color-codemirror-lines-bg: #0d1117;
    --color-codemirror-syntax-comment: #8b949e;
    --color-codemirror-syntax-constant: #79c0ff;
    --color-codemirror-syntax-entity: #d2a8ff;
    --color-codemirror-syntax-keyword: #ff7b72;
    --color-codemirror-syntax-storage: #ff7b72;
    --color-codemirror-syntax-string: #a5d6ff;
    --color-codemirror-syntax-support: #79c0ff;
    --color-codemirror-syntax-variable: #ffa657;
    --color-checks-bg: #010409;
    --color-checks-run-border-width: 1px;
    --color-checks-container-border-width: 1px;
    --color-checks-text-primary: #c9d1d9;
    --color-checks-text-secondary: #8b949e;
    --color-checks-text-link: #58a6ff;
    --color-checks-btn-icon: #8b949e;
    --color-checks-btn-hover-icon: #c9d1d9;
    --color-checks-btn-hover-bg: rgba(110,118,129,0.1);
    --color-checks-input-text: #8b949e;
    --color-checks-input-placeholder-text: #484f58;
    --color-checks-input-focus-text: #c9d1d9;
    --color-checks-input-bg: #161b22;
    --color-checks-input-shadow: 0 0 0 1px (obj) => get_1.default(obj, path);
    --color-checks-donut-error: #f85149;
    --color-checks-donut-pending: #d29922;
    --color-checks-donut-success: #2ea043;
    --color-checks-donut-neutral: #8b949e;
    --color-checks-dropdown-text: #c9d1d9;
    --color-checks-dropdown-bg: #161b22;
    --color-checks-dropdown-border: #30363d;
    --color-checks-dropdown-shadow: rgba(1,4,9,0.3);
    --color-checks-dropdown-hover-text: #c9d1d9;
    --color-checks-dropdown-hover-bg: rgba(110,118,129,0.1);
    --color-checks-dropdown-btn-hover-text: #c9d1d9;
    --color-checks-dropdown-btn-hover-bg: rgba(110,118,129,0.1);
    --color-checks-scrollbar-thumb-bg: rgba(110,118,129,0.4);
    --color-checks-header-label-text: #8b949e;
    --color-checks-header-label-open-text: #c9d1d9;
    --color-checks-header-border: #21262d;
    --color-checks-header-icon: #8b949e;
    --color-checks-line-text: #8b949e;
    --color-checks-line-num-text: #484f58;
    --color-checks-line-timestamp-text: #484f58;
    --color-checks-line-hover-bg: rgba(110,118,129,0.1);
    --color-checks-line-selected-bg: rgba(56,139,253,0.15);
    --color-checks-line-selected-num-text: #58a6ff;
    --color-checks-line-dt-fm-text: #f0f6fc;
    --color-checks-line-dt-fm-bg: #9e6a03;
    --color-checks-gate-bg: rgba(187,128,9,0.15);
    --color-checks-gate-text: #8b949e;
    --color-checks-gate-waiting-text: #d29922;
    --color-checks-step-header-open-bg: #161b22;
    --color-checks-step-error-text: #f85149;
    --color-checks-step-warning-text: #d29922;
    --color-checks-logline-text: #8b949e;
    --color-checks-logline-num-text: #484f58;
    --color-checks-logline-debug-text: #a371f7;
    --color-checks-logline-error-text: #8b949e;
    --color-checks-logline-error-num-text: #484f58;
    --color-checks-logline-error-bg: rgba(248,81,73,0.15);
    --color-checks-logline-warning-text: #8b949e;
    --color-checks-logline-warning-num-text: #d29922;
    --color-checks-logline-warning-bg: rgba(187,128,9,0.15);
    --color-checks-logline-command-text: #58a6ff;
    --color-checks-logline-section-text: #3fb950;
    --color-checks-ansi-black: #0d1117;
    --color-checks-ansi-black-bright: #161b22;
    --color-checks-ansi-white: #b1bac4;
    --color-checks-ansi-white-bright: #b1bac4;
    --color-checks-ansi-gray: #6e7681;
    --color-checks-ansi-red: #ff7b72;
    --color-checks-ansi-red-bright: #ffa198;
    --color-checks-ansi-green: #3fb950;
    --color-checks-ansi-green-bright: #56d364;
    --color-checks-ansi-yellow: #d29922;
    --color-checks-ansi-yellow-bright: #e3b341;
    --color-checks-ansi-blue: #58a6ff;
    --color-checks-ansi-blue-bright: #79c0ff;
    --color-checks-ansi-magenta: #bc8cff;
    --color-checks-ansi-magenta-bright: #d2a8ff;
    --color-checks-ansi-cyan: #76e3ea;
    --color-checks-ansi-cyan-bright: #b3f0ff;
    --color-mktg-success: rgba(41,147,61,1);
    --color-mktg-info: rgba(42,123,243,1);
    --color-mktg-bg-shade-gradient-top: rgba(1,4,9,0.065);
    --color-mktg-bg-shade-gradient-bottom: rgba(1,4,9,0);
    --color-mktg-btn-bg-top: hsla(228,82%,66%,1);
    --color-mktg-btn-bg-bottom: #4969ed;
    --color-mktg-btn-bg-overlay-top: hsla(228,74%,59%,1);
    --color-mktg-btn-bg-overlay-bottom: #3355e0;
    --color-mktg-btn-text: #f0f6fc;
    --color-mktg-btn-primary-bg-top: hsla(137,56%,46%,1);
    --color-mktg-btn-primary-bg-bottom: #2ea44f;
    --color-mktg-btn-primary-bg-overlay-top: hsla(134,60%,38%,1);
    --color-mktg-btn-primary-bg-overlay-bottom: #22863a;
    --color-mktg-btn-primary-text: #f0f6fc;
    --color-mktg-btn-enterprise-bg-top: hsla(249,100%,72%,1);
    --color-mktg-btn-enterprise-bg-bottom: #6f57ff;
    --color-mktg-btn-enterprise-bg-overlay-top: hsla(248,65%,63%,1);
    --color-mktg-btn-enterprise-bg-overlay-bottom: #614eda;
    --color-mktg-btn-enterprise-text: #f0f6fc;
    --color-mktg-btn-outline-text: #f0f6fc;
    --color-mktg-btn-outline-border: rgba(240,246,252,0.3);
    --color-mktg-btn-outline-hover-text: #f0f6fc;
    --color-mktg-btn-outline-hover-border: rgba(240,246,252,0.5);
    --color-mktg-btn-outline-focus-border: #f0f6fc;
    --color-mktg-btn-outline-focus-border-inset: rgba(240,246,252,0.5);
    --color-mktg-btn-dark-text: #f0f6fc;
    --color-mktg-btn-dark-border: rgba(240,246,252,0.3);
    --color-mktg-btn-dark-hover-text: #f0f6fc;
    --color-mktg-btn-dark-hover-border: rgba(240,246,252,0.5);
    --color-mktg-btn-dark-focus-border: #f0f6fc;
    --color-mktg-btn-dark-focus-border-inset: rgba(240,246,252,0.5);
    --color-avatar-bg: rgba(240,246,252,0.1);
    --color-avatar-border: rgba(240,246,252,0.1);
    --color-avatar-stack-fade: #30363d;
    --color-avatar-stack-fade-more: #21262d;
    --color-avatar-child-shadow: -2px -2px 0 #0d1117;
    --color-overlay-shadow: 0 0 0 1px #30363d, 0 16px 32px rgba(1,4,9,0.85);
    --color-header-text: rgba(240,246,252,0.7);
    --color-header-bg: #161b22;
    --color-header-logo: #f0f6fc;
    --color-header-search-bg: #0d1117;
    --color-header-search-border: #30363d;
    --color-ansi-black: #484f58;
    --color-ansi-black-bright: #6e7681;
    --color-ansi-white: #b1bac4;
    --color-ansi-white-bright: #f0f6fc;
    --color-ansi-gray: #6e7681;
    --color-ansi-red: #ff7b72;
    --color-ansi-red-bright: #ffa198;
    --color-ansi-green: #3fb950;
    --color-ansi-green-bright: #56d364;
    --color-ansi-yellow: #d29922;
    --color-ansi-yellow-bright: #e3b341;
    --color-ansi-blue: #58a6ff;
    --color-ansi-blue-bright: #79c0ff;
    --color-ansi-magenta: #bc8cff;
    --color-ansi-magenta-bright: #d2a8ff;
    --color-ansi-cyan: #39c5cf;
    --color-ansi-cyan-bright: #56d4dd;
    --color-btn-text: #c9d1d9;
    --color-btn-bg: #21262d;
    --color-btn-border: rgba(240,246,252,0.1);
    --color-btn-shadow: 0 0 transparent;
    --color-btn-inset-shadow: 0 0 transparent;
    --color-btn-hover-bg: #30363d;
    --color-btn-hover-border: #8b949e;
    --color-btn-active-bg: hsla(212,12%,18%,1);
    --color-btn-active-border: #6e7681;
    --color-btn-selected-bg: #161b22;
    --color-btn-focus-bg: #21262d;
    --color-btn-focus-border: #8b949e;
    --color-btn-focus-shadow: 0 0 0 3px rgba(139,148,158,0.3);
    --color-btn-shadow-active: inset 0 0.15em 0.3em rgba(1,4,9,0.15);
    --color-btn-shadow-input-focus: 0 0 0 0.2em rgba(31,111,235,0.3);
    --color-btn-counter-bg: #30363d;
    --color-btn-primary-text: #ffffff;
    --color-btn-primary-bg: #238636;
    --color-btn-primary-border: rgba(240,246,252,0.1);
    --color-btn-primary-shadow: 0 0 transparent;
    --color-btn-primary-inset-shadow: 0 0 transparent;
    --color-btn-primary-hover-bg: #2ea043;
    --color-btn-primary-hover-border: rgba(240,246,252,0.1);
    --color-btn-primary-selected-bg: #238636;
    --color-btn-primary-selected-shadow: 0 0 transparent;
    --color-btn-primary-disabled-text: rgba(240,246,252,0.5);
    --color-btn-primary-disabled-bg: rgba(35,134,54,0.6);
    --color-btn-primary-disabled-border: rgba(240,246,252,0.1);
    --color-btn-primary-focus-bg: #238636;
    --color-btn-primary-focus-border: rgba(240,246,252,0.1);
    --color-btn-primary-focus-shadow: 0 0 0 3px rgba(46,164,79,0.4);
    --color-btn-primary-icon: #f0f6fc;
    --color-btn-primary-counter-bg: rgba(240,246,252,0.2);
    --color-btn-outline-text: #58a6ff;
    --color-btn-outline-hover-text: #58a6ff;
    --color-btn-outline-hover-bg: #30363d;
    --color-btn-outline-hover-border: rgba(240,246,252,0.1);
    --color-btn-outline-hover-shadow: 0 1px 0 rgba(1,4,9,0.1);
    --color-btn-outline-hover-inset-shadow: inset 0 1px 0 rgba(240,246,252,0.03);
    --color-btn-outline-hover-counter-bg: rgba(240,246,252,0.2);
    --color-btn-outline-selected-text: #f0f6fc;
    --color-btn-outline-selected-bg: #0d419d;
    --color-btn-outline-selected-border: rgba(240,246,252,0.1);
    --color-btn-outline-selected-shadow: 0 0 transparent;
    --color-btn-outline-disabled-text: rgba(88,166,255,0.5);
    --color-btn-outline-disabled-bg: #0d1117;
    --color-btn-outline-disabled-counter-bg: rgba(31,111,235,0.05);
    --color-btn-outline-focus-border: rgba(240,246,252,0.1);
    --color-btn-outline-focus-shadow: 0 0 0 3px rgba(17,88,199,0.4);
    --color-btn-outline-counter-bg: rgba(31,111,235,0.1);
    --color-btn-danger-text: #f85149;
    --color-btn-danger-hover-text: #f0f6fc;
    --color-btn-danger-hover-bg: #da3633;
    --color-btn-danger-hover-border: #f85149;
    --color-btn-danger-hover-shadow: 0 0 transparent;
    --color-btn-danger-hover-inset-shadow: 0 0 transparent;
    --color-btn-danger-hover-icon: #f0f6fc;
    --color-btn-danger-hover-counter-bg: rgba(255,255,255,0.2);
    --color-btn-danger-selected-text: #ffffff;
    --color-btn-danger-selected-bg: #b62324;
    --color-btn-danger-selected-border: #ff7b72;
    --color-btn-danger-selected-shadow: 0 0 transparent;
    --color-btn-danger-disabled-text: rgba(248,81,73,0.5);
    --color-btn-danger-disabled-bg: #0d1117;
    --color-btn-danger-disabled-counter-bg: rgba(218,54,51,0.05);
    --color-btn-danger-focus-border: #f85149;
    --color-btn-danger-focus-shadow: 0 0 0 3px rgba(248,81,73,0.4);
    --color-btn-danger-counter-bg: rgba(218,54,51,0.1);
    --color-btn-danger-icon: #f85149;
    --color-fg-default: #c9d1d9;
    --color-fg-muted: #8b949e;
    --color-fg-subtle: #484f58;
    --color-fg-on-emphasis: #f0f6fc;
    --color-canvas-default: #0d1117;
    --color-canvas-overlay: #161b22;
    --color-canvas-inset: #010409;
    --color-canvas-subtle: #161b22;
    --color-neutral-emphasis-plus: #6e7681;
    --color-neutral-emphasis: #6e7681;
    --color-neutral-muted: rgba(110,118,129,0.4);
    --color-neutral-subtle: rgba(110,118,129,0.1);
    --color-accent-fg: #58a6ff;
    --color-accent-emphasis: #1f6feb;
    --color-accent-muted: rgba(56,139,253,0.4);
    --color-accent-subtle: rgba(56,139,253,0.15);
    --color-success-fg: #3fb950;
    --color-success-emphasis: #238636;
    --color-success-muted: rgba(46,160,67,0.4);
    --color-success-subtle: rgba(46,160,67,0.15);
    --color-attention-fg: #d29922;
    --color-attention-emphasis: #9e6a03;
    --color-attention-muted: rgba(187,128,9,0.4);
    --color-attention-subtle: rgba(187,128,9,0.15);
    --color-severe-fg: #db6d28;
    --color-severe-emphasis: #bd561d;
    --color-severe-muted: rgba(219,109,40,0.4);
    --color-severe-subtle: rgba(219,109,40,0.15);
    --color-danger-fg: #f85149;
    --color-danger-emphasis: #da3633;
    --color-danger-muted: rgba(248,81,73,0.4);
    --color-danger-subtle: rgba(248,81,73,0.15);
    --color-done-fg: #a371f7;
    --color-done-emphasis: #8957e5;
    --color-done-muted: rgba(163,113,247,0.4);
    --color-done-subtle: rgba(163,113,247,0.15);
    --color-sponsors-fg: #db61a2;
    --color-sponsors-emphasis: #bf4b8a;
    --color-sponsors-muted: rgba(219,97,162,0.4);
    --color-sponsors-subtle: rgba(219,97,162,0.15);
    --color-primer-canvas-backdrop: rgba(1,4,9,0.8);
    --color-primer-canvas-sticky: rgba(13,17,23,0.95);
    --color-primer-border-active: #F78166;
    --color-primer-border-contrast: rgba(240,246,252,0.2);
    --color-primer-shadow-highlight: 0 0 transparent;
    --color-primer-shadow-inset: 0 0 transparent;
    --color-primer-shadow-focus: 0 0 0 3px #0c2d6b;
    --color-scale-black: #010409;
    --color-scale-white: #f0f6fc;
    --color-scale-gray-0: #f0f6fc;
    --color-scale-gray-1: #c9d1d9;
    --color-scale-gray-2: #b1bac4;
    --color-scale-gray-3: #8b949e;
    --color-scale-gray-4: #6e7681;
    --color-scale-gray-5: #484f58;
    --color-scale-gray-6: #30363d;
    --color-scale-gray-7: #21262d;
    --color-scale-gray-8: #161b22;
    --color-scale-gray-9: #0d1117;
    --color-scale-blue-0: #cae8ff;
    --color-scale-blue-1: #a5d6ff;
    --color-scale-blue-2: #79c0ff;
    --color-scale-blue-3: #58a6ff;
    --color-scale-blue-4: #388bfd;
    --color-scale-blue-5: #1f6feb;
    --color-scale-blue-6: #1158c7;
    --color-scale-blue-7: #0d419d;
    --color-scale-blue-8: #0c2d6b;
    --color-scale-blue-9: #051d4d;
    --color-scale-green-0: #aff5b4;
    --color-scale-green-1: #7ee787;
    --color-scale-green-2: #56d364;
    --color-scale-green-3: #3fb950;
    --color-scale-green-4: #2ea043;
    --color-scale-green-5: #238636;
    --color-scale-green-6: #196c2e;
    --color-scale-green-7: #0f5323;
    --color-scale-green-8: #033a16;
    --color-scale-green-9: #04260f;
    --color-scale-yellow-0: #f8e3a1;
    --color-scale-yellow-1: #f2cc60;
    --color-scale-yellow-2: #e3b341;
    --color-scale-yellow-3: #d29922;
    --color-scale-yellow-4: #bb8009;
    --color-scale-yellow-5: #9e6a03;
    --color-scale-yellow-6: #845306;
    --color-scale-yellow-7: #693e00;
    --color-scale-yellow-8: #4b2900;
    --color-scale-yellow-9: #341a00;
    --color-scale-orange-0: #ffdfb6;
    --color-scale-orange-1: #ffc680;
    --color-scale-orange-2: #ffa657;
    --color-scale-orange-3: #f0883e;
    --color-scale-orange-4: #db6d28;
    --color-scale-orange-5: #bd561d;
    --color-scale-orange-6: #9b4215;
    --color-scale-orange-7: #762d0a;
    --color-scale-orange-8: #5a1e02;
    --color-scale-orange-9: #3d1300;
    --color-scale-red-0: #ffdcd7;
    --color-scale-red-1: #ffc1ba;
    --color-scale-red-2: #ffa198;
    --color-scale-red-3: #ff7b72;
    --color-scale-red-4: #f85149;
    --color-scale-red-5: #da3633;
    --color-scale-red-6: #b62324;
    --color-scale-red-7: #8e1519;
    --color-scale-red-8: #67060c;
    --color-scale-red-9: #490202;
    --color-scale-purple-0: #eddeff;
    --color-scale-purple-1: #e2c5ff;
    --color-scale-purple-2: #d2a8ff;
    --color-scale-purple-3: #bc8cff;
    --color-scale-purple-4: #a371f7;
    --color-scale-purple-5: #8957e5;
    --color-scale-purple-6: #6e40c9;
    --color-scale-purple-7: #553098;
    --color-scale-purple-8: #3c1e70;
    --color-scale-purple-9: #271052;
    --color-scale-pink-0: #ffdaec;
    --color-scale-pink-1: #ffbedd;
    --color-scale-pink-2: #ff9bce;
    --color-scale-pink-3: #f778ba;
    --color-scale-pink-4: #db61a2;
    --color-scale-pink-5: #bf4b8a;
    --color-scale-pink-6: #9e3670;
    --color-scale-pink-7: #7d2457;
    --color-scale-pink-8: #5e103e;
    --color-scale-pink-9: #42062a;
    --color-scale-coral-0: #FFDDD2;
    --color-scale-coral-1: #FFC2B2;
    --color-scale-coral-2: #FFA28B;
    --color-scale-coral-3: #F78166;
    --color-scale-coral-4: #EA6045;
    --color-scale-coral-5: #CF462D;
    --color-scale-coral-6: #AC3220;
    --color-scale-coral-7: #872012;
    --color-scale-coral-8: #640D04;
    --color-scale-coral-9: #460701;
  }
}
@media (prefers-color-scheme: dark) {
  [data-color-mode=auto][data-dark-theme=dark] {
    --color-auto-black: #f0f6fc;
    --color-auto-white: #010409;
    --color-auto-gray-0: #0d1117;
    --color-auto-gray-1: #161b22;
    --color-auto-gray-2: #21262d;
    --color-auto-gray-3: #30363d;
    --color-auto-gray-4: #484f58;
    --color-auto-gray-5: #6e7681;
    --color-auto-gray-6: #8b949e;
    --color-auto-gray-7: #b1bac4;
    --color-auto-gray-8: #c9d1d9;
    --color-auto-gray-9: #f0f6fc;
    --color-auto-blue-0: #051d4d;
    --color-auto-blue-1: #0c2d6b;
    --color-auto-blue-2: #0d419d;
    --color-auto-blue-3: #1158c7;
    --color-auto-blue-4: #1f6feb;
    --color-auto-blue-5: #388bfd;
    --color-auto-blue-6: #58a6ff;
    --color-auto-blue-7: #79c0ff;
    --color-auto-blue-8: #a5d6ff;
    --color-auto-blue-9: #cae8ff;
    --color-auto-green-0: #04260f;
    --color-auto-green-1: #033a16;
    --color-auto-green-2: #0f5323;
    --color-auto-green-3: #196c2e;
    --color-auto-green-4: #238636;
    --color-auto-green-5: #2ea043;
    --color-auto-green-6: #3fb950;
    --color-auto-green-7: #56d364;
    --color-auto-green-8: #7ee787;
    --color-auto-green-9: #aff5b4;
    --color-auto-yellow-0: #341a00;
    --color-auto-yellow-1: #4b2900;
    --color-auto-yellow-2: #693e00;
    --color-auto-yellow-3: #845306;
    --color-auto-yellow-4: #9e6a03;
    --color-auto-yellow-5: #bb8009;
    --color-auto-yellow-6: #d29922;
    --color-auto-yellow-7: #e3b341;
    --color-auto-yellow-8: #f2cc60;
    --color-auto-yellow-9: #f8e3a1;
    --color-auto-orange-0: #3d1300;
    --color-auto-orange-1: #5a1e02;
    --color-auto-orange-2: #762d0a;
    --color-auto-orange-3: #9b4215;
    --color-auto-orange-4: #bd561d;
    --color-auto-orange-5: #db6d28;
    --color-auto-orange-6: #f0883e;
    --color-auto-orange-7: #ffa657;
    --color-auto-orange-8: #ffc680;
    --color-auto-orange-9: #ffdfb6;
    --color-auto-red-0: #490202;
    --color-auto-red-1: #67060c;
    --color-auto-red-2: #8e1519;
    --color-auto-red-3: #b62324;
    --color-auto-red-4: #da3633;
    --color-auto-red-5: #f85149;
    --color-auto-red-6: #ff7b72;
    --color-auto-red-7: #ffa198;
    --color-auto-red-8: #ffc1ba;
    --color-auto-red-9: #ffdcd7;
    --color-auto-purple-0: #271052;
    --color-auto-purple-1: #3c1e70;
    --color-auto-purple-2: #553098;
    --color-auto-purple-3: #6e40c9;
    --color-auto-purple-4: #8957e5;
    --color-auto-purple-5: #a371f7;
    --color-auto-purple-6: #bc8cff;
    --color-auto-purple-7: #d2a8ff;
    --color-auto-purple-8: #e2c5ff;
    --color-auto-purple-9: #eddeff;
    --color-auto-pink-0: #42062a;
    --color-auto-pink-1: #5e103e;
    --color-auto-pink-2: #7d2457;
    --color-auto-pink-3: #9e3670;
    --color-auto-pink-4: #bf4b8a;
    --color-auto-pink-5: #db61a2;
    --color-auto-pink-6: #f778ba;
    --color-auto-pink-7: #ff9bce;
    --color-auto-pink-8: #ffbedd;
    --color-auto-pink-9: #ffdaec;
    --color-text-primary: #c9d1d9;
    --color-text-secondary: #8b949e;
    --color-text-tertiary: #8b949e;
    --color-text-placeholder: #484f58;
    --color-text-disabled: #8b949e;
    --color-text-inverse: #f0f6fc;
    --color-text-link: #58a6ff;
    --color-text-danger: #f85149;
    --color-text-success: #3fb950;
    --color-text-warning: #d29922;
    --color-text-white: #f0f6fc;
    --color-icon-primary: #c9d1d9;
    --color-icon-secondary: #8b949e;
    --color-icon-tertiary: #8b949e;
    --color-icon-info: #58a6ff;
    --color-icon-danger: #f85149;
    --color-icon-success: #3fb950;
    --color-icon-warning: #d29922;
    --color-border-primary: #30363d;
    --color-border-secondary: #21262d;
    --color-border-tertiary: #30363d;
    --color-border-overlay: #30363d;
    --color-border-inverse: #f0f6fc;
    --color-border-info: #1f6feb;
    --color-border-danger: #da3633;
    --color-border-success: #238636;
    --color-border-warning: #9e6a03;
    --color-border-default: #30363d;
    --color-border-muted: #21262d;
    --color-border-subtle: rgba(240,246,252,0.1);
    --color-bg-canvas: #0d1117;
    --color-bg-canvas-mobile: rgba(0,0,0,0);
    --color-bg-canvas-inverse: #6e7681;
    --color-bg-canvas-inset: #010409;
    --color-bg-primary: #0d1117;
    --color-bg-secondary: #161b22;
    --color-bg-tertiary: #161b22;
    --color-bg-overlay: #161b22;
    --color-bg-backdrop: rgba(1,4,9,0.8);
    --color-bg-info: rgba(56,139,253,0.15);
    --color-bg-info-inverse: #1f6feb;
    --color-bg-danger: rgba(248,81,73,0.15);
    --color-bg-danger-inverse: #da3633;
    --color-bg-success: rgba(46,160,67,0.15);
    --color-bg-success-inverse: #238636;
    --color-bg-warning: rgba(187,128,9,0.15);
    --color-bg-warning-inverse: #9e6a03;
    --color-shadow-highlight: 0 0 transparent;
    --color-shadow-inset: 0 0 transparent;
    --color-shadow-small: 0 0 transparent;
    --color-shadow-medium: 0 3px 6px #010409;
    --color-shadow-large: 0 8px 24px #010409;
    --color-shadow-extra-large: 0 12px 48px #010409;
    --color-state-hover-primary-bg: #1f6feb;
    --color-state-hover-primary-border: #1f6feb;
    --color-state-hover-primary-text: #f0f6fc;
    --color-state-hover-primary-icon: #f0f6fc;
    --color-state-hover-secondary-bg: rgba(110,118,129,0.1);
    --color-state-hover-secondary-border: rgba(110,118,129,0.1);
    --color-state-selected-primary-bg: #1f6feb;
    --color-state-selected-primary-border: #1f6feb;
    --color-state-selected-primary-text: #f0f6fc;
    --color-state-selected-primary-icon: #f0f6fc;
    --color-state-focus-border: #1f6feb;
    --color-state-focus-shadow: 0 0 0 3px #0c2d6b;
    --color-fade-fg-10: rgba(240,246,252,0.1);
    --color-fade-fg-15: rgba(240,246,252,0.15);
    --color-fade-fg-30: rgba(240,246,252,0.3);
    --color-fade-fg-50: rgba(240,246,252,0.5);
    --color-fade-fg-70: rgba(240,246,252,0.7);
    --color-fade-fg-85: rgba(240,246,252,0.85);
    --color-fade-black-10: rgba(1,4,9,0.1);
    --color-fade-black-15: rgba(1,4,9,0.15);
    --color-fade-black-30: rgba(1,4,9,0.3);
    --color-fade-black-50: rgba(1,4,9,0.5);
    --color-fade-black-70: rgba(1,4,9,0.7);
    --color-fade-black-85: rgba(1,4,9,0.85);
    --color-fade-white-10: rgba(240,246,252,0.1);
    --color-fade-white-15: rgba(240,246,252,0.15);
    --color-fade-white-30: rgba(240,246,252,0.3);
    --color-fade-white-50: rgba(240,246,252,0.5);
    --color-fade-white-70: rgba(240,246,252,0.7);
    --color-fade-white-85: rgba(240,246,252,0.85);
    --color-alert-info-text: #c9d1d9;
    --color-alert-info-icon: #58a6ff;
    --color-alert-info-bg: rgba(56,139,253,0.15);
    --color-alert-info-border: rgba(56,139,253,0.4);
    --color-alert-warn-text: #c9d1d9;
    --color-alert-warn-icon: #d29922;
    --color-alert-warn-bg: rgba(187,128,9,0.15);
    --color-alert-warn-border: rgba(187,128,9,0.4);
    --color-alert-error-text: #c9d1d9;
    --color-alert-error-icon: #f85149;
    --color-alert-error-bg: rgba(248,81,73,0.15);
    --color-alert-error-border: rgba(248,81,73,0.4);
    --color-alert-success-text: #c9d1d9;
    --color-alert-success-icon: #3fb950;
    --color-alert-success-bg: rgba(46,160,67,0.15);
    --color-alert-success-border: rgba(46,160,67,0.4);
    --color-autocomplete-shadow: 0 3px 6px #010409;
    --color-autocomplete-row-border: #21262d;
    --color-blankslate-icon: #8b949e;
    --color-counter-text: #c9d1d9;
    --color-counter-bg: rgba(110,118,129,0.4);
    --color-counter-primary-text: #f0f6fc;
    --color-counter-primary-bg: #6e7681;
    --color-counter-secondary-text: #8b949e;
    --color-counter-secondary-bg: rgba(110,118,129,0.1);
    --color-box-blue-border: rgba(56,139,253,0.4);
    --color-box-row-yellow-bg: rgba(187,128,9,0.15);
    --color-box-row-blue-bg: rgba(56,139,253,0.15);
    --color-box-header-blue-bg: rgba(56,139,253,0.15);
    --color-box-header-blue-border: rgba(56,139,253,0.4);
    --color-box-border-info: rgba(56,139,253,0.4);
    --color-box-bg-info: rgba(56,139,253,0.15);
    --color-box-border-warning: rgba(187,128,9,0.4);
    --color-box-bg-warning: rgba(187,128,9,0.15);
    --color-branch-name-text: #8b949e;
    --color-branch-name-icon: #8b949e;
    --color-branch-name-bg: rgba(56,139,253,0.15);
    --color-branch-name-link-text: #58a6ff;
    --color-branch-name-link-icon: #58a6ff;
    --color-branch-name-link-bg: rgba(56,139,253,0.15);
    --color-markdown-code-bg: rgba(110,118,129,0.4);
    --color-markdown-frame-border: #30363d;
    --color-markdown-blockquote-border: #30363d;
    --color-markdown-table-border: #30363d;
    --color-markdown-table-tr-border: #21262d;
    --color-filter-item-bar-bg: rgba(110,118,129,0.1);
    --color-hidden-text-expander-bg: rgba(110,118,129,0.4);
    --color-hidden-text-expander-bg-hover: rgba(56,139,253,0.4);
    --color-drag-and-drop-border: #30363d;
    --color-upload-enabled-border: #30363d;
    --color-upload-enabled-border-focused: #1f6feb;
    --color-previewable-comment-form-border: #30363d;
    --color-verified-badge-text: #3fb950;
    --color-verified-badge-bg: #0d1117;
    --color-verified-badge-border: #30363d;
    --color-social-count-bg: #0d1117;
    --color-tooltip-text: #f0f6fc;
    --color-tooltip-bg: #6e7681;
    --color-files-explorer-icon: #58a6ff;
    --color-hl-author-bg: rgba(56,139,253,0.15);
    --color-hl-author-border: rgba(56,139,253,0.4);
    --color-logo-subdued: rgba(110,118,129,0.4);
    --color-discussion-border: rgba(46,160,67,0.4);
    --color-discussion-bg-success: #238636;
    --color-actions-workflow-table-sticky-bg: rgba(13,17,23,0.95);
    --color-repo-language-color-border: rgba(240,246,252,0.2);
    --color-code-selection-bg: rgba(56,139,253,0.4);
    --color-highlight-text: #c9d1d9;
    --color-highlight-bg: rgba(187,128,9,0.15);
    --color-blob-line-highlight-bg: rgba(187,128,9,0.15);
    --color-blob-line-highlight-border: rgba(187,128,9,0.4);
    --color-topic-tag-text: #58a6ff;
    --color-topic-tag-bg: rgba(56,139,253,0.15);
    --color-topic-tag-hover-bg: #1f6feb;
    --color-topic-tag-active-bg: rgba(56,139,253,0.15);
    --color-topic-tag-border: rgba(0,0,0,0);
    --color-footer-invertocat-octicon: #484f58;
    --color-footer-invertocat-octicon-hover: #8b949e;
    --color-dropdown-shadow: 0 8px 24px #010409;
    --color-label-border: #30363d;
    --color-label-primary-text: #c9d1d9;
    --color-label-primary-border: #6e7681;
    --color-label-secondary-text: #8b949e;
    --color-label-secondary-border: #30363d;
    --color-label-info-text: #58a6ff;
    --color-label-info-border: #1f6feb;
    --color-label-success-text: #3fb950;
    --color-label-success-border: #238636;
    --color-label-warning-text: #d29922;
    --color-label-warning-border: #9e6a03;
    --color-label-danger-text: #f85149;
    --color-label-danger-border: #da3633;
    --color-label-orange-text: #db6d28;
    --color-label-orange-border: #bd561d;
    --color-input-bg: #0d1117;
    --color-input-contrast-bg: #010409;
    --color-input-border: #30363d;
    --color-input-shadow: 0 0 transparent;
    --color-input-disabled-border: #30363d;
    --color-input-warning-border: #9e6a03;
    --color-input-error-border: #da3633;
    --color-input-tooltip-success-text: #c9d1d9;
    --color-input-tooltip-success-bg: rgba(46,160,67,0.15);
    --color-input-tooltip-success-border: rgba(46,160,67,0.4);
    --color-input-tooltip-warning-text: #c9d1d9;
    --color-input-tooltip-warning-bg: rgba(187,128,9,0.15);
    --color-input-tooltip-warning-border: rgba(187,128,9,0.4);
    --color-input-tooltip-error-text: #c9d1d9;
    --color-input-tooltip-error-bg: rgba(248,81,73,0.15);
    --color-input-tooltip-error-border: rgba(248,81,73,0.4);
    --color-input-disabled-bg: rgba(110,118,129,0);
    --color-toast-text: #c9d1d9;
    --color-toast-bg: #0d1117;
    --color-toast-border: #30363d;
    --color-toast-shadow: 0 8px 24px #010409;
    --color-toast-icon: #f0f6fc;
    --color-toast-icon-bg: #1f6feb;
    --color-toast-icon-border: rgba(0,0,0,0);
    --color-toast-success-text: #c9d1d9;
    --color-toast-success-border: #30363d;
    --color-toast-success-icon: #f0f6fc;
    --color-toast-success-icon-bg: #238636;
    --color-toast-success-icon-border: rgba(0,0,0,0);
    --color-toast-warning-text: #c9d1d9;
    --color-toast-warning-border: #30363d;
    --color-toast-warning-icon: #c9d1d9;
    --color-toast-warning-icon-bg: #9e6a03;
    --color-toast-warning-icon-border: rgba(0,0,0,0);
    --color-toast-danger-text: #c9d1d9;
    --color-toast-danger-border: #30363d;
    --color-toast-danger-icon: #f0f6fc;
    --color-toast-danger-icon-bg: #da3633;
    --color-toast-danger-icon-border: rgba(0,0,0,0);
    --color-toast-loading-text: #c9d1d9;
    --color-toast-loading-border: #30363d;
    --color-toast-loading-icon: #f0f6fc;
    --color-toast-loading-icon-bg: #6e7681;
    --color-toast-loading-icon-border: rgba(0,0,0,0);
    --color-timeline-text: #8b949e;
    --color-timeline-badge-success-border: rgba(0,0,0,0);
    --color-timeline-target-badge-border: #1f6feb;
    --color-timeline-target-badge-shadow: rgba(56,139,253,0.4);
    --color-timeline-badge-bg: #21262d;
    --color-diffstat-neutral-bg: rgba(110,118,129,0.4);
    --color-diffstat-neutral-border: rgba(240,246,252,0.1);
    --color-diffstat-deletion-border: rgba(240,246,252,0.1);
    --color-diffstat-addition-border: rgba(240,246,252,0.1);
    --color-diffstat-deletion-bg: #da3633;
    --color-diffstat-addition-bg: #3fb950;
    --color-diff-addition-text: #c9d1d9;
    --color-diff-addition-bg: rgba(46,160,67,0.15);
    --color-diff-addition-border: rgba(46,160,67,0.4);
    --color-diff-deletion-text: #c9d1d9;
    --color-diff-deletion-bg: rgba(248,81,73,0.15);
    --color-diff-deletion-border: rgba(248,81,73,0.4);
    --color-diff-change-text: #d29922;
    --color-diff-change-bg: rgba(187,128,9,0.15);
    --color-diff-change-border: rgba(187,128,9,0.4);
    --color-merge-box-success-icon-bg: #238636;
    --color-merge-box-success-icon-text: #f0f6fc;
    --color-merge-box-success-icon-border: rgba(0,0,0,0);
    --color-merge-box-success-indicator-bg: #238636;
    --color-merge-box-success-indicator-border: rgba(0,0,0,0);
    --color-merge-box-merged-icon-bg: #8957e5;
    --color-merge-box-merged-icon-text: #f0f6fc;
    --color-merge-box-merged-icon-border: rgba(0,0,0,0);
    --color-merge-box-merged-box-border: #8957e5;
    --color-merge-box-neutral-icon-bg: #6e7681;
    --color-merge-box-neutral-icon-text: #f0f6fc;
    --color-merge-box-neutral-icon-border: rgba(0,0,0,0);
    --color-merge-box-neutral-indicator-bg: #6e7681;
    --color-merge-box-neutral-indicator-border: rgba(0,0,0,0);
    --color-merge-box-warning-icon-bg: #9e6a03;
    --color-merge-box-warning-icon-text: #f0f6fc;
    --color-merge-box-warning-icon-border: rgba(0,0,0,0);
    --color-merge-box-warning-box-border: #9e6a03;
    --color-merge-box-warning-merge-highlight: rgba(0,0,0,0);
    --color-merge-box-error-icon-bg: #da3633;
    --color-merge-box-error-icon-text: #f0f6fc;
    --color-merge-box-error-icon-border: rgba(0,0,0,0);
    --color-merge-box-error-indicator-bg: #da3633;
    --color-merge-box-error-indicator-border: rgba(0,0,0,0);
    --color-underlinenav-border: rgba(0,0,0,0);
    --color-underlinenav-border-hover: rgba(110,118,129,0.4);
    --color-underlinenav-border-active: #F78166;
    --color-underlinenav-text: #c9d1d9;
    --color-underlinenav-text-hover: #c9d1d9;
    --color-underlinenav-text-active: #c9d1d9;
    --color-underlinenav-icon: #484f58;
    --color-underlinenav-icon-hover: #484f58;
    --color-underlinenav-icon-active: #c9d1d9;
    --color-underlinenav-counter-text: #c9d1d9;
    --color-underlinenav-counter-bg: rgba(110,118,129,0.4);
    --color-select-menu-border-secondary: #21262d;
    --color-select-menu-shadow: 0 8px 24px #010409;
    --color-select-menu-backdrop-bg: rgba(1,4,9,0.8);
    --color-select-menu-backdrop-border: #484f58;
    --color-select-menu-tap-highlight: rgba(48,54,61,0.5);
    --color-select-menu-tap-focus-bg: #0c2d6b;
    --color-sidenav-border-active: #F78166;
    --color-sidenav-selected-bg: #21262d;
    --color-menu-heading-text: #c9d1d9;
    --color-menu-border-active: #F78166;
    --color-menu-bg-active: #161b22;
    --color-project-card-bg: #161b22;
    --color-project-header-bg: #0d1117;
    --color-project-sidebar-bg: #161b22;
    --color-project-gradient-in: #161b22;
    --color-project-gradient-out: rgba(22,27,34,0);
    --color-pr-state-draft-text: #f0f6fc;
    --color-pr-state-draft-bg: #6e7681;
    --color-pr-state-draft-border: rgba(0,0,0,0);
    --color-pr-state-open-text: #f0f6fc;
    --color-pr-state-open-bg: #238636;
    --color-pr-state-open-border: rgba(0,0,0,0);
    --color-pr-state-merged-text: #f0f6fc;
    --color-pr-state-merged-bg: #8957e5;
    --color-pr-state-merged-border: rgba(0,0,0,0);
    --color-pr-state-closed-text: #f0f6fc;
    --color-pr-state-closed-bg: #da3633;
    --color-pr-state-closed-border: rgba(0,0,0,0);
    --color-diff-blob-num-text: #484f58;
    --color-diff-blob-num-hover-text: #c9d1d9;
    --color-diff-blob-addition-num-hover-text: #c9d1d9;
    --color-diff-blob-addition-num-text: #c9d1d9;
    --color-diff-blob-addition-fg: #c9d1d9;
    --color-diff-blob-addition-num-bg: rgba(63,185,80,0.3);
    --color-diff-blob-addition-line-bg: rgba(46,160,67,0.15);
    --color-diff-blob-addition-word-bg: rgba(46,160,67,0.4);
    --color-diff-blob-deletion-num-hover-text: #c9d1d9;
    --color-diff-blob-deletion-num-text: #c9d1d9;
    --color-diff-blob-deletion-fg: #c9d1d9;
    --color-diff-blob-deletion-num-bg: rgba(248,81,73,0.3);
    --color-diff-blob-deletion-line-bg: rgba(248,81,73,0.15);
    --color-diff-blob-deletion-word-bg: rgba(248,81,73,0.4);
    --color-diff-blob-hunk-text: #8b949e;
    --color-diff-blob-hunk-num-bg: rgba(56,139,253,0.4);
    --color-diff-blob-hunk-line-bg: rgba(56,139,253,0.15);
    --color-diff-blob-empty-block-bg: rgba(110,118,129,0.1);
    --color-diff-blob-selected-line-highlight-bg: rgba(187,128,9,0.15);
    --color-diff-blob-selected-line-highlight-border: rgba(187,128,9,0.4);
    --color-diff-blob-expander-hover-icon: #f0f6fc;
    --color-diff-blob-expander-hover-bg: #1f6feb;
    --color-diff-blob-expander-icon: #8b949e;
    --color-diff-blob-comment-button-icon: #f0f6fc;
    --color-diff-blob-comment-button-bg: #1f6feb;
    --color-diff-blob-comment-button-gradient-bg: rgba(0,0,0,0);
    --color-diff-blob-selected-line-highlight-mix-blend-mode: screen;
    --color-global-nav-logo: #f0f6fc;
    --color-global-nav-bg: #161b22;
    --color-global-nav-text: #c9d1d9;
    --color-global-nav-icon: #c9d1d9;
    --color-global-nav-input-bg: #0d1117;
    --color-global-nav-input-border: #21262d;
    --color-global-nav-input-icon: #21262d;
    --color-global-nav-input-placeholder: #484f58;
    --color-intro-shelf-gradient-left: rgba(56,139,253,0.15);
    --color-intro-shelf-gradient-right: rgba(46,160,67,0.15);
    --color-intro-shelf-gradient-in: #0d1117;
    --color-intro-shelf-gradient-out: rgba(240,246,252,0);
    --color-canvas-default-transparent: rgba(13,17,23,0);
    --color-marketing-icon-primary: #79c0ff;
    --color-marketing-icon-secondary: #1f6feb;
    --color-search-keyword-hl: rgba(210,153,34,0.4);
    --color-prettylights-syntax-comment: #8b949e;
    --color-prettylights-syntax-constant: #79c0ff;
    --color-prettylights-syntax-entity: #d2a8ff;
    --color-prettylights-syntax-storage-modifier-import: #c9d1d9;
    --color-prettylights-syntax-entity-tag: #7ee787;
    --color-prettylights-syntax-keyword: #ff7b72;
    --color-prettylights-syntax-string: #a5d6ff;
    --color-prettylights-syntax-variable: #ffa657;
    --color-prettylights-syntax-brackethighlighter-unmatched: #f85149;
    --color-prettylights-syntax-invalid-illegal-text: #f0f6fc;
    --color-prettylights-syntax-invalid-illegal-bg: #8e1519;
    --color-prettylights-syntax-carriage-return-text: #f0f6fc;
    --color-prettylights-syntax-carriage-return-bg: #b62324;
    --color-prettylights-syntax-string-regexp: #7ee787;
    --color-prettylights-syntax-markup-list: #f2cc60;
    --color-prettylights-syntax-markup-heading: #1f6feb;
    --color-prettylights-syntax-markup-italic: #c9d1d9;
    --color-prettylights-syntax-markup-bold: #c9d1d9;
    --color-prettylights-syntax-markup-deleted-text: #ffdcd7;
    --color-prettylights-syntax-markup-deleted-bg: #67060c;
    --color-prettylights-syntax-markup-inserted-text: #aff5b4;
    --color-prettylights-syntax-markup-inserted-bg: #033a16;
    --color-prettylights-syntax-markup-changed-text: #ffdfb6;
    --color-prettylights-syntax-markup-changed-bg: #5a1e02;
    --color-prettylights-syntax-markup-ignored-text: #c9d1d9;
    --color-prettylights-syntax-markup-ignored-bg: #1158c7;
    --color-prettylights-syntax-meta-diff-range: #d2a8ff;
    --color-prettylights-syntax-brackethighlighter-angle: #8b949e;
    --color-prettylights-syntax-sublimelinter-gutter-mark: #484f58;
    --color-prettylights-syntax-constant-other-reference-link: #a5d6ff;
    --color-codemirror-text: #c9d1d9;
    --color-codemirror-bg: #0d1117;
    --color-codemirror-gutters-bg: #0d1117;
    --color-codemirror-guttermarker-text: #0d1117;
    --color-codemirror-guttermarker-subtle-text: #484f58;
    --color-codemirror-linenumber-text: #8b949e;
    --color-codemirror-cursor: #c9d1d9;
    --color-codemirror-selection-bg: rgba(56,139,253,0.4);
    --color-codemirror-activeline-bg: rgba(110,118,129,0.1);
    --color-codemirror-matchingbracket-text: #c9d1d9;
    --color-codemirror-lines-bg: #0d1117;
    --color-codemirror-syntax-comment: #8b949e;
    --color-codemirror-syntax-constant: #79c0ff;
    --color-codemirror-syntax-entity: #d2a8ff;
    --color-codemirror-syntax-keyword: #ff7b72;
    --color-codemirror-syntax-storage: #ff7b72;
    --color-codemirror-syntax-string: #a5d6ff;
    --color-codemirror-syntax-support: #79c0ff;
    --color-codemirror-syntax-variable: #ffa657;
    --color-checks-bg: #010409;
    --color-checks-run-border-width: 1px;
    --color-checks-container-border-width: 1px;
    --color-checks-text-primary: #c9d1d9;
    --color-checks-text-secondary: #8b949e;
    --color-checks-text-link: #58a6ff;
    --color-checks-btn-icon: #8b949e;
    --color-checks-btn-hover-icon: #c9d1d9;
    --color-checks-btn-hover-bg: rgba(110,118,129,0.1);
    --color-checks-input-text: #8b949e;
    --color-checks-input-placeholder-text: #484f58;
    --color-checks-input-focus-text: #c9d1d9;
    --color-checks-input-bg: #161b22;
    --color-checks-input-shadow: 0 0 0 1px (obj) => get_1.default(obj, path);
    --color-checks-donut-error: #f85149;
    --color-checks-donut-pending: #d29922;
    --color-checks-donut-success: #2ea043;
    --color-checks-donut-neutral: #8b949e;
    --color-checks-dropdown-text: #c9d1d9;
    --color-checks-dropdown-bg: #161b22;
    --color-checks-dropdown-border: #30363d;
    --color-checks-dropdown-shadow: rgba(1,4,9,0.3);
    --color-checks-dropdown-hover-text: #c9d1d9;
    --color-checks-dropdown-hover-bg: rgba(110,118,129,0.1);
    --color-checks-dropdown-btn-hover-text: #c9d1d9;
    --color-checks-dropdown-btn-hover-bg: rgba(110,118,129,0.1);
    --color-checks-scrollbar-thumb-bg: rgba(110,118,129,0.4);
    --color-checks-header-label-text: #8b949e;
    --color-checks-header-label-open-text: #c9d1d9;
    --color-checks-header-border: #21262d;
    --color-checks-header-icon: #8b949e;
    --color-checks-line-text: #8b949e;
    --color-checks-line-num-text: #484f58;
    --color-checks-line-timestamp-text: #484f58;
    --color-checks-line-hover-bg: rgba(110,118,129,0.1);
    --color-checks-line-selected-bg: rgba(56,139,253,0.15);
    --color-checks-line-selected-num-text: #58a6ff;
    --color-checks-line-dt-fm-text: #f0f6fc;
    --color-checks-line-dt-fm-bg: #9e6a03;
    --color-checks-gate-bg: rgba(187,128,9,0.15);
    --color-checks-gate-text: #8b949e;
    --color-checks-gate-waiting-text: #d29922;
    --color-checks-step-header-open-bg: #161b22;
    --color-checks-step-error-text: #f85149;
    --color-checks-step-warning-text: #d29922;
    --color-checks-logline-text: #8b949e;
    --color-checks-logline-num-text: #484f58;
    --color-checks-logline-debug-text: #a371f7;
    --color-checks-logline-error-text: #8b949e;
    --color-checks-logline-error-num-text: #484f58;
    --color-checks-logline-error-bg: rgba(248,81,73,0.15);
    --color-checks-logline-warning-text: #8b949e;
    --color-checks-logline-warning-num-text: #d29922;
    --color-checks-logline-warning-bg: rgba(187,128,9,0.15);
    --color-checks-logline-command-text: #58a6ff;
    --color-checks-logline-section-text: #3fb950;
    --color-checks-ansi-black: #0d1117;
    --color-checks-ansi-black-bright: #161b22;
    --color-checks-ansi-white: #b1bac4;
    --color-checks-ansi-white-bright: #b1bac4;
    --color-checks-ansi-gray: #6e7681;
    --color-checks-ansi-red: #ff7b72;
    --color-checks-ansi-red-bright: #ffa198;
    --color-checks-ansi-green: #3fb950;
    --color-checks-ansi-green-bright: #56d364;
    --color-checks-ansi-yellow: #d29922;
    --color-checks-ansi-yellow-bright: #e3b341;
    --color-checks-ansi-blue: #58a6ff;
    --color-checks-ansi-blue-bright: #79c0ff;
    --color-checks-ansi-magenta: #bc8cff;
    --color-checks-ansi-magenta-bright: #d2a8ff;
    --color-checks-ansi-cyan: #76e3ea;
    --color-checks-ansi-cyan-bright: #b3f0ff;
    --color-mktg-success: rgba(41,147,61,1);
    --color-mktg-info: rgba(42,123,243,1);
    --color-mktg-bg-shade-gradient-top: rgba(1,4,9,0.065);
    --color-mktg-bg-shade-gradient-bottom: rgba(1,4,9,0);
    --color-mktg-btn-bg-top: hsla(228,82%,66%,1);
    --color-mktg-btn-bg-bottom: #4969ed;
    --color-mktg-btn-bg-overlay-top: hsla(228,74%,59%,1);
    --color-mktg-btn-bg-overlay-bottom: #3355e0;
    --color-mktg-btn-text: #f0f6fc;
    --color-mktg-btn-primary-bg-top: hsla(137,56%,46%,1);
    --color-mktg-btn-primary-bg-bottom: #2ea44f;
    --color-mktg-btn-primary-bg-overlay-top: hsla(134,60%,38%,1);
    --color-mktg-btn-primary-bg-overlay-bottom: #22863a;
    --color-mktg-btn-primary-text: #f0f6fc;
    --color-mktg-btn-enterprise-bg-top: hsla(249,100%,72%,1);
    --color-mktg-btn-enterprise-bg-bottom: #6f57ff;
    --color-mktg-btn-enterprise-bg-overlay-top: hsla(248,65%,63%,1);
    --color-mktg-btn-enterprise-bg-overlay-bottom: #614eda;
    --color-mktg-btn-enterprise-text: #f0f6fc;
    --color-mktg-btn-outline-text: #f0f6fc;
    --color-mktg-btn-outline-border: rgba(240,246,252,0.3);
    --color-mktg-btn-outline-hover-text: #f0f6fc;
    --color-mktg-btn-outline-hover-border: rgba(240,246,252,0.5);
    --color-mktg-btn-outline-focus-border: #f0f6fc;
    --color-mktg-btn-outline-focus-border-inset: rgba(240,246,252,0.5);
    --color-mktg-btn-dark-text: #f0f6fc;
    --color-mktg-btn-dark-border: rgba(240,246,252,0.3);
    --color-mktg-btn-dark-hover-text: #f0f6fc;
    --color-mktg-btn-dark-hover-border: rgba(240,246,252,0.5);
    --color-mktg-btn-dark-focus-border: #f0f6fc;
    --color-mktg-btn-dark-focus-border-inset: rgba(240,246,252,0.5);
    --color-avatar-bg: rgba(240,246,252,0.1);
    --color-avatar-border: rgba(240,246,252,0.1);
    --color-avatar-stack-fade: #30363d;
    --color-avatar-stack-fade-more: #21262d;
    --color-avatar-child-shadow: -2px -2px 0 #0d1117;
    --color-overlay-shadow: 0 0 0 1px #30363d, 0 16px 32px rgba(1,4,9,0.85);
    --color-header-text: rgba(240,246,252,0.7);
    --color-header-bg: #161b22;
    --color-header-logo: #f0f6fc;
    --color-header-search-bg: #0d1117;
    --color-header-search-border: #30363d;
    --color-ansi-black: #484f58;
    --color-ansi-black-bright: #6e7681;
    --color-ansi-white: #b1bac4;
    --color-ansi-white-bright: #f0f6fc;
    --color-ansi-gray: #6e7681;
    --color-ansi-red: #ff7b72;
    --color-ansi-red-bright: #ffa198;
    --color-ansi-green: #3fb950;
    --color-ansi-green-bright: #56d364;
    --color-ansi-yellow: #d29922;
    --color-ansi-yellow-bright: #e3b341;
    --color-ansi-blue: #58a6ff;
    --color-ansi-blue-bright: #79c0ff;
    --color-ansi-magenta: #bc8cff;
    --color-ansi-magenta-bright: #d2a8ff;
    --color-ansi-cyan: #39c5cf;
    --color-ansi-cyan-bright: #56d4dd;
    --color-btn-text: #c9d1d9;
    --color-btn-bg: #21262d;
    --color-btn-border: rgba(240,246,252,0.1);
    --color-btn-shadow: 0 0 transparent;
    --color-btn-inset-shadow: 0 0 transparent;
    --color-btn-hover-bg: #30363d;
    --color-btn-hover-border: #8b949e;
    --color-btn-active-bg: hsla(212,12%,18%,1);
    --color-btn-active-border: #6e7681;
    --color-btn-selected-bg: #161b22;
    --color-btn-focus-bg: #21262d;
    --color-btn-focus-border: #8b949e;
    --color-btn-focus-shadow: 0 0 0 3px rgba(139,148,158,0.3);
    --color-btn-shadow-active: inset 0 0.15em 0.3em rgba(1,4,9,0.15);
    --color-btn-shadow-input-focus: 0 0 0 0.2em rgba(31,111,235,0.3);
    --color-btn-counter-bg: #30363d;
    --color-btn-primary-text: #ffffff;
    --color-btn-primary-bg: #238636;
    --color-btn-primary-border: rgba(240,246,252,0.1);
    --color-btn-primary-shadow: 0 0 transparent;
    --color-btn-primary-inset-shadow: 0 0 transparent;
    --color-btn-primary-hover-bg: #2ea043;
    --color-btn-primary-hover-border: rgba(240,246,252,0.1);
    --color-btn-primary-selected-bg: #238636;
    --color-btn-primary-selected-shadow: 0 0 transparent;
    --color-btn-primary-disabled-text: rgba(240,246,252,0.5);
    --color-btn-primary-disabled-bg: rgba(35,134,54,0.6);
    --color-btn-primary-disabled-border: rgba(240,246,252,0.1);
    --color-btn-primary-focus-bg: #238636;
    --color-btn-primary-focus-border: rgba(240,246,252,0.1);
    --color-btn-primary-focus-shadow: 0 0 0 3px rgba(46,164,79,0.4);
    --color-btn-primary-icon: #f0f6fc;
    --color-btn-primary-counter-bg: rgba(240,246,252,0.2);
    --color-btn-outline-text: #58a6ff;
    --color-btn-outline-hover-text: #58a6ff;
    --color-btn-outline-hover-bg: #30363d;
    --color-btn-outline-hover-border: rgba(240,246,252,0.1);
    --color-btn-outline-hover-shadow: 0 1px 0 rgba(1,4,9,0.1);
    --color-btn-outline-hover-inset-shadow: inset 0 1px 0 rgba(240,246,252,0.03);
    --color-btn-outline-hover-counter-bg: rgba(240,246,252,0.2);
    --color-btn-outline-selected-text: #f0f6fc;
    --color-btn-outline-selected-bg: #0d419d;
    --color-btn-outline-selected-border: rgba(240,246,252,0.1);
    --color-btn-outline-selected-shadow: 0 0 transparent;
    --color-btn-outline-disabled-text: rgba(88,166,255,0.5);
    --color-btn-outline-disabled-bg: #0d1117;
    --color-btn-outline-disabled-counter-bg: rgba(31,111,235,0.05);
    --color-btn-outline-focus-border: rgba(240,246,252,0.1);
    --color-btn-outline-focus-shadow: 0 0 0 3px rgba(17,88,199,0.4);
    --color-btn-outline-counter-bg: rgba(31,111,235,0.1);
    --color-btn-danger-text: #f85149;
    --color-btn-danger-hover-text: #f0f6fc;
    --color-btn-danger-hover-bg: #da3633;
    --color-btn-danger-hover-border: #f85149;
    --color-btn-danger-hover-shadow: 0 0 transparent;
    --color-btn-danger-hover-inset-shadow: 0 0 transparent;
    --color-btn-danger-hover-icon: #f0f6fc;
    --color-btn-danger-hover-counter-bg: rgba(255,255,255,0.2);
    --color-btn-danger-selected-text: #ffffff;
    --color-btn-danger-selected-bg: #b62324;
    --color-btn-danger-selected-border: #ff7b72;
    --color-btn-danger-selected-shadow: 0 0 transparent;
    --color-btn-danger-disabled-text: rgba(248,81,73,0.5);
    --color-btn-danger-disabled-bg: #0d1117;
    --color-btn-danger-disabled-counter-bg: rgba(218,54,51,0.05);
    --color-btn-danger-focus-border: #f85149;
    --color-btn-danger-focus-shadow: 0 0 0 3px rgba(248,81,73,0.4);
    --color-btn-danger-counter-bg: rgba(218,54,51,0.1);
    --color-btn-danger-icon: #f85149;
    --color-fg-default: #c9d1d9;
    --color-fg-muted: #8b949e;
    --color-fg-subtle: #484f58;
    --color-fg-on-emphasis: #f0f6fc;
    --color-canvas-default: #0d1117;
    --color-canvas-overlay: #161b22;
    --color-canvas-inset: #010409;
    --color-canvas-subtle: #161b22;
    --color-neutral-emphasis-plus: #6e7681;
    --color-neutral-emphasis: #6e7681;
    --color-neutral-muted: rgba(110,118,129,0.4);
    --color-neutral-subtle: rgba(110,118,129,0.1);
    --color-accent-fg: #58a6ff;
    --color-accent-emphasis: #1f6feb;
    --color-accent-muted: rgba(56,139,253,0.4);
    --color-accent-subtle: rgba(56,139,253,0.15);
    --color-success-fg: #3fb950;
    --color-success-emphasis: #238636;
    --color-success-muted: rgba(46,160,67,0.4);
    --color-success-subtle: rgba(46,160,67,0.15);
    --color-attention-fg: #d29922;
    --color-attention-emphasis: #9e6a03;
    --color-attention-muted: rgba(187,128,9,0.4);
    --color-attention-subtle: rgba(187,128,9,0.15);
    --color-severe-fg: #db6d28;
    --color-severe-emphasis: #bd561d;
    --color-severe-muted: rgba(219,109,40,0.4);
    --color-severe-subtle: rgba(219,109,40,0.15);
    --color-danger-fg: #f85149;
    --color-danger-emphasis: #da3633;
    --color-danger-muted: rgba(248,81,73,0.4);
    --color-danger-subtle: rgba(248,81,73,0.15);
    --color-done-fg: #a371f7;
    --color-done-emphasis: #8957e5;
    --color-done-muted: rgba(163,113,247,0.4);
    --color-done-subtle: rgba(163,113,247,0.15);
    --color-sponsors-fg: #db61a2;
    --color-sponsors-emphasis: #bf4b8a;
    --color-sponsors-muted: rgba(219,97,162,0.4);
    --color-sponsors-subtle: rgba(219,97,162,0.15);
    --color-primer-canvas-backdrop: rgba(1,4,9,0.8);
    --color-primer-canvas-sticky: rgba(13,17,23,0.95);
    --color-primer-border-active: #F78166;
    --color-primer-border-contrast: rgba(240,246,252,0.2);
    --color-primer-shadow-highlight: 0 0 transparent;
    --color-primer-shadow-inset: 0 0 transparent;
    --color-primer-shadow-focus: 0 0 0 3px #0c2d6b;
    --color-scale-black: #010409;
    --color-scale-white: #f0f6fc;
    --color-scale-gray-0: #f0f6fc;
    --color-scale-gray-1: #c9d1d9;
    --color-scale-gray-2: #b1bac4;
    --color-scale-gray-3: #8b949e;
    --color-scale-gray-4: #6e7681;
    --color-scale-gray-5: #484f58;
    --color-scale-gray-6: #30363d;
    --color-scale-gray-7: #21262d;
    --color-scale-gray-8: #161b22;
    --color-scale-gray-9: #0d1117;
    --color-scale-blue-0: #cae8ff;
    --color-scale-blue-1: #a5d6ff;
    --color-scale-blue-2: #79c0ff;
    --color-scale-blue-3: #58a6ff;
    --color-scale-blue-4: #388bfd;
    --color-scale-blue-5: #1f6feb;
    --color-scale-blue-6: #1158c7;
    --color-scale-blue-7: #0d419d;
    --color-scale-blue-8: #0c2d6b;
    --color-scale-blue-9: #051d4d;
    --color-scale-green-0: #aff5b4;
    --color-scale-green-1: #7ee787;
    --color-scale-green-2: #56d364;
    --color-scale-green-3: #3fb950;
    --color-scale-green-4: #2ea043;
    --color-scale-green-5: #238636;
    --color-scale-green-6: #196c2e;
    --color-scale-green-7: #0f5323;
    --color-scale-green-8: #033a16;
    --color-scale-green-9: #04260f;
    --color-scale-yellow-0: #f8e3a1;
    --color-scale-yellow-1: #f2cc60;
    --color-scale-yellow-2: #e3b341;
    --color-scale-yellow-3: #d29922;
    --color-scale-yellow-4: #bb8009;
    --color-scale-yellow-5: #9e6a03;
    --color-scale-yellow-6: #845306;
    --color-scale-yellow-7: #693e00;
    --color-scale-yellow-8: #4b2900;
    --color-scale-yellow-9: #341a00;
    --color-scale-orange-0: #ffdfb6;
    --color-scale-orange-1: #ffc680;
    --color-scale-orange-2: #ffa657;
    --color-scale-orange-3: #f0883e;
    --color-scale-orange-4: #db6d28;
    --color-scale-orange-5: #bd561d;
    --color-scale-orange-6: #9b4215;
    --color-scale-orange-7: #762d0a;
    --color-scale-orange-8: #5a1e02;
    --color-scale-orange-9: #3d1300;
    --color-scale-red-0: #ffdcd7;
    --color-scale-red-1: #ffc1ba;
    --color-scale-red-2: #ffa198;
    --color-scale-red-3: #ff7b72;
    --color-scale-red-4: #f85149;
    --color-scale-red-5: #da3633;
    --color-scale-red-6: #b62324;
    --color-scale-red-7: #8e1519;
    --color-scale-red-8: #67060c;
    --color-scale-red-9: #490202;
    --color-scale-purple-0: #eddeff;
    --color-scale-purple-1: #e2c5ff;
    --color-scale-purple-2: #d2a8ff;
    --color-scale-purple-3: #bc8cff;
    --color-scale-purple-4: #a371f7;
    --color-scale-purple-5: #8957e5;
    --color-scale-purple-6: #6e40c9;
    --color-scale-purple-7: #553098;
    --color-scale-purple-8: #3c1e70;
    --color-scale-purple-9: #271052;
    --color-scale-pink-0: #ffdaec;
    --color-scale-pink-1: #ffbedd;
    --color-scale-pink-2: #ff9bce;
    --color-scale-pink-3: #f778ba;
    --color-scale-pink-4: #db61a2;
    --color-scale-pink-5: #bf4b8a;
    --color-scale-pink-6: #9e3670;
    --color-scale-pink-7: #7d2457;
    --color-scale-pink-8: #5e103e;
    --color-scale-pink-9: #42062a;
    --color-scale-coral-0: #FFDDD2;
    --color-scale-coral-1: #FFC2B2;
    --color-scale-coral-2: #FFA28B;
    --color-scale-coral-3: #F78166;
    --color-scale-coral-4: #EA6045;
    --color-scale-coral-5: #CF462D;
    --color-scale-coral-6: #AC3220;
    --color-scale-coral-7: #872012;
    --color-scale-coral-8: #640D04;
    --color-scale-coral-9: #460701;
  }
}
[data-color-mode=light][data-light-theme=dark_dimmed],
[data-color-mode=dark][data-dark-theme=dark_dimmed] {
  --color-auto-black: #cdd9e5;
  --color-auto-white: #1c2128;
  --color-auto-gray-0: #22272e;
  --color-auto-gray-1: #2d333b;
  --color-auto-gray-2: #373e47;
  --color-auto-gray-3: #444c56;
  --color-auto-gray-4: #545d68;
  --color-auto-gray-5: #636e7b;
  --color-auto-gray-6: #768390;
  --color-auto-gray-7: #909dab;
  --color-auto-gray-8: #adbac7;
  --color-auto-gray-9: #cdd9e5;
  --color-auto-blue-0: #0f2d5c;
  --color-auto-blue-1: #143d79;
  --color-auto-blue-2: #1b4b91;
  --color-auto-blue-3: #255ab2;
  --color-auto-blue-4: #316dca;
  --color-auto-blue-5: #4184e4;
  --color-auto-blue-6: #539bf5;
  --color-auto-blue-7: #6cb6ff;
  --color-auto-blue-8: #96d0ff;
  --color-auto-blue-9: #c6e6ff;
  --color-auto-green-0: #113417;
  --color-auto-green-1: #1b4721;
  --color-auto-green-2: #245829;
  --color-auto-green-3: #2b6a30;
  --color-auto-green-4: #347d39;
  --color-auto-green-5: #46954a;
  --color-auto-green-6: #57ab5a;
  --color-auto-green-7: #6bc46d;
  --color-auto-green-8: #8ddb8c;
  --color-auto-green-9: #b4f1b4;
  --color-auto-yellow-0: #452700;
  --color-auto-yellow-1: #593600;
  --color-auto-yellow-2: #6c4400;
  --color-auto-yellow-3: #805400;
  --color-auto-yellow-4: #966600;
  --color-auto-yellow-5: #ae7c14;
  --color-auto-yellow-6: #c69026;
  --color-auto-yellow-7: #daaa3f;
  --color-auto-yellow-8: #eac55f;
  --color-auto-yellow-9: #fbe090;
  --color-auto-orange-0: #4d210c;
  --color-auto-orange-1: #682d0f;
  --color-auto-orange-2: #7f3913;
  --color-auto-orange-3: #94471b;
  --color-auto-orange-4: #ae5622;
  --color-auto-orange-5: #cc6b2c;
  --color-auto-orange-6: #e0823d;
  --color-auto-orange-7: #f69d50;
  --color-auto-orange-8: #ffbc6f;
  --color-auto-orange-9: #ffddb0;
  --color-auto-red-0: #78191b;
  --color-auto-red-1: #78191b;
  --color-auto-red-2: #922323;
  --color-auto-red-3: #ad2e2c;
  --color-auto-red-4: #c93c37;
  --color-auto-red-5: #e5534b;
  --color-auto-red-6: #f47067;
  --color-auto-red-7: #ff938a;
  --color-auto-red-8: #ffb8b0;
  --color-auto-red-9: #ffd8d3;
  --color-auto-purple-0: #352160;
  --color-auto-purple-1: #472c82;
  --color-auto-purple-2: #5936a2;
  --color-auto-purple-3: #6b44bc;
  --color-auto-purple-4: #8256d0;
  --color-auto-purple-5: #986ee2;
  --color-auto-purple-6: #b083f0;
  --color-auto-purple-7: #dcbdfb;
  --color-auto-purple-8: #dcbdfb;
  --color-auto-purple-9: #eedcff;
  --color-auto-pink-0: #551639;
  --color-auto-pink-1: #69264a;
  --color-auto-pink-2: #7e325a;
  --color-auto-pink-3: #983b6e;
  --color-auto-pink-4: #ae4c82;
  --color-auto-pink-5: #c96198;
  --color-auto-pink-6: #e275ad;
  --color-auto-pink-7: #fc8dc7;
  --color-auto-pink-8: #ffb3d8;
  --color-auto-pink-9: #ffd7eb;
  --color-text-primary: #adbac7;
  --color-text-secondary: #768390;
  --color-text-tertiary: #768390;
  --color-text-placeholder: #545d68;
  --color-text-disabled: #768390;
  --color-text-inverse: #cdd9e5;
  --color-text-link: #539bf5;
  --color-text-danger: #e5534b;
  --color-text-success: #57ab5a;
  --color-text-warning: #c69026;
  --color-text-white: #cdd9e5;
  --color-icon-primary: #adbac7;
  --color-icon-secondary: #768390;
  --color-icon-tertiary: #768390;
  --color-icon-info: #539bf5;
  --color-icon-danger: #e5534b;
  --color-icon-success: #57ab5a;
  --color-icon-warning: #c69026;
  --color-border-primary: #444c56;
  --color-border-secondary: #373e47;
  --color-border-tertiary: #444c56;
  --color-border-overlay: #444c56;
  --color-border-inverse: #cdd9e5;
  --color-border-info: #316dca;
  --color-border-danger: #c93c37;
  --color-border-success: #347d39;
  --color-border-warning: #966600;
  --color-border-default: #444c56;
  --color-border-muted: #373e47;
  --color-border-subtle: rgba(205,217,229,0.1);
  --color-bg-canvas: #22272e;
  --color-bg-canvas-mobile: rgba(0,0,0,0);
  --color-bg-canvas-inverse: #636e7b;
  --color-bg-canvas-inset: #1c2128;
  --color-bg-primary: #22272e;
  --color-bg-secondary: #2d333b;
  --color-bg-tertiary: #2d333b;
  --color-bg-overlay: #2d333b;
  --color-bg-backdrop: rgba(28,33,40,0.8);
  --color-bg-info: rgba(65,132,228,0.15);
  --color-bg-info-inverse: #316dca;
  --color-bg-danger: rgba(229,83,75,0.15);
  --color-bg-danger-inverse: #c93c37;
  --color-bg-success: rgba(70,149,74,0.15);
  --color-bg-success-inverse: #347d39;
  --color-bg-warning: rgba(174,124,20,0.15);
  --color-bg-warning-inverse: #966600;
  --color-shadow-highlight: 0 0 transparent;
  --color-shadow-inset: 0 0 transparent;
  --color-shadow-small: 0 0 transparent;
  --color-shadow-medium: 0 3px 6px #1c2128;
  --color-shadow-large: 0 8px 24px #1c2128;
  --color-shadow-extra-large: 0 12px 48px #1c2128;
  --color-state-hover-primary-bg: #316dca;
  --color-state-hover-primary-border: #316dca;
  --color-state-hover-primary-text: #cdd9e5;
  --color-state-hover-primary-icon: #cdd9e5;
  --color-state-hover-secondary-bg: rgba(99,110,123,0.1);
  --color-state-hover-secondary-border: rgba(99,110,123,0.1);
  --color-state-selected-primary-bg: #316dca;
  --color-state-selected-primary-border: #316dca;
  --color-state-selected-primary-text: #cdd9e5;
  --color-state-selected-primary-icon: #cdd9e5;
  --color-state-focus-border: #316dca;
  --color-state-focus-shadow: 0 0 0 3px #143d79;
  --color-fade-fg-10: rgba(205,217,229,0.1);
  --color-fade-fg-15: rgba(205,217,229,0.15);
  --color-fade-fg-30: rgba(205,217,229,0.3);
  --color-fade-fg-50: rgba(205,217,229,0.5);
  --color-fade-fg-70: rgba(205,217,229,0.7);
  --color-fade-fg-85: rgba(205,217,229,0.85);
  --color-fade-black-10: rgba(28,33,40,0.1);
  --color-fade-black-15: rgba(28,33,40,0.15);
  --color-fade-black-30: rgba(28,33,40,0.3);
  --color-fade-black-50: rgba(28,33,40,0.5);
  --color-fade-black-70: rgba(28,33,40,0.7);
  --color-fade-black-85: rgba(28,33,40,0.85);
  --color-fade-white-10: rgba(205,217,229,0.1);
  --color-fade-white-15: rgba(205,217,229,0.15);
  --color-fade-white-30: rgba(205,217,229,0.3);
  --color-fade-white-50: rgba(205,217,229,0.5);
  --color-fade-white-70: rgba(205,217,229,0.7);
  --color-fade-white-85: rgba(205,217,229,0.85);
  --color-alert-info-text: #adbac7;
  --color-alert-info-icon: #539bf5;
  --color-alert-info-bg: rgba(65,132,228,0.15);
  --color-alert-info-border: rgba(65,132,228,0.4);
  --color-alert-warn-text: #adbac7;
  --color-alert-warn-icon: #c69026;
  --color-alert-warn-bg: rgba(174,124,20,0.15);
  --color-alert-warn-border: rgba(174,124,20,0.4);
  --color-alert-error-text: #adbac7;
  --color-alert-error-icon: #e5534b;
  --color-alert-error-bg: rgba(229,83,75,0.15);
  --color-alert-error-border: rgba(229,83,75,0.4);
  --color-alert-success-text: #adbac7;
  --color-alert-success-icon: #57ab5a;
  --color-alert-success-bg: rgba(70,149,74,0.15);
  --color-alert-success-border: rgba(70,149,74,0.4);
  --color-autocomplete-shadow: 0 3px 6px #1c2128;
  --color-autocomplete-row-border: #373e47;
  --color-blankslate-icon: #768390;
  --color-counter-text: #adbac7;
  --color-counter-bg: rgba(99,110,123,0.4);
  --color-counter-primary-text: #cdd9e5;
  --color-counter-primary-bg: #636e7b;
  --color-counter-secondary-text: #768390;
  --color-counter-secondary-bg: rgba(99,110,123,0.1);
  --color-box-blue-border: rgba(65,132,228,0.4);
  --color-box-row-yellow-bg: rgba(174,124,20,0.15);
  --color-box-row-blue-bg: rgba(65,132,228,0.15);
  --color-box-header-blue-bg: rgba(65,132,228,0.15);
  --color-box-header-blue-border: rgba(65,132,228,0.4);
  --color-box-border-info: rgba(65,132,228,0.4);
  --color-box-bg-info: rgba(65,132,228,0.15);
  --color-box-border-warning: rgba(174,124,20,0.4);
  --color-box-bg-warning: rgba(174,124,20,0.15);
  --color-branch-name-text: #768390;
  --color-branch-name-icon: #768390;
  --color-branch-name-bg: rgba(65,132,228,0.15);
  --color-branch-name-link-text: #539bf5;
  --color-branch-name-link-icon: #539bf5;
  --color-branch-name-link-bg: rgba(65,132,228,0.15);
  --color-markdown-code-bg: rgba(99,110,123,0.4);
  --color-markdown-frame-border: #444c56;
  --color-markdown-blockquote-border: #444c56;
  --color-markdown-table-border: #444c56;
  --color-markdown-table-tr-border: #373e47;
  --color-filter-item-bar-bg: rgba(99,110,123,0.1);
  --color-hidden-text-expander-bg: rgba(99,110,123,0.4);
  --color-hidden-text-expander-bg-hover: rgba(65,132,228,0.4);
  --color-drag-and-drop-border: #444c56;
  --color-upload-enabled-border: #444c56;
  --color-upload-enabled-border-focused: #316dca;
  --color-previewable-comment-form-border: #444c56;
  --color-verified-badge-text: #57ab5a;
  --color-verified-badge-bg: #22272e;
  --color-verified-badge-border: #444c56;
  --color-social-count-bg: #22272e;
  --color-tooltip-text: #cdd9e5;
  --color-tooltip-bg: #636e7b;
  --color-files-explorer-icon: #539bf5;
  --color-hl-author-bg: rgba(65,132,228,0.15);
  --color-hl-author-border: rgba(65,132,228,0.4);
  --color-logo-subdued: rgba(99,110,123,0.4);
  --color-discussion-border: rgba(70,149,74,0.4);
  --color-discussion-bg-success: #347d39;
  --color-actions-workflow-table-sticky-bg: rgba(34,39,46,0.95);
  --color-repo-language-color-border: rgba(205,217,229,0.2);
  --color-code-selection-bg: rgba(65,132,228,0.4);
  --color-highlight-text: #adbac7;
  --color-highlight-bg: rgba(174,124,20,0.15);
  --color-blob-line-highlight-bg: rgba(174,124,20,0.15);
  --color-blob-line-highlight-border: rgba(174,124,20,0.4);
  --color-topic-tag-text: #539bf5;
  --color-topic-tag-bg: rgba(65,132,228,0.15);
  --color-topic-tag-hover-bg: #316dca;
  --color-topic-tag-active-bg: rgba(65,132,228,0.15);
  --color-topic-tag-border: rgba(0,0,0,0);
  --color-footer-invertocat-octicon: #545d68;
  --color-footer-invertocat-octicon-hover: #768390;
  --color-dropdown-shadow: 0 8px 24px #1c2128;
  --color-label-border: #444c56;
  --color-label-primary-text: #adbac7;
  --color-label-primary-border: #636e7b;
  --color-label-secondary-text: #768390;
  --color-label-secondary-border: #444c56;
  --color-label-info-text: #539bf5;
  --color-label-info-border: #316dca;
  --color-label-success-text: #57ab5a;
  --color-label-success-border: #347d39;
  --color-label-warning-text: #c69026;
  --color-label-warning-border: #966600;
  --color-label-danger-text: #e5534b;
  --color-label-danger-border: #c93c37;
  --color-label-orange-text: #cc6b2c;
  --color-label-orange-border: #ae5622;
  --color-input-bg: #22272e;
  --color-input-contrast-bg: #1c2128;
  --color-input-border: #444c56;
  --color-input-shadow: 0 0 transparent;
  --color-input-disabled-border: #444c56;
  --color-input-warning-border: #966600;
  --color-input-error-border: #c93c37;
  --color-input-tooltip-success-text: #adbac7;
  --color-input-tooltip-success-bg: rgba(70,149,74,0.15);
  --color-input-tooltip-success-border: rgba(70,149,74,0.4);
  --color-input-tooltip-warning-text: #adbac7;
  --color-input-tooltip-warning-bg: rgba(174,124,20,0.15);
  --color-input-tooltip-warning-border: rgba(174,124,20,0.4);
  --color-input-tooltip-error-text: #adbac7;
  --color-input-tooltip-error-bg: rgba(229,83,75,0.15);
  --color-input-tooltip-error-border: rgba(229,83,75,0.4);
  --color-input-disabled-bg: rgba(99,110,123,0);
  --color-toast-text: #adbac7;
  --color-toast-bg: #22272e;
  --color-toast-border: #444c56;
  --color-toast-shadow: 0 8px 24px #1c2128;
  --color-toast-icon: #cdd9e5;
  --color-toast-icon-bg: #316dca;
  --color-toast-icon-border: rgba(0,0,0,0);
  --color-toast-success-text: #adbac7;
  --color-toast-success-border: #444c56;
  --color-toast-success-icon: #cdd9e5;
  --color-toast-success-icon-bg: #347d39;
  --color-toast-success-icon-border: rgba(0,0,0,0);
  --color-toast-warning-text: #adbac7;
  --color-toast-warning-border: #444c56;
  --color-toast-warning-icon: #adbac7;
  --color-toast-warning-icon-bg: #966600;
  --color-toast-warning-icon-border: rgba(0,0,0,0);
  --color-toast-danger-text: #adbac7;
  --color-toast-danger-border: #444c56;
  --color-toast-danger-icon: #cdd9e5;
  --color-toast-danger-icon-bg: #c93c37;
  --color-toast-danger-icon-border: rgba(0,0,0,0);
  --color-toast-loading-text: #adbac7;
  --color-toast-loading-border: #444c56;
  --color-toast-loading-icon: #cdd9e5;
  --color-toast-loading-icon-bg: #636e7b;
  --color-toast-loading-icon-border: rgba(0,0,0,0);
  --color-timeline-text: #768390;
  --color-timeline-badge-success-border: rgba(0,0,0,0);
  --color-timeline-target-badge-border: #316dca;
  --color-timeline-target-badge-shadow: rgba(65,132,228,0.4);
  --color-timeline-badge-bg: #373e47;
  --color-diffstat-neutral-bg: rgba(99,110,123,0.4);
  --color-diffstat-neutral-border: rgba(205,217,229,0.1);
  --color-diffstat-deletion-border: rgba(205,217,229,0.1);
  --color-diffstat-addition-border: rgba(205,217,229,0.1);
  --color-diffstat-deletion-bg: #c93c37;
  --color-diffstat-addition-bg: #57ab5a;
  --color-diff-addition-text: #adbac7;
  --color-diff-addition-bg: rgba(70,149,74,0.15);
  --color-diff-addition-border: rgba(70,149,74,0.4);
  --color-diff-deletion-text: #adbac7;
  --color-diff-deletion-bg: rgba(229,83,75,0.15);
  --color-diff-deletion-border: rgba(229,83,75,0.4);
  --color-diff-change-text: #c69026;
  --color-diff-change-bg: rgba(174,124,20,0.15);
  --color-diff-change-border: rgba(174,124,20,0.4);
  --color-merge-box-success-icon-bg: #347d39;
  --color-merge-box-success-icon-text: #cdd9e5;
  --color-merge-box-success-icon-border: rgba(0,0,0,0);
  --color-merge-box-success-indicator-bg: #347d39;
  --color-merge-box-success-indicator-border: rgba(0,0,0,0);
  --color-merge-box-merged-icon-bg: #8256d0;
  --color-merge-box-merged-icon-text: #cdd9e5;
  --color-merge-box-merged-icon-border: rgba(0,0,0,0);
  --color-merge-box-merged-box-border: #8256d0;
  --color-merge-box-neutral-icon-bg: #636e7b;
  --color-merge-box-neutral-icon-text: #cdd9e5;
  --color-merge-box-neutral-icon-border: rgba(0,0,0,0);
  --color-merge-box-neutral-indicator-bg: #636e7b;
  --color-merge-box-neutral-indicator-border: rgba(0,0,0,0);
  --color-merge-box-warning-icon-bg: #966600;
  --color-merge-box-warning-icon-text: #cdd9e5;
  --color-merge-box-warning-icon-border: rgba(0,0,0,0);
  --color-merge-box-warning-box-border: #966600;
  --color-merge-box-warning-merge-highlight: rgba(0,0,0,0);
  --color-merge-box-error-icon-bg: #c93c37;
  --color-merge-box-error-icon-text: #cdd9e5;
  --color-merge-box-error-icon-border: rgba(0,0,0,0);
  --color-merge-box-error-indicator-bg: #c93c37;
  --color-merge-box-error-indicator-border: rgba(0,0,0,0);
  --color-underlinenav-border: rgba(0,0,0,0);
  --color-underlinenav-border-hover: rgba(99,110,123,0.4);
  --color-underlinenav-border-active: #EC775C;
  --color-underlinenav-text: #adbac7;
  --color-underlinenav-text-hover: #adbac7;
  --color-underlinenav-text-active: #adbac7;
  --color-underlinenav-icon: #545d68;
  --color-underlinenav-icon-hover: #545d68;
  --color-underlinenav-icon-active: #adbac7;
  --color-underlinenav-counter-text: #adbac7;
  --color-underlinenav-counter-bg: rgba(99,110,123,0.4);
  --color-select-menu-border-secondary: #373e47;
  --color-select-menu-shadow: 0 8px 24px #1c2128;
  --color-select-menu-backdrop-bg: rgba(28,33,40,0.8);
  --color-select-menu-backdrop-border: #545d68;
  --color-select-menu-tap-highlight: rgba(68,76,86,0.5);
  --color-select-menu-tap-focus-bg: #143d79;
  --color-sidenav-border-active: #EC775C;
  --color-sidenav-selected-bg: #373e47;
  --color-menu-heading-text: #adbac7;
  --color-menu-border-active: #EC775C;
  --color-menu-bg-active: #2d333b;
  --color-project-card-bg: #2d333b;
  --color-project-header-bg: #22272e;
  --color-project-sidebar-bg: #2d333b;
  --color-project-gradient-in: #2d333b;
  --color-project-gradient-out: rgba(45,51,59,0);
  --color-pr-state-draft-text: #cdd9e5;
  --color-pr-state-draft-bg: #636e7b;
  --color-pr-state-draft-border: rgba(0,0,0,0);
  --color-pr-state-open-text: #cdd9e5;
  --color-pr-state-open-bg: #347d39;
  --color-pr-state-open-border: rgba(0,0,0,0);
  --color-pr-state-merged-text: #cdd9e5;
  --color-pr-state-merged-bg: #8256d0;
  --color-pr-state-merged-border: rgba(0,0,0,0);
  --color-pr-state-closed-text: #cdd9e5;
  --color-pr-state-closed-bg: #c93c37;
  --color-pr-state-closed-border: rgba(0,0,0,0);
  --color-diff-blob-num-text: #545d68;
  --color-diff-blob-num-hover-text: #adbac7;
  --color-diff-blob-addition-num-hover-text: #adbac7;
  --color-diff-blob-addition-num-text: #adbac7;
  --color-diff-blob-addition-fg: #adbac7;
  --color-diff-blob-addition-num-bg: rgba(87,171,90,0.3);
  --color-diff-blob-addition-line-bg: rgba(70,149,74,0.15);
  --color-diff-blob-addition-word-bg: rgba(70,149,74,0.4);
  --color-diff-blob-deletion-num-hover-text: #adbac7;
  --color-diff-blob-deletion-num-text: #adbac7;
  --color-diff-blob-deletion-fg: #adbac7;
  --color-diff-blob-deletion-num-bg: rgba(229,83,75,0.3);
  --color-diff-blob-deletion-line-bg: rgba(229,83,75,0.15);
  --color-diff-blob-deletion-word-bg: rgba(229,83,75,0.4);
  --color-diff-blob-hunk-text: #768390;
  --color-diff-blob-hunk-num-bg: rgba(65,132,228,0.4);
  --color-diff-blob-hunk-line-bg: rgba(65,132,228,0.15);
  --color-diff-blob-empty-block-bg: rgba(99,110,123,0.1);
  --color-diff-blob-selected-line-highlight-bg: rgba(174,124,20,0.15);
  --color-diff-blob-selected-line-highlight-border: rgba(174,124,20,0.4);
  --color-diff-blob-expander-hover-icon: #cdd9e5;
  --color-diff-blob-expander-hover-bg: #316dca;
  --color-diff-blob-expander-icon: #768390;
  --color-diff-blob-comment-button-icon: #cdd9e5;
  --color-diff-blob-comment-button-bg: #316dca;
  --color-diff-blob-comment-button-gradient-bg: rgba(0,0,0,0);
  --color-diff-blob-selected-line-highlight-mix-blend-mode: screen;
  --color-global-nav-logo: #cdd9e5;
  --color-global-nav-bg: #2d333b;
  --color-global-nav-text: #adbac7;
  --color-global-nav-icon: #adbac7;
  --color-global-nav-input-bg: #22272e;
  --color-global-nav-input-border: #373e47;
  --color-global-nav-input-icon: #373e47;
  --color-global-nav-input-placeholder: #545d68;
  --color-intro-shelf-gradient-left: rgba(65,132,228,0.15);
  --color-intro-shelf-gradient-right: rgba(70,149,74,0.15);
  --color-intro-shelf-gradient-in: #22272e;
  --color-intro-shelf-gradient-out: rgba(205,217,229,0);
  --color-canvas-default-transparent: rgba(34,39,46,0);
  --color-marketing-icon-primary: #6cb6ff;
  --color-marketing-icon-secondary: #316dca;
  --color-search-keyword-hl: rgba(198,144,38,0.4);
  --color-prettylights-syntax-comment: #768390;
  --color-prettylights-syntax-constant: #6cb6ff;
  --color-prettylights-syntax-entity: #dcbdfb;
  --color-prettylights-syntax-storage-modifier-import: #adbac7;
  --color-prettylights-syntax-entity-tag: #8ddb8c;
  --color-prettylights-syntax-keyword: #f47067;
  --color-prettylights-syntax-string: #96d0ff;
  --color-prettylights-syntax-variable: #f69d50;
  --color-prettylights-syntax-brackethighlighter-unmatched: #e5534b;
  --color-prettylights-syntax-invalid-illegal-text: #cdd9e5;
  --color-prettylights-syntax-invalid-illegal-bg: #922323;
  --color-prettylights-syntax-carriage-return-text: #cdd9e5;
  --color-prettylights-syntax-carriage-return-bg: #ad2e2c;
  --color-prettylights-syntax-string-regexp: #8ddb8c;
  --color-prettylights-syntax-markup-list: #eac55f;
  --color-prettylights-syntax-markup-heading: #316dca;
  --color-prettylights-syntax-markup-italic: #adbac7;
  --color-prettylights-syntax-markup-bold: #adbac7;
  --color-prettylights-syntax-markup-deleted-text: #ffd8d3;
  --color-prettylights-syntax-markup-deleted-bg: #78191b;
  --color-prettylights-syntax-markup-inserted-text: #b4f1b4;
  --color-prettylights-syntax-markup-inserted-bg: #1b4721;
  --color-prettylights-syntax-markup-changed-text: #ffddb0;
  --color-prettylights-syntax-markup-changed-bg: #682d0f;
  --color-prettylights-syntax-markup-ignored-text: #adbac7;
  --color-prettylights-syntax-markup-ignored-bg: #255ab2;
  --color-prettylights-syntax-meta-diff-range: #dcbdfb;
  --color-prettylights-syntax-brackethighlighter-angle: #768390;
  --color-prettylights-syntax-sublimelinter-gutter-mark: #545d68;
  --color-prettylights-syntax-constant-other-reference-link: #96d0ff;
  --color-codemirror-text: #adbac7;
  --color-codemirror-bg: #22272e;
  --color-codemirror-gutters-bg: #22272e;
  --color-codemirror-guttermarker-text: #22272e;
  --color-codemirror-guttermarker-subtle-text: #545d68;
  --color-codemirror-linenumber-text: #768390;
  --color-codemirror-cursor: #adbac7;
  --color-codemirror-selection-bg: rgba(65,132,228,0.4);
  --color-codemirror-activeline-bg: rgba(99,110,123,0.1);
  --color-codemirror-matchingbracket-text: #adbac7;
  --color-codemirror-lines-bg: #22272e;
  --color-codemirror-syntax-comment: #768390;
  --color-codemirror-syntax-constant: #6cb6ff;
  --color-codemirror-syntax-entity: #dcbdfb;
  --color-codemirror-syntax-keyword: #f47067;
  --color-codemirror-syntax-storage: #f47067;
  --color-codemirror-syntax-string: #96d0ff;
  --color-codemirror-syntax-support: #6cb6ff;
  --color-codemirror-syntax-variable: #f69d50;
  --color-checks-bg: #1c2128;
  --color-checks-run-border-width: 1px;
  --color-checks-container-border-width: 1px;
  --color-checks-text-primary: #adbac7;
  --color-checks-text-secondary: #768390;
  --color-checks-text-link: #539bf5;
  --color-checks-btn-icon: #768390;
  --color-checks-btn-hover-icon: #adbac7;
  --color-checks-btn-hover-bg: rgba(99,110,123,0.1);
  --color-checks-input-text: #768390;
  --color-checks-input-placeholder-text: #545d68;
  --color-checks-input-focus-text: #adbac7;
  --color-checks-input-bg: #2d333b;
  --color-checks-input-shadow: 0 0 0 1px (obj) => get_1.default(obj, path);
  --color-checks-donut-error: #e5534b;
  --color-checks-donut-pending: #c69026;
  --color-checks-donut-success: #46954a;
  --color-checks-donut-neutral: #768390;
  --color-checks-dropdown-text: #adbac7;
  --color-checks-dropdown-bg: #2d333b;
  --color-checks-dropdown-border: #444c56;
  --color-checks-dropdown-shadow: rgba(28,33,40,0.3);
  --color-checks-dropdown-hover-text: #adbac7;
  --color-checks-dropdown-hover-bg: rgba(99,110,123,0.1);
  --color-checks-dropdown-btn-hover-text: #adbac7;
  --color-checks-dropdown-btn-hover-bg: rgba(99,110,123,0.1);
  --color-checks-scrollbar-thumb-bg: rgba(99,110,123,0.4);
  --color-checks-header-label-text: #768390;
  --color-checks-header-label-open-text: #adbac7;
  --color-checks-header-border: #373e47;
  --color-checks-header-icon: #768390;
  --color-checks-line-text: #768390;
  --color-checks-line-num-text: #545d68;
  --color-checks-line-timestamp-text: #545d68;
  --color-checks-line-hover-bg: rgba(99,110,123,0.1);
  --color-checks-line-selected-bg: rgba(65,132,228,0.15);
  --color-checks-line-selected-num-text: #539bf5;
  --color-checks-line-dt-fm-text: #cdd9e5;
  --color-checks-line-dt-fm-bg: #966600;
  --color-checks-gate-bg: rgba(174,124,20,0.15);
  --color-checks-gate-text: #768390;
  --color-checks-gate-waiting-text: #c69026;
  --color-checks-step-header-open-bg: #2d333b;
  --color-checks-step-error-text: #e5534b;
  --color-checks-step-warning-text: #c69026;
  --color-checks-logline-text: #768390;
  --color-checks-logline-num-text: #545d68;
  --color-checks-logline-debug-text: #986ee2;
  --color-checks-logline-error-text: #768390;
  --color-checks-logline-error-num-text: #545d68;
  --color-checks-logline-error-bg: rgba(229,83,75,0.15);
  --color-checks-logline-warning-text: #768390;
  --color-checks-logline-warning-num-text: #c69026;
  --color-checks-logline-warning-bg: rgba(174,124,20,0.15);
  --color-checks-logline-command-text: #539bf5;
  --color-checks-logline-section-text: #57ab5a;
  --color-checks-ansi-black: #22272e;
  --color-checks-ansi-black-bright: #2d333b;
  --color-checks-ansi-white: #909dab;
  --color-checks-ansi-white-bright: #909dab;
  --color-checks-ansi-gray: #636e7b;
  --color-checks-ansi-red: #f47067;
  --color-checks-ansi-red-bright: #ff938a;
  --color-checks-ansi-green: #57ab5a;
  --color-checks-ansi-green-bright: #6bc46d;
  --color-checks-ansi-yellow: #c69026;
  --color-checks-ansi-yellow-bright: #daaa3f;
  --color-checks-ansi-blue: #539bf5;
  --color-checks-ansi-blue-bright: #6cb6ff;
  --color-checks-ansi-magenta: #b083f0;
  --color-checks-ansi-magenta-bright: #dcbdfb;
  --color-checks-ansi-cyan: #76e3ea;
  --color-checks-ansi-cyan-bright: #b3f0ff;
  --color-mktg-success: rgba(61,137,66,1);
  --color-mktg-info: rgba(56,119,213,1);
  --color-mktg-bg-shade-gradient-top: rgba(28,33,40,0.065);
  --color-mktg-bg-shade-gradient-bottom: rgba(28,33,40,0);
  --color-mktg-btn-bg-top: hsla(228,82%,66%,1);
  --color-mktg-btn-bg-bottom: #4969ed;
  --color-mktg-btn-bg-overlay-top: hsla(228,74%,59%,1);
  --color-mktg-btn-bg-overlay-bottom: #3355e0;
  --color-mktg-btn-text: #cdd9e5;
  --color-mktg-btn-primary-bg-top: hsla(137,56%,46%,1);
  --color-mktg-btn-primary-bg-bottom: #2ea44f;
  --color-mktg-btn-primary-bg-overlay-top: hsla(134,60%,38%,1);
  --color-mktg-btn-primary-bg-overlay-bottom: #22863a;
  --color-mktg-btn-primary-text: #cdd9e5;
  --color-mktg-btn-enterprise-bg-top: hsla(249,100%,72%,1);
  --color-mktg-btn-enterprise-bg-bottom: #6f57ff;
  --color-mktg-btn-enterprise-bg-overlay-top: hsla(248,65%,63%,1);
  --color-mktg-btn-enterprise-bg-overlay-bottom: #614eda;
  --color-mktg-btn-enterprise-text: #cdd9e5;
  --color-mktg-btn-outline-text: #cdd9e5;
  --color-mktg-btn-outline-border: rgba(205,217,229,0.3);
  --color-mktg-btn-outline-hover-text: #cdd9e5;
  --color-mktg-btn-outline-hover-border: rgba(205,217,229,0.5);
  --color-mktg-btn-outline-focus-border: #cdd9e5;
  --color-mktg-btn-outline-focus-border-inset: rgba(205,217,229,0.5);
  --color-mktg-btn-dark-text: #cdd9e5;
  --color-mktg-btn-dark-border: rgba(205,217,229,0.3);
  --color-mktg-btn-dark-hover-text: #cdd9e5;
  --color-mktg-btn-dark-hover-border: rgba(205,217,229,0.5);
  --color-mktg-btn-dark-focus-border: #cdd9e5;
  --color-mktg-btn-dark-focus-border-inset: rgba(205,217,229,0.5);
  --color-avatar-bg: rgba(205,217,229,0.1);
  --color-avatar-border: rgba(205,217,229,0.1);
  --color-avatar-stack-fade: #444c56;
  --color-avatar-stack-fade-more: #373e47;
  --color-avatar-child-shadow: -2px -2px 0 #22272e;
  --color-overlay-shadow: 0 0 0 1px #444c56, 0 16px 32px rgba(28,33,40,0.85);
  --color-header-text: rgba(205,217,229,0.7);
  --color-header-bg: #2d333b;
  --color-header-logo: #cdd9e5;
  --color-header-search-bg: #22272e;
  --color-header-search-border: #444c56;
  --color-ansi-black: #545d68;
  --color-ansi-black-bright: #636e7b;
  --color-ansi-white: #909dab;
  --color-ansi-white-bright: #cdd9e5;
  --color-ansi-gray: #636e7b;
  --color-ansi-red: #f47067;
  --color-ansi-red-bright: #ff938a;
  --color-ansi-green: #57ab5a;
  --color-ansi-green-bright: #6bc46d;
  --color-ansi-yellow: #c69026;
  --color-ansi-yellow-bright: #daaa3f;
  --color-ansi-blue: #539bf5;
  --color-ansi-blue-bright: #6cb6ff;
  --color-ansi-magenta: #b083f0;
  --color-ansi-magenta-bright: #dcbdfb;
  --color-ansi-cyan: #39c5cf;
  --color-ansi-cyan-bright: #56d4dd;
  --color-btn-text: #adbac7;
  --color-btn-bg: #373e47;
  --color-btn-border: rgba(205,217,229,0.1);
  --color-btn-shadow: 0 0 transparent;
  --color-btn-inset-shadow: 0 0 transparent;
  --color-btn-hover-bg: #444c56;
  --color-btn-hover-border: #768390;
  --color-btn-active-bg: hsla(213,12%,27%,1);
  --color-btn-active-border: #636e7b;
  --color-btn-selected-bg: #2d333b;
  --color-btn-focus-bg: #373e47;
  --color-btn-focus-border: #768390;
  --color-btn-focus-shadow: 0 0 0 3px rgba(118,131,144,0.3);
  --color-btn-shadow-active: inset 0 0.15em 0.3em rgba(28,33,40,0.15);
  --color-btn-shadow-input-focus: 0 0 0 0.2em rgba(49,109,202,0.3);
  --color-btn-counter-bg: #444c56;
  --color-btn-primary-text: #ffffff;
  --color-btn-primary-bg: #347d39;
  --color-btn-primary-border: rgba(205,217,229,0.1);
  --color-btn-primary-shadow: 0 0 transparent;
  --color-btn-primary-inset-shadow: 0 0 transparent;
  --color-btn-primary-hover-bg: #46954a;
  --color-btn-primary-hover-border: rgba(205,217,229,0.1);
  --color-btn-primary-selected-bg: #347d39;
  --color-btn-primary-selected-shadow: 0 0 transparent;
  --color-btn-primary-disabled-text: rgba(205,217,229,0.5);
  --color-btn-primary-disabled-bg: rgba(52,125,57,0.6);
  --color-btn-primary-disabled-border: rgba(205,217,229,0.1);
  --color-btn-primary-focus-bg: #347d39;
  --color-btn-primary-focus-border: rgba(205,217,229,0.1);
  --color-btn-primary-focus-shadow: 0 0 0 3px rgba(46,164,79,0.4);
  --color-btn-primary-icon: #cdd9e5;
  --color-btn-primary-counter-bg: rgba(205,217,229,0.2);
  --color-btn-outline-text: #539bf5;
  --color-btn-outline-hover-text: #539bf5;
  --color-btn-outline-hover-bg: #444c56;
  --color-btn-outline-hover-border: rgba(205,217,229,0.1);
  --color-btn-outline-hover-shadow: 0 1px 0 rgba(28,33,40,0.1);
  --color-btn-outline-hover-inset-shadow: inset 0 1px 0 rgba(205,217,229,0.03);
  --color-btn-outline-hover-counter-bg: rgba(205,217,229,0.2);
  --color-btn-outline-selected-text: #cdd9e5;
  --color-btn-outline-selected-bg: #1b4b91;
  --color-btn-outline-selected-border: rgba(205,217,229,0.1);
  --color-btn-outline-selected-shadow: 0 0 transparent;
  --color-btn-outline-disabled-text: rgba(83,155,245,0.5);
  --color-btn-outline-disabled-bg: #22272e;
  --color-btn-outline-disabled-counter-bg: rgba(49,109,202,0.05);
  --color-btn-outline-focus-border: rgba(205,217,229,0.1);
  --color-btn-outline-focus-shadow: 0 0 0 3px rgba(37,90,178,0.4);
  --color-btn-outline-counter-bg: rgba(49,109,202,0.1);
  --color-btn-danger-text: #e5534b;
  --color-btn-danger-hover-text: #cdd9e5;
  --color-btn-danger-hover-bg: #c93c37;
  --color-btn-danger-hover-border: #e5534b;
  --color-btn-danger-hover-shadow: 0 0 transparent;
  --color-btn-danger-hover-inset-shadow: 0 0 transparent;
  --color-btn-danger-hover-icon: #cdd9e5;
  --color-btn-danger-hover-counter-bg: rgba(255,255,255,0.2);
  --color-btn-danger-selected-text: #ffffff;
  --color-btn-danger-selected-bg: #ad2e2c;
  --color-btn-danger-selected-border: #f47067;
  --color-btn-danger-selected-shadow: 0 0 transparent;
  --color-btn-danger-disabled-text: rgba(229,83,75,0.5);
  --color-btn-danger-disabled-bg: #22272e;
  --color-btn-danger-disabled-counter-bg: rgba(201,60,55,0.05);
  --color-btn-danger-focus-border: #e5534b;
  --color-btn-danger-focus-shadow: 0 0 0 3px rgba(229,83,75,0.4);
  --color-btn-danger-counter-bg: rgba(201,60,55,0.1);
  --color-btn-danger-icon: #e5534b;
  --color-fg-default: #adbac7;
  --color-fg-muted: #768390;
  --color-fg-subtle: #545d68;
  --color-fg-on-emphasis: #cdd9e5;
  --color-canvas-default: #22272e;
  --color-canvas-overlay: #2d333b;
  --color-canvas-inset: #1c2128;
  --color-canvas-subtle: #2d333b;
  --color-neutral-emphasis-plus: #636e7b;
  --color-neutral-emphasis: #636e7b;
  --color-neutral-muted: rgba(99,110,123,0.4);
  --color-neutral-subtle: rgba(99,110,123,0.1);
  --color-accent-fg: #539bf5;
  --color-accent-emphasis: #316dca;
  --color-accent-muted: rgba(65,132,228,0.4);
  --color-accent-subtle: rgba(65,132,228,0.15);
  --color-success-fg: #57ab5a;
  --color-success-emphasis: #347d39;
  --color-success-muted: rgba(70,149,74,0.4);
  --color-success-subtle: rgba(70,149,74,0.15);
  --color-attention-fg: #c69026;
  --color-attention-emphasis: #966600;
  --color-attention-muted: rgba(174,124,20,0.4);
  --color-attention-subtle: rgba(174,124,20,0.15);
  --color-severe-fg: #cc6b2c;
  --color-severe-emphasis: #ae5622;
  --color-severe-muted: rgba(204,107,44,0.4);
  --color-severe-subtle: rgba(204,107,44,0.15);
  --color-danger-fg: #e5534b;
  --color-danger-emphasis: #c93c37;
  --color-danger-muted: rgba(229,83,75,0.4);
  --color-danger-subtle: rgba(229,83,75,0.15);
  --color-done-fg: #986ee2;
  --color-done-emphasis: #8256d0;
  --color-done-muted: rgba(152,110,226,0.4);
  --color-done-subtle: rgba(152,110,226,0.15);
  --color-sponsors-fg: #c96198;
  --color-sponsors-emphasis: #ae4c82;
  --color-sponsors-muted: rgba(201,97,152,0.4);
  --color-sponsors-subtle: rgba(201,97,152,0.15);
  --color-primer-canvas-backdrop: rgba(28,33,40,0.8);
  --color-primer-canvas-sticky: rgba(34,39,46,0.95);
  --color-primer-border-active: #EC775C;
  --color-primer-border-contrast: rgba(205,217,229,0.2);
  --color-primer-shadow-highlight: 0 0 transparent;
  --color-primer-shadow-inset: 0 0 transparent;
  --color-primer-shadow-focus: 0 0 0 3px #143d79;
  --color-scale-black: #1c2128;
  --color-scale-white: #cdd9e5;
  --color-scale-gray-0: #cdd9e5;
  --color-scale-gray-1: #adbac7;
  --color-scale-gray-2: #909dab;
  --color-scale-gray-3: #768390;
  --color-scale-gray-4: #636e7b;
  --color-scale-gray-5: #545d68;
  --color-scale-gray-6: #444c56;
  --color-scale-gray-7: #373e47;
  --color-scale-gray-8: #2d333b;
  --color-scale-gray-9: #22272e;
  --color-scale-blue-0: #c6e6ff;
  --color-scale-blue-1: #96d0ff;
  --color-scale-blue-2: #6cb6ff;
  --color-scale-blue-3: #539bf5;
  --color-scale-blue-4: #4184e4;
  --color-scale-blue-5: #316dca;
  --color-scale-blue-6: #255ab2;
  --color-scale-blue-7: #1b4b91;
  --color-scale-blue-8: #143d79;
  --color-scale-blue-9: #0f2d5c;
  --color-scale-green-0: #b4f1b4;
  --color-scale-green-1: #8ddb8c;
  --color-scale-green-2: #6bc46d;
  --color-scale-green-3: #57ab5a;
  --color-scale-green-4: #46954a;
  --color-scale-green-5: #347d39;
  --color-scale-green-6: #2b6a30;
  --color-scale-green-7: #245829;
  --color-scale-green-8: #1b4721;
  --color-scale-green-9: #113417;
  --color-scale-yellow-0: #fbe090;
  --color-scale-yellow-1: #eac55f;
  --color-scale-yellow-2: #daaa3f;
  --color-scale-yellow-3: #c69026;
  --color-scale-yellow-4: #ae7c14;
  --color-scale-yellow-5: #966600;
  --color-scale-yellow-6: #805400;
  --color-scale-yellow-7: #6c4400;
  --color-scale-yellow-8: #593600;
  --color-scale-yellow-9: #452700;
  --color-scale-orange-0: #ffddb0;
  --color-scale-orange-1: #ffbc6f;
  --color-scale-orange-2: #f69d50;
  --color-scale-orange-3: #e0823d;
  --color-scale-orange-4: #cc6b2c;
  --color-scale-orange-5: #ae5622;
  --color-scale-orange-6: #94471b;
  --color-scale-orange-7: #7f3913;
  --color-scale-orange-8: #682d0f;
  --color-scale-orange-9: #4d210c;
  --color-scale-red-0: #ffd8d3;
  --color-scale-red-1: #ffb8b0;
  --color-scale-red-2: #ff938a;
  --color-scale-red-3: #f47067;
  --color-scale-red-4: #e5534b;
  --color-scale-red-5: #c93c37;
  --color-scale-red-6: #ad2e2c;
  --color-scale-red-7: #922323;
  --color-scale-red-8: #78191b;
  --color-scale-red-9: #78191b;
  --color-scale-purple-0: #eedcff;
  --color-scale-purple-1: #dcbdfb;
  --color-scale-purple-2: #dcbdfb;
  --color-scale-purple-3: #b083f0;
  --color-scale-purple-4: #986ee2;
  --color-scale-purple-5: #8256d0;
  --color-scale-purple-6: #6b44bc;
  --color-scale-purple-7: #5936a2;
  --color-scale-purple-8: #472c82;
  --color-scale-purple-9: #352160;
  --color-scale-pink-0: #ffd7eb;
  --color-scale-pink-1: #ffb3d8;
  --color-scale-pink-2: #fc8dc7;
  --color-scale-pink-3: #e275ad;
  --color-scale-pink-4: #c96198;
  --color-scale-pink-5: #ae4c82;
  --color-scale-pink-6: #983b6e;
  --color-scale-pink-7: #7e325a;
  --color-scale-pink-8: #69264a;
  --color-scale-pink-9: #551639;
  --color-scale-coral-0: #FFDACF;
  --color-scale-coral-1: #FFB9A5;
  --color-scale-coral-2: #F79981;
  --color-scale-coral-3: #EC775C;
  --color-scale-coral-4: #DE5B41;
  --color-scale-coral-5: #C2442D;
  --color-scale-coral-6: #A93524;
  --color-scale-coral-7: #8D291B;
  --color-scale-coral-8: #771D13;
  --color-scale-coral-9: #5D1008;
}

@media (prefers-color-scheme: light) {
  [data-color-mode=auto][data-light-theme=dark_dimmed] {
    --color-auto-black: #cdd9e5;
    --color-auto-white: #1c2128;
    --color-auto-gray-0: #22272e;
    --color-auto-gray-1: #2d333b;
    --color-auto-gray-2: #373e47;
    --color-auto-gray-3: #444c56;
    --color-auto-gray-4: #545d68;
    --color-auto-gray-5: #636e7b;
    --color-auto-gray-6: #768390;
    --color-auto-gray-7: #909dab;
    --color-auto-gray-8: #adbac7;
    --color-auto-gray-9: #cdd9e5;
    --color-auto-blue-0: #0f2d5c;
    --color-auto-blue-1: #143d79;
    --color-auto-blue-2: #1b4b91;
    --color-auto-blue-3: #255ab2;
    --color-auto-blue-4: #316dca;
    --color-auto-blue-5: #4184e4;
    --color-auto-blue-6: #539bf5;
    --color-auto-blue-7: #6cb6ff;
    --color-auto-blue-8: #96d0ff;
    --color-auto-blue-9: #c6e6ff;
    --color-auto-green-0: #113417;
    --color-auto-green-1: #1b4721;
    --color-auto-green-2: #245829;
    --color-auto-green-3: #2b6a30;
    --color-auto-green-4: #347d39;
    --color-auto-green-5: #46954a;
    --color-auto-green-6: #57ab5a;
    --color-auto-green-7: #6bc46d;
    --color-auto-green-8: #8ddb8c;
    --color-auto-green-9: #b4f1b4;
    --color-auto-yellow-0: #452700;
    --color-auto-yellow-1: #593600;
    --color-auto-yellow-2: #6c4400;
    --color-auto-yellow-3: #805400;
    --color-auto-yellow-4: #966600;
    --color-auto-yellow-5: #ae7c14;
    --color-auto-yellow-6: #c69026;
    --color-auto-yellow-7: #daaa3f;
    --color-auto-yellow-8: #eac55f;
    --color-auto-yellow-9: #fbe090;
    --color-auto-orange-0: #4d210c;
    --color-auto-orange-1: #682d0f;
    --color-auto-orange-2: #7f3913;
    --color-auto-orange-3: #94471b;
    --color-auto-orange-4: #ae5622;
    --color-auto-orange-5: #cc6b2c;
    --color-auto-orange-6: #e0823d;
    --color-auto-orange-7: #f69d50;
    --color-auto-orange-8: #ffbc6f;
    --color-auto-orange-9: #ffddb0;
    --color-auto-red-0: #78191b;
    --color-auto-red-1: #78191b;
    --color-auto-red-2: #922323;
    --color-auto-red-3: #ad2e2c;
    --color-auto-red-4: #c93c37;
    --color-auto-red-5: #e5534b;
    --color-auto-red-6: #f47067;
    --color-auto-red-7: #ff938a;
    --color-auto-red-8: #ffb8b0;
    --color-auto-red-9: #ffd8d3;
    --color-auto-purple-0: #352160;
    --color-auto-purple-1: #472c82;
    --color-auto-purple-2: #5936a2;
    --color-auto-purple-3: #6b44bc;
    --color-auto-purple-4: #8256d0;
    --color-auto-purple-5: #986ee2;
    --color-auto-purple-6: #b083f0;
    --color-auto-purple-7: #dcbdfb;
    --color-auto-purple-8: #dcbdfb;
    --color-auto-purple-9: #eedcff;
    --color-auto-pink-0: #551639;
    --color-auto-pink-1: #69264a;
    --color-auto-pink-2: #7e325a;
    --color-auto-pink-3: #983b6e;
    --color-auto-pink-4: #ae4c82;
    --color-auto-pink-5: #c96198;
    --color-auto-pink-6: #e275ad;
    --color-auto-pink-7: #fc8dc7;
    --color-auto-pink-8: #ffb3d8;
    --color-auto-pink-9: #ffd7eb;
    --color-text-primary: #adbac7;
    --color-text-secondary: #768390;
    --color-text-tertiary: #768390;
    --color-text-placeholder: #545d68;
    --color-text-disabled: #768390;
    --color-text-inverse: #cdd9e5;
    --color-text-link: #539bf5;
    --color-text-danger: #e5534b;
    --color-text-success: #57ab5a;
    --color-text-warning: #c69026;
    --color-text-white: #cdd9e5;
    --color-icon-primary: #adbac7;
    --color-icon-secondary: #768390;
    --color-icon-tertiary: #768390;
    --color-icon-info: #539bf5;
    --color-icon-danger: #e5534b;
    --color-icon-success: #57ab5a;
    --color-icon-warning: #c69026;
    --color-border-primary: #444c56;
    --color-border-secondary: #373e47;
    --color-border-tertiary: #444c56;
    --color-border-overlay: #444c56;
    --color-border-inverse: #cdd9e5;
    --color-border-info: #316dca;
    --color-border-danger: #c93c37;
    --color-border-success: #347d39;
    --color-border-warning: #966600;
    --color-border-default: #444c56;
    --color-border-muted: #373e47;
    --color-border-subtle: rgba(205,217,229,0.1);
    --color-bg-canvas: #22272e;
    --color-bg-canvas-mobile: rgba(0,0,0,0);
    --color-bg-canvas-inverse: #636e7b;
    --color-bg-canvas-inset: #1c2128;
    --color-bg-primary: #22272e;
    --color-bg-secondary: #2d333b;
    --color-bg-tertiary: #2d333b;
    --color-bg-overlay: #2d333b;
    --color-bg-backdrop: rgba(28,33,40,0.8);
    --color-bg-info: rgba(65,132,228,0.15);
    --color-bg-info-inverse: #316dca;
    --color-bg-danger: rgba(229,83,75,0.15);
    --color-bg-danger-inverse: #c93c37;
    --color-bg-success: rgba(70,149,74,0.15);
    --color-bg-success-inverse: #347d39;
    --color-bg-warning: rgba(174,124,20,0.15);
    --color-bg-warning-inverse: #966600;
    --color-shadow-highlight: 0 0 transparent;
    --color-shadow-inset: 0 0 transparent;
    --color-shadow-small: 0 0 transparent;
    --color-shadow-medium: 0 3px 6px #1c2128;
    --color-shadow-large: 0 8px 24px #1c2128;
    --color-shadow-extra-large: 0 12px 48px #1c2128;
    --color-state-hover-primary-bg: #316dca;
    --color-state-hover-primary-border: #316dca;
    --color-state-hover-primary-text: #cdd9e5;
    --color-state-hover-primary-icon: #cdd9e5;
    --color-state-hover-secondary-bg: rgba(99,110,123,0.1);
    --color-state-hover-secondary-border: rgba(99,110,123,0.1);
    --color-state-selected-primary-bg: #316dca;
    --color-state-selected-primary-border: #316dca;
    --color-state-selected-primary-text: #cdd9e5;
    --color-state-selected-primary-icon: #cdd9e5;
    --color-state-focus-border: #316dca;
    --color-state-focus-shadow: 0 0 0 3px #143d79;
    --color-fade-fg-10: rgba(205,217,229,0.1);
    --color-fade-fg-15: rgba(205,217,229,0.15);
    --color-fade-fg-30: rgba(205,217,229,0.3);
    --color-fade-fg-50: rgba(205,217,229,0.5);
    --color-fade-fg-70: rgba(205,217,229,0.7);
    --color-fade-fg-85: rgba(205,217,229,0.85);
    --color-fade-black-10: rgba(28,33,40,0.1);
    --color-fade-black-15: rgba(28,33,40,0.15);
    --color-fade-black-30: rgba(28,33,40,0.3);
    --color-fade-black-50: rgba(28,33,40,0.5);
    --color-fade-black-70: rgba(28,33,40,0.7);
    --color-fade-black-85: rgba(28,33,40,0.85);
    --color-fade-white-10: rgba(205,217,229,0.1);
    --color-fade-white-15: rgba(205,217,229,0.15);
    --color-fade-white-30: rgba(205,217,229,0.3);
    --color-fade-white-50: rgba(205,217,229,0.5);
    --color-fade-white-70: rgba(205,217,229,0.7);
    --color-fade-white-85: rgba(205,217,229,0.85);
    --color-alert-info-text: #adbac7;
    --color-alert-info-icon: #539bf5;
    --color-alert-info-bg: rgba(65,132,228,0.15);
    --color-alert-info-border: rgba(65,132,228,0.4);
    --color-alert-warn-text: #adbac7;
    --color-alert-warn-icon: #c69026;
    --color-alert-warn-bg: rgba(174,124,20,0.15);
    --color-alert-warn-border: rgba(174,124,20,0.4);
    --color-alert-error-text: #adbac7;
    --color-alert-error-icon: #e5534b;
    --color-alert-error-bg: rgba(229,83,75,0.15);
    --color-alert-error-border: rgba(229,83,75,0.4);
    --color-alert-success-text: #adbac7;
    --color-alert-success-icon: #57ab5a;
    --color-alert-success-bg: rgba(70,149,74,0.15);
    --color-alert-success-border: rgba(70,149,74,0.4);
    --color-autocomplete-shadow: 0 3px 6px #1c2128;
    --color-autocomplete-row-border: #373e47;
    --color-blankslate-icon: #768390;
    --color-counter-text: #adbac7;
    --color-counter-bg: rgba(99,110,123,0.4);
    --color-counter-primary-text: #cdd9e5;
    --color-counter-primary-bg: #636e7b;
    --color-counter-secondary-text: #768390;
    --color-counter-secondary-bg: rgba(99,110,123,0.1);
    --color-box-blue-border: rgba(65,132,228,0.4);
    --color-box-row-yellow-bg: rgba(174,124,20,0.15);
    --color-box-row-blue-bg: rgba(65,132,228,0.15);
    --color-box-header-blue-bg: rgba(65,132,228,0.15);
    --color-box-header-blue-border: rgba(65,132,228,0.4);
    --color-box-border-info: rgba(65,132,228,0.4);
    --color-box-bg-info: rgba(65,132,228,0.15);
    --color-box-border-warning: rgba(174,124,20,0.4);
    --color-box-bg-warning: rgba(174,124,20,0.15);
    --color-branch-name-text: #768390;
    --color-branch-name-icon: #768390;
    --color-branch-name-bg: rgba(65,132,228,0.15);
    --color-branch-name-link-text: #539bf5;
    --color-branch-name-link-icon: #539bf5;
    --color-branch-name-link-bg: rgba(65,132,228,0.15);
    --color-markdown-code-bg: rgba(99,110,123,0.4);
    --color-markdown-frame-border: #444c56;
    --color-markdown-blockquote-border: #444c56;
    --color-markdown-table-border: #444c56;
    --color-markdown-table-tr-border: #373e47;
    --color-filter-item-bar-bg: rgba(99,110,123,0.1);
    --color-hidden-text-expander-bg: rgba(99,110,123,0.4);
    --color-hidden-text-expander-bg-hover: rgba(65,132,228,0.4);
    --color-drag-and-drop-border: #444c56;
    --color-upload-enabled-border: #444c56;
    --color-upload-enabled-border-focused: #316dca;
    --color-previewable-comment-form-border: #444c56;
    --color-verified-badge-text: #57ab5a;
    --color-verified-badge-bg: #22272e;
    --color-verified-badge-border: #444c56;
    --color-social-count-bg: #22272e;
    --color-tooltip-text: #cdd9e5;
    --color-tooltip-bg: #636e7b;
    --color-files-explorer-icon: #539bf5;
    --color-hl-author-bg: rgba(65,132,228,0.15);
    --color-hl-author-border: rgba(65,132,228,0.4);
    --color-logo-subdued: rgba(99,110,123,0.4);
    --color-discussion-border: rgba(70,149,74,0.4);
    --color-discussion-bg-success: #347d39;
    --color-actions-workflow-table-sticky-bg: rgba(34,39,46,0.95);
    --color-repo-language-color-border: rgba(205,217,229,0.2);
    --color-code-selection-bg: rgba(65,132,228,0.4);
    --color-highlight-text: #adbac7;
    --color-highlight-bg: rgba(174,124,20,0.15);
    --color-blob-line-highlight-bg: rgba(174,124,20,0.15);
    --color-blob-line-highlight-border: rgba(174,124,20,0.4);
    --color-topic-tag-text: #539bf5;
    --color-topic-tag-bg: rgba(65,132,228,0.15);
    --color-topic-tag-hover-bg: #316dca;
    --color-topic-tag-active-bg: rgba(65,132,228,0.15);
    --color-topic-tag-border: rgba(0,0,0,0);
    --color-footer-invertocat-octicon: #545d68;
    --color-footer-invertocat-octicon-hover: #768390;
    --color-dropdown-shadow: 0 8px 24px #1c2128;
    --color-label-border: #444c56;
    --color-label-primary-text: #adbac7;
    --color-label-primary-border: #636e7b;
    --color-label-secondary-text: #768390;
    --color-label-secondary-border: #444c56;
    --color-label-info-text: #539bf5;
    --color-label-info-border: #316dca;
    --color-label-success-text: #57ab5a;
    --color-label-success-border: #347d39;
    --color-label-warning-text: #c69026;
    --color-label-warning-border: #966600;
    --color-label-danger-text: #e5534b;
    --color-label-danger-border: #c93c37;
    --color-label-orange-text: #cc6b2c;
    --color-label-orange-border: #ae5622;
    --color-input-bg: #22272e;
    --color-input-contrast-bg: #1c2128;
    --color-input-border: #444c56;
    --color-input-shadow: 0 0 transparent;
    --color-input-disabled-border: #444c56;
    --color-input-warning-border: #966600;
    --color-input-error-border: #c93c37;
    --color-input-tooltip-success-text: #adbac7;
    --color-input-tooltip-success-bg: rgba(70,149,74,0.15);
    --color-input-tooltip-success-border: rgba(70,149,74,0.4);
    --color-input-tooltip-warning-text: #adbac7;
    --color-input-tooltip-warning-bg: rgba(174,124,20,0.15);
    --color-input-tooltip-warning-border: rgba(174,124,20,0.4);
    --color-input-tooltip-error-text: #adbac7;
    --color-input-tooltip-error-bg: rgba(229,83,75,0.15);
    --color-input-tooltip-error-border: rgba(229,83,75,0.4);
    --color-input-disabled-bg: rgba(99,110,123,0);
    --color-toast-text: #adbac7;
    --color-toast-bg: #22272e;
    --color-toast-border: #444c56;
    --color-toast-shadow: 0 8px 24px #1c2128;
    --color-toast-icon: #cdd9e5;
    --color-toast-icon-bg: #316dca;
    --color-toast-icon-border: rgba(0,0,0,0);
    --color-toast-success-text: #adbac7;
    --color-toast-success-border: #444c56;
    --color-toast-success-icon: #cdd9e5;
    --color-toast-success-icon-bg: #347d39;
    --color-toast-success-icon-border: rgba(0,0,0,0);
    --color-toast-warning-text: #adbac7;
    --color-toast-warning-border: #444c56;
    --color-toast-warning-icon: #adbac7;
    --color-toast-warning-icon-bg: #966600;
    --color-toast-warning-icon-border: rgba(0,0,0,0);
    --color-toast-danger-text: #adbac7;
    --color-toast-danger-border: #444c56;
    --color-toast-danger-icon: #cdd9e5;
    --color-toast-danger-icon-bg: #c93c37;
    --color-toast-danger-icon-border: rgba(0,0,0,0);
    --color-toast-loading-text: #adbac7;
    --color-toast-loading-border: #444c56;
    --color-toast-loading-icon: #cdd9e5;
    --color-toast-loading-icon-bg: #636e7b;
    --color-toast-loading-icon-border: rgba(0,0,0,0);
    --color-timeline-text: #768390;
    --color-timeline-badge-success-border: rgba(0,0,0,0);
    --color-timeline-target-badge-border: #316dca;
    --color-timeline-target-badge-shadow: rgba(65,132,228,0.4);
    --color-timeline-badge-bg: #373e47;
    --color-diffstat-neutral-bg: rgba(99,110,123,0.4);
    --color-diffstat-neutral-border: rgba(205,217,229,0.1);
    --color-diffstat-deletion-border: rgba(205,217,229,0.1);
    --color-diffstat-addition-border: rgba(205,217,229,0.1);
    --color-diffstat-deletion-bg: #c93c37;
    --color-diffstat-addition-bg: #57ab5a;
    --color-diff-addition-text: #adbac7;
    --color-diff-addition-bg: rgba(70,149,74,0.15);
    --color-diff-addition-border: rgba(70,149,74,0.4);
    --color-diff-deletion-text: #adbac7;
    --color-diff-deletion-bg: rgba(229,83,75,0.15);
    --color-diff-deletion-border: rgba(229,83,75,0.4);
    --color-diff-change-text: #c69026;
    --color-diff-change-bg: rgba(174,124,20,0.15);
    --color-diff-change-border: rgba(174,124,20,0.4);
    --color-merge-box-success-icon-bg: #347d39;
    --color-merge-box-success-icon-text: #cdd9e5;
    --color-merge-box-success-icon-border: rgba(0,0,0,0);
    --color-merge-box-success-indicator-bg: #347d39;
    --color-merge-box-success-indicator-border: rgba(0,0,0,0);
    --color-merge-box-merged-icon-bg: #8256d0;
    --color-merge-box-merged-icon-text: #cdd9e5;
    --color-merge-box-merged-icon-border: rgba(0,0,0,0);
    --color-merge-box-merged-box-border: #8256d0;
    --color-merge-box-neutral-icon-bg: #636e7b;
    --color-merge-box-neutral-icon-text: #cdd9e5;
    --color-merge-box-neutral-icon-border: rgba(0,0,0,0);
    --color-merge-box-neutral-indicator-bg: #636e7b;
    --color-merge-box-neutral-indicator-border: rgba(0,0,0,0);
    --color-merge-box-warning-icon-bg: #966600;
    --color-merge-box-warning-icon-text: #cdd9e5;
    --color-merge-box-warning-icon-border: rgba(0,0,0,0);
    --color-merge-box-warning-box-border: #966600;
    --color-merge-box-warning-merge-highlight: rgba(0,0,0,0);
    --color-merge-box-error-icon-bg: #c93c37;
    --color-merge-box-error-icon-text: #cdd9e5;
    --color-merge-box-error-icon-border: rgba(0,0,0,0);
    --color-merge-box-error-indicator-bg: #c93c37;
    --color-merge-box-error-indicator-border: rgba(0,0,0,0);
    --color-underlinenav-border: rgba(0,0,0,0);
    --color-underlinenav-border-hover: rgba(99,110,123,0.4);
    --color-underlinenav-border-active: #EC775C;
    --color-underlinenav-text: #adbac7;
    --color-underlinenav-text-hover: #adbac7;
    --color-underlinenav-text-active: #adbac7;
    --color-underlinenav-icon: #545d68;
    --color-underlinenav-icon-hover: #545d68;
    --color-underlinenav-icon-active: #adbac7;
    --color-underlinenav-counter-text: #adbac7;
    --color-underlinenav-counter-bg: rgba(99,110,123,0.4);
    --color-select-menu-border-secondary: #373e47;
    --color-select-menu-shadow: 0 8px 24px #1c2128;
    --color-select-menu-backdrop-bg: rgba(28,33,40,0.8);
    --color-select-menu-backdrop-border: #545d68;
    --color-select-menu-tap-highlight: rgba(68,76,86,0.5);
    --color-select-menu-tap-focus-bg: #143d79;
    --color-sidenav-border-active: #EC775C;
    --color-sidenav-selected-bg: #373e47;
    --color-menu-heading-text: #adbac7;
    --color-menu-border-active: #EC775C;
    --color-menu-bg-active: #2d333b;
    --color-project-card-bg: #2d333b;
    --color-project-header-bg: #22272e;
    --color-project-sidebar-bg: #2d333b;
    --color-project-gradient-in: #2d333b;
    --color-project-gradient-out: rgba(45,51,59,0);
    --color-pr-state-draft-text: #cdd9e5;
    --color-pr-state-draft-bg: #636e7b;
    --color-pr-state-draft-border: rgba(0,0,0,0);
    --color-pr-state-open-text: #cdd9e5;
    --color-pr-state-open-bg: #347d39;
    --color-pr-state-open-border: rgba(0,0,0,0);
    --color-pr-state-merged-text: #cdd9e5;
    --color-pr-state-merged-bg: #8256d0;
    --color-pr-state-merged-border: rgba(0,0,0,0);
    --color-pr-state-closed-text: #cdd9e5;
    --color-pr-state-closed-bg: #c93c37;
    --color-pr-state-closed-border: rgba(0,0,0,0);
    --color-diff-blob-num-text: #545d68;
    --color-diff-blob-num-hover-text: #adbac7;
    --color-diff-blob-addition-num-hover-text: #adbac7;
    --color-diff-blob-addition-num-text: #adbac7;
    --color-diff-blob-addition-fg: #adbac7;
    --color-diff-blob-addition-num-bg: rgba(87,171,90,0.3);
    --color-diff-blob-addition-line-bg: rgba(70,149,74,0.15);
    --color-diff-blob-addition-word-bg: rgba(70,149,74,0.4);
    --color-diff-blob-deletion-num-hover-text: #adbac7;
    --color-diff-blob-deletion-num-text: #adbac7;
    --color-diff-blob-deletion-fg: #adbac7;
    --color-diff-blob-deletion-num-bg: rgba(229,83,75,0.3);
    --color-diff-blob-deletion-line-bg: rgba(229,83,75,0.15);
    --color-diff-blob-deletion-word-bg: rgba(229,83,75,0.4);
    --color-diff-blob-hunk-text: #768390;
    --color-diff-blob-hunk-num-bg: rgba(65,132,228,0.4);
    --color-diff-blob-hunk-line-bg: rgba(65,132,228,0.15);
    --color-diff-blob-empty-block-bg: rgba(99,110,123,0.1);
    --color-diff-blob-selected-line-highlight-bg: rgba(174,124,20,0.15);
    --color-diff-blob-selected-line-highlight-border: rgba(174,124,20,0.4);
    --color-diff-blob-expander-hover-icon: #cdd9e5;
    --color-diff-blob-expander-hover-bg: #316dca;
    --color-diff-blob-expander-icon: #768390;
    --color-diff-blob-comment-button-icon: #cdd9e5;
    --color-diff-blob-comment-button-bg: #316dca;
    --color-diff-blob-comment-button-gradient-bg: rgba(0,0,0,0);
    --color-diff-blob-selected-line-highlight-mix-blend-mode: screen;
    --color-global-nav-logo: #cdd9e5;
    --color-global-nav-bg: #2d333b;
    --color-global-nav-text: #adbac7;
    --color-global-nav-icon: #adbac7;
    --color-global-nav-input-bg: #22272e;
    --color-global-nav-input-border: #373e47;
    --color-global-nav-input-icon: #373e47;
    --color-global-nav-input-placeholder: #545d68;
    --color-intro-shelf-gradient-left: rgba(65,132,228,0.15);
    --color-intro-shelf-gradient-right: rgba(70,149,74,0.15);
    --color-intro-shelf-gradient-in: #22272e;
    --color-intro-shelf-gradient-out: rgba(205,217,229,0);
    --color-canvas-default-transparent: rgba(34,39,46,0);
    --color-marketing-icon-primary: #6cb6ff;
    --color-marketing-icon-secondary: #316dca;
    --color-search-keyword-hl: rgba(198,144,38,0.4);
    --color-prettylights-syntax-comment: #768390;
    --color-prettylights-syntax-constant: #6cb6ff;
    --color-prettylights-syntax-entity: #dcbdfb;
    --color-prettylights-syntax-storage-modifier-import: #adbac7;
    --color-prettylights-syntax-entity-tag: #8ddb8c;
    --color-prettylights-syntax-keyword: #f47067;
    --color-prettylights-syntax-string: #96d0ff;
    --color-prettylights-syntax-variable: #f69d50;
    --color-prettylights-syntax-brackethighlighter-unmatched: #e5534b;
    --color-prettylights-syntax-invalid-illegal-text: #cdd9e5;
    --color-prettylights-syntax-invalid-illegal-bg: #922323;
    --color-prettylights-syntax-carriage-return-text: #cdd9e5;
    --color-prettylights-syntax-carriage-return-bg: #ad2e2c;
    --color-prettylights-syntax-string-regexp: #8ddb8c;
    --color-prettylights-syntax-markup-list: #eac55f;
    --color-prettylights-syntax-markup-heading: #316dca;
    --color-prettylights-syntax-markup-italic: #adbac7;
    --color-prettylights-syntax-markup-bold: #adbac7;
    --color-prettylights-syntax-markup-deleted-text: #ffd8d3;
    --color-prettylights-syntax-markup-deleted-bg: #78191b;
    --color-prettylights-syntax-markup-inserted-text: #b4f1b4;
    --color-prettylights-syntax-markup-inserted-bg: #1b4721;
    --color-prettylights-syntax-markup-changed-text: #ffddb0;
    --color-prettylights-syntax-markup-changed-bg: #682d0f;
    --color-prettylights-syntax-markup-ignored-text: #adbac7;
    --color-prettylights-syntax-markup-ignored-bg: #255ab2;
    --color-prettylights-syntax-meta-diff-range: #dcbdfb;
    --color-prettylights-syntax-brackethighlighter-angle: #768390;
    --color-prettylights-syntax-sublimelinter-gutter-mark: #545d68;
    --color-prettylights-syntax-constant-other-reference-link: #96d0ff;
    --color-codemirror-text: #adbac7;
    --color-codemirror-bg: #22272e;
    --color-codemirror-gutters-bg: #22272e;
    --color-codemirror-guttermarker-text: #22272e;
    --color-codemirror-guttermarker-subtle-text: #545d68;
    --color-codemirror-linenumber-text: #768390;
    --color-codemirror-cursor: #adbac7;
    --color-codemirror-selection-bg: rgba(65,132,228,0.4);
    --color-codemirror-activeline-bg: rgba(99,110,123,0.1);
    --color-codemirror-matchingbracket-text: #adbac7;
    --color-codemirror-lines-bg: #22272e;
    --color-codemirror-syntax-comment: #768390;
    --color-codemirror-syntax-constant: #6cb6ff;
    --color-codemirror-syntax-entity: #dcbdfb;
    --color-codemirror-syntax-keyword: #f47067;
    --color-codemirror-syntax-storage: #f47067;
    --color-codemirror-syntax-string: #96d0ff;
    --color-codemirror-syntax-support: #6cb6ff;
    --color-codemirror-syntax-variable: #f69d50;
    --color-checks-bg: #1c2128;
    --color-checks-run-border-width: 1px;
    --color-checks-container-border-width: 1px;
    --color-checks-text-primary: #adbac7;
    --color-checks-text-secondary: #768390;
    --color-checks-text-link: #539bf5;
    --color-checks-btn-icon: #768390;
    --color-checks-btn-hover-icon: #adbac7;
    --color-checks-btn-hover-bg: rgba(99,110,123,0.1);
    --color-checks-input-text: #768390;
    --color-checks-input-placeholder-text: #545d68;
    --color-checks-input-focus-text: #adbac7;
    --color-checks-input-bg: #2d333b;
    --color-checks-input-shadow: 0 0 0 1px (obj) => get_1.default(obj, path);
    --color-checks-donut-error: #e5534b;
    --color-checks-donut-pending: #c69026;
    --color-checks-donut-success: #46954a;
    --color-checks-donut-neutral: #768390;
    --color-checks-dropdown-text: #adbac7;
    --color-checks-dropdown-bg: #2d333b;
    --color-checks-dropdown-border: #444c56;
    --color-checks-dropdown-shadow: rgba(28,33,40,0.3);
    --color-checks-dropdown-hover-text: #adbac7;
    --color-checks-dropdown-hover-bg: rgba(99,110,123,0.1);
    --color-checks-dropdown-btn-hover-text: #adbac7;
    --color-checks-dropdown-btn-hover-bg: rgba(99,110,123,0.1);
    --color-checks-scrollbar-thumb-bg: rgba(99,110,123,0.4);
    --color-checks-header-label-text: #768390;
    --color-checks-header-label-open-text: #adbac7;
    --color-checks-header-border: #373e47;
    --color-checks-header-icon: #768390;
    --color-checks-line-text: #768390;
    --color-checks-line-num-text: #545d68;
    --color-checks-line-timestamp-text: #545d68;
    --color-checks-line-hover-bg: rgba(99,110,123,0.1);
    --color-checks-line-selected-bg: rgba(65,132,228,0.15);
    --color-checks-line-selected-num-text: #539bf5;
    --color-checks-line-dt-fm-text: #cdd9e5;
    --color-checks-line-dt-fm-bg: #966600;
    --color-checks-gate-bg: rgba(174,124,20,0.15);
    --color-checks-gate-text: #768390;
    --color-checks-gate-waiting-text: #c69026;
    --color-checks-step-header-open-bg: #2d333b;
    --color-checks-step-error-text: #e5534b;
    --color-checks-step-warning-text: #c69026;
    --color-checks-logline-text: #768390;
    --color-checks-logline-num-text: #545d68;
    --color-checks-logline-debug-text: #986ee2;
    --color-checks-logline-error-text: #768390;
    --color-checks-logline-error-num-text: #545d68;
    --color-checks-logline-error-bg: rgba(229,83,75,0.15);
    --color-checks-logline-warning-text: #768390;
    --color-checks-logline-warning-num-text: #c69026;
    --color-checks-logline-warning-bg: rgba(174,124,20,0.15);
    --color-checks-logline-command-text: #539bf5;
    --color-checks-logline-section-text: #57ab5a;
    --color-checks-ansi-black: #22272e;
    --color-checks-ansi-black-bright: #2d333b;
    --color-checks-ansi-white: #909dab;
    --color-checks-ansi-white-bright: #909dab;
    --color-checks-ansi-gray: #636e7b;
    --color-checks-ansi-red: #f47067;
    --color-checks-ansi-red-bright: #ff938a;
    --color-checks-ansi-green: #57ab5a;
    --color-checks-ansi-green-bright: #6bc46d;
    --color-checks-ansi-yellow: #c69026;
    --color-checks-ansi-yellow-bright: #daaa3f;
    --color-checks-ansi-blue: #539bf5;
    --color-checks-ansi-blue-bright: #6cb6ff;
    --color-checks-ansi-magenta: #b083f0;
    --color-checks-ansi-magenta-bright: #dcbdfb;
    --color-checks-ansi-cyan: #76e3ea;
    --color-checks-ansi-cyan-bright: #b3f0ff;
    --color-mktg-success: rgba(61,137,66,1);
    --color-mktg-info: rgba(56,119,213,1);
    --color-mktg-bg-shade-gradient-top: rgba(28,33,40,0.065);
    --color-mktg-bg-shade-gradient-bottom: rgba(28,33,40,0);
    --color-mktg-btn-bg-top: hsla(228,82%,66%,1);
    --color-mktg-btn-bg-bottom: #4969ed;
    --color-mktg-btn-bg-overlay-top: hsla(228,74%,59%,1);
    --color-mktg-btn-bg-overlay-bottom: #3355e0;
    --color-mktg-btn-text: #cdd9e5;
    --color-mktg-btn-primary-bg-top: hsla(137,56%,46%,1);
    --color-mktg-btn-primary-bg-bottom: #2ea44f;
    --color-mktg-btn-primary-bg-overlay-top: hsla(134,60%,38%,1);
    --color-mktg-btn-primary-bg-overlay-bottom: #22863a;
    --color-mktg-btn-primary-text: #cdd9e5;
    --color-mktg-btn-enterprise-bg-top: hsla(249,100%,72%,1);
    --color-mktg-btn-enterprise-bg-bottom: #6f57ff;
    --color-mktg-btn-enterprise-bg-overlay-top: hsla(248,65%,63%,1);
    --color-mktg-btn-enterprise-bg-overlay-bottom: #614eda;
    --color-mktg-btn-enterprise-text: #cdd9e5;
    --color-mktg-btn-outline-text: #cdd9e5;
    --color-mktg-btn-outline-border: rgba(205,217,229,0.3);
    --color-mktg-btn-outline-hover-text: #cdd9e5;
    --color-mktg-btn-outline-hover-border: rgba(205,217,229,0.5);
    --color-mktg-btn-outline-focus-border: #cdd9e5;
    --color-mktg-btn-outline-focus-border-inset: rgba(205,217,229,0.5);
    --color-mktg-btn-dark-text: #cdd9e5;
    --color-mktg-btn-dark-border: rgba(205,217,229,0.3);
    --color-mktg-btn-dark-hover-text: #cdd9e5;
    --color-mktg-btn-dark-hover-border: rgba(205,217,229,0.5);
    --color-mktg-btn-dark-focus-border: #cdd9e5;
    --color-mktg-btn-dark-focus-border-inset: rgba(205,217,229,0.5);
    --color-avatar-bg: rgba(205,217,229,0.1);
    --color-avatar-border: rgba(205,217,229,0.1);
    --color-avatar-stack-fade: #444c56;
    --color-avatar-stack-fade-more: #373e47;
    --color-avatar-child-shadow: -2px -2px 0 #22272e;
    --color-overlay-shadow: 0 0 0 1px #444c56, 0 16px 32px rgba(28,33,40,0.85);
    --color-header-text: rgba(205,217,229,0.7);
    --color-header-bg: #2d333b;
    --color-header-logo: #cdd9e5;
    --color-header-search-bg: #22272e;
    --color-header-search-border: #444c56;
    --color-ansi-black: #545d68;
    --color-ansi-black-bright: #636e7b;
    --color-ansi-white: #909dab;
    --color-ansi-white-bright: #cdd9e5;
    --color-ansi-gray: #636e7b;
    --color-ansi-red: #f47067;
    --color-ansi-red-bright: #ff938a;
    --color-ansi-green: #57ab5a;
    --color-ansi-green-bright: #6bc46d;
    --color-ansi-yellow: #c69026;
    --color-ansi-yellow-bright: #daaa3f;
    --color-ansi-blue: #539bf5;
    --color-ansi-blue-bright: #6cb6ff;
    --color-ansi-magenta: #b083f0;
    --color-ansi-magenta-bright: #dcbdfb;
    --color-ansi-cyan: #39c5cf;
    --color-ansi-cyan-bright: #56d4dd;
    --color-btn-text: #adbac7;
    --color-btn-bg: #373e47;
    --color-btn-border: rgba(205,217,229,0.1);
    --color-btn-shadow: 0 0 transparent;
    --color-btn-inset-shadow: 0 0 transparent;
    --color-btn-hover-bg: #444c56;
    --color-btn-hover-border: #768390;
    --color-btn-active-bg: hsla(213,12%,27%,1);
    --color-btn-active-border: #636e7b;
    --color-btn-selected-bg: #2d333b;
    --color-btn-focus-bg: #373e47;
    --color-btn-focus-border: #768390;
    --color-btn-focus-shadow: 0 0 0 3px rgba(118,131,144,0.3);
    --color-btn-shadow-active: inset 0 0.15em 0.3em rgba(28,33,40,0.15);
    --color-btn-shadow-input-focus: 0 0 0 0.2em rgba(49,109,202,0.3);
    --color-btn-counter-bg: #444c56;
    --color-btn-primary-text: #ffffff;
    --color-btn-primary-bg: #347d39;
    --color-btn-primary-border: rgba(205,217,229,0.1);
    --color-btn-primary-shadow: 0 0 transparent;
    --color-btn-primary-inset-shadow: 0 0 transparent;
    --color-btn-primary-hover-bg: #46954a;
    --color-btn-primary-hover-border: rgba(205,217,229,0.1);
    --color-btn-primary-selected-bg: #347d39;
    --color-btn-primary-selected-shadow: 0 0 transparent;
    --color-btn-primary-disabled-text: rgba(205,217,229,0.5);
    --color-btn-primary-disabled-bg: rgba(52,125,57,0.6);
    --color-btn-primary-disabled-border: rgba(205,217,229,0.1);
    --color-btn-primary-focus-bg: #347d39;
    --color-btn-primary-focus-border: rgba(205,217,229,0.1);
    --color-btn-primary-focus-shadow: 0 0 0 3px rgba(46,164,79,0.4);
    --color-btn-primary-icon: #cdd9e5;
    --color-btn-primary-counter-bg: rgba(205,217,229,0.2);
    --color-btn-outline-text: #539bf5;
    --color-btn-outline-hover-text: #539bf5;
    --color-btn-outline-hover-bg: #444c56;
    --color-btn-outline-hover-border: rgba(205,217,229,0.1);
    --color-btn-outline-hover-shadow: 0 1px 0 rgba(28,33,40,0.1);
    --color-btn-outline-hover-inset-shadow: inset 0 1px 0 rgba(205,217,229,0.03);
    --color-btn-outline-hover-counter-bg: rgba(205,217,229,0.2);
    --color-btn-outline-selected-text: #cdd9e5;
    --color-btn-outline-selected-bg: #1b4b91;
    --color-btn-outline-selected-border: rgba(205,217,229,0.1);
    --color-btn-outline-selected-shadow: 0 0 transparent;
    --color-btn-outline-disabled-text: rgba(83,155,245,0.5);
    --color-btn-outline-disabled-bg: #22272e;
    --color-btn-outline-disabled-counter-bg: rgba(49,109,202,0.05);
    --color-btn-outline-focus-border: rgba(205,217,229,0.1);
    --color-btn-outline-focus-shadow: 0 0 0 3px rgba(37,90,178,0.4);
    --color-btn-outline-counter-bg: rgba(49,109,202,0.1);
    --color-btn-danger-text: #e5534b;
    --color-btn-danger-hover-text: #cdd9e5;
    --color-btn-danger-hover-bg: #c93c37;
    --color-btn-danger-hover-border: #e5534b;
    --color-btn-danger-hover-shadow: 0 0 transparent;
    --color-btn-danger-hover-inset-shadow: 0 0 transparent;
    --color-btn-danger-hover-icon: #cdd9e5;
    --color-btn-danger-hover-counter-bg: rgba(255,255,255,0.2);
    --color-btn-danger-selected-text: #ffffff;
    --color-btn-danger-selected-bg: #ad2e2c;
    --color-btn-danger-selected-border: #f47067;
    --color-btn-danger-selected-shadow: 0 0 transparent;
    --color-btn-danger-disabled-text: rgba(229,83,75,0.5);
    --color-btn-danger-disabled-bg: #22272e;
    --color-btn-danger-disabled-counter-bg: rgba(201,60,55,0.05);
    --color-btn-danger-focus-border: #e5534b;
    --color-btn-danger-focus-shadow: 0 0 0 3px rgba(229,83,75,0.4);
    --color-btn-danger-counter-bg: rgba(201,60,55,0.1);
    --color-btn-danger-icon: #e5534b;
    --color-fg-default: #adbac7;
    --color-fg-muted: #768390;
    --color-fg-subtle: #545d68;
    --color-fg-on-emphasis: #cdd9e5;
    --color-canvas-default: #22272e;
    --color-canvas-overlay: #2d333b;
    --color-canvas-inset: #1c2128;
    --color-canvas-subtle: #2d333b;
    --color-neutral-emphasis-plus: #636e7b;
    --color-neutral-emphasis: #636e7b;
    --color-neutral-muted: rgba(99,110,123,0.4);
    --color-neutral-subtle: rgba(99,110,123,0.1);
    --color-accent-fg: #539bf5;
    --color-accent-emphasis: #316dca;
    --color-accent-muted: rgba(65,132,228,0.4);
    --color-accent-subtle: rgba(65,132,228,0.15);
    --color-success-fg: #57ab5a;
    --color-success-emphasis: #347d39;
    --color-success-muted: rgba(70,149,74,0.4);
    --color-success-subtle: rgba(70,149,74,0.15);
    --color-attention-fg: #c69026;
    --color-attention-emphasis: #966600;
    --color-attention-muted: rgba(174,124,20,0.4);
    --color-attention-subtle: rgba(174,124,20,0.15);
    --color-severe-fg: #cc6b2c;
    --color-severe-emphasis: #ae5622;
    --color-severe-muted: rgba(204,107,44,0.4);
    --color-severe-subtle: rgba(204,107,44,0.15);
    --color-danger-fg: #e5534b;
    --color-danger-emphasis: #c93c37;
    --color-danger-muted: rgba(229,83,75,0.4);
    --color-danger-subtle: rgba(229,83,75,0.15);
    --color-done-fg: #986ee2;
    --color-done-emphasis: #8256d0;
    --color-done-muted: rgba(152,110,226,0.4);
    --color-done-subtle: rgba(152,110,226,0.15);
    --color-sponsors-fg: #c96198;
    --color-sponsors-emphasis: #ae4c82;
    --color-sponsors-muted: rgba(201,97,152,0.4);
    --color-sponsors-subtle: rgba(201,97,152,0.15);
    --color-primer-canvas-backdrop: rgba(28,33,40,0.8);
    --color-primer-canvas-sticky: rgba(34,39,46,0.95);
    --color-primer-border-active: #EC775C;
    --color-primer-border-contrast: rgba(205,217,229,0.2);
    --color-primer-shadow-highlight: 0 0 transparent;
    --color-primer-shadow-inset: 0 0 transparent;
    --color-primer-shadow-focus: 0 0 0 3px #143d79;
    --color-scale-black: #1c2128;
    --color-scale-white: #cdd9e5;
    --color-scale-gray-0: #cdd9e5;
    --color-scale-gray-1: #adbac7;
    --color-scale-gray-2: #909dab;
    --color-scale-gray-3: #768390;
    --color-scale-gray-4: #636e7b;
    --color-scale-gray-5: #545d68;
    --color-scale-gray-6: #444c56;
    --color-scale-gray-7: #373e47;
    --color-scale-gray-8: #2d333b;
    --color-scale-gray-9: #22272e;
    --color-scale-blue-0: #c6e6ff;
    --color-scale-blue-1: #96d0ff;
    --color-scale-blue-2: #6cb6ff;
    --color-scale-blue-3: #539bf5;
    --color-scale-blue-4: #4184e4;
    --color-scale-blue-5: #316dca;
    --color-scale-blue-6: #255ab2;
    --color-scale-blue-7: #1b4b91;
    --color-scale-blue-8: #143d79;
    --color-scale-blue-9: #0f2d5c;
    --color-scale-green-0: #b4f1b4;
    --color-scale-green-1: #8ddb8c;
    --color-scale-green-2: #6bc46d;
    --color-scale-green-3: #57ab5a;
    --color-scale-green-4: #46954a;
    --color-scale-green-5: #347d39;
    --color-scale-green-6: #2b6a30;
    --color-scale-green-7: #245829;
    --color-scale-green-8: #1b4721;
    --color-scale-green-9: #113417;
    --color-scale-yellow-0: #fbe090;
    --color-scale-yellow-1: #eac55f;
    --color-scale-yellow-2: #daaa3f;
    --color-scale-yellow-3: #c69026;
    --color-scale-yellow-4: #ae7c14;
    --color-scale-yellow-5: #966600;
    --color-scale-yellow-6: #805400;
    --color-scale-yellow-7: #6c4400;
    --color-scale-yellow-8: #593600;
    --color-scale-yellow-9: #452700;
    --color-scale-orange-0: #ffddb0;
    --color-scale-orange-1: #ffbc6f;
    --color-scale-orange-2: #f69d50;
    --color-scale-orange-3: #e0823d;
    --color-scale-orange-4: #cc6b2c;
    --color-scale-orange-5: #ae5622;
    --color-scale-orange-6: #94471b;
    --color-scale-orange-7: #7f3913;
    --color-scale-orange-8: #682d0f;
    --color-scale-orange-9: #4d210c;
    --color-scale-red-0: #ffd8d3;
    --color-scale-red-1: #ffb8b0;
    --color-scale-red-2: #ff938a;
    --color-scale-red-3: #f47067;
    --color-scale-red-4: #e5534b;
    --color-scale-red-5: #c93c37;
    --color-scale-red-6: #ad2e2c;
    --color-scale-red-7: #922323;
    --color-scale-red-8: #78191b;
    --color-scale-red-9: #78191b;
    --color-scale-purple-0: #eedcff;
    --color-scale-purple-1: #dcbdfb;
    --color-scale-purple-2: #dcbdfb;
    --color-scale-purple-3: #b083f0;
    --color-scale-purple-4: #986ee2;
    --color-scale-purple-5: #8256d0;
    --color-scale-purple-6: #6b44bc;
    --color-scale-purple-7: #5936a2;
    --color-scale-purple-8: #472c82;
    --color-scale-purple-9: #352160;
    --color-scale-pink-0: #ffd7eb;
    --color-scale-pink-1: #ffb3d8;
    --color-scale-pink-2: #fc8dc7;
    --color-scale-pink-3: #e275ad;
    --color-scale-pink-4: #c96198;
    --color-scale-pink-5: #ae4c82;
    --color-scale-pink-6: #983b6e;
    --color-scale-pink-7: #7e325a;
    --color-scale-pink-8: #69264a;
    --color-scale-pink-9: #551639;
    --color-scale-coral-0: #FFDACF;
    --color-scale-coral-1: #FFB9A5;
    --color-scale-coral-2: #F79981;
    --color-scale-coral-3: #EC775C;
    --color-scale-coral-4: #DE5B41;
    --color-scale-coral-5: #C2442D;
    --color-scale-coral-6: #A93524;
    --color-scale-coral-7: #8D291B;
    --color-scale-coral-8: #771D13;
    --color-scale-coral-9: #5D1008;
  }
}
@media (prefers-color-scheme: dark) {
  [data-color-mode=auto][data-dark-theme=dark_dimmed] {
    --color-auto-black: #cdd9e5;
    --color-auto-white: #1c2128;
    --color-auto-gray-0: #22272e;
    --color-auto-gray-1: #2d333b;
    --color-auto-gray-2: #373e47;
    --color-auto-gray-3: #444c56;
    --color-auto-gray-4: #545d68;
    --color-auto-gray-5: #636e7b;
    --color-auto-gray-6: #768390;
    --color-auto-gray-7: #909dab;
    --color-auto-gray-8: #adbac7;
    --color-auto-gray-9: #cdd9e5;
    --color-auto-blue-0: #0f2d5c;
    --color-auto-blue-1: #143d79;
    --color-auto-blue-2: #1b4b91;
    --color-auto-blue-3: #255ab2;
    --color-auto-blue-4: #316dca;
    --color-auto-blue-5: #4184e4;
    --color-auto-blue-6: #539bf5;
    --color-auto-blue-7: #6cb6ff;
    --color-auto-blue-8: #96d0ff;
    --color-auto-blue-9: #c6e6ff;
    --color-auto-green-0: #113417;
    --color-auto-green-1: #1b4721;
    --color-auto-green-2: #245829;
    --color-auto-green-3: #2b6a30;
    --color-auto-green-4: #347d39;
    --color-auto-green-5: #46954a;
    --color-auto-green-6: #57ab5a;
    --color-auto-green-7: #6bc46d;
    --color-auto-green-8: #8ddb8c;
    --color-auto-green-9: #b4f1b4;
    --color-auto-yellow-0: #452700;
    --color-auto-yellow-1: #593600;
    --color-auto-yellow-2: #6c4400;
    --color-auto-yellow-3: #805400;
    --color-auto-yellow-4: #966600;
    --color-auto-yellow-5: #ae7c14;
    --color-auto-yellow-6: #c69026;
    --color-auto-yellow-7: #daaa3f;
    --color-auto-yellow-8: #eac55f;
    --color-auto-yellow-9: #fbe090;
    --color-auto-orange-0: #4d210c;
    --color-auto-orange-1: #682d0f;
    --color-auto-orange-2: #7f3913;
    --color-auto-orange-3: #94471b;
    --color-auto-orange-4: #ae5622;
    --color-auto-orange-5: #cc6b2c;
    --color-auto-orange-6: #e0823d;
    --color-auto-orange-7: #f69d50;
    --color-auto-orange-8: #ffbc6f;
    --color-auto-orange-9: #ffddb0;
    --color-auto-red-0: #78191b;
    --color-auto-red-1: #78191b;
    --color-auto-red-2: #922323;
    --color-auto-red-3: #ad2e2c;
    --color-auto-red-4: #c93c37;
    --color-auto-red-5: #e5534b;
    --color-auto-red-6: #f47067;
    --color-auto-red-7: #ff938a;
    --color-auto-red-8: #ffb8b0;
    --color-auto-red-9: #ffd8d3;
    --color-auto-purple-0: #352160;
    --color-auto-purple-1: #472c82;
    --color-auto-purple-2: #5936a2;
    --color-auto-purple-3: #6b44bc;
    --color-auto-purple-4: #8256d0;
    --color-auto-purple-5: #986ee2;
    --color-auto-purple-6: #b083f0;
    --color-auto-purple-7: #dcbdfb;
    --color-auto-purple-8: #dcbdfb;
    --color-auto-purple-9: #eedcff;
    --color-auto-pink-0: #551639;
    --color-auto-pink-1: #69264a;
    --color-auto-pink-2: #7e325a;
    --color-auto-pink-3: #983b6e;
    --color-auto-pink-4: #ae4c82;
    --color-auto-pink-5: #c96198;
    --color-auto-pink-6: #e275ad;
    --color-auto-pink-7: #fc8dc7;
    --color-auto-pink-8: #ffb3d8;
    --color-auto-pink-9: #ffd7eb;
    --color-text-primary: #adbac7;
    --color-text-secondary: #768390;
    --color-text-tertiary: #768390;
    --color-text-placeholder: #545d68;
    --color-text-disabled: #768390;
    --color-text-inverse: #cdd9e5;
    --color-text-link: #539bf5;
    --color-text-danger: #e5534b;
    --color-text-success: #57ab5a;
    --color-text-warning: #c69026;
    --color-text-white: #cdd9e5;
    --color-icon-primary: #adbac7;
    --color-icon-secondary: #768390;
    --color-icon-tertiary: #768390;
    --color-icon-info: #539bf5;
    --color-icon-danger: #e5534b;
    --color-icon-success: #57ab5a;
    --color-icon-warning: #c69026;
    --color-border-primary: #444c56;
    --color-border-secondary: #373e47;
    --color-border-tertiary: #444c56;
    --color-border-overlay: #444c56;
    --color-border-inverse: #cdd9e5;
    --color-border-info: #316dca;
    --color-border-danger: #c93c37;
    --color-border-success: #347d39;
    --color-border-warning: #966600;
    --color-border-default: #444c56;
    --color-border-muted: #373e47;
    --color-border-subtle: rgba(205,217,229,0.1);
    --color-bg-canvas: #22272e;
    --color-bg-canvas-mobile: rgba(0,0,0,0);
    --color-bg-canvas-inverse: #636e7b;
    --color-bg-canvas-inset: #1c2128;
    --color-bg-primary: #22272e;
    --color-bg-secondary: #2d333b;
    --color-bg-tertiary: #2d333b;
    --color-bg-overlay: #2d333b;
    --color-bg-backdrop: rgba(28,33,40,0.8);
    --color-bg-info: rgba(65,132,228,0.15);
    --color-bg-info-inverse: #316dca;
    --color-bg-danger: rgba(229,83,75,0.15);
    --color-bg-danger-inverse: #c93c37;
    --color-bg-success: rgba(70,149,74,0.15);
    --color-bg-success-inverse: #347d39;
    --color-bg-warning: rgba(174,124,20,0.15);
    --color-bg-warning-inverse: #966600;
    --color-shadow-highlight: 0 0 transparent;
    --color-shadow-inset: 0 0 transparent;
    --color-shadow-small: 0 0 transparent;
    --color-shadow-medium: 0 3px 6px #1c2128;
    --color-shadow-large: 0 8px 24px #1c2128;
    --color-shadow-extra-large: 0 12px 48px #1c2128;
    --color-state-hover-primary-bg: #316dca;
    --color-state-hover-primary-border: #316dca;
    --color-state-hover-primary-text: #cdd9e5;
    --color-state-hover-primary-icon: #cdd9e5;
    --color-state-hover-secondary-bg: rgba(99,110,123,0.1);
    --color-state-hover-secondary-border: rgba(99,110,123,0.1);
    --color-state-selected-primary-bg: #316dca;
    --color-state-selected-primary-border: #316dca;
    --color-state-selected-primary-text: #cdd9e5;
    --color-state-selected-primary-icon: #cdd9e5;
    --color-state-focus-border: #316dca;
    --color-state-focus-shadow: 0 0 0 3px #143d79;
    --color-fade-fg-10: rgba(205,217,229,0.1);
    --color-fade-fg-15: rgba(205,217,229,0.15);
    --color-fade-fg-30: rgba(205,217,229,0.3);
    --color-fade-fg-50: rgba(205,217,229,0.5);
    --color-fade-fg-70: rgba(205,217,229,0.7);
    --color-fade-fg-85: rgba(205,217,229,0.85);
    --color-fade-black-10: rgba(28,33,40,0.1);
    --color-fade-black-15: rgba(28,33,40,0.15);
    --color-fade-black-30: rgba(28,33,40,0.3);
    --color-fade-black-50: rgba(28,33,40,0.5);
    --color-fade-black-70: rgba(28,33,40,0.7);
    --color-fade-black-85: rgba(28,33,40,0.85);
    --color-fade-white-10: rgba(205,217,229,0.1);
    --color-fade-white-15: rgba(205,217,229,0.15);
    --color-fade-white-30: rgba(205,217,229,0.3);
    --color-fade-white-50: rgba(205,217,229,0.5);
    --color-fade-white-70: rgba(205,217,229,0.7);
    --color-fade-white-85: rgba(205,217,229,0.85);
    --color-alert-info-text: #adbac7;
    --color-alert-info-icon: #539bf5;
    --color-alert-info-bg: rgba(65,132,228,0.15);
    --color-alert-info-border: rgba(65,132,228,0.4);
    --color-alert-warn-text: #adbac7;
    --color-alert-warn-icon: #c69026;
    --color-alert-warn-bg: rgba(174,124,20,0.15);
    --color-alert-warn-border: rgba(174,124,20,0.4);
    --color-alert-error-text: #adbac7;
    --color-alert-error-icon: #e5534b;
    --color-alert-error-bg: rgba(229,83,75,0.15);
    --color-alert-error-border: rgba(229,83,75,0.4);
    --color-alert-success-text: #adbac7;
    --color-alert-success-icon: #57ab5a;
    --color-alert-success-bg: rgba(70,149,74,0.15);
    --color-alert-success-border: rgba(70,149,74,0.4);
    --color-autocomplete-shadow: 0 3px 6px #1c2128;
    --color-autocomplete-row-border: #373e47;
    --color-blankslate-icon: #768390;
    --color-counter-text: #adbac7;
    --color-counter-bg: rgba(99,110,123,0.4);
    --color-counter-primary-text: #cdd9e5;
    --color-counter-primary-bg: #636e7b;
    --color-counter-secondary-text: #768390;
    --color-counter-secondary-bg: rgba(99,110,123,0.1);
    --color-box-blue-border: rgba(65,132,228,0.4);
    --color-box-row-yellow-bg: rgba(174,124,20,0.15);
    --color-box-row-blue-bg: rgba(65,132,228,0.15);
    --color-box-header-blue-bg: rgba(65,132,228,0.15);
    --color-box-header-blue-border: rgba(65,132,228,0.4);
    --color-box-border-info: rgba(65,132,228,0.4);
    --color-box-bg-info: rgba(65,132,228,0.15);
    --color-box-border-warning: rgba(174,124,20,0.4);
    --color-box-bg-warning: rgba(174,124,20,0.15);
    --color-branch-name-text: #768390;
    --color-branch-name-icon: #768390;
    --color-branch-name-bg: rgba(65,132,228,0.15);
    --color-branch-name-link-text: #539bf5;
    --color-branch-name-link-icon: #539bf5;
    --color-branch-name-link-bg: rgba(65,132,228,0.15);
    --color-markdown-code-bg: rgba(99,110,123,0.4);
    --color-markdown-frame-border: #444c56;
    --color-markdown-blockquote-border: #444c56;
    --color-markdown-table-border: #444c56;
    --color-markdown-table-tr-border: #373e47;
    --color-filter-item-bar-bg: rgba(99,110,123,0.1);
    --color-hidden-text-expander-bg: rgba(99,110,123,0.4);
    --color-hidden-text-expander-bg-hover: rgba(65,132,228,0.4);
    --color-drag-and-drop-border: #444c56;
    --color-upload-enabled-border: #444c56;
    --color-upload-enabled-border-focused: #316dca;
    --color-previewable-comment-form-border: #444c56;
    --color-verified-badge-text: #57ab5a;
    --color-verified-badge-bg: #22272e;
    --color-verified-badge-border: #444c56;
    --color-social-count-bg: #22272e;
    --color-tooltip-text: #cdd9e5;
    --color-tooltip-bg: #636e7b;
    --color-files-explorer-icon: #539bf5;
    --color-hl-author-bg: rgba(65,132,228,0.15);
    --color-hl-author-border: rgba(65,132,228,0.4);
    --color-logo-subdued: rgba(99,110,123,0.4);
    --color-discussion-border: rgba(70,149,74,0.4);
    --color-discussion-bg-success: #347d39;
    --color-actions-workflow-table-sticky-bg: rgba(34,39,46,0.95);
    --color-repo-language-color-border: rgba(205,217,229,0.2);
    --color-code-selection-bg: rgba(65,132,228,0.4);
    --color-highlight-text: #adbac7;
    --color-highlight-bg: rgba(174,124,20,0.15);
    --color-blob-line-highlight-bg: rgba(174,124,20,0.15);
    --color-blob-line-highlight-border: rgba(174,124,20,0.4);
    --color-topic-tag-text: #539bf5;
    --color-topic-tag-bg: rgba(65,132,228,0.15);
    --color-topic-tag-hover-bg: #316dca;
    --color-topic-tag-active-bg: rgba(65,132,228,0.15);
    --color-topic-tag-border: rgba(0,0,0,0);
    --color-footer-invertocat-octicon: #545d68;
    --color-footer-invertocat-octicon-hover: #768390;
    --color-dropdown-shadow: 0 8px 24px #1c2128;
    --color-label-border: #444c56;
    --color-label-primary-text: #adbac7;
    --color-label-primary-border: #636e7b;
    --color-label-secondary-text: #768390;
    --color-label-secondary-border: #444c56;
    --color-label-info-text: #539bf5;
    --color-label-info-border: #316dca;
    --color-label-success-text: #57ab5a;
    --color-label-success-border: #347d39;
    --color-label-warning-text: #c69026;
    --color-label-warning-border: #966600;
    --color-label-danger-text: #e5534b;
    --color-label-danger-border: #c93c37;
    --color-label-orange-text: #cc6b2c;
    --color-label-orange-border: #ae5622;
    --color-input-bg: #22272e;
    --color-input-contrast-bg: #1c2128;
    --color-input-border: #444c56;
    --color-input-shadow: 0 0 transparent;
    --color-input-disabled-border: #444c56;
    --color-input-warning-border: #966600;
    --color-input-error-border: #c93c37;
    --color-input-tooltip-success-text: #adbac7;
    --color-input-tooltip-success-bg: rgba(70,149,74,0.15);
    --color-input-tooltip-success-border: rgba(70,149,74,0.4);
    --color-input-tooltip-warning-text: #adbac7;
    --color-input-tooltip-warning-bg: rgba(174,124,20,0.15);
    --color-input-tooltip-warning-border: rgba(174,124,20,0.4);
    --color-input-tooltip-error-text: #adbac7;
    --color-input-tooltip-error-bg: rgba(229,83,75,0.15);
    --color-input-tooltip-error-border: rgba(229,83,75,0.4);
    --color-input-disabled-bg: rgba(99,110,123,0);
    --color-toast-text: #adbac7;
    --color-toast-bg: #22272e;
    --color-toast-border: #444c56;
    --color-toast-shadow: 0 8px 24px #1c2128;
    --color-toast-icon: #cdd9e5;
    --color-toast-icon-bg: #316dca;
    --color-toast-icon-border: rgba(0,0,0,0);
    --color-toast-success-text: #adbac7;
    --color-toast-success-border: #444c56;
    --color-toast-success-icon: #cdd9e5;
    --color-toast-success-icon-bg: #347d39;
    --color-toast-success-icon-border: rgba(0,0,0,0);
    --color-toast-warning-text: #adbac7;
    --color-toast-warning-border: #444c56;
    --color-toast-warning-icon: #adbac7;
    --color-toast-warning-icon-bg: #966600;
    --color-toast-warning-icon-border: rgba(0,0,0,0);
    --color-toast-danger-text: #adbac7;
    --color-toast-danger-border: #444c56;
    --color-toast-danger-icon: #cdd9e5;
    --color-toast-danger-icon-bg: #c93c37;
    --color-toast-danger-icon-border: rgba(0,0,0,0);
    --color-toast-loading-text: #adbac7;
    --color-toast-loading-border: #444c56;
    --color-toast-loading-icon: #cdd9e5;
    --color-toast-loading-icon-bg: #636e7b;
    --color-toast-loading-icon-border: rgba(0,0,0,0);
    --color-timeline-text: #768390;
    --color-timeline-badge-success-border: rgba(0,0,0,0);
    --color-timeline-target-badge-border: #316dca;
    --color-timeline-target-badge-shadow: rgba(65,132,228,0.4);
    --color-timeline-badge-bg: #373e47;
    --color-diffstat-neutral-bg: rgba(99,110,123,0.4);
    --color-diffstat-neutral-border: rgba(205,217,229,0.1);
    --color-diffstat-deletion-border: rgba(205,217,229,0.1);
    --color-diffstat-addition-border: rgba(205,217,229,0.1);
    --color-diffstat-deletion-bg: #c93c37;
    --color-diffstat-addition-bg: #57ab5a;
    --color-diff-addition-text: #adbac7;
    --color-diff-addition-bg: rgba(70,149,74,0.15);
    --color-diff-addition-border: rgba(70,149,74,0.4);
    --color-diff-deletion-text: #adbac7;
    --color-diff-deletion-bg: rgba(229,83,75,0.15);
    --color-diff-deletion-border: rgba(229,83,75,0.4);
    --color-diff-change-text: #c69026;
    --color-diff-change-bg: rgba(174,124,20,0.15);
    --color-diff-change-border: rgba(174,124,20,0.4);
    --color-merge-box-success-icon-bg: #347d39;
    --color-merge-box-success-icon-text: #cdd9e5;
    --color-merge-box-success-icon-border: rgba(0,0,0,0);
    --color-merge-box-success-indicator-bg: #347d39;
    --color-merge-box-success-indicator-border: rgba(0,0,0,0);
    --color-merge-box-merged-icon-bg: #8256d0;
    --color-merge-box-merged-icon-text: #cdd9e5;
    --color-merge-box-merged-icon-border: rgba(0,0,0,0);
    --color-merge-box-merged-box-border: #8256d0;
    --color-merge-box-neutral-icon-bg: #636e7b;
    --color-merge-box-neutral-icon-text: #cdd9e5;
    --color-merge-box-neutral-icon-border: rgba(0,0,0,0);
    --color-merge-box-neutral-indicator-bg: #636e7b;
    --color-merge-box-neutral-indicator-border: rgba(0,0,0,0);
    --color-merge-box-warning-icon-bg: #966600;
    --color-merge-box-warning-icon-text: #cdd9e5;
    --color-merge-box-warning-icon-border: rgba(0,0,0,0);
    --color-merge-box-warning-box-border: #966600;
    --color-merge-box-warning-merge-highlight: rgba(0,0,0,0);
    --color-merge-box-error-icon-bg: #c93c37;
    --color-merge-box-error-icon-text: #cdd9e5;
    --color-merge-box-error-icon-border: rgba(0,0,0,0);
    --color-merge-box-error-indicator-bg: #c93c37;
    --color-merge-box-error-indicator-border: rgba(0,0,0,0);
    --color-underlinenav-border: rgba(0,0,0,0);
    --color-underlinenav-border-hover: rgba(99,110,123,0.4);
    --color-underlinenav-border-active: #EC775C;
    --color-underlinenav-text: #adbac7;
    --color-underlinenav-text-hover: #adbac7;
    --color-underlinenav-text-active: #adbac7;
    --color-underlinenav-icon: #545d68;
    --color-underlinenav-icon-hover: #545d68;
    --color-underlinenav-icon-active: #adbac7;
    --color-underlinenav-counter-text: #adbac7;
    --color-underlinenav-counter-bg: rgba(99,110,123,0.4);
    --color-select-menu-border-secondary: #373e47;
    --color-select-menu-shadow: 0 8px 24px #1c2128;
    --color-select-menu-backdrop-bg: rgba(28,33,40,0.8);
    --color-select-menu-backdrop-border: #545d68;
    --color-select-menu-tap-highlight: rgba(68,76,86,0.5);
    --color-select-menu-tap-focus-bg: #143d79;
    --color-sidenav-border-active: #EC775C;
    --color-sidenav-selected-bg: #373e47;
    --color-menu-heading-text: #adbac7;
    --color-menu-border-active: #EC775C;
    --color-menu-bg-active: #2d333b;
    --color-project-card-bg: #2d333b;
    --color-project-header-bg: #22272e;
    --color-project-sidebar-bg: #2d333b;
    --color-project-gradient-in: #2d333b;
    --color-project-gradient-out: rgba(45,51,59,0);
    --color-pr-state-draft-text: #cdd9e5;
    --color-pr-state-draft-bg: #636e7b;
    --color-pr-state-draft-border: rgba(0,0,0,0);
    --color-pr-state-open-text: #cdd9e5;
    --color-pr-state-open-bg: #347d39;
    --color-pr-state-open-border: rgba(0,0,0,0);
    --color-pr-state-merged-text: #cdd9e5;
    --color-pr-state-merged-bg: #8256d0;
    --color-pr-state-merged-border: rgba(0,0,0,0);
    --color-pr-state-closed-text: #cdd9e5;
    --color-pr-state-closed-bg: #c93c37;
    --color-pr-state-closed-border: rgba(0,0,0,0);
    --color-diff-blob-num-text: #545d68;
    --color-diff-blob-num-hover-text: #adbac7;
    --color-diff-blob-addition-num-hover-text: #adbac7;
    --color-diff-blob-addition-num-text: #adbac7;
    --color-diff-blob-addition-fg: #adbac7;
    --color-diff-blob-addition-num-bg: rgba(87,171,90,0.3);
    --color-diff-blob-addition-line-bg: rgba(70,149,74,0.15);
    --color-diff-blob-addition-word-bg: rgba(70,149,74,0.4);
    --color-diff-blob-deletion-num-hover-text: #adbac7;
    --color-diff-blob-deletion-num-text: #adbac7;
    --color-diff-blob-deletion-fg: #adbac7;
    --color-diff-blob-deletion-num-bg: rgba(229,83,75,0.3);
    --color-diff-blob-deletion-line-bg: rgba(229,83,75,0.15);
    --color-diff-blob-deletion-word-bg: rgba(229,83,75,0.4);
    --color-diff-blob-hunk-text: #768390;
    --color-diff-blob-hunk-num-bg: rgba(65,132,228,0.4);
    --color-diff-blob-hunk-line-bg: rgba(65,132,228,0.15);
    --color-diff-blob-empty-block-bg: rgba(99,110,123,0.1);
    --color-diff-blob-selected-line-highlight-bg: rgba(174,124,20,0.15);
    --color-diff-blob-selected-line-highlight-border: rgba(174,124,20,0.4);
    --color-diff-blob-expander-hover-icon: #cdd9e5;
    --color-diff-blob-expander-hover-bg: #316dca;
    --color-diff-blob-expander-icon: #768390;
    --color-diff-blob-comment-button-icon: #cdd9e5;
    --color-diff-blob-comment-button-bg: #316dca;
    --color-diff-blob-comment-button-gradient-bg: rgba(0,0,0,0);
    --color-diff-blob-selected-line-highlight-mix-blend-mode: screen;
    --color-global-nav-logo: #cdd9e5;
    --color-global-nav-bg: #2d333b;
    --color-global-nav-text: #adbac7;
    --color-global-nav-icon: #adbac7;
    --color-global-nav-input-bg: #22272e;
    --color-global-nav-input-border: #373e47;
    --color-global-nav-input-icon: #373e47;
    --color-global-nav-input-placeholder: #545d68;
    --color-intro-shelf-gradient-left: rgba(65,132,228,0.15);
    --color-intro-shelf-gradient-right: rgba(70,149,74,0.15);
    --color-intro-shelf-gradient-in: #22272e;
    --color-intro-shelf-gradient-out: rgba(205,217,229,0);
    --color-canvas-default-transparent: rgba(34,39,46,0);
    --color-marketing-icon-primary: #6cb6ff;
    --color-marketing-icon-secondary: #316dca;
    --color-search-keyword-hl: rgba(198,144,38,0.4);
    --color-prettylights-syntax-comment: #768390;
    --color-prettylights-syntax-constant: #6cb6ff;
    --color-prettylights-syntax-entity: #dcbdfb;
    --color-prettylights-syntax-storage-modifier-import: #adbac7;
    --color-prettylights-syntax-entity-tag: #8ddb8c;
    --color-prettylights-syntax-keyword: #f47067;
    --color-prettylights-syntax-string: #96d0ff;
    --color-prettylights-syntax-variable: #f69d50;
    --color-prettylights-syntax-brackethighlighter-unmatched: #e5534b;
    --color-prettylights-syntax-invalid-illegal-text: #cdd9e5;
    --color-prettylights-syntax-invalid-illegal-bg: #922323;
    --color-prettylights-syntax-carriage-return-text: #cdd9e5;
    --color-prettylights-syntax-carriage-return-bg: #ad2e2c;
    --color-prettylights-syntax-string-regexp: #8ddb8c;
    --color-prettylights-syntax-markup-list: #eac55f;
    --color-prettylights-syntax-markup-heading: #316dca;
    --color-prettylights-syntax-markup-italic: #adbac7;
    --color-prettylights-syntax-markup-bold: #adbac7;
    --color-prettylights-syntax-markup-deleted-text: #ffd8d3;
    --color-prettylights-syntax-markup-deleted-bg: #78191b;
    --color-prettylights-syntax-markup-inserted-text: #b4f1b4;
    --color-prettylights-syntax-markup-inserted-bg: #1b4721;
    --color-prettylights-syntax-markup-changed-text: #ffddb0;
    --color-prettylights-syntax-markup-changed-bg: #682d0f;
    --color-prettylights-syntax-markup-ignored-text: #adbac7;
    --color-prettylights-syntax-markup-ignored-bg: #255ab2;
    --color-prettylights-syntax-meta-diff-range: #dcbdfb;
    --color-prettylights-syntax-brackethighlighter-angle: #768390;
    --color-prettylights-syntax-sublimelinter-gutter-mark: #545d68;
    --color-prettylights-syntax-constant-other-reference-link: #96d0ff;
    --color-codemirror-text: #adbac7;
    --color-codemirror-bg: #22272e;
    --color-codemirror-gutters-bg: #22272e;
    --color-codemirror-guttermarker-text: #22272e;
    --color-codemirror-guttermarker-subtle-text: #545d68;
    --color-codemirror-linenumber-text: #768390;
    --color-codemirror-cursor: #adbac7;
    --color-codemirror-selection-bg: rgba(65,132,228,0.4);
    --color-codemirror-activeline-bg: rgba(99,110,123,0.1);
    --color-codemirror-matchingbracket-text: #adbac7;
    --color-codemirror-lines-bg: #22272e;
    --color-codemirror-syntax-comment: #768390;
    --color-codemirror-syntax-constant: #6cb6ff;
    --color-codemirror-syntax-entity: #dcbdfb;
    --color-codemirror-syntax-keyword: #f47067;
    --color-codemirror-syntax-storage: #f47067;
    --color-codemirror-syntax-string: #96d0ff;
    --color-codemirror-syntax-support: #6cb6ff;
    --color-codemirror-syntax-variable: #f69d50;
    --color-checks-bg: #1c2128;
    --color-checks-run-border-width: 1px;
    --color-checks-container-border-width: 1px;
    --color-checks-text-primary: #adbac7;
    --color-checks-text-secondary: #768390;
    --color-checks-text-link: #539bf5;
    --color-checks-btn-icon: #768390;
    --color-checks-btn-hover-icon: #adbac7;
    --color-checks-btn-hover-bg: rgba(99,110,123,0.1);
    --color-checks-input-text: #768390;
    --color-checks-input-placeholder-text: #545d68;
    --color-checks-input-focus-text: #adbac7;
    --color-checks-input-bg: #2d333b;
    --color-checks-input-shadow: 0 0 0 1px (obj) => get_1.default(obj, path);
    --color-checks-donut-error: #e5534b;
    --color-checks-donut-pending: #c69026;
    --color-checks-donut-success: #46954a;
    --color-checks-donut-neutral: #768390;
    --color-checks-dropdown-text: #adbac7;
    --color-checks-dropdown-bg: #2d333b;
    --color-checks-dropdown-border: #444c56;
    --color-checks-dropdown-shadow: rgba(28,33,40,0.3);
    --color-checks-dropdown-hover-text: #adbac7;
    --color-checks-dropdown-hover-bg: rgba(99,110,123,0.1);
    --color-checks-dropdown-btn-hover-text: #adbac7;
    --color-checks-dropdown-btn-hover-bg: rgba(99,110,123,0.1);
    --color-checks-scrollbar-thumb-bg: rgba(99,110,123,0.4);
    --color-checks-header-label-text: #768390;
    --color-checks-header-label-open-text: #adbac7;
    --color-checks-header-border: #373e47;
    --color-checks-header-icon: #768390;
    --color-checks-line-text: #768390;
    --color-checks-line-num-text: #545d68;
    --color-checks-line-timestamp-text: #545d68;
    --color-checks-line-hover-bg: rgba(99,110,123,0.1);
    --color-checks-line-selected-bg: rgba(65,132,228,0.15);
    --color-checks-line-selected-num-text: #539bf5;
    --color-checks-line-dt-fm-text: #cdd9e5;
    --color-checks-line-dt-fm-bg: #966600;
    --color-checks-gate-bg: rgba(174,124,20,0.15);
    --color-checks-gate-text: #768390;
    --color-checks-gate-waiting-text: #c69026;
    --color-checks-step-header-open-bg: #2d333b;
    --color-checks-step-error-text: #e5534b;
    --color-checks-step-warning-text: #c69026;
    --color-checks-logline-text: #768390;
    --color-checks-logline-num-text: #545d68;
    --color-checks-logline-debug-text: #986ee2;
    --color-checks-logline-error-text: #768390;
    --color-checks-logline-error-num-text: #545d68;
    --color-checks-logline-error-bg: rgba(229,83,75,0.15);
    --color-checks-logline-warning-text: #768390;
    --color-checks-logline-warning-num-text: #c69026;
    --color-checks-logline-warning-bg: rgba(174,124,20,0.15);
    --color-checks-logline-command-text: #539bf5;
    --color-checks-logline-section-text: #57ab5a;
    --color-checks-ansi-black: #22272e;
    --color-checks-ansi-black-bright: #2d333b;
    --color-checks-ansi-white: #909dab;
    --color-checks-ansi-white-bright: #909dab;
    --color-checks-ansi-gray: #636e7b;
    --color-checks-ansi-red: #f47067;
    --color-checks-ansi-red-bright: #ff938a;
    --color-checks-ansi-green: #57ab5a;
    --color-checks-ansi-green-bright: #6bc46d;
    --color-checks-ansi-yellow: #c69026;
    --color-checks-ansi-yellow-bright: #daaa3f;
    --color-checks-ansi-blue: #539bf5;
    --color-checks-ansi-blue-bright: #6cb6ff;
    --color-checks-ansi-magenta: #b083f0;
    --color-checks-ansi-magenta-bright: #dcbdfb;
    --color-checks-ansi-cyan: #76e3ea;
    --color-checks-ansi-cyan-bright: #b3f0ff;
    --color-mktg-success: rgba(61,137,66,1);
    --color-mktg-info: rgba(56,119,213,1);
    --color-mktg-bg-shade-gradient-top: rgba(28,33,40,0.065);
    --color-mktg-bg-shade-gradient-bottom: rgba(28,33,40,0);
    --color-mktg-btn-bg-top: hsla(228,82%,66%,1);
    --color-mktg-btn-bg-bottom: #4969ed;
    --color-mktg-btn-bg-overlay-top: hsla(228,74%,59%,1);
    --color-mktg-btn-bg-overlay-bottom: #3355e0;
    --color-mktg-btn-text: #cdd9e5;
    --color-mktg-btn-primary-bg-top: hsla(137,56%,46%,1);
    --color-mktg-btn-primary-bg-bottom: #2ea44f;
    --color-mktg-btn-primary-bg-overlay-top: hsla(134,60%,38%,1);
    --color-mktg-btn-primary-bg-overlay-bottom: #22863a;
    --color-mktg-btn-primary-text: #cdd9e5;
    --color-mktg-btn-enterprise-bg-top: hsla(249,100%,72%,1);
    --color-mktg-btn-enterprise-bg-bottom: #6f57ff;
    --color-mktg-btn-enterprise-bg-overlay-top: hsla(248,65%,63%,1);
    --color-mktg-btn-enterprise-bg-overlay-bottom: #614eda;
    --color-mktg-btn-enterprise-text: #cdd9e5;
    --color-mktg-btn-outline-text: #cdd9e5;
    --color-mktg-btn-outline-border: rgba(205,217,229,0.3);
    --color-mktg-btn-outline-hover-text: #cdd9e5;
    --color-mktg-btn-outline-hover-border: rgba(205,217,229,0.5);
    --color-mktg-btn-outline-focus-border: #cdd9e5;
    --color-mktg-btn-outline-focus-border-inset: rgba(205,217,229,0.5);
    --color-mktg-btn-dark-text: #cdd9e5;
    --color-mktg-btn-dark-border: rgba(205,217,229,0.3);
    --color-mktg-btn-dark-hover-text: #cdd9e5;
    --color-mktg-btn-dark-hover-border: rgba(205,217,229,0.5);
    --color-mktg-btn-dark-focus-border: #cdd9e5;
    --color-mktg-btn-dark-focus-border-inset: rgba(205,217,229,0.5);
    --color-avatar-bg: rgba(205,217,229,0.1);
    --color-avatar-border: rgba(205,217,229,0.1);
    --color-avatar-stack-fade: #444c56;
    --color-avatar-stack-fade-more: #373e47;
    --color-avatar-child-shadow: -2px -2px 0 #22272e;
    --color-overlay-shadow: 0 0 0 1px #444c56, 0 16px 32px rgba(28,33,40,0.85);
    --color-header-text: rgba(205,217,229,0.7);
    --color-header-bg: #2d333b;
    --color-header-logo: #cdd9e5;
    --color-header-search-bg: #22272e;
    --color-header-search-border: #444c56;
    --color-ansi-black: #545d68;
    --color-ansi-black-bright: #636e7b;
    --color-ansi-white: #909dab;
    --color-ansi-white-bright: #cdd9e5;
    --color-ansi-gray: #636e7b;
    --color-ansi-red: #f47067;
    --color-ansi-red-bright: #ff938a;
    --color-ansi-green: #57ab5a;
    --color-ansi-green-bright: #6bc46d;
    --color-ansi-yellow: #c69026;
    --color-ansi-yellow-bright: #daaa3f;
    --color-ansi-blue: #539bf5;
    --color-ansi-blue-bright: #6cb6ff;
    --color-ansi-magenta: #b083f0;
    --color-ansi-magenta-bright: #dcbdfb;
    --color-ansi-cyan: #39c5cf;
    --color-ansi-cyan-bright: #56d4dd;
    --color-btn-text: #adbac7;
    --color-btn-bg: #373e47;
    --color-btn-border: rgba(205,217,229,0.1);
    --color-btn-shadow: 0 0 transparent;
    --color-btn-inset-shadow: 0 0 transparent;
    --color-btn-hover-bg: #444c56;
    --color-btn-hover-border: #768390;
    --color-btn-active-bg: hsla(213,12%,27%,1);
    --color-btn-active-border: #636e7b;
    --color-btn-selected-bg: #2d333b;
    --color-btn-focus-bg: #373e47;
    --color-btn-focus-border: #768390;
    --color-btn-focus-shadow: 0 0 0 3px rgba(118,131,144,0.3);
    --color-btn-shadow-active: inset 0 0.15em 0.3em rgba(28,33,40,0.15);
    --color-btn-shadow-input-focus: 0 0 0 0.2em rgba(49,109,202,0.3);
    --color-btn-counter-bg: #444c56;
    --color-btn-primary-text: #ffffff;
    --color-btn-primary-bg: #347d39;
    --color-btn-primary-border: rgba(205,217,229,0.1);
    --color-btn-primary-shadow: 0 0 transparent;
    --color-btn-primary-inset-shadow: 0 0 transparent;
    --color-btn-primary-hover-bg: #46954a;
    --color-btn-primary-hover-border: rgba(205,217,229,0.1);
    --color-btn-primary-selected-bg: #347d39;
    --color-btn-primary-selected-shadow: 0 0 transparent;
    --color-btn-primary-disabled-text: rgba(205,217,229,0.5);
    --color-btn-primary-disabled-bg: rgba(52,125,57,0.6);
    --color-btn-primary-disabled-border: rgba(205,217,229,0.1);
    --color-btn-primary-focus-bg: #347d39;
    --color-btn-primary-focus-border: rgba(205,217,229,0.1);
    --color-btn-primary-focus-shadow: 0 0 0 3px rgba(46,164,79,0.4);
    --color-btn-primary-icon: #cdd9e5;
    --color-btn-primary-counter-bg: rgba(205,217,229,0.2);
    --color-btn-outline-text: #539bf5;
    --color-btn-outline-hover-text: #539bf5;
    --color-btn-outline-hover-bg: #444c56;
    --color-btn-outline-hover-border: rgba(205,217,229,0.1);
    --color-btn-outline-hover-shadow: 0 1px 0 rgba(28,33,40,0.1);
    --color-btn-outline-hover-inset-shadow: inset 0 1px 0 rgba(205,217,229,0.03);
    --color-btn-outline-hover-counter-bg: rgba(205,217,229,0.2);
    --color-btn-outline-selected-text: #cdd9e5;
    --color-btn-outline-selected-bg: #1b4b91;
    --color-btn-outline-selected-border: rgba(205,217,229,0.1);
    --color-btn-outline-selected-shadow: 0 0 transparent;
    --color-btn-outline-disabled-text: rgba(83,155,245,0.5);
    --color-btn-outline-disabled-bg: #22272e;
    --color-btn-outline-disabled-counter-bg: rgba(49,109,202,0.05);
    --color-btn-outline-focus-border: rgba(205,217,229,0.1);
    --color-btn-outline-focus-shadow: 0 0 0 3px rgba(37,90,178,0.4);
    --color-btn-outline-counter-bg: rgba(49,109,202,0.1);
    --color-btn-danger-text: #e5534b;
    --color-btn-danger-hover-text: #cdd9e5;
    --color-btn-danger-hover-bg: #c93c37;
    --color-btn-danger-hover-border: #e5534b;
    --color-btn-danger-hover-shadow: 0 0 transparent;
    --color-btn-danger-hover-inset-shadow: 0 0 transparent;
    --color-btn-danger-hover-icon: #cdd9e5;
    --color-btn-danger-hover-counter-bg: rgba(255,255,255,0.2);
    --color-btn-danger-selected-text: #ffffff;
    --color-btn-danger-selected-bg: #ad2e2c;
    --color-btn-danger-selected-border: #f47067;
    --color-btn-danger-selected-shadow: 0 0 transparent;
    --color-btn-danger-disabled-text: rgba(229,83,75,0.5);
    --color-btn-danger-disabled-bg: #22272e;
    --color-btn-danger-disabled-counter-bg: rgba(201,60,55,0.05);
    --color-btn-danger-focus-border: #e5534b;
    --color-btn-danger-focus-shadow: 0 0 0 3px rgba(229,83,75,0.4);
    --color-btn-danger-counter-bg: rgba(201,60,55,0.1);
    --color-btn-danger-icon: #e5534b;
    --color-fg-default: #adbac7;
    --color-fg-muted: #768390;
    --color-fg-subtle: #545d68;
    --color-fg-on-emphasis: #cdd9e5;
    --color-canvas-default: #22272e;
    --color-canvas-overlay: #2d333b;
    --color-canvas-inset: #1c2128;
    --color-canvas-subtle: #2d333b;
    --color-neutral-emphasis-plus: #636e7b;
    --color-neutral-emphasis: #636e7b;
    --color-neutral-muted: rgba(99,110,123,0.4);
    --color-neutral-subtle: rgba(99,110,123,0.1);
    --color-accent-fg: #539bf5;
    --color-accent-emphasis: #316dca;
    --color-accent-muted: rgba(65,132,228,0.4);
    --color-accent-subtle: rgba(65,132,228,0.15);
    --color-success-fg: #57ab5a;
    --color-success-emphasis: #347d39;
    --color-success-muted: rgba(70,149,74,0.4);
    --color-success-subtle: rgba(70,149,74,0.15);
    --color-attention-fg: #c69026;
    --color-attention-emphasis: #966600;
    --color-attention-muted: rgba(174,124,20,0.4);
    --color-attention-subtle: rgba(174,124,20,0.15);
    --color-severe-fg: #cc6b2c;
    --color-severe-emphasis: #ae5622;
    --color-severe-muted: rgba(204,107,44,0.4);
    --color-severe-subtle: rgba(204,107,44,0.15);
    --color-danger-fg: #e5534b;
    --color-danger-emphasis: #c93c37;
    --color-danger-muted: rgba(229,83,75,0.4);
    --color-danger-subtle: rgba(229,83,75,0.15);
    --color-done-fg: #986ee2;
    --color-done-emphasis: #8256d0;
    --color-done-muted: rgba(152,110,226,0.4);
    --color-done-subtle: rgba(152,110,226,0.15);
    --color-sponsors-fg: #c96198;
    --color-sponsors-emphasis: #ae4c82;
    --color-sponsors-muted: rgba(201,97,152,0.4);
    --color-sponsors-subtle: rgba(201,97,152,0.15);
    --color-primer-canvas-backdrop: rgba(28,33,40,0.8);
    --color-primer-canvas-sticky: rgba(34,39,46,0.95);
    --color-primer-border-active: #EC775C;
    --color-primer-border-contrast: rgba(205,217,229,0.2);
    --color-primer-shadow-highlight: 0 0 transparent;
    --color-primer-shadow-inset: 0 0 transparent;
    --color-primer-shadow-focus: 0 0 0 3px #143d79;
    --color-scale-black: #1c2128;
    --color-scale-white: #cdd9e5;
    --color-scale-gray-0: #cdd9e5;
    --color-scale-gray-1: #adbac7;
    --color-scale-gray-2: #909dab;
    --color-scale-gray-3: #768390;
    --color-scale-gray-4: #636e7b;
    --color-scale-gray-5: #545d68;
    --color-scale-gray-6: #444c56;
    --color-scale-gray-7: #373e47;
    --color-scale-gray-8: #2d333b;
    --color-scale-gray-9: #22272e;
    --color-scale-blue-0: #c6e6ff;
    --color-scale-blue-1: #96d0ff;
    --color-scale-blue-2: #6cb6ff;
    --color-scale-blue-3: #539bf5;
    --color-scale-blue-4: #4184e4;
    --color-scale-blue-5: #316dca;
    --color-scale-blue-6: #255ab2;
    --color-scale-blue-7: #1b4b91;
    --color-scale-blue-8: #143d79;
    --color-scale-blue-9: #0f2d5c;
    --color-scale-green-0: #b4f1b4;
    --color-scale-green-1: #8ddb8c;
    --color-scale-green-2: #6bc46d;
    --color-scale-green-3: #57ab5a;
    --color-scale-green-4: #46954a;
    --color-scale-green-5: #347d39;
    --color-scale-green-6: #2b6a30;
    --color-scale-green-7: #245829;
    --color-scale-green-8: #1b4721;
    --color-scale-green-9: #113417;
    --color-scale-yellow-0: #fbe090;
    --color-scale-yellow-1: #eac55f;
    --color-scale-yellow-2: #daaa3f;
    --color-scale-yellow-3: #c69026;
    --color-scale-yellow-4: #ae7c14;
    --color-scale-yellow-5: #966600;
    --color-scale-yellow-6: #805400;
    --color-scale-yellow-7: #6c4400;
    --color-scale-yellow-8: #593600;
    --color-scale-yellow-9: #452700;
    --color-scale-orange-0: #ffddb0;
    --color-scale-orange-1: #ffbc6f;
    --color-scale-orange-2: #f69d50;
    --color-scale-orange-3: #e0823d;
    --color-scale-orange-4: #cc6b2c;
    --color-scale-orange-5: #ae5622;
    --color-scale-orange-6: #94471b;
    --color-scale-orange-7: #7f3913;
    --color-scale-orange-8: #682d0f;
    --color-scale-orange-9: #4d210c;
    --color-scale-red-0: #ffd8d3;
    --color-scale-red-1: #ffb8b0;
    --color-scale-red-2: #ff938a;
    --color-scale-red-3: #f47067;
    --color-scale-red-4: #e5534b;
    --color-scale-red-5: #c93c37;
    --color-scale-red-6: #ad2e2c;
    --color-scale-red-7: #922323;
    --color-scale-red-8: #78191b;
    --color-scale-red-9: #78191b;
    --color-scale-purple-0: #eedcff;
    --color-scale-purple-1: #dcbdfb;
    --color-scale-purple-2: #dcbdfb;
    --color-scale-purple-3: #b083f0;
    --color-scale-purple-4: #986ee2;
    --color-scale-purple-5: #8256d0;
    --color-scale-purple-6: #6b44bc;
    --color-scale-purple-7: #5936a2;
    --color-scale-purple-8: #472c82;
    --color-scale-purple-9: #352160;
    --color-scale-pink-0: #ffd7eb;
    --color-scale-pink-1: #ffb3d8;
    --color-scale-pink-2: #fc8dc7;
    --color-scale-pink-3: #e275ad;
    --color-scale-pink-4: #c96198;
    --color-scale-pink-5: #ae4c82;
    --color-scale-pink-6: #983b6e;
    --color-scale-pink-7: #7e325a;
    --color-scale-pink-8: #69264a;
    --color-scale-pink-9: #551639;
    --color-scale-coral-0: #FFDACF;
    --color-scale-coral-1: #FFB9A5;
    --color-scale-coral-2: #F79981;
    --color-scale-coral-3: #EC775C;
    --color-scale-coral-4: #DE5B41;
    --color-scale-coral-5: #C2442D;
    --color-scale-coral-6: #A93524;
    --color-scale-coral-7: #8D291B;
    --color-scale-coral-8: #771D13;
    --color-scale-coral-9: #5D1008;
  }
}
[data-color-mode=light][data-light-theme=dark_high_contrast],
[data-color-mode=dark][data-dark-theme=dark_high_contrast] {
  --color-auto-black: #ffffff;
  --color-auto-white: #010409;
  --color-auto-gray-0: #0a0c10;
  --color-auto-gray-1: #272b33;
  --color-auto-gray-2: #272b33;
  --color-auto-gray-3: #525964;
  --color-auto-gray-4: #7a828e;
  --color-auto-gray-5: #9ea7b3;
  --color-auto-gray-6: #bdc4cc;
  --color-auto-gray-7: #d9dee3;
  --color-auto-gray-8: #f0f3f6;
  --color-auto-gray-9: #ffffff;
  --color-auto-blue-0: #194fb1;
  --color-auto-blue-1: #1e60d5;
  --color-auto-blue-2: #2672f3;
  --color-auto-blue-3: #318bf8;
  --color-auto-blue-4: #409eff;
  --color-auto-blue-5: #409eff;
  --color-auto-blue-6: #71b7ff;
  --color-auto-blue-7: #91cbff;
  --color-auto-blue-8: #addcff;
  --color-auto-blue-9: #caeaff;
  --color-auto-green-0: #006222;
  --color-auto-green-1: #007728;
  --color-auto-green-2: #008c2c;
  --color-auto-green-3: #02a232;
  --color-auto-green-4: #09b43a;
  --color-auto-green-5: #09b43a;
  --color-auto-green-6: #26cd4d;
  --color-auto-green-7: #4ae168;
  --color-auto-green-8: #72f088;
  --color-auto-green-9: #acf7b6;
  --color-auto-yellow-0: #7b4900;
  --color-auto-yellow-1: #945d02;
  --color-auto-yellow-2: #ae7104;
  --color-auto-yellow-3: #c88508;
  --color-auto-yellow-4: #e09b13;
  --color-auto-yellow-5: #e09b13;
  --color-auto-yellow-6: #f0b72f;
  --color-auto-yellow-7: #f7c843;
  --color-auto-yellow-8: #fbd669;
  --color-auto-yellow-9: #fbe59e;
  --color-auto-orange-0: #8f3c00;
  --color-auto-orange-1: #a74c00;
  --color-auto-orange-2: #bf5e0a;
  --color-auto-orange-3: #d57014;
  --color-auto-orange-4: #e7811d;
  --color-auto-orange-5: #e7811d;
  --color-auto-orange-6: #fe9a2d;
  --color-auto-orange-7: #ffb757;
  --color-auto-orange-8: #ffcf86;
  --color-auto-orange-9: #ffe1b4;
  --color-auto-red-0: #ad0116;
  --color-auto-red-1: #cc1421;
  --color-auto-red-2: #e82a2f;
  --color-auto-red-3: #ff4445;
  --color-auto-red-4: #ff6a69;
  --color-auto-red-5: #ff6a69;
  --color-auto-red-6: #ff9492;
  --color-auto-red-7: #ffb1af;
  --color-auto-red-8: #ffc9c7;
  --color-auto-red-9: #ffdedb;
  --color-auto-purple-0: #6921d7;
  --color-auto-purple-1: #8031f7;
  --color-auto-purple-2: #954ffd;
  --color-auto-purple-3: #a66bff;
  --color-auto-purple-4: #b87fff;
  --color-auto-purple-5: #b780ff;
  --color-auto-purple-6: #cb9eff;
  --color-auto-purple-7: #dbb7ff;
  --color-auto-purple-8: #e6ccff;
  --color-auto-purple-9: #f0dfff;
  --color-auto-pink-0: #9c1d6a;
  --color-auto-pink-1: #b72c7d;
  --color-auto-pink-2: #d23d91;
  --color-auto-pink-3: #e456a3;
  --color-auto-pink-4: #ef6eb1;
  --color-auto-pink-5: #ef6eb1;
  --color-auto-pink-6: #ff8dc7;
  --color-auto-pink-7: #ffadd4;
  --color-auto-pink-8: #ffc7e1;
  --color-auto-pink-9: #ffdceb;
  --color-text-primary: #f0f3f6;
  --color-text-secondary: #f0f3f6;
  --color-text-tertiary: #f0f3f6;
  --color-text-placeholder: #7a828e;
  --color-text-disabled: #f0f3f6;
  --color-text-inverse: #0a0c10;
  --color-text-link: #71b7ff;
  --color-text-danger: #ff6a69;
  --color-text-success: #26cd4d;
  --color-text-warning: #f0b72f;
  --color-text-white: #ffffff;
  --color-icon-primary: #f0f3f6;
  --color-icon-secondary: #f0f3f6;
  --color-icon-tertiary: #f0f3f6;
  --color-icon-info: #71b7ff;
  --color-icon-danger: #ff6a69;
  --color-icon-success: #26cd4d;
  --color-icon-warning: #f0b72f;
  --color-border-primary: #7a828e;
  --color-border-secondary: #7a828e;
  --color-border-tertiary: #7a828e;
  --color-border-overlay: #7a828e;
  --color-border-inverse: #0a0c10;
  --color-border-info: #409eff;
  --color-border-danger: #ff6a69;
  --color-border-success: #09b43a;
  --color-border-warning: #e09b13;
  --color-border-default: #7a828e;
  --color-border-muted: #7a828e;
  --color-border-subtle: #7a828e;
  --color-bg-canvas: #0a0c10;
  --color-bg-canvas-mobile: rgba(0,0,0,0);
  --color-bg-canvas-inverse: #9ea7b3;
  --color-bg-canvas-inset: #010409;
  --color-bg-primary: #0a0c10;
  --color-bg-secondary: #272b33;
  --color-bg-tertiary: #272b33;
  --color-bg-overlay: #272b33;
  --color-bg-backdrop: rgba(1,4,9,0.8);
  --color-bg-info: rgba(64,158,255,0.15);
  --color-bg-info-inverse: #409eff;
  --color-bg-danger: rgba(255,106,105,0.15);
  --color-bg-danger-inverse: #ff6a69;
  --color-bg-success: rgba(9,180,58,0.15);
  --color-bg-success-inverse: #09b43a;
  --color-bg-warning: rgba(224,155,19,0.15);
  --color-bg-warning-inverse: #e09b13;
  --color-shadow-highlight: 0 0 transparent;
  --color-shadow-inset: 0 0 transparent;
  --color-shadow-small: 0 0 transparent;
  --color-shadow-medium: 0 3px 6px #010409;
  --color-shadow-large: 0 8px 24px #010409;
  --color-shadow-extra-large: 0 12px 48px #010409;
  --color-state-hover-primary-bg: #409eff;
  --color-state-hover-primary-border: #409eff;
  --color-state-hover-primary-text: #0a0c10;
  --color-state-hover-primary-icon: #0a0c10;
  --color-state-hover-secondary-bg: rgba(158,167,179,0.1);
  --color-state-hover-secondary-border: rgba(158,167,179,0.1);
  --color-state-selected-primary-bg: #409eff;
  --color-state-selected-primary-border: #409eff;
  --color-state-selected-primary-text: #0a0c10;
  --color-state-selected-primary-icon: #0a0c10;
  --color-state-focus-border: #409eff;
  --color-state-focus-shadow: 0 0 0 3px #1e60d5;
  --color-fade-fg-10: rgba(255,255,255,0.1);
  --color-fade-fg-15: rgba(255,255,255,0.15);
  --color-fade-fg-30: rgba(255,255,255,0.3);
  --color-fade-fg-50: rgba(255,255,255,0.5);
  --color-fade-fg-70: rgba(255,255,255,0.7);
  --color-fade-fg-85: rgba(255,255,255,0.85);
  --color-fade-black-10: rgba(1,4,9,0.1);
  --color-fade-black-15: rgba(1,4,9,0.15);
  --color-fade-black-30: rgba(1,4,9,0.3);
  --color-fade-black-50: rgba(1,4,9,0.5);
  --color-fade-black-70: rgba(1,4,9,0.7);
  --color-fade-black-85: rgba(1,4,9,0.85);
  --color-fade-white-10: rgba(255,255,255,0.1);
  --color-fade-white-15: rgba(255,255,255,0.15);
  --color-fade-white-30: rgba(255,255,255,0.3);
  --color-fade-white-50: rgba(255,255,255,0.5);
  --color-fade-white-70: rgba(255,255,255,0.7);
  --color-fade-white-85: rgba(255,255,255,0.85);
  --color-alert-info-text: #f0f3f6;
  --color-alert-info-icon: #71b7ff;
  --color-alert-info-bg: rgba(64,158,255,0.15);
  --color-alert-info-border: #409eff;
  --color-alert-warn-text: #f0f3f6;
  --color-alert-warn-icon: #f0b72f;
  --color-alert-warn-bg: rgba(224,155,19,0.15);
  --color-alert-warn-border: #e09b13;
  --color-alert-error-text: #f0f3f6;
  --color-alert-error-icon: #ff6a69;
  --color-alert-error-bg: rgba(255,106,105,0.15);
  --color-alert-error-border: #ff6a69;
  --color-alert-success-text: #f0f3f6;
  --color-alert-success-icon: #26cd4d;
  --color-alert-success-bg: rgba(9,180,58,0.15);
  --color-alert-success-border: #09b43a;
  --color-autocomplete-shadow: 0 3px 6px #010409;
  --color-autocomplete-row-border: #7a828e;
  --color-blankslate-icon: #f0f3f6;
  --color-counter-text: #f0f3f6;
  --color-counter-bg: rgba(158,167,179,0.4);
  --color-counter-primary-text: #0a0c10;
  --color-counter-primary-bg: #9ea7b3;
  --color-counter-secondary-text: #f0f3f6;
  --color-counter-secondary-bg: rgba(158,167,179,0.1);
  --color-box-blue-border: #409eff;
  --color-box-row-yellow-bg: rgba(224,155,19,0.15);
  --color-box-row-blue-bg: rgba(64,158,255,0.15);
  --color-box-header-blue-bg: rgba(64,158,255,0.15);
  --color-box-header-blue-border: #409eff;
  --color-box-border-info: #409eff;
  --color-box-bg-info: rgba(64,158,255,0.15);
  --color-box-border-warning: #e09b13;
  --color-box-bg-warning: rgba(224,155,19,0.15);
  --color-branch-name-text: #f0f3f6;
  --color-branch-name-icon: #f0f3f6;
  --color-branch-name-bg: rgba(64,158,255,0.15);
  --color-branch-name-link-text: #71b7ff;
  --color-branch-name-link-icon: #71b7ff;
  --color-branch-name-link-bg: rgba(64,158,255,0.15);
  --color-markdown-code-bg: rgba(158,167,179,0.4);
  --color-markdown-frame-border: #7a828e;
  --color-markdown-blockquote-border: #7a828e;
  --color-markdown-table-border: #7a828e;
  --color-markdown-table-tr-border: #7a828e;
  --color-filter-item-bar-bg: rgba(158,167,179,0.1);
  --color-hidden-text-expander-bg: rgba(158,167,179,0.4);
  --color-hidden-text-expander-bg-hover: #409eff;
  --color-drag-and-drop-border: #7a828e;
  --color-upload-enabled-border: #7a828e;
  --color-upload-enabled-border-focused: #409eff;
  --color-previewable-comment-form-border: #7a828e;
  --color-verified-badge-text: #26cd4d;
  --color-verified-badge-bg: #0a0c10;
  --color-verified-badge-border: #7a828e;
  --color-social-count-bg: #0a0c10;
  --color-tooltip-text: #0a0c10;
  --color-tooltip-bg: #ffffff;
  --color-files-explorer-icon: #71b7ff;
  --color-hl-author-bg: rgba(64,158,255,0.15);
  --color-hl-author-border: #409eff;
  --color-logo-subdued: rgba(158,167,179,0.4);
  --color-discussion-border: #09b43a;
  --color-discussion-bg-success: #09b43a;
  --color-actions-workflow-table-sticky-bg: rgba(10,12,16,0.95);
  --color-repo-language-color-border: rgba(255,255,255,0.2);
  --color-code-selection-bg: #409eff;
  --color-highlight-text: #f0f3f6;
  --color-highlight-bg: rgba(224,155,19,0.15);
  --color-blob-line-highlight-bg: rgba(224,155,19,0.15);
  --color-blob-line-highlight-border: #e09b13;
  --color-topic-tag-text: #71b7ff;
  --color-topic-tag-bg: rgba(64,158,255,0.15);
  --color-topic-tag-hover-bg: #409eff;
  --color-topic-tag-active-bg: rgba(64,158,255,0.15);
  --color-topic-tag-border: #409eff;
  --color-footer-invertocat-octicon: #7a828e;
  --color-footer-invertocat-octicon-hover: #f0f3f6;
  --color-dropdown-shadow: 0 8px 24px #010409;
  --color-label-border: #7a828e;
  --color-label-primary-text: #f0f3f6;
  --color-label-primary-border: #9ea7b3;
  --color-label-secondary-text: #f0f3f6;
  --color-label-secondary-border: #7a828e;
  --color-label-info-text: #71b7ff;
  --color-label-info-border: #409eff;
  --color-label-success-text: #26cd4d;
  --color-label-success-border: #09b43a;
  --color-label-warning-text: #f0b72f;
  --color-label-warning-border: #e09b13;
  --color-label-danger-text: #ff6a69;
  --color-label-danger-border: #ff6a69;
  --color-label-orange-text: #e7811d;
  --color-label-orange-border: #e7811d;
  --color-input-bg: #0a0c10;
  --color-input-contrast-bg: #010409;
  --color-input-border: #7a828e;
  --color-input-shadow: 0 0 transparent;
  --color-input-disabled-border: #7a828e;
  --color-input-warning-border: #e09b13;
  --color-input-error-border: #ff6a69;
  --color-input-tooltip-success-text: #f0f3f6;
  --color-input-tooltip-success-bg: rgba(9,180,58,0.15);
  --color-input-tooltip-success-border: #09b43a;
  --color-input-tooltip-warning-text: #f0f3f6;
  --color-input-tooltip-warning-bg: rgba(224,155,19,0.15);
  --color-input-tooltip-warning-border: #e09b13;
  --color-input-tooltip-error-text: #f0f3f6;
  --color-input-tooltip-error-bg: rgba(255,106,105,0.15);
  --color-input-tooltip-error-border: #ff6a69;
  --color-input-disabled-bg: rgba(158,167,179,0);
  --color-toast-text: #f0f3f6;
  --color-toast-bg: #0a0c10;
  --color-toast-border: #7a828e;
  --color-toast-shadow: 0 8px 24px #010409;
  --color-toast-icon: #0a0c10;
  --color-toast-icon-bg: #409eff;
  --color-toast-icon-border: rgba(0,0,0,0);
  --color-toast-success-text: #f0f3f6;
  --color-toast-success-border: #7a828e;
  --color-toast-success-icon: #0a0c10;
  --color-toast-success-icon-bg: #09b43a;
  --color-toast-success-icon-border: rgba(0,0,0,0);
  --color-toast-warning-text: #f0f3f6;
  --color-toast-warning-border: #7a828e;
  --color-toast-warning-icon: #f0f3f6;
  --color-toast-warning-icon-bg: #e09b13;
  --color-toast-warning-icon-border: rgba(0,0,0,0);
  --color-toast-danger-text: #f0f3f6;
  --color-toast-danger-border: #7a828e;
  --color-toast-danger-icon: #0a0c10;
  --color-toast-danger-icon-bg: #ff6a69;
  --color-toast-danger-icon-border: rgba(0,0,0,0);
  --color-toast-loading-text: #f0f3f6;
  --color-toast-loading-border: #7a828e;
  --color-toast-loading-icon: #0a0c10;
  --color-toast-loading-icon-bg: #9ea7b3;
  --color-toast-loading-icon-border: rgba(0,0,0,0);
  --color-timeline-text: #f0f3f6;
  --color-timeline-badge-success-border: rgba(0,0,0,0);
  --color-timeline-target-badge-border: #409eff;
  --color-timeline-target-badge-shadow: #409eff;
  --color-timeline-badge-bg: #272b33;
  --color-diffstat-neutral-bg: rgba(158,167,179,0.4);
  --color-diffstat-neutral-border: #7a828e;
  --color-diffstat-deletion-border: #ffb1af;
  --color-diffstat-addition-border: #4ae168;
  --color-diffstat-deletion-bg: #ff6a69;
  --color-diffstat-addition-bg: #26cd4d;
  --color-diff-addition-text: #f0f3f6;
  --color-diff-addition-bg: rgba(9,180,58,0.15);
  --color-diff-addition-border: #09b43a;
  --color-diff-deletion-text: #f0f3f6;
  --color-diff-deletion-bg: rgba(255,106,105,0.15);
  --color-diff-deletion-border: #ff6a69;
  --color-diff-change-text: #f0b72f;
  --color-diff-change-bg: rgba(224,155,19,0.15);
  --color-diff-change-border: #e09b13;
  --color-merge-box-success-icon-bg: #09b43a;
  --color-merge-box-success-icon-text: #0a0c10;
  --color-merge-box-success-icon-border: rgba(0,0,0,0);
  --color-merge-box-success-indicator-bg: #09b43a;
  --color-merge-box-success-indicator-border: rgba(0,0,0,0);
  --color-merge-box-merged-icon-bg: #b87fff;
  --color-merge-box-merged-icon-text: #0a0c10;
  --color-merge-box-merged-icon-border: rgba(0,0,0,0);
  --color-merge-box-merged-box-border: #b87fff;
  --color-merge-box-neutral-icon-bg: #9ea7b3;
  --color-merge-box-neutral-icon-text: #0a0c10;
  --color-merge-box-neutral-icon-border: rgba(0,0,0,0);
  --color-merge-box-neutral-indicator-bg: #9ea7b3;
  --color-merge-box-neutral-indicator-border: rgba(0,0,0,0);
  --color-merge-box-warning-icon-bg: #e09b13;
  --color-merge-box-warning-icon-text: #0a0c10;
  --color-merge-box-warning-icon-border: rgba(0,0,0,0);
  --color-merge-box-warning-box-border: #e09b13;
  --color-merge-box-warning-merge-highlight: rgba(0,0,0,0);
  --color-merge-box-error-icon-bg: #ff6a69;
  --color-merge-box-error-icon-text: #0a0c10;
  --color-merge-box-error-icon-border: rgba(0,0,0,0);
  --color-merge-box-error-indicator-bg: #ff6a69;
  --color-merge-box-error-indicator-border: rgba(0,0,0,0);
  --color-underlinenav-border: rgba(0,0,0,0);
  --color-underlinenav-border-hover: #bdc4cc;
  --color-underlinenav-border-active: #FF967D;
  --color-underlinenav-text: #f0f3f6;
  --color-underlinenav-text-hover: #f0f3f6;
  --color-underlinenav-text-active: #f0f3f6;
  --color-underlinenav-icon: #f0f3f6;
  --color-underlinenav-icon-hover: #7a828e;
  --color-underlinenav-icon-active: #f0f3f6;
  --color-underlinenav-counter-text: #f0f3f6;
  --color-underlinenav-counter-bg: rgba(158,167,179,0.4);
  --color-select-menu-border-secondary: #7a828e;
  --color-select-menu-shadow: 0 8px 24px #010409;
  --color-select-menu-backdrop-bg: rgba(1,4,9,0.8);
  --color-select-menu-backdrop-border: #7a828e;
  --color-select-menu-tap-highlight: rgba(82,89,100,0.5);
  --color-select-menu-tap-focus-bg: #1e60d5;
  --color-sidenav-border-active: #FF967D;
  --color-sidenav-selected-bg: #272b33;
  --color-menu-heading-text: #f0f3f6;
  --color-menu-border-active: #FF967D;
  --color-menu-bg-active: #272b33;
  --color-project-card-bg: #272b33;
  --color-project-header-bg: #0a0c10;
  --color-project-sidebar-bg: #272b33;
  --color-project-gradient-in: #272b33;
  --color-project-gradient-out: rgba(39,43,51,0);
  --color-pr-state-draft-text: #0a0c10;
  --color-pr-state-draft-bg: #9ea7b3;
  --color-pr-state-draft-border: rgba(0,0,0,0);
  --color-pr-state-open-text: #0a0c10;
  --color-pr-state-open-bg: #09b43a;
  --color-pr-state-open-border: rgba(0,0,0,0);
  --color-pr-state-merged-text: #0a0c10;
  --color-pr-state-merged-bg: #b87fff;
  --color-pr-state-merged-border: rgba(0,0,0,0);
  --color-pr-state-closed-text: #0a0c10;
  --color-pr-state-closed-bg: #ff6a69;
  --color-pr-state-closed-border: rgba(0,0,0,0);
  --color-diff-blob-num-text: #7a828e;
  --color-diff-blob-num-hover-text: #f0f3f6;
  --color-diff-blob-addition-num-hover-text: #f0f3f6;
  --color-diff-blob-addition-num-text: #f0f3f6;
  --color-diff-blob-addition-fg: #0a0c10;
  --color-diff-blob-addition-num-bg: rgba(38,205,77,0.3);
  --color-diff-blob-addition-line-bg: rgba(9,180,58,0.15);
  --color-diff-blob-addition-word-bg: #09b43a;
  --color-diff-blob-deletion-num-hover-text: #f0f3f6;
  --color-diff-blob-deletion-num-text: #f0f3f6;
  --color-diff-blob-deletion-fg: #0a0c10;
  --color-diff-blob-deletion-num-bg: rgba(255,106,105,0.3);
  --color-diff-blob-deletion-line-bg: rgba(255,106,105,0.15);
  --color-diff-blob-deletion-word-bg: #ff6a69;
  --color-diff-blob-hunk-text: #f0f3f6;
  --color-diff-blob-hunk-num-bg: rgba(64,158,255,0.4);
  --color-diff-blob-hunk-line-bg: rgba(64,158,255,0.15);
  --color-diff-blob-empty-block-bg: rgba(158,167,179,0.1);
  --color-diff-blob-selected-line-highlight-bg: rgba(224,155,19,0.15);
  --color-diff-blob-selected-line-highlight-border: #e09b13;
  --color-diff-blob-expander-hover-icon: #0a0c10;
  --color-diff-blob-expander-hover-bg: #409eff;
  --color-diff-blob-expander-icon: #0a0c10;
  --color-diff-blob-comment-button-icon: #0a0c10;
  --color-diff-blob-comment-button-bg: #409eff;
  --color-diff-blob-comment-button-gradient-bg: rgba(0,0,0,0);
  --color-diff-blob-selected-line-highlight-mix-blend-mode: screen;
  --color-global-nav-logo: #ffffff;
  --color-global-nav-bg: #272b33;
  --color-global-nav-text: #f0f3f6;
  --color-global-nav-icon: #f0f3f6;
  --color-global-nav-input-bg: #0a0c10;
  --color-global-nav-input-border: #272b33;
  --color-global-nav-input-icon: #272b33;
  --color-global-nav-input-placeholder: #7a828e;
  --color-intro-shelf-gradient-left: rgba(64,158,255,0.15);
  --color-intro-shelf-gradient-right: rgba(9,180,58,0.15);
  --color-intro-shelf-gradient-in: #0a0c10;
  --color-intro-shelf-gradient-out: rgba(255,255,255,0);
  --color-canvas-default-transparent: rgba(10,12,16,0);
  --color-marketing-icon-primary: #91cbff;
  --color-marketing-icon-secondary: #409eff;
  --color-search-keyword-hl: rgba(240,183,47,0.4);
  --color-prettylights-syntax-comment: #bdc4cc;
  --color-prettylights-syntax-constant: #91cbff;
  --color-prettylights-syntax-entity: #dbb7ff;
  --color-prettylights-syntax-storage-modifier-import: #f0f3f6;
  --color-prettylights-syntax-entity-tag: #72f088;
  --color-prettylights-syntax-keyword: #ff9492;
  --color-prettylights-syntax-string: #addcff;
  --color-prettylights-syntax-variable: #ffb757;
  --color-prettylights-syntax-brackethighlighter-unmatched: #ff6a69;
  --color-prettylights-syntax-invalid-illegal-text: #ffffff;
  --color-prettylights-syntax-invalid-illegal-bg: #e82a2f;
  --color-prettylights-syntax-carriage-return-text: #ffffff;
  --color-prettylights-syntax-carriage-return-bg: #ff4445;
  --color-prettylights-syntax-string-regexp: #72f088;
  --color-prettylights-syntax-markup-list: #fbd669;
  --color-prettylights-syntax-markup-heading: #409eff;
  --color-prettylights-syntax-markup-italic: #f0f3f6;
  --color-prettylights-syntax-markup-bold: #f0f3f6;
  --color-prettylights-syntax-markup-deleted-text: #ffdedb;
  --color-prettylights-syntax-markup-deleted-bg: #cc1421;
  --color-prettylights-syntax-markup-inserted-text: #acf7b6;
  --color-prettylights-syntax-markup-inserted-bg: #007728;
  --color-prettylights-syntax-markup-changed-text: #ffe1b4;
  --color-prettylights-syntax-markup-changed-bg: #a74c00;
  --color-prettylights-syntax-markup-ignored-text: #f0f3f6;
  --color-prettylights-syntax-markup-ignored-bg: #318bf8;
  --color-prettylights-syntax-meta-diff-range: #dbb7ff;
  --color-prettylights-syntax-brackethighlighter-angle: #bdc4cc;
  --color-prettylights-syntax-sublimelinter-gutter-mark: #7a828e;
  --color-prettylights-syntax-constant-other-reference-link: #addcff;
  --color-codemirror-text: #f0f3f6;
  --color-codemirror-bg: #0a0c10;
  --color-codemirror-gutters-bg: #0a0c10;
  --color-codemirror-guttermarker-text: #0a0c10;
  --color-codemirror-guttermarker-subtle-text: #7a828e;
  --color-codemirror-linenumber-text: #f0f3f6;
  --color-codemirror-cursor: #f0f3f6;
  --color-codemirror-selection-bg: rgba(64,158,255,0.4);
  --color-codemirror-activeline-bg: rgba(158,167,179,0.1);
  --color-codemirror-matchingbracket-text: #f0f3f6;
  --color-codemirror-lines-bg: #0a0c10;
  --color-codemirror-syntax-comment: #bdc4cc;
  --color-codemirror-syntax-constant: #91cbff;
  --color-codemirror-syntax-entity: #dbb7ff;
  --color-codemirror-syntax-keyword: #ff9492;
  --color-codemirror-syntax-storage: #ff9492;
  --color-codemirror-syntax-string: #addcff;
  --color-codemirror-syntax-support: #91cbff;
  --color-codemirror-syntax-variable: #ffb757;
  --color-checks-bg: #010409;
  --color-checks-run-border-width: 1px;
  --color-checks-container-border-width: 1px;
  --color-checks-text-primary: #f0f3f6;
  --color-checks-text-secondary: #f0f3f6;
  --color-checks-text-link: #71b7ff;
  --color-checks-btn-icon: #f0f3f6;
  --color-checks-btn-hover-icon: #f0f3f6;
  --color-checks-btn-hover-bg: rgba(158,167,179,0.1);
  --color-checks-input-text: #f0f3f6;
  --color-checks-input-placeholder-text: #7a828e;
  --color-checks-input-focus-text: #f0f3f6;
  --color-checks-input-bg: #272b33;
  --color-checks-input-shadow: 0 0 0 1px (obj) => get_1.default(obj, path);
  --color-checks-donut-error: #ff6a69;
  --color-checks-donut-pending: #f0b72f;
  --color-checks-donut-success: #09b43a;
  --color-checks-donut-neutral: #bdc4cc;
  --color-checks-dropdown-text: #f0f3f6;
  --color-checks-dropdown-bg: #272b33;
  --color-checks-dropdown-border: #7a828e;
  --color-checks-dropdown-shadow: rgba(1,4,9,0.3);
  --color-checks-dropdown-hover-text: #f0f3f6;
  --color-checks-dropdown-hover-bg: rgba(158,167,179,0.1);
  --color-checks-dropdown-btn-hover-text: #f0f3f6;
  --color-checks-dropdown-btn-hover-bg: rgba(158,167,179,0.1);
  --color-checks-scrollbar-thumb-bg: rgba(158,167,179,0.4);
  --color-checks-header-label-text: #f0f3f6;
  --color-checks-header-label-open-text: #f0f3f6;
  --color-checks-header-border: #7a828e;
  --color-checks-header-icon: #f0f3f6;
  --color-checks-line-text: #f0f3f6;
  --color-checks-line-num-text: #7a828e;
  --color-checks-line-timestamp-text: #7a828e;
  --color-checks-line-hover-bg: rgba(158,167,179,0.1);
  --color-checks-line-selected-bg: rgba(64,158,255,0.15);
  --color-checks-line-selected-num-text: #71b7ff;
  --color-checks-line-dt-fm-text: #0a0c10;
  --color-checks-line-dt-fm-bg: #e09b13;
  --color-checks-gate-bg: rgba(224,155,19,0.15);
  --color-checks-gate-text: #f0f3f6;
  --color-checks-gate-waiting-text: #f0b72f;
  --color-checks-step-header-open-bg: #272b33;
  --color-checks-step-error-text: #ff6a69;
  --color-checks-step-warning-text: #f0b72f;
  --color-checks-logline-text: #f0f3f6;
  --color-checks-logline-num-text: #7a828e;
  --color-checks-logline-debug-text: #b780ff;
  --color-checks-logline-error-text: #f0f3f6;
  --color-checks-logline-error-num-text: #7a828e;
  --color-checks-logline-error-bg: rgba(255,106,105,0.15);
  --color-checks-logline-warning-text: #f0f3f6;
  --color-checks-logline-warning-num-text: #f0b72f;
  --color-checks-logline-warning-bg: rgba(224,155,19,0.15);
  --color-checks-logline-command-text: #71b7ff;
  --color-checks-logline-section-text: #26cd4d;
  --color-checks-ansi-black: #0a0c10;
  --color-checks-ansi-black-bright: #272b33;
  --color-checks-ansi-white: #d9dee3;
  --color-checks-ansi-white-bright: #d9dee3;
  --color-checks-ansi-gray: #9ea7b3;
  --color-checks-ansi-red: #ff9492;
  --color-checks-ansi-red-bright: #ffb1af;
  --color-checks-ansi-green: #26cd4d;
  --color-checks-ansi-green-bright: #4ae168;
  --color-checks-ansi-yellow: #f0b72f;
  --color-checks-ansi-yellow-bright: #f7c843;
  --color-checks-ansi-blue: #71b7ff;
  --color-checks-ansi-blue-bright: #91cbff;
  --color-checks-ansi-magenta: #cb9eff;
  --color-checks-ansi-magenta-bright: #dbb7ff;
  --color-checks-ansi-cyan: #76e3ea;
  --color-checks-ansi-cyan-bright: #b3f0ff;
  --color-mktg-success: rgba(9,180,58,1);
  --color-mktg-info: rgba(64,158,255,1);
  --color-mktg-bg-shade-gradient-top: rgba(1,4,9,0.065);
  --color-mktg-bg-shade-gradient-bottom: rgba(1,4,9,0);
  --color-mktg-btn-bg-top: hsla(228,82%,66%,1);
  --color-mktg-btn-bg-bottom: #4969ed;
  --color-mktg-btn-bg-overlay-top: hsla(228,74%,59%,1);
  --color-mktg-btn-bg-overlay-bottom: #3355e0;
  --color-mktg-btn-text: #ffffff;
  --color-mktg-btn-primary-bg-top: hsla(137,56%,46%,1);
  --color-mktg-btn-primary-bg-bottom: #2ea44f;
  --color-mktg-btn-primary-bg-overlay-top: hsla(134,60%,38%,1);
  --color-mktg-btn-primary-bg-overlay-bottom: #22863a;
  --color-mktg-btn-primary-text: #ffffff;
  --color-mktg-btn-enterprise-bg-top: hsla(249,100%,72%,1);
  --color-mktg-btn-enterprise-bg-bottom: #6f57ff;
  --color-mktg-btn-enterprise-bg-overlay-top: hsla(248,65%,63%,1);
  --color-mktg-btn-enterprise-bg-overlay-bottom: #614eda;
  --color-mktg-btn-enterprise-text: #ffffff;
  --color-mktg-btn-outline-text: #ffffff;
  --color-mktg-btn-outline-border: rgba(255,255,255,0.3);
  --color-mktg-btn-outline-hover-text: #ffffff;
  --color-mktg-btn-outline-hover-border: rgba(255,255,255,0.5);
  --color-mktg-btn-outline-focus-border: #ffffff;
  --color-mktg-btn-outline-focus-border-inset: rgba(255,255,255,0.5);
  --color-mktg-btn-dark-text: #ffffff;
  --color-mktg-btn-dark-border: rgba(255,255,255,0.3);
  --color-mktg-btn-dark-hover-text: #ffffff;
  --color-mktg-btn-dark-hover-border: rgba(255,255,255,0.5);
  --color-mktg-btn-dark-focus-border: #ffffff;
  --color-mktg-btn-dark-focus-border-inset: rgba(255,255,255,0.5);
  --color-avatar-bg: rgba(255,255,255,0.1);
  --color-avatar-border: rgba(255,255,255,0.9);
  --color-avatar-stack-fade: #525964;
  --color-avatar-stack-fade-more: #272b33;
  --color-avatar-child-shadow: -2px -2px 0 #0a0c10;
  --color-overlay-shadow: 0 0 0 1px #525964, 0 16px 32px rgba(1,4,9,0.85);
  --color-header-text: rgba(255,255,255,0.7);
  --color-header-bg: #272b33;
  --color-header-logo: #ffffff;
  --color-header-search-bg: #0a0c10;
  --color-header-search-border: #525964;
  --color-ansi-black: #7a828e;
  --color-ansi-black-bright: #9ea7b3;
  --color-ansi-white: #d9dee3;
  --color-ansi-white-bright: #ffffff;
  --color-ansi-gray: #9ea7b3;
  --color-ansi-red: #ff9492;
  --color-ansi-red-bright: #ffb1af;
  --color-ansi-green: #26cd4d;
  --color-ansi-green-bright: #4ae168;
  --color-ansi-yellow: #f0b72f;
  --color-ansi-yellow-bright: #f7c843;
  --color-ansi-blue: #71b7ff;
  --color-ansi-blue-bright: #91cbff;
  --color-ansi-magenta: #cb9eff;
  --color-ansi-magenta-bright: #dbb7ff;
  --color-ansi-cyan: #39c5cf;
  --color-ansi-cyan-bright: #56d4dd;
  --color-btn-text: #f0f3f6;
  --color-btn-bg: #272b33;
  --color-btn-border: #7a828e;
  --color-btn-shadow: 0 0 transparent;
  --color-btn-inset-shadow: 0 0 transparent;
  --color-btn-hover-bg: #525964;
  --color-btn-hover-border: #bdc4cc;
  --color-btn-active-bg: hsla(217,10%,33%,1);
  --color-btn-active-border: #9ea7b3;
  --color-btn-selected-bg: rgba(82,89,100,0.9);
  --color-btn-focus-bg: #272b33;
  --color-btn-focus-border: #bdc4cc;
  --color-btn-focus-shadow: 0 0 0 3px rgba(189,196,204,0.3);
  --color-btn-shadow-active: inset 0 0.15em 0.3em rgba(1,4,9,0.15);
  --color-btn-shadow-input-focus: 0 0 0 0.2em rgba(64,158,255,0.3);
  --color-btn-counter-bg: #525964;
  --color-btn-primary-text: #0a0c10;
  --color-btn-primary-bg: #09b43a;
  --color-btn-primary-border: #4ae168;
  --color-btn-primary-shadow: 0 0 transparent;
  --color-btn-primary-inset-shadow: 0 0 transparent;
  --color-btn-primary-hover-bg: #26cd4d;
  --color-btn-primary-hover-border: #4ae168;
  --color-btn-primary-selected-bg: #09b43a;
  --color-btn-primary-selected-shadow: 0 0 transparent;
  --color-btn-primary-disabled-text: rgba(10,12,16,0.5);
  --color-btn-primary-disabled-bg: rgba(9,180,58,0.6);
  --color-btn-primary-disabled-border: rgba(74,225,104,0.4);
  --color-btn-primary-focus-bg: #09b43a;
  --color-btn-primary-focus-border: #7a828e;
  --color-btn-primary-focus-shadow: 0 0 0 3px rgba(46,164,79,0.4);
  --color-btn-primary-icon: #0a0c10;
  --color-btn-primary-counter-bg: rgba(1,4,9,0.15);
  --color-btn-outline-text: #71b7ff;
  --color-btn-outline-hover-text: #71b7ff;
  --color-btn-outline-hover-bg: #525964;
  --color-btn-outline-hover-border: #7a828e;
  --color-btn-outline-hover-shadow: 0 1px 0 rgba(1,4,9,0.1);
  --color-btn-outline-hover-inset-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
  --color-btn-outline-hover-counter-bg: rgba(255,255,255,0.2);
  --color-btn-outline-selected-text: #ffffff;
  --color-btn-outline-selected-bg: #2672f3;
  --color-btn-outline-selected-border: #7a828e;
  --color-btn-outline-selected-shadow: 0 0 transparent;
  --color-btn-outline-disabled-text: rgba(113,183,255,0.5);
  --color-btn-outline-disabled-bg: #0a0c10;
  --color-btn-outline-disabled-counter-bg: rgba(64,158,255,0.05);
  --color-btn-outline-focus-border: #7a828e;
  --color-btn-outline-focus-shadow: 0 0 0 3px rgba(49,139,248,0.4);
  --color-btn-outline-counter-bg: rgba(64,158,255,0.1);
  --color-btn-danger-text: #ff6a69;
  --color-btn-danger-hover-text: #0a0c10;
  --color-btn-danger-hover-bg: #ff6a69;
  --color-btn-danger-hover-border: #ff6a69;
  --color-btn-danger-hover-shadow: 0 0 transparent;
  --color-btn-danger-hover-inset-shadow: 0 0 transparent;
  --color-btn-danger-hover-icon: #0a0c10;
  --color-btn-danger-hover-counter-bg: rgba(1,4,9,0.15);
  --color-btn-danger-selected-text: #ffffff;
  --color-btn-danger-selected-bg: #ff4445;
  --color-btn-danger-selected-border: #ff9492;
  --color-btn-danger-selected-shadow: 0 0 transparent;
  --color-btn-danger-disabled-text: rgba(255,106,105,0.5);
  --color-btn-danger-disabled-bg: #0a0c10;
  --color-btn-danger-disabled-counter-bg: rgba(255,106,105,0.05);
  --color-btn-danger-focus-border: #ff6a69;
  --color-btn-danger-focus-shadow: 0 0 0 3px rgba(255,106,105,0.4);
  --color-btn-danger-counter-bg: rgba(1,4,9,0.15);
  --color-btn-danger-icon: #ff6a69;
  --color-fg-default: #f0f3f6;
  --color-fg-muted: #f0f3f6;
  --color-fg-subtle: #7a828e;
  --color-fg-on-emphasis: #0a0c10;
  --color-canvas-default: #0a0c10;
  --color-canvas-overlay: #272b33;
  --color-canvas-inset: #010409;
  --color-canvas-subtle: #272b33;
  --color-neutral-emphasis-plus: #ffffff;
  --color-neutral-emphasis: #9ea7b3;
  --color-neutral-muted: rgba(158,167,179,0.4);
  --color-neutral-subtle: rgba(158,167,179,0.1);
  --color-accent-fg: #71b7ff;
  --color-accent-emphasis: #409eff;
  --color-accent-muted: #409eff;
  --color-accent-subtle: rgba(64,158,255,0.15);
  --color-success-fg: #26cd4d;
  --color-success-emphasis: #09b43a;
  --color-success-muted: #09b43a;
  --color-success-subtle: rgba(9,180,58,0.15);
  --color-attention-fg: #f0b72f;
  --color-attention-emphasis: #e09b13;
  --color-attention-muted: #e09b13;
  --color-attention-subtle: rgba(224,155,19,0.15);
  --color-severe-fg: #e7811d;
  --color-severe-emphasis: #e7811d;
  --color-severe-muted: #e7811d;
  --color-severe-subtle: rgba(231,129,29,0.15);
  --color-danger-fg: #ff6a69;
  --color-danger-emphasis: #ff6a69;
  --color-danger-muted: #ff6a69;
  --color-danger-subtle: rgba(255,106,105,0.15);
  --color-done-fg: #b780ff;
  --color-done-emphasis: #b87fff;
  --color-done-muted: #b780ff;
  --color-done-subtle: rgba(183,128,255,0.15);
  --color-sponsors-fg: #ef6eb1;
  --color-sponsors-emphasis: #ef6eb1;
  --color-sponsors-muted: #ef6eb1;
  --color-sponsors-subtle: rgba(239,110,177,0.15);
  --color-primer-canvas-backdrop: rgba(1,4,9,0.8);
  --color-primer-canvas-sticky: rgba(10,12,16,0.95);
  --color-primer-border-active: #FF967D;
  --color-primer-border-contrast: rgba(255,255,255,0.2);
  --color-primer-shadow-highlight: 0 0 transparent;
  --color-primer-shadow-inset: 0 0 transparent;
  --color-primer-shadow-focus: 0 0 0 3px #1e60d5;
  --color-scale-black: #010409;
  --color-scale-white: #ffffff;
  --color-scale-gray-0: #ffffff;
  --color-scale-gray-1: #f0f3f6;
  --color-scale-gray-2: #d9dee3;
  --color-scale-gray-3: #bdc4cc;
  --color-scale-gray-4: #9ea7b3;
  --color-scale-gray-5: #7a828e;
  --color-scale-gray-6: #525964;
  --color-scale-gray-7: #272b33;
  --color-scale-gray-8: #272b33;
  --color-scale-gray-9: #0a0c10;
  --color-scale-blue-0: #caeaff;
  --color-scale-blue-1: #addcff;
  --color-scale-blue-2: #91cbff;
  --color-scale-blue-3: #71b7ff;
  --color-scale-blue-4: #409eff;
  --color-scale-blue-5: #409eff;
  --color-scale-blue-6: #318bf8;
  --color-scale-blue-7: #2672f3;
  --color-scale-blue-8: #1e60d5;
  --color-scale-blue-9: #194fb1;
  --color-scale-green-0: #acf7b6;
  --color-scale-green-1: #72f088;
  --color-scale-green-2: #4ae168;
  --color-scale-green-3: #26cd4d;
  --color-scale-green-4: #09b43a;
  --color-scale-green-5: #09b43a;
  --color-scale-green-6: #02a232;
  --color-scale-green-7: #008c2c;
  --color-scale-green-8: #007728;
  --color-scale-green-9: #006222;
  --color-scale-yellow-0: #fbe59e;
  --color-scale-yellow-1: #fbd669;
  --color-scale-yellow-2: #f7c843;
  --color-scale-yellow-3: #f0b72f;
  --color-scale-yellow-4: #e09b13;
  --color-scale-yellow-5: #e09b13;
  --color-scale-yellow-6: #c88508;
  --color-scale-yellow-7: #ae7104;
  --color-scale-yellow-8: #945d02;
  --color-scale-yellow-9: #7b4900;
  --color-scale-orange-0: #ffe1b4;
  --color-scale-orange-1: #ffcf86;
  --color-scale-orange-2: #ffb757;
  --color-scale-orange-3: #fe9a2d;
  --color-scale-orange-4: #e7811d;
  --color-scale-orange-5: #e7811d;
  --color-scale-orange-6: #d57014;
  --color-scale-orange-7: #bf5e0a;
  --color-scale-orange-8: #a74c00;
  --color-scale-orange-9: #8f3c00;
  --color-scale-red-0: #ffdedb;
  --color-scale-red-1: #ffc9c7;
  --color-scale-red-2: #ffb1af;
  --color-scale-red-3: #ff9492;
  --color-scale-red-4: #ff6a69;
  --color-scale-red-5: #ff6a69;
  --color-scale-red-6: #ff4445;
  --color-scale-red-7: #e82a2f;
  --color-scale-red-8: #cc1421;
  --color-scale-red-9: #ad0116;
  --color-scale-purple-0: #f0dfff;
  --color-scale-purple-1: #e6ccff;
  --color-scale-purple-2: #dbb7ff;
  --color-scale-purple-3: #cb9eff;
  --color-scale-purple-4: #b780ff;
  --color-scale-purple-5: #b87fff;
  --color-scale-purple-6: #a66bff;
  --color-scale-purple-7: #954ffd;
  --color-scale-purple-8: #8031f7;
  --color-scale-purple-9: #6921d7;
  --color-scale-pink-0: #ffdceb;
  --color-scale-pink-1: #ffc7e1;
  --color-scale-pink-2: #ffadd4;
  --color-scale-pink-3: #ff8dc7;
  --color-scale-pink-4: #ef6eb1;
  --color-scale-pink-5: #ef6eb1;
  --color-scale-pink-6: #e456a3;
  --color-scale-pink-7: #d23d91;
  --color-scale-pink-8: #b72c7d;
  --color-scale-pink-9: #9c1d6a;
  --color-scale-coral-0: #FFDED4;
  --color-scale-coral-1: #FFCBB9;
  --color-scale-coral-2: #FFB39B;
  --color-scale-coral-3: #FF967D;
  --color-scale-coral-4: #FC704F;
  --color-scale-coral-5: #FC704F;
  --color-scale-coral-6: #F75133;
  --color-scale-coral-7: #E03B21;
  --color-scale-coral-8: #C62612;
  --color-scale-coral-9: #A91500;
}

@media (prefers-color-scheme: light) {
  [data-color-mode=auto][data-light-theme=dark_high_contrast] {
    --color-auto-black: #ffffff;
    --color-auto-white: #010409;
    --color-auto-gray-0: #0a0c10;
    --color-auto-gray-1: #272b33;
    --color-auto-gray-2: #272b33;
    --color-auto-gray-3: #525964;
    --color-auto-gray-4: #7a828e;
    --color-auto-gray-5: #9ea7b3;
    --color-auto-gray-6: #bdc4cc;
    --color-auto-gray-7: #d9dee3;
    --color-auto-gray-8: #f0f3f6;
    --color-auto-gray-9: #ffffff;
    --color-auto-blue-0: #194fb1;
    --color-auto-blue-1: #1e60d5;
    --color-auto-blue-2: #2672f3;
    --color-auto-blue-3: #318bf8;
    --color-auto-blue-4: #409eff;
    --color-auto-blue-5: #409eff;
    --color-auto-blue-6: #71b7ff;
    --color-auto-blue-7: #91cbff;
    --color-auto-blue-8: #addcff;
    --color-auto-blue-9: #caeaff;
    --color-auto-green-0: #006222;
    --color-auto-green-1: #007728;
    --color-auto-green-2: #008c2c;
    --color-auto-green-3: #02a232;
    --color-auto-green-4: #09b43a;
    --color-auto-green-5: #09b43a;
    --color-auto-green-6: #26cd4d;
    --color-auto-green-7: #4ae168;
    --color-auto-green-8: #72f088;
    --color-auto-green-9: #acf7b6;
    --color-auto-yellow-0: #7b4900;
    --color-auto-yellow-1: #945d02;
    --color-auto-yellow-2: #ae7104;
    --color-auto-yellow-3: #c88508;
    --color-auto-yellow-4: #e09b13;
    --color-auto-yellow-5: #e09b13;
    --color-auto-yellow-6: #f0b72f;
    --color-auto-yellow-7: #f7c843;
    --color-auto-yellow-8: #fbd669;
    --color-auto-yellow-9: #fbe59e;
    --color-auto-orange-0: #8f3c00;
    --color-auto-orange-1: #a74c00;
    --color-auto-orange-2: #bf5e0a;
    --color-auto-orange-3: #d57014;
    --color-auto-orange-4: #e7811d;
    --color-auto-orange-5: #e7811d;
    --color-auto-orange-6: #fe9a2d;
    --color-auto-orange-7: #ffb757;
    --color-auto-orange-8: #ffcf86;
    --color-auto-orange-9: #ffe1b4;
    --color-auto-red-0: #ad0116;
    --color-auto-red-1: #cc1421;
    --color-auto-red-2: #e82a2f;
    --color-auto-red-3: #ff4445;
    --color-auto-red-4: #ff6a69;
    --color-auto-red-5: #ff6a69;
    --color-auto-red-6: #ff9492;
    --color-auto-red-7: #ffb1af;
    --color-auto-red-8: #ffc9c7;
    --color-auto-red-9: #ffdedb;
    --color-auto-purple-0: #6921d7;
    --color-auto-purple-1: #8031f7;
    --color-auto-purple-2: #954ffd;
    --color-auto-purple-3: #a66bff;
    --color-auto-purple-4: #b87fff;
    --color-auto-purple-5: #b780ff;
    --color-auto-purple-6: #cb9eff;
    --color-auto-purple-7: #dbb7ff;
    --color-auto-purple-8: #e6ccff;
    --color-auto-purple-9: #f0dfff;
    --color-auto-pink-0: #9c1d6a;
    --color-auto-pink-1: #b72c7d;
    --color-auto-pink-2: #d23d91;
    --color-auto-pink-3: #e456a3;
    --color-auto-pink-4: #ef6eb1;
    --color-auto-pink-5: #ef6eb1;
    --color-auto-pink-6: #ff8dc7;
    --color-auto-pink-7: #ffadd4;
    --color-auto-pink-8: #ffc7e1;
    --color-auto-pink-9: #ffdceb;
    --color-text-primary: #f0f3f6;
    --color-text-secondary: #f0f3f6;
    --color-text-tertiary: #f0f3f6;
    --color-text-placeholder: #7a828e;
    --color-text-disabled: #f0f3f6;
    --color-text-inverse: #0a0c10;
    --color-text-link: #71b7ff;
    --color-text-danger: #ff6a69;
    --color-text-success: #26cd4d;
    --color-text-warning: #f0b72f;
    --color-text-white: #ffffff;
    --color-icon-primary: #f0f3f6;
    --color-icon-secondary: #f0f3f6;
    --color-icon-tertiary: #f0f3f6;
    --color-icon-info: #71b7ff;
    --color-icon-danger: #ff6a69;
    --color-icon-success: #26cd4d;
    --color-icon-warning: #f0b72f;
    --color-border-primary: #7a828e;
    --color-border-secondary: #7a828e;
    --color-border-tertiary: #7a828e;
    --color-border-overlay: #7a828e;
    --color-border-inverse: #0a0c10;
    --color-border-info: #409eff;
    --color-border-danger: #ff6a69;
    --color-border-success: #09b43a;
    --color-border-warning: #e09b13;
    --color-border-default: #7a828e;
    --color-border-muted: #7a828e;
    --color-border-subtle: #7a828e;
    --color-bg-canvas: #0a0c10;
    --color-bg-canvas-mobile: rgba(0,0,0,0);
    --color-bg-canvas-inverse: #9ea7b3;
    --color-bg-canvas-inset: #010409;
    --color-bg-primary: #0a0c10;
    --color-bg-secondary: #272b33;
    --color-bg-tertiary: #272b33;
    --color-bg-overlay: #272b33;
    --color-bg-backdrop: rgba(1,4,9,0.8);
    --color-bg-info: rgba(64,158,255,0.15);
    --color-bg-info-inverse: #409eff;
    --color-bg-danger: rgba(255,106,105,0.15);
    --color-bg-danger-inverse: #ff6a69;
    --color-bg-success: rgba(9,180,58,0.15);
    --color-bg-success-inverse: #09b43a;
    --color-bg-warning: rgba(224,155,19,0.15);
    --color-bg-warning-inverse: #e09b13;
    --color-shadow-highlight: 0 0 transparent;
    --color-shadow-inset: 0 0 transparent;
    --color-shadow-small: 0 0 transparent;
    --color-shadow-medium: 0 3px 6px #010409;
    --color-shadow-large: 0 8px 24px #010409;
    --color-shadow-extra-large: 0 12px 48px #010409;
    --color-state-hover-primary-bg: #409eff;
    --color-state-hover-primary-border: #409eff;
    --color-state-hover-primary-text: #0a0c10;
    --color-state-hover-primary-icon: #0a0c10;
    --color-state-hover-secondary-bg: rgba(158,167,179,0.1);
    --color-state-hover-secondary-border: rgba(158,167,179,0.1);
    --color-state-selected-primary-bg: #409eff;
    --color-state-selected-primary-border: #409eff;
    --color-state-selected-primary-text: #0a0c10;
    --color-state-selected-primary-icon: #0a0c10;
    --color-state-focus-border: #409eff;
    --color-state-focus-shadow: 0 0 0 3px #1e60d5;
    --color-fade-fg-10: rgba(255,255,255,0.1);
    --color-fade-fg-15: rgba(255,255,255,0.15);
    --color-fade-fg-30: rgba(255,255,255,0.3);
    --color-fade-fg-50: rgba(255,255,255,0.5);
    --color-fade-fg-70: rgba(255,255,255,0.7);
    --color-fade-fg-85: rgba(255,255,255,0.85);
    --color-fade-black-10: rgba(1,4,9,0.1);
    --color-fade-black-15: rgba(1,4,9,0.15);
    --color-fade-black-30: rgba(1,4,9,0.3);
    --color-fade-black-50: rgba(1,4,9,0.5);
    --color-fade-black-70: rgba(1,4,9,0.7);
    --color-fade-black-85: rgba(1,4,9,0.85);
    --color-fade-white-10: rgba(255,255,255,0.1);
    --color-fade-white-15: rgba(255,255,255,0.15);
    --color-fade-white-30: rgba(255,255,255,0.3);
    --color-fade-white-50: rgba(255,255,255,0.5);
    --color-fade-white-70: rgba(255,255,255,0.7);
    --color-fade-white-85: rgba(255,255,255,0.85);
    --color-alert-info-text: #f0f3f6;
    --color-alert-info-icon: #71b7ff;
    --color-alert-info-bg: rgba(64,158,255,0.15);
    --color-alert-info-border: #409eff;
    --color-alert-warn-text: #f0f3f6;
    --color-alert-warn-icon: #f0b72f;
    --color-alert-warn-bg: rgba(224,155,19,0.15);
    --color-alert-warn-border: #e09b13;
    --color-alert-error-text: #f0f3f6;
    --color-alert-error-icon: #ff6a69;
    --color-alert-error-bg: rgba(255,106,105,0.15);
    --color-alert-error-border: #ff6a69;
    --color-alert-success-text: #f0f3f6;
    --color-alert-success-icon: #26cd4d;
    --color-alert-success-bg: rgba(9,180,58,0.15);
    --color-alert-success-border: #09b43a;
    --color-autocomplete-shadow: 0 3px 6px #010409;
    --color-autocomplete-row-border: #7a828e;
    --color-blankslate-icon: #f0f3f6;
    --color-counter-text: #f0f3f6;
    --color-counter-bg: rgba(158,167,179,0.4);
    --color-counter-primary-text: #0a0c10;
    --color-counter-primary-bg: #9ea7b3;
    --color-counter-secondary-text: #f0f3f6;
    --color-counter-secondary-bg: rgba(158,167,179,0.1);
    --color-box-blue-border: #409eff;
    --color-box-row-yellow-bg: rgba(224,155,19,0.15);
    --color-box-row-blue-bg: rgba(64,158,255,0.15);
    --color-box-header-blue-bg: rgba(64,158,255,0.15);
    --color-box-header-blue-border: #409eff;
    --color-box-border-info: #409eff;
    --color-box-bg-info: rgba(64,158,255,0.15);
    --color-box-border-warning: #e09b13;
    --color-box-bg-warning: rgba(224,155,19,0.15);
    --color-branch-name-text: #f0f3f6;
    --color-branch-name-icon: #f0f3f6;
    --color-branch-name-bg: rgba(64,158,255,0.15);
    --color-branch-name-link-text: #71b7ff;
    --color-branch-name-link-icon: #71b7ff;
    --color-branch-name-link-bg: rgba(64,158,255,0.15);
    --color-markdown-code-bg: rgba(158,167,179,0.4);
    --color-markdown-frame-border: #7a828e;
    --color-markdown-blockquote-border: #7a828e;
    --color-markdown-table-border: #7a828e;
    --color-markdown-table-tr-border: #7a828e;
    --color-filter-item-bar-bg: rgba(158,167,179,0.1);
    --color-hidden-text-expander-bg: rgba(158,167,179,0.4);
    --color-hidden-text-expander-bg-hover: #409eff;
    --color-drag-and-drop-border: #7a828e;
    --color-upload-enabled-border: #7a828e;
    --color-upload-enabled-border-focused: #409eff;
    --color-previewable-comment-form-border: #7a828e;
    --color-verified-badge-text: #26cd4d;
    --color-verified-badge-bg: #0a0c10;
    --color-verified-badge-border: #7a828e;
    --color-social-count-bg: #0a0c10;
    --color-tooltip-text: #0a0c10;
    --color-tooltip-bg: #ffffff;
    --color-files-explorer-icon: #71b7ff;
    --color-hl-author-bg: rgba(64,158,255,0.15);
    --color-hl-author-border: #409eff;
    --color-logo-subdued: rgba(158,167,179,0.4);
    --color-discussion-border: #09b43a;
    --color-discussion-bg-success: #09b43a;
    --color-actions-workflow-table-sticky-bg: rgba(10,12,16,0.95);
    --color-repo-language-color-border: rgba(255,255,255,0.2);
    --color-code-selection-bg: #409eff;
    --color-highlight-text: #f0f3f6;
    --color-highlight-bg: rgba(224,155,19,0.15);
    --color-blob-line-highlight-bg: rgba(224,155,19,0.15);
    --color-blob-line-highlight-border: #e09b13;
    --color-topic-tag-text: #71b7ff;
    --color-topic-tag-bg: rgba(64,158,255,0.15);
    --color-topic-tag-hover-bg: #409eff;
    --color-topic-tag-active-bg: rgba(64,158,255,0.15);
    --color-topic-tag-border: #409eff;
    --color-footer-invertocat-octicon: #7a828e;
    --color-footer-invertocat-octicon-hover: #f0f3f6;
    --color-dropdown-shadow: 0 8px 24px #010409;
    --color-label-border: #7a828e;
    --color-label-primary-text: #f0f3f6;
    --color-label-primary-border: #9ea7b3;
    --color-label-secondary-text: #f0f3f6;
    --color-label-secondary-border: #7a828e;
    --color-label-info-text: #71b7ff;
    --color-label-info-border: #409eff;
    --color-label-success-text: #26cd4d;
    --color-label-success-border: #09b43a;
    --color-label-warning-text: #f0b72f;
    --color-label-warning-border: #e09b13;
    --color-label-danger-text: #ff6a69;
    --color-label-danger-border: #ff6a69;
    --color-label-orange-text: #e7811d;
    --color-label-orange-border: #e7811d;
    --color-input-bg: #0a0c10;
    --color-input-contrast-bg: #010409;
    --color-input-border: #7a828e;
    --color-input-shadow: 0 0 transparent;
    --color-input-disabled-border: #7a828e;
    --color-input-warning-border: #e09b13;
    --color-input-error-border: #ff6a69;
    --color-input-tooltip-success-text: #f0f3f6;
    --color-input-tooltip-success-bg: rgba(9,180,58,0.15);
    --color-input-tooltip-success-border: #09b43a;
    --color-input-tooltip-warning-text: #f0f3f6;
    --color-input-tooltip-warning-bg: rgba(224,155,19,0.15);
    --color-input-tooltip-warning-border: #e09b13;
    --color-input-tooltip-error-text: #f0f3f6;
    --color-input-tooltip-error-bg: rgba(255,106,105,0.15);
    --color-input-tooltip-error-border: #ff6a69;
    --color-input-disabled-bg: rgba(158,167,179,0);
    --color-toast-text: #f0f3f6;
    --color-toast-bg: #0a0c10;
    --color-toast-border: #7a828e;
    --color-toast-shadow: 0 8px 24px #010409;
    --color-toast-icon: #0a0c10;
    --color-toast-icon-bg: #409eff;
    --color-toast-icon-border: rgba(0,0,0,0);
    --color-toast-success-text: #f0f3f6;
    --color-toast-success-border: #7a828e;
    --color-toast-success-icon: #0a0c10;
    --color-toast-success-icon-bg: #09b43a;
    --color-toast-success-icon-border: rgba(0,0,0,0);
    --color-toast-warning-text: #f0f3f6;
    --color-toast-warning-border: #7a828e;
    --color-toast-warning-icon: #f0f3f6;
    --color-toast-warning-icon-bg: #e09b13;
    --color-toast-warning-icon-border: rgba(0,0,0,0);
    --color-toast-danger-text: #f0f3f6;
    --color-toast-danger-border: #7a828e;
    --color-toast-danger-icon: #0a0c10;
    --color-toast-danger-icon-bg: #ff6a69;
    --color-toast-danger-icon-border: rgba(0,0,0,0);
    --color-toast-loading-text: #f0f3f6;
    --color-toast-loading-border: #7a828e;
    --color-toast-loading-icon: #0a0c10;
    --color-toast-loading-icon-bg: #9ea7b3;
    --color-toast-loading-icon-border: rgba(0,0,0,0);
    --color-timeline-text: #f0f3f6;
    --color-timeline-badge-success-border: rgba(0,0,0,0);
    --color-timeline-target-badge-border: #409eff;
    --color-timeline-target-badge-shadow: #409eff;
    --color-timeline-badge-bg: #272b33;
    --color-diffstat-neutral-bg: rgba(158,167,179,0.4);
    --color-diffstat-neutral-border: #7a828e;
    --color-diffstat-deletion-border: #ffb1af;
    --color-diffstat-addition-border: #4ae168;
    --color-diffstat-deletion-bg: #ff6a69;
    --color-diffstat-addition-bg: #26cd4d;
    --color-diff-addition-text: #f0f3f6;
    --color-diff-addition-bg: rgba(9,180,58,0.15);
    --color-diff-addition-border: #09b43a;
    --color-diff-deletion-text: #f0f3f6;
    --color-diff-deletion-bg: rgba(255,106,105,0.15);
    --color-diff-deletion-border: #ff6a69;
    --color-diff-change-text: #f0b72f;
    --color-diff-change-bg: rgba(224,155,19,0.15);
    --color-diff-change-border: #e09b13;
    --color-merge-box-success-icon-bg: #09b43a;
    --color-merge-box-success-icon-text: #0a0c10;
    --color-merge-box-success-icon-border: rgba(0,0,0,0);
    --color-merge-box-success-indicator-bg: #09b43a;
    --color-merge-box-success-indicator-border: rgba(0,0,0,0);
    --color-merge-box-merged-icon-bg: #b87fff;
    --color-merge-box-merged-icon-text: #0a0c10;
    --color-merge-box-merged-icon-border: rgba(0,0,0,0);
    --color-merge-box-merged-box-border: #b87fff;
    --color-merge-box-neutral-icon-bg: #9ea7b3;
    --color-merge-box-neutral-icon-text: #0a0c10;
    --color-merge-box-neutral-icon-border: rgba(0,0,0,0);
    --color-merge-box-neutral-indicator-bg: #9ea7b3;
    --color-merge-box-neutral-indicator-border: rgba(0,0,0,0);
    --color-merge-box-warning-icon-bg: #e09b13;
    --color-merge-box-warning-icon-text: #0a0c10;
    --color-merge-box-warning-icon-border: rgba(0,0,0,0);
    --color-merge-box-warning-box-border: #e09b13;
    --color-merge-box-warning-merge-highlight: rgba(0,0,0,0);
    --color-merge-box-error-icon-bg: #ff6a69;
    --color-merge-box-error-icon-text: #0a0c10;
    --color-merge-box-error-icon-border: rgba(0,0,0,0);
    --color-merge-box-error-indicator-bg: #ff6a69;
    --color-merge-box-error-indicator-border: rgba(0,0,0,0);
    --color-underlinenav-border: rgba(0,0,0,0);
    --color-underlinenav-border-hover: #bdc4cc;
    --color-underlinenav-border-active: #FF967D;
    --color-underlinenav-text: #f0f3f6;
    --color-underlinenav-text-hover: #f0f3f6;
    --color-underlinenav-text-active: #f0f3f6;
    --color-underlinenav-icon: #f0f3f6;
    --color-underlinenav-icon-hover: #7a828e;
    --color-underlinenav-icon-active: #f0f3f6;
    --color-underlinenav-counter-text: #f0f3f6;
    --color-underlinenav-counter-bg: rgba(158,167,179,0.4);
    --color-select-menu-border-secondary: #7a828e;
    --color-select-menu-shadow: 0 8px 24px #010409;
    --color-select-menu-backdrop-bg: rgba(1,4,9,0.8);
    --color-select-menu-backdrop-border: #7a828e;
    --color-select-menu-tap-highlight: rgba(82,89,100,0.5);
    --color-select-menu-tap-focus-bg: #1e60d5;
    --color-sidenav-border-active: #FF967D;
    --color-sidenav-selected-bg: #272b33;
    --color-menu-heading-text: #f0f3f6;
    --color-menu-border-active: #FF967D;
    --color-menu-bg-active: #272b33;
    --color-project-card-bg: #272b33;
    --color-project-header-bg: #0a0c10;
    --color-project-sidebar-bg: #272b33;
    --color-project-gradient-in: #272b33;
    --color-project-gradient-out: rgba(39,43,51,0);
    --color-pr-state-draft-text: #0a0c10;
    --color-pr-state-draft-bg: #9ea7b3;
    --color-pr-state-draft-border: rgba(0,0,0,0);
    --color-pr-state-open-text: #0a0c10;
    --color-pr-state-open-bg: #09b43a;
    --color-pr-state-open-border: rgba(0,0,0,0);
    --color-pr-state-merged-text: #0a0c10;
    --color-pr-state-merged-bg: #b87fff;
    --color-pr-state-merged-border: rgba(0,0,0,0);
    --color-pr-state-closed-text: #0a0c10;
    --color-pr-state-closed-bg: #ff6a69;
    --color-pr-state-closed-border: rgba(0,0,0,0);
    --color-diff-blob-num-text: #7a828e;
    --color-diff-blob-num-hover-text: #f0f3f6;
    --color-diff-blob-addition-num-hover-text: #f0f3f6;
    --color-diff-blob-addition-num-text: #f0f3f6;
    --color-diff-blob-addition-fg: #0a0c10;
    --color-diff-blob-addition-num-bg: rgba(38,205,77,0.3);
    --color-diff-blob-addition-line-bg: rgba(9,180,58,0.15);
    --color-diff-blob-addition-word-bg: #09b43a;
    --color-diff-blob-deletion-num-hover-text: #f0f3f6;
    --color-diff-blob-deletion-num-text: #f0f3f6;
    --color-diff-blob-deletion-fg: #0a0c10;
    --color-diff-blob-deletion-num-bg: rgba(255,106,105,0.3);
    --color-diff-blob-deletion-line-bg: rgba(255,106,105,0.15);
    --color-diff-blob-deletion-word-bg: #ff6a69;
    --color-diff-blob-hunk-text: #f0f3f6;
    --color-diff-blob-hunk-num-bg: rgba(64,158,255,0.4);
    --color-diff-blob-hunk-line-bg: rgba(64,158,255,0.15);
    --color-diff-blob-empty-block-bg: rgba(158,167,179,0.1);
    --color-diff-blob-selected-line-highlight-bg: rgba(224,155,19,0.15);
    --color-diff-blob-selected-line-highlight-border: #e09b13;
    --color-diff-blob-expander-hover-icon: #0a0c10;
    --color-diff-blob-expander-hover-bg: #409eff;
    --color-diff-blob-expander-icon: #0a0c10;
    --color-diff-blob-comment-button-icon: #0a0c10;
    --color-diff-blob-comment-button-bg: #409eff;
    --color-diff-blob-comment-button-gradient-bg: rgba(0,0,0,0);
    --color-diff-blob-selected-line-highlight-mix-blend-mode: screen;
    --color-global-nav-logo: #ffffff;
    --color-global-nav-bg: #272b33;
    --color-global-nav-text: #f0f3f6;
    --color-global-nav-icon: #f0f3f6;
    --color-global-nav-input-bg: #0a0c10;
    --color-global-nav-input-border: #272b33;
    --color-global-nav-input-icon: #272b33;
    --color-global-nav-input-placeholder: #7a828e;
    --color-intro-shelf-gradient-left: rgba(64,158,255,0.15);
    --color-intro-shelf-gradient-right: rgba(9,180,58,0.15);
    --color-intro-shelf-gradient-in: #0a0c10;
    --color-intro-shelf-gradient-out: rgba(255,255,255,0);
    --color-canvas-default-transparent: rgba(10,12,16,0);
    --color-marketing-icon-primary: #91cbff;
    --color-marketing-icon-secondary: #409eff;
    --color-search-keyword-hl: rgba(240,183,47,0.4);
    --color-prettylights-syntax-comment: #bdc4cc;
    --color-prettylights-syntax-constant: #91cbff;
    --color-prettylights-syntax-entity: #dbb7ff;
    --color-prettylights-syntax-storage-modifier-import: #f0f3f6;
    --color-prettylights-syntax-entity-tag: #72f088;
    --color-prettylights-syntax-keyword: #ff9492;
    --color-prettylights-syntax-string: #addcff;
    --color-prettylights-syntax-variable: #ffb757;
    --color-prettylights-syntax-brackethighlighter-unmatched: #ff6a69;
    --color-prettylights-syntax-invalid-illegal-text: #ffffff;
    --color-prettylights-syntax-invalid-illegal-bg: #e82a2f;
    --color-prettylights-syntax-carriage-return-text: #ffffff;
    --color-prettylights-syntax-carriage-return-bg: #ff4445;
    --color-prettylights-syntax-string-regexp: #72f088;
    --color-prettylights-syntax-markup-list: #fbd669;
    --color-prettylights-syntax-markup-heading: #409eff;
    --color-prettylights-syntax-markup-italic: #f0f3f6;
    --color-prettylights-syntax-markup-bold: #f0f3f6;
    --color-prettylights-syntax-markup-deleted-text: #ffdedb;
    --color-prettylights-syntax-markup-deleted-bg: #cc1421;
    --color-prettylights-syntax-markup-inserted-text: #acf7b6;
    --color-prettylights-syntax-markup-inserted-bg: #007728;
    --color-prettylights-syntax-markup-changed-text: #ffe1b4;
    --color-prettylights-syntax-markup-changed-bg: #a74c00;
    --color-prettylights-syntax-markup-ignored-text: #f0f3f6;
    --color-prettylights-syntax-markup-ignored-bg: #318bf8;
    --color-prettylights-syntax-meta-diff-range: #dbb7ff;
    --color-prettylights-syntax-brackethighlighter-angle: #bdc4cc;
    --color-prettylights-syntax-sublimelinter-gutter-mark: #7a828e;
    --color-prettylights-syntax-constant-other-reference-link: #addcff;
    --color-codemirror-text: #f0f3f6;
    --color-codemirror-bg: #0a0c10;
    --color-codemirror-gutters-bg: #0a0c10;
    --color-codemirror-guttermarker-text: #0a0c10;
    --color-codemirror-guttermarker-subtle-text: #7a828e;
    --color-codemirror-linenumber-text: #f0f3f6;
    --color-codemirror-cursor: #f0f3f6;
    --color-codemirror-selection-bg: rgba(64,158,255,0.4);
    --color-codemirror-activeline-bg: rgba(158,167,179,0.1);
    --color-codemirror-matchingbracket-text: #f0f3f6;
    --color-codemirror-lines-bg: #0a0c10;
    --color-codemirror-syntax-comment: #bdc4cc;
    --color-codemirror-syntax-constant: #91cbff;
    --color-codemirror-syntax-entity: #dbb7ff;
    --color-codemirror-syntax-keyword: #ff9492;
    --color-codemirror-syntax-storage: #ff9492;
    --color-codemirror-syntax-string: #addcff;
    --color-codemirror-syntax-support: #91cbff;
    --color-codemirror-syntax-variable: #ffb757;
    --color-checks-bg: #010409;
    --color-checks-run-border-width: 1px;
    --color-checks-container-border-width: 1px;
    --color-checks-text-primary: #f0f3f6;
    --color-checks-text-secondary: #f0f3f6;
    --color-checks-text-link: #71b7ff;
    --color-checks-btn-icon: #f0f3f6;
    --color-checks-btn-hover-icon: #f0f3f6;
    --color-checks-btn-hover-bg: rgba(158,167,179,0.1);
    --color-checks-input-text: #f0f3f6;
    --color-checks-input-placeholder-text: #7a828e;
    --color-checks-input-focus-text: #f0f3f6;
    --color-checks-input-bg: #272b33;
    --color-checks-input-shadow: 0 0 0 1px (obj) => get_1.default(obj, path);
    --color-checks-donut-error: #ff6a69;
    --color-checks-donut-pending: #f0b72f;
    --color-checks-donut-success: #09b43a;
    --color-checks-donut-neutral: #bdc4cc;
    --color-checks-dropdown-text: #f0f3f6;
    --color-checks-dropdown-bg: #272b33;
    --color-checks-dropdown-border: #7a828e;
    --color-checks-dropdown-shadow: rgba(1,4,9,0.3);
    --color-checks-dropdown-hover-text: #f0f3f6;
    --color-checks-dropdown-hover-bg: rgba(158,167,179,0.1);
    --color-checks-dropdown-btn-hover-text: #f0f3f6;
    --color-checks-dropdown-btn-hover-bg: rgba(158,167,179,0.1);
    --color-checks-scrollbar-thumb-bg: rgba(158,167,179,0.4);
    --color-checks-header-label-text: #f0f3f6;
    --color-checks-header-label-open-text: #f0f3f6;
    --color-checks-header-border: #7a828e;
    --color-checks-header-icon: #f0f3f6;
    --color-checks-line-text: #f0f3f6;
    --color-checks-line-num-text: #7a828e;
    --color-checks-line-timestamp-text: #7a828e;
    --color-checks-line-hover-bg: rgba(158,167,179,0.1);
    --color-checks-line-selected-bg: rgba(64,158,255,0.15);
    --color-checks-line-selected-num-text: #71b7ff;
    --color-checks-line-dt-fm-text: #0a0c10;
    --color-checks-line-dt-fm-bg: #e09b13;
    --color-checks-gate-bg: rgba(224,155,19,0.15);
    --color-checks-gate-text: #f0f3f6;
    --color-checks-gate-waiting-text: #f0b72f;
    --color-checks-step-header-open-bg: #272b33;
    --color-checks-step-error-text: #ff6a69;
    --color-checks-step-warning-text: #f0b72f;
    --color-checks-logline-text: #f0f3f6;
    --color-checks-logline-num-text: #7a828e;
    --color-checks-logline-debug-text: #b780ff;
    --color-checks-logline-error-text: #f0f3f6;
    --color-checks-logline-error-num-text: #7a828e;
    --color-checks-logline-error-bg: rgba(255,106,105,0.15);
    --color-checks-logline-warning-text: #f0f3f6;
    --color-checks-logline-warning-num-text: #f0b72f;
    --color-checks-logline-warning-bg: rgba(224,155,19,0.15);
    --color-checks-logline-command-text: #71b7ff;
    --color-checks-logline-section-text: #26cd4d;
    --color-checks-ansi-black: #0a0c10;
    --color-checks-ansi-black-bright: #272b33;
    --color-checks-ansi-white: #d9dee3;
    --color-checks-ansi-white-bright: #d9dee3;
    --color-checks-ansi-gray: #9ea7b3;
    --color-checks-ansi-red: #ff9492;
    --color-checks-ansi-red-bright: #ffb1af;
    --color-checks-ansi-green: #26cd4d;
    --color-checks-ansi-green-bright: #4ae168;
    --color-checks-ansi-yellow: #f0b72f;
    --color-checks-ansi-yellow-bright: #f7c843;
    --color-checks-ansi-blue: #71b7ff;
    --color-checks-ansi-blue-bright: #91cbff;
    --color-checks-ansi-magenta: #cb9eff;
    --color-checks-ansi-magenta-bright: #dbb7ff;
    --color-checks-ansi-cyan: #76e3ea;
    --color-checks-ansi-cyan-bright: #b3f0ff;
    --color-mktg-success: rgba(9,180,58,1);
    --color-mktg-info: rgba(64,158,255,1);
    --color-mktg-bg-shade-gradient-top: rgba(1,4,9,0.065);
    --color-mktg-bg-shade-gradient-bottom: rgba(1,4,9,0);
    --color-mktg-btn-bg-top: hsla(228,82%,66%,1);
    --color-mktg-btn-bg-bottom: #4969ed;
    --color-mktg-btn-bg-overlay-top: hsla(228,74%,59%,1);
    --color-mktg-btn-bg-overlay-bottom: #3355e0;
    --color-mktg-btn-text: #ffffff;
    --color-mktg-btn-primary-bg-top: hsla(137,56%,46%,1);
    --color-mktg-btn-primary-bg-bottom: #2ea44f;
    --color-mktg-btn-primary-bg-overlay-top: hsla(134,60%,38%,1);
    --color-mktg-btn-primary-bg-overlay-bottom: #22863a;
    --color-mktg-btn-primary-text: #ffffff;
    --color-mktg-btn-enterprise-bg-top: hsla(249,100%,72%,1);
    --color-mktg-btn-enterprise-bg-bottom: #6f57ff;
    --color-mktg-btn-enterprise-bg-overlay-top: hsla(248,65%,63%,1);
    --color-mktg-btn-enterprise-bg-overlay-bottom: #614eda;
    --color-mktg-btn-enterprise-text: #ffffff;
    --color-mktg-btn-outline-text: #ffffff;
    --color-mktg-btn-outline-border: rgba(255,255,255,0.3);
    --color-mktg-btn-outline-hover-text: #ffffff;
    --color-mktg-btn-outline-hover-border: rgba(255,255,255,0.5);
    --color-mktg-btn-outline-focus-border: #ffffff;
    --color-mktg-btn-outline-focus-border-inset: rgba(255,255,255,0.5);
    --color-mktg-btn-dark-text: #ffffff;
    --color-mktg-btn-dark-border: rgba(255,255,255,0.3);
    --color-mktg-btn-dark-hover-text: #ffffff;
    --color-mktg-btn-dark-hover-border: rgba(255,255,255,0.5);
    --color-mktg-btn-dark-focus-border: #ffffff;
    --color-mktg-btn-dark-focus-border-inset: rgba(255,255,255,0.5);
    --color-avatar-bg: rgba(255,255,255,0.1);
    --color-avatar-border: rgba(255,255,255,0.9);
    --color-avatar-stack-fade: #525964;
    --color-avatar-stack-fade-more: #272b33;
    --color-avatar-child-shadow: -2px -2px 0 #0a0c10;
    --color-overlay-shadow: 0 0 0 1px #525964, 0 16px 32px rgba(1,4,9,0.85);
    --color-header-text: rgba(255,255,255,0.7);
    --color-header-bg: #272b33;
    --color-header-logo: #ffffff;
    --color-header-search-bg: #0a0c10;
    --color-header-search-border: #525964;
    --color-ansi-black: #7a828e;
    --color-ansi-black-bright: #9ea7b3;
    --color-ansi-white: #d9dee3;
    --color-ansi-white-bright: #ffffff;
    --color-ansi-gray: #9ea7b3;
    --color-ansi-red: #ff9492;
    --color-ansi-red-bright: #ffb1af;
    --color-ansi-green: #26cd4d;
    --color-ansi-green-bright: #4ae168;
    --color-ansi-yellow: #f0b72f;
    --color-ansi-yellow-bright: #f7c843;
    --color-ansi-blue: #71b7ff;
    --color-ansi-blue-bright: #91cbff;
    --color-ansi-magenta: #cb9eff;
    --color-ansi-magenta-bright: #dbb7ff;
    --color-ansi-cyan: #39c5cf;
    --color-ansi-cyan-bright: #56d4dd;
    --color-btn-text: #f0f3f6;
    --color-btn-bg: #272b33;
    --color-btn-border: #7a828e;
    --color-btn-shadow: 0 0 transparent;
    --color-btn-inset-shadow: 0 0 transparent;
    --color-btn-hover-bg: #525964;
    --color-btn-hover-border: #bdc4cc;
    --color-btn-active-bg: hsla(217,10%,33%,1);
    --color-btn-active-border: #9ea7b3;
    --color-btn-selected-bg: rgba(82,89,100,0.9);
    --color-btn-focus-bg: #272b33;
    --color-btn-focus-border: #bdc4cc;
    --color-btn-focus-shadow: 0 0 0 3px rgba(189,196,204,0.3);
    --color-btn-shadow-active: inset 0 0.15em 0.3em rgba(1,4,9,0.15);
    --color-btn-shadow-input-focus: 0 0 0 0.2em rgba(64,158,255,0.3);
    --color-btn-counter-bg: #525964;
    --color-btn-primary-text: #0a0c10;
    --color-btn-primary-bg: #09b43a;
    --color-btn-primary-border: #4ae168;
    --color-btn-primary-shadow: 0 0 transparent;
    --color-btn-primary-inset-shadow: 0 0 transparent;
    --color-btn-primary-hover-bg: #26cd4d;
    --color-btn-primary-hover-border: #4ae168;
    --color-btn-primary-selected-bg: #09b43a;
    --color-btn-primary-selected-shadow: 0 0 transparent;
    --color-btn-primary-disabled-text: rgba(10,12,16,0.5);
    --color-btn-primary-disabled-bg: rgba(9,180,58,0.6);
    --color-btn-primary-disabled-border: rgba(74,225,104,0.4);
    --color-btn-primary-focus-bg: #09b43a;
    --color-btn-primary-focus-border: #7a828e;
    --color-btn-primary-focus-shadow: 0 0 0 3px rgba(46,164,79,0.4);
    --color-btn-primary-icon: #0a0c10;
    --color-btn-primary-counter-bg: rgba(1,4,9,0.15);
    --color-btn-outline-text: #71b7ff;
    --color-btn-outline-hover-text: #71b7ff;
    --color-btn-outline-hover-bg: #525964;
    --color-btn-outline-hover-border: #7a828e;
    --color-btn-outline-hover-shadow: 0 1px 0 rgba(1,4,9,0.1);
    --color-btn-outline-hover-inset-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
    --color-btn-outline-hover-counter-bg: rgba(255,255,255,0.2);
    --color-btn-outline-selected-text: #ffffff;
    --color-btn-outline-selected-bg: #2672f3;
    --color-btn-outline-selected-border: #7a828e;
    --color-btn-outline-selected-shadow: 0 0 transparent;
    --color-btn-outline-disabled-text: rgba(113,183,255,0.5);
    --color-btn-outline-disabled-bg: #0a0c10;
    --color-btn-outline-disabled-counter-bg: rgba(64,158,255,0.05);
    --color-btn-outline-focus-border: #7a828e;
    --color-btn-outline-focus-shadow: 0 0 0 3px rgba(49,139,248,0.4);
    --color-btn-outline-counter-bg: rgba(64,158,255,0.1);
    --color-btn-danger-text: #ff6a69;
    --color-btn-danger-hover-text: #0a0c10;
    --color-btn-danger-hover-bg: #ff6a69;
    --color-btn-danger-hover-border: #ff6a69;
    --color-btn-danger-hover-shadow: 0 0 transparent;
    --color-btn-danger-hover-inset-shadow: 0 0 transparent;
    --color-btn-danger-hover-icon: #0a0c10;
    --color-btn-danger-hover-counter-bg: rgba(1,4,9,0.15);
    --color-btn-danger-selected-text: #ffffff;
    --color-btn-danger-selected-bg: #ff4445;
    --color-btn-danger-selected-border: #ff9492;
    --color-btn-danger-selected-shadow: 0 0 transparent;
    --color-btn-danger-disabled-text: rgba(255,106,105,0.5);
    --color-btn-danger-disabled-bg: #0a0c10;
    --color-btn-danger-disabled-counter-bg: rgba(255,106,105,0.05);
    --color-btn-danger-focus-border: #ff6a69;
    --color-btn-danger-focus-shadow: 0 0 0 3px rgba(255,106,105,0.4);
    --color-btn-danger-counter-bg: rgba(1,4,9,0.15);
    --color-btn-danger-icon: #ff6a69;
    --color-fg-default: #f0f3f6;
    --color-fg-muted: #f0f3f6;
    --color-fg-subtle: #7a828e;
    --color-fg-on-emphasis: #0a0c10;
    --color-canvas-default: #0a0c10;
    --color-canvas-overlay: #272b33;
    --color-canvas-inset: #010409;
    --color-canvas-subtle: #272b33;
    --color-neutral-emphasis-plus: #ffffff;
    --color-neutral-emphasis: #9ea7b3;
    --color-neutral-muted: rgba(158,167,179,0.4);
    --color-neutral-subtle: rgba(158,167,179,0.1);
    --color-accent-fg: #71b7ff;
    --color-accent-emphasis: #409eff;
    --color-accent-muted: #409eff;
    --color-accent-subtle: rgba(64,158,255,0.15);
    --color-success-fg: #26cd4d;
    --color-success-emphasis: #09b43a;
    --color-success-muted: #09b43a;
    --color-success-subtle: rgba(9,180,58,0.15);
    --color-attention-fg: #f0b72f;
    --color-attention-emphasis: #e09b13;
    --color-attention-muted: #e09b13;
    --color-attention-subtle: rgba(224,155,19,0.15);
    --color-severe-fg: #e7811d;
    --color-severe-emphasis: #e7811d;
    --color-severe-muted: #e7811d;
    --color-severe-subtle: rgba(231,129,29,0.15);
    --color-danger-fg: #ff6a69;
    --color-danger-emphasis: #ff6a69;
    --color-danger-muted: #ff6a69;
    --color-danger-subtle: rgba(255,106,105,0.15);
    --color-done-fg: #b780ff;
    --color-done-emphasis: #b87fff;
    --color-done-muted: #b780ff;
    --color-done-subtle: rgba(183,128,255,0.15);
    --color-sponsors-fg: #ef6eb1;
    --color-sponsors-emphasis: #ef6eb1;
    --color-sponsors-muted: #ef6eb1;
    --color-sponsors-subtle: rgba(239,110,177,0.15);
    --color-primer-canvas-backdrop: rgba(1,4,9,0.8);
    --color-primer-canvas-sticky: rgba(10,12,16,0.95);
    --color-primer-border-active: #FF967D;
    --color-primer-border-contrast: rgba(255,255,255,0.2);
    --color-primer-shadow-highlight: 0 0 transparent;
    --color-primer-shadow-inset: 0 0 transparent;
    --color-primer-shadow-focus: 0 0 0 3px #1e60d5;
    --color-scale-black: #010409;
    --color-scale-white: #ffffff;
    --color-scale-gray-0: #ffffff;
    --color-scale-gray-1: #f0f3f6;
    --color-scale-gray-2: #d9dee3;
    --color-scale-gray-3: #bdc4cc;
    --color-scale-gray-4: #9ea7b3;
    --color-scale-gray-5: #7a828e;
    --color-scale-gray-6: #525964;
    --color-scale-gray-7: #272b33;
    --color-scale-gray-8: #272b33;
    --color-scale-gray-9: #0a0c10;
    --color-scale-blue-0: #caeaff;
    --color-scale-blue-1: #addcff;
    --color-scale-blue-2: #91cbff;
    --color-scale-blue-3: #71b7ff;
    --color-scale-blue-4: #409eff;
    --color-scale-blue-5: #409eff;
    --color-scale-blue-6: #318bf8;
    --color-scale-blue-7: #2672f3;
    --color-scale-blue-8: #1e60d5;
    --color-scale-blue-9: #194fb1;
    --color-scale-green-0: #acf7b6;
    --color-scale-green-1: #72f088;
    --color-scale-green-2: #4ae168;
    --color-scale-green-3: #26cd4d;
    --color-scale-green-4: #09b43a;
    --color-scale-green-5: #09b43a;
    --color-scale-green-6: #02a232;
    --color-scale-green-7: #008c2c;
    --color-scale-green-8: #007728;
    --color-scale-green-9: #006222;
    --color-scale-yellow-0: #fbe59e;
    --color-scale-yellow-1: #fbd669;
    --color-scale-yellow-2: #f7c843;
    --color-scale-yellow-3: #f0b72f;
    --color-scale-yellow-4: #e09b13;
    --color-scale-yellow-5: #e09b13;
    --color-scale-yellow-6: #c88508;
    --color-scale-yellow-7: #ae7104;
    --color-scale-yellow-8: #945d02;
    --color-scale-yellow-9: #7b4900;
    --color-scale-orange-0: #ffe1b4;
    --color-scale-orange-1: #ffcf86;
    --color-scale-orange-2: #ffb757;
    --color-scale-orange-3: #fe9a2d;
    --color-scale-orange-4: #e7811d;
    --color-scale-orange-5: #e7811d;
    --color-scale-orange-6: #d57014;
    --color-scale-orange-7: #bf5e0a;
    --color-scale-orange-8: #a74c00;
    --color-scale-orange-9: #8f3c00;
    --color-scale-red-0: #ffdedb;
    --color-scale-red-1: #ffc9c7;
    --color-scale-red-2: #ffb1af;
    --color-scale-red-3: #ff9492;
    --color-scale-red-4: #ff6a69;
    --color-scale-red-5: #ff6a69;
    --color-scale-red-6: #ff4445;
    --color-scale-red-7: #e82a2f;
    --color-scale-red-8: #cc1421;
    --color-scale-red-9: #ad0116;
    --color-scale-purple-0: #f0dfff;
    --color-scale-purple-1: #e6ccff;
    --color-scale-purple-2: #dbb7ff;
    --color-scale-purple-3: #cb9eff;
    --color-scale-purple-4: #b780ff;
    --color-scale-purple-5: #b87fff;
    --color-scale-purple-6: #a66bff;
    --color-scale-purple-7: #954ffd;
    --color-scale-purple-8: #8031f7;
    --color-scale-purple-9: #6921d7;
    --color-scale-pink-0: #ffdceb;
    --color-scale-pink-1: #ffc7e1;
    --color-scale-pink-2: #ffadd4;
    --color-scale-pink-3: #ff8dc7;
    --color-scale-pink-4: #ef6eb1;
    --color-scale-pink-5: #ef6eb1;
    --color-scale-pink-6: #e456a3;
    --color-scale-pink-7: #d23d91;
    --color-scale-pink-8: #b72c7d;
    --color-scale-pink-9: #9c1d6a;
    --color-scale-coral-0: #FFDED4;
    --color-scale-coral-1: #FFCBB9;
    --color-scale-coral-2: #FFB39B;
    --color-scale-coral-3: #FF967D;
    --color-scale-coral-4: #FC704F;
    --color-scale-coral-5: #FC704F;
    --color-scale-coral-6: #F75133;
    --color-scale-coral-7: #E03B21;
    --color-scale-coral-8: #C62612;
    --color-scale-coral-9: #A91500;
  }
}
@media (prefers-color-scheme: dark) {
  [data-color-mode=auto][data-dark-theme=dark_high_contrast] {
    --color-auto-black: #ffffff;
    --color-auto-white: #010409;
    --color-auto-gray-0: #0a0c10;
    --color-auto-gray-1: #272b33;
    --color-auto-gray-2: #272b33;
    --color-auto-gray-3: #525964;
    --color-auto-gray-4: #7a828e;
    --color-auto-gray-5: #9ea7b3;
    --color-auto-gray-6: #bdc4cc;
    --color-auto-gray-7: #d9dee3;
    --color-auto-gray-8: #f0f3f6;
    --color-auto-gray-9: #ffffff;
    --color-auto-blue-0: #194fb1;
    --color-auto-blue-1: #1e60d5;
    --color-auto-blue-2: #2672f3;
    --color-auto-blue-3: #318bf8;
    --color-auto-blue-4: #409eff;
    --color-auto-blue-5: #409eff;
    --color-auto-blue-6: #71b7ff;
    --color-auto-blue-7: #91cbff;
    --color-auto-blue-8: #addcff;
    --color-auto-blue-9: #caeaff;
    --color-auto-green-0: #006222;
    --color-auto-green-1: #007728;
    --color-auto-green-2: #008c2c;
    --color-auto-green-3: #02a232;
    --color-auto-green-4: #09b43a;
    --color-auto-green-5: #09b43a;
    --color-auto-green-6: #26cd4d;
    --color-auto-green-7: #4ae168;
    --color-auto-green-8: #72f088;
    --color-auto-green-9: #acf7b6;
    --color-auto-yellow-0: #7b4900;
    --color-auto-yellow-1: #945d02;
    --color-auto-yellow-2: #ae7104;
    --color-auto-yellow-3: #c88508;
    --color-auto-yellow-4: #e09b13;
    --color-auto-yellow-5: #e09b13;
    --color-auto-yellow-6: #f0b72f;
    --color-auto-yellow-7: #f7c843;
    --color-auto-yellow-8: #fbd669;
    --color-auto-yellow-9: #fbe59e;
    --color-auto-orange-0: #8f3c00;
    --color-auto-orange-1: #a74c00;
    --color-auto-orange-2: #bf5e0a;
    --color-auto-orange-3: #d57014;
    --color-auto-orange-4: #e7811d;
    --color-auto-orange-5: #e7811d;
    --color-auto-orange-6: #fe9a2d;
    --color-auto-orange-7: #ffb757;
    --color-auto-orange-8: #ffcf86;
    --color-auto-orange-9: #ffe1b4;
    --color-auto-red-0: #ad0116;
    --color-auto-red-1: #cc1421;
    --color-auto-red-2: #e82a2f;
    --color-auto-red-3: #ff4445;
    --color-auto-red-4: #ff6a69;
    --color-auto-red-5: #ff6a69;
    --color-auto-red-6: #ff9492;
    --color-auto-red-7: #ffb1af;
    --color-auto-red-8: #ffc9c7;
    --color-auto-red-9: #ffdedb;
    --color-auto-purple-0: #6921d7;
    --color-auto-purple-1: #8031f7;
    --color-auto-purple-2: #954ffd;
    --color-auto-purple-3: #a66bff;
    --color-auto-purple-4: #b87fff;
    --color-auto-purple-5: #b780ff;
    --color-auto-purple-6: #cb9eff;
    --color-auto-purple-7: #dbb7ff;
    --color-auto-purple-8: #e6ccff;
    --color-auto-purple-9: #f0dfff;
    --color-auto-pink-0: #9c1d6a;
    --color-auto-pink-1: #b72c7d;
    --color-auto-pink-2: #d23d91;
    --color-auto-pink-3: #e456a3;
    --color-auto-pink-4: #ef6eb1;
    --color-auto-pink-5: #ef6eb1;
    --color-auto-pink-6: #ff8dc7;
    --color-auto-pink-7: #ffadd4;
    --color-auto-pink-8: #ffc7e1;
    --color-auto-pink-9: #ffdceb;
    --color-text-primary: #f0f3f6;
    --color-text-secondary: #f0f3f6;
    --color-text-tertiary: #f0f3f6;
    --color-text-placeholder: #7a828e;
    --color-text-disabled: #f0f3f6;
    --color-text-inverse: #0a0c10;
    --color-text-link: #71b7ff;
    --color-text-danger: #ff6a69;
    --color-text-success: #26cd4d;
    --color-text-warning: #f0b72f;
    --color-text-white: #ffffff;
    --color-icon-primary: #f0f3f6;
    --color-icon-secondary: #f0f3f6;
    --color-icon-tertiary: #f0f3f6;
    --color-icon-info: #71b7ff;
    --color-icon-danger: #ff6a69;
    --color-icon-success: #26cd4d;
    --color-icon-warning: #f0b72f;
    --color-border-primary: #7a828e;
    --color-border-secondary: #7a828e;
    --color-border-tertiary: #7a828e;
    --color-border-overlay: #7a828e;
    --color-border-inverse: #0a0c10;
    --color-border-info: #409eff;
    --color-border-danger: #ff6a69;
    --color-border-success: #09b43a;
    --color-border-warning: #e09b13;
    --color-border-default: #7a828e;
    --color-border-muted: #7a828e;
    --color-border-subtle: #7a828e;
    --color-bg-canvas: #0a0c10;
    --color-bg-canvas-mobile: rgba(0,0,0,0);
    --color-bg-canvas-inverse: #9ea7b3;
    --color-bg-canvas-inset: #010409;
    --color-bg-primary: #0a0c10;
    --color-bg-secondary: #272b33;
    --color-bg-tertiary: #272b33;
    --color-bg-overlay: #272b33;
    --color-bg-backdrop: rgba(1,4,9,0.8);
    --color-bg-info: rgba(64,158,255,0.15);
    --color-bg-info-inverse: #409eff;
    --color-bg-danger: rgba(255,106,105,0.15);
    --color-bg-danger-inverse: #ff6a69;
    --color-bg-success: rgba(9,180,58,0.15);
    --color-bg-success-inverse: #09b43a;
    --color-bg-warning: rgba(224,155,19,0.15);
    --color-bg-warning-inverse: #e09b13;
    --color-shadow-highlight: 0 0 transparent;
    --color-shadow-inset: 0 0 transparent;
    --color-shadow-small: 0 0 transparent;
    --color-shadow-medium: 0 3px 6px #010409;
    --color-shadow-large: 0 8px 24px #010409;
    --color-shadow-extra-large: 0 12px 48px #010409;
    --color-state-hover-primary-bg: #409eff;
    --color-state-hover-primary-border: #409eff;
    --color-state-hover-primary-text: #0a0c10;
    --color-state-hover-primary-icon: #0a0c10;
    --color-state-hover-secondary-bg: rgba(158,167,179,0.1);
    --color-state-hover-secondary-border: rgba(158,167,179,0.1);
    --color-state-selected-primary-bg: #409eff;
    --color-state-selected-primary-border: #409eff;
    --color-state-selected-primary-text: #0a0c10;
    --color-state-selected-primary-icon: #0a0c10;
    --color-state-focus-border: #409eff;
    --color-state-focus-shadow: 0 0 0 3px #1e60d5;
    --color-fade-fg-10: rgba(255,255,255,0.1);
    --color-fade-fg-15: rgba(255,255,255,0.15);
    --color-fade-fg-30: rgba(255,255,255,0.3);
    --color-fade-fg-50: rgba(255,255,255,0.5);
    --color-fade-fg-70: rgba(255,255,255,0.7);
    --color-fade-fg-85: rgba(255,255,255,0.85);
    --color-fade-black-10: rgba(1,4,9,0.1);
    --color-fade-black-15: rgba(1,4,9,0.15);
    --color-fade-black-30: rgba(1,4,9,0.3);
    --color-fade-black-50: rgba(1,4,9,0.5);
    --color-fade-black-70: rgba(1,4,9,0.7);
    --color-fade-black-85: rgba(1,4,9,0.85);
    --color-fade-white-10: rgba(255,255,255,0.1);
    --color-fade-white-15: rgba(255,255,255,0.15);
    --color-fade-white-30: rgba(255,255,255,0.3);
    --color-fade-white-50: rgba(255,255,255,0.5);
    --color-fade-white-70: rgba(255,255,255,0.7);
    --color-fade-white-85: rgba(255,255,255,0.85);
    --color-alert-info-text: #f0f3f6;
    --color-alert-info-icon: #71b7ff;
    --color-alert-info-bg: rgba(64,158,255,0.15);
    --color-alert-info-border: #409eff;
    --color-alert-warn-text: #f0f3f6;
    --color-alert-warn-icon: #f0b72f;
    --color-alert-warn-bg: rgba(224,155,19,0.15);
    --color-alert-warn-border: #e09b13;
    --color-alert-error-text: #f0f3f6;
    --color-alert-error-icon: #ff6a69;
    --color-alert-error-bg: rgba(255,106,105,0.15);
    --color-alert-error-border: #ff6a69;
    --color-alert-success-text: #f0f3f6;
    --color-alert-success-icon: #26cd4d;
    --color-alert-success-bg: rgba(9,180,58,0.15);
    --color-alert-success-border: #09b43a;
    --color-autocomplete-shadow: 0 3px 6px #010409;
    --color-autocomplete-row-border: #7a828e;
    --color-blankslate-icon: #f0f3f6;
    --color-counter-text: #f0f3f6;
    --color-counter-bg: rgba(158,167,179,0.4);
    --color-counter-primary-text: #0a0c10;
    --color-counter-primary-bg: #9ea7b3;
    --color-counter-secondary-text: #f0f3f6;
    --color-counter-secondary-bg: rgba(158,167,179,0.1);
    --color-box-blue-border: #409eff;
    --color-box-row-yellow-bg: rgba(224,155,19,0.15);
    --color-box-row-blue-bg: rgba(64,158,255,0.15);
    --color-box-header-blue-bg: rgba(64,158,255,0.15);
    --color-box-header-blue-border: #409eff;
    --color-box-border-info: #409eff;
    --color-box-bg-info: rgba(64,158,255,0.15);
    --color-box-border-warning: #e09b13;
    --color-box-bg-warning: rgba(224,155,19,0.15);
    --color-branch-name-text: #f0f3f6;
    --color-branch-name-icon: #f0f3f6;
    --color-branch-name-bg: rgba(64,158,255,0.15);
    --color-branch-name-link-text: #71b7ff;
    --color-branch-name-link-icon: #71b7ff;
    --color-branch-name-link-bg: rgba(64,158,255,0.15);
    --color-markdown-code-bg: rgba(158,167,179,0.4);
    --color-markdown-frame-border: #7a828e;
    --color-markdown-blockquote-border: #7a828e;
    --color-markdown-table-border: #7a828e;
    --color-markdown-table-tr-border: #7a828e;
    --color-filter-item-bar-bg: rgba(158,167,179,0.1);
    --color-hidden-text-expander-bg: rgba(158,167,179,0.4);
    --color-hidden-text-expander-bg-hover: #409eff;
    --color-drag-and-drop-border: #7a828e;
    --color-upload-enabled-border: #7a828e;
    --color-upload-enabled-border-focused: #409eff;
    --color-previewable-comment-form-border: #7a828e;
    --color-verified-badge-text: #26cd4d;
    --color-verified-badge-bg: #0a0c10;
    --color-verified-badge-border: #7a828e;
    --color-social-count-bg: #0a0c10;
    --color-tooltip-text: #0a0c10;
    --color-tooltip-bg: #ffffff;
    --color-files-explorer-icon: #71b7ff;
    --color-hl-author-bg: rgba(64,158,255,0.15);
    --color-hl-author-border: #409eff;
    --color-logo-subdued: rgba(158,167,179,0.4);
    --color-discussion-border: #09b43a;
    --color-discussion-bg-success: #09b43a;
    --color-actions-workflow-table-sticky-bg: rgba(10,12,16,0.95);
    --color-repo-language-color-border: rgba(255,255,255,0.2);
    --color-code-selection-bg: #409eff;
    --color-highlight-text: #f0f3f6;
    --color-highlight-bg: rgba(224,155,19,0.15);
    --color-blob-line-highlight-bg: rgba(224,155,19,0.15);
    --color-blob-line-highlight-border: #e09b13;
    --color-topic-tag-text: #71b7ff;
    --color-topic-tag-bg: rgba(64,158,255,0.15);
    --color-topic-tag-hover-bg: #409eff;
    --color-topic-tag-active-bg: rgba(64,158,255,0.15);
    --color-topic-tag-border: #409eff;
    --color-footer-invertocat-octicon: #7a828e;
    --color-footer-invertocat-octicon-hover: #f0f3f6;
    --color-dropdown-shadow: 0 8px 24px #010409;
    --color-label-border: #7a828e;
    --color-label-primary-text: #f0f3f6;
    --color-label-primary-border: #9ea7b3;
    --color-label-secondary-text: #f0f3f6;
    --color-label-secondary-border: #7a828e;
    --color-label-info-text: #71b7ff;
    --color-label-info-border: #409eff;
    --color-label-success-text: #26cd4d;
    --color-label-success-border: #09b43a;
    --color-label-warning-text: #f0b72f;
    --color-label-warning-border: #e09b13;
    --color-label-danger-text: #ff6a69;
    --color-label-danger-border: #ff6a69;
    --color-label-orange-text: #e7811d;
    --color-label-orange-border: #e7811d;
    --color-input-bg: #0a0c10;
    --color-input-contrast-bg: #010409;
    --color-input-border: #7a828e;
    --color-input-shadow: 0 0 transparent;
    --color-input-disabled-border: #7a828e;
    --color-input-warning-border: #e09b13;
    --color-input-error-border: #ff6a69;
    --color-input-tooltip-success-text: #f0f3f6;
    --color-input-tooltip-success-bg: rgba(9,180,58,0.15);
    --color-input-tooltip-success-border: #09b43a;
    --color-input-tooltip-warning-text: #f0f3f6;
    --color-input-tooltip-warning-bg: rgba(224,155,19,0.15);
    --color-input-tooltip-warning-border: #e09b13;
    --color-input-tooltip-error-text: #f0f3f6;
    --color-input-tooltip-error-bg: rgba(255,106,105,0.15);
    --color-input-tooltip-error-border: #ff6a69;
    --color-input-disabled-bg: rgba(158,167,179,0);
    --color-toast-text: #f0f3f6;
    --color-toast-bg: #0a0c10;
    --color-toast-border: #7a828e;
    --color-toast-shadow: 0 8px 24px #010409;
    --color-toast-icon: #0a0c10;
    --color-toast-icon-bg: #409eff;
    --color-toast-icon-border: rgba(0,0,0,0);
    --color-toast-success-text: #f0f3f6;
    --color-toast-success-border: #7a828e;
    --color-toast-success-icon: #0a0c10;
    --color-toast-success-icon-bg: #09b43a;
    --color-toast-success-icon-border: rgba(0,0,0,0);
    --color-toast-warning-text: #f0f3f6;
    --color-toast-warning-border: #7a828e;
    --color-toast-warning-icon: #f0f3f6;
    --color-toast-warning-icon-bg: #e09b13;
    --color-toast-warning-icon-border: rgba(0,0,0,0);
    --color-toast-danger-text: #f0f3f6;
    --color-toast-danger-border: #7a828e;
    --color-toast-danger-icon: #0a0c10;
    --color-toast-danger-icon-bg: #ff6a69;
    --color-toast-danger-icon-border: rgba(0,0,0,0);
    --color-toast-loading-text: #f0f3f6;
    --color-toast-loading-border: #7a828e;
    --color-toast-loading-icon: #0a0c10;
    --color-toast-loading-icon-bg: #9ea7b3;
    --color-toast-loading-icon-border: rgba(0,0,0,0);
    --color-timeline-text: #f0f3f6;
    --color-timeline-badge-success-border: rgba(0,0,0,0);
    --color-timeline-target-badge-border: #409eff;
    --color-timeline-target-badge-shadow: #409eff;
    --color-timeline-badge-bg: #272b33;
    --color-diffstat-neutral-bg: rgba(158,167,179,0.4);
    --color-diffstat-neutral-border: #7a828e;
    --color-diffstat-deletion-border: #ffb1af;
    --color-diffstat-addition-border: #4ae168;
    --color-diffstat-deletion-bg: #ff6a69;
    --color-diffstat-addition-bg: #26cd4d;
    --color-diff-addition-text: #f0f3f6;
    --color-diff-addition-bg: rgba(9,180,58,0.15);
    --color-diff-addition-border: #09b43a;
    --color-diff-deletion-text: #f0f3f6;
    --color-diff-deletion-bg: rgba(255,106,105,0.15);
    --color-diff-deletion-border: #ff6a69;
    --color-diff-change-text: #f0b72f;
    --color-diff-change-bg: rgba(224,155,19,0.15);
    --color-diff-change-border: #e09b13;
    --color-merge-box-success-icon-bg: #09b43a;
    --color-merge-box-success-icon-text: #0a0c10;
    --color-merge-box-success-icon-border: rgba(0,0,0,0);
    --color-merge-box-success-indicator-bg: #09b43a;
    --color-merge-box-success-indicator-border: rgba(0,0,0,0);
    --color-merge-box-merged-icon-bg: #b87fff;
    --color-merge-box-merged-icon-text: #0a0c10;
    --color-merge-box-merged-icon-border: rgba(0,0,0,0);
    --color-merge-box-merged-box-border: #b87fff;
    --color-merge-box-neutral-icon-bg: #9ea7b3;
    --color-merge-box-neutral-icon-text: #0a0c10;
    --color-merge-box-neutral-icon-border: rgba(0,0,0,0);
    --color-merge-box-neutral-indicator-bg: #9ea7b3;
    --color-merge-box-neutral-indicator-border: rgba(0,0,0,0);
    --color-merge-box-warning-icon-bg: #e09b13;
    --color-merge-box-warning-icon-text: #0a0c10;
    --color-merge-box-warning-icon-border: rgba(0,0,0,0);
    --color-merge-box-warning-box-border: #e09b13;
    --color-merge-box-warning-merge-highlight: rgba(0,0,0,0);
    --color-merge-box-error-icon-bg: #ff6a69;
    --color-merge-box-error-icon-text: #0a0c10;
    --color-merge-box-error-icon-border: rgba(0,0,0,0);
    --color-merge-box-error-indicator-bg: #ff6a69;
    --color-merge-box-error-indicator-border: rgba(0,0,0,0);
    --color-underlinenav-border: rgba(0,0,0,0);
    --color-underlinenav-border-hover: #bdc4cc;
    --color-underlinenav-border-active: #FF967D;
    --color-underlinenav-text: #f0f3f6;
    --color-underlinenav-text-hover: #f0f3f6;
    --color-underlinenav-text-active: #f0f3f6;
    --color-underlinenav-icon: #f0f3f6;
    --color-underlinenav-icon-hover: #7a828e;
    --color-underlinenav-icon-active: #f0f3f6;
    --color-underlinenav-counter-text: #f0f3f6;
    --color-underlinenav-counter-bg: rgba(158,167,179,0.4);
    --color-select-menu-border-secondary: #7a828e;
    --color-select-menu-shadow: 0 8px 24px #010409;
    --color-select-menu-backdrop-bg: rgba(1,4,9,0.8);
    --color-select-menu-backdrop-border: #7a828e;
    --color-select-menu-tap-highlight: rgba(82,89,100,0.5);
    --color-select-menu-tap-focus-bg: #1e60d5;
    --color-sidenav-border-active: #FF967D;
    --color-sidenav-selected-bg: #272b33;
    --color-menu-heading-text: #f0f3f6;
    --color-menu-border-active: #FF967D;
    --color-menu-bg-active: #272b33;
    --color-project-card-bg: #272b33;
    --color-project-header-bg: #0a0c10;
    --color-project-sidebar-bg: #272b33;
    --color-project-gradient-in: #272b33;
    --color-project-gradient-out: rgba(39,43,51,0);
    --color-pr-state-draft-text: #0a0c10;
    --color-pr-state-draft-bg: #9ea7b3;
    --color-pr-state-draft-border: rgba(0,0,0,0);
    --color-pr-state-open-text: #0a0c10;
    --color-pr-state-open-bg: #09b43a;
    --color-pr-state-open-border: rgba(0,0,0,0);
    --color-pr-state-merged-text: #0a0c10;
    --color-pr-state-merged-bg: #b87fff;
    --color-pr-state-merged-border: rgba(0,0,0,0);
    --color-pr-state-closed-text: #0a0c10;
    --color-pr-state-closed-bg: #ff6a69;
    --color-pr-state-closed-border: rgba(0,0,0,0);
    --color-diff-blob-num-text: #7a828e;
    --color-diff-blob-num-hover-text: #f0f3f6;
    --color-diff-blob-addition-num-hover-text: #f0f3f6;
    --color-diff-blob-addition-num-text: #f0f3f6;
    --color-diff-blob-addition-fg: #0a0c10;
    --color-diff-blob-addition-num-bg: rgba(38,205,77,0.3);
    --color-diff-blob-addition-line-bg: rgba(9,180,58,0.15);
    --color-diff-blob-addition-word-bg: #09b43a;
    --color-diff-blob-deletion-num-hover-text: #f0f3f6;
    --color-diff-blob-deletion-num-text: #f0f3f6;
    --color-diff-blob-deletion-fg: #0a0c10;
    --color-diff-blob-deletion-num-bg: rgba(255,106,105,0.3);
    --color-diff-blob-deletion-line-bg: rgba(255,106,105,0.15);
    --color-diff-blob-deletion-word-bg: #ff6a69;
    --color-diff-blob-hunk-text: #f0f3f6;
    --color-diff-blob-hunk-num-bg: rgba(64,158,255,0.4);
    --color-diff-blob-hunk-line-bg: rgba(64,158,255,0.15);
    --color-diff-blob-empty-block-bg: rgba(158,167,179,0.1);
    --color-diff-blob-selected-line-highlight-bg: rgba(224,155,19,0.15);
    --color-diff-blob-selected-line-highlight-border: #e09b13;
    --color-diff-blob-expander-hover-icon: #0a0c10;
    --color-diff-blob-expander-hover-bg: #409eff;
    --color-diff-blob-expander-icon: #0a0c10;
    --color-diff-blob-comment-button-icon: #0a0c10;
    --color-diff-blob-comment-button-bg: #409eff;
    --color-diff-blob-comment-button-gradient-bg: rgba(0,0,0,0);
    --color-diff-blob-selected-line-highlight-mix-blend-mode: screen;
    --color-global-nav-logo: #ffffff;
    --color-global-nav-bg: #272b33;
    --color-global-nav-text: #f0f3f6;
    --color-global-nav-icon: #f0f3f6;
    --color-global-nav-input-bg: #0a0c10;
    --color-global-nav-input-border: #272b33;
    --color-global-nav-input-icon: #272b33;
    --color-global-nav-input-placeholder: #7a828e;
    --color-intro-shelf-gradient-left: rgba(64,158,255,0.15);
    --color-intro-shelf-gradient-right: rgba(9,180,58,0.15);
    --color-intro-shelf-gradient-in: #0a0c10;
    --color-intro-shelf-gradient-out: rgba(255,255,255,0);
    --color-canvas-default-transparent: rgba(10,12,16,0);
    --color-marketing-icon-primary: #91cbff;
    --color-marketing-icon-secondary: #409eff;
    --color-search-keyword-hl: rgba(240,183,47,0.4);
    --color-prettylights-syntax-comment: #bdc4cc;
    --color-prettylights-syntax-constant: #91cbff;
    --color-prettylights-syntax-entity: #dbb7ff;
    --color-prettylights-syntax-storage-modifier-import: #f0f3f6;
    --color-prettylights-syntax-entity-tag: #72f088;
    --color-prettylights-syntax-keyword: #ff9492;
    --color-prettylights-syntax-string: #addcff;
    --color-prettylights-syntax-variable: #ffb757;
    --color-prettylights-syntax-brackethighlighter-unmatched: #ff6a69;
    --color-prettylights-syntax-invalid-illegal-text: #ffffff;
    --color-prettylights-syntax-invalid-illegal-bg: #e82a2f;
    --color-prettylights-syntax-carriage-return-text: #ffffff;
    --color-prettylights-syntax-carriage-return-bg: #ff4445;
    --color-prettylights-syntax-string-regexp: #72f088;
    --color-prettylights-syntax-markup-list: #fbd669;
    --color-prettylights-syntax-markup-heading: #409eff;
    --color-prettylights-syntax-markup-italic: #f0f3f6;
    --color-prettylights-syntax-markup-bold: #f0f3f6;
    --color-prettylights-syntax-markup-deleted-text: #ffdedb;
    --color-prettylights-syntax-markup-deleted-bg: #cc1421;
    --color-prettylights-syntax-markup-inserted-text: #acf7b6;
    --color-prettylights-syntax-markup-inserted-bg: #007728;
    --color-prettylights-syntax-markup-changed-text: #ffe1b4;
    --color-prettylights-syntax-markup-changed-bg: #a74c00;
    --color-prettylights-syntax-markup-ignored-text: #f0f3f6;
    --color-prettylights-syntax-markup-ignored-bg: #318bf8;
    --color-prettylights-syntax-meta-diff-range: #dbb7ff;
    --color-prettylights-syntax-brackethighlighter-angle: #bdc4cc;
    --color-prettylights-syntax-sublimelinter-gutter-mark: #7a828e;
    --color-prettylights-syntax-constant-other-reference-link: #addcff;
    --color-codemirror-text: #f0f3f6;
    --color-codemirror-bg: #0a0c10;
    --color-codemirror-gutters-bg: #0a0c10;
    --color-codemirror-guttermarker-text: #0a0c10;
    --color-codemirror-guttermarker-subtle-text: #7a828e;
    --color-codemirror-linenumber-text: #f0f3f6;
    --color-codemirror-cursor: #f0f3f6;
    --color-codemirror-selection-bg: rgba(64,158,255,0.4);
    --color-codemirror-activeline-bg: rgba(158,167,179,0.1);
    --color-codemirror-matchingbracket-text: #f0f3f6;
    --color-codemirror-lines-bg: #0a0c10;
    --color-codemirror-syntax-comment: #bdc4cc;
    --color-codemirror-syntax-constant: #91cbff;
    --color-codemirror-syntax-entity: #dbb7ff;
    --color-codemirror-syntax-keyword: #ff9492;
    --color-codemirror-syntax-storage: #ff9492;
    --color-codemirror-syntax-string: #addcff;
    --color-codemirror-syntax-support: #91cbff;
    --color-codemirror-syntax-variable: #ffb757;
    --color-checks-bg: #010409;
    --color-checks-run-border-width: 1px;
    --color-checks-container-border-width: 1px;
    --color-checks-text-primary: #f0f3f6;
    --color-checks-text-secondary: #f0f3f6;
    --color-checks-text-link: #71b7ff;
    --color-checks-btn-icon: #f0f3f6;
    --color-checks-btn-hover-icon: #f0f3f6;
    --color-checks-btn-hover-bg: rgba(158,167,179,0.1);
    --color-checks-input-text: #f0f3f6;
    --color-checks-input-placeholder-text: #7a828e;
    --color-checks-input-focus-text: #f0f3f6;
    --color-checks-input-bg: #272b33;
    --color-checks-input-shadow: 0 0 0 1px (obj) => get_1.default(obj, path);
    --color-checks-donut-error: #ff6a69;
    --color-checks-donut-pending: #f0b72f;
    --color-checks-donut-success: #09b43a;
    --color-checks-donut-neutral: #bdc4cc;
    --color-checks-dropdown-text: #f0f3f6;
    --color-checks-dropdown-bg: #272b33;
    --color-checks-dropdown-border: #7a828e;
    --color-checks-dropdown-shadow: rgba(1,4,9,0.3);
    --color-checks-dropdown-hover-text: #f0f3f6;
    --color-checks-dropdown-hover-bg: rgba(158,167,179,0.1);
    --color-checks-dropdown-btn-hover-text: #f0f3f6;
    --color-checks-dropdown-btn-hover-bg: rgba(158,167,179,0.1);
    --color-checks-scrollbar-thumb-bg: rgba(158,167,179,0.4);
    --color-checks-header-label-text: #f0f3f6;
    --color-checks-header-label-open-text: #f0f3f6;
    --color-checks-header-border: #7a828e;
    --color-checks-header-icon: #f0f3f6;
    --color-checks-line-text: #f0f3f6;
    --color-checks-line-num-text: #7a828e;
    --color-checks-line-timestamp-text: #7a828e;
    --color-checks-line-hover-bg: rgba(158,167,179,0.1);
    --color-checks-line-selected-bg: rgba(64,158,255,0.15);
    --color-checks-line-selected-num-text: #71b7ff;
    --color-checks-line-dt-fm-text: #0a0c10;
    --color-checks-line-dt-fm-bg: #e09b13;
    --color-checks-gate-bg: rgba(224,155,19,0.15);
    --color-checks-gate-text: #f0f3f6;
    --color-checks-gate-waiting-text: #f0b72f;
    --color-checks-step-header-open-bg: #272b33;
    --color-checks-step-error-text: #ff6a69;
    --color-checks-step-warning-text: #f0b72f;
    --color-checks-logline-text: #f0f3f6;
    --color-checks-logline-num-text: #7a828e;
    --color-checks-logline-debug-text: #b780ff;
    --color-checks-logline-error-text: #f0f3f6;
    --color-checks-logline-error-num-text: #7a828e;
    --color-checks-logline-error-bg: rgba(255,106,105,0.15);
    --color-checks-logline-warning-text: #f0f3f6;
    --color-checks-logline-warning-num-text: #f0b72f;
    --color-checks-logline-warning-bg: rgba(224,155,19,0.15);
    --color-checks-logline-command-text: #71b7ff;
    --color-checks-logline-section-text: #26cd4d;
    --color-checks-ansi-black: #0a0c10;
    --color-checks-ansi-black-bright: #272b33;
    --color-checks-ansi-white: #d9dee3;
    --color-checks-ansi-white-bright: #d9dee3;
    --color-checks-ansi-gray: #9ea7b3;
    --color-checks-ansi-red: #ff9492;
    --color-checks-ansi-red-bright: #ffb1af;
    --color-checks-ansi-green: #26cd4d;
    --color-checks-ansi-green-bright: #4ae168;
    --color-checks-ansi-yellow: #f0b72f;
    --color-checks-ansi-yellow-bright: #f7c843;
    --color-checks-ansi-blue: #71b7ff;
    --color-checks-ansi-blue-bright: #91cbff;
    --color-checks-ansi-magenta: #cb9eff;
    --color-checks-ansi-magenta-bright: #dbb7ff;
    --color-checks-ansi-cyan: #76e3ea;
    --color-checks-ansi-cyan-bright: #b3f0ff;
    --color-mktg-success: rgba(9,180,58,1);
    --color-mktg-info: rgba(64,158,255,1);
    --color-mktg-bg-shade-gradient-top: rgba(1,4,9,0.065);
    --color-mktg-bg-shade-gradient-bottom: rgba(1,4,9,0);
    --color-mktg-btn-bg-top: hsla(228,82%,66%,1);
    --color-mktg-btn-bg-bottom: #4969ed;
    --color-mktg-btn-bg-overlay-top: hsla(228,74%,59%,1);
    --color-mktg-btn-bg-overlay-bottom: #3355e0;
    --color-mktg-btn-text: #ffffff;
    --color-mktg-btn-primary-bg-top: hsla(137,56%,46%,1);
    --color-mktg-btn-primary-bg-bottom: #2ea44f;
    --color-mktg-btn-primary-bg-overlay-top: hsla(134,60%,38%,1);
    --color-mktg-btn-primary-bg-overlay-bottom: #22863a;
    --color-mktg-btn-primary-text: #ffffff;
    --color-mktg-btn-enterprise-bg-top: hsla(249,100%,72%,1);
    --color-mktg-btn-enterprise-bg-bottom: #6f57ff;
    --color-mktg-btn-enterprise-bg-overlay-top: hsla(248,65%,63%,1);
    --color-mktg-btn-enterprise-bg-overlay-bottom: #614eda;
    --color-mktg-btn-enterprise-text: #ffffff;
    --color-mktg-btn-outline-text: #ffffff;
    --color-mktg-btn-outline-border: rgba(255,255,255,0.3);
    --color-mktg-btn-outline-hover-text: #ffffff;
    --color-mktg-btn-outline-hover-border: rgba(255,255,255,0.5);
    --color-mktg-btn-outline-focus-border: #ffffff;
    --color-mktg-btn-outline-focus-border-inset: rgba(255,255,255,0.5);
    --color-mktg-btn-dark-text: #ffffff;
    --color-mktg-btn-dark-border: rgba(255,255,255,0.3);
    --color-mktg-btn-dark-hover-text: #ffffff;
    --color-mktg-btn-dark-hover-border: rgba(255,255,255,0.5);
    --color-mktg-btn-dark-focus-border: #ffffff;
    --color-mktg-btn-dark-focus-border-inset: rgba(255,255,255,0.5);
    --color-avatar-bg: rgba(255,255,255,0.1);
    --color-avatar-border: rgba(255,255,255,0.9);
    --color-avatar-stack-fade: #525964;
    --color-avatar-stack-fade-more: #272b33;
    --color-avatar-child-shadow: -2px -2px 0 #0a0c10;
    --color-overlay-shadow: 0 0 0 1px #525964, 0 16px 32px rgba(1,4,9,0.85);
    --color-header-text: rgba(255,255,255,0.7);
    --color-header-bg: #272b33;
    --color-header-logo: #ffffff;
    --color-header-search-bg: #0a0c10;
    --color-header-search-border: #525964;
    --color-ansi-black: #7a828e;
    --color-ansi-black-bright: #9ea7b3;
    --color-ansi-white: #d9dee3;
    --color-ansi-white-bright: #ffffff;
    --color-ansi-gray: #9ea7b3;
    --color-ansi-red: #ff9492;
    --color-ansi-red-bright: #ffb1af;
    --color-ansi-green: #26cd4d;
    --color-ansi-green-bright: #4ae168;
    --color-ansi-yellow: #f0b72f;
    --color-ansi-yellow-bright: #f7c843;
    --color-ansi-blue: #71b7ff;
    --color-ansi-blue-bright: #91cbff;
    --color-ansi-magenta: #cb9eff;
    --color-ansi-magenta-bright: #dbb7ff;
    --color-ansi-cyan: #39c5cf;
    --color-ansi-cyan-bright: #56d4dd;
    --color-btn-text: #f0f3f6;
    --color-btn-bg: #272b33;
    --color-btn-border: #7a828e;
    --color-btn-shadow: 0 0 transparent;
    --color-btn-inset-shadow: 0 0 transparent;
    --color-btn-hover-bg: #525964;
    --color-btn-hover-border: #bdc4cc;
    --color-btn-active-bg: hsla(217,10%,33%,1);
    --color-btn-active-border: #9ea7b3;
    --color-btn-selected-bg: rgba(82,89,100,0.9);
    --color-btn-focus-bg: #272b33;
    --color-btn-focus-border: #bdc4cc;
    --color-btn-focus-shadow: 0 0 0 3px rgba(189,196,204,0.3);
    --color-btn-shadow-active: inset 0 0.15em 0.3em rgba(1,4,9,0.15);
    --color-btn-shadow-input-focus: 0 0 0 0.2em rgba(64,158,255,0.3);
    --color-btn-counter-bg: #525964;
    --color-btn-primary-text: #0a0c10;
    --color-btn-primary-bg: #09b43a;
    --color-btn-primary-border: #4ae168;
    --color-btn-primary-shadow: 0 0 transparent;
    --color-btn-primary-inset-shadow: 0 0 transparent;
    --color-btn-primary-hover-bg: #26cd4d;
    --color-btn-primary-hover-border: #4ae168;
    --color-btn-primary-selected-bg: #09b43a;
    --color-btn-primary-selected-shadow: 0 0 transparent;
    --color-btn-primary-disabled-text: rgba(10,12,16,0.5);
    --color-btn-primary-disabled-bg: rgba(9,180,58,0.6);
    --color-btn-primary-disabled-border: rgba(74,225,104,0.4);
    --color-btn-primary-focus-bg: #09b43a;
    --color-btn-primary-focus-border: #7a828e;
    --color-btn-primary-focus-shadow: 0 0 0 3px rgba(46,164,79,0.4);
    --color-btn-primary-icon: #0a0c10;
    --color-btn-primary-counter-bg: rgba(1,4,9,0.15);
    --color-btn-outline-text: #71b7ff;
    --color-btn-outline-hover-text: #71b7ff;
    --color-btn-outline-hover-bg: #525964;
    --color-btn-outline-hover-border: #7a828e;
    --color-btn-outline-hover-shadow: 0 1px 0 rgba(1,4,9,0.1);
    --color-btn-outline-hover-inset-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
    --color-btn-outline-hover-counter-bg: rgba(255,255,255,0.2);
    --color-btn-outline-selected-text: #ffffff;
    --color-btn-outline-selected-bg: #2672f3;
    --color-btn-outline-selected-border: #7a828e;
    --color-btn-outline-selected-shadow: 0 0 transparent;
    --color-btn-outline-disabled-text: rgba(113,183,255,0.5);
    --color-btn-outline-disabled-bg: #0a0c10;
    --color-btn-outline-disabled-counter-bg: rgba(64,158,255,0.05);
    --color-btn-outline-focus-border: #7a828e;
    --color-btn-outline-focus-shadow: 0 0 0 3px rgba(49,139,248,0.4);
    --color-btn-outline-counter-bg: rgba(64,158,255,0.1);
    --color-btn-danger-text: #ff6a69;
    --color-btn-danger-hover-text: #0a0c10;
    --color-btn-danger-hover-bg: #ff6a69;
    --color-btn-danger-hover-border: #ff6a69;
    --color-btn-danger-hover-shadow: 0 0 transparent;
    --color-btn-danger-hover-inset-shadow: 0 0 transparent;
    --color-btn-danger-hover-icon: #0a0c10;
    --color-btn-danger-hover-counter-bg: rgba(1,4,9,0.15);
    --color-btn-danger-selected-text: #ffffff;
    --color-btn-danger-selected-bg: #ff4445;
    --color-btn-danger-selected-border: #ff9492;
    --color-btn-danger-selected-shadow: 0 0 transparent;
    --color-btn-danger-disabled-text: rgba(255,106,105,0.5);
    --color-btn-danger-disabled-bg: #0a0c10;
    --color-btn-danger-disabled-counter-bg: rgba(255,106,105,0.05);
    --color-btn-danger-focus-border: #ff6a69;
    --color-btn-danger-focus-shadow: 0 0 0 3px rgba(255,106,105,0.4);
    --color-btn-danger-counter-bg: rgba(1,4,9,0.15);
    --color-btn-danger-icon: #ff6a69;
    --color-fg-default: #f0f3f6;
    --color-fg-muted: #f0f3f6;
    --color-fg-subtle: #7a828e;
    --color-fg-on-emphasis: #0a0c10;
    --color-canvas-default: #0a0c10;
    --color-canvas-overlay: #272b33;
    --color-canvas-inset: #010409;
    --color-canvas-subtle: #272b33;
    --color-neutral-emphasis-plus: #ffffff;
    --color-neutral-emphasis: #9ea7b3;
    --color-neutral-muted: rgba(158,167,179,0.4);
    --color-neutral-subtle: rgba(158,167,179,0.1);
    --color-accent-fg: #71b7ff;
    --color-accent-emphasis: #409eff;
    --color-accent-muted: #409eff;
    --color-accent-subtle: rgba(64,158,255,0.15);
    --color-success-fg: #26cd4d;
    --color-success-emphasis: #09b43a;
    --color-success-muted: #09b43a;
    --color-success-subtle: rgba(9,180,58,0.15);
    --color-attention-fg: #f0b72f;
    --color-attention-emphasis: #e09b13;
    --color-attention-muted: #e09b13;
    --color-attention-subtle: rgba(224,155,19,0.15);
    --color-severe-fg: #e7811d;
    --color-severe-emphasis: #e7811d;
    --color-severe-muted: #e7811d;
    --color-severe-subtle: rgba(231,129,29,0.15);
    --color-danger-fg: #ff6a69;
    --color-danger-emphasis: #ff6a69;
    --color-danger-muted: #ff6a69;
    --color-danger-subtle: rgba(255,106,105,0.15);
    --color-done-fg: #b780ff;
    --color-done-emphasis: #b87fff;
    --color-done-muted: #b780ff;
    --color-done-subtle: rgba(183,128,255,0.15);
    --color-sponsors-fg: #ef6eb1;
    --color-sponsors-emphasis: #ef6eb1;
    --color-sponsors-muted: #ef6eb1;
    --color-sponsors-subtle: rgba(239,110,177,0.15);
    --color-primer-canvas-backdrop: rgba(1,4,9,0.8);
    --color-primer-canvas-sticky: rgba(10,12,16,0.95);
    --color-primer-border-active: #FF967D;
    --color-primer-border-contrast: rgba(255,255,255,0.2);
    --color-primer-shadow-highlight: 0 0 transparent;
    --color-primer-shadow-inset: 0 0 transparent;
    --color-primer-shadow-focus: 0 0 0 3px #1e60d5;
    --color-scale-black: #010409;
    --color-scale-white: #ffffff;
    --color-scale-gray-0: #ffffff;
    --color-scale-gray-1: #f0f3f6;
    --color-scale-gray-2: #d9dee3;
    --color-scale-gray-3: #bdc4cc;
    --color-scale-gray-4: #9ea7b3;
    --color-scale-gray-5: #7a828e;
    --color-scale-gray-6: #525964;
    --color-scale-gray-7: #272b33;
    --color-scale-gray-8: #272b33;
    --color-scale-gray-9: #0a0c10;
    --color-scale-blue-0: #caeaff;
    --color-scale-blue-1: #addcff;
    --color-scale-blue-2: #91cbff;
    --color-scale-blue-3: #71b7ff;
    --color-scale-blue-4: #409eff;
    --color-scale-blue-5: #409eff;
    --color-scale-blue-6: #318bf8;
    --color-scale-blue-7: #2672f3;
    --color-scale-blue-8: #1e60d5;
    --color-scale-blue-9: #194fb1;
    --color-scale-green-0: #acf7b6;
    --color-scale-green-1: #72f088;
    --color-scale-green-2: #4ae168;
    --color-scale-green-3: #26cd4d;
    --color-scale-green-4: #09b43a;
    --color-scale-green-5: #09b43a;
    --color-scale-green-6: #02a232;
    --color-scale-green-7: #008c2c;
    --color-scale-green-8: #007728;
    --color-scale-green-9: #006222;
    --color-scale-yellow-0: #fbe59e;
    --color-scale-yellow-1: #fbd669;
    --color-scale-yellow-2: #f7c843;
    --color-scale-yellow-3: #f0b72f;
    --color-scale-yellow-4: #e09b13;
    --color-scale-yellow-5: #e09b13;
    --color-scale-yellow-6: #c88508;
    --color-scale-yellow-7: #ae7104;
    --color-scale-yellow-8: #945d02;
    --color-scale-yellow-9: #7b4900;
    --color-scale-orange-0: #ffe1b4;
    --color-scale-orange-1: #ffcf86;
    --color-scale-orange-2: #ffb757;
    --color-scale-orange-3: #fe9a2d;
    --color-scale-orange-4: #e7811d;
    --color-scale-orange-5: #e7811d;
    --color-scale-orange-6: #d57014;
    --color-scale-orange-7: #bf5e0a;
    --color-scale-orange-8: #a74c00;
    --color-scale-orange-9: #8f3c00;
    --color-scale-red-0: #ffdedb;
    --color-scale-red-1: #ffc9c7;
    --color-scale-red-2: #ffb1af;
    --color-scale-red-3: #ff9492;
    --color-scale-red-4: #ff6a69;
    --color-scale-red-5: #ff6a69;
    --color-scale-red-6: #ff4445;
    --color-scale-red-7: #e82a2f;
    --color-scale-red-8: #cc1421;
    --color-scale-red-9: #ad0116;
    --color-scale-purple-0: #f0dfff;
    --color-scale-purple-1: #e6ccff;
    --color-scale-purple-2: #dbb7ff;
    --color-scale-purple-3: #cb9eff;
    --color-scale-purple-4: #b780ff;
    --color-scale-purple-5: #b87fff;
    --color-scale-purple-6: #a66bff;
    --color-scale-purple-7: #954ffd;
    --color-scale-purple-8: #8031f7;
    --color-scale-purple-9: #6921d7;
    --color-scale-pink-0: #ffdceb;
    --color-scale-pink-1: #ffc7e1;
    --color-scale-pink-2: #ffadd4;
    --color-scale-pink-3: #ff8dc7;
    --color-scale-pink-4: #ef6eb1;
    --color-scale-pink-5: #ef6eb1;
    --color-scale-pink-6: #e456a3;
    --color-scale-pink-7: #d23d91;
    --color-scale-pink-8: #b72c7d;
    --color-scale-pink-9: #9c1d6a;
    --color-scale-coral-0: #FFDED4;
    --color-scale-coral-1: #FFCBB9;
    --color-scale-coral-2: #FFB39B;
    --color-scale-coral-3: #FF967D;
    --color-scale-coral-4: #FC704F;
    --color-scale-coral-5: #FC704F;
    --color-scale-coral-6: #F75133;
    --color-scale-coral-7: #E03B21;
    --color-scale-coral-8: #C62612;
    --color-scale-coral-9: #A91500;
  }
}
[data-color-mode] {
  color: var(--color-fg-default);
  background-color: var(--color-canvas-default);
}

:root,
[data-color-mode=light][data-light-theme*=light],
[data-color-mode=dark][data-dark-theme*=light] {
  color-scheme: light;
}

@media (prefers-color-scheme: light) {
  [data-color-mode=auto][data-light-theme*=light] {
    color-scheme: light;
  }
}
@media (prefers-color-scheme: dark) {
  [data-color-mode=auto][data-dark-theme*=light] {
    color-scheme: light;
  }
}
[data-color-mode=light][data-light-theme*=dark],
[data-color-mode=dark][data-dark-theme*=dark] {
  color-scheme: dark;
}

@media (prefers-color-scheme: light) {
  [data-color-mode=auto][data-light-theme*=dark] {
    color-scheme: dark;
  }
}
@media (prefers-color-scheme: dark) {
  [data-color-mode=auto][data-dark-theme*=dark] {
    color-scheme: dark;
  }
}
* {
  box-sizing: border-box;
}

input,
select,
textarea,
button {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-fg-default);
  background-color: var(--color-canvas-default);
}

a {
  color: var(--color-accent-fg);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

b,
strong {
  font-weight: 700;
}

hr,
.rule {
  height: 0;
  margin: 15px 0;
  overflow: hidden;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--color-border-muted);
}
hr::before,
.rule::before {
  display: table;
  content: "";
}
hr::after,
.rule::after {
  display: table;
  clear: both;
  content: "";
}

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

td,
th {
  padding: 0;
}

button {
  cursor: pointer;
  border-radius: 0;
}

[hidden][hidden] {
  display: none !important;
}

details summary {
  cursor: pointer;
}
details:not([open]) > *:not(summary) {
  display: none !important;
}

kbd {
  display: inline-block;
  padding: 3px 5px;
  font: 11px ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, Liberation Mono, monospace;
  line-height: 10px;
  color: var(--color-fg-default);
  vertical-align: middle;
  background-color: var(--color-canvas-subtle);
  border: solid 1px var(--color-neutral-muted);
  border-bottom-color: var(--color-neutral-muted);
  border-radius: 6px;
  box-shadow: inset 0 -1px 0 var(--color-neutral-muted);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0;
}

h1 {
  font-size: 28px;
  font-weight: 700;
}

h2 {
  font-size: 18px;
  font-weight: 700;
}

h3 {
  font-size: 20px;
  font-weight: 700;
}

h4 {
  font-size: 16px;
  font-weight: 700;
}

h5 {
  font-size: 14px;
  font-weight: 700;
}

h6 {
  font-size: 12px;
  font-weight: 700;
}

p {
  margin-top: 0;
  margin-bottom: 10px;
}

small {
  font-size: 90%;
}

blockquote {
  margin: 0;
}

ul,
ol {
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 0;
}

ol ol,
ul ol {
  list-style-type: lower-roman;
}

ul ul ol,
ul ol ol,
ol ul ol,
ol ol ol {
  list-style-type: lower-alpha;
}

dd {
  margin-left: 0;
}

tt,
code {
  font-family: ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, Liberation Mono, monospace;
  font-size: 12px;
}

pre {
  margin-top: 0;
  margin-bottom: 0;
  font-family: ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, Liberation Mono, monospace;
  font-size: 12px;
}

.octicon {
  vertical-align: text-bottom;
}

.octicon {
  display: inline-block;
  overflow: visible !important;
  vertical-align: text-bottom;
  fill: currentColor;
}

.Box {
  background-color: var(--color-canvas-default);
  border-color: var(--color-border-default);
  border-style: solid;
  border-width: 1px;
  border-radius: 6px;
}

.Box--condensed {
  line-height: 1.25;
}
.Box--condensed .Box-header {
  padding: 8px 16px;
}
.Box--condensed .Box-body {
  padding: 8px 16px;
}
.Box--condensed .Box-footer {
  padding: 8px 16px;
}
.Box--condensed .Box-btn-octicon.btn-octicon {
  padding: 8px 16px;
  margin: -8px -16px;
  line-height: 1.25;
}
.Box--condensed .Box-row {
  padding: 8px 16px;
}

.Box--spacious .Box-header {
  padding: 24px;
  line-height: 1.25;
}
.Box--spacious .Box-title {
  font-size: 20px;
}
.Box--spacious .Box-body {
  padding: 24px;
}
.Box--spacious .Box-footer {
  padding: 24px;
}
.Box--spacious .Box-btn-octicon.btn-octicon {
  padding: 24px;
  margin: -24px -24px;
}
.Box--spacious .Box-row {
  padding: 24px;
}

.Box-header {
  padding: 16px;
  margin: -1px -1px 0;
  background-color: var(--color-canvas-subtle);
  border-color: var(--color-border-default);
  border-style: solid;
  border-width: 1px;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

.Box-title {
  font-size: 14px;
  font-weight: 700;
}

.Box-body {
  padding: 16px;
  border-bottom: 1px solid var(--color-border-default);
}
.Box-body:last-of-type {
  margin-bottom: -1px;
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
}

.Box-row {
  padding: 16px;
  margin-top: -1px;
  list-style-type: none;
  border-top-color: var(--color-border-muted);
  border-top-style: solid;
  border-top-width: 1px;
}
.Box-row:first-of-type {
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}
.Box-row:last-of-type {
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
}
.Box-row.Box-row--unread, .Box-row.unread {
  box-shadow: inset 2px 0 0 var(--color-accent-emphasis);
}
.Box-row.navigation-focus .Box-row--drag-button {
  color: var(--color-accent-fg);
  cursor: grab;
  opacity: 100;
}
.Box-row.navigation-focus.is-dragging .Box-row--drag-button {
  cursor: grabbing;
}
.Box-row.navigation-focus.sortable-chosen {
  background-color: var(--color-canvas-subtle);
}
.Box-row.navigation-focus.sortable-ghost {
  background-color: var(--color-canvas-subtle);
}
.Box-row.navigation-focus.sortable-ghost .Box-row--drag-hide {
  opacity: 0;
}

.Box-row--focus-gray.navigation-focus {
  background-color: var(--color-canvas-subtle);
}

.Box-row--focus-blue.navigation-focus {
  background-color: var(--color-accent-subtle);
}

.Box-row--hover-gray:hover {
  background-color: var(--color-canvas-subtle);
}

.Box-row--hover-blue:hover {
  background-color: var(--color-accent-subtle);
}

@media (min-width: 768px) {
  .Box-row-link {
    color: var(--color-fg-default);
    text-decoration: none;
  }
  .Box-row-link:hover {
    color: var(--color-accent-fg);
    text-decoration: none;
  }
}

.Box-row--drag-button {
  opacity: 0;
}

.Box-footer {
  padding: 16px;
  margin-top: -1px;
  border-top-color: var(--color-border-default);
  border-top-style: solid;
  border-top-width: 1px;
  border-radius: 0 0 6px 6px;
}

.Box--scrollable {
  max-height: 324px;
  overflow: scroll;
}

.Box--blue {
  border-color: var(--color-accent-muted);
}
.Box--blue .Box-header {
  background-color: var(--color-accent-subtle);
  border-color: var(--color-accent-muted);
}
.Box--blue .Box-body {
  border-color: var(--color-accent-muted);
}
.Box--blue .Box-row {
  border-color: var(--color-accent-muted);
}
.Box--blue .Box-footer {
  border-color: var(--color-accent-muted);
}

.Box--danger {
  border-color: var(--color-danger-emphasis);
}
.Box--danger .Box-row:first-of-type {
  border-color: var(--color-danger-emphasis);
}
.Box--danger .Box-body:last-of-type {
  border-color: var(--color-danger-emphasis);
}

.Box-header--blue {
  background-color: var(--color-accent-subtle);
  border-color: var(--color-accent-muted);
}

.Box-row--yellow {
  background-color: var(--color-attention-subtle);
}

.Box-row--blue {
  background-color: var(--color-accent-subtle);
}

.Box-row--gray {
  background-color: var(--color-canvas-subtle);
}

.Box-btn-octicon.btn-octicon {
  padding: 16px 16px;
  margin: -16px -16px;
  line-height: 1.5;
}

.breadcrumb-item {
  display: inline-block;
  margin-left: -0.35em;
  white-space: nowrap;
  list-style: none;
}
.breadcrumb-item::after {
  display: inline-block;
  height: 0.8em;
  margin: 0 0.5em;
  content: "";
  border-right: 0.1em solid var(--color-fg-muted);
  transform: rotate(15deg);
}
.breadcrumb-item:first-child {
  margin-left: 0;
}

.breadcrumb-item-selected::after,
.breadcrumb-item[aria-current]:not([aria-current=false])::after {
  content: none;
}

.breadcrumb-item-selected a {
  color: var(--color-fg-default);
}

.btn {
  position: relative;
  display: inline-block;
  padding: 5px 16px;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border: 1px solid;
  border-radius: 6px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.btn:hover {
  text-decoration: none;
}
.btn:disabled, .btn.disabled, .btn[aria-disabled=true] {
  cursor: default;
}
.btn:disabled .octicon, .btn.disabled .octicon, .btn[aria-disabled=true] .octicon {
  color: var(--color-fg-muted);
}
.btn i {
  font-style: normal;
  font-weight: 500;
  opacity: 0.75;
}
.btn .octicon {
  margin-right: 4px;
  color: var(--color-fg-muted);
  vertical-align: text-bottom;
}
.btn .octicon:only-child {
  margin-right: 0;
}
.btn .Counter {
  margin-left: 2px;
  color: inherit;
  text-shadow: none;
  vertical-align: top;
  background-color: var(--color-btn-counter-bg);
}
.btn .dropdown-caret {
  margin-left: 4px;
  opacity: 0.8;
}

.btn {
  color: var(--color-btn-text);
  background-color: var(--color-btn-bg);
  border-color: var(--color-btn-border);
  box-shadow: var(--color-btn-shadow), var(--color-btn-inset-shadow);
  transition: 0.2s cubic-bezier(0.3, 0, 0.5, 1);
  transition-property: color, background-color, border-color;
}
.btn:hover, .btn.hover, [open] > .btn {
  background-color: var(--color-btn-hover-bg);
  border-color: var(--color-btn-hover-border);
  transition-duration: 0.1s;
}
.btn:active {
  background-color: var(--color-btn-active-bg);
  border-color: var(--color-btn-active-border);
  transition: none;
}
.btn.selected, .btn[aria-selected=true] {
  background-color: var(--color-btn-selected-bg);
  box-shadow: var(--color-primer-shadow-inset);
}
.btn:disabled, .btn.disabled, .btn[aria-disabled=true] {
  color: var(--color-fg-muted);
  background-color: var(--color-btn-bg);
  border-color: var(--color-btn-border);
}
.btn:focus, .btn.focus {
  border-color: var(--color-btn-focus-border);
  outline: none;
  box-shadow: var(--color-btn-focus-shadow);
}

.btn-primary {
  color: var(--color-btn-primary-text);
  background-color: var(--color-btn-primary-bg);
  border-color: var(--color-btn-primary-border);
  box-shadow: var(--color-btn-primary-shadow), var(--color-btn-primary-inset-shadow);
}
.btn-primary:hover, .btn-primary.hover, [open] > .btn-primary {
  background-color: var(--color-btn-primary-hover-bg);
  border-color: var(--color-btn-primary-hover-border);
}
.btn-primary:active, .btn-primary.selected, .btn-primary[aria-selected=true] {
  background-color: var(--color-btn-primary-selected-bg);
  box-shadow: var(--color-btn-primary-selected-shadow);
}
.btn-primary:disabled, .btn-primary.disabled, .btn-primary[aria-disabled=true] {
  color: var(--color-btn-primary-disabled-text);
  background-color: var(--color-btn-primary-disabled-bg);
  border-color: var(--color-btn-primary-disabled-border);
}
.btn-primary:disabled .octicon, .btn-primary.disabled .octicon, .btn-primary[aria-disabled=true] .octicon {
  color: var(--color-btn-primary-disabled-text);
}
.btn-primary:focus, .btn-primary.focus {
  background-color: var(--color-btn-primary-focus-bg);
  border-color: var(--color-btn-primary-focus-border);
  box-shadow: var(--color-btn-primary-focus-shadow);
}
.btn-primary .Counter {
  color: inherit;
  background-color: var(--color-btn-primary-counter-bg);
}
.btn-primary .octicon {
  color: var(--color-btn-primary-icon);
}

.btn-outline {
  color: var(--color-btn-outline-text);
}
.btn-outline:hover, [open] > .btn-outline {
  color: var(--color-btn-outline-hover-text);
  background-color: var(--color-btn-outline-hover-bg);
  border-color: var(--color-btn-outline-hover-border);
  box-shadow: var(--color-btn-outline-hover-shadow), var(--color-btn-outline-hover-inset-shadow);
}
.btn-outline:hover .Counter, [open] > .btn-outline .Counter {
  background-color: var(--color-btn-outline-hover-counter-bg);
}
.btn-outline:hover .octicon, [open] > .btn-outline .octicon {
  color: inherit;
}
.btn-outline:active, .btn-outline.selected, .btn-outline[aria-selected=true] {
  color: var(--color-btn-outline-selected-text);
  background-color: var(--color-btn-outline-selected-bg);
  border-color: var(--color-btn-outline-selected-border);
  box-shadow: var(--color-btn-outline-selected-shadow);
}
.btn-outline:disabled, .btn-outline.disabled, .btn-outline[aria-disabled=true] {
  color: var(--color-btn-outline-disabled-text);
  background-color: var(--color-btn-outline-disabled-bg);
  border-color: var(--color-btn-border);
  box-shadow: none;
}
.btn-outline:disabled .Counter, .btn-outline.disabled .Counter, .btn-outline[aria-disabled=true] .Counter {
  background-color: var(--color-btn-outline-disabled-counter-bg);
}
.btn-outline:focus {
  border-color: var(--color-btn-outline-focus-border);
  box-shadow: var(--color-btn-outline-focus-shadow);
}
.btn-outline .Counter {
  color: inherit;
  background-color: var(--color-btn-outline-counter-bg);
}

.btn-danger {
  color: var(--color-btn-danger-text);
}
.btn-danger .octicon {
  color: var(--color-btn-danger-icon);
}
.btn-danger:hover, [open] > .btn-danger {
  color: var(--color-btn-danger-hover-text);
  background-color: var(--color-btn-danger-hover-bg);
  border-color: var(--color-btn-danger-hover-border);
  box-shadow: var(--color-btn-danger-hover-shadow), var(--color-btn-danger-hover-inset-shadow);
}
.btn-danger:hover .Counter, [open] > .btn-danger .Counter {
  background-color: var(--color-btn-danger-hover-counter-bg);
}
.btn-danger:hover .octicon, [open] > .btn-danger .octicon {
  color: var(--color-btn-danger-hover-icon);
}
.btn-danger:active, .btn-danger.selected, .btn-danger[aria-selected=true] {
  color: var(--color-btn-danger-selected-text);
  background-color: var(--color-btn-danger-selected-bg);
  border-color: var(--color-btn-danger-selected-border);
  box-shadow: var(--color-btn-danger-selected-shadow);
}
.btn-danger:disabled, .btn-danger.disabled, .btn-danger[aria-disabled=true] {
  color: var(--color-btn-danger-disabled-text);
  background-color: var(--color-btn-danger-disabled-bg);
  border-color: var(--color-btn-border);
  box-shadow: none;
}
.btn-danger:disabled .Counter, .btn-danger.disabled .Counter, .btn-danger[aria-disabled=true] .Counter {
  background-color: var(--color-btn-danger-disabled-counter-bg);
}
.btn-danger:disabled .octicon, .btn-danger.disabled .octicon, .btn-danger[aria-disabled=true] .octicon {
  color: var(--color-btn-danger-disabled-text);
}
.btn-danger:focus {
  border-color: var(--color-btn-danger-focus-border);
  box-shadow: var(--color-btn-danger-focus-shadow);
}
.btn-danger .Counter {
  color: inherit;
  background-color: var(--color-btn-danger-counter-bg);
}

.btn-sm {
  padding: 3px 12px;
  font-size: 12px;
  line-height: 20px;
}
.btn-sm .octicon {
  vertical-align: text-top;
}

.btn-large {
  padding: 0.75em 1.5em;
  font-size: inherit;
  line-height: 1.5;
  border-radius: 0.5em;
}

.btn-block {
  display: block;
  width: 100%;
  text-align: center;
}

.BtnGroup {
  display: inline-block;
  vertical-align: middle;
}
.BtnGroup::before {
  display: table;
  content: "";
}
.BtnGroup::after {
  display: table;
  clear: both;
  content: "";
}
.BtnGroup + .BtnGroup,
.BtnGroup + .btn {
  margin-left: 4px;
}

.BtnGroup-item {
  position: relative;
  float: left;
  border-right-width: 0;
  border-radius: 0;
}
.BtnGroup-item:first-child {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}
.BtnGroup-item:last-child {
  border-right-width: 1px;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}
.BtnGroup-item.selected, .BtnGroup-item[aria-selected=true], .BtnGroup-item:focus, .BtnGroup-item:active, .BtnGroup-item:hover {
  border-right-width: 1px;
}
.BtnGroup-item.selected + .BtnGroup-item,
.BtnGroup-item.selected + .BtnGroup-parent .BtnGroup-item, .BtnGroup-item[aria-selected=true] + .BtnGroup-item,
.BtnGroup-item[aria-selected=true] + .BtnGroup-parent .BtnGroup-item, .BtnGroup-item:focus + .BtnGroup-item,
.BtnGroup-item:focus + .BtnGroup-parent .BtnGroup-item, .BtnGroup-item:active + .BtnGroup-item,
.BtnGroup-item:active + .BtnGroup-parent .BtnGroup-item, .BtnGroup-item:hover + .BtnGroup-item,
.BtnGroup-item:hover + .BtnGroup-parent .BtnGroup-item {
  border-left-width: 0;
}

.BtnGroup-parent {
  float: left;
}
.BtnGroup-parent:first-child .BtnGroup-item {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}
.BtnGroup-parent:last-child .BtnGroup-item {
  border-right-width: 1px;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}
.BtnGroup-parent .BtnGroup-item {
  border-right-width: 0;
  border-radius: 0;
}
.BtnGroup-parent.selected .BtnGroup-item, .BtnGroup-parent[aria-selected=true] .BtnGroup-item, .BtnGroup-parent:focus .BtnGroup-item, .BtnGroup-parent:active .BtnGroup-item, .BtnGroup-parent:hover .BtnGroup-item {
  border-right-width: 1px;
}
.BtnGroup-parent.selected + .BtnGroup-item,
.BtnGroup-parent.selected + .BtnGroup-parent .BtnGroup-item, .BtnGroup-parent[aria-selected=true] + .BtnGroup-item,
.BtnGroup-parent[aria-selected=true] + .BtnGroup-parent .BtnGroup-item, .BtnGroup-parent:focus + .BtnGroup-item,
.BtnGroup-parent:focus + .BtnGroup-parent .BtnGroup-item, .BtnGroup-parent:active + .BtnGroup-item,
.BtnGroup-parent:active + .BtnGroup-parent .BtnGroup-item, .BtnGroup-parent:hover + .BtnGroup-item,
.BtnGroup-parent:hover + .BtnGroup-parent .BtnGroup-item {
  border-left-width: 0;
}

.BtnGroup-item:focus, .BtnGroup-item:active,
.BtnGroup-parent:focus,
.BtnGroup-parent:active {
  z-index: 1;
}

.btn-link {
  display: inline-block;
  padding: 0;
  font-size: inherit;
  color: var(--color-accent-fg);
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background-color: transparent;
  border: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.btn-link:hover {
  text-decoration: underline;
}
.btn-link:disabled, .btn-link:disabled:hover, .btn-link[aria-disabled=true], .btn-link[aria-disabled=true]:hover {
  color: var(--color-fg-muted);
  cursor: default;
}

.btn-invisible {
  color: var(--color-accent-fg);
  background-color: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.btn-invisible:hover, .btn-invisible.zeroclipboard-is-hover {
  color: var(--color-accent-fg);
  background: none;
  outline: none;
  box-shadow: none;
}
.btn-invisible:active, .btn-invisible:focus, .btn-invisible.selected, .btn-invisible[aria-selected=true], .btn-invisible.zeroclipboard-is-active {
  color: var(--color-accent-fg);
  background: none;
  border-color: var(--color-btn-active-border);
  outline: none;
  box-shadow: var(--color-btn-focus-shadow);
}
.btn-invisible:disabled, .btn-invisible.disabled, .btn-invisible[aria-disabled=true] {
  background-color: transparent;
}

.btn-octicon {
  display: inline-block;
  padding: 5px;
  margin-left: 5px;
  line-height: 1;
  color: var(--color-fg-muted);
  vertical-align: middle;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.btn-octicon:hover {
  color: var(--color-accent-fg);
}
.btn-octicon.disabled, .btn-octicon[aria-disabled=true] {
  color: var(--color-fg-muted);
  cursor: default;
}
.btn-octicon.disabled:hover, .btn-octicon[aria-disabled=true]:hover {
  color: var(--color-fg-muted);
}

.btn-octicon-danger:hover {
  color: var(--color-danger-fg);
}

.close-button {
  padding: 0;
  color: var(--color-fg-muted);
  background: transparent;
  border: 0;
  outline: none;
}
.close-button:hover {
  color: var(--color-fg-default);
}
.close-button:active, .close-button:focus {
  color: var(--color-fg-muted);
  border-color: var(--color-btn-active-border);
  outline: none;
  box-shadow: var(--color-btn-focus-shadow);
}

.hidden-text-expander {
  display: block;
}
.hidden-text-expander.inline {
  position: relative;
  top: -1px;
  display: inline-block;
  margin-left: 5px;
  line-height: 0;
}

.hidden-text-expander a,
.ellipsis-expander {
  display: inline-block;
  height: 12px;
  padding: 0 5px 5px;
  font-size: 12px;
  font-weight: 700;
  line-height: 6px;
  color: var(--color-fg-default);
  text-decoration: none;
  vertical-align: middle;
  background: var(--color-neutral-muted);
  border: 0;
  border-radius: 1px;
}
.hidden-text-expander a:hover,
.ellipsis-expander:hover {
  text-decoration: none;
  background-color: var(--color-accent-muted);
}
.hidden-text-expander a:active,
.ellipsis-expander:active {
  color: var(--color-fg-on-emphasis);
  background-color: var(--color-accent-emphasis);
}

.btn-with-count {
  float: left;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-with-count:focus {
  z-index: 1;
}

.social-count {
  position: relative;
  float: left;
  padding: 3px 12px;
  font-size: 12px;
  font-weight: 700;
  line-height: 20px;
  color: var(--color-fg-default);
  vertical-align: middle;
  background-color: var(--color-canvas-default);
  border: 1px solid var(--color-btn-border);
  border-left: 0;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  box-shadow: var(--color-shadow-small), var(--color-primer-shadow-highlight);
}
.social-count:hover, .social-count:active {
  text-decoration: none;
}
.social-count:hover {
  color: var(--color-accent-fg);
  cursor: pointer;
}
.social-count:focus {
  z-index: 1;
  outline: 0;
  box-shadow: var(--color-primer-shadow-focus);
}

.TableObject {
  display: table;
}

.TableObject-item {
  display: table-cell;
  width: 1%;
  white-space: nowrap;
  vertical-align: middle;
}

.TableObject-item--primary {
  width: 99%;
}

fieldset {
  padding: 0;
  margin: 0;
  border: 0;
}

label {
  font-weight: 700;
}

.form-control,
.form-select {
  padding: 5px 12px;
  font-size: 14px;
  line-height: 20px;
  color: var(--color-fg-default);
  vertical-align: middle;
  background-color: var(--color-canvas-default);
  background-repeat: no-repeat;
  background-position: right 8px center;
  border: 1px solid var(--color-border-default);
  border-radius: 6px;
  outline: none;
  box-shadow: var(--color-primer-shadow-inset);
}
.form-control.focus, .form-control:focus,
.form-select.focus,
.form-select:focus {
  border-color: var(--color-accent-emphasis);
  outline: none;
  box-shadow: var(--color-primer-shadow-focus);
}
.form-control[disabled],
.form-select[disabled] {
  color: var(--color-fg-muted);
  background-color: var(--color-input-disabled-bg);
  border-color: var(--color-border-default);
}
@supports (-webkit-touch-callout: none) {
  .form-control,
.form-select {
    font-size: 16px;
  }
  @media (min-width: 768px) {
    .form-control,
.form-select {
      font-size: 14px;
    }
  }
}

textarea.form-control {
  padding-top: 8px;
  padding-bottom: 8px;
  line-height: 1.5;
}

.input-contrast {
  background-color: var(--color-canvas-inset);
}
.input-contrast:focus {
  background-color: var(--color-canvas-default);
}

::-moz-placeholder {
  color: var(--color-fg-subtle);
  opacity: 1;
}

::placeholder {
  color: var(--color-fg-subtle);
  opacity: 1;
}

.input-sm {
  min-height: 28px;
  padding-top: 3px;
  padding-bottom: 3px;
  font-size: 12px;
  line-height: 20px;
}

.input-lg {
  font-size: 16px;
}

.input-block {
  display: block;
  width: 100%;
}

.input-monospace {
  font-family: ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, Liberation Mono, monospace;
}

.input-hide-webkit-autofill::-webkit-contacts-auto-fill-button {
  position: absolute;
  right: 0;
  display: none !important;
  pointer-events: none;
  visibility: hidden;
}

.form-checkbox {
  padding-left: 20px;
  margin: 15px 0;
  vertical-align: middle;
}
.form-checkbox label em.highlight {
  position: relative;
  left: -4px;
  padding: 2px 4px;
  font-style: normal;
  background: var(--color-attention-subtle);
  border-radius: 6px;
}
.form-checkbox input[type=checkbox],
.form-checkbox input[type=radio] {
  float: left;
  margin: 5px 0 0 -20px;
  vertical-align: middle;
}
.form-checkbox .note {
  display: block;
  margin: 0;
  font-size: 12px;
  font-weight: 400;
  color: var(--color-fg-muted);
}

.form-checkbox-details {
  display: none;
}

.form-checkbox-details-trigger:checked ~ * .form-checkbox-details,
.form-checkbox-details-trigger:checked ~ .form-checkbox-details {
  display: block;
}

.hfields {
  margin: 15px 0;
}
.hfields::before {
  display: table;
  content: "";
}
.hfields::after {
  display: table;
  clear: both;
  content: "";
}
.hfields .form-group {
  float: left;
  margin: 0 30px 0 0;
}
.hfields .form-group dt label,
.hfields .form-group .form-group-header label {
  display: inline-block;
  margin: 5px 0 0;
  color: var(--color-fg-muted);
}
.hfields .form-group dt img,
.hfields .form-group .form-group-header img {
  position: relative;
  top: -2px;
}
.hfields .btn {
  float: left;
  margin: 28px 25px 0 -20px;
}
.hfields .form-select {
  margin-top: 5px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
          appearance: none;
}

.form-actions::before {
  display: table;
  content: "";
}
.form-actions::after {
  display: table;
  clear: both;
  content: "";
}
.form-actions .btn {
  float: right;
}
.form-actions .btn + .btn {
  margin-right: 5px;
}

.form-warning {
  padding: 8px 10px;
  margin: 10px 0;
  font-size: 14px;
  color: var(--color-attention-fg);
  background: var(--color-attention-subtle);
  border: 1px solid var(--color-attention-emphasis);
  border-radius: 6px;
}
.form-warning p {
  margin: 0;
  line-height: 1.5;
}
.form-warning a {
  font-weight: 700;
}

.form-select {
  display: inline-block;
  max-width: 100%;
  height: 32px;
  padding-right: 24px;
  background-color: var(--color-canvas-default);
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0iIzU4NjA2OSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNNC40MjcgOS40MjdsMy4zOTYgMy4zOTZhLjI1MS4yNTEgMCAwMC4zNTQgMGwzLjM5Ni0zLjM5NkEuMjUuMjUgMCAwMDExLjM5NiA5SDQuNjA0YS4yNS4yNSAwIDAwLS4xNzcuNDI3ek00LjQyMyA2LjQ3TDcuODIgMy4wNzJhLjI1LjI1IDAgMDEuMzU0IDBMMTEuNTcgNi40N2EuMjUuMjUgMCAwMS0uMTc3LjQyN0g0LjZhLjI1LjI1IDAgMDEtLjE3Ny0uNDI3eiIgLz48L3N2Zz4=");
  background-repeat: no-repeat;
  background-position: right 4px center;
  background-size: 16px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.form-select::-ms-expand {
  opacity: 0;
}
.form-select[multiple] {
  height: auto;
}

[data-color-mode=light][data-light-theme*=dark] .form-select,
[data-color-mode=dark][data-dark-theme*=dark] .form-select {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0iIzZlNzY4MSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNNC40MjcgOS40MjdsMy4zOTYgMy4zOTZhLjI1MS4yNTEgMCAwMC4zNTQgMGwzLjM5Ni0zLjM5NkEuMjUuMjUgMCAwMDExLjM5NiA5SDQuNjA0YS4yNS4yNSAwIDAwLS4xNzcuNDI3ek00LjQyMyA2LjQ3TDcuODIgMy4wNzJhLjI1LjI1IDAgMDEuMzU0IDBMMTEuNTcgNi40N2EuMjUuMjUgMCAwMS0uMTc3LjQyN0g0LjZhLjI1LjI1IDAgMDEtLjE3Ny0uNDI3eiIgLz48L3N2Zz4=");
}

@media (prefers-color-scheme: light) {
  [data-color-mode=auto][data-light-theme*=dark] .form-select {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0iIzZlNzY4MSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNNC40MjcgOS40MjdsMy4zOTYgMy4zOTZhLjI1MS4yNTEgMCAwMC4zNTQgMGwzLjM5Ni0zLjM5NkEuMjUuMjUgMCAwMDExLjM5NiA5SDQuNjA0YS4yNS4yNSAwIDAwLS4xNzcuNDI3ek00LjQyMyA2LjQ3TDcuODIgMy4wNzJhLjI1LjI1IDAgMDEuMzU0IDBMMTEuNTcgNi40N2EuMjUuMjUgMCAwMS0uMTc3LjQyN0g0LjZhLjI1LjI1IDAgMDEtLjE3Ny0uNDI3eiIgLz48L3N2Zz4=");
  }
}
@media (prefers-color-scheme: dark) {
  [data-color-mode=auto][data-dark-theme*=dark] .form-select {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0iIzZlNzY4MSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNNC40MjcgOS40MjdsMy4zOTYgMy4zOTZhLjI1MS4yNTEgMCAwMC4zNTQgMGwzLjM5Ni0zLjM5NkEuMjUuMjUgMCAwMDExLjM5NiA5SDQuNjA0YS4yNS4yNSAwIDAwLS4xNzcuNDI3ek00LjQyMyA2LjQ3TDcuODIgMy4wNzJhLjI1LjI1IDAgMDEuMzU0IDBMMTEuNTcgNi40N2EuMjUuMjUgMCAwMS0uMTc3LjQyN0g0LjZhLjI1LjI1IDAgMDEtLjE3Ny0uNDI3eiIgLz48L3N2Zz4=");
  }
}
.select-sm {
  height: 28px;
  padding-top: 3px;
  padding-bottom: 3px;
  font-size: 12px;
}
.select-sm[multiple] {
  height: auto;
  min-height: 0;
}

.form-group {
  margin: 15px 0;
}
.form-group .form-control {
  width: 440px;
  max-width: 100%;
  margin-right: 5px;
  background-color: var(--color-canvas-inset);
}
.form-group .form-control:focus {
  background-color: var(--color-canvas-default);
}
.form-group .form-control.shorter {
  width: 130px;
}
.form-group .form-control.short {
  width: 250px;
}
.form-group .form-control.long {
  width: 100%;
}
.form-group textarea.form-control {
  width: 100%;
  height: 200px;
  min-height: 200px;
}
.form-group textarea.form-control.short {
  height: 50px;
  min-height: 50px;
}
.form-group dt,
.form-group .form-group-header {
  margin: 0 0 6px;
}
.form-group label {
  position: relative;
}
.form-group.flattened dt, .form-group.flattened .form-group-header {
  float: left;
  margin: 0;
  line-height: 32px;
}
.form-group.flattened dd, .form-group.flattened .form-group-body {
  line-height: 32px;
}
.form-group dd h4,
.form-group .form-group-body h4 {
  margin: 4px 0 0;
}
.form-group dd h4.is-error,
.form-group .form-group-body h4.is-error {
  color: var(--color-danger-fg);
}
.form-group dd h4.is-success,
.form-group .form-group-body h4.is-success {
  color: var(--color-success-fg);
}
.form-group dd h4 + .note,
.form-group .form-group-body h4 + .note {
  margin-top: 0;
}
.form-group.required dt label::after,
.form-group.required .form-group-header label::after {
  padding-left: 5px;
  color: var(--color-danger-fg);
  content: "*";
}
.form-group .success,
.form-group .error,
.form-group .indicator {
  display: none;
  font-size: 12px;
  font-weight: 700;
}
.form-group.loading {
  opacity: 0.5;
}
.form-group.loading .indicator {
  display: inline;
}
.form-group.loading .spinner {
  display: inline-block;
  vertical-align: middle;
}
.form-group.successful .success {
  display: inline;
  color: var(--color-success-fg);
}
.form-group.successed .success,
.form-group.successed .warning,
.form-group.successed .error, .form-group.warn .success,
.form-group.warn .warning,
.form-group.warn .error, .form-group.errored .success,
.form-group.errored .warning,
.form-group.errored .error {
  position: absolute;
  z-index: 10;
  display: block;
  max-width: 450px;
  padding: 4px 8px;
  margin: 8px 0 0;
  font-size: 12px;
  font-weight: 400;
  border-style: solid;
  border-width: 1px;
  border-radius: 6px;
}
.form-group.successed .success::after, .form-group.successed .success::before,
.form-group.successed .warning::after,
.form-group.successed .warning::before,
.form-group.successed .error::after,
.form-group.successed .error::before, .form-group.warn .success::after, .form-group.warn .success::before,
.form-group.warn .warning::after,
.form-group.warn .warning::before,
.form-group.warn .error::after,
.form-group.warn .error::before, .form-group.errored .success::after, .form-group.errored .success::before,
.form-group.errored .warning::after,
.form-group.errored .warning::before,
.form-group.errored .error::after,
.form-group.errored .error::before {
  position: absolute;
  bottom: 100%;
  left: 10px;
  z-index: 15;
  width: 0;
  height: 0;
  pointer-events: none;
  content: " ";
  border: solid transparent;
}
.form-group.successed .success::after,
.form-group.successed .warning::after,
.form-group.successed .error::after, .form-group.warn .success::after,
.form-group.warn .warning::after,
.form-group.warn .error::after, .form-group.errored .success::after,
.form-group.errored .warning::after,
.form-group.errored .error::after {
  border-width: 5px;
}
.form-group.successed .success::before,
.form-group.successed .warning::before,
.form-group.successed .error::before, .form-group.warn .success::before,
.form-group.warn .warning::before,
.form-group.warn .error::before, .form-group.errored .success::before,
.form-group.errored .warning::before,
.form-group.errored .error::before {
  margin-left: -1px;
  border-width: 6px;
}
.form-group.successed .success {
  color: var(--color-fg-default);
  background-color: var(--color-canvas-default);
  background-image: linear-gradient(var(--color-success-subtle), var(--color-success-subtle));
  border-color: var(--color-success-muted);
}
.form-group.successed .success::after {
  border-bottom-color: var(--color-success-subtle);
}
.form-group.successed .success::before {
  border-bottom-color: var(--color-success-muted);
}
.form-group.warn .form-control {
  border-color: var(--color-attention-emphasis);
}
.form-group.warn .warning {
  color: var(--color-fg-default);
  background-color: var(--color-canvas-default);
  background-image: linear-gradient(var(--color-attention-subtle), var(--color-attention-subtle));
  border-color: var(--color-attention-muted);
}
.form-group.warn .warning::after {
  border-bottom-color: var(--color-attention-subtle);
}
.form-group.warn .warning::before {
  border-bottom-color: var(--color-attention-muted);
}
.form-group.errored .form-control {
  border-color: var(--color-danger-emphasis);
}
.form-group.errored label {
  color: var(--color-danger-fg);
}
.form-group.errored .error {
  color: var(--color-fg-default);
  background-color: var(--color-canvas-default);
  background-image: linear-gradient(var(--color-danger-subtle), var(--color-danger-subtle));
  border-color: var(--color-danger-muted);
}
.form-group.errored .error::after {
  border-bottom-color: var(--color-danger-subtle);
}
.form-group.errored .error::before {
  border-bottom-color: var(--color-danger-muted);
}

.note {
  min-height: 17px;
  margin: 4px 0 2px;
  font-size: 12px;
  color: var(--color-fg-muted);
}
.note .spinner {
  margin-right: 3px;
  vertical-align: middle;
}

dl.form-group > dd .form-control.is-autocheck-loading, dl.form-group > dd .form-control.is-autocheck-successful, dl.form-group > dd .form-control.is-autocheck-errored,
.form-group > .form-group-body .form-control.is-autocheck-loading,
.form-group > .form-group-body .form-control.is-autocheck-successful,
.form-group > .form-group-body .form-control.is-autocheck-errored {
  padding-right: 30px;
}
dl.form-group > dd .form-control.is-autocheck-loading,
.form-group > .form-group-body .form-control.is-autocheck-loading {
  background-image: url("/images/spinners/octocat-spinner-16px.gif");
}
dl.form-group > dd .form-control.is-autocheck-successful,
.form-group > .form-group-body .form-control.is-autocheck-successful {
  background-image: url("/images/modules/ajax/success.png");
}
dl.form-group > dd .form-control.is-autocheck-errored,
.form-group > .form-group-body .form-control.is-autocheck-errored {
  background-image: url("/images/modules/ajax/error.png");
}

@media only screen and (-moz-min-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  dl.form-group > dd .form-control.is-autocheck-loading, dl.form-group > dd .form-control.is-autocheck-successful, dl.form-group > dd .form-control.is-autocheck-errored,
.form-group > .form-group-body .form-control.is-autocheck-loading,
.form-group > .form-group-body .form-control.is-autocheck-successful,
.form-group > .form-group-body .form-control.is-autocheck-errored {
    background-size: 16px 16px;
  }
  dl.form-group > dd .form-control.is-autocheck-loading,
.form-group > .form-group-body .form-control.is-autocheck-loading {
    background-image: url("/images/spinners/octocat-spinner-32.gif");
  }
  dl.form-group > dd .form-control.is-autocheck-successful,
.form-group > .form-group-body .form-control.is-autocheck-successful {
    background-image: url("/images/modules/ajax/success@2x.png");
  }
  dl.form-group > dd .form-control.is-autocheck-errored,
.form-group > .form-group-body .form-control.is-autocheck-errored {
    background-image: url("/images/modules/ajax/error@2x.png");
  }
}
.status-indicator {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 5px;
}
.status-indicator .octicon {
  display: none;
}

.status-indicator-success::before {
  content: "";
}
.status-indicator-success .octicon-check {
  display: inline-block;
  color: var(--color-success-fg);
  fill: var(--color-success-fg);
}
.status-indicator-success .octicon-x {
  display: none;
}

.status-indicator-failed::before {
  content: "";
}
.status-indicator-failed .octicon-check {
  display: none;
}
.status-indicator-failed .octicon-x {
  display: inline-block;
  color: var(--color-danger-fg);
  fill: var(--color-danger-fg);
}

.status-indicator-loading {
  width: 16px;
  background-image: url("/images/spinners/octocat-spinner-32-EAF2F5.gif");
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 16px;
}

.inline-form {
  display: inline-block;
}
.inline-form .btn-plain {
  background-color: transparent;
  border: 0;
}

.drag-and-drop {
  padding: 7px 10px;
  margin: 0;
  font-size: 13px;
  line-height: 16px;
  color: var(--color-fg-muted);
  background-color: var(--color-canvas-subtle);
  border: 1px solid var(--color-border-default);
  border-top: 0;
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
}
.drag-and-drop .default,
.drag-and-drop .loading,
.drag-and-drop .error {
  display: none;
}
.drag-and-drop .error {
  color: var(--color-danger-fg);
}
.drag-and-drop img {
  vertical-align: top;
}

.is-default .drag-and-drop .default {
  display: inline-block;
}

.is-uploading .drag-and-drop .loading {
  display: inline-block;
}

.is-bad-file .drag-and-drop .bad-file {
  display: inline-block;
}

.is-duplicate-filename .drag-and-drop .duplicate-filename {
  display: inline-block;
}

.is-too-big .drag-and-drop .too-big {
  display: inline-block;
}

.is-hidden-file .drag-and-drop .hidden-file {
  display: inline-block;
}

.is-empty .drag-and-drop .empty {
  display: inline-block;
}

.is-bad-permissions .drag-and-drop .bad-permissions {
  display: inline-block;
}

.is-repository-required .drag-and-drop .repository-required {
  display: inline-block;
}

.drag-and-drop-error-info {
  font-weight: 400;
  color: var(--color-fg-muted);
}
.drag-and-drop-error-info a {
  color: var(--color-accent-fg);
}

.is-failed .drag-and-drop .failed-request {
  display: inline-block;
}

.manual-file-chooser {
  position: absolute;
  width: 240px;
  padding: 5px;
  margin-left: -80px;
  cursor: pointer;
  opacity: 0.0001;
}

.manual-file-chooser:hover + .manual-file-chooser-text {
  text-decoration: underline;
}

.btn .manual-file-chooser {
  top: 0;
  padding: 0;
  line-height: 34px;
}

.upload-enabled textarea {
  display: block;
  border-bottom: 1px dashed var(--color-border-default);
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.upload-enabled.focused {
  border-radius: 6px;
  box-shadow: var(--color-primer-shadow-inset), var(--color-primer-shadow-focus);
}
.upload-enabled.focused .form-control {
  box-shadow: none;
}
.upload-enabled.focused .drag-and-drop {
  border-color: var(--color-accent-emphasis);
}

.dragover textarea,
.dragover .drag-and-drop {
  box-shadow: #c9ff00 0 0 3px;
}

.write-content {
  position: relative;
}

.previewable-comment-form {
  position: relative;
}
.previewable-comment-form .tabnav {
  position: relative;
  padding: 8px 8px 0;
}
.previewable-comment-form .comment {
  border: 1px solid var(--color-border-default);
}
.previewable-comment-form .comment-form-error {
  margin-bottom: 8px;
}
.previewable-comment-form .write-content,
.previewable-comment-form .preview-content {
  display: none;
  margin: 0 8px 8px;
}
.previewable-comment-form.write-selected .write-content, .previewable-comment-form.preview-selected .preview-content {
  display: block;
}
.previewable-comment-form textarea {
  display: block;
  width: 100%;
  min-height: 100px;
  max-height: 500px;
  padding: 8px;
  resize: vertical;
}

.form-action-spacious {
  margin-top: 10px;
}

div.composer {
  margin-top: 0;
  border: 0;
}

.composer .comment-form-textarea {
  height: 200px;
  min-height: 200px;
}

.composer .tabnav {
  margin: 0 0 10px;
}

h2.account {
  margin: 15px 0 0;
  font-size: 18px;
  font-weight: 400;
  color: var(--color-fg-muted);
}

p.explain {
  position: relative;
  font-size: 12px;
  color: var(--color-fg-muted);
}
p.explain strong {
  color: var(--color-fg-default);
}
p.explain .octicon {
  margin-right: 5px;
  color: var(--color-fg-muted);
}
p.explain .minibutton {
  top: -4px;
  float: right;
}

.form-group label {
  position: static;
}

.input-group {
  display: table;
}
.input-group .form-control {
  position: relative;
  width: 100%;
}
.input-group .form-control:focus {
  z-index: 2;
}
.input-group .form-control + .btn {
  margin-left: 0;
}
.input-group.inline {
  display: inline-table;
}

.input-group .form-control,
.input-group-button {
  display: table-cell;
}

.input-group-button {
  width: 1%;
  vertical-align: middle;
}

.input-group .form-control:first-child,
.input-group-button:first-child .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group-button:first-child .btn {
  margin-right: -1px;
}

.input-group .form-control:last-child,
.input-group-button:last-child .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.input-group-button:last-child .btn {
  margin-left: -1px;
}

.radio-group::before {
  display: table;
  content: "";
}
.radio-group::after {
  display: table;
  clear: both;
  content: "";
}

.radio-label {
  float: left;
  padding: 6px 16px 6px 36px;
  margin-left: -1px;
  font-size: 14px;
  line-height: 20px;
  color: var(--color-fg-default);
  cursor: pointer;
  border: 1px solid var(--color-border-default);
}
:checked + .radio-label {
  position: relative;
  z-index: 1;
  border-color: var(--color-accent-emphasis);
}
.radio-label:first-of-type {
  margin-left: 0;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}
.radio-label:last-of-type {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}

.radio-input {
  z-index: 3;
  float: left;
  margin: 10px -32px 0 16px;
}

.container-sm {
  max-width: 544px;
  margin-right: auto;
  margin-left: auto;
}

.container-md {
  max-width: 768px;
  margin-right: auto;
  margin-left: auto;
}

.container-lg {
  max-width: 1012px;
  margin-right: auto;
  margin-left: auto;
}

.container-xl {
  max-width: 1280px;
  margin-right: auto;
  margin-left: auto;
}

.col-1 {
  width: 8.33333333%;
}

.col-2 {
  width: 16.66666666%;
}

.col-3 {
  width: 24.99999999%;
}

.col-4 {
  width: 33.33333332%;
}

.col-5 {
  width: 41.66666665%;
}

.col-6 {
  width: 49.99999998%;
}

.col-7 {
  width: 58.33333331%;
}

.col-8 {
  width: 66.66666664%;
}

.col-9 {
  width: 74.99999997%;
}

.col-10 {
  width: 83.3333333%;
}

.col-11 {
  width: 91.66666663%;
}

.col-12 {
  width: 100%;
}

@media (min-width: 544px) {
  .col-sm-1 {
    width: 8.33333333%;
  }

  .col-sm-2 {
    width: 16.66666666%;
  }

  .col-sm-3 {
    width: 24.99999999%;
  }

  .col-sm-4 {
    width: 33.33333332%;
  }

  .col-sm-5 {
    width: 41.66666665%;
  }

  .col-sm-6 {
    width: 49.99999998%;
  }

  .col-sm-7 {
    width: 58.33333331%;
  }

  .col-sm-8 {
    width: 66.66666664%;
  }

  .col-sm-9 {
    width: 74.99999997%;
  }

  .col-sm-10 {
    width: 83.3333333%;
  }

  .col-sm-11 {
    width: 91.66666663%;
  }

  .col-sm-12 {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .col-md-1 {
    width: 8.33333333%;
  }

  .col-md-2 {
    width: 16.66666666%;
  }

  .col-md-3 {
    width: 24.99999999%;
  }

  .col-md-4 {
    width: 33.33333332%;
  }

  .col-md-5 {
    width: 41.66666665%;
  }

  .col-md-6 {
    width: 49.99999998%;
  }

  .col-md-7 {
    width: 58.33333331%;
  }

  .col-md-8 {
    width: 66.66666664%;
  }

  .col-md-9 {
    width: 74.99999997%;
  }

  .col-md-10 {
    width: 83.3333333%;
  }

  .col-md-11 {
    width: 91.66666663%;
  }

  .col-md-12 {
    width: 100%;
  }
}
@media (min-width: 1012px) {
  .col-lg-1 {
    width: 8.33333333%;
  }

  .col-lg-2 {
    width: 16.66666666%;
  }

  .col-lg-3 {
    width: 24.99999999%;
  }

  .col-lg-4 {
    width: 33.33333332%;
  }

  .col-lg-5 {
    width: 41.66666665%;
  }

  .col-lg-6 {
    width: 49.99999998%;
  }

  .col-lg-7 {
    width: 58.33333331%;
  }

  .col-lg-8 {
    width: 66.66666664%;
  }

  .col-lg-9 {
    width: 74.99999997%;
  }

  .col-lg-10 {
    width: 83.3333333%;
  }

  .col-lg-11 {
    width: 91.66666663%;
  }

  .col-lg-12 {
    width: 100%;
  }
}
@media (min-width: 1280px) {
  .col-xl-1 {
    width: 8.33333333%;
  }

  .col-xl-2 {
    width: 16.66666666%;
  }

  .col-xl-3 {
    width: 24.99999999%;
  }

  .col-xl-4 {
    width: 33.33333332%;
  }

  .col-xl-5 {
    width: 41.66666665%;
  }

  .col-xl-6 {
    width: 49.99999998%;
  }

  .col-xl-7 {
    width: 58.33333331%;
  }

  .col-xl-8 {
    width: 66.66666664%;
  }

  .col-xl-9 {
    width: 74.99999997%;
  }

  .col-xl-10 {
    width: 83.3333333%;
  }

  .col-xl-11 {
    width: 91.66666663%;
  }

  .col-xl-12 {
    width: 100%;
  }
}
.gutter {
  margin-right: -16px;
  margin-left: -16px;
}
.gutter > [class*=col-] {
  padding-right: 16px !important;
  padding-left: 16px !important;
}

.gutter-condensed {
  margin-right: -8px;
  margin-left: -8px;
}
.gutter-condensed > [class*=col-] {
  padding-right: 8px !important;
  padding-left: 8px !important;
}

.gutter-spacious {
  margin-right: -24px;
  margin-left: -24px;
}
.gutter-spacious > [class*=col-] {
  padding-right: 24px !important;
  padding-left: 24px !important;
}

@media (min-width: 544px) {
  .gutter-sm {
    margin-right: -16px;
    margin-left: -16px;
  }
  .gutter-sm > [class*=col-] {
    padding-right: 16px !important;
    padding-left: 16px !important;
  }

  .gutter-sm-condensed {
    margin-right: -8px;
    margin-left: -8px;
  }
  .gutter-sm-condensed > [class*=col-] {
    padding-right: 8px !important;
    padding-left: 8px !important;
  }

  .gutter-sm-spacious {
    margin-right: -24px;
    margin-left: -24px;
  }
  .gutter-sm-spacious > [class*=col-] {
    padding-right: 24px !important;
    padding-left: 24px !important;
  }
}
@media (min-width: 768px) {
  .gutter-md {
    margin-right: -16px;
    margin-left: -16px;
  }
  .gutter-md > [class*=col-] {
    padding-right: 16px !important;
    padding-left: 16px !important;
  }

  .gutter-md-condensed {
    margin-right: -8px;
    margin-left: -8px;
  }
  .gutter-md-condensed > [class*=col-] {
    padding-right: 8px !important;
    padding-left: 8px !important;
  }

  .gutter-md-spacious {
    margin-right: -24px;
    margin-left: -24px;
  }
  .gutter-md-spacious > [class*=col-] {
    padding-right: 24px !important;
    padding-left: 24px !important;
  }
}
@media (min-width: 1012px) {
  .gutter-lg {
    margin-right: -16px;
    margin-left: -16px;
  }
  .gutter-lg > [class*=col-] {
    padding-right: 16px !important;
    padding-left: 16px !important;
  }

  .gutter-lg-condensed {
    margin-right: -8px;
    margin-left: -8px;
  }
  .gutter-lg-condensed > [class*=col-] {
    padding-right: 8px !important;
    padding-left: 8px !important;
  }

  .gutter-lg-spacious {
    margin-right: -24px;
    margin-left: -24px;
  }
  .gutter-lg-spacious > [class*=col-] {
    padding-right: 24px !important;
    padding-left: 24px !important;
  }
}
@media (min-width: 1280px) {
  .gutter-xl {
    margin-right: -16px;
    margin-left: -16px;
  }
  .gutter-xl > [class*=col-] {
    padding-right: 16px !important;
    padding-left: 16px !important;
  }

  .gutter-xl-condensed {
    margin-right: -8px;
    margin-left: -8px;
  }
  .gutter-xl-condensed > [class*=col-] {
    padding-right: 8px !important;
    padding-left: 8px !important;
  }

  .gutter-xl-spacious {
    margin-right: -24px;
    margin-left: -24px;
  }
  .gutter-xl-spacious > [class*=col-] {
    padding-right: 24px !important;
    padding-left: 24px !important;
  }
}
.offset-1 {
  margin-left: 8.33333333% !important;
}

.offset-2 {
  margin-left: 16.66666666% !important;
}

.offset-3 {
  margin-left: 24.99999999% !important;
}

.offset-4 {
  margin-left: 33.33333332% !important;
}

.offset-5 {
  margin-left: 41.66666665% !important;
}

.offset-6 {
  margin-left: 49.99999998% !important;
}

.offset-7 {
  margin-left: 58.33333331% !important;
}

.offset-8 {
  margin-left: 66.66666664% !important;
}

.offset-9 {
  margin-left: 74.99999997% !important;
}

.offset-10 {
  margin-left: 83.3333333% !important;
}

.offset-11 {
  margin-left: 91.66666663% !important;
}

@media (min-width: 544px) {
  .offset-sm-1 {
    margin-left: 8.33333333% !important;
  }

  .offset-sm-2 {
    margin-left: 16.66666666% !important;
  }

  .offset-sm-3 {
    margin-left: 24.99999999% !important;
  }

  .offset-sm-4 {
    margin-left: 33.33333332% !important;
  }

  .offset-sm-5 {
    margin-left: 41.66666665% !important;
  }

  .offset-sm-6 {
    margin-left: 49.99999998% !important;
  }

  .offset-sm-7 {
    margin-left: 58.33333331% !important;
  }

  .offset-sm-8 {
    margin-left: 66.66666664% !important;
  }

  .offset-sm-9 {
    margin-left: 74.99999997% !important;
  }

  .offset-sm-10 {
    margin-left: 83.3333333% !important;
  }

  .offset-sm-11 {
    margin-left: 91.66666663% !important;
  }
}
@media (min-width: 768px) {
  .offset-md-1 {
    margin-left: 8.33333333% !important;
  }

  .offset-md-2 {
    margin-left: 16.66666666% !important;
  }

  .offset-md-3 {
    margin-left: 24.99999999% !important;
  }

  .offset-md-4 {
    margin-left: 33.33333332% !important;
  }

  .offset-md-5 {
    margin-left: 41.66666665% !important;
  }

  .offset-md-6 {
    margin-left: 49.99999998% !important;
  }

  .offset-md-7 {
    margin-left: 58.33333331% !important;
  }

  .offset-md-8 {
    margin-left: 66.66666664% !important;
  }

  .offset-md-9 {
    margin-left: 74.99999997% !important;
  }

  .offset-md-10 {
    margin-left: 83.3333333% !important;
  }

  .offset-md-11 {
    margin-left: 91.66666663% !important;
  }
}
@media (min-width: 1012px) {
  .offset-lg-1 {
    margin-left: 8.33333333% !important;
  }

  .offset-lg-2 {
    margin-left: 16.66666666% !important;
  }

  .offset-lg-3 {
    margin-left: 24.99999999% !important;
  }

  .offset-lg-4 {
    margin-left: 33.33333332% !important;
  }

  .offset-lg-5 {
    margin-left: 41.66666665% !important;
  }

  .offset-lg-6 {
    margin-left: 49.99999998% !important;
  }

  .offset-lg-7 {
    margin-left: 58.33333331% !important;
  }

  .offset-lg-8 {
    margin-left: 66.66666664% !important;
  }

  .offset-lg-9 {
    margin-left: 74.99999997% !important;
  }

  .offset-lg-10 {
    margin-left: 83.3333333% !important;
  }

  .offset-lg-11 {
    margin-left: 91.66666663% !important;
  }
}
@media (min-width: 1280px) {
  .offset-xl-1 {
    margin-left: 8.33333333% !important;
  }

  .offset-xl-2 {
    margin-left: 16.66666666% !important;
  }

  .offset-xl-3 {
    margin-left: 24.99999999% !important;
  }

  .offset-xl-4 {
    margin-left: 33.33333332% !important;
  }

  .offset-xl-5 {
    margin-left: 41.66666665% !important;
  }

  .offset-xl-6 {
    margin-left: 49.99999998% !important;
  }

  .offset-xl-7 {
    margin-left: 58.33333331% !important;
  }

  .offset-xl-8 {
    margin-left: 66.66666664% !important;
  }

  .offset-xl-9 {
    margin-left: 74.99999997% !important;
  }

  .offset-xl-10 {
    margin-left: 83.3333333% !important;
  }

  .offset-xl-11 {
    margin-left: 91.66666663% !important;
  }
}
.Layout {
  display: grid;
  --Layout-sidebar-width: 220px;
  --Layout-gutter: 16px;
  grid-auto-flow: column;
  grid-template-columns: auto 0 1fr;
  grid-gap: var(--Layout-gutter);
}
@media (max-width: calc(544px - 1px)) {
  .Layout {
    grid-auto-flow: row;
    grid-template-columns: 1fr !important;
  }
  .Layout .Layout-sidebar,
.Layout .Layout-divider,
.Layout .Layout-main {
    width: 100% !important;
    grid-column: 1 !important;
  }
  .Layout.Layout--sidebarPosition-flowRow-start .Layout-sidebar {
    grid-row: 1;
  }
  .Layout.Layout--sidebarPosition-flowRow-start .Layout-main {
    grid-row: 2/span 2;
  }
  .Layout.Layout--sidebarPosition-flowRow-end .Layout-sidebar {
    grid-row: 2/span 2;
  }
  .Layout.Layout--sidebarPosition-flowRow-end .Layout-main {
    grid-row: 1;
  }
  .Layout.Layout--sidebarPosition-flowRow-none .Layout-sidebar {
    display: none;
  }
  .Layout.Layout--divided {
    --Layout-gutter: 0;
  }
  .Layout.Layout--divided .Layout-divider {
    height: 1px;
    grid-row: 2;
  }
  .Layout.Layout--divided .Layout-divider.Layout-divider--flowRow-hidden {
    display: none;
  }
  .Layout.Layout--divided .Layout-divider.Layout-divider--flowRow-shallow {
    height: 8px;
    margin-right: 0;
    background: var(--color-canvas-inset);
    border-color: var(--color-border-default);
    border-style: solid;
    border-width: 1px 0;
  }
  .Layout.Layout--divided .Layout-main {
    grid-row: 3/span 1;
  }
  .Layout.Layout--divided.Layout--sidebarPosition-flowRow-end .Layout-sidebar {
    grid-row: 3/span 1;
  }
  .Layout.Layout--divided.Layout--sidebarPosition-flowRow-end .Layout-main {
    grid-row: 1;
  }
}
@media (max-width: calc(768px - 1px)) {
  .Layout.Layout--flowRow-until-md {
    grid-auto-flow: row;
    grid-template-columns: 1fr !important;
  }
  .Layout.Layout--flowRow-until-md .Layout-sidebar,
.Layout.Layout--flowRow-until-md .Layout-divider,
.Layout.Layout--flowRow-until-md .Layout-main {
    width: 100% !important;
    grid-column: 1 !important;
  }
  .Layout.Layout--flowRow-until-md.Layout--sidebarPosition-flowRow-start .Layout-sidebar {
    grid-row: 1;
  }
  .Layout.Layout--flowRow-until-md.Layout--sidebarPosition-flowRow-start .Layout-main {
    grid-row: 2/span 2;
  }
  .Layout.Layout--flowRow-until-md.Layout--sidebarPosition-flowRow-end .Layout-sidebar {
    grid-row: 2/span 2;
  }
  .Layout.Layout--flowRow-until-md.Layout--sidebarPosition-flowRow-end .Layout-main {
    grid-row: 1;
  }
  .Layout.Layout--flowRow-until-md.Layout--sidebarPosition-flowRow-none .Layout-sidebar {
    display: none;
  }
  .Layout.Layout--flowRow-until-md.Layout--divided {
    --Layout-gutter: 0;
  }
  .Layout.Layout--flowRow-until-md.Layout--divided .Layout-divider {
    height: 1px;
    grid-row: 2;
  }
  .Layout.Layout--flowRow-until-md.Layout--divided .Layout-divider.Layout-divider--flowRow-hidden {
    display: none;
  }
  .Layout.Layout--flowRow-until-md.Layout--divided .Layout-divider.Layout-divider--flowRow-shallow {
    height: 8px;
    margin-right: 0;
    background: var(--color-canvas-inset);
    border-color: var(--color-border-default);
    border-style: solid;
    border-width: 1px 0;
  }
  .Layout.Layout--flowRow-until-md.Layout--divided .Layout-main {
    grid-row: 3/span 1;
  }
  .Layout.Layout--flowRow-until-md.Layout--divided.Layout--sidebarPosition-flowRow-end .Layout-sidebar {
    grid-row: 3/span 1;
  }
  .Layout.Layout--flowRow-until-md.Layout--divided.Layout--sidebarPosition-flowRow-end .Layout-main {
    grid-row: 1;
  }
}
@media (max-width: calc(1012px - 1px)) {
  .Layout.Layout--flowRow-until-lg {
    grid-auto-flow: row;
    grid-template-columns: 1fr !important;
  }
  .Layout.Layout--flowRow-until-lg .Layout-sidebar,
.Layout.Layout--flowRow-until-lg .Layout-divider,
.Layout.Layout--flowRow-until-lg .Layout-main {
    width: 100% !important;
    grid-column: 1 !important;
  }
  .Layout.Layout--flowRow-until-lg.Layout--sidebarPosition-flowRow-start .Layout-sidebar {
    grid-row: 1;
  }
  .Layout.Layout--flowRow-until-lg.Layout--sidebarPosition-flowRow-start .Layout-main {
    grid-row: 2/span 2;
  }
  .Layout.Layout--flowRow-until-lg.Layout--sidebarPosition-flowRow-end .Layout-sidebar {
    grid-row: 2/span 2;
  }
  .Layout.Layout--flowRow-until-lg.Layout--sidebarPosition-flowRow-end .Layout-main {
    grid-row: 1;
  }
  .Layout.Layout--flowRow-until-lg.Layout--sidebarPosition-flowRow-none .Layout-sidebar {
    display: none;
  }
  .Layout.Layout--flowRow-until-lg.Layout--divided {
    --Layout-gutter: 0;
  }
  .Layout.Layout--flowRow-until-lg.Layout--divided .Layout-divider {
    height: 1px;
    grid-row: 2;
  }
  .Layout.Layout--flowRow-until-lg.Layout--divided .Layout-divider.Layout-divider--flowRow-hidden {
    display: none;
  }
  .Layout.Layout--flowRow-until-lg.Layout--divided .Layout-divider.Layout-divider--flowRow-shallow {
    height: 8px;
    margin-right: 0;
    background: var(--color-canvas-inset);
    border-color: var(--color-border-default);
    border-style: solid;
    border-width: 1px 0;
  }
  .Layout.Layout--flowRow-until-lg.Layout--divided .Layout-main {
    grid-row: 3/span 1;
  }
  .Layout.Layout--flowRow-until-lg.Layout--divided.Layout--sidebarPosition-flowRow-end .Layout-sidebar {
    grid-row: 3/span 1;
  }
  .Layout.Layout--flowRow-until-lg.Layout--divided.Layout--sidebarPosition-flowRow-end .Layout-main {
    grid-row: 1;
  }
}
.Layout .Layout-sidebar {
  grid-column: 1;
}
.Layout .Layout-divider {
  display: none;
}
.Layout .Layout-main {
  grid-column: 2/span 2;
}
@media (min-width: 1012px) {
  .Layout {
    --Layout-gutter: 24px;
  }
}
.Layout.Layout--gutter-none {
  --Layout-gutter: 0;
}
.Layout.Layout--gutter-condensed {
  --Layout-gutter: 16px;
}
@media (min-width: 1012px) {
  .Layout.Layout--gutter-spacious {
    --Layout-gutter: 32px;
  }
}
@media (min-width: 1280px) {
  .Layout.Layout--gutter-spacious {
    --Layout-gutter: 40px;
  }
}
@media (min-width: 544px) {
  .Layout {
    --Layout-sidebar-width: 220px;
  }
}
@media (min-width: 768px) {
  .Layout {
    --Layout-sidebar-width: 256px;
  }
}
@media (min-width: 1012px) {
  .Layout {
    --Layout-sidebar-width: 296px;
  }
}
@media (min-width: 1280px) {
  .Layout {
    --Layout-sidebar-width: 320px;
  }
}
@media (min-width: 768px) {
  .Layout.Layout--sidebar-narrow {
    --Layout-sidebar-width: 240px;
  }
}
@media (min-width: 1012px) {
  .Layout.Layout--sidebar-narrow {
    --Layout-sidebar-width: 256px;
  }
}
@media (min-width: 1280px) {
  .Layout.Layout--sidebar-narrow {
    --Layout-sidebar-width: 296px;
  }
}
@media (min-width: 768px) {
  .Layout.Layout--sidebar-wide {
    --Layout-sidebar-width: 296px;
  }
}
@media (min-width: 1012px) {
  .Layout.Layout--sidebar-wide {
    --Layout-sidebar-width: 320px;
  }
}
@media (min-width: 1280px) {
  .Layout.Layout--sidebar-wide {
    --Layout-sidebar-width: 344px;
  }
}
.Layout.Layout--sidebarPosition-start .Layout-sidebar {
  grid-column: 1;
}
.Layout.Layout--sidebarPosition-start .Layout-main {
  grid-column: 2/span 2;
}
.Layout.Layout--sidebarPosition-end {
  grid-template-columns: 1fr 0 auto;
}
.Layout.Layout--sidebarPosition-end .Layout-main {
  grid-column: 1;
}
.Layout.Layout--sidebarPosition-end .Layout-sidebar {
  grid-column: 2/span 2;
}
.Layout.Layout--divided .Layout-divider {
  display: block;
  grid-column: 2;
  width: 1px;
  margin-right: -1px;
  background: var(--color-border-default);
}
.Layout.Layout--divided .Layout-main {
  grid-column: 3/span 1;
}
.Layout.Layout--divided.Layout--sidebarPosition-end .Layout-sidebar {
  grid-column: 3/span 1;
}
.Layout.Layout--divided.Layout--sidebarPosition-end .Layout-main {
  grid-column: 1;
}

.Layout-divider {
  display: none;
  width: 1px;
}

.Layout-sidebar {
  width: var(--Layout-sidebar-width);
}

.Layout-main {
  min-width: 0;
}
.Layout-main .Layout-main-centered-md,
.Layout-main .Layout-main-centered-lg,
.Layout-main .Layout-main-centered-xl {
  margin-right: auto;
  margin-left: auto;
}
.Layout-main .Layout-main-centered-md > .container-md,
.Layout-main .Layout-main-centered-md > .container-lg,
.Layout-main .Layout-main-centered-md > .container-xl,
.Layout-main .Layout-main-centered-lg > .container-md,
.Layout-main .Layout-main-centered-lg > .container-lg,
.Layout-main .Layout-main-centered-lg > .container-xl,
.Layout-main .Layout-main-centered-xl > .container-md,
.Layout-main .Layout-main-centered-xl > .container-lg,
.Layout-main .Layout-main-centered-xl > .container-xl {
  margin-left: 0;
}
.Layout-main .Layout-main-centered-md {
  max-width: calc(768px + var(--Layout-sidebar-width) + var(--Layout-gutter));
}
.Layout-main .Layout-main-centered-lg {
  max-width: calc(1012px + var(--Layout-sidebar-width) + var(--Layout-gutter));
}
.Layout-main .Layout-main-centered-xl {
  max-width: calc(1280px + var(--Layout-sidebar-width) + var(--Layout-gutter));
}

.Link {
  color: var(--color-accent-fg);
}
.Link:hover {
  text-decoration: underline;
  cursor: pointer;
}

.Link--primary {
  color: var(--color-fg-default) !important;
}
.Link--primary:hover {
  color: var(--color-accent-fg) !important;
}

.Link--secondary {
  color: var(--color-fg-muted) !important;
}
.Link--secondary:hover {
  color: var(--color-accent-fg) !important;
}

.Link--muted {
  color: var(--color-fg-muted) !important;
}
.Link--muted:hover {
  color: var(--color-accent-fg) !important;
  text-decoration: none;
}

.Link--onHover:hover {
  color: var(--color-accent-fg) !important;
  text-decoration: underline;
  cursor: pointer;
}

.Link--secondary:hover [class*=color-text],
.Link--primary:hover [class*=color-text],
.Link--muted:hover [class*=color-text] {
  color: inherit !important;
}

.menu {
  margin-bottom: 16px;
  list-style: none;
  background-color: var(--color-canvas-default);
  border: 1px solid var(--color-border-default);
  border-radius: 6px;
}

.menu-item {
  position: relative;
  display: block;
  padding: 8px 16px;
  color: var(--color-fg-default);
  border-bottom: 1px solid var(--color-border-muted);
}
.menu-item:first-child {
  border-top: 0;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}
.menu-item:first-child::before {
  border-top-left-radius: 6px;
}
.menu-item:last-child {
  border-bottom: 0;
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
}
.menu-item:last-child::before {
  border-bottom-left-radius: 6px;
}
.menu-item:focus {
  z-index: 1;
  outline: none;
  box-shadow: var(--color-primer-shadow-focus);
}
.menu-item:hover {
  text-decoration: none;
  background-color: var(--color-neutral-subtle);
}
.menu-item:active {
  background-color: var(--color-canvas-subtle);
}
.menu-item.selected, .menu-item[aria-selected=true], .menu-item[aria-current]:not([aria-current=false]) {
  cursor: default;
  background-color: var(--color-menu-bg-active);
}
.menu-item.selected::before, .menu-item[aria-selected=true]::before, .menu-item[aria-current]:not([aria-current=false])::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 2px;
  content: "";
  background-color: var(--color-primer-border-active);
}
.menu-item .octicon {
  width: 16px;
  margin-right: 8px;
  color: var(--color-fg-muted);
  text-align: center;
}
.menu-item .Counter {
  float: right;
  margin-left: 4px;
}
.menu-item .menu-warning {
  float: right;
  color: var(--color-attention-fg);
}
.menu-item .avatar {
  float: left;
  margin-right: 4px;
}
.menu-item.alert .Counter {
  color: var(--color-danger-fg);
}

.menu-heading {
  display: block;
  padding: 8px 16px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: inherit;
  font-weight: 700;
  color: var(--color-fg-default);
  border-bottom: 1px solid var(--color-border-muted);
}
.menu-heading:hover {
  text-decoration: none;
}
.menu-heading:first-child {
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}
.menu-heading:last-child {
  border-bottom: 0;
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
}

.tabnav {
  margin-top: 0;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--color-border-default);
}

.tabnav-tabs {
  display: flex;
  margin-bottom: -1px;
  overflow: auto;
}

.tabnav-tab {
  display: inline-block;
  flex-shrink: 0;
  padding: 8px 16px;
  font-size: 14px;
  line-height: 23px;
  color: var(--color-fg-muted);
  text-decoration: none;
  background-color: transparent;
  border: 1px solid transparent;
  border-bottom: 0;
  transition: color 0.2s cubic-bezier(0.3, 0, 0.5, 1);
}
.tabnav-tab.selected, .tabnav-tab[aria-selected=true], .tabnav-tab[aria-current]:not([aria-current=false]) {
  color: var(--color-fg-default);
  background-color: var(--color-canvas-default);
  border-color: var(--color-border-default);
  border-radius: 6px 6px 0 0;
}
.tabnav-tab.selected .octicon, .tabnav-tab[aria-selected=true] .octicon, .tabnav-tab[aria-current]:not([aria-current=false]) .octicon {
  color: inherit;
}
.tabnav-tab:hover, .tabnav-tab:focus {
  color: var(--color-fg-default);
  text-decoration: none;
  transition-duration: 0.1s;
}
.tabnav-tab:active {
  color: var(--color-fg-muted);
}
.tabnav-tab .octicon {
  margin-right: 4px;
  color: var(--color-fg-muted);
}
.tabnav-tab .Counter {
  margin-left: 4px;
  color: inherit;
}

.tabnav-extra {
  display: inline-block;
  padding-top: 10px;
  margin-left: 10px;
  font-size: 12px;
  color: var(--color-fg-muted);
}
.tabnav-extra > .octicon {
  margin-right: 2px;
}

a.tabnav-extra:hover {
  color: var(--color-accent-fg);
  text-decoration: none;
}

.tabnav-btn {
  margin-left: 8px;
}

.filter-list {
  list-style-type: none;
}
.filter-list.small .filter-item {
  padding: 6px 12px;
  font-size: 12px;
}
.filter-list.pjax-active .filter-item {
  color: var(--color-fg-muted);
  background-color: transparent;
}
.filter-list.pjax-active .filter-item.pjax-active {
  color: var(--color-fg-on-emphasis);
  background-color: var(--color-accent-emphasis);
}

.filter-item {
  position: relative;
  display: block;
  padding: 8px 16px;
  margin-bottom: 4px;
  overflow: hidden;
  font-size: 14px;
  color: var(--color-fg-muted);
  text-decoration: none;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
  border-radius: 6px;
}
.filter-item:hover {
  text-decoration: none;
  background-color: var(--color-canvas-subtle);
}
.filter-item.selected, .filter-item[aria-selected=true], .filter-item[aria-current]:not([aria-current=false]) {
  color: var(--color-fg-on-emphasis);
  background-color: var(--color-accent-emphasis);
}
.filter-item .count {
  float: right;
  font-weight: 700;
}
.filter-item .bar {
  position: absolute;
  top: 2px;
  right: 0;
  bottom: 2px;
  z-index: -1;
  display: inline-block;
  background-color: var(--color-neutral-subtle);
}

.SideNav {
  background-color: var(--color-canvas-subtle);
}

.SideNav-item {
  position: relative;
  display: block;
  width: 100%;
  padding: 12px 16px;
  color: var(--color-fg-default);
  text-align: left;
  background-color: transparent;
  border: 0;
  border-top: 1px solid var(--color-border-muted);
}
.SideNav-item:first-child {
  border-top: 0;
}
.SideNav-item:last-child {
  box-shadow: 0 1px 0 var(--color-border-default);
}
.SideNav-item::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 2px;
  pointer-events: none;
  content: "";
}

.SideNav-item:focus {
  z-index: 1;
  outline: none;
  box-shadow: var(--color-primer-shadow-focus);
}

.SideNav-item:hover {
  text-decoration: none;
  background-color: var(--color-neutral-subtle);
  outline: none;
}

.SideNav-item:active {
  background-color: var(--color-canvas-subtle);
}

.SideNav-item[aria-current]:not([aria-current=false]),
.SideNav-item[aria-selected=true] {
  background-color: var(--color-sidenav-selected-bg);
}
.SideNav-item[aria-current]:not([aria-current=false])::before,
.SideNav-item[aria-selected=true]::before {
  background-color: var(--color-primer-border-active);
}

.SideNav-icon {
  width: 16px;
  margin-right: 8px;
  color: var(--color-fg-muted);
}

.SideNav-subItem {
  position: relative;
  display: block;
  width: 100%;
  padding: 4px 0;
  color: var(--color-accent-fg);
  text-align: left;
  background-color: transparent;
  border: 0;
}

.SideNav-subItem:hover,
.SideNav-subItem:focus {
  color: var(--color-fg-default);
  text-decoration: none;
  outline: none;
}

.SideNav-subItem[aria-current]:not([aria-current=false]),
.SideNav-subItem[aria-selected=true] {
  font-weight: 500;
  color: var(--color-fg-default);
}

.subnav {
  margin-bottom: 20px;
}
.subnav::before {
  display: table;
  content: "";
}
.subnav::after {
  display: table;
  clear: both;
  content: "";
}

.subnav-bordered {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-border-muted);
}

.subnav-flush {
  margin-bottom: 0;
}

.subnav-item {
  position: relative;
  float: left;
  padding: 5px 16px;
  font-weight: 500;
  line-height: 20px;
  color: var(--color-fg-default);
  border: 1px solid var(--color-border-default);
}
.subnav-item + .subnav-item {
  margin-left: -1px;
}
.subnav-item:hover, .subnav-item:focus {
  text-decoration: none;
  background-color: var(--color-canvas-subtle);
}
.subnav-item.selected, .subnav-item[aria-selected=true], .subnav-item[aria-current]:not([aria-current=false]) {
  z-index: 2;
  color: var(--color-fg-on-emphasis);
  background-color: var(--color-accent-emphasis);
  border-color: var(--color-accent-emphasis);
}
.subnav-item:first-child {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}
.subnav-item:last-child {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}

.subnav-search {
  position: relative;
  margin-left: 12px;
}

.subnav-search-input {
  width: 320px;
  padding-left: 32px;
  color: var(--color-fg-muted);
}

.subnav-search-input-wide {
  width: 500px;
}

.subnav-search-icon {
  position: absolute;
  top: 9px;
  left: 8px;
  display: block;
  color: var(--color-fg-muted);
  text-align: center;
  pointer-events: none;
}

.subnav-search-context .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.subnav-search-context .btn:hover, .subnav-search-context .btn:focus, .subnav-search-context .btn:active, .subnav-search-context .btn.selected {
  z-index: 2;
}
.subnav-search-context + .subnav-search {
  margin-left: -1px;
}
.subnav-search-context + .subnav-search .subnav-search-input {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.subnav-search-context .select-menu-modal-holder {
  z-index: 30;
}
.subnav-search-context .select-menu-modal {
  width: 220px;
}
.subnav-search-context .select-menu-item-icon {
  color: inherit;
}

.subnav-spacer-right {
  padding-right: 12px;
}

.UnderlineNav {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  box-shadow: inset 0 -1px 0 var(--color-border-muted);
  justify-content: space-between;
}

.UnderlineNav-body {
  display: flex;
}

.UnderlineNav-item {
  padding: 8px 16px;
  font-size: 14px;
  line-height: 30px;
  color: var(--color-fg-default);
  text-align: center;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
  border-bottom: 2px solid transparent;
}
.UnderlineNav-item:hover, .UnderlineNav-item:focus {
  color: var(--color-fg-default);
  text-decoration: none;
  border-bottom-color: var(--color-neutral-muted);
  outline: 1px dotted transparent;
  outline-offset: -1px;
  transition: border-bottom-color 0.12s ease-out;
}
.UnderlineNav-item.selected, .UnderlineNav-item[role=tab][aria-selected=true], .UnderlineNav-item[aria-current]:not([aria-current=false]) {
  font-weight: 700;
  color: var(--color-fg-default);
  border-bottom-color: var(--color-primer-border-active);
  outline: 1px dotted transparent;
  outline-offset: -1px;
}
.UnderlineNav-item.selected .UnderlineNav-octicon, .UnderlineNav-item[role=tab][aria-selected=true] .UnderlineNav-octicon, .UnderlineNav-item[aria-current]:not([aria-current=false]) .UnderlineNav-octicon {
  color: var(--color-fg-muted);
}

.UnderlineNav--right {
  justify-content: flex-end;
}
.UnderlineNav--right .UnderlineNav-actions {
  flex: 1 1 auto;
}

.UnderlineNav-actions {
  align-self: center;
}

.UnderlineNav--full {
  display: block;
}

.UnderlineNav-octicon {
  margin-right: 4px;
  color: var(--color-fg-subtle);
}

.UnderlineNav .Counter {
  margin-left: 4px;
  color: var(--color-fg-default);
  background-color: var(--color-neutral-muted);
}
.UnderlineNav .Counter--primary {
  color: var(--color-fg-on-emphasis);
  background-color: var(--color-neutral-emphasis);
}

.UnderlineNav-container {
  display: flex;
  justify-content: space-between;
}

.pagination a,
.pagination span,
.pagination em {
  display: inline-block;
  min-width: 32px;
  padding: 5px 10px;
  font-style: normal;
  line-height: 20px;
  color: var(--color-fg-default);
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border: 1px solid transparent;
  border-radius: 6px;
  transition: border-color 0.2s cubic-bezier(0.3, 0, 0.5, 1);
}
.pagination a:hover, .pagination a:focus,
.pagination span:hover,
.pagination span:focus,
.pagination em:hover,
.pagination em:focus {
  text-decoration: none;
  border-color: var(--color-border-default);
  outline: 0;
  transition-duration: 0.1s;
}
.pagination a:active,
.pagination span:active,
.pagination em:active {
  border-color: var(--color-border-muted);
  transition: none;
}
.pagination .previous_page,
.pagination .next_page {
  color: var(--color-accent-fg);
}
.pagination .current,
.pagination .current:hover,
.pagination [aria-current]:not([aria-current=false]) {
  color: var(--color-fg-on-emphasis);
  background-color: var(--color-accent-emphasis);
  border-color: transparent;
}
.pagination .gap,
.pagination .disabled,
.pagination [aria-disabled=true],
.pagination .gap:hover,
.pagination .disabled:hover,
.pagination [aria-disabled=true]:hover {
  color: var(--color-fg-muted);
  cursor: default;
  border-color: transparent;
}
@supports (clip-path: polygon(50% 0, 100% 50%, 50% 100%)) {
  .pagination .previous_page::before,
.pagination .next_page::after {
    display: inline-block;
    width: 16px;
    height: 16px;
    vertical-align: text-bottom;
    content: "";
    background-color: currentColor;
  }
  .pagination .previous_page::before {
    margin-right: 4px;
    clip-path: polygon(9.8px 12.8px, 8.7px 12.8px, 4.5px 8.5px, 4.5px 7.5px, 8.7px 3.2px, 9.8px 4.3px, 6.1px 8px, 9.8px 11.7px, 9.8px 12.8px);
  }
  .pagination .next_page::after {
    margin-left: 4px;
    clip-path: polygon(6.2px 3.2px, 7.3px 3.2px, 11.5px 7.5px, 11.5px 8.5px, 7.3px 12.8px, 6.2px 11.7px, 9.9px 8px, 6.2px 4.3px, 6.2px 3.2px);
  }
}

.paginate-container {
  margin-top: 16px;
  margin-bottom: 16px;
  text-align: center;
}
.paginate-container .pagination {
  display: inline-block;
}

.tooltipped {
  position: relative;
}

.tooltipped::after {
  position: absolute;
  z-index: 1000000;
  display: none;
  padding: 0.5em 0.75em;
  font: normal normal 11px/1.5 "Montserrat", sans-serif;
  -webkit-font-smoothing: subpixel-antialiased;
  color: var(--color-fg-on-emphasis);
  text-align: center;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: break-word;
  white-space: pre;
  pointer-events: none;
  content: attr(aria-label);
  background: var(--color-neutral-emphasis-plus);
  border-radius: 6px;
  opacity: 0;
}

.tooltipped::before {
  position: absolute;
  z-index: 1000001;
  display: none;
  width: 0;
  height: 0;
  color: var(--color-neutral-emphasis-plus);
  pointer-events: none;
  content: "";
  border: 6px solid transparent;
  opacity: 0;
}

@keyframes tooltip-appear {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.tooltipped:hover::before, .tooltipped:hover::after,
.tooltipped:active::before,
.tooltipped:active::after,
.tooltipped:focus::before,
.tooltipped:focus::after {
  display: inline-block;
  text-decoration: none;
  animation-name: tooltip-appear;
  animation-duration: 0.1s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in;
  animation-delay: 0.4s;
}

.tooltipped-no-delay:hover::before, .tooltipped-no-delay:hover::after,
.tooltipped-no-delay:active::before,
.tooltipped-no-delay:active::after,
.tooltipped-no-delay:focus::before,
.tooltipped-no-delay:focus::after {
  animation-delay: 0s;
}

.tooltipped-multiline:hover::after,
.tooltipped-multiline:active::after,
.tooltipped-multiline:focus::after {
  display: table-cell;
}

.tooltipped-s::after,
.tooltipped-se::after,
.tooltipped-sw::after {
  top: 100%;
  right: 50%;
  margin-top: 6px;
}
.tooltipped-s::before,
.tooltipped-se::before,
.tooltipped-sw::before {
  top: auto;
  right: 50%;
  bottom: -7px;
  margin-right: -6px;
  border-bottom-color: var(--color-neutral-emphasis-plus);
}

.tooltipped-se::after {
  right: auto;
  left: 50%;
  margin-left: -16px;
}

.tooltipped-sw::after {
  margin-right: -16px;
}

.tooltipped-n::after,
.tooltipped-ne::after,
.tooltipped-nw::after {
  right: 50%;
  bottom: 100%;
  margin-bottom: 6px;
}
.tooltipped-n::before,
.tooltipped-ne::before,
.tooltipped-nw::before {
  top: -7px;
  right: 50%;
  bottom: auto;
  margin-right: -6px;
  border-top-color: var(--color-neutral-emphasis-plus);
}

.tooltipped-ne::after {
  right: auto;
  left: 50%;
  margin-left: -16px;
}

.tooltipped-nw::after {
  margin-right: -16px;
}

.tooltipped-s::after,
.tooltipped-n::after {
  transform: translateX(50%);
}

.tooltipped-w::after {
  right: 100%;
  bottom: 50%;
  margin-right: 6px;
  transform: translateY(50%);
}
.tooltipped-w::before {
  top: 50%;
  bottom: 50%;
  left: -7px;
  margin-top: -6px;
  border-left-color: var(--color-neutral-emphasis-plus);
}

.tooltipped-e::after {
  bottom: 50%;
  left: 100%;
  margin-left: 6px;
  transform: translateY(50%);
}
.tooltipped-e::before {
  top: 50%;
  right: -7px;
  bottom: 50%;
  margin-top: -6px;
  border-right-color: var(--color-neutral-emphasis-plus);
}

.tooltipped-align-right-1::after,
.tooltipped-align-right-2::after {
  right: 0;
  margin-right: 0;
}

.tooltipped-align-right-1::before {
  right: 10px;
}

.tooltipped-align-right-2::before {
  right: 15px;
}

.tooltipped-align-left-1::after,
.tooltipped-align-left-2::after {
  left: 0;
  margin-left: 0;
}

.tooltipped-align-left-1::before {
  left: 5px;
}

.tooltipped-align-left-2::before {
  left: 10px;
}

.tooltipped-multiline::after {
  width: -moz-max-content;
  width: max-content;
  max-width: 250px;
  word-wrap: break-word;
  white-space: pre-line;
  border-collapse: separate;
}
.tooltipped-multiline.tooltipped-s::after, .tooltipped-multiline.tooltipped-n::after {
  right: auto;
  left: 50%;
  transform: translateX(-50%);
}
.tooltipped-multiline.tooltipped-w::after, .tooltipped-multiline.tooltipped-e::after {
  right: 100%;
}

@media screen and (min-width: 0\0 ) {
  .tooltipped-multiline::after {
    width: 250px;
  }
}
.tooltipped-sticky::before, .tooltipped-sticky::after {
  display: inline-block;
}
.tooltipped-sticky.tooltipped-multiline::after {
  display: table-cell;
}

.css-truncate.css-truncate-overflow,
.css-truncate .css-truncate-overflow, .css-truncate.css-truncate-target,
.css-truncate .css-truncate-target {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.css-truncate.css-truncate-target,
.css-truncate .css-truncate-target {
  display: inline-block;
  max-width: 125px;
  vertical-align: top;
}
.css-truncate.expandable.zeroclipboard-is-hover .css-truncate-target, .css-truncate.expandable.zeroclipboard-is-hover.css-truncate-target, .css-truncate.expandable:hover .css-truncate-target, .css-truncate.expandable:hover.css-truncate-target {
  max-width: 10000px !important;
}

.Truncate {
  display: inline-flex;
  min-width: 0;
  max-width: 100%;
}
.Truncate > .Truncate-text {
  min-width: 1ch;
  max-width: -moz-fit-content;
  max-width: fit-content;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.Truncate > .Truncate-text + .Truncate-text {
  margin-left: 4px;
}
.Truncate > .Truncate-text.Truncate-text--primary {
  flex-basis: 200%;
}
.Truncate > .Truncate-text.Truncate-text--expandable:hover, .Truncate > .Truncate-text.Truncate-text--expandable:focus, .Truncate > .Truncate-text.Truncate-text--expandable:active {
  max-width: 100% !important;
  flex-shrink: 0;
  cursor: pointer;
}

/* Fade in an element */
.anim-fade-in {
  animation-name: fade-in;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
}
.anim-fade-in.fast {
  animation-duration: 300ms;
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* Fade out an element */
.anim-fade-out {
  animation-name: fade-out;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
}
.anim-fade-out.fast {
  animation-duration: 0.3s;
}

@keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* Fade in and slide up an element */
.anim-fade-up {
  opacity: 0;
  animation-name: fade-up;
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
  animation-delay: 1s;
}

@keyframes fade-up {
  0% {
    opacity: 0.8;
    transform: translateY(100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Fade an element out and slide down */
.anim-fade-down {
  animation-name: fade-down;
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in;
}

@keyframes fade-down {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0.5;
    transform: translateY(100%);
  }
}
/* Grow an element width from 0 to 100% */
.anim-grow-x {
  width: 0%;
  animation-name: grow-x;
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
  animation-timing-function: ease;
  animation-delay: 0.5s;
}

@keyframes grow-x {
  to {
    width: 100%;
  }
}
/* Shrink an element from 100% to 0% */
.anim-shrink-x {
  animation-name: shrink-x;
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out;
  animation-delay: 0.5s;
}

@keyframes shrink-x {
  to {
    width: 0%;
  }
}
/* Fade in an element and scale it fast */
.anim-scale-in {
  animation-name: scale-in;
  animation-duration: 0.15s;
  animation-timing-function: cubic-bezier(0.2, 0, 0.13, 1.5);
}

@keyframes scale-in {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
/* Pulse an element's opacity */
.anim-pulse {
  animation-name: pulse;
  animation-duration: 2s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@keyframes pulse {
  0% {
    opacity: 0.3;
  }
  10% {
    opacity: 1;
  }
  100% {
    opacity: 0.3;
  }
}
/* Pulse in an element */
.anim-pulse-in {
  animation-name: pulse-in;
  animation-duration: 0.5s;
}

@keyframes pulse-in {
  0% {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}
/* Increase scale of an element on hover */
.hover-grow,
.anim-hover-grow {
  transition: transform 0.3s;
  backface-visibility: hidden;
}
.hover-grow:hover,
.anim-hover-grow:hover {
  transform: scale(1.025);
}

/* Rotate an element 360 degrees over and over, used for spinners */
.anim-rotate {
  animation: rotate-keyframes 1s linear infinite;
}

@keyframes rotate-keyframes {
  100% {
    transform: rotate(360deg);
  }
}
/* Add a gray border to the left and right */
.border-x {
  border-right: 1px solid var(--color-border-primary) !important;
  border-left: 1px solid var(--color-border-primary) !important;
}

/* Add a gray border to the top and bottom */
.border-y {
  border-top: 1px solid var(--color-border-primary) !important;
  border-bottom: 1px solid var(--color-border-primary) !important;
}

/* Responsive gray borders */
/* Add a gray border on all sides at/above this breakpoint */
.border {
  border: 1px solid var(--color-border-primary) !important;
}

.border-0 {
  border: 0 !important;
}

.border-top {
  border-top: 1px solid var(--color-border-primary) !important;
}

.border-right {
  border-right: 1px solid var(--color-border-primary) !important;
}

.border-bottom {
  border-bottom: 1px solid var(--color-border-primary) !important;
}

.border-left {
  border-left: 1px solid var(--color-border-primary) !important;
}

.border-top-0 {
  border-top: 0 !important;
}

.border-right-0 {
  border-right: 0 !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-left-0 {
  border-left: 0 !important;
}

.rounded {
  border-radius: 6px !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.rounded-1 {
  border-radius: 4px !important;
}

.rounded-2 {
  border-radius: 6px !important;
}

.rounded-3 {
  border-radius: 8px !important;
}

.rounded-top-0 {
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}

.rounded-top-1 {
  border-top-left-radius: 4px !important;
  border-top-right-radius: 4px !important;
}

.rounded-top-2 {
  border-top-left-radius: 6px !important;
  border-top-right-radius: 6px !important;
}

.rounded-top-3 {
  border-top-left-radius: 8px !important;
  border-top-right-radius: 8px !important;
}

.rounded-right-0 {
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.rounded-right-1 {
  border-top-right-radius: 4px !important;
  border-bottom-right-radius: 4px !important;
}

.rounded-right-2 {
  border-top-right-radius: 6px !important;
  border-bottom-right-radius: 6px !important;
}

.rounded-right-3 {
  border-top-right-radius: 8px !important;
  border-bottom-right-radius: 8px !important;
}

.rounded-bottom-0 {
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

.rounded-bottom-1 {
  border-bottom-right-radius: 4px !important;
  border-bottom-left-radius: 4px !important;
}

.rounded-bottom-2 {
  border-bottom-right-radius: 6px !important;
  border-bottom-left-radius: 6px !important;
}

.rounded-bottom-3 {
  border-bottom-right-radius: 8px !important;
  border-bottom-left-radius: 8px !important;
}

.rounded-left-0 {
  border-bottom-left-radius: 0 !important;
  border-top-left-radius: 0 !important;
}

.rounded-left-1 {
  border-bottom-left-radius: 4px !important;
  border-top-left-radius: 4px !important;
}

.rounded-left-2 {
  border-bottom-left-radius: 6px !important;
  border-top-left-radius: 6px !important;
}

.rounded-left-3 {
  border-bottom-left-radius: 8px !important;
  border-top-left-radius: 8px !important;
}

@media (min-width: 544px) {
  /* Add a gray border on all sides at/above this breakpoint */
  .border-sm {
    border: 1px solid var(--color-border-primary) !important;
  }

  .border-sm-0 {
    border: 0 !important;
  }

  .border-sm-top {
    border-top: 1px solid var(--color-border-primary) !important;
  }

  .border-sm-right {
    border-right: 1px solid var(--color-border-primary) !important;
  }

  .border-sm-bottom {
    border-bottom: 1px solid var(--color-border-primary) !important;
  }

  .border-sm-left {
    border-left: 1px solid var(--color-border-primary) !important;
  }

  .border-sm-top-0 {
    border-top: 0 !important;
  }

  .border-sm-right-0 {
    border-right: 0 !important;
  }

  .border-sm-bottom-0 {
    border-bottom: 0 !important;
  }

  .border-sm-left-0 {
    border-left: 0 !important;
  }

  .rounded-sm {
    border-radius: 6px !important;
  }

  .rounded-sm-0 {
    border-radius: 0 !important;
  }

  .rounded-sm-1 {
    border-radius: 4px !important;
  }

  .rounded-sm-2 {
    border-radius: 6px !important;
  }

  .rounded-sm-3 {
    border-radius: 8px !important;
  }

  .rounded-sm-top-0 {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
  }

  .rounded-sm-top-1 {
    border-top-left-radius: 4px !important;
    border-top-right-radius: 4px !important;
  }

  .rounded-sm-top-2 {
    border-top-left-radius: 6px !important;
    border-top-right-radius: 6px !important;
  }

  .rounded-sm-top-3 {
    border-top-left-radius: 8px !important;
    border-top-right-radius: 8px !important;
  }

  .rounded-sm-right-0 {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }

  .rounded-sm-right-1 {
    border-top-right-radius: 4px !important;
    border-bottom-right-radius: 4px !important;
  }

  .rounded-sm-right-2 {
    border-top-right-radius: 6px !important;
    border-bottom-right-radius: 6px !important;
  }

  .rounded-sm-right-3 {
    border-top-right-radius: 8px !important;
    border-bottom-right-radius: 8px !important;
  }

  .rounded-sm-bottom-0 {
    border-bottom-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
  }

  .rounded-sm-bottom-1 {
    border-bottom-right-radius: 4px !important;
    border-bottom-left-radius: 4px !important;
  }

  .rounded-sm-bottom-2 {
    border-bottom-right-radius: 6px !important;
    border-bottom-left-radius: 6px !important;
  }

  .rounded-sm-bottom-3 {
    border-bottom-right-radius: 8px !important;
    border-bottom-left-radius: 8px !important;
  }

  .rounded-sm-left-0 {
    border-bottom-left-radius: 0 !important;
    border-top-left-radius: 0 !important;
  }

  .rounded-sm-left-1 {
    border-bottom-left-radius: 4px !important;
    border-top-left-radius: 4px !important;
  }

  .rounded-sm-left-2 {
    border-bottom-left-radius: 6px !important;
    border-top-left-radius: 6px !important;
  }

  .rounded-sm-left-3 {
    border-bottom-left-radius: 8px !important;
    border-top-left-radius: 8px !important;
  }
}
@media (min-width: 768px) {
  /* Add a gray border on all sides at/above this breakpoint */
  .border-md {
    border: 1px solid var(--color-border-primary) !important;
  }

  .border-md-0 {
    border: 0 !important;
  }

  .border-md-top {
    border-top: 1px solid var(--color-border-primary) !important;
  }

  .border-md-right {
    border-right: 1px solid var(--color-border-primary) !important;
  }

  .border-md-bottom {
    border-bottom: 1px solid var(--color-border-primary) !important;
  }

  .border-md-left {
    border-left: 1px solid var(--color-border-primary) !important;
  }

  .border-md-top-0 {
    border-top: 0 !important;
  }

  .border-md-right-0 {
    border-right: 0 !important;
  }

  .border-md-bottom-0 {
    border-bottom: 0 !important;
  }

  .border-md-left-0 {
    border-left: 0 !important;
  }

  .rounded-md {
    border-radius: 6px !important;
  }

  .rounded-md-0 {
    border-radius: 0 !important;
  }

  .rounded-md-1 {
    border-radius: 4px !important;
  }

  .rounded-md-2 {
    border-radius: 6px !important;
  }

  .rounded-md-3 {
    border-radius: 8px !important;
  }

  .rounded-md-top-0 {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
  }

  .rounded-md-top-1 {
    border-top-left-radius: 4px !important;
    border-top-right-radius: 4px !important;
  }

  .rounded-md-top-2 {
    border-top-left-radius: 6px !important;
    border-top-right-radius: 6px !important;
  }

  .rounded-md-top-3 {
    border-top-left-radius: 8px !important;
    border-top-right-radius: 8px !important;
  }

  .rounded-md-right-0 {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }

  .rounded-md-right-1 {
    border-top-right-radius: 4px !important;
    border-bottom-right-radius: 4px !important;
  }

  .rounded-md-right-2 {
    border-top-right-radius: 6px !important;
    border-bottom-right-radius: 6px !important;
  }

  .rounded-md-right-3 {
    border-top-right-radius: 8px !important;
    border-bottom-right-radius: 8px !important;
  }

  .rounded-md-bottom-0 {
    border-bottom-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
  }

  .rounded-md-bottom-1 {
    border-bottom-right-radius: 4px !important;
    border-bottom-left-radius: 4px !important;
  }

  .rounded-md-bottom-2 {
    border-bottom-right-radius: 6px !important;
    border-bottom-left-radius: 6px !important;
  }

  .rounded-md-bottom-3 {
    border-bottom-right-radius: 8px !important;
    border-bottom-left-radius: 8px !important;
  }

  .rounded-md-left-0 {
    border-bottom-left-radius: 0 !important;
    border-top-left-radius: 0 !important;
  }

  .rounded-md-left-1 {
    border-bottom-left-radius: 4px !important;
    border-top-left-radius: 4px !important;
  }

  .rounded-md-left-2 {
    border-bottom-left-radius: 6px !important;
    border-top-left-radius: 6px !important;
  }

  .rounded-md-left-3 {
    border-bottom-left-radius: 8px !important;
    border-top-left-radius: 8px !important;
  }
}
@media (min-width: 1012px) {
  /* Add a gray border on all sides at/above this breakpoint */
  .border-lg {
    border: 1px solid var(--color-border-primary) !important;
  }

  .border-lg-0 {
    border: 0 !important;
  }

  .border-lg-top {
    border-top: 1px solid var(--color-border-primary) !important;
  }

  .border-lg-right {
    border-right: 1px solid var(--color-border-primary) !important;
  }

  .border-lg-bottom {
    border-bottom: 1px solid var(--color-border-primary) !important;
  }

  .border-lg-left {
    border-left: 1px solid var(--color-border-primary) !important;
  }

  .border-lg-top-0 {
    border-top: 0 !important;
  }

  .border-lg-right-0 {
    border-right: 0 !important;
  }

  .border-lg-bottom-0 {
    border-bottom: 0 !important;
  }

  .border-lg-left-0 {
    border-left: 0 !important;
  }

  .rounded-lg {
    border-radius: 6px !important;
  }

  .rounded-lg-0 {
    border-radius: 0 !important;
  }

  .rounded-lg-1 {
    border-radius: 4px !important;
  }

  .rounded-lg-2 {
    border-radius: 6px !important;
  }

  .rounded-lg-3 {
    border-radius: 8px !important;
  }

  .rounded-lg-top-0 {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
  }

  .rounded-lg-top-1 {
    border-top-left-radius: 4px !important;
    border-top-right-radius: 4px !important;
  }

  .rounded-lg-top-2 {
    border-top-left-radius: 6px !important;
    border-top-right-radius: 6px !important;
  }

  .rounded-lg-top-3 {
    border-top-left-radius: 8px !important;
    border-top-right-radius: 8px !important;
  }

  .rounded-lg-right-0 {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }

  .rounded-lg-right-1 {
    border-top-right-radius: 4px !important;
    border-bottom-right-radius: 4px !important;
  }

  .rounded-lg-right-2 {
    border-top-right-radius: 6px !important;
    border-bottom-right-radius: 6px !important;
  }

  .rounded-lg-right-3 {
    border-top-right-radius: 8px !important;
    border-bottom-right-radius: 8px !important;
  }

  .rounded-lg-bottom-0 {
    border-bottom-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
  }

  .rounded-lg-bottom-1 {
    border-bottom-right-radius: 4px !important;
    border-bottom-left-radius: 4px !important;
  }

  .rounded-lg-bottom-2 {
    border-bottom-right-radius: 6px !important;
    border-bottom-left-radius: 6px !important;
  }

  .rounded-lg-bottom-3 {
    border-bottom-right-radius: 8px !important;
    border-bottom-left-radius: 8px !important;
  }

  .rounded-lg-left-0 {
    border-bottom-left-radius: 0 !important;
    border-top-left-radius: 0 !important;
  }

  .rounded-lg-left-1 {
    border-bottom-left-radius: 4px !important;
    border-top-left-radius: 4px !important;
  }

  .rounded-lg-left-2 {
    border-bottom-left-radius: 6px !important;
    border-top-left-radius: 6px !important;
  }

  .rounded-lg-left-3 {
    border-bottom-left-radius: 8px !important;
    border-top-left-radius: 8px !important;
  }
}
@media (min-width: 1280px) {
  /* Add a gray border on all sides at/above this breakpoint */
  .border-xl {
    border: 1px solid var(--color-border-primary) !important;
  }

  .border-xl-0 {
    border: 0 !important;
  }

  .border-xl-top {
    border-top: 1px solid var(--color-border-primary) !important;
  }

  .border-xl-right {
    border-right: 1px solid var(--color-border-primary) !important;
  }

  .border-xl-bottom {
    border-bottom: 1px solid var(--color-border-primary) !important;
  }

  .border-xl-left {
    border-left: 1px solid var(--color-border-primary) !important;
  }

  .border-xl-top-0 {
    border-top: 0 !important;
  }

  .border-xl-right-0 {
    border-right: 0 !important;
  }

  .border-xl-bottom-0 {
    border-bottom: 0 !important;
  }

  .border-xl-left-0 {
    border-left: 0 !important;
  }

  .rounded-xl {
    border-radius: 6px !important;
  }

  .rounded-xl-0 {
    border-radius: 0 !important;
  }

  .rounded-xl-1 {
    border-radius: 4px !important;
  }

  .rounded-xl-2 {
    border-radius: 6px !important;
  }

  .rounded-xl-3 {
    border-radius: 8px !important;
  }

  .rounded-xl-top-0 {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
  }

  .rounded-xl-top-1 {
    border-top-left-radius: 4px !important;
    border-top-right-radius: 4px !important;
  }

  .rounded-xl-top-2 {
    border-top-left-radius: 6px !important;
    border-top-right-radius: 6px !important;
  }

  .rounded-xl-top-3 {
    border-top-left-radius: 8px !important;
    border-top-right-radius: 8px !important;
  }

  .rounded-xl-right-0 {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }

  .rounded-xl-right-1 {
    border-top-right-radius: 4px !important;
    border-bottom-right-radius: 4px !important;
  }

  .rounded-xl-right-2 {
    border-top-right-radius: 6px !important;
    border-bottom-right-radius: 6px !important;
  }

  .rounded-xl-right-3 {
    border-top-right-radius: 8px !important;
    border-bottom-right-radius: 8px !important;
  }

  .rounded-xl-bottom-0 {
    border-bottom-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
  }

  .rounded-xl-bottom-1 {
    border-bottom-right-radius: 4px !important;
    border-bottom-left-radius: 4px !important;
  }

  .rounded-xl-bottom-2 {
    border-bottom-right-radius: 6px !important;
    border-bottom-left-radius: 6px !important;
  }

  .rounded-xl-bottom-3 {
    border-bottom-right-radius: 8px !important;
    border-bottom-left-radius: 8px !important;
  }

  .rounded-xl-left-0 {
    border-bottom-left-radius: 0 !important;
    border-top-left-radius: 0 !important;
  }

  .rounded-xl-left-1 {
    border-bottom-left-radius: 4px !important;
    border-top-left-radius: 4px !important;
  }

  .rounded-xl-left-2 {
    border-bottom-left-radius: 6px !important;
    border-top-left-radius: 6px !important;
  }

  .rounded-xl-left-3 {
    border-bottom-left-radius: 8px !important;
    border-top-left-radius: 8px !important;
  }
}
/* Add a 50% border-radius to make something into a circle */
.circle {
  border-radius: 50% !important;
}

/* Change the border style to dashed, in conjunction with another utility */
.border-dashed {
  border-style: dashed !important;
}

.color-shadow-small {
  box-shadow: var(--color-shadow-small) !important;
}

.color-shadow-medium {
  box-shadow: var(--color-shadow-medium) !important;
}

.color-shadow-large {
  box-shadow: var(--color-shadow-large) !important;
}

.color-shadow-extra-large {
  box-shadow: var(--color-shadow-extra-large) !important;
}

.box-shadow-none {
  box-shadow: none !important;
}

.color-fg-default {
  color: var(--color-fg-default) !important;
}

.color-fg-muted {
  color: var(--color-fg-muted) !important;
}

.color-fg-subtle {
  color: var(--color-fg-subtle) !important;
}

.color-fg-accent {
  color: var(--color-accent-fg) !important;
}

.color-fg-success {
  color: var(--color-success-fg) !important;
}

.color-fg-attention {
  color: var(--color-attention-fg) !important;
}

.color-fg-severe {
  color: var(--color-severe-fg) !important;
}

.color-fg-danger {
  color: var(--color-danger-fg) !important;
}

.color-fg-done {
  color: var(--color-done-fg) !important;
}

.color-fg-sponsors {
  color: var(--color-sponsors-fg) !important;
}

.color-fg-on-emphasis {
  color: var(--color-fg-on-emphasis) !important;
}

.color-bg-default {
  background-color: var(--color-canvas-default) !important;
}

.color-bg-overlay {
  background-color: var(--color-canvas-overlay) !important;
}

.color-bg-inset {
  background-color: var(--color-canvas-inset) !important;
}

.color-bg-subtle {
  background-color: var(--color-canvas-subtle) !important;
}

.color-bg-emphasis {
  background-color: var(--color-neutral-emphasis-plus) !important;
}

.color-bg-accent {
  background-color: var(--color-accent-subtle) !important;
}

.color-bg-accent-emphasis {
  background-color: var(--color-accent-emphasis) !important;
}

.color-bg-success {
  background-color: var(--color-success-subtle) !important;
}

.color-bg-success-emphasis {
  background-color: var(--color-success-emphasis) !important;
}

.color-bg-attention {
  background-color: var(--color-attention-subtle) !important;
}

.color-bg-attention-emphasis {
  background-color: var(--color-attention-emphasis) !important;
}

.color-bg-severe {
  background-color: var(--color-severe-subtle) !important;
}

.color-bg-severe-emphasis {
  background-color: var(--color-severe-emphasis) !important;
}

.color-bg-danger {
  background-color: var(--color-danger-subtle) !important;
}

.color-bg-danger-emphasis {
  background-color: var(--color-danger-emphasis) !important;
}

.color-bg-done {
  background-color: var(--color-done-subtle) !important;
}

.color-bg-done-emphasis {
  background-color: var(--color-done-emphasis) !important;
}

.color-bg-sponsors {
  background-color: var(--color-sponsors-subtle) !important;
}

.color-bg-sponsors-emphasis {
  background-color: var(--color-sponsors-emphasis) !important;
}

.color-border-default {
  border-color: var(--color-border-default) !important;
}

.color-border-muted {
  border-color: var(--color-border-muted) !important;
}

.color-border-subtle {
  border-color: var(--color-border-subtle) !important;
}

.color-border-accent {
  border-color: var(--color-accent-muted) !important;
}

.color-border-accent-emphasis {
  border-color: var(--color-accent-emphasis) !important;
}

.color-border-success {
  border-color: var(--color-success-muted) !important;
}

.color-border-success-emphasis {
  border-color: var(--color-success-emphasis) !important;
}

.color-border-attention {
  border-color: var(--color-attention-muted) !important;
}

.color-border-attention-emphasis {
  border-color: var(--color-attention-emphasis) !important;
}

.color-border-severe {
  border-color: var(--color-severe-muted) !important;
}

.color-border-severe-emphasis {
  border-color: var(--color-severe-emphasis) !important;
}

.color-border-danger {
  border-color: var(--color-danger-muted) !important;
}

.color-border-danger-emphasis {
  border-color: var(--color-danger-emphasis) !important;
}

.color-border-done {
  border-color: var(--color-done-muted) !important;
}

.color-border-done-emphasis {
  border-color: var(--color-done-emphasis) !important;
}

.color-border-sponsors {
  border-color: var(--color-sponsors-muted) !important;
}

.color-border-sponsors-emphasis {
  border-color: var(--color-sponsors-emphasis) !important;
}

.text-inherit,
.color-fg-inherit {
  color: inherit !important;
}

.color-text-primary {
  color: var(--color-fg-default) !important;
}

.color-text-secondary {
  color: var(--color-fg-muted) !important;
}

.color-text-tertiary {
  color: var(--color-fg-muted) !important;
}

.color-text-link {
  color: var(--color-accent-fg) !important;
}

.color-text-success {
  color: var(--color-success-fg) !important;
}

.color-text-warning {
  color: var(--color-attention-fg) !important;
}

.color-text-danger {
  color: var(--color-danger-fg) !important;
}

.color-text-inverse {
  color: var(--color-fg-on-emphasis) !important;
}

.color-text-white {
  color: var(--color-scale-white) !important;
}

.color-icon-primary {
  color: var(--color-fg-default) !important;
}

.color-icon-secondary {
  color: var(--color-fg-muted) !important;
}

.color-icon-tertiary {
  color: var(--color-fg-muted) !important;
}

.color-icon-info {
  color: var(--color-accent-fg) !important;
}

.color-icon-danger {
  color: var(--color-danger-fg) !important;
}

.color-icon-success {
  color: var(--color-success-fg) !important;
}

.color-icon-warning {
  color: var(--color-attention-fg) !important;
}

.color-border-primary {
  border-color: var(--color-border-default) !important;
}

.color-border-secondary {
  border-color: var(--color-border-muted) !important;
}

.color-border-tertiary {
  border-color: var(--color-neutral-muted) !important;
}

.color-border-inverse {
  border-color: var(--color-fg-on-emphasis) !important;
}

.color-border-info {
  border-color: var(--color-accent-emphasis) !important;
}

.color-border-warning {
  border-color: var(--color-attention-emphasis) !important;
}

.color-bg-canvas {
  background-color: var(--color-canvas-default) !important;
}

.color-bg-canvas-inverse {
  background-color: var(--color-neutral-emphasis) !important;
}

.color-bg-canvas-inset {
  background-color: var(--color-canvas-inset) !important;
}

.color-bg-primary {
  background-color: var(--color-canvas-default) !important;
}

.color-bg-secondary {
  background-color: var(--color-canvas-subtle) !important;
}

.color-bg-tertiary {
  background-color: var(--color-canvas-subtle) !important;
}

.color-bg-info {
  background-color: var(--color-accent-subtle) !important;
}

.color-bg-info-inverse {
  background-color: var(--color-accent-emphasis) !important;
}

.color-bg-danger {
  background-color: var(--color-danger-subtle) !important;
}

.color-bg-danger-inverse {
  background-color: var(--color-danger-emphasis) !important;
}

.color-bg-success {
  background-color: var(--color-success-subtle) !important;
}

.color-bg-success-inverse {
  background-color: var(--color-success-emphasis) !important;
}

.color-bg-warning {
  background-color: var(--color-attention-subtle) !important;
}

.color-bg-warning-inverse {
  background-color: var(--color-attention-emphasis) !important;
}

.details-overlay[open] > summary::before {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 80;
  display: block;
  cursor: default;
  content: " ";
  background: transparent;
}

.details-overlay-dark[open] > summary::before {
  z-index: 99;
  background: var(--color-primer-canvas-backdrop);
}

.details-reset > summary {
  list-style: none;
}
.details-reset > summary::before {
  display: none;
}
.details-reset > summary::-webkit-details-marker {
  display: none;
}

.flex-row {
  flex-direction: row !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.flex-justify-start {
  justify-content: flex-start !important;
}

.flex-justify-end {
  justify-content: flex-end !important;
}

.flex-justify-center {
  justify-content: center !important;
}

.flex-justify-between {
  justify-content: space-between !important;
}

.flex-justify-around {
  justify-content: space-around !important;
}

.flex-items-start {
  align-items: flex-start !important;
}

.flex-items-end {
  align-items: flex-end !important;
}

.flex-items-center {
  align-items: center !important;
}

.flex-items-baseline {
  align-items: baseline !important;
}

.flex-items-stretch {
  align-items: stretch !important;
}

.flex-content-start {
  align-content: flex-start !important;
}

.flex-content-end {
  align-content: flex-end !important;
}

.flex-content-center {
  align-content: center !important;
}

.flex-content-between {
  align-content: space-between !important;
}

.flex-content-around {
  align-content: space-around !important;
}

.flex-content-stretch {
  align-content: stretch !important;
}

.flex-1 {
  flex: 1 !important;
}

.flex-auto {
  flex: auto !important;
}

.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-self-auto {
  align-self: auto !important;
}

.flex-self-start {
  align-self: flex-start !important;
}

.flex-self-end {
  align-self: flex-end !important;
}

.flex-self-center {
  align-self: center !important;
}

.flex-self-baseline {
  align-self: baseline !important;
}

.flex-self-stretch {
  align-self: stretch !important;
}

.flex-order-1 {
  order: 1 !important;
}

.flex-order-2 {
  order: 2 !important;
}

.flex-order-none {
  order: inherit !important;
}

@media (min-width: 544px) {
  .flex-sm-row {
    flex-direction: row !important;
  }

  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-sm-column {
    flex-direction: column !important;
  }

  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }

  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-sm-justify-start {
    justify-content: flex-start !important;
  }

  .flex-sm-justify-end {
    justify-content: flex-end !important;
  }

  .flex-sm-justify-center {
    justify-content: center !important;
  }

  .flex-sm-justify-between {
    justify-content: space-between !important;
  }

  .flex-sm-justify-around {
    justify-content: space-around !important;
  }

  .flex-sm-items-start {
    align-items: flex-start !important;
  }

  .flex-sm-items-end {
    align-items: flex-end !important;
  }

  .flex-sm-items-center {
    align-items: center !important;
  }

  .flex-sm-items-baseline {
    align-items: baseline !important;
  }

  .flex-sm-items-stretch {
    align-items: stretch !important;
  }

  .flex-sm-content-start {
    align-content: flex-start !important;
  }

  .flex-sm-content-end {
    align-content: flex-end !important;
  }

  .flex-sm-content-center {
    align-content: center !important;
  }

  .flex-sm-content-between {
    align-content: space-between !important;
  }

  .flex-sm-content-around {
    align-content: space-around !important;
  }

  .flex-sm-content-stretch {
    align-content: stretch !important;
  }

  .flex-sm-1 {
    flex: 1 !important;
  }

  .flex-sm-auto {
    flex: auto !important;
  }

  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-sm-self-auto {
    align-self: auto !important;
  }

  .flex-sm-self-start {
    align-self: flex-start !important;
  }

  .flex-sm-self-end {
    align-self: flex-end !important;
  }

  .flex-sm-self-center {
    align-self: center !important;
  }

  .flex-sm-self-baseline {
    align-self: baseline !important;
  }

  .flex-sm-self-stretch {
    align-self: stretch !important;
  }

  .flex-sm-order-1 {
    order: 1 !important;
  }

  .flex-sm-order-2 {
    order: 2 !important;
  }

  .flex-sm-order-none {
    order: inherit !important;
  }
}
@media (min-width: 768px) {
  .flex-md-row {
    flex-direction: row !important;
  }

  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-md-column {
    flex-direction: column !important;
  }

  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-md-wrap {
    flex-wrap: wrap !important;
  }

  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-md-justify-start {
    justify-content: flex-start !important;
  }

  .flex-md-justify-end {
    justify-content: flex-end !important;
  }

  .flex-md-justify-center {
    justify-content: center !important;
  }

  .flex-md-justify-between {
    justify-content: space-between !important;
  }

  .flex-md-justify-around {
    justify-content: space-around !important;
  }

  .flex-md-items-start {
    align-items: flex-start !important;
  }

  .flex-md-items-end {
    align-items: flex-end !important;
  }

  .flex-md-items-center {
    align-items: center !important;
  }

  .flex-md-items-baseline {
    align-items: baseline !important;
  }

  .flex-md-items-stretch {
    align-items: stretch !important;
  }

  .flex-md-content-start {
    align-content: flex-start !important;
  }

  .flex-md-content-end {
    align-content: flex-end !important;
  }

  .flex-md-content-center {
    align-content: center !important;
  }

  .flex-md-content-between {
    align-content: space-between !important;
  }

  .flex-md-content-around {
    align-content: space-around !important;
  }

  .flex-md-content-stretch {
    align-content: stretch !important;
  }

  .flex-md-1 {
    flex: 1 !important;
  }

  .flex-md-auto {
    flex: auto !important;
  }

  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-md-self-auto {
    align-self: auto !important;
  }

  .flex-md-self-start {
    align-self: flex-start !important;
  }

  .flex-md-self-end {
    align-self: flex-end !important;
  }

  .flex-md-self-center {
    align-self: center !important;
  }

  .flex-md-self-baseline {
    align-self: baseline !important;
  }

  .flex-md-self-stretch {
    align-self: stretch !important;
  }

  .flex-md-order-1 {
    order: 1 !important;
  }

  .flex-md-order-2 {
    order: 2 !important;
  }

  .flex-md-order-none {
    order: inherit !important;
  }
}
@media (min-width: 1012px) {
  .flex-lg-row {
    flex-direction: row !important;
  }

  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-lg-column {
    flex-direction: column !important;
  }

  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }

  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-lg-justify-start {
    justify-content: flex-start !important;
  }

  .flex-lg-justify-end {
    justify-content: flex-end !important;
  }

  .flex-lg-justify-center {
    justify-content: center !important;
  }

  .flex-lg-justify-between {
    justify-content: space-between !important;
  }

  .flex-lg-justify-around {
    justify-content: space-around !important;
  }

  .flex-lg-items-start {
    align-items: flex-start !important;
  }

  .flex-lg-items-end {
    align-items: flex-end !important;
  }

  .flex-lg-items-center {
    align-items: center !important;
  }

  .flex-lg-items-baseline {
    align-items: baseline !important;
  }

  .flex-lg-items-stretch {
    align-items: stretch !important;
  }

  .flex-lg-content-start {
    align-content: flex-start !important;
  }

  .flex-lg-content-end {
    align-content: flex-end !important;
  }

  .flex-lg-content-center {
    align-content: center !important;
  }

  .flex-lg-content-between {
    align-content: space-between !important;
  }

  .flex-lg-content-around {
    align-content: space-around !important;
  }

  .flex-lg-content-stretch {
    align-content: stretch !important;
  }

  .flex-lg-1 {
    flex: 1 !important;
  }

  .flex-lg-auto {
    flex: auto !important;
  }

  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-lg-self-auto {
    align-self: auto !important;
  }

  .flex-lg-self-start {
    align-self: flex-start !important;
  }

  .flex-lg-self-end {
    align-self: flex-end !important;
  }

  .flex-lg-self-center {
    align-self: center !important;
  }

  .flex-lg-self-baseline {
    align-self: baseline !important;
  }

  .flex-lg-self-stretch {
    align-self: stretch !important;
  }

  .flex-lg-order-1 {
    order: 1 !important;
  }

  .flex-lg-order-2 {
    order: 2 !important;
  }

  .flex-lg-order-none {
    order: inherit !important;
  }
}
@media (min-width: 1280px) {
  .flex-xl-row {
    flex-direction: row !important;
  }

  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-xl-column {
    flex-direction: column !important;
  }

  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }

  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-xl-justify-start {
    justify-content: flex-start !important;
  }

  .flex-xl-justify-end {
    justify-content: flex-end !important;
  }

  .flex-xl-justify-center {
    justify-content: center !important;
  }

  .flex-xl-justify-between {
    justify-content: space-between !important;
  }

  .flex-xl-justify-around {
    justify-content: space-around !important;
  }

  .flex-xl-items-start {
    align-items: flex-start !important;
  }

  .flex-xl-items-end {
    align-items: flex-end !important;
  }

  .flex-xl-items-center {
    align-items: center !important;
  }

  .flex-xl-items-baseline {
    align-items: baseline !important;
  }

  .flex-xl-items-stretch {
    align-items: stretch !important;
  }

  .flex-xl-content-start {
    align-content: flex-start !important;
  }

  .flex-xl-content-end {
    align-content: flex-end !important;
  }

  .flex-xl-content-center {
    align-content: center !important;
  }

  .flex-xl-content-between {
    align-content: space-between !important;
  }

  .flex-xl-content-around {
    align-content: space-around !important;
  }

  .flex-xl-content-stretch {
    align-content: stretch !important;
  }

  .flex-xl-1 {
    flex: 1 !important;
  }

  .flex-xl-auto {
    flex: auto !important;
  }

  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-xl-self-auto {
    align-self: auto !important;
  }

  .flex-xl-self-start {
    align-self: flex-start !important;
  }

  .flex-xl-self-end {
    align-self: flex-end !important;
  }

  .flex-xl-self-center {
    align-self: center !important;
  }

  .flex-xl-self-baseline {
    align-self: baseline !important;
  }

  .flex-xl-self-stretch {
    align-self: stretch !important;
  }

  .flex-xl-order-1 {
    order: 1 !important;
  }

  .flex-xl-order-2 {
    order: 2 !important;
  }

  .flex-xl-order-none {
    order: inherit !important;
  }
}
/* Position */
.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: sticky !important;
}

@media (min-width: 544px) {
  .position-sm-static {
    position: static !important;
  }

  .position-sm-relative {
    position: relative !important;
  }

  .position-sm-absolute {
    position: absolute !important;
  }

  .position-sm-fixed {
    position: fixed !important;
  }

  .position-sm-sticky {
    position: sticky !important;
  }
}
@media (min-width: 768px) {
  .position-md-static {
    position: static !important;
  }

  .position-md-relative {
    position: relative !important;
  }

  .position-md-absolute {
    position: absolute !important;
  }

  .position-md-fixed {
    position: fixed !important;
  }

  .position-md-sticky {
    position: sticky !important;
  }
}
@media (min-width: 1012px) {
  .position-lg-static {
    position: static !important;
  }

  .position-lg-relative {
    position: relative !important;
  }

  .position-lg-absolute {
    position: absolute !important;
  }

  .position-lg-fixed {
    position: fixed !important;
  }

  .position-lg-sticky {
    position: sticky !important;
  }
}
@media (min-width: 1280px) {
  .position-xl-static {
    position: static !important;
  }

  .position-xl-relative {
    position: relative !important;
  }

  .position-xl-absolute {
    position: absolute !important;
  }

  .position-xl-fixed {
    position: fixed !important;
  }

  .position-xl-sticky {
    position: sticky !important;
  }
}
/* Final position */
.top-0 {
  top: 0 !important;
}

.right-0 {
  right: 0 !important;
}

.bottom-0 {
  bottom: 0 !important;
}

.left-0 {
  left: 0 !important;
}

.top-auto {
  top: auto !important;
}

.right-auto {
  right: auto !important;
}

.bottom-auto {
  bottom: auto !important;
}

.left-auto {
  left: auto !important;
}

@media (min-width: 544px) {
  .top-sm-0 {
    top: 0 !important;
  }

  .right-sm-0 {
    right: 0 !important;
  }

  .bottom-sm-0 {
    bottom: 0 !important;
  }

  .left-sm-0 {
    left: 0 !important;
  }

  .top-sm-auto {
    top: auto !important;
  }

  .right-sm-auto {
    right: auto !important;
  }

  .bottom-sm-auto {
    bottom: auto !important;
  }

  .left-sm-auto {
    left: auto !important;
  }
}
@media (min-width: 768px) {
  .top-md-0 {
    top: 0 !important;
  }

  .right-md-0 {
    right: 0 !important;
  }

  .bottom-md-0 {
    bottom: 0 !important;
  }

  .left-md-0 {
    left: 0 !important;
  }

  .top-md-auto {
    top: auto !important;
  }

  .right-md-auto {
    right: auto !important;
  }

  .bottom-md-auto {
    bottom: auto !important;
  }

  .left-md-auto {
    left: auto !important;
  }
}
@media (min-width: 1012px) {
  .top-lg-0 {
    top: 0 !important;
  }

  .right-lg-0 {
    right: 0 !important;
  }

  .bottom-lg-0 {
    bottom: 0 !important;
  }

  .left-lg-0 {
    left: 0 !important;
  }

  .top-lg-auto {
    top: auto !important;
  }

  .right-lg-auto {
    right: auto !important;
  }

  .bottom-lg-auto {
    bottom: auto !important;
  }

  .left-lg-auto {
    left: auto !important;
  }
}
@media (min-width: 1280px) {
  .top-xl-0 {
    top: 0 !important;
  }

  .right-xl-0 {
    right: 0 !important;
  }

  .bottom-xl-0 {
    bottom: 0 !important;
  }

  .left-xl-0 {
    left: 0 !important;
  }

  .top-xl-auto {
    top: auto !important;
  }

  .right-xl-auto {
    right: auto !important;
  }

  .bottom-xl-auto {
    bottom: auto !important;
  }

  .left-xl-auto {
    left: auto !important;
  }
}
/* Vertical align middle */
.v-align-middle {
  vertical-align: middle !important;
}

/* Vertical align top */
.v-align-top {
  vertical-align: top !important;
}

/* Vertical align bottom */
.v-align-bottom {
  vertical-align: bottom !important;
}

/* Vertical align to the top of the text */
.v-align-text-top {
  vertical-align: text-top !important;
}

/* Vertical align to the bottom of the text */
.v-align-text-bottom {
  vertical-align: text-bottom !important;
}

/* Vertical align to the parent's baseline */
.v-align-baseline {
  vertical-align: baseline !important;
}

.overflow-visible {
  overflow: visible !important;
}

.overflow-x-visible {
  overflow-x: visible !important;
}

.overflow-y-visible {
  overflow-y: visible !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.overflow-x-hidden {
  overflow-x: hidden !important;
}

.overflow-y-hidden {
  overflow-y: hidden !important;
}

.overflow-auto {
  overflow: auto !important;
}

.overflow-x-auto {
  overflow-x: auto !important;
}

.overflow-y-auto {
  overflow-y: auto !important;
}

.overflow-scroll {
  overflow: scroll !important;
}

.overflow-x-scroll {
  overflow-x: scroll !important;
}

.overflow-y-scroll {
  overflow-y: scroll !important;
}

@media (min-width: 544px) {
  .overflow-sm-visible {
    overflow: visible !important;
  }

  .overflow-sm-x-visible {
    overflow-x: visible !important;
  }

  .overflow-sm-y-visible {
    overflow-y: visible !important;
  }

  .overflow-sm-hidden {
    overflow: hidden !important;
  }

  .overflow-sm-x-hidden {
    overflow-x: hidden !important;
  }

  .overflow-sm-y-hidden {
    overflow-y: hidden !important;
  }

  .overflow-sm-auto {
    overflow: auto !important;
  }

  .overflow-sm-x-auto {
    overflow-x: auto !important;
  }

  .overflow-sm-y-auto {
    overflow-y: auto !important;
  }

  .overflow-sm-scroll {
    overflow: scroll !important;
  }

  .overflow-sm-x-scroll {
    overflow-x: scroll !important;
  }

  .overflow-sm-y-scroll {
    overflow-y: scroll !important;
  }
}
@media (min-width: 768px) {
  .overflow-md-visible {
    overflow: visible !important;
  }

  .overflow-md-x-visible {
    overflow-x: visible !important;
  }

  .overflow-md-y-visible {
    overflow-y: visible !important;
  }

  .overflow-md-hidden {
    overflow: hidden !important;
  }

  .overflow-md-x-hidden {
    overflow-x: hidden !important;
  }

  .overflow-md-y-hidden {
    overflow-y: hidden !important;
  }

  .overflow-md-auto {
    overflow: auto !important;
  }

  .overflow-md-x-auto {
    overflow-x: auto !important;
  }

  .overflow-md-y-auto {
    overflow-y: auto !important;
  }

  .overflow-md-scroll {
    overflow: scroll !important;
  }

  .overflow-md-x-scroll {
    overflow-x: scroll !important;
  }

  .overflow-md-y-scroll {
    overflow-y: scroll !important;
  }
}
@media (min-width: 1012px) {
  .overflow-lg-visible {
    overflow: visible !important;
  }

  .overflow-lg-x-visible {
    overflow-x: visible !important;
  }

  .overflow-lg-y-visible {
    overflow-y: visible !important;
  }

  .overflow-lg-hidden {
    overflow: hidden !important;
  }

  .overflow-lg-x-hidden {
    overflow-x: hidden !important;
  }

  .overflow-lg-y-hidden {
    overflow-y: hidden !important;
  }

  .overflow-lg-auto {
    overflow: auto !important;
  }

  .overflow-lg-x-auto {
    overflow-x: auto !important;
  }

  .overflow-lg-y-auto {
    overflow-y: auto !important;
  }

  .overflow-lg-scroll {
    overflow: scroll !important;
  }

  .overflow-lg-x-scroll {
    overflow-x: scroll !important;
  }

  .overflow-lg-y-scroll {
    overflow-y: scroll !important;
  }
}
@media (min-width: 1280px) {
  .overflow-xl-visible {
    overflow: visible !important;
  }

  .overflow-xl-x-visible {
    overflow-x: visible !important;
  }

  .overflow-xl-y-visible {
    overflow-y: visible !important;
  }

  .overflow-xl-hidden {
    overflow: hidden !important;
  }

  .overflow-xl-x-hidden {
    overflow-x: hidden !important;
  }

  .overflow-xl-y-hidden {
    overflow-y: hidden !important;
  }

  .overflow-xl-auto {
    overflow: auto !important;
  }

  .overflow-xl-x-auto {
    overflow-x: auto !important;
  }

  .overflow-xl-y-auto {
    overflow-y: auto !important;
  }

  .overflow-xl-scroll {
    overflow: scroll !important;
  }

  .overflow-xl-x-scroll {
    overflow-x: scroll !important;
  }

  .overflow-xl-y-scroll {
    overflow-y: scroll !important;
  }
}
/* Clear floats around the element */
.clearfix::before {
  display: table;
  content: "";
}
.clearfix::after {
  display: table;
  clear: both;
  content: "";
}

/* Float to the left */
.float-left {
  float: left !important;
}

/* Float to the right */
.float-right {
  float: right !important;
}

/* No float */
.float-none {
  float: none !important;
}

@media (min-width: 544px) {
  /* Float to the left */
  .float-sm-left {
    float: left !important;
  }

  /* Float to the right */
  .float-sm-right {
    float: right !important;
  }

  /* No float */
  .float-sm-none {
    float: none !important;
  }
}
@media (min-width: 768px) {
  /* Float to the left */
  .float-md-left {
    float: left !important;
  }

  /* Float to the right */
  .float-md-right {
    float: right !important;
  }

  /* No float */
  .float-md-none {
    float: none !important;
  }
}
@media (min-width: 1012px) {
  /* Float to the left */
  .float-lg-left {
    float: left !important;
  }

  /* Float to the right */
  .float-lg-right {
    float: right !important;
  }

  /* No float */
  .float-lg-none {
    float: none !important;
  }
}
@media (min-width: 1280px) {
  /* Float to the left */
  .float-xl-left {
    float: left !important;
  }

  /* Float to the right */
  .float-xl-right {
    float: right !important;
  }

  /* No float */
  .float-xl-none {
    float: none !important;
  }
}
/* Max width 100% */
.width-fit {
  max-width: 100% !important;
}

/* Set the width to 100% */
.width-full {
  width: 100% !important;
}

/* Max height 100% */
.height-fit {
  max-height: 100% !important;
}

/* Set the height to 100% */
.height-full {
  height: 100% !important;
}

/* Remove min-width from element */
.min-width-0 {
  min-width: 0 !important;
}

.width-auto {
  width: auto !important;
}

/* Set the direction to rtl */
.direction-rtl {
  direction: rtl !important;
}

/* Set the direction to ltr */
.direction-ltr {
  direction: ltr !important;
}

@media (min-width: 544px) {
  .width-sm-auto {
    width: auto !important;
  }

  /* Set the direction to rtl */
  .direction-sm-rtl {
    direction: rtl !important;
  }

  /* Set the direction to ltr */
  .direction-sm-ltr {
    direction: ltr !important;
  }
}
@media (min-width: 768px) {
  .width-md-auto {
    width: auto !important;
  }

  /* Set the direction to rtl */
  .direction-md-rtl {
    direction: rtl !important;
  }

  /* Set the direction to ltr */
  .direction-md-ltr {
    direction: ltr !important;
  }
}
@media (min-width: 1012px) {
  .width-lg-auto {
    width: auto !important;
  }

  /* Set the direction to rtl */
  .direction-lg-rtl {
    direction: rtl !important;
  }

  /* Set the direction to ltr */
  .direction-lg-ltr {
    direction: ltr !important;
  }
}
@media (min-width: 1280px) {
  .width-xl-auto {
    width: auto !important;
  }

  /* Set the direction to rtl */
  .direction-xl-rtl {
    direction: rtl !important;
  }

  /* Set the direction to ltr */
  .direction-xl-ltr {
    direction: ltr !important;
  }
}
/* Set a $size margin to all sides at $breakpoint */
.m-0 {
  margin: 0 !important;
}

/* Set a $size margin on the top at $breakpoint */
.mt-0 {
  margin-top: 0 !important;
}

/* Set a $size margin on the bottom at $breakpoint */
.mb-0 {
  margin-bottom: 0 !important;
}

/* Set a $size margin on the right at $breakpoint */
.mr-0 {
  margin-right: 0 !important;
}

/* Set a $size margin on the left at $breakpoint */
.ml-0 {
  margin-left: 0 !important;
}

/* Set a $size margin on the left & right at $breakpoint */
.mx-0 {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

/* Set a $size margin on the top & bottom at $breakpoint */
.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/* Set a $size margin to all sides at $breakpoint */
.m-1 {
  margin: 4px !important;
}

/* Set a $size margin on the top at $breakpoint */
.mt-1 {
  margin-top: 4px !important;
}

/* Set a $size margin on the bottom at $breakpoint */
.mb-1 {
  margin-bottom: 4px !important;
}

/* Set a $size margin on the right at $breakpoint */
.mr-1 {
  margin-right: 4px !important;
}

/* Set a $size margin on the left at $breakpoint */
.ml-1 {
  margin-left: 4px !important;
}

/* Set a negative $size margin on top at $breakpoint */
.mt-n1 {
  margin-top: -4px !important;
}

/* Set a negative $size margin on the bottom at $breakpoint */
.mb-n1 {
  margin-bottom: -4px !important;
}

/* Set a negative $size margin on the right at $breakpoint */
.mr-n1 {
  margin-right: -4px !important;
}

/* Set a negative $size margin on the left at $breakpoint */
.ml-n1 {
  margin-left: -4px !important;
}

/* Set a $size margin on the left & right at $breakpoint */
.mx-1 {
  margin-right: 4px !important;
  margin-left: 4px !important;
}

/* Set a $size margin on the top & bottom at $breakpoint */
.my-1 {
  margin-top: 4px !important;
  margin-bottom: 4px !important;
}

/* Set a $size margin to all sides at $breakpoint */
.m-2 {
  margin: 8px !important;
}

/* Set a $size margin on the top at $breakpoint */
.mt-2 {
  margin-top: 8px !important;
}

/* Set a $size margin on the bottom at $breakpoint */
.mb-2 {
  margin-bottom: 8px !important;
}

/* Set a $size margin on the right at $breakpoint */
.mr-2 {
  margin-right: 8px !important;
}

/* Set a $size margin on the left at $breakpoint */
.ml-2 {
  margin-left: 8px !important;
}

/* Set a negative $size margin on top at $breakpoint */
.mt-n2 {
  margin-top: -8px !important;
}

/* Set a negative $size margin on the bottom at $breakpoint */
.mb-n2 {
  margin-bottom: -8px !important;
}

/* Set a negative $size margin on the right at $breakpoint */
.mr-n2 {
  margin-right: -8px !important;
}

/* Set a negative $size margin on the left at $breakpoint */
.ml-n2 {
  margin-left: -8px !important;
}

/* Set a $size margin on the left & right at $breakpoint */
.mx-2 {
  margin-right: 8px !important;
  margin-left: 8px !important;
}

/* Set a $size margin on the top & bottom at $breakpoint */
.my-2 {
  margin-top: 8px !important;
  margin-bottom: 8px !important;
}

/* Set a $size margin to all sides at $breakpoint */
.m-3 {
  margin: 16px !important;
}

/* Set a $size margin on the top at $breakpoint */
.mt-3 {
  margin-top: 16px !important;
}

/* Set a $size margin on the bottom at $breakpoint */
.mb-3 {
  margin-bottom: 16px !important;
}

/* Set a $size margin on the right at $breakpoint */
.mr-3 {
  margin-right: 16px !important;
}

/* Set a $size margin on the left at $breakpoint */
.ml-3 {
  margin-left: 16px !important;
}

/* Set a negative $size margin on top at $breakpoint */
.mt-n3 {
  margin-top: -16px !important;
}

/* Set a negative $size margin on the bottom at $breakpoint */
.mb-n3 {
  margin-bottom: -16px !important;
}

/* Set a negative $size margin on the right at $breakpoint */
.mr-n3 {
  margin-right: -16px !important;
}

/* Set a negative $size margin on the left at $breakpoint */
.ml-n3 {
  margin-left: -16px !important;
}

/* Set a $size margin on the left & right at $breakpoint */
.mx-3 {
  margin-right: 16px !important;
  margin-left: 16px !important;
}

/* Set a $size margin on the top & bottom at $breakpoint */
.my-3 {
  margin-top: 16px !important;
  margin-bottom: 16px !important;
}

/* Set a $size margin to all sides at $breakpoint */
.m-4 {
  margin: 24px !important;
}

/* Set a $size margin on the top at $breakpoint */
.mt-4 {
  margin-top: 24px !important;
}

/* Set a $size margin on the bottom at $breakpoint */
.mb-4 {
  margin-bottom: 24px !important;
}

/* Set a $size margin on the right at $breakpoint */
.mr-4 {
  margin-right: 24px !important;
}

/* Set a $size margin on the left at $breakpoint */
.ml-4 {
  margin-left: 24px !important;
}

/* Set a negative $size margin on top at $breakpoint */
.mt-n4 {
  margin-top: -24px !important;
}

/* Set a negative $size margin on the bottom at $breakpoint */
.mb-n4 {
  margin-bottom: -24px !important;
}

/* Set a negative $size margin on the right at $breakpoint */
.mr-n4 {
  margin-right: -24px !important;
}

/* Set a negative $size margin on the left at $breakpoint */
.ml-n4 {
  margin-left: -24px !important;
}

/* Set a $size margin on the left & right at $breakpoint */
.mx-4 {
  margin-right: 24px !important;
  margin-left: 24px !important;
}

/* Set a $size margin on the top & bottom at $breakpoint */
.my-4 {
  margin-top: 24px !important;
  margin-bottom: 24px !important;
}

/* Set a $size margin to all sides at $breakpoint */
.m-5 {
  margin: 32px !important;
}

/* Set a $size margin on the top at $breakpoint */
.mt-5 {
  margin-top: 32px !important;
}

/* Set a $size margin on the bottom at $breakpoint */
.mb-5 {
  margin-bottom: 32px !important;
}

/* Set a $size margin on the right at $breakpoint */
.mr-5 {
  margin-right: 32px !important;
}

/* Set a $size margin on the left at $breakpoint */
.ml-5 {
  margin-left: 32px !important;
}

/* Set a negative $size margin on top at $breakpoint */
.mt-n5 {
  margin-top: -32px !important;
}

/* Set a negative $size margin on the bottom at $breakpoint */
.mb-n5 {
  margin-bottom: -32px !important;
}

/* Set a negative $size margin on the right at $breakpoint */
.mr-n5 {
  margin-right: -32px !important;
}

/* Set a negative $size margin on the left at $breakpoint */
.ml-n5 {
  margin-left: -32px !important;
}

/* Set a $size margin on the left & right at $breakpoint */
.mx-5 {
  margin-right: 32px !important;
  margin-left: 32px !important;
}

/* Set a $size margin on the top & bottom at $breakpoint */
.my-5 {
  margin-top: 32px !important;
  margin-bottom: 32px !important;
}

/* Set a $size margin to all sides at $breakpoint */
.m-6 {
  margin: 40px !important;
}

/* Set a $size margin on the top at $breakpoint */
.mt-6 {
  margin-top: 40px !important;
}

/* Set a $size margin on the bottom at $breakpoint */
.mb-6 {
  margin-bottom: 40px !important;
}

/* Set a $size margin on the right at $breakpoint */
.mr-6 {
  margin-right: 40px !important;
}

/* Set a $size margin on the left at $breakpoint */
.ml-6 {
  margin-left: 40px !important;
}

/* Set a negative $size margin on top at $breakpoint */
.mt-n6 {
  margin-top: -40px !important;
}

/* Set a negative $size margin on the bottom at $breakpoint */
.mb-n6 {
  margin-bottom: -40px !important;
}

/* Set a negative $size margin on the right at $breakpoint */
.mr-n6 {
  margin-right: -40px !important;
}

/* Set a negative $size margin on the left at $breakpoint */
.ml-n6 {
  margin-left: -40px !important;
}

/* Set a $size margin on the left & right at $breakpoint */
.mx-6 {
  margin-right: 40px !important;
  margin-left: 40px !important;
}

/* Set a $size margin on the top & bottom at $breakpoint */
.my-6 {
  margin-top: 40px !important;
  margin-bottom: 40px !important;
}

/* Set a $size margin on the top at $breakpoint */
.mt-7 {
  margin-top: 48px !important;
}

/* Set a $size margin on the bottom at $breakpoint */
.mb-7 {
  margin-bottom: 48px !important;
}

/* Set a negative $size margin on top at $breakpoint */
.mt-n7 {
  margin-top: -48px !important;
}

/* Set a negative $size margin on the bottom at $breakpoint */
.mb-n7 {
  margin-bottom: -48px !important;
}

/* Set a $size margin on the top & bottom at $breakpoint */
.my-7 {
  margin-top: 48px !important;
  margin-bottom: 48px !important;
}

/* Set a $size margin on the top at $breakpoint */
.mt-8 {
  margin-top: 64px !important;
}

/* Set a $size margin on the bottom at $breakpoint */
.mb-8 {
  margin-bottom: 64px !important;
}

/* Set a negative $size margin on top at $breakpoint */
.mt-n8 {
  margin-top: -64px !important;
}

/* Set a negative $size margin on the bottom at $breakpoint */
.mb-n8 {
  margin-bottom: -64px !important;
}

/* Set a $size margin on the top & bottom at $breakpoint */
.my-8 {
  margin-top: 64px !important;
  margin-bottom: 64px !important;
}

/* Set a $size margin on the top at $breakpoint */
.mt-9 {
  margin-top: 80px !important;
}

/* Set a $size margin on the bottom at $breakpoint */
.mb-9 {
  margin-bottom: 80px !important;
}

/* Set a negative $size margin on top at $breakpoint */
.mt-n9 {
  margin-top: -80px !important;
}

/* Set a negative $size margin on the bottom at $breakpoint */
.mb-n9 {
  margin-bottom: -80px !important;
}

/* Set a $size margin on the top & bottom at $breakpoint */
.my-9 {
  margin-top: 80px !important;
  margin-bottom: 80px !important;
}

/* Set a $size margin on the top at $breakpoint */
.mt-10 {
  margin-top: 96px !important;
}

/* Set a $size margin on the bottom at $breakpoint */
.mb-10 {
  margin-bottom: 96px !important;
}

/* Set a negative $size margin on top at $breakpoint */
.mt-n10 {
  margin-top: -96px !important;
}

/* Set a negative $size margin on the bottom at $breakpoint */
.mb-n10 {
  margin-bottom: -96px !important;
}

/* Set a $size margin on the top & bottom at $breakpoint */
.my-10 {
  margin-top: 96px !important;
  margin-bottom: 96px !important;
}

/* Set a $size margin on the top at $breakpoint */
.mt-11 {
  margin-top: 112px !important;
}

/* Set a $size margin on the bottom at $breakpoint */
.mb-11 {
  margin-bottom: 112px !important;
}

/* Set a negative $size margin on top at $breakpoint */
.mt-n11 {
  margin-top: -112px !important;
}

/* Set a negative $size margin on the bottom at $breakpoint */
.mb-n11 {
  margin-bottom: -112px !important;
}

/* Set a $size margin on the top & bottom at $breakpoint */
.my-11 {
  margin-top: 112px !important;
  margin-bottom: 112px !important;
}

/* Set a $size margin on the top at $breakpoint */
.mt-12 {
  margin-top: 128px !important;
}

/* Set a $size margin on the bottom at $breakpoint */
.mb-12 {
  margin-bottom: 128px !important;
}

/* Set a negative $size margin on top at $breakpoint */
.mt-n12 {
  margin-top: -128px !important;
}

/* Set a negative $size margin on the bottom at $breakpoint */
.mb-n12 {
  margin-bottom: -128px !important;
}

/* Set a $size margin on the top & bottom at $breakpoint */
.my-12 {
  margin-top: 128px !important;
  margin-bottom: 128px !important;
}

/* responsive horizontal auto margins */
.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

@media (min-width: 544px) {
  /* Set a $size margin to all sides at $breakpoint */
  .m-sm-0 {
    margin: 0 !important;
  }

  /* Set a $size margin on the top at $breakpoint */
  .mt-sm-0 {
    margin-top: 0 !important;
  }

  /* Set a $size margin on the bottom at $breakpoint */
  .mb-sm-0 {
    margin-bottom: 0 !important;
  }

  /* Set a $size margin on the right at $breakpoint */
  .mr-sm-0 {
    margin-right: 0 !important;
  }

  /* Set a $size margin on the left at $breakpoint */
  .ml-sm-0 {
    margin-left: 0 !important;
  }

  /* Set a $size margin on the left & right at $breakpoint */
  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  /* Set a $size margin on the top & bottom at $breakpoint */
  .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  /* Set a $size margin to all sides at $breakpoint */
  .m-sm-1 {
    margin: 4px !important;
  }

  /* Set a $size margin on the top at $breakpoint */
  .mt-sm-1 {
    margin-top: 4px !important;
  }

  /* Set a $size margin on the bottom at $breakpoint */
  .mb-sm-1 {
    margin-bottom: 4px !important;
  }

  /* Set a $size margin on the right at $breakpoint */
  .mr-sm-1 {
    margin-right: 4px !important;
  }

  /* Set a $size margin on the left at $breakpoint */
  .ml-sm-1 {
    margin-left: 4px !important;
  }

  /* Set a negative $size margin on top at $breakpoint */
  .mt-sm-n1 {
    margin-top: -4px !important;
  }

  /* Set a negative $size margin on the bottom at $breakpoint */
  .mb-sm-n1 {
    margin-bottom: -4px !important;
  }

  /* Set a negative $size margin on the right at $breakpoint */
  .mr-sm-n1 {
    margin-right: -4px !important;
  }

  /* Set a negative $size margin on the left at $breakpoint */
  .ml-sm-n1 {
    margin-left: -4px !important;
  }

  /* Set a $size margin on the left & right at $breakpoint */
  .mx-sm-1 {
    margin-right: 4px !important;
    margin-left: 4px !important;
  }

  /* Set a $size margin on the top & bottom at $breakpoint */
  .my-sm-1 {
    margin-top: 4px !important;
    margin-bottom: 4px !important;
  }

  /* Set a $size margin to all sides at $breakpoint */
  .m-sm-2 {
    margin: 8px !important;
  }

  /* Set a $size margin on the top at $breakpoint */
  .mt-sm-2 {
    margin-top: 8px !important;
  }

  /* Set a $size margin on the bottom at $breakpoint */
  .mb-sm-2 {
    margin-bottom: 8px !important;
  }

  /* Set a $size margin on the right at $breakpoint */
  .mr-sm-2 {
    margin-right: 8px !important;
  }

  /* Set a $size margin on the left at $breakpoint */
  .ml-sm-2 {
    margin-left: 8px !important;
  }

  /* Set a negative $size margin on top at $breakpoint */
  .mt-sm-n2 {
    margin-top: -8px !important;
  }

  /* Set a negative $size margin on the bottom at $breakpoint */
  .mb-sm-n2 {
    margin-bottom: -8px !important;
  }

  /* Set a negative $size margin on the right at $breakpoint */
  .mr-sm-n2 {
    margin-right: -8px !important;
  }

  /* Set a negative $size margin on the left at $breakpoint */
  .ml-sm-n2 {
    margin-left: -8px !important;
  }

  /* Set a $size margin on the left & right at $breakpoint */
  .mx-sm-2 {
    margin-right: 8px !important;
    margin-left: 8px !important;
  }

  /* Set a $size margin on the top & bottom at $breakpoint */
  .my-sm-2 {
    margin-top: 8px !important;
    margin-bottom: 8px !important;
  }

  /* Set a $size margin to all sides at $breakpoint */
  .m-sm-3 {
    margin: 16px !important;
  }

  /* Set a $size margin on the top at $breakpoint */
  .mt-sm-3 {
    margin-top: 16px !important;
  }

  /* Set a $size margin on the bottom at $breakpoint */
  .mb-sm-3 {
    margin-bottom: 16px !important;
  }

  /* Set a $size margin on the right at $breakpoint */
  .mr-sm-3 {
    margin-right: 16px !important;
  }

  /* Set a $size margin on the left at $breakpoint */
  .ml-sm-3 {
    margin-left: 16px !important;
  }

  /* Set a negative $size margin on top at $breakpoint */
  .mt-sm-n3 {
    margin-top: -16px !important;
  }

  /* Set a negative $size margin on the bottom at $breakpoint */
  .mb-sm-n3 {
    margin-bottom: -16px !important;
  }

  /* Set a negative $size margin on the right at $breakpoint */
  .mr-sm-n3 {
    margin-right: -16px !important;
  }

  /* Set a negative $size margin on the left at $breakpoint */
  .ml-sm-n3 {
    margin-left: -16px !important;
  }

  /* Set a $size margin on the left & right at $breakpoint */
  .mx-sm-3 {
    margin-right: 16px !important;
    margin-left: 16px !important;
  }

  /* Set a $size margin on the top & bottom at $breakpoint */
  .my-sm-3 {
    margin-top: 16px !important;
    margin-bottom: 16px !important;
  }

  /* Set a $size margin to all sides at $breakpoint */
  .m-sm-4 {
    margin: 24px !important;
  }

  /* Set a $size margin on the top at $breakpoint */
  .mt-sm-4 {
    margin-top: 24px !important;
  }

  /* Set a $size margin on the bottom at $breakpoint */
  .mb-sm-4 {
    margin-bottom: 24px !important;
  }

  /* Set a $size margin on the right at $breakpoint */
  .mr-sm-4 {
    margin-right: 24px !important;
  }

  /* Set a $size margin on the left at $breakpoint */
  .ml-sm-4 {
    margin-left: 24px !important;
  }

  /* Set a negative $size margin on top at $breakpoint */
  .mt-sm-n4 {
    margin-top: -24px !important;
  }

  /* Set a negative $size margin on the bottom at $breakpoint */
  .mb-sm-n4 {
    margin-bottom: -24px !important;
  }

  /* Set a negative $size margin on the right at $breakpoint */
  .mr-sm-n4 {
    margin-right: -24px !important;
  }

  /* Set a negative $size margin on the left at $breakpoint */
  .ml-sm-n4 {
    margin-left: -24px !important;
  }

  /* Set a $size margin on the left & right at $breakpoint */
  .mx-sm-4 {
    margin-right: 24px !important;
    margin-left: 24px !important;
  }

  /* Set a $size margin on the top & bottom at $breakpoint */
  .my-sm-4 {
    margin-top: 24px !important;
    margin-bottom: 24px !important;
  }

  /* Set a $size margin to all sides at $breakpoint */
  .m-sm-5 {
    margin: 32px !important;
  }

  /* Set a $size margin on the top at $breakpoint */
  .mt-sm-5 {
    margin-top: 32px !important;
  }

  /* Set a $size margin on the bottom at $breakpoint */
  .mb-sm-5 {
    margin-bottom: 32px !important;
  }

  /* Set a $size margin on the right at $breakpoint */
  .mr-sm-5 {
    margin-right: 32px !important;
  }

  /* Set a $size margin on the left at $breakpoint */
  .ml-sm-5 {
    margin-left: 32px !important;
  }

  /* Set a negative $size margin on top at $breakpoint */
  .mt-sm-n5 {
    margin-top: -32px !important;
  }

  /* Set a negative $size margin on the bottom at $breakpoint */
  .mb-sm-n5 {
    margin-bottom: -32px !important;
  }

  /* Set a negative $size margin on the right at $breakpoint */
  .mr-sm-n5 {
    margin-right: -32px !important;
  }

  /* Set a negative $size margin on the left at $breakpoint */
  .ml-sm-n5 {
    margin-left: -32px !important;
  }

  /* Set a $size margin on the left & right at $breakpoint */
  .mx-sm-5 {
    margin-right: 32px !important;
    margin-left: 32px !important;
  }

  /* Set a $size margin on the top & bottom at $breakpoint */
  .my-sm-5 {
    margin-top: 32px !important;
    margin-bottom: 32px !important;
  }

  /* Set a $size margin to all sides at $breakpoint */
  .m-sm-6 {
    margin: 40px !important;
  }

  /* Set a $size margin on the top at $breakpoint */
  .mt-sm-6 {
    margin-top: 40px !important;
  }

  /* Set a $size margin on the bottom at $breakpoint */
  .mb-sm-6 {
    margin-bottom: 40px !important;
  }

  /* Set a $size margin on the right at $breakpoint */
  .mr-sm-6 {
    margin-right: 40px !important;
  }

  /* Set a $size margin on the left at $breakpoint */
  .ml-sm-6 {
    margin-left: 40px !important;
  }

  /* Set a negative $size margin on top at $breakpoint */
  .mt-sm-n6 {
    margin-top: -40px !important;
  }

  /* Set a negative $size margin on the bottom at $breakpoint */
  .mb-sm-n6 {
    margin-bottom: -40px !important;
  }

  /* Set a negative $size margin on the right at $breakpoint */
  .mr-sm-n6 {
    margin-right: -40px !important;
  }

  /* Set a negative $size margin on the left at $breakpoint */
  .ml-sm-n6 {
    margin-left: -40px !important;
  }

  /* Set a $size margin on the left & right at $breakpoint */
  .mx-sm-6 {
    margin-right: 40px !important;
    margin-left: 40px !important;
  }

  /* Set a $size margin on the top & bottom at $breakpoint */
  .my-sm-6 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }

  /* Set a $size margin on the top at $breakpoint */
  .mt-sm-7 {
    margin-top: 48px !important;
  }

  /* Set a $size margin on the bottom at $breakpoint */
  .mb-sm-7 {
    margin-bottom: 48px !important;
  }

  /* Set a negative $size margin on top at $breakpoint */
  .mt-sm-n7 {
    margin-top: -48px !important;
  }

  /* Set a negative $size margin on the bottom at $breakpoint */
  .mb-sm-n7 {
    margin-bottom: -48px !important;
  }

  /* Set a $size margin on the top & bottom at $breakpoint */
  .my-sm-7 {
    margin-top: 48px !important;
    margin-bottom: 48px !important;
  }

  /* Set a $size margin on the top at $breakpoint */
  .mt-sm-8 {
    margin-top: 64px !important;
  }

  /* Set a $size margin on the bottom at $breakpoint */
  .mb-sm-8 {
    margin-bottom: 64px !important;
  }

  /* Set a negative $size margin on top at $breakpoint */
  .mt-sm-n8 {
    margin-top: -64px !important;
  }

  /* Set a negative $size margin on the bottom at $breakpoint */
  .mb-sm-n8 {
    margin-bottom: -64px !important;
  }

  /* Set a $size margin on the top & bottom at $breakpoint */
  .my-sm-8 {
    margin-top: 64px !important;
    margin-bottom: 64px !important;
  }

  /* Set a $size margin on the top at $breakpoint */
  .mt-sm-9 {
    margin-top: 80px !important;
  }

  /* Set a $size margin on the bottom at $breakpoint */
  .mb-sm-9 {
    margin-bottom: 80px !important;
  }

  /* Set a negative $size margin on top at $breakpoint */
  .mt-sm-n9 {
    margin-top: -80px !important;
  }

  /* Set a negative $size margin on the bottom at $breakpoint */
  .mb-sm-n9 {
    margin-bottom: -80px !important;
  }

  /* Set a $size margin on the top & bottom at $breakpoint */
  .my-sm-9 {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
  }

  /* Set a $size margin on the top at $breakpoint */
  .mt-sm-10 {
    margin-top: 96px !important;
  }

  /* Set a $size margin on the bottom at $breakpoint */
  .mb-sm-10 {
    margin-bottom: 96px !important;
  }

  /* Set a negative $size margin on top at $breakpoint */
  .mt-sm-n10 {
    margin-top: -96px !important;
  }

  /* Set a negative $size margin on the bottom at $breakpoint */
  .mb-sm-n10 {
    margin-bottom: -96px !important;
  }

  /* Set a $size margin on the top & bottom at $breakpoint */
  .my-sm-10 {
    margin-top: 96px !important;
    margin-bottom: 96px !important;
  }

  /* Set a $size margin on the top at $breakpoint */
  .mt-sm-11 {
    margin-top: 112px !important;
  }

  /* Set a $size margin on the bottom at $breakpoint */
  .mb-sm-11 {
    margin-bottom: 112px !important;
  }

  /* Set a negative $size margin on top at $breakpoint */
  .mt-sm-n11 {
    margin-top: -112px !important;
  }

  /* Set a negative $size margin on the bottom at $breakpoint */
  .mb-sm-n11 {
    margin-bottom: -112px !important;
  }

  /* Set a $size margin on the top & bottom at $breakpoint */
  .my-sm-11 {
    margin-top: 112px !important;
    margin-bottom: 112px !important;
  }

  /* Set a $size margin on the top at $breakpoint */
  .mt-sm-12 {
    margin-top: 128px !important;
  }

  /* Set a $size margin on the bottom at $breakpoint */
  .mb-sm-12 {
    margin-bottom: 128px !important;
  }

  /* Set a negative $size margin on top at $breakpoint */
  .mt-sm-n12 {
    margin-top: -128px !important;
  }

  /* Set a negative $size margin on the bottom at $breakpoint */
  .mb-sm-n12 {
    margin-bottom: -128px !important;
  }

  /* Set a $size margin on the top & bottom at $breakpoint */
  .my-sm-12 {
    margin-top: 128px !important;
    margin-bottom: 128px !important;
  }

  /* responsive horizontal auto margins */
  .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
}
@media (min-width: 768px) {
  /* Set a $size margin to all sides at $breakpoint */
  .m-md-0 {
    margin: 0 !important;
  }

  /* Set a $size margin on the top at $breakpoint */
  .mt-md-0 {
    margin-top: 0 !important;
  }

  /* Set a $size margin on the bottom at $breakpoint */
  .mb-md-0 {
    margin-bottom: 0 !important;
  }

  /* Set a $size margin on the right at $breakpoint */
  .mr-md-0 {
    margin-right: 0 !important;
  }

  /* Set a $size margin on the left at $breakpoint */
  .ml-md-0 {
    margin-left: 0 !important;
  }

  /* Set a $size margin on the left & right at $breakpoint */
  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  /* Set a $size margin on the top & bottom at $breakpoint */
  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  /* Set a $size margin to all sides at $breakpoint */
  .m-md-1 {
    margin: 4px !important;
  }

  /* Set a $size margin on the top at $breakpoint */
  .mt-md-1 {
    margin-top: 4px !important;
  }

  /* Set a $size margin on the bottom at $breakpoint */
  .mb-md-1 {
    margin-bottom: 4px !important;
  }

  /* Set a $size margin on the right at $breakpoint */
  .mr-md-1 {
    margin-right: 4px !important;
  }

  /* Set a $size margin on the left at $breakpoint */
  .ml-md-1 {
    margin-left: 4px !important;
  }

  /* Set a negative $size margin on top at $breakpoint */
  .mt-md-n1 {
    margin-top: -4px !important;
  }

  /* Set a negative $size margin on the bottom at $breakpoint */
  .mb-md-n1 {
    margin-bottom: -4px !important;
  }

  /* Set a negative $size margin on the right at $breakpoint */
  .mr-md-n1 {
    margin-right: -4px !important;
  }

  /* Set a negative $size margin on the left at $breakpoint */
  .ml-md-n1 {
    margin-left: -4px !important;
  }

  /* Set a $size margin on the left & right at $breakpoint */
  .mx-md-1 {
    margin-right: 4px !important;
    margin-left: 4px !important;
  }

  /* Set a $size margin on the top & bottom at $breakpoint */
  .my-md-1 {
    margin-top: 4px !important;
    margin-bottom: 4px !important;
  }

  /* Set a $size margin to all sides at $breakpoint */
  .m-md-2 {
    margin: 8px !important;
  }

  /* Set a $size margin on the top at $breakpoint */
  .mt-md-2 {
    margin-top: 8px !important;
  }

  /* Set a $size margin on the bottom at $breakpoint */
  .mb-md-2 {
    margin-bottom: 8px !important;
  }

  /* Set a $size margin on the right at $breakpoint */
  .mr-md-2 {
    margin-right: 8px !important;
  }

  /* Set a $size margin on the left at $breakpoint */
  .ml-md-2 {
    margin-left: 8px !important;
  }

  /* Set a negative $size margin on top at $breakpoint */
  .mt-md-n2 {
    margin-top: -8px !important;
  }

  /* Set a negative $size margin on the bottom at $breakpoint */
  .mb-md-n2 {
    margin-bottom: -8px !important;
  }

  /* Set a negative $size margin on the right at $breakpoint */
  .mr-md-n2 {
    margin-right: -8px !important;
  }

  /* Set a negative $size margin on the left at $breakpoint */
  .ml-md-n2 {
    margin-left: -8px !important;
  }

  /* Set a $size margin on the left & right at $breakpoint */
  .mx-md-2 {
    margin-right: 8px !important;
    margin-left: 8px !important;
  }

  /* Set a $size margin on the top & bottom at $breakpoint */
  .my-md-2 {
    margin-top: 8px !important;
    margin-bottom: 8px !important;
  }

  /* Set a $size margin to all sides at $breakpoint */
  .m-md-3 {
    margin: 16px !important;
  }

  /* Set a $size margin on the top at $breakpoint */
  .mt-md-3 {
    margin-top: 16px !important;
  }

  /* Set a $size margin on the bottom at $breakpoint */
  .mb-md-3 {
    margin-bottom: 16px !important;
  }

  /* Set a $size margin on the right at $breakpoint */
  .mr-md-3 {
    margin-right: 16px !important;
  }

  /* Set a $size margin on the left at $breakpoint */
  .ml-md-3 {
    margin-left: 16px !important;
  }

  /* Set a negative $size margin on top at $breakpoint */
  .mt-md-n3 {
    margin-top: -16px !important;
  }

  /* Set a negative $size margin on the bottom at $breakpoint */
  .mb-md-n3 {
    margin-bottom: -16px !important;
  }

  /* Set a negative $size margin on the right at $breakpoint */
  .mr-md-n3 {
    margin-right: -16px !important;
  }

  /* Set a negative $size margin on the left at $breakpoint */
  .ml-md-n3 {
    margin-left: -16px !important;
  }

  /* Set a $size margin on the left & right at $breakpoint */
  .mx-md-3 {
    margin-right: 16px !important;
    margin-left: 16px !important;
  }

  /* Set a $size margin on the top & bottom at $breakpoint */
  .my-md-3 {
    margin-top: 16px !important;
    margin-bottom: 16px !important;
  }

  /* Set a $size margin to all sides at $breakpoint */
  .m-md-4 {
    margin: 24px !important;
  }

  /* Set a $size margin on the top at $breakpoint */
  .mt-md-4 {
    margin-top: 24px !important;
  }

  /* Set a $size margin on the bottom at $breakpoint */
  .mb-md-4 {
    margin-bottom: 24px !important;
  }

  /* Set a $size margin on the right at $breakpoint */
  .mr-md-4 {
    margin-right: 24px !important;
  }

  /* Set a $size margin on the left at $breakpoint */
  .ml-md-4 {
    margin-left: 24px !important;
  }

  /* Set a negative $size margin on top at $breakpoint */
  .mt-md-n4 {
    margin-top: -24px !important;
  }

  /* Set a negative $size margin on the bottom at $breakpoint */
  .mb-md-n4 {
    margin-bottom: -24px !important;
  }

  /* Set a negative $size margin on the right at $breakpoint */
  .mr-md-n4 {
    margin-right: -24px !important;
  }

  /* Set a negative $size margin on the left at $breakpoint */
  .ml-md-n4 {
    margin-left: -24px !important;
  }

  /* Set a $size margin on the left & right at $breakpoint */
  .mx-md-4 {
    margin-right: 24px !important;
    margin-left: 24px !important;
  }

  /* Set a $size margin on the top & bottom at $breakpoint */
  .my-md-4 {
    margin-top: 24px !important;
    margin-bottom: 24px !important;
  }

  /* Set a $size margin to all sides at $breakpoint */
  .m-md-5 {
    margin: 32px !important;
  }

  /* Set a $size margin on the top at $breakpoint */
  .mt-md-5 {
    margin-top: 32px !important;
  }

  /* Set a $size margin on the bottom at $breakpoint */
  .mb-md-5 {
    margin-bottom: 32px !important;
  }

  /* Set a $size margin on the right at $breakpoint */
  .mr-md-5 {
    margin-right: 32px !important;
  }

  /* Set a $size margin on the left at $breakpoint */
  .ml-md-5 {
    margin-left: 32px !important;
  }

  /* Set a negative $size margin on top at $breakpoint */
  .mt-md-n5 {
    margin-top: -32px !important;
  }

  /* Set a negative $size margin on the bottom at $breakpoint */
  .mb-md-n5 {
    margin-bottom: -32px !important;
  }

  /* Set a negative $size margin on the right at $breakpoint */
  .mr-md-n5 {
    margin-right: -32px !important;
  }

  /* Set a negative $size margin on the left at $breakpoint */
  .ml-md-n5 {
    margin-left: -32px !important;
  }

  /* Set a $size margin on the left & right at $breakpoint */
  .mx-md-5 {
    margin-right: 32px !important;
    margin-left: 32px !important;
  }

  /* Set a $size margin on the top & bottom at $breakpoint */
  .my-md-5 {
    margin-top: 32px !important;
    margin-bottom: 32px !important;
  }

  /* Set a $size margin to all sides at $breakpoint */
  .m-md-6 {
    margin: 40px !important;
  }

  /* Set a $size margin on the top at $breakpoint */
  .mt-md-6 {
    margin-top: 40px !important;
  }

  /* Set a $size margin on the bottom at $breakpoint */
  .mb-md-6 {
    margin-bottom: 40px !important;
  }

  /* Set a $size margin on the right at $breakpoint */
  .mr-md-6 {
    margin-right: 40px !important;
  }

  /* Set a $size margin on the left at $breakpoint */
  .ml-md-6 {
    margin-left: 40px !important;
  }

  /* Set a negative $size margin on top at $breakpoint */
  .mt-md-n6 {
    margin-top: -40px !important;
  }

  /* Set a negative $size margin on the bottom at $breakpoint */
  .mb-md-n6 {
    margin-bottom: -40px !important;
  }

  /* Set a negative $size margin on the right at $breakpoint */
  .mr-md-n6 {
    margin-right: -40px !important;
  }

  /* Set a negative $size margin on the left at $breakpoint */
  .ml-md-n6 {
    margin-left: -40px !important;
  }

  /* Set a $size margin on the left & right at $breakpoint */
  .mx-md-6 {
    margin-right: 40px !important;
    margin-left: 40px !important;
  }

  /* Set a $size margin on the top & bottom at $breakpoint */
  .my-md-6 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }

  /* Set a $size margin on the top at $breakpoint */
  .mt-md-7 {
    margin-top: 48px !important;
  }

  /* Set a $size margin on the bottom at $breakpoint */
  .mb-md-7 {
    margin-bottom: 48px !important;
  }

  /* Set a negative $size margin on top at $breakpoint */
  .mt-md-n7 {
    margin-top: -48px !important;
  }

  /* Set a negative $size margin on the bottom at $breakpoint */
  .mb-md-n7 {
    margin-bottom: -48px !important;
  }

  /* Set a $size margin on the top & bottom at $breakpoint */
  .my-md-7 {
    margin-top: 48px !important;
    margin-bottom: 48px !important;
  }

  /* Set a $size margin on the top at $breakpoint */
  .mt-md-8 {
    margin-top: 64px !important;
  }

  /* Set a $size margin on the bottom at $breakpoint */
  .mb-md-8 {
    margin-bottom: 64px !important;
  }

  /* Set a negative $size margin on top at $breakpoint */
  .mt-md-n8 {
    margin-top: -64px !important;
  }

  /* Set a negative $size margin on the bottom at $breakpoint */
  .mb-md-n8 {
    margin-bottom: -64px !important;
  }

  /* Set a $size margin on the top & bottom at $breakpoint */
  .my-md-8 {
    margin-top: 64px !important;
    margin-bottom: 64px !important;
  }

  /* Set a $size margin on the top at $breakpoint */
  .mt-md-9 {
    margin-top: 80px !important;
  }

  /* Set a $size margin on the bottom at $breakpoint */
  .mb-md-9 {
    margin-bottom: 80px !important;
  }

  /* Set a negative $size margin on top at $breakpoint */
  .mt-md-n9 {
    margin-top: -80px !important;
  }

  /* Set a negative $size margin on the bottom at $breakpoint */
  .mb-md-n9 {
    margin-bottom: -80px !important;
  }

  /* Set a $size margin on the top & bottom at $breakpoint */
  .my-md-9 {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
  }

  /* Set a $size margin on the top at $breakpoint */
  .mt-md-10 {
    margin-top: 96px !important;
  }

  /* Set a $size margin on the bottom at $breakpoint */
  .mb-md-10 {
    margin-bottom: 96px !important;
  }

  /* Set a negative $size margin on top at $breakpoint */
  .mt-md-n10 {
    margin-top: -96px !important;
  }

  /* Set a negative $size margin on the bottom at $breakpoint */
  .mb-md-n10 {
    margin-bottom: -96px !important;
  }

  /* Set a $size margin on the top & bottom at $breakpoint */
  .my-md-10 {
    margin-top: 96px !important;
    margin-bottom: 96px !important;
  }

  /* Set a $size margin on the top at $breakpoint */
  .mt-md-11 {
    margin-top: 112px !important;
  }

  /* Set a $size margin on the bottom at $breakpoint */
  .mb-md-11 {
    margin-bottom: 112px !important;
  }

  /* Set a negative $size margin on top at $breakpoint */
  .mt-md-n11 {
    margin-top: -112px !important;
  }

  /* Set a negative $size margin on the bottom at $breakpoint */
  .mb-md-n11 {
    margin-bottom: -112px !important;
  }

  /* Set a $size margin on the top & bottom at $breakpoint */
  .my-md-11 {
    margin-top: 112px !important;
    margin-bottom: 112px !important;
  }

  /* Set a $size margin on the top at $breakpoint */
  .mt-md-12 {
    margin-top: 128px !important;
  }

  /* Set a $size margin on the bottom at $breakpoint */
  .mb-md-12 {
    margin-bottom: 128px !important;
  }

  /* Set a negative $size margin on top at $breakpoint */
  .mt-md-n12 {
    margin-top: -128px !important;
  }

  /* Set a negative $size margin on the bottom at $breakpoint */
  .mb-md-n12 {
    margin-bottom: -128px !important;
  }

  /* Set a $size margin on the top & bottom at $breakpoint */
  .my-md-12 {
    margin-top: 128px !important;
    margin-bottom: 128px !important;
  }

  /* responsive horizontal auto margins */
  .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
}
@media (min-width: 1012px) {
  /* Set a $size margin to all sides at $breakpoint */
  .m-lg-0 {
    margin: 0 !important;
  }

  /* Set a $size margin on the top at $breakpoint */
  .mt-lg-0 {
    margin-top: 0 !important;
  }

  /* Set a $size margin on the bottom at $breakpoint */
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }

  /* Set a $size margin on the right at $breakpoint */
  .mr-lg-0 {
    margin-right: 0 !important;
  }

  /* Set a $size margin on the left at $breakpoint */
  .ml-lg-0 {
    margin-left: 0 !important;
  }

  /* Set a $size margin on the left & right at $breakpoint */
  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  /* Set a $size margin on the top & bottom at $breakpoint */
  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  /* Set a $size margin to all sides at $breakpoint */
  .m-lg-1 {
    margin: 4px !important;
  }

  /* Set a $size margin on the top at $breakpoint */
  .mt-lg-1 {
    margin-top: 4px !important;
  }

  /* Set a $size margin on the bottom at $breakpoint */
  .mb-lg-1 {
    margin-bottom: 4px !important;
  }

  /* Set a $size margin on the right at $breakpoint */
  .mr-lg-1 {
    margin-right: 4px !important;
  }

  /* Set a $size margin on the left at $breakpoint */
  .ml-lg-1 {
    margin-left: 4px !important;
  }

  /* Set a negative $size margin on top at $breakpoint */
  .mt-lg-n1 {
    margin-top: -4px !important;
  }

  /* Set a negative $size margin on the bottom at $breakpoint */
  .mb-lg-n1 {
    margin-bottom: -4px !important;
  }

  /* Set a negative $size margin on the right at $breakpoint */
  .mr-lg-n1 {
    margin-right: -4px !important;
  }

  /* Set a negative $size margin on the left at $breakpoint */
  .ml-lg-n1 {
    margin-left: -4px !important;
  }

  /* Set a $size margin on the left & right at $breakpoint */
  .mx-lg-1 {
    margin-right: 4px !important;
    margin-left: 4px !important;
  }

  /* Set a $size margin on the top & bottom at $breakpoint */
  .my-lg-1 {
    margin-top: 4px !important;
    margin-bottom: 4px !important;
  }

  /* Set a $size margin to all sides at $breakpoint */
  .m-lg-2 {
    margin: 8px !important;
  }

  /* Set a $size margin on the top at $breakpoint */
  .mt-lg-2 {
    margin-top: 8px !important;
  }

  /* Set a $size margin on the bottom at $breakpoint */
  .mb-lg-2 {
    margin-bottom: 8px !important;
  }

  /* Set a $size margin on the right at $breakpoint */
  .mr-lg-2 {
    margin-right: 8px !important;
  }

  /* Set a $size margin on the left at $breakpoint */
  .ml-lg-2 {
    margin-left: 8px !important;
  }

  /* Set a negative $size margin on top at $breakpoint */
  .mt-lg-n2 {
    margin-top: -8px !important;
  }

  /* Set a negative $size margin on the bottom at $breakpoint */
  .mb-lg-n2 {
    margin-bottom: -8px !important;
  }

  /* Set a negative $size margin on the right at $breakpoint */
  .mr-lg-n2 {
    margin-right: -8px !important;
  }

  /* Set a negative $size margin on the left at $breakpoint */
  .ml-lg-n2 {
    margin-left: -8px !important;
  }

  /* Set a $size margin on the left & right at $breakpoint */
  .mx-lg-2 {
    margin-right: 8px !important;
    margin-left: 8px !important;
  }

  /* Set a $size margin on the top & bottom at $breakpoint */
  .my-lg-2 {
    margin-top: 8px !important;
    margin-bottom: 8px !important;
  }

  /* Set a $size margin to all sides at $breakpoint */
  .m-lg-3 {
    margin: 16px !important;
  }

  /* Set a $size margin on the top at $breakpoint */
  .mt-lg-3 {
    margin-top: 16px !important;
  }

  /* Set a $size margin on the bottom at $breakpoint */
  .mb-lg-3 {
    margin-bottom: 16px !important;
  }

  /* Set a $size margin on the right at $breakpoint */
  .mr-lg-3 {
    margin-right: 16px !important;
  }

  /* Set a $size margin on the left at $breakpoint */
  .ml-lg-3 {
    margin-left: 16px !important;
  }

  /* Set a negative $size margin on top at $breakpoint */
  .mt-lg-n3 {
    margin-top: -16px !important;
  }

  /* Set a negative $size margin on the bottom at $breakpoint */
  .mb-lg-n3 {
    margin-bottom: -16px !important;
  }

  /* Set a negative $size margin on the right at $breakpoint */
  .mr-lg-n3 {
    margin-right: -16px !important;
  }

  /* Set a negative $size margin on the left at $breakpoint */
  .ml-lg-n3 {
    margin-left: -16px !important;
  }

  /* Set a $size margin on the left & right at $breakpoint */
  .mx-lg-3 {
    margin-right: 16px !important;
    margin-left: 16px !important;
  }

  /* Set a $size margin on the top & bottom at $breakpoint */
  .my-lg-3 {
    margin-top: 16px !important;
    margin-bottom: 16px !important;
  }

  /* Set a $size margin to all sides at $breakpoint */
  .m-lg-4 {
    margin: 24px !important;
  }

  /* Set a $size margin on the top at $breakpoint */
  .mt-lg-4 {
    margin-top: 24px !important;
  }

  /* Set a $size margin on the bottom at $breakpoint */
  .mb-lg-4 {
    margin-bottom: 24px !important;
  }

  /* Set a $size margin on the right at $breakpoint */
  .mr-lg-4 {
    margin-right: 24px !important;
  }

  /* Set a $size margin on the left at $breakpoint */
  .ml-lg-4 {
    margin-left: 24px !important;
  }

  /* Set a negative $size margin on top at $breakpoint */
  .mt-lg-n4 {
    margin-top: -24px !important;
  }

  /* Set a negative $size margin on the bottom at $breakpoint */
  .mb-lg-n4 {
    margin-bottom: -24px !important;
  }

  /* Set a negative $size margin on the right at $breakpoint */
  .mr-lg-n4 {
    margin-right: -24px !important;
  }

  /* Set a negative $size margin on the left at $breakpoint */
  .ml-lg-n4 {
    margin-left: -24px !important;
  }

  /* Set a $size margin on the left & right at $breakpoint */
  .mx-lg-4 {
    margin-right: 24px !important;
    margin-left: 24px !important;
  }

  /* Set a $size margin on the top & bottom at $breakpoint */
  .my-lg-4 {
    margin-top: 24px !important;
    margin-bottom: 24px !important;
  }

  /* Set a $size margin to all sides at $breakpoint */
  .m-lg-5 {
    margin: 32px !important;
  }

  /* Set a $size margin on the top at $breakpoint */
  .mt-lg-5 {
    margin-top: 32px !important;
  }

  /* Set a $size margin on the bottom at $breakpoint */
  .mb-lg-5 {
    margin-bottom: 32px !important;
  }

  /* Set a $size margin on the right at $breakpoint */
  .mr-lg-5 {
    margin-right: 32px !important;
  }

  /* Set a $size margin on the left at $breakpoint */
  .ml-lg-5 {
    margin-left: 32px !important;
  }

  /* Set a negative $size margin on top at $breakpoint */
  .mt-lg-n5 {
    margin-top: -32px !important;
  }

  /* Set a negative $size margin on the bottom at $breakpoint */
  .mb-lg-n5 {
    margin-bottom: -32px !important;
  }

  /* Set a negative $size margin on the right at $breakpoint */
  .mr-lg-n5 {
    margin-right: -32px !important;
  }

  /* Set a negative $size margin on the left at $breakpoint */
  .ml-lg-n5 {
    margin-left: -32px !important;
  }

  /* Set a $size margin on the left & right at $breakpoint */
  .mx-lg-5 {
    margin-right: 32px !important;
    margin-left: 32px !important;
  }

  /* Set a $size margin on the top & bottom at $breakpoint */
  .my-lg-5 {
    margin-top: 32px !important;
    margin-bottom: 32px !important;
  }

  /* Set a $size margin to all sides at $breakpoint */
  .m-lg-6 {
    margin: 40px !important;
  }

  /* Set a $size margin on the top at $breakpoint */
  .mt-lg-6 {
    margin-top: 40px !important;
  }

  /* Set a $size margin on the bottom at $breakpoint */
  .mb-lg-6 {
    margin-bottom: 40px !important;
  }

  /* Set a $size margin on the right at $breakpoint */
  .mr-lg-6 {
    margin-right: 40px !important;
  }

  /* Set a $size margin on the left at $breakpoint */
  .ml-lg-6 {
    margin-left: 40px !important;
  }

  /* Set a negative $size margin on top at $breakpoint */
  .mt-lg-n6 {
    margin-top: -40px !important;
  }

  /* Set a negative $size margin on the bottom at $breakpoint */
  .mb-lg-n6 {
    margin-bottom: -40px !important;
  }

  /* Set a negative $size margin on the right at $breakpoint */
  .mr-lg-n6 {
    margin-right: -40px !important;
  }

  /* Set a negative $size margin on the left at $breakpoint */
  .ml-lg-n6 {
    margin-left: -40px !important;
  }

  /* Set a $size margin on the left & right at $breakpoint */
  .mx-lg-6 {
    margin-right: 40px !important;
    margin-left: 40px !important;
  }

  /* Set a $size margin on the top & bottom at $breakpoint */
  .my-lg-6 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }

  /* Set a $size margin on the top at $breakpoint */
  .mt-lg-7 {
    margin-top: 48px !important;
  }

  /* Set a $size margin on the bottom at $breakpoint */
  .mb-lg-7 {
    margin-bottom: 48px !important;
  }

  /* Set a negative $size margin on top at $breakpoint */
  .mt-lg-n7 {
    margin-top: -48px !important;
  }

  /* Set a negative $size margin on the bottom at $breakpoint */
  .mb-lg-n7 {
    margin-bottom: -48px !important;
  }

  /* Set a $size margin on the top & bottom at $breakpoint */
  .my-lg-7 {
    margin-top: 48px !important;
    margin-bottom: 48px !important;
  }

  /* Set a $size margin on the top at $breakpoint */
  .mt-lg-8 {
    margin-top: 64px !important;
  }

  /* Set a $size margin on the bottom at $breakpoint */
  .mb-lg-8 {
    margin-bottom: 64px !important;
  }

  /* Set a negative $size margin on top at $breakpoint */
  .mt-lg-n8 {
    margin-top: -64px !important;
  }

  /* Set a negative $size margin on the bottom at $breakpoint */
  .mb-lg-n8 {
    margin-bottom: -64px !important;
  }

  /* Set a $size margin on the top & bottom at $breakpoint */
  .my-lg-8 {
    margin-top: 64px !important;
    margin-bottom: 64px !important;
  }

  /* Set a $size margin on the top at $breakpoint */
  .mt-lg-9 {
    margin-top: 80px !important;
  }

  /* Set a $size margin on the bottom at $breakpoint */
  .mb-lg-9 {
    margin-bottom: 80px !important;
  }

  /* Set a negative $size margin on top at $breakpoint */
  .mt-lg-n9 {
    margin-top: -80px !important;
  }

  /* Set a negative $size margin on the bottom at $breakpoint */
  .mb-lg-n9 {
    margin-bottom: -80px !important;
  }

  /* Set a $size margin on the top & bottom at $breakpoint */
  .my-lg-9 {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
  }

  /* Set a $size margin on the top at $breakpoint */
  .mt-lg-10 {
    margin-top: 96px !important;
  }

  /* Set a $size margin on the bottom at $breakpoint */
  .mb-lg-10 {
    margin-bottom: 96px !important;
  }

  /* Set a negative $size margin on top at $breakpoint */
  .mt-lg-n10 {
    margin-top: -96px !important;
  }

  /* Set a negative $size margin on the bottom at $breakpoint */
  .mb-lg-n10 {
    margin-bottom: -96px !important;
  }

  /* Set a $size margin on the top & bottom at $breakpoint */
  .my-lg-10 {
    margin-top: 96px !important;
    margin-bottom: 96px !important;
  }

  /* Set a $size margin on the top at $breakpoint */
  .mt-lg-11 {
    margin-top: 112px !important;
  }

  /* Set a $size margin on the bottom at $breakpoint */
  .mb-lg-11 {
    margin-bottom: 112px !important;
  }

  /* Set a negative $size margin on top at $breakpoint */
  .mt-lg-n11 {
    margin-top: -112px !important;
  }

  /* Set a negative $size margin on the bottom at $breakpoint */
  .mb-lg-n11 {
    margin-bottom: -112px !important;
  }

  /* Set a $size margin on the top & bottom at $breakpoint */
  .my-lg-11 {
    margin-top: 112px !important;
    margin-bottom: 112px !important;
  }

  /* Set a $size margin on the top at $breakpoint */
  .mt-lg-12 {
    margin-top: 128px !important;
  }

  /* Set a $size margin on the bottom at $breakpoint */
  .mb-lg-12 {
    margin-bottom: 128px !important;
  }

  /* Set a negative $size margin on top at $breakpoint */
  .mt-lg-n12 {
    margin-top: -128px !important;
  }

  /* Set a negative $size margin on the bottom at $breakpoint */
  .mb-lg-n12 {
    margin-bottom: -128px !important;
  }

  /* Set a $size margin on the top & bottom at $breakpoint */
  .my-lg-12 {
    margin-top: 128px !important;
    margin-bottom: 128px !important;
  }

  /* responsive horizontal auto margins */
  .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
}
@media (min-width: 1280px) {
  /* Set a $size margin to all sides at $breakpoint */
  .m-xl-0 {
    margin: 0 !important;
  }

  /* Set a $size margin on the top at $breakpoint */
  .mt-xl-0 {
    margin-top: 0 !important;
  }

  /* Set a $size margin on the bottom at $breakpoint */
  .mb-xl-0 {
    margin-bottom: 0 !important;
  }

  /* Set a $size margin on the right at $breakpoint */
  .mr-xl-0 {
    margin-right: 0 !important;
  }

  /* Set a $size margin on the left at $breakpoint */
  .ml-xl-0 {
    margin-left: 0 !important;
  }

  /* Set a $size margin on the left & right at $breakpoint */
  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  /* Set a $size margin on the top & bottom at $breakpoint */
  .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  /* Set a $size margin to all sides at $breakpoint */
  .m-xl-1 {
    margin: 4px !important;
  }

  /* Set a $size margin on the top at $breakpoint */
  .mt-xl-1 {
    margin-top: 4px !important;
  }

  /* Set a $size margin on the bottom at $breakpoint */
  .mb-xl-1 {
    margin-bottom: 4px !important;
  }

  /* Set a $size margin on the right at $breakpoint */
  .mr-xl-1 {
    margin-right: 4px !important;
  }

  /* Set a $size margin on the left at $breakpoint */
  .ml-xl-1 {
    margin-left: 4px !important;
  }

  /* Set a negative $size margin on top at $breakpoint */
  .mt-xl-n1 {
    margin-top: -4px !important;
  }

  /* Set a negative $size margin on the bottom at $breakpoint */
  .mb-xl-n1 {
    margin-bottom: -4px !important;
  }

  /* Set a negative $size margin on the right at $breakpoint */
  .mr-xl-n1 {
    margin-right: -4px !important;
  }

  /* Set a negative $size margin on the left at $breakpoint */
  .ml-xl-n1 {
    margin-left: -4px !important;
  }

  /* Set a $size margin on the left & right at $breakpoint */
  .mx-xl-1 {
    margin-right: 4px !important;
    margin-left: 4px !important;
  }

  /* Set a $size margin on the top & bottom at $breakpoint */
  .my-xl-1 {
    margin-top: 4px !important;
    margin-bottom: 4px !important;
  }

  /* Set a $size margin to all sides at $breakpoint */
  .m-xl-2 {
    margin: 8px !important;
  }

  /* Set a $size margin on the top at $breakpoint */
  .mt-xl-2 {
    margin-top: 8px !important;
  }

  /* Set a $size margin on the bottom at $breakpoint */
  .mb-xl-2 {
    margin-bottom: 8px !important;
  }

  /* Set a $size margin on the right at $breakpoint */
  .mr-xl-2 {
    margin-right: 8px !important;
  }

  /* Set a $size margin on the left at $breakpoint */
  .ml-xl-2 {
    margin-left: 8px !important;
  }

  /* Set a negative $size margin on top at $breakpoint */
  .mt-xl-n2 {
    margin-top: -8px !important;
  }

  /* Set a negative $size margin on the bottom at $breakpoint */
  .mb-xl-n2 {
    margin-bottom: -8px !important;
  }

  /* Set a negative $size margin on the right at $breakpoint */
  .mr-xl-n2 {
    margin-right: -8px !important;
  }

  /* Set a negative $size margin on the left at $breakpoint */
  .ml-xl-n2 {
    margin-left: -8px !important;
  }

  /* Set a $size margin on the left & right at $breakpoint */
  .mx-xl-2 {
    margin-right: 8px !important;
    margin-left: 8px !important;
  }

  /* Set a $size margin on the top & bottom at $breakpoint */
  .my-xl-2 {
    margin-top: 8px !important;
    margin-bottom: 8px !important;
  }

  /* Set a $size margin to all sides at $breakpoint */
  .m-xl-3 {
    margin: 16px !important;
  }

  /* Set a $size margin on the top at $breakpoint */
  .mt-xl-3 {
    margin-top: 16px !important;
  }

  /* Set a $size margin on the bottom at $breakpoint */
  .mb-xl-3 {
    margin-bottom: 16px !important;
  }

  /* Set a $size margin on the right at $breakpoint */
  .mr-xl-3 {
    margin-right: 16px !important;
  }

  /* Set a $size margin on the left at $breakpoint */
  .ml-xl-3 {
    margin-left: 16px !important;
  }

  /* Set a negative $size margin on top at $breakpoint */
  .mt-xl-n3 {
    margin-top: -16px !important;
  }

  /* Set a negative $size margin on the bottom at $breakpoint */
  .mb-xl-n3 {
    margin-bottom: -16px !important;
  }

  /* Set a negative $size margin on the right at $breakpoint */
  .mr-xl-n3 {
    margin-right: -16px !important;
  }

  /* Set a negative $size margin on the left at $breakpoint */
  .ml-xl-n3 {
    margin-left: -16px !important;
  }

  /* Set a $size margin on the left & right at $breakpoint */
  .mx-xl-3 {
    margin-right: 16px !important;
    margin-left: 16px !important;
  }

  /* Set a $size margin on the top & bottom at $breakpoint */
  .my-xl-3 {
    margin-top: 16px !important;
    margin-bottom: 16px !important;
  }

  /* Set a $size margin to all sides at $breakpoint */
  .m-xl-4 {
    margin: 24px !important;
  }

  /* Set a $size margin on the top at $breakpoint */
  .mt-xl-4 {
    margin-top: 24px !important;
  }

  /* Set a $size margin on the bottom at $breakpoint */
  .mb-xl-4 {
    margin-bottom: 24px !important;
  }

  /* Set a $size margin on the right at $breakpoint */
  .mr-xl-4 {
    margin-right: 24px !important;
  }

  /* Set a $size margin on the left at $breakpoint */
  .ml-xl-4 {
    margin-left: 24px !important;
  }

  /* Set a negative $size margin on top at $breakpoint */
  .mt-xl-n4 {
    margin-top: -24px !important;
  }

  /* Set a negative $size margin on the bottom at $breakpoint */
  .mb-xl-n4 {
    margin-bottom: -24px !important;
  }

  /* Set a negative $size margin on the right at $breakpoint */
  .mr-xl-n4 {
    margin-right: -24px !important;
  }

  /* Set a negative $size margin on the left at $breakpoint */
  .ml-xl-n4 {
    margin-left: -24px !important;
  }

  /* Set a $size margin on the left & right at $breakpoint */
  .mx-xl-4 {
    margin-right: 24px !important;
    margin-left: 24px !important;
  }

  /* Set a $size margin on the top & bottom at $breakpoint */
  .my-xl-4 {
    margin-top: 24px !important;
    margin-bottom: 24px !important;
  }

  /* Set a $size margin to all sides at $breakpoint */
  .m-xl-5 {
    margin: 32px !important;
  }

  /* Set a $size margin on the top at $breakpoint */
  .mt-xl-5 {
    margin-top: 32px !important;
  }

  /* Set a $size margin on the bottom at $breakpoint */
  .mb-xl-5 {
    margin-bottom: 32px !important;
  }

  /* Set a $size margin on the right at $breakpoint */
  .mr-xl-5 {
    margin-right: 32px !important;
  }

  /* Set a $size margin on the left at $breakpoint */
  .ml-xl-5 {
    margin-left: 32px !important;
  }

  /* Set a negative $size margin on top at $breakpoint */
  .mt-xl-n5 {
    margin-top: -32px !important;
  }

  /* Set a negative $size margin on the bottom at $breakpoint */
  .mb-xl-n5 {
    margin-bottom: -32px !important;
  }

  /* Set a negative $size margin on the right at $breakpoint */
  .mr-xl-n5 {
    margin-right: -32px !important;
  }

  /* Set a negative $size margin on the left at $breakpoint */
  .ml-xl-n5 {
    margin-left: -32px !important;
  }

  /* Set a $size margin on the left & right at $breakpoint */
  .mx-xl-5 {
    margin-right: 32px !important;
    margin-left: 32px !important;
  }

  /* Set a $size margin on the top & bottom at $breakpoint */
  .my-xl-5 {
    margin-top: 32px !important;
    margin-bottom: 32px !important;
  }

  /* Set a $size margin to all sides at $breakpoint */
  .m-xl-6 {
    margin: 40px !important;
  }

  /* Set a $size margin on the top at $breakpoint */
  .mt-xl-6 {
    margin-top: 40px !important;
  }

  /* Set a $size margin on the bottom at $breakpoint */
  .mb-xl-6 {
    margin-bottom: 40px !important;
  }

  /* Set a $size margin on the right at $breakpoint */
  .mr-xl-6 {
    margin-right: 40px !important;
  }

  /* Set a $size margin on the left at $breakpoint */
  .ml-xl-6 {
    margin-left: 40px !important;
  }

  /* Set a negative $size margin on top at $breakpoint */
  .mt-xl-n6 {
    margin-top: -40px !important;
  }

  /* Set a negative $size margin on the bottom at $breakpoint */
  .mb-xl-n6 {
    margin-bottom: -40px !important;
  }

  /* Set a negative $size margin on the right at $breakpoint */
  .mr-xl-n6 {
    margin-right: -40px !important;
  }

  /* Set a negative $size margin on the left at $breakpoint */
  .ml-xl-n6 {
    margin-left: -40px !important;
  }

  /* Set a $size margin on the left & right at $breakpoint */
  .mx-xl-6 {
    margin-right: 40px !important;
    margin-left: 40px !important;
  }

  /* Set a $size margin on the top & bottom at $breakpoint */
  .my-xl-6 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }

  /* Set a $size margin on the top at $breakpoint */
  .mt-xl-7 {
    margin-top: 48px !important;
  }

  /* Set a $size margin on the bottom at $breakpoint */
  .mb-xl-7 {
    margin-bottom: 48px !important;
  }

  /* Set a negative $size margin on top at $breakpoint */
  .mt-xl-n7 {
    margin-top: -48px !important;
  }

  /* Set a negative $size margin on the bottom at $breakpoint */
  .mb-xl-n7 {
    margin-bottom: -48px !important;
  }

  /* Set a $size margin on the top & bottom at $breakpoint */
  .my-xl-7 {
    margin-top: 48px !important;
    margin-bottom: 48px !important;
  }

  /* Set a $size margin on the top at $breakpoint */
  .mt-xl-8 {
    margin-top: 64px !important;
  }

  /* Set a $size margin on the bottom at $breakpoint */
  .mb-xl-8 {
    margin-bottom: 64px !important;
  }

  /* Set a negative $size margin on top at $breakpoint */
  .mt-xl-n8 {
    margin-top: -64px !important;
  }

  /* Set a negative $size margin on the bottom at $breakpoint */
  .mb-xl-n8 {
    margin-bottom: -64px !important;
  }

  /* Set a $size margin on the top & bottom at $breakpoint */
  .my-xl-8 {
    margin-top: 64px !important;
    margin-bottom: 64px !important;
  }

  /* Set a $size margin on the top at $breakpoint */
  .mt-xl-9 {
    margin-top: 80px !important;
  }

  /* Set a $size margin on the bottom at $breakpoint */
  .mb-xl-9 {
    margin-bottom: 80px !important;
  }

  /* Set a negative $size margin on top at $breakpoint */
  .mt-xl-n9 {
    margin-top: -80px !important;
  }

  /* Set a negative $size margin on the bottom at $breakpoint */
  .mb-xl-n9 {
    margin-bottom: -80px !important;
  }

  /* Set a $size margin on the top & bottom at $breakpoint */
  .my-xl-9 {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
  }

  /* Set a $size margin on the top at $breakpoint */
  .mt-xl-10 {
    margin-top: 96px !important;
  }

  /* Set a $size margin on the bottom at $breakpoint */
  .mb-xl-10 {
    margin-bottom: 96px !important;
  }

  /* Set a negative $size margin on top at $breakpoint */
  .mt-xl-n10 {
    margin-top: -96px !important;
  }

  /* Set a negative $size margin on the bottom at $breakpoint */
  .mb-xl-n10 {
    margin-bottom: -96px !important;
  }

  /* Set a $size margin on the top & bottom at $breakpoint */
  .my-xl-10 {
    margin-top: 96px !important;
    margin-bottom: 96px !important;
  }

  /* Set a $size margin on the top at $breakpoint */
  .mt-xl-11 {
    margin-top: 112px !important;
  }

  /* Set a $size margin on the bottom at $breakpoint */
  .mb-xl-11 {
    margin-bottom: 112px !important;
  }

  /* Set a negative $size margin on top at $breakpoint */
  .mt-xl-n11 {
    margin-top: -112px !important;
  }

  /* Set a negative $size margin on the bottom at $breakpoint */
  .mb-xl-n11 {
    margin-bottom: -112px !important;
  }

  /* Set a $size margin on the top & bottom at $breakpoint */
  .my-xl-11 {
    margin-top: 112px !important;
    margin-bottom: 112px !important;
  }

  /* Set a $size margin on the top at $breakpoint */
  .mt-xl-12 {
    margin-top: 128px !important;
  }

  /* Set a $size margin on the bottom at $breakpoint */
  .mb-xl-12 {
    margin-bottom: 128px !important;
  }

  /* Set a negative $size margin on top at $breakpoint */
  .mt-xl-n12 {
    margin-top: -128px !important;
  }

  /* Set a negative $size margin on the bottom at $breakpoint */
  .mb-xl-n12 {
    margin-bottom: -128px !important;
  }

  /* Set a $size margin on the top & bottom at $breakpoint */
  .my-xl-12 {
    margin-top: 128px !important;
    margin-bottom: 128px !important;
  }

  /* responsive horizontal auto margins */
  .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
}
.m-auto {
  margin: auto !important;
}

.mt-auto {
  margin-top: auto !important;
}

.mr-auto {
  margin-right: auto !important;
}

.mb-auto {
  margin-bottom: auto !important;
}

.ml-auto {
  margin-left: auto !important;
}

/* Set a $size padding to all sides at $breakpoint */
.p-0 {
  padding: 0 !important;
}

/* Set a $size padding to the top at $breakpoint */
.pt-0 {
  padding-top: 0 !important;
}

/* Set a $size padding to the right at $breakpoint */
.pr-0 {
  padding-right: 0 !important;
}

/* Set a $size padding to the bottom at $breakpoint */
.pb-0 {
  padding-bottom: 0 !important;
}

/* Set a $size padding to the left at $breakpoint */
.pl-0 {
  padding-left: 0 !important;
}

/* Set a $size padding to the left & right at $breakpoint */
.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

/* Set a $size padding to the top & bottom at $breakpoint */
.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* Set a $size padding to all sides at $breakpoint */
.p-1 {
  padding: 4px !important;
}

/* Set a $size padding to the top at $breakpoint */
.pt-1 {
  padding-top: 4px !important;
}

/* Set a $size padding to the right at $breakpoint */
.pr-1 {
  padding-right: 4px !important;
}

/* Set a $size padding to the bottom at $breakpoint */
.pb-1 {
  padding-bottom: 4px !important;
}

/* Set a $size padding to the left at $breakpoint */
.pl-1 {
  padding-left: 4px !important;
}

/* Set a $size padding to the left & right at $breakpoint */
.px-1 {
  padding-right: 4px !important;
  padding-left: 4px !important;
}

/* Set a $size padding to the top & bottom at $breakpoint */
.py-1 {
  padding-top: 4px !important;
  padding-bottom: 4px !important;
}

/* Set a $size padding to all sides at $breakpoint */
.p-2 {
  padding: 8px !important;
}

/* Set a $size padding to the top at $breakpoint */
.pt-2 {
  padding-top: 8px !important;
}

/* Set a $size padding to the right at $breakpoint */
.pr-2 {
  padding-right: 8px !important;
}

/* Set a $size padding to the bottom at $breakpoint */
.pb-2 {
  padding-bottom: 8px !important;
}

/* Set a $size padding to the left at $breakpoint */
.pl-2 {
  padding-left: 8px !important;
}

/* Set a $size padding to the left & right at $breakpoint */
.px-2 {
  padding-right: 8px !important;
  padding-left: 8px !important;
}

/* Set a $size padding to the top & bottom at $breakpoint */
.py-2 {
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}

/* Set a $size padding to all sides at $breakpoint */
.p-3 {
  padding: 16px !important;
}

/* Set a $size padding to the top at $breakpoint */
.pt-3 {
  padding-top: 16px !important;
}

/* Set a $size padding to the right at $breakpoint */
.pr-3 {
  padding-right: 16px !important;
}

/* Set a $size padding to the bottom at $breakpoint */
.pb-3 {
  padding-bottom: 16px !important;
}

/* Set a $size padding to the left at $breakpoint */
.pl-3 {
  padding-left: 16px !important;
}

/* Set a $size padding to the left & right at $breakpoint */
.px-3 {
  padding-right: 16px !important;
  padding-left: 16px !important;
}

/* Set a $size padding to the top & bottom at $breakpoint */
.py-3 {
  padding-top: 16px !important;
  padding-bottom: 16px !important;
}

/* Set a $size padding to all sides at $breakpoint */
.p-4 {
  padding: 24px !important;
}

/* Set a $size padding to the top at $breakpoint */
.pt-4 {
  padding-top: 24px !important;
}

/* Set a $size padding to the right at $breakpoint */
.pr-4 {
  padding-right: 24px !important;
}

/* Set a $size padding to the bottom at $breakpoint */
.pb-4 {
  padding-bottom: 24px !important;
}

/* Set a $size padding to the left at $breakpoint */
.pl-4 {
  padding-left: 24px !important;
}

/* Set a $size padding to the left & right at $breakpoint */
.px-4 {
  padding-right: 24px !important;
  padding-left: 24px !important;
}

/* Set a $size padding to the top & bottom at $breakpoint */
.py-4 {
  padding-top: 24px !important;
  padding-bottom: 24px !important;
}

/* Set a $size padding to all sides at $breakpoint */
.p-5 {
  padding: 32px !important;
}

/* Set a $size padding to the top at $breakpoint */
.pt-5 {
  padding-top: 32px !important;
}

/* Set a $size padding to the right at $breakpoint */
.pr-5 {
  padding-right: 32px !important;
}

/* Set a $size padding to the bottom at $breakpoint */
.pb-5 {
  padding-bottom: 32px !important;
}

/* Set a $size padding to the left at $breakpoint */
.pl-5 {
  padding-left: 32px !important;
}

/* Set a $size padding to the left & right at $breakpoint */
.px-5 {
  padding-right: 32px !important;
  padding-left: 32px !important;
}

/* Set a $size padding to the top & bottom at $breakpoint */
.py-5 {
  padding-top: 32px !important;
  padding-bottom: 32px !important;
}

/* Set a $size padding to all sides at $breakpoint */
.p-6 {
  padding: 40px !important;
}

/* Set a $size padding to the top at $breakpoint */
.pt-6 {
  padding-top: 40px !important;
}

/* Set a $size padding to the right at $breakpoint */
.pr-6 {
  padding-right: 40px !important;
}

/* Set a $size padding to the bottom at $breakpoint */
.pb-6 {
  padding-bottom: 40px !important;
}

/* Set a $size padding to the left at $breakpoint */
.pl-6 {
  padding-left: 40px !important;
}

/* Set a $size padding to the left & right at $breakpoint */
.px-6 {
  padding-right: 40px !important;
  padding-left: 40px !important;
}

/* Set a $size padding to the top & bottom at $breakpoint */
.py-6 {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}

/* Set a $size padding to the top at $breakpoint */
.pt-7 {
  padding-top: 48px !important;
}

/* Set a $size padding to the right at $breakpoint */
.pr-7 {
  padding-right: 48px !important;
}

/* Set a $size padding to the bottom at $breakpoint */
.pb-7 {
  padding-bottom: 48px !important;
}

/* Set a $size padding to the left at $breakpoint */
.pl-7 {
  padding-left: 48px !important;
}

/* Set a $size padding to the top & bottom at $breakpoint */
.py-7 {
  padding-top: 48px !important;
  padding-bottom: 48px !important;
}

/* Set a $size padding to the top at $breakpoint */
.pt-8 {
  padding-top: 64px !important;
}

/* Set a $size padding to the right at $breakpoint */
.pr-8 {
  padding-right: 64px !important;
}

/* Set a $size padding to the bottom at $breakpoint */
.pb-8 {
  padding-bottom: 64px !important;
}

/* Set a $size padding to the left at $breakpoint */
.pl-8 {
  padding-left: 64px !important;
}

/* Set a $size padding to the top & bottom at $breakpoint */
.py-8 {
  padding-top: 64px !important;
  padding-bottom: 64px !important;
}

/* Set a $size padding to the top at $breakpoint */
.pt-9 {
  padding-top: 80px !important;
}

/* Set a $size padding to the right at $breakpoint */
.pr-9 {
  padding-right: 80px !important;
}

/* Set a $size padding to the bottom at $breakpoint */
.pb-9 {
  padding-bottom: 80px !important;
}

/* Set a $size padding to the left at $breakpoint */
.pl-9 {
  padding-left: 80px !important;
}

/* Set a $size padding to the top & bottom at $breakpoint */
.py-9 {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}

/* Set a $size padding to the top at $breakpoint */
.pt-10 {
  padding-top: 96px !important;
}

/* Set a $size padding to the right at $breakpoint */
.pr-10 {
  padding-right: 96px !important;
}

/* Set a $size padding to the bottom at $breakpoint */
.pb-10 {
  padding-bottom: 96px !important;
}

/* Set a $size padding to the left at $breakpoint */
.pl-10 {
  padding-left: 96px !important;
}

/* Set a $size padding to the top & bottom at $breakpoint */
.py-10 {
  padding-top: 96px !important;
  padding-bottom: 96px !important;
}

/* Set a $size padding to the top at $breakpoint */
.pt-11 {
  padding-top: 112px !important;
}

/* Set a $size padding to the right at $breakpoint */
.pr-11 {
  padding-right: 112px !important;
}

/* Set a $size padding to the bottom at $breakpoint */
.pb-11 {
  padding-bottom: 112px !important;
}

/* Set a $size padding to the left at $breakpoint */
.pl-11 {
  padding-left: 112px !important;
}

/* Set a $size padding to the top & bottom at $breakpoint */
.py-11 {
  padding-top: 112px !important;
  padding-bottom: 112px !important;
}

/* Set a $size padding to the top at $breakpoint */
.pt-12 {
  padding-top: 128px !important;
}

/* Set a $size padding to the right at $breakpoint */
.pr-12 {
  padding-right: 128px !important;
}

/* Set a $size padding to the bottom at $breakpoint */
.pb-12 {
  padding-bottom: 128px !important;
}

/* Set a $size padding to the left at $breakpoint */
.pl-12 {
  padding-left: 128px !important;
}

/* Set a $size padding to the top & bottom at $breakpoint */
.py-12 {
  padding-top: 128px !important;
  padding-bottom: 128px !important;
}

@media (min-width: 544px) {
  /* Set a $size padding to all sides at $breakpoint */
  .p-sm-0 {
    padding: 0 !important;
  }

  /* Set a $size padding to the top at $breakpoint */
  .pt-sm-0 {
    padding-top: 0 !important;
  }

  /* Set a $size padding to the right at $breakpoint */
  .pr-sm-0 {
    padding-right: 0 !important;
  }

  /* Set a $size padding to the bottom at $breakpoint */
  .pb-sm-0 {
    padding-bottom: 0 !important;
  }

  /* Set a $size padding to the left at $breakpoint */
  .pl-sm-0 {
    padding-left: 0 !important;
  }

  /* Set a $size padding to the left & right at $breakpoint */
  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  /* Set a $size padding to the top & bottom at $breakpoint */
  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  /* Set a $size padding to all sides at $breakpoint */
  .p-sm-1 {
    padding: 4px !important;
  }

  /* Set a $size padding to the top at $breakpoint */
  .pt-sm-1 {
    padding-top: 4px !important;
  }

  /* Set a $size padding to the right at $breakpoint */
  .pr-sm-1 {
    padding-right: 4px !important;
  }

  /* Set a $size padding to the bottom at $breakpoint */
  .pb-sm-1 {
    padding-bottom: 4px !important;
  }

  /* Set a $size padding to the left at $breakpoint */
  .pl-sm-1 {
    padding-left: 4px !important;
  }

  /* Set a $size padding to the left & right at $breakpoint */
  .px-sm-1 {
    padding-right: 4px !important;
    padding-left: 4px !important;
  }

  /* Set a $size padding to the top & bottom at $breakpoint */
  .py-sm-1 {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
  }

  /* Set a $size padding to all sides at $breakpoint */
  .p-sm-2 {
    padding: 8px !important;
  }

  /* Set a $size padding to the top at $breakpoint */
  .pt-sm-2 {
    padding-top: 8px !important;
  }

  /* Set a $size padding to the right at $breakpoint */
  .pr-sm-2 {
    padding-right: 8px !important;
  }

  /* Set a $size padding to the bottom at $breakpoint */
  .pb-sm-2 {
    padding-bottom: 8px !important;
  }

  /* Set a $size padding to the left at $breakpoint */
  .pl-sm-2 {
    padding-left: 8px !important;
  }

  /* Set a $size padding to the left & right at $breakpoint */
  .px-sm-2 {
    padding-right: 8px !important;
    padding-left: 8px !important;
  }

  /* Set a $size padding to the top & bottom at $breakpoint */
  .py-sm-2 {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }

  /* Set a $size padding to all sides at $breakpoint */
  .p-sm-3 {
    padding: 16px !important;
  }

  /* Set a $size padding to the top at $breakpoint */
  .pt-sm-3 {
    padding-top: 16px !important;
  }

  /* Set a $size padding to the right at $breakpoint */
  .pr-sm-3 {
    padding-right: 16px !important;
  }

  /* Set a $size padding to the bottom at $breakpoint */
  .pb-sm-3 {
    padding-bottom: 16px !important;
  }

  /* Set a $size padding to the left at $breakpoint */
  .pl-sm-3 {
    padding-left: 16px !important;
  }

  /* Set a $size padding to the left & right at $breakpoint */
  .px-sm-3 {
    padding-right: 16px !important;
    padding-left: 16px !important;
  }

  /* Set a $size padding to the top & bottom at $breakpoint */
  .py-sm-3 {
    padding-top: 16px !important;
    padding-bottom: 16px !important;
  }

  /* Set a $size padding to all sides at $breakpoint */
  .p-sm-4 {
    padding: 24px !important;
  }

  /* Set a $size padding to the top at $breakpoint */
  .pt-sm-4 {
    padding-top: 24px !important;
  }

  /* Set a $size padding to the right at $breakpoint */
  .pr-sm-4 {
    padding-right: 24px !important;
  }

  /* Set a $size padding to the bottom at $breakpoint */
  .pb-sm-4 {
    padding-bottom: 24px !important;
  }

  /* Set a $size padding to the left at $breakpoint */
  .pl-sm-4 {
    padding-left: 24px !important;
  }

  /* Set a $size padding to the left & right at $breakpoint */
  .px-sm-4 {
    padding-right: 24px !important;
    padding-left: 24px !important;
  }

  /* Set a $size padding to the top & bottom at $breakpoint */
  .py-sm-4 {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }

  /* Set a $size padding to all sides at $breakpoint */
  .p-sm-5 {
    padding: 32px !important;
  }

  /* Set a $size padding to the top at $breakpoint */
  .pt-sm-5 {
    padding-top: 32px !important;
  }

  /* Set a $size padding to the right at $breakpoint */
  .pr-sm-5 {
    padding-right: 32px !important;
  }

  /* Set a $size padding to the bottom at $breakpoint */
  .pb-sm-5 {
    padding-bottom: 32px !important;
  }

  /* Set a $size padding to the left at $breakpoint */
  .pl-sm-5 {
    padding-left: 32px !important;
  }

  /* Set a $size padding to the left & right at $breakpoint */
  .px-sm-5 {
    padding-right: 32px !important;
    padding-left: 32px !important;
  }

  /* Set a $size padding to the top & bottom at $breakpoint */
  .py-sm-5 {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
  }

  /* Set a $size padding to all sides at $breakpoint */
  .p-sm-6 {
    padding: 40px !important;
  }

  /* Set a $size padding to the top at $breakpoint */
  .pt-sm-6 {
    padding-top: 40px !important;
  }

  /* Set a $size padding to the right at $breakpoint */
  .pr-sm-6 {
    padding-right: 40px !important;
  }

  /* Set a $size padding to the bottom at $breakpoint */
  .pb-sm-6 {
    padding-bottom: 40px !important;
  }

  /* Set a $size padding to the left at $breakpoint */
  .pl-sm-6 {
    padding-left: 40px !important;
  }

  /* Set a $size padding to the left & right at $breakpoint */
  .px-sm-6 {
    padding-right: 40px !important;
    padding-left: 40px !important;
  }

  /* Set a $size padding to the top & bottom at $breakpoint */
  .py-sm-6 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }

  /* Set a $size padding to the top at $breakpoint */
  .pt-sm-7 {
    padding-top: 48px !important;
  }

  /* Set a $size padding to the right at $breakpoint */
  .pr-sm-7 {
    padding-right: 48px !important;
  }

  /* Set a $size padding to the bottom at $breakpoint */
  .pb-sm-7 {
    padding-bottom: 48px !important;
  }

  /* Set a $size padding to the left at $breakpoint */
  .pl-sm-7 {
    padding-left: 48px !important;
  }

  /* Set a $size padding to the top & bottom at $breakpoint */
  .py-sm-7 {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }

  /* Set a $size padding to the top at $breakpoint */
  .pt-sm-8 {
    padding-top: 64px !important;
  }

  /* Set a $size padding to the right at $breakpoint */
  .pr-sm-8 {
    padding-right: 64px !important;
  }

  /* Set a $size padding to the bottom at $breakpoint */
  .pb-sm-8 {
    padding-bottom: 64px !important;
  }

  /* Set a $size padding to the left at $breakpoint */
  .pl-sm-8 {
    padding-left: 64px !important;
  }

  /* Set a $size padding to the top & bottom at $breakpoint */
  .py-sm-8 {
    padding-top: 64px !important;
    padding-bottom: 64px !important;
  }

  /* Set a $size padding to the top at $breakpoint */
  .pt-sm-9 {
    padding-top: 80px !important;
  }

  /* Set a $size padding to the right at $breakpoint */
  .pr-sm-9 {
    padding-right: 80px !important;
  }

  /* Set a $size padding to the bottom at $breakpoint */
  .pb-sm-9 {
    padding-bottom: 80px !important;
  }

  /* Set a $size padding to the left at $breakpoint */
  .pl-sm-9 {
    padding-left: 80px !important;
  }

  /* Set a $size padding to the top & bottom at $breakpoint */
  .py-sm-9 {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }

  /* Set a $size padding to the top at $breakpoint */
  .pt-sm-10 {
    padding-top: 96px !important;
  }

  /* Set a $size padding to the right at $breakpoint */
  .pr-sm-10 {
    padding-right: 96px !important;
  }

  /* Set a $size padding to the bottom at $breakpoint */
  .pb-sm-10 {
    padding-bottom: 96px !important;
  }

  /* Set a $size padding to the left at $breakpoint */
  .pl-sm-10 {
    padding-left: 96px !important;
  }

  /* Set a $size padding to the top & bottom at $breakpoint */
  .py-sm-10 {
    padding-top: 96px !important;
    padding-bottom: 96px !important;
  }

  /* Set a $size padding to the top at $breakpoint */
  .pt-sm-11 {
    padding-top: 112px !important;
  }

  /* Set a $size padding to the right at $breakpoint */
  .pr-sm-11 {
    padding-right: 112px !important;
  }

  /* Set a $size padding to the bottom at $breakpoint */
  .pb-sm-11 {
    padding-bottom: 112px !important;
  }

  /* Set a $size padding to the left at $breakpoint */
  .pl-sm-11 {
    padding-left: 112px !important;
  }

  /* Set a $size padding to the top & bottom at $breakpoint */
  .py-sm-11 {
    padding-top: 112px !important;
    padding-bottom: 112px !important;
  }

  /* Set a $size padding to the top at $breakpoint */
  .pt-sm-12 {
    padding-top: 128px !important;
  }

  /* Set a $size padding to the right at $breakpoint */
  .pr-sm-12 {
    padding-right: 128px !important;
  }

  /* Set a $size padding to the bottom at $breakpoint */
  .pb-sm-12 {
    padding-bottom: 128px !important;
  }

  /* Set a $size padding to the left at $breakpoint */
  .pl-sm-12 {
    padding-left: 128px !important;
  }

  /* Set a $size padding to the top & bottom at $breakpoint */
  .py-sm-12 {
    padding-top: 128px !important;
    padding-bottom: 128px !important;
  }
}
@media (min-width: 768px) {
  /* Set a $size padding to all sides at $breakpoint */
  .p-md-0 {
    padding: 0 !important;
  }

  /* Set a $size padding to the top at $breakpoint */
  .pt-md-0 {
    padding-top: 0 !important;
  }

  /* Set a $size padding to the right at $breakpoint */
  .pr-md-0 {
    padding-right: 0 !important;
  }

  /* Set a $size padding to the bottom at $breakpoint */
  .pb-md-0 {
    padding-bottom: 0 !important;
  }

  /* Set a $size padding to the left at $breakpoint */
  .pl-md-0 {
    padding-left: 0 !important;
  }

  /* Set a $size padding to the left & right at $breakpoint */
  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  /* Set a $size padding to the top & bottom at $breakpoint */
  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  /* Set a $size padding to all sides at $breakpoint */
  .p-md-1 {
    padding: 4px !important;
  }

  /* Set a $size padding to the top at $breakpoint */
  .pt-md-1 {
    padding-top: 4px !important;
  }

  /* Set a $size padding to the right at $breakpoint */
  .pr-md-1 {
    padding-right: 4px !important;
  }

  /* Set a $size padding to the bottom at $breakpoint */
  .pb-md-1 {
    padding-bottom: 4px !important;
  }

  /* Set a $size padding to the left at $breakpoint */
  .pl-md-1 {
    padding-left: 4px !important;
  }

  /* Set a $size padding to the left & right at $breakpoint */
  .px-md-1 {
    padding-right: 4px !important;
    padding-left: 4px !important;
  }

  /* Set a $size padding to the top & bottom at $breakpoint */
  .py-md-1 {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
  }

  /* Set a $size padding to all sides at $breakpoint */
  .p-md-2 {
    padding: 8px !important;
  }

  /* Set a $size padding to the top at $breakpoint */
  .pt-md-2 {
    padding-top: 8px !important;
  }

  /* Set a $size padding to the right at $breakpoint */
  .pr-md-2 {
    padding-right: 8px !important;
  }

  /* Set a $size padding to the bottom at $breakpoint */
  .pb-md-2 {
    padding-bottom: 8px !important;
  }

  /* Set a $size padding to the left at $breakpoint */
  .pl-md-2 {
    padding-left: 8px !important;
  }

  /* Set a $size padding to the left & right at $breakpoint */
  .px-md-2 {
    padding-right: 8px !important;
    padding-left: 8px !important;
  }

  /* Set a $size padding to the top & bottom at $breakpoint */
  .py-md-2 {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }

  /* Set a $size padding to all sides at $breakpoint */
  .p-md-3 {
    padding: 16px !important;
  }

  /* Set a $size padding to the top at $breakpoint */
  .pt-md-3 {
    padding-top: 16px !important;
  }

  /* Set a $size padding to the right at $breakpoint */
  .pr-md-3 {
    padding-right: 16px !important;
  }

  /* Set a $size padding to the bottom at $breakpoint */
  .pb-md-3 {
    padding-bottom: 16px !important;
  }

  /* Set a $size padding to the left at $breakpoint */
  .pl-md-3 {
    padding-left: 16px !important;
  }

  /* Set a $size padding to the left & right at $breakpoint */
  .px-md-3 {
    padding-right: 16px !important;
    padding-left: 16px !important;
  }

  /* Set a $size padding to the top & bottom at $breakpoint */
  .py-md-3 {
    padding-top: 16px !important;
    padding-bottom: 16px !important;
  }

  /* Set a $size padding to all sides at $breakpoint */
  .p-md-4 {
    padding: 24px !important;
  }

  /* Set a $size padding to the top at $breakpoint */
  .pt-md-4 {
    padding-top: 24px !important;
  }

  /* Set a $size padding to the right at $breakpoint */
  .pr-md-4 {
    padding-right: 24px !important;
  }

  /* Set a $size padding to the bottom at $breakpoint */
  .pb-md-4 {
    padding-bottom: 24px !important;
  }

  /* Set a $size padding to the left at $breakpoint */
  .pl-md-4 {
    padding-left: 24px !important;
  }

  /* Set a $size padding to the left & right at $breakpoint */
  .px-md-4 {
    padding-right: 24px !important;
    padding-left: 24px !important;
  }

  /* Set a $size padding to the top & bottom at $breakpoint */
  .py-md-4 {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }

  /* Set a $size padding to all sides at $breakpoint */
  .p-md-5 {
    padding: 32px !important;
  }

  /* Set a $size padding to the top at $breakpoint */
  .pt-md-5 {
    padding-top: 32px !important;
  }

  /* Set a $size padding to the right at $breakpoint */
  .pr-md-5 {
    padding-right: 32px !important;
  }

  /* Set a $size padding to the bottom at $breakpoint */
  .pb-md-5 {
    padding-bottom: 32px !important;
  }

  /* Set a $size padding to the left at $breakpoint */
  .pl-md-5 {
    padding-left: 32px !important;
  }

  /* Set a $size padding to the left & right at $breakpoint */
  .px-md-5 {
    padding-right: 32px !important;
    padding-left: 32px !important;
  }

  /* Set a $size padding to the top & bottom at $breakpoint */
  .py-md-5 {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
  }

  /* Set a $size padding to all sides at $breakpoint */
  .p-md-6 {
    padding: 40px !important;
  }

  /* Set a $size padding to the top at $breakpoint */
  .pt-md-6 {
    padding-top: 40px !important;
  }

  /* Set a $size padding to the right at $breakpoint */
  .pr-md-6 {
    padding-right: 40px !important;
  }

  /* Set a $size padding to the bottom at $breakpoint */
  .pb-md-6 {
    padding-bottom: 40px !important;
  }

  /* Set a $size padding to the left at $breakpoint */
  .pl-md-6 {
    padding-left: 40px !important;
  }

  /* Set a $size padding to the left & right at $breakpoint */
  .px-md-6 {
    padding-right: 40px !important;
    padding-left: 40px !important;
  }

  /* Set a $size padding to the top & bottom at $breakpoint */
  .py-md-6 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }

  /* Set a $size padding to the top at $breakpoint */
  .pt-md-7 {
    padding-top: 48px !important;
  }

  /* Set a $size padding to the right at $breakpoint */
  .pr-md-7 {
    padding-right: 48px !important;
  }

  /* Set a $size padding to the bottom at $breakpoint */
  .pb-md-7 {
    padding-bottom: 48px !important;
  }

  /* Set a $size padding to the left at $breakpoint */
  .pl-md-7 {
    padding-left: 48px !important;
  }

  /* Set a $size padding to the top & bottom at $breakpoint */
  .py-md-7 {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }

  /* Set a $size padding to the top at $breakpoint */
  .pt-md-8 {
    padding-top: 64px !important;
  }

  /* Set a $size padding to the right at $breakpoint */
  .pr-md-8 {
    padding-right: 64px !important;
  }

  /* Set a $size padding to the bottom at $breakpoint */
  .pb-md-8 {
    padding-bottom: 64px !important;
  }

  /* Set a $size padding to the left at $breakpoint */
  .pl-md-8 {
    padding-left: 64px !important;
  }

  /* Set a $size padding to the top & bottom at $breakpoint */
  .py-md-8 {
    padding-top: 64px !important;
    padding-bottom: 64px !important;
  }

  /* Set a $size padding to the top at $breakpoint */
  .pt-md-9 {
    padding-top: 80px !important;
  }

  /* Set a $size padding to the right at $breakpoint */
  .pr-md-9 {
    padding-right: 80px !important;
  }

  /* Set a $size padding to the bottom at $breakpoint */
  .pb-md-9 {
    padding-bottom: 80px !important;
  }

  /* Set a $size padding to the left at $breakpoint */
  .pl-md-9 {
    padding-left: 80px !important;
  }

  /* Set a $size padding to the top & bottom at $breakpoint */
  .py-md-9 {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }

  /* Set a $size padding to the top at $breakpoint */
  .pt-md-10 {
    padding-top: 96px !important;
  }

  /* Set a $size padding to the right at $breakpoint */
  .pr-md-10 {
    padding-right: 96px !important;
  }

  /* Set a $size padding to the bottom at $breakpoint */
  .pb-md-10 {
    padding-bottom: 96px !important;
  }

  /* Set a $size padding to the left at $breakpoint */
  .pl-md-10 {
    padding-left: 96px !important;
  }

  /* Set a $size padding to the top & bottom at $breakpoint */
  .py-md-10 {
    padding-top: 96px !important;
    padding-bottom: 96px !important;
  }

  /* Set a $size padding to the top at $breakpoint */
  .pt-md-11 {
    padding-top: 112px !important;
  }

  /* Set a $size padding to the right at $breakpoint */
  .pr-md-11 {
    padding-right: 112px !important;
  }

  /* Set a $size padding to the bottom at $breakpoint */
  .pb-md-11 {
    padding-bottom: 112px !important;
  }

  /* Set a $size padding to the left at $breakpoint */
  .pl-md-11 {
    padding-left: 112px !important;
  }

  /* Set a $size padding to the top & bottom at $breakpoint */
  .py-md-11 {
    padding-top: 112px !important;
    padding-bottom: 112px !important;
  }

  /* Set a $size padding to the top at $breakpoint */
  .pt-md-12 {
    padding-top: 128px !important;
  }

  /* Set a $size padding to the right at $breakpoint */
  .pr-md-12 {
    padding-right: 128px !important;
  }

  /* Set a $size padding to the bottom at $breakpoint */
  .pb-md-12 {
    padding-bottom: 128px !important;
  }

  /* Set a $size padding to the left at $breakpoint */
  .pl-md-12 {
    padding-left: 128px !important;
  }

  /* Set a $size padding to the top & bottom at $breakpoint */
  .py-md-12 {
    padding-top: 128px !important;
    padding-bottom: 128px !important;
  }
}
@media (min-width: 1012px) {
  /* Set a $size padding to all sides at $breakpoint */
  .p-lg-0 {
    padding: 0 !important;
  }

  /* Set a $size padding to the top at $breakpoint */
  .pt-lg-0 {
    padding-top: 0 !important;
  }

  /* Set a $size padding to the right at $breakpoint */
  .pr-lg-0 {
    padding-right: 0 !important;
  }

  /* Set a $size padding to the bottom at $breakpoint */
  .pb-lg-0 {
    padding-bottom: 0 !important;
  }

  /* Set a $size padding to the left at $breakpoint */
  .pl-lg-0 {
    padding-left: 0 !important;
  }

  /* Set a $size padding to the left & right at $breakpoint */
  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  /* Set a $size padding to the top & bottom at $breakpoint */
  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  /* Set a $size padding to all sides at $breakpoint */
  .p-lg-1 {
    padding: 4px !important;
  }

  /* Set a $size padding to the top at $breakpoint */
  .pt-lg-1 {
    padding-top: 4px !important;
  }

  /* Set a $size padding to the right at $breakpoint */
  .pr-lg-1 {
    padding-right: 4px !important;
  }

  /* Set a $size padding to the bottom at $breakpoint */
  .pb-lg-1 {
    padding-bottom: 4px !important;
  }

  /* Set a $size padding to the left at $breakpoint */
  .pl-lg-1 {
    padding-left: 4px !important;
  }

  /* Set a $size padding to the left & right at $breakpoint */
  .px-lg-1 {
    padding-right: 4px !important;
    padding-left: 4px !important;
  }

  /* Set a $size padding to the top & bottom at $breakpoint */
  .py-lg-1 {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
  }

  /* Set a $size padding to all sides at $breakpoint */
  .p-lg-2 {
    padding: 8px !important;
  }

  /* Set a $size padding to the top at $breakpoint */
  .pt-lg-2 {
    padding-top: 8px !important;
  }

  /* Set a $size padding to the right at $breakpoint */
  .pr-lg-2 {
    padding-right: 8px !important;
  }

  /* Set a $size padding to the bottom at $breakpoint */
  .pb-lg-2 {
    padding-bottom: 8px !important;
  }

  /* Set a $size padding to the left at $breakpoint */
  .pl-lg-2 {
    padding-left: 8px !important;
  }

  /* Set a $size padding to the left & right at $breakpoint */
  .px-lg-2 {
    padding-right: 8px !important;
    padding-left: 8px !important;
  }

  /* Set a $size padding to the top & bottom at $breakpoint */
  .py-lg-2 {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }

  /* Set a $size padding to all sides at $breakpoint */
  .p-lg-3 {
    padding: 16px !important;
  }

  /* Set a $size padding to the top at $breakpoint */
  .pt-lg-3 {
    padding-top: 16px !important;
  }

  /* Set a $size padding to the right at $breakpoint */
  .pr-lg-3 {
    padding-right: 16px !important;
  }

  /* Set a $size padding to the bottom at $breakpoint */
  .pb-lg-3 {
    padding-bottom: 16px !important;
  }

  /* Set a $size padding to the left at $breakpoint */
  .pl-lg-3 {
    padding-left: 16px !important;
  }

  /* Set a $size padding to the left & right at $breakpoint */
  .px-lg-3 {
    padding-right: 16px !important;
    padding-left: 16px !important;
  }

  /* Set a $size padding to the top & bottom at $breakpoint */
  .py-lg-3 {
    padding-top: 16px !important;
    padding-bottom: 16px !important;
  }

  /* Set a $size padding to all sides at $breakpoint */
  .p-lg-4 {
    padding: 24px !important;
  }

  /* Set a $size padding to the top at $breakpoint */
  .pt-lg-4 {
    padding-top: 24px !important;
  }

  /* Set a $size padding to the right at $breakpoint */
  .pr-lg-4 {
    padding-right: 24px !important;
  }

  /* Set a $size padding to the bottom at $breakpoint */
  .pb-lg-4 {
    padding-bottom: 24px !important;
  }

  /* Set a $size padding to the left at $breakpoint */
  .pl-lg-4 {
    padding-left: 24px !important;
  }

  /* Set a $size padding to the left & right at $breakpoint */
  .px-lg-4 {
    padding-right: 24px !important;
    padding-left: 24px !important;
  }

  /* Set a $size padding to the top & bottom at $breakpoint */
  .py-lg-4 {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }

  /* Set a $size padding to all sides at $breakpoint */
  .p-lg-5 {
    padding: 32px !important;
  }

  /* Set a $size padding to the top at $breakpoint */
  .pt-lg-5 {
    padding-top: 32px !important;
  }

  /* Set a $size padding to the right at $breakpoint */
  .pr-lg-5 {
    padding-right: 32px !important;
  }

  /* Set a $size padding to the bottom at $breakpoint */
  .pb-lg-5 {
    padding-bottom: 32px !important;
  }

  /* Set a $size padding to the left at $breakpoint */
  .pl-lg-5 {
    padding-left: 32px !important;
  }

  /* Set a $size padding to the left & right at $breakpoint */
  .px-lg-5 {
    padding-right: 32px !important;
    padding-left: 32px !important;
  }

  /* Set a $size padding to the top & bottom at $breakpoint */
  .py-lg-5 {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
  }

  /* Set a $size padding to all sides at $breakpoint */
  .p-lg-6 {
    padding: 40px !important;
  }

  /* Set a $size padding to the top at $breakpoint */
  .pt-lg-6 {
    padding-top: 40px !important;
  }

  /* Set a $size padding to the right at $breakpoint */
  .pr-lg-6 {
    padding-right: 40px !important;
  }

  /* Set a $size padding to the bottom at $breakpoint */
  .pb-lg-6 {
    padding-bottom: 40px !important;
  }

  /* Set a $size padding to the left at $breakpoint */
  .pl-lg-6 {
    padding-left: 40px !important;
  }

  /* Set a $size padding to the left & right at $breakpoint */
  .px-lg-6 {
    padding-right: 40px !important;
    padding-left: 40px !important;
  }

  /* Set a $size padding to the top & bottom at $breakpoint */
  .py-lg-6 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }

  /* Set a $size padding to the top at $breakpoint */
  .pt-lg-7 {
    padding-top: 48px !important;
  }

  /* Set a $size padding to the right at $breakpoint */
  .pr-lg-7 {
    padding-right: 48px !important;
  }

  /* Set a $size padding to the bottom at $breakpoint */
  .pb-lg-7 {
    padding-bottom: 48px !important;
  }

  /* Set a $size padding to the left at $breakpoint */
  .pl-lg-7 {
    padding-left: 48px !important;
  }

  /* Set a $size padding to the top & bottom at $breakpoint */
  .py-lg-7 {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }

  /* Set a $size padding to the top at $breakpoint */
  .pt-lg-8 {
    padding-top: 64px !important;
  }

  /* Set a $size padding to the right at $breakpoint */
  .pr-lg-8 {
    padding-right: 64px !important;
  }

  /* Set a $size padding to the bottom at $breakpoint */
  .pb-lg-8 {
    padding-bottom: 64px !important;
  }

  /* Set a $size padding to the left at $breakpoint */
  .pl-lg-8 {
    padding-left: 64px !important;
  }

  /* Set a $size padding to the top & bottom at $breakpoint */
  .py-lg-8 {
    padding-top: 64px !important;
    padding-bottom: 64px !important;
  }

  /* Set a $size padding to the top at $breakpoint */
  .pt-lg-9 {
    padding-top: 80px !important;
  }

  /* Set a $size padding to the right at $breakpoint */
  .pr-lg-9 {
    padding-right: 80px !important;
  }

  /* Set a $size padding to the bottom at $breakpoint */
  .pb-lg-9 {
    padding-bottom: 80px !important;
  }

  /* Set a $size padding to the left at $breakpoint */
  .pl-lg-9 {
    padding-left: 80px !important;
  }

  /* Set a $size padding to the top & bottom at $breakpoint */
  .py-lg-9 {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }

  /* Set a $size padding to the top at $breakpoint */
  .pt-lg-10 {
    padding-top: 96px !important;
  }

  /* Set a $size padding to the right at $breakpoint */
  .pr-lg-10 {
    padding-right: 96px !important;
  }

  /* Set a $size padding to the bottom at $breakpoint */
  .pb-lg-10 {
    padding-bottom: 96px !important;
  }

  /* Set a $size padding to the left at $breakpoint */
  .pl-lg-10 {
    padding-left: 96px !important;
  }

  /* Set a $size padding to the top & bottom at $breakpoint */
  .py-lg-10 {
    padding-top: 96px !important;
    padding-bottom: 96px !important;
  }

  /* Set a $size padding to the top at $breakpoint */
  .pt-lg-11 {
    padding-top: 112px !important;
  }

  /* Set a $size padding to the right at $breakpoint */
  .pr-lg-11 {
    padding-right: 112px !important;
  }

  /* Set a $size padding to the bottom at $breakpoint */
  .pb-lg-11 {
    padding-bottom: 112px !important;
  }

  /* Set a $size padding to the left at $breakpoint */
  .pl-lg-11 {
    padding-left: 112px !important;
  }

  /* Set a $size padding to the top & bottom at $breakpoint */
  .py-lg-11 {
    padding-top: 112px !important;
    padding-bottom: 112px !important;
  }

  /* Set a $size padding to the top at $breakpoint */
  .pt-lg-12 {
    padding-top: 128px !important;
  }

  /* Set a $size padding to the right at $breakpoint */
  .pr-lg-12 {
    padding-right: 128px !important;
  }

  /* Set a $size padding to the bottom at $breakpoint */
  .pb-lg-12 {
    padding-bottom: 128px !important;
  }

  /* Set a $size padding to the left at $breakpoint */
  .pl-lg-12 {
    padding-left: 128px !important;
  }

  /* Set a $size padding to the top & bottom at $breakpoint */
  .py-lg-12 {
    padding-top: 128px !important;
    padding-bottom: 128px !important;
  }
}
@media (min-width: 1280px) {
  /* Set a $size padding to all sides at $breakpoint */
  .p-xl-0 {
    padding: 0 !important;
  }

  /* Set a $size padding to the top at $breakpoint */
  .pt-xl-0 {
    padding-top: 0 !important;
  }

  /* Set a $size padding to the right at $breakpoint */
  .pr-xl-0 {
    padding-right: 0 !important;
  }

  /* Set a $size padding to the bottom at $breakpoint */
  .pb-xl-0 {
    padding-bottom: 0 !important;
  }

  /* Set a $size padding to the left at $breakpoint */
  .pl-xl-0 {
    padding-left: 0 !important;
  }

  /* Set a $size padding to the left & right at $breakpoint */
  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  /* Set a $size padding to the top & bottom at $breakpoint */
  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  /* Set a $size padding to all sides at $breakpoint */
  .p-xl-1 {
    padding: 4px !important;
  }

  /* Set a $size padding to the top at $breakpoint */
  .pt-xl-1 {
    padding-top: 4px !important;
  }

  /* Set a $size padding to the right at $breakpoint */
  .pr-xl-1 {
    padding-right: 4px !important;
  }

  /* Set a $size padding to the bottom at $breakpoint */
  .pb-xl-1 {
    padding-bottom: 4px !important;
  }

  /* Set a $size padding to the left at $breakpoint */
  .pl-xl-1 {
    padding-left: 4px !important;
  }

  /* Set a $size padding to the left & right at $breakpoint */
  .px-xl-1 {
    padding-right: 4px !important;
    padding-left: 4px !important;
  }

  /* Set a $size padding to the top & bottom at $breakpoint */
  .py-xl-1 {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
  }

  /* Set a $size padding to all sides at $breakpoint */
  .p-xl-2 {
    padding: 8px !important;
  }

  /* Set a $size padding to the top at $breakpoint */
  .pt-xl-2 {
    padding-top: 8px !important;
  }

  /* Set a $size padding to the right at $breakpoint */
  .pr-xl-2 {
    padding-right: 8px !important;
  }

  /* Set a $size padding to the bottom at $breakpoint */
  .pb-xl-2 {
    padding-bottom: 8px !important;
  }

  /* Set a $size padding to the left at $breakpoint */
  .pl-xl-2 {
    padding-left: 8px !important;
  }

  /* Set a $size padding to the left & right at $breakpoint */
  .px-xl-2 {
    padding-right: 8px !important;
    padding-left: 8px !important;
  }

  /* Set a $size padding to the top & bottom at $breakpoint */
  .py-xl-2 {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }

  /* Set a $size padding to all sides at $breakpoint */
  .p-xl-3 {
    padding: 16px !important;
  }

  /* Set a $size padding to the top at $breakpoint */
  .pt-xl-3 {
    padding-top: 16px !important;
  }

  /* Set a $size padding to the right at $breakpoint */
  .pr-xl-3 {
    padding-right: 16px !important;
  }

  /* Set a $size padding to the bottom at $breakpoint */
  .pb-xl-3 {
    padding-bottom: 16px !important;
  }

  /* Set a $size padding to the left at $breakpoint */
  .pl-xl-3 {
    padding-left: 16px !important;
  }

  /* Set a $size padding to the left & right at $breakpoint */
  .px-xl-3 {
    padding-right: 16px !important;
    padding-left: 16px !important;
  }

  /* Set a $size padding to the top & bottom at $breakpoint */
  .py-xl-3 {
    padding-top: 16px !important;
    padding-bottom: 16px !important;
  }

  /* Set a $size padding to all sides at $breakpoint */
  .p-xl-4 {
    padding: 24px !important;
  }

  /* Set a $size padding to the top at $breakpoint */
  .pt-xl-4 {
    padding-top: 24px !important;
  }

  /* Set a $size padding to the right at $breakpoint */
  .pr-xl-4 {
    padding-right: 24px !important;
  }

  /* Set a $size padding to the bottom at $breakpoint */
  .pb-xl-4 {
    padding-bottom: 24px !important;
  }

  /* Set a $size padding to the left at $breakpoint */
  .pl-xl-4 {
    padding-left: 24px !important;
  }

  /* Set a $size padding to the left & right at $breakpoint */
  .px-xl-4 {
    padding-right: 24px !important;
    padding-left: 24px !important;
  }

  /* Set a $size padding to the top & bottom at $breakpoint */
  .py-xl-4 {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }

  /* Set a $size padding to all sides at $breakpoint */
  .p-xl-5 {
    padding: 32px !important;
  }

  /* Set a $size padding to the top at $breakpoint */
  .pt-xl-5 {
    padding-top: 32px !important;
  }

  /* Set a $size padding to the right at $breakpoint */
  .pr-xl-5 {
    padding-right: 32px !important;
  }

  /* Set a $size padding to the bottom at $breakpoint */
  .pb-xl-5 {
    padding-bottom: 32px !important;
  }

  /* Set a $size padding to the left at $breakpoint */
  .pl-xl-5 {
    padding-left: 32px !important;
  }

  /* Set a $size padding to the left & right at $breakpoint */
  .px-xl-5 {
    padding-right: 32px !important;
    padding-left: 32px !important;
  }

  /* Set a $size padding to the top & bottom at $breakpoint */
  .py-xl-5 {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
  }

  /* Set a $size padding to all sides at $breakpoint */
  .p-xl-6 {
    padding: 40px !important;
  }

  /* Set a $size padding to the top at $breakpoint */
  .pt-xl-6 {
    padding-top: 40px !important;
  }

  /* Set a $size padding to the right at $breakpoint */
  .pr-xl-6 {
    padding-right: 40px !important;
  }

  /* Set a $size padding to the bottom at $breakpoint */
  .pb-xl-6 {
    padding-bottom: 40px !important;
  }

  /* Set a $size padding to the left at $breakpoint */
  .pl-xl-6 {
    padding-left: 40px !important;
  }

  /* Set a $size padding to the left & right at $breakpoint */
  .px-xl-6 {
    padding-right: 40px !important;
    padding-left: 40px !important;
  }

  /* Set a $size padding to the top & bottom at $breakpoint */
  .py-xl-6 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }

  /* Set a $size padding to the top at $breakpoint */
  .pt-xl-7 {
    padding-top: 48px !important;
  }

  /* Set a $size padding to the right at $breakpoint */
  .pr-xl-7 {
    padding-right: 48px !important;
  }

  /* Set a $size padding to the bottom at $breakpoint */
  .pb-xl-7 {
    padding-bottom: 48px !important;
  }

  /* Set a $size padding to the left at $breakpoint */
  .pl-xl-7 {
    padding-left: 48px !important;
  }

  /* Set a $size padding to the top & bottom at $breakpoint */
  .py-xl-7 {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }

  /* Set a $size padding to the top at $breakpoint */
  .pt-xl-8 {
    padding-top: 64px !important;
  }

  /* Set a $size padding to the right at $breakpoint */
  .pr-xl-8 {
    padding-right: 64px !important;
  }

  /* Set a $size padding to the bottom at $breakpoint */
  .pb-xl-8 {
    padding-bottom: 64px !important;
  }

  /* Set a $size padding to the left at $breakpoint */
  .pl-xl-8 {
    padding-left: 64px !important;
  }

  /* Set a $size padding to the top & bottom at $breakpoint */
  .py-xl-8 {
    padding-top: 64px !important;
    padding-bottom: 64px !important;
  }

  /* Set a $size padding to the top at $breakpoint */
  .pt-xl-9 {
    padding-top: 80px !important;
  }

  /* Set a $size padding to the right at $breakpoint */
  .pr-xl-9 {
    padding-right: 80px !important;
  }

  /* Set a $size padding to the bottom at $breakpoint */
  .pb-xl-9 {
    padding-bottom: 80px !important;
  }

  /* Set a $size padding to the left at $breakpoint */
  .pl-xl-9 {
    padding-left: 80px !important;
  }

  /* Set a $size padding to the top & bottom at $breakpoint */
  .py-xl-9 {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }

  /* Set a $size padding to the top at $breakpoint */
  .pt-xl-10 {
    padding-top: 96px !important;
  }

  /* Set a $size padding to the right at $breakpoint */
  .pr-xl-10 {
    padding-right: 96px !important;
  }

  /* Set a $size padding to the bottom at $breakpoint */
  .pb-xl-10 {
    padding-bottom: 96px !important;
  }

  /* Set a $size padding to the left at $breakpoint */
  .pl-xl-10 {
    padding-left: 96px !important;
  }

  /* Set a $size padding to the top & bottom at $breakpoint */
  .py-xl-10 {
    padding-top: 96px !important;
    padding-bottom: 96px !important;
  }

  /* Set a $size padding to the top at $breakpoint */
  .pt-xl-11 {
    padding-top: 112px !important;
  }

  /* Set a $size padding to the right at $breakpoint */
  .pr-xl-11 {
    padding-right: 112px !important;
  }

  /* Set a $size padding to the bottom at $breakpoint */
  .pb-xl-11 {
    padding-bottom: 112px !important;
  }

  /* Set a $size padding to the left at $breakpoint */
  .pl-xl-11 {
    padding-left: 112px !important;
  }

  /* Set a $size padding to the top & bottom at $breakpoint */
  .py-xl-11 {
    padding-top: 112px !important;
    padding-bottom: 112px !important;
  }

  /* Set a $size padding to the top at $breakpoint */
  .pt-xl-12 {
    padding-top: 128px !important;
  }

  /* Set a $size padding to the right at $breakpoint */
  .pr-xl-12 {
    padding-right: 128px !important;
  }

  /* Set a $size padding to the bottom at $breakpoint */
  .pb-xl-12 {
    padding-bottom: 128px !important;
  }

  /* Set a $size padding to the left at $breakpoint */
  .pl-xl-12 {
    padding-left: 128px !important;
  }

  /* Set a $size padding to the top & bottom at $breakpoint */
  .py-xl-12 {
    padding-top: 128px !important;
    padding-bottom: 128px !important;
  }
}
.p-responsive {
  padding-right: 16px !important;
  padding-left: 16px !important;
}
@media (min-width: 544px) {
  .p-responsive {
    padding-right: 40px !important;
    padding-left: 40px !important;
  }
}
@media (min-width: 1012px) {
  .p-responsive {
    padding-right: 16px !important;
    padding-left: 16px !important;
  }
}

/* Set the font size to 26px */
.h1 {
  font-size: 26px !important;
}
@media (min-width: 768px) {
  .h1 {
    font-size: 28px !important;
  }
}

/* Set the font size to 22px */
.h2 {
  font-size: 22px !important;
}
@media (min-width: 768px) {
  .h2 {
    font-size: 18px !important;
  }
}

/* Set the font size to 18px */
.h3 {
  font-size: 18px !important;
}
@media (min-width: 768px) {
  .h3 {
    font-size: 20px !important;
  }
}

/* Set the font size to 16px */
.h4 {
  font-size: 16px !important;
}

/* Set the font size to 14px */
.h5 {
  font-size: 14px !important;
}

/* Set the font size to 12px */
.h6 {
  font-size: 12px !important;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-weight: 700 !important;
}

/* Set the font size to 26px */
.f1 {
  font-size: 26px !important;
}
@media (min-width: 768px) {
  .f1 {
    font-size: 28px !important;
  }
}

/* Set the font size to 22px */
.f2 {
  font-size: 22px !important;
}
@media (min-width: 768px) {
  .f2 {
    font-size: 18px !important;
  }
}

/* Set the font size to 18px */
.f3 {
  font-size: 18px !important;
}
@media (min-width: 768px) {
  .f3 {
    font-size: 20px !important;
  }
}

/* Set the font size to 16px */
.f4 {
  font-size: 16px !important;
}
@media (min-width: 768px) {
  .f4 {
    font-size: 16px !important;
  }
}

/* Set the font size to 14px */
.f5 {
  font-size: 14px !important;
}

/* Set the font size to 12px */
.f6 {
  font-size: 12px !important;
}

/* Set the font size to 40px and weight to light */
.f00-light {
  font-size: 40px !important;
  font-weight: 300 !important;
}
@media (min-width: 768px) {
  .f00-light {
    font-size: 48px !important;
  }
}

/* Set the font size to 32px and weight to light */
.f0-light {
  font-size: 32px !important;
  font-weight: 300 !important;
}
@media (min-width: 768px) {
  .f0-light {
    font-size: 40px !important;
  }
}

/* Set the font size to 26px and weight to light */
.f1-light {
  font-size: 26px !important;
  font-weight: 300 !important;
}
@media (min-width: 768px) {
  .f1-light {
    font-size: 28px !important;
  }
}

/* Set the font size to 22px and weight to light */
.f2-light {
  font-size: 22px !important;
  font-weight: 300 !important;
}
@media (min-width: 768px) {
  .f2-light {
    font-size: 18px !important;
  }
}

/* Set the font size to 18px and weight to light */
.f3-light {
  font-size: 18px !important;
  font-weight: 300 !important;
}
@media (min-width: 768px) {
  .f3-light {
    font-size: 20px !important;
  }
}

/* Set the font size to ${#h6-size} */
.text-small {
  font-size: 12px !important;
}

/* Large leading paragraphs */
.lead {
  margin-bottom: 30px;
  font-size: 20px;
  font-weight: 300;
}

/* Set the line height to ultra condensed */
.lh-condensed-ultra {
  line-height: 1 !important;
}

/* Set the line height to condensed */
.lh-condensed {
  line-height: 1.25 !important;
}

/* Set the line height to default */
.lh-default {
  line-height: 1.5 !important;
}

/* Set the line height to zero */
.lh-0 {
  line-height: 0 !important;
}

@media (min-width: 544px) {
  /* Set the line height to ultra condensed */
  .lh-sm-condensed-ultra {
    line-height: 1 !important;
  }

  /* Set the line height to condensed */
  .lh-sm-condensed {
    line-height: 1.25 !important;
  }

  /* Set the line height to default */
  .lh-sm-default {
    line-height: 1.5 !important;
  }

  /* Set the line height to zero */
  .lh-sm-0 {
    line-height: 0 !important;
  }
}
@media (min-width: 768px) {
  /* Set the line height to ultra condensed */
  .lh-md-condensed-ultra {
    line-height: 1 !important;
  }

  /* Set the line height to condensed */
  .lh-md-condensed {
    line-height: 1.25 !important;
  }

  /* Set the line height to default */
  .lh-md-default {
    line-height: 1.5 !important;
  }

  /* Set the line height to zero */
  .lh-md-0 {
    line-height: 0 !important;
  }
}
@media (min-width: 1012px) {
  /* Set the line height to ultra condensed */
  .lh-lg-condensed-ultra {
    line-height: 1 !important;
  }

  /* Set the line height to condensed */
  .lh-lg-condensed {
    line-height: 1.25 !important;
  }

  /* Set the line height to default */
  .lh-lg-default {
    line-height: 1.5 !important;
  }

  /* Set the line height to zero */
  .lh-lg-0 {
    line-height: 0 !important;
  }
}
@media (min-width: 1280px) {
  /* Set the line height to ultra condensed */
  .lh-xl-condensed-ultra {
    line-height: 1 !important;
  }

  /* Set the line height to condensed */
  .lh-xl-condensed {
    line-height: 1.25 !important;
  }

  /* Set the line height to default */
  .lh-xl-default {
    line-height: 1.5 !important;
  }

  /* Set the line height to zero */
  .lh-xl-0 {
    line-height: 0 !important;
  }
}
/* Text align to the right */
.text-right {
  text-align: right !important;
}

/* Text align to the left */
.text-left {
  text-align: left !important;
}

/* Text align to the center */
.text-center {
  text-align: center !important;
}

@media (min-width: 544px) {
  /* Text align to the right */
  .text-sm-right {
    text-align: right !important;
  }

  /* Text align to the left */
  .text-sm-left {
    text-align: left !important;
  }

  /* Text align to the center */
  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  /* Text align to the right */
  .text-md-right {
    text-align: right !important;
  }

  /* Text align to the left */
  .text-md-left {
    text-align: left !important;
  }

  /* Text align to the center */
  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 1012px) {
  /* Text align to the right */
  .text-lg-right {
    text-align: right !important;
  }

  /* Text align to the left */
  .text-lg-left {
    text-align: left !important;
  }

  /* Text align to the center */
  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1280px) {
  /* Text align to the right */
  .text-xl-right {
    text-align: right !important;
  }

  /* Text align to the left */
  .text-xl-left {
    text-align: left !important;
  }

  /* Text align to the center */
  .text-xl-center {
    text-align: center !important;
  }
}
/* Set the font weight to normal */
.text-normal {
  font-weight: 400 !important;
}

/* Set the font weight to bold */
.text-bold {
  font-weight: 700 !important;
}

.text-semibold {
  font-weight: 500 !important;
}

.text-light {
  font-weight: 300 !important;
}

/* Set the font to italic */
.text-italic {
  font-style: italic !important;
}

/* Make text uppercase */
.text-uppercase {
  text-transform: uppercase !important;
}

/* Underline text */
.text-underline {
  text-decoration: underline !important;
}

/* Don't underline text */
.no-underline {
  text-decoration: none !important;
}

/* Don't wrap white space */
.no-wrap {
  white-space: nowrap !important;
}

/* Normal white space */
.ws-normal {
  white-space: normal !important;
}

/* Force long "words" to wrap if they exceed the width of the container */
.break-word,
.wb-break-word {
  word-break: break-word !important;
  word-wrap: break-word !important;
  overflow-wrap: break-word !important;
}

/*
 * Specifically apply word-break: break-all; per MDN:
 *
 * > Note: In contrast to `word-break: break-word` and `overflow-wrap: break-word`,
 * > `word-break: break-all` will create a break at the exact place where text would
 * > otherwise overflow its container (even if putting an entire word on its own line
 * > would negate the need for a break).
 *
 * see: https://developer.mozilla.org/en-US/docs/Web/CSS/word-break#Values
 */
.wb-break-all {
  word-break: break-all !important;
}

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

.list-style-none {
  list-style: none !important;
}

/* Set to monospace font */
.text-mono {
  font-family: ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, Liberation Mono, monospace !important;
}

/* Disallow user from selecting text */
.user-select-none {
  -webkit-user-select: none !important;
     -moz-user-select: none !important;
          user-select: none !important;
}

.d-block {
  display: block !important;
}

.d-flex {
  display: flex !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.d-none {
  display: none !important;
}

.d-table {
  display: table !important;
}

.d-table-cell {
  display: table-cell !important;
}

@media (min-width: 544px) {
  .d-sm-block {
    display: block !important;
  }

  .d-sm-flex {
    display: flex !important;
  }

  .d-sm-inline {
    display: inline !important;
  }

  .d-sm-inline-block {
    display: inline-block !important;
  }

  .d-sm-inline-flex {
    display: inline-flex !important;
  }

  .d-sm-none {
    display: none !important;
  }

  .d-sm-table {
    display: table !important;
  }

  .d-sm-table-cell {
    display: table-cell !important;
  }
}
@media (min-width: 768px) {
  .d-md-block {
    display: block !important;
  }

  .d-md-flex {
    display: flex !important;
  }

  .d-md-inline {
    display: inline !important;
  }

  .d-md-inline-block {
    display: inline-block !important;
  }

  .d-md-inline-flex {
    display: inline-flex !important;
  }

  .d-md-none {
    display: none !important;
  }

  .d-md-table {
    display: table !important;
  }

  .d-md-table-cell {
    display: table-cell !important;
  }
}
@media (min-width: 1012px) {
  .d-lg-block {
    display: block !important;
  }

  .d-lg-flex {
    display: flex !important;
  }

  .d-lg-inline {
    display: inline !important;
  }

  .d-lg-inline-block {
    display: inline-block !important;
  }

  .d-lg-inline-flex {
    display: inline-flex !important;
  }

  .d-lg-none {
    display: none !important;
  }

  .d-lg-table {
    display: table !important;
  }

  .d-lg-table-cell {
    display: table-cell !important;
  }
}
@media (min-width: 1280px) {
  .d-xl-block {
    display: block !important;
  }

  .d-xl-flex {
    display: flex !important;
  }

  .d-xl-inline {
    display: inline !important;
  }

  .d-xl-inline-block {
    display: inline-block !important;
  }

  .d-xl-inline-flex {
    display: inline-flex !important;
  }

  .d-xl-none {
    display: none !important;
  }

  .d-xl-table {
    display: table !important;
  }

  .d-xl-table-cell {
    display: table-cell !important;
  }
}
.v-hidden {
  visibility: hidden !important;
}

.v-visible {
  visibility: visible !important;
}

@media (max-width: 543px) {
  .hide-sm {
    display: none !important;
  }
}
@media (min-width: 544px) and (max-width: 767px) {
  .hide-md {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 1011px) {
  .hide-lg {
    display: none !important;
  }
}
@media (min-width: 1012px) {
  .hide-xl {
    display: none !important;
  }
}
/* Set the table-layout to fixed */
.table-fixed {
  table-layout: fixed !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  word-wrap: normal;
  border: 0;
}

.show-on-focus {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}
.show-on-focus:focus {
  z-index: 20;
  width: auto;
  height: auto;
  clip: auto;
}

/*!
 * @primer/css/product
 * http://primer.style/css
 *
 * Released under MIT license. Copyright (c) 2019 GitHub Inc.
 */
.flash {
  position: relative;
  padding: 20px 16px;
  border-style: solid;
  border-width: 1px;
  border-radius: 6px;
}
.flash p:last-child {
  margin-bottom: 0;
}
.flash .octicon {
  margin-right: 12px;
}

.flash-messages {
  margin-bottom: 24px;
}

.flash-close {
  float: right;
  padding: 16px;
  margin: -16px;
  text-align: center;
  cursor: pointer;
  background: none;
  border: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.flash-close:hover {
  opacity: 0.7;
}
.flash-close:active {
  opacity: 0.5;
}
.flash-close .octicon {
  margin-right: 0;
}

.flash-action {
  float: right;
  margin-top: -3px;
  margin-left: 24px;
  background-clip: padding-box;
}

.flash {
  color: var(--color-fg-default);
  background-image: linear-gradient(var(--color-accent-subtle), var(--color-accent-subtle));
  border-color: var(--color-accent-muted);
}
.flash .octicon {
  color: var(--color-accent-fg);
}

.flash-warn {
  color: var(--color-fg-default);
  background-image: linear-gradient(var(--color-attention-subtle), var(--color-attention-subtle));
  border-color: var(--color-attention-muted);
}
.flash-warn .octicon {
  color: var(--color-attention-fg);
}

.flash-error {
  color: var(--color-fg-default);
  background-image: linear-gradient(var(--color-danger-subtle), var(--color-danger-subtle));
  border-color: var(--color-danger-muted);
}
.flash-error .octicon {
  color: var(--color-danger-fg);
}

.flash-success {
  color: var(--color-fg-default);
  background-image: linear-gradient(var(--color-success-subtle), var(--color-success-subtle));
  border-color: var(--color-success-muted);
}
.flash-success .octicon {
  color: var(--color-success-fg);
}

.flash-full {
  margin-top: -1px;
  border-width: 1px 0;
  border-radius: 0;
}

.flash-banner {
  position: fixed;
  top: 0;
  z-index: 90;
  width: 100%;
  border-top: 0;
  border-right: 0;
  border-left: 0;
  border-radius: 0;
}

.flash-full,
.flash-banner {
  background-color: var(--color-canvas-default);
}

.warning {
  padding: 0.5em;
  margin-bottom: 0.8em;
  font-weight: 700;
  background-color: var(--color-attention-subtle);
}

.autocomplete-results {
  position: absolute;
  z-index: 99;
  width: 100%;
  max-height: 20em;
  overflow-y: auto;
  font-size: 13px;
  list-style: none;
  background: var(--color-canvas-overlay);
  border: 1px solid var(--color-border-default);
  border-radius: 6px;
  box-shadow: var(--color-shadow-medium);
}

.autocomplete-item {
  display: block;
  width: 100%;
  padding: 4px 8px;
  overflow: hidden;
  font-weight: 700;
  color: var(--color-fg-default);
  text-align: left;
  text-decoration: none;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
  background-color: var(--color-canvas-overlay);
  border: 0;
}
.autocomplete-item:hover {
  color: var(--color-fg-on-emphasis);
  text-decoration: none;
  background-color: var(--color-accent-emphasis);
}
.autocomplete-item:hover * {
  color: inherit !important;
}
.autocomplete-item.selected, .autocomplete-item[aria-selected=true], .autocomplete-item.navigation-focus {
  color: var(--color-fg-on-emphasis);
  text-decoration: none;
  background-color: var(--color-accent-emphasis);
}
.autocomplete-item.selected *, .autocomplete-item[aria-selected=true] *, .autocomplete-item.navigation-focus * {
  color: inherit !important;
}

.suggester {
  position: relative;
  top: 0;
  left: 0;
  min-width: 180px;
  padding: 0;
  margin: 0;
  margin-top: 24px;
  list-style: none;
  cursor: pointer;
  background: var(--color-canvas-overlay);
  border: 1px solid var(--color-border-default);
  border-radius: 6px;
  box-shadow: var(--color-shadow-medium);
}
.suggester li {
  display: block;
  padding: 4px 8px;
  font-weight: 500;
  border-bottom: 1px solid var(--color-border-muted);
}
.suggester li small {
  font-weight: 400;
  color: var(--color-fg-muted);
}
.suggester li:last-child {
  border-bottom: 0;
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
}
.suggester li:first-child {
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}
.suggester li:hover {
  color: var(--color-fg-on-emphasis);
  text-decoration: none;
  background: var(--color-accent-emphasis);
}
.suggester li:hover small {
  color: var(--color-fg-on-emphasis);
}
.suggester li[aria-selected=true], .suggester li.navigation-focus {
  color: var(--color-fg-on-emphasis);
  text-decoration: none;
  background: var(--color-accent-emphasis);
}
.suggester li[aria-selected=true] small, .suggester li.navigation-focus small {
  color: var(--color-fg-on-emphasis);
}

.suggester-container {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 30;
}

@media (max-width: 544px) {
  .page-responsive .suggester-container {
    right: 8px !important;
    left: 8px !important;
  }
  .page-responsive .suggester li {
    padding: 8px 16px;
  }
}

.avatar {
  display: inline-block;
  overflow: hidden;
  line-height: 1;
  vertical-align: middle;
  background-color: var(--color-avatar-bg);
  border-radius: 6px;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px var(--color-avatar-border);
}

.avatar-link {
  float: left;
  line-height: 1;
}

.avatar-group-item {
  display: inline-block;
  margin-bottom: 3px;
}

.avatar-1,
.avatar-2,
.avatar-small {
  border-radius: 4px;
}

.avatar-1 {
  width: 16px;
  height: 16px;
}

.avatar-2 {
  width: 20px;
  height: 20px;
}

.avatar-3 {
  width: 24px;
  height: 24px;
}

.avatar-4 {
  width: 28px;
  height: 28px;
}

.avatar-5 {
  width: 32px;
  height: 32px;
}

.avatar-6 {
  width: 40px;
  height: 40px;
}

.avatar-7 {
  width: 48px;
  height: 48px;
}

.avatar-8 {
  width: 64px;
  height: 64px;
}

.avatar-parent-child {
  position: relative;
}

.avatar-child {
  position: absolute;
  right: -15%;
  bottom: -9%;
  background-color: var(--color-canvas-default);
  border-radius: 4px;
  box-shadow: var(--color-avatar-child-shadow);
}

.AvatarStack {
  position: relative;
  min-width: 26px;
  height: 20px;
}
.AvatarStack .AvatarStack-body {
  position: absolute;
}
.AvatarStack.AvatarStack--two {
  min-width: 36px;
}
.AvatarStack.AvatarStack--three-plus {
  min-width: 46px;
}

.AvatarStack-body {
  display: flex;
  background: var(--color-canvas-default);
}
.AvatarStack-body .avatar {
  position: relative;
  z-index: 2;
  display: flex;
  width: 20px;
  height: 20px;
  box-sizing: content-box;
  margin-right: -11px;
  background-color: var(--color-canvas-default);
  border-right: 1px solid var(--color-canvas-default);
  border-radius: 4px;
  transition: margin 0.1s ease-in-out;
}
.AvatarStack-body .avatar:first-child {
  z-index: 3;
}
.AvatarStack-body .avatar:last-child {
  z-index: 1;
  border-right: 0;
}
.AvatarStack-body .avatar img {
  border-radius: 4px;
}
.AvatarStack-body .avatar:nth-child(n+4) {
  display: none;
  opacity: 0;
}
.AvatarStack-body:hover .avatar {
  margin-right: 3px;
}
.AvatarStack-body:hover .avatar:nth-child(n+4) {
  display: flex;
  opacity: 1;
}
.AvatarStack-body:hover .avatar-more {
  display: none !important;
}

.avatar.avatar-more {
  z-index: 1;
  margin-right: 0;
  background: var(--color-canvas-subtle);
}
.avatar.avatar-more::before, .avatar.avatar-more::after {
  position: absolute;
  display: block;
  height: 20px;
  content: "";
  border-radius: 2px;
  outline: 1px solid var(--color-canvas-default);
}
.avatar.avatar-more::before {
  width: 17px;
  background: var(--color-avatar-stack-fade-more);
}
.avatar.avatar-more::after {
  width: 14px;
  background: var(--color-avatar-stack-fade);
}

.AvatarStack--right .AvatarStack-body {
  right: 0;
  flex-direction: row-reverse;
}
.AvatarStack--right .AvatarStack-body:hover .avatar {
  margin-right: 0;
  margin-left: 3px;
}
.AvatarStack--right .avatar.avatar-more {
  background: var(--color-avatar-stack-fade);
}
.AvatarStack--right .avatar.avatar-more::before {
  width: 5px;
}
.AvatarStack--right .avatar.avatar-more::after {
  width: 2px;
  background: var(--color-canvas-subtle);
}
.AvatarStack--right .avatar {
  margin-right: 0;
  margin-left: -11px;
  border-right: 0;
  border-left: 1px solid var(--color-canvas-default);
}

.CircleBadge {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-canvas-default);
  border-radius: 50%;
  box-shadow: var(--color-shadow-medium);
}

.CircleBadge-icon {
  max-width: 60% !important;
  height: auto !important;
  max-height: 55% !important;
}

.CircleBadge--small {
  width: 56px;
  height: 56px;
}

.CircleBadge--medium {
  width: 96px;
  height: 96px;
}

.CircleBadge--large {
  width: 128px;
  height: 128px;
}

.DashedConnection {
  position: relative;
}
.DashedConnection::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  content: "";
  border-bottom: 2px dashed var(--color-border-default);
}
.DashedConnection .CircleBadge {
  position: relative;
}

.blankslate {
  position: relative;
  padding: 32px;
  text-align: center;
}
.blankslate p {
  color: var(--color-fg-muted);
}
.blankslate code {
  padding: 2px 5px 3px;
  font-size: 14px;
  background: var(--color-canvas-default);
  border: 1px solid var(--color-border-muted);
  border-radius: 6px;
}
.blankslate img {
  width: 56px;
  height: 56px;
}

.blankslate-icon {
  margin-right: 4px;
  margin-bottom: 8px;
  margin-left: 4px;
  color: var(--color-fg-muted);
}

.blankslate-capped {
  border-radius: 0 0 6px 6px;
}

.blankslate-spacious {
  padding: 80px 40px;
}

.blankslate-narrow {
  max-width: 485px;
  margin: 0 auto;
}

.blankslate-large img {
  width: 80px;
  height: 80px;
}
.blankslate-large h3 {
  margin: 16px 0;
  font-size: 18px;
}
.blankslate-large p {
  font-size: 16px;
}

.blankslate-clean-background {
  border: 0;
}

.branch-name {
  display: inline-block;
  padding: 2px 6px;
  font: 12px ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, Liberation Mono, monospace;
  color: var(--color-fg-muted);
  background-color: var(--color-accent-subtle);
  border-radius: 6px;
}
.branch-name .octicon {
  margin: 1px -2px 0 0;
  color: var(--color-fg-muted);
}

a.branch-name {
  color: var(--color-accent-fg);
  background-color: var(--color-accent-subtle);
}
a.branch-name .octicon {
  color: var(--color-accent-fg);
}

.dropdown {
  position: relative;
}

.dropdown-caret {
  display: inline-block;
  width: 0;
  height: 0;
  vertical-align: middle;
  content: "";
  border-style: solid;
  border-width: 4px 4px 0;
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-left-color: transparent;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 100;
  width: 160px;
  padding-top: 4px;
  padding-bottom: 4px;
  margin-top: 2px;
  list-style: none;
  background-color: var(--color-canvas-overlay);
  background-clip: padding-box;
  border: 1px solid var(--color-border-default);
  border-radius: 6px;
  box-shadow: var(--color-shadow-large);
}
.dropdown-menu::before, .dropdown-menu::after {
  position: absolute;
  display: inline-block;
  content: "";
}
.dropdown-menu::before {
  border: 8px solid transparent;
  border-bottom-color: var(--color-border-default);
}
.dropdown-menu::after {
  border: 7px solid transparent;
  border-bottom-color: var(--color-canvas-overlay);
}
.dropdown-menu > ul {
  list-style: none;
}

.dropdown-menu-no-overflow {
  width: auto;
}
.dropdown-menu-no-overflow .dropdown-item {
  padding: 4px 16px;
  overflow: visible;
  text-overflow: inherit;
}

.dropdown-item {
  display: block;
  padding: 4px 8px 4px 16px;
  overflow: hidden;
  color: var(--color-fg-default);
  text-overflow: ellipsis;
  white-space: nowrap;
}
.dropdown-item:focus, .dropdown-item:hover {
  color: var(--color-fg-on-emphasis);
  text-decoration: none;
  background-color: var(--color-accent-emphasis);
  outline: none;
}
.dropdown-item:focus > .octicon, .dropdown-item:hover > .octicon {
  color: inherit;
  opacity: 1;
}
.dropdown-item:focus [class*=color-text-], .dropdown-item:hover [class*=color-text-] {
  color: inherit !important;
}
.dropdown-item:focus > .Label, .dropdown-item:hover > .Label {
  color: inherit !important;
  border-color: currentColor;
}
.dropdown-item.btn-link {
  width: 100%;
  text-align: left;
}

.dropdown-signout {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
}

.dropdown-divider {
  display: block;
  height: 0;
  margin: 8px 0;
  border-top: 1px solid var(--color-border-default);
}

.dropdown-header {
  padding: 4px 16px;
  font-size: 12px;
  color: var(--color-fg-muted);
}

.dropdown-item[aria-checked=false] .octicon-check {
  display: none;
}

.dropdown-menu-w {
  top: 0;
  right: 100%;
  left: auto;
  width: auto;
  margin-top: 0;
  margin-right: 8px;
}
.dropdown-menu-w::before {
  top: 10px;
  right: -16px;
  left: auto;
  border-color: transparent;
  border-left-color: var(--color-border-default);
}
.dropdown-menu-w::after {
  top: 11px;
  right: -14px;
  left: auto;
  border-color: transparent;
  border-left-color: var(--color-canvas-overlay);
}

.dropdown-menu-e {
  top: 0;
  left: 100%;
  width: auto;
  margin-top: 0;
  margin-left: 8px;
}
.dropdown-menu-e::before {
  top: 10px;
  left: -16px;
  border-color: transparent;
  border-right-color: var(--color-border-default);
}
.dropdown-menu-e::after {
  top: 11px;
  left: -14px;
  border-color: transparent;
  border-right-color: var(--color-canvas-overlay);
}

.dropdown-menu-ne {
  top: auto;
  bottom: 100%;
  left: 0;
  margin-bottom: 3px;
}
.dropdown-menu-ne::before, .dropdown-menu-ne::after {
  top: auto;
  right: auto;
}
.dropdown-menu-ne::before {
  bottom: -8px;
  left: 9px;
  border-top: 8px solid var(--color-border-default);
  border-right: 8px solid transparent;
  border-bottom: 0;
  border-left: 8px solid transparent;
}
.dropdown-menu-ne::after {
  bottom: -7px;
  left: 10px;
  border-top: 7px solid var(--color-canvas-overlay);
  border-right: 7px solid transparent;
  border-bottom: 0;
  border-left: 7px solid transparent;
}

.dropdown-menu-s {
  right: 50%;
  left: auto;
  transform: translateX(50%);
}
.dropdown-menu-s::before {
  top: -16px;
  right: 50%;
  transform: translateX(50%);
}
.dropdown-menu-s::after {
  top: -14px;
  right: 50%;
  transform: translateX(50%);
}

.dropdown-menu-sw {
  right: 0;
  left: auto;
}
.dropdown-menu-sw::before {
  top: -16px;
  right: 9px;
  left: auto;
}
.dropdown-menu-sw::after {
  top: -14px;
  right: 10px;
  left: auto;
}

.dropdown-menu-se::before {
  top: -16px;
  left: 9px;
}
.dropdown-menu-se::after {
  top: -14px;
  left: 10px;
}

.Header {
  z-index: 32;
  display: flex;
  padding: 16px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-header-text);
  background-color: var(--color-header-bg);
  align-items: center;
  flex-wrap: nowrap;
}

.Header-item {
  display: flex;
  margin-right: 16px;
  align-self: stretch;
  align-items: center;
  flex-wrap: nowrap;
}

.Header-item--full {
  flex: auto;
}

.Header-link {
  font-weight: 700;
  color: var(--color-header-logo);
  white-space: nowrap;
}
.Header-link:hover, .Header-link:focus {
  color: var(--color-header-text);
  text-decoration: none;
}

.Header-input {
  color: var(--color-header-text);
  background-color: var(--color-header-search-bg);
  border: 1px solid var(--color-header-search-border);
  box-shadow: none;
}
.Header-input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.75);
}
.Header-input::placeholder {
  color: rgba(255, 255, 255, 0.75);
}

.IssueLabel {
  display: inline-block;
  padding: 0 7px;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  border: 1px solid transparent;
  border-radius: 2em;
}
.IssueLabel .g-emoji {
  position: relative;
  top: -0.05em;
  display: inline-block;
  font-size: 1em;
  line-height: 1;
}
.IssueLabel:hover {
  text-decoration: none;
}

.IssueLabel--big {
  padding-right: 10px;
  padding-left: 10px;
  line-height: 22px;
}

.labels {
  position: relative;
}

.label,
.Label {
  display: inline-block;
  padding: 0 7px;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  border: 1px solid transparent;
  border-radius: 2em;
  background-color: transparent !important;
  border-color: var(--color-border-default);
}
.label:hover,
.Label:hover {
  text-decoration: none;
}

.Label--large {
  padding-right: 10px;
  padding-left: 10px;
  line-height: 22px;
}

.Label--inline {
  display: inline;
  padding: 0.1667em 0.5em;
  font-size: 0.9em;
}

.Label--primary {
  color: var(--color-fg-default);
  border-color: var(--color-neutral-emphasis);
}

.Label--secondary {
  color: var(--color-fg-muted);
  border-color: var(--color-border-default);
}

.Label--info {
  color: var(--color-accent-fg);
  border-color: var(--color-accent-emphasis);
}

.Label--success {
  color: var(--color-success-fg);
  border-color: var(--color-success-emphasis);
}

.Label--warning {
  color: var(--color-attention-fg);
  border-color: var(--color-attention-emphasis);
}

.Label--danger {
  color: var(--color-danger-fg);
  border-color: var(--color-danger-emphasis);
}

.state,
.State {
  display: inline-block;
  padding: 5px 12px;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  text-align: center;
  white-space: nowrap;
  border-radius: 2em;
}

.state,
.State,
.State--draft {
  color: var(--color-fg-on-emphasis);
  background-color: var(--color-neutral-emphasis);
  border: 1px solid transparent;
}

.State--open {
  color: var(--color-fg-on-emphasis);
  background-color: var(--color-success-emphasis);
}

.State--merged {
  color: var(--color-fg-on-emphasis);
  background-color: var(--color-done-emphasis);
}

.State--closed {
  color: var(--color-fg-on-emphasis);
  background-color: var(--color-danger-emphasis);
}

.State--small {
  padding: 0 10px;
  font-size: 12px;
  line-height: 24px;
}
.State--small .octicon {
  width: 1em;
}

.Counter {
  display: inline-block;
  min-width: 20px;
  padding: 0 6px;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  color: var(--color-fg-default);
  text-align: center;
  background-color: var(--color-neutral-muted);
  border: 1px solid transparent;
  border-radius: 2em;
}
.Counter:empty {
  display: none;
}
.Counter .octicon {
  vertical-align: text-top;
  opacity: 0.8;
}

.Counter--primary {
  color: var(--color-fg-on-emphasis);
  background-color: var(--color-neutral-emphasis);
}

.Counter--secondary {
  color: var(--color-fg-muted);
  background-color: var(--color-neutral-subtle);
}

.diffstat {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-fg-muted);
  white-space: nowrap;
  cursor: default;
}

.diffstat-block-deleted,
.diffstat-block-added,
.diffstat-block-neutral {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: 1px;
  outline-offset: -1px;
}

.diffstat-block-deleted {
  background-color: var(--color-danger-emphasis);
  outline: 1px solid var(--color-border-subtle);
}

.diffstat-block-added {
  background-color: var(--color-diffstat-addition-bg);
  outline: 1px solid var(--color-border-subtle);
}

.diffstat-block-neutral {
  background-color: var(--color-neutral-muted);
  outline: 1px solid var(--color-border-subtle);
}

.AnimatedEllipsis {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}
.AnimatedEllipsis::after {
  display: inline-block;
  content: "...";
  animation: AnimatedEllipsis-keyframes 1.2s steps(4, jump-none) infinite;
}
@keyframes AnimatedEllipsis-keyframes {
  0% {
    transform: translateX(-100%);
  }
}

.markdown-body {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  word-wrap: break-word;
}
.markdown-body kbd {
  display: inline-block;
  padding: 3px 5px;
  font: 11px ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, Liberation Mono, monospace;
  line-height: 10px;
  color: var(--color-fg-default);
  vertical-align: middle;
  background-color: var(--color-canvas-subtle);
  border: solid 1px var(--color-neutral-muted);
  border-bottom-color: var(--color-neutral-muted);
  border-radius: 6px;
  box-shadow: inset 0 -1px 0 var(--color-neutral-muted);
}
.markdown-body::before {
  display: table;
  content: "";
}
.markdown-body::after {
  display: table;
  clear: both;
  content: "";
}
.markdown-body > *:first-child {
  margin-top: 0 !important;
}
.markdown-body > *:last-child {
  margin-bottom: 0 !important;
}
.markdown-body a:not([href]) {
  color: inherit;
  text-decoration: none;
}
.markdown-body .absent {
  color: var(--color-danger-fg);
}
.markdown-body .anchor {
  float: left;
  padding-right: 4px;
  margin-left: -20px;
  line-height: 1;
}
.markdown-body .anchor:focus {
  outline: none;
}
.markdown-body p,
.markdown-body blockquote,
.markdown-body ul,
.markdown-body ol,
.markdown-body dl,
.markdown-body table,
.markdown-body pre,
.markdown-body details {
  margin-top: 0;
  margin-bottom: 16px;
}
.markdown-body hr {
  height: 0.25em;
  padding: 0;
  margin: 24px 0;
  background-color: var(--color-border-default);
  border: 0;
}
.markdown-body blockquote {
  padding: 0 1em;
  color: var(--color-fg-muted);
  border-left: 0.25em solid var(--color-border-default);
}
.markdown-body blockquote > :first-child {
  margin-top: 0;
}
.markdown-body blockquote > :last-child {
  margin-bottom: 0;
}

.markdown-body h1,
.markdown-body h2,
.markdown-body h3,
.markdown-body h4,
.markdown-body h5,
.markdown-body h6 {
  margin-top: 24px;
  margin-bottom: 16px;
  font-weight: 700;
  line-height: 1.25;
}
.markdown-body h1 .octicon-link,
.markdown-body h2 .octicon-link,
.markdown-body h3 .octicon-link,
.markdown-body h4 .octicon-link,
.markdown-body h5 .octicon-link,
.markdown-body h6 .octicon-link {
  color: var(--color-fg-default);
  vertical-align: middle;
  visibility: hidden;
}
.markdown-body h1:hover .anchor,
.markdown-body h2:hover .anchor,
.markdown-body h3:hover .anchor,
.markdown-body h4:hover .anchor,
.markdown-body h5:hover .anchor,
.markdown-body h6:hover .anchor {
  text-decoration: none;
}
.markdown-body h1:hover .anchor .octicon-link,
.markdown-body h2:hover .anchor .octicon-link,
.markdown-body h3:hover .anchor .octicon-link,
.markdown-body h4:hover .anchor .octicon-link,
.markdown-body h5:hover .anchor .octicon-link,
.markdown-body h6:hover .anchor .octicon-link {
  visibility: visible;
}
.markdown-body h1 tt,
.markdown-body h1 code,
.markdown-body h2 tt,
.markdown-body h2 code,
.markdown-body h3 tt,
.markdown-body h3 code,
.markdown-body h4 tt,
.markdown-body h4 code,
.markdown-body h5 tt,
.markdown-body h5 code,
.markdown-body h6 tt,
.markdown-body h6 code {
  padding: 0 0.2em;
  font-size: inherit;
}
.markdown-body h1 {
  padding-bottom: 0.3em;
  font-size: 2em;
  border-bottom: 1px solid var(--color-border-muted);
}
.markdown-body h2 {
  padding-bottom: 0.3em;
  font-size: 1.5em;
  border-bottom: 1px solid var(--color-border-muted);
}
.markdown-body h3 {
  font-size: 1.25em;
}
.markdown-body h4 {
  font-size: 1em;
}
.markdown-body h5 {
  font-size: 0.875em;
}
.markdown-body h6 {
  font-size: 0.85em;
  color: var(--color-fg-muted);
}

.markdown-body ul,
.markdown-body ol {
  padding-left: 2em;
}
.markdown-body ul.no-list,
.markdown-body ol.no-list {
  padding: 0;
  list-style-type: none;
}
.markdown-body ol[type="1"] {
  list-style-type: decimal;
}
.markdown-body ol[type=a] {
  list-style-type: lower-alpha;
}
.markdown-body ol[type=i] {
  list-style-type: lower-roman;
}
.markdown-body div > ol:not([type]) {
  list-style-type: decimal;
}
.markdown-body ul ul,
.markdown-body ul ol,
.markdown-body ol ol,
.markdown-body ol ul {
  margin-top: 0;
  margin-bottom: 0;
}
.markdown-body li > p {
  margin-top: 16px;
}
.markdown-body li + li {
  margin-top: 0.25em;
}
.markdown-body dl {
  padding: 0;
}
.markdown-body dl dt {
  padding: 0;
  margin-top: 16px;
  font-size: 1em;
  font-style: italic;
  font-weight: 700;
}
.markdown-body dl dd {
  padding: 0 16px;
  margin-bottom: 16px;
}

.markdown-body table {
  display: block;
  width: 100%;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  overflow: auto;
}
.markdown-body table th {
  font-weight: 700;
}
.markdown-body table th,
.markdown-body table td {
  padding: 6px 13px;
  border: 1px solid var(--color-border-default);
}
.markdown-body table tr {
  background-color: var(--color-canvas-default);
  border-top: 1px solid var(--color-border-muted);
}
.markdown-body table tr:nth-child(2n) {
  background-color: var(--color-canvas-subtle);
}
.markdown-body table img {
  background-color: transparent;
}

.markdown-body img {
  max-width: 100%;
  box-sizing: content-box;
  background-color: var(--color-canvas-default);
}
.markdown-body img[align=right] {
  padding-left: 20px;
}
.markdown-body img[align=left] {
  padding-right: 20px;
}
.markdown-body .emoji {
  max-width: none;
  vertical-align: text-top;
  background-color: transparent;
}
.markdown-body span.frame {
  display: block;
  overflow: hidden;
}
.markdown-body span.frame > span {
  display: block;
  float: left;
  width: auto;
  padding: 7px;
  margin: 13px 0 0;
  overflow: hidden;
  border: 1px solid var(--color-border-default);
}
.markdown-body span.frame span img {
  display: block;
  float: left;
}
.markdown-body span.frame span span {
  display: block;
  padding: 5px 0 0;
  clear: both;
  color: var(--color-fg-default);
}
.markdown-body span.align-center {
  display: block;
  overflow: hidden;
  clear: both;
}
.markdown-body span.align-center > span {
  display: block;
  margin: 13px auto 0;
  overflow: hidden;
  text-align: center;
}
.markdown-body span.align-center span img {
  margin: 0 auto;
  text-align: center;
}
.markdown-body span.align-right {
  display: block;
  overflow: hidden;
  clear: both;
}
.markdown-body span.align-right > span {
  display: block;
  margin: 13px 0 0;
  overflow: hidden;
  text-align: right;
}
.markdown-body span.align-right span img {
  margin: 0;
  text-align: right;
}
.markdown-body span.float-left {
  display: block;
  float: left;
  margin-right: 13px;
  overflow: hidden;
}
.markdown-body span.float-left span {
  margin: 13px 0 0;
}
.markdown-body span.float-right {
  display: block;
  float: right;
  margin-left: 13px;
  overflow: hidden;
}
.markdown-body span.float-right > span {
  display: block;
  margin: 13px auto 0;
  overflow: hidden;
  text-align: right;
}

.markdown-body code,
.markdown-body tt {
  padding: 0.2em 0.4em;
  margin: 0;
  font-size: 85%;
  background-color: var(--color-neutral-muted);
  border-radius: 6px;
}
.markdown-body code br,
.markdown-body tt br {
  display: none;
}
.markdown-body del code {
  text-decoration: inherit;
}
.markdown-body pre {
  word-wrap: normal;
}
.markdown-body pre code {
  font-size: 100%;
}
.markdown-body pre > code {
  padding: 0;
  margin: 0;
  word-break: normal;
  white-space: pre;
  background: transparent;
  border: 0;
}
.markdown-body .highlight {
  margin-bottom: 16px;
}
.markdown-body .highlight pre {
  margin-bottom: 0;
  word-break: normal;
}
.markdown-body .highlight pre,
.markdown-body pre {
  padding: 16px;
  overflow: auto;
  font-size: 85%;
  line-height: 1.45;
  background-color: var(--color-canvas-subtle);
  border-radius: 6px;
}
.markdown-body pre code,
.markdown-body pre tt {
  display: inline;
  max-width: auto;
  padding: 0;
  margin: 0;
  overflow: visible;
  line-height: inherit;
  word-wrap: normal;
  background-color: transparent;
  border: 0;
}

.markdown-body .csv-data td,
.markdown-body .csv-data th {
  padding: 5px;
  overflow: hidden;
  font-size: 12px;
  line-height: 1;
  text-align: left;
  white-space: nowrap;
}
.markdown-body .csv-data .blob-num {
  padding: 10px 8px 9px;
  text-align: right;
  background: var(--color-canvas-default);
  border: 0;
}
.markdown-body .csv-data tr {
  border-top: 0;
}
.markdown-body .csv-data th {
  font-weight: 700;
  background: var(--color-canvas-subtle);
  border-top: 0;
}

.Popover {
  position: absolute;
  z-index: 100;
}

.Popover-message {
  position: relative;
  width: 232px;
  margin-right: auto;
  margin-left: auto;
}
.Popover-message::before, .Popover-message::after {
  position: absolute;
  left: 50%;
  display: inline-block;
  content: "";
}
.Popover-message::before {
  top: -16px;
  margin-left: -9px;
  border: 8px solid transparent;
  border-bottom-color: var(--color-border-default);
}
.Popover-message::after {
  top: -14px;
  margin-left: -8px;
  border: 7px solid transparent;
  border-bottom-color: var(--color-canvas-overlay);
}
.Popover-message.Box {
  background-color: var(--color-canvas-overlay);
}

.Popover-message--bottom::before, .Popover-message--bottom::after,
.Popover-message--bottom-right::before,
.Popover-message--bottom-right::after,
.Popover-message--bottom-left::before,
.Popover-message--bottom-left::after {
  top: auto;
  border-bottom-color: transparent;
}
.Popover-message--bottom::before,
.Popover-message--bottom-right::before,
.Popover-message--bottom-left::before {
  bottom: -16px;
  border-top-color: var(--color-border-default);
}
.Popover-message--bottom::after,
.Popover-message--bottom-right::after,
.Popover-message--bottom-left::after {
  bottom: -14px;
  border-top-color: var(--color-canvas-overlay);
}

.Popover-message--top-right,
.Popover-message--bottom-right {
  right: -9px;
  margin-right: 0;
}
.Popover-message--top-right::before, .Popover-message--top-right::after,
.Popover-message--bottom-right::before,
.Popover-message--bottom-right::after {
  left: auto;
  margin-left: 0;
}
.Popover-message--top-right::before,
.Popover-message--bottom-right::before {
  right: 20px;
}
.Popover-message--top-right::after,
.Popover-message--bottom-right::after {
  right: 21px;
}

.Popover-message--top-left,
.Popover-message--bottom-left {
  left: -9px;
  margin-left: 0;
}
.Popover-message--top-left::before, .Popover-message--top-left::after,
.Popover-message--bottom-left::before,
.Popover-message--bottom-left::after {
  left: 24px;
  margin-left: 0;
}
.Popover-message--top-left::after,
.Popover-message--bottom-left::after {
  left: 25px;
}

.Popover-message--right::before, .Popover-message--right::after,
.Popover-message--right-top::before,
.Popover-message--right-top::after,
.Popover-message--right-bottom::before,
.Popover-message--right-bottom::after,
.Popover-message--left::before,
.Popover-message--left::after,
.Popover-message--left-top::before,
.Popover-message--left-top::after,
.Popover-message--left-bottom::before,
.Popover-message--left-bottom::after {
  top: 50%;
  left: auto;
  margin-left: 0;
  border-bottom-color: transparent;
}
.Popover-message--right::before,
.Popover-message--right-top::before,
.Popover-message--right-bottom::before,
.Popover-message--left::before,
.Popover-message--left-top::before,
.Popover-message--left-bottom::before {
  margin-top: -9px;
}
.Popover-message--right::after,
.Popover-message--right-top::after,
.Popover-message--right-bottom::after,
.Popover-message--left::after,
.Popover-message--left-top::after,
.Popover-message--left-bottom::after {
  margin-top: -8px;
}

.Popover-message--right::before,
.Popover-message--right-top::before,
.Popover-message--right-bottom::before {
  right: -16px;
  border-left-color: var(--color-border-default);
}
.Popover-message--right::after,
.Popover-message--right-top::after,
.Popover-message--right-bottom::after {
  right: -14px;
  border-left-color: var(--color-canvas-overlay);
}

.Popover-message--left::before,
.Popover-message--left-top::before,
.Popover-message--left-bottom::before {
  left: -16px;
  border-right-color: var(--color-border-default);
}
.Popover-message--left::after,
.Popover-message--left-top::after,
.Popover-message--left-bottom::after {
  left: -14px;
  border-right-color: var(--color-canvas-overlay);
}

.Popover-message--right-top::before, .Popover-message--right-top::after,
.Popover-message--left-top::before,
.Popover-message--left-top::after {
  top: 24px;
}

.Popover-message--right-bottom::before, .Popover-message--right-bottom::after,
.Popover-message--left-bottom::before,
.Popover-message--left-bottom::after {
  top: auto;
}
.Popover-message--right-bottom::before,
.Popover-message--left-bottom::before {
  bottom: 16px;
}
.Popover-message--right-bottom::after,
.Popover-message--left-bottom::after {
  bottom: 17px;
}

@media (min-width: 544px) {
  .Popover-message--large {
    min-width: 320px;
  }
}

.Progress {
  display: flex;
  height: 8px;
  overflow: hidden;
  background-color: var(--color-neutral-muted);
  border-radius: 6px;
  outline: 1px solid transparent;
}

.Progress--large {
  height: 10px;
}

.Progress--small {
  height: 5px;
}

.Progress-item {
  outline: 2px solid transparent;
}

.Progress-item + .Progress-item {
  margin-left: 2px;
}

.SelectMenu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99;
  display: flex;
  padding: 16px;
  pointer-events: none;
  flex-direction: column;
}
@media (min-width: 544px) {
  .SelectMenu {
    position: absolute;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    padding: 0;
  }
}

.SelectMenu::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  content: "";
  background-color: var(--color-primer-canvas-backdrop);
}
@media (min-width: 544px) {
  .SelectMenu::before {
    display: none;
  }
}

.SelectMenu-modal {
  position: relative;
  z-index: 99;
  display: flex;
  max-height: 66%;
  margin: auto 0;
  overflow: hidden;
  pointer-events: auto;
  flex-direction: column;
  background-color: var(--color-canvas-overlay);
  border: 1px solid var(--color-select-menu-backdrop-border);
  border-radius: 12px;
  box-shadow: var(--color-shadow-large);
  animation: SelectMenu-modal-animation 0.12s cubic-bezier(0, 0.1, 0.1, 1) backwards;
}
@keyframes SelectMenu-modal-animation {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
}
@keyframes SelectMenu-modal-animation--sm {
  0% {
    opacity: 0;
    transform: translateY(-16px);
  }
}
@media (min-width: 544px) {
  .SelectMenu-modal {
    width: 300px;
    height: auto;
    max-height: 480px;
    margin: 8px 0 16px 0;
    font-size: 12px;
    border-color: var(--color-border-default);
    border-radius: 6px;
    box-shadow: var(--color-shadow-large);
    animation-name: SelectMenu-modal-animation--sm;
  }
}

.SelectMenu-header {
  display: flex;
  padding: 16px;
  flex: none;
  align-items: center;
  border-bottom: 1px solid var(--color-border-muted);
}
@media (min-width: 544px) {
  .SelectMenu-header {
    padding: 7px 7px 7px 16px;
  }
}

.SelectMenu-title {
  flex: 1;
  font-size: 14px;
  font-weight: 700;
}
@media (min-width: 544px) {
  .SelectMenu-title {
    font-size: inherit;
  }
}

.SelectMenu-closeButton {
  padding: 16px;
  margin: -16px;
  line-height: 1;
  color: var(--color-fg-muted);
  background-color: transparent;
  border: 0;
}
@media (min-width: 544px) {
  .SelectMenu-closeButton {
    padding: 8px;
    margin: -8px -7px;
  }
}

.SelectMenu-filter {
  padding: 16px;
  margin: 0;
  border-bottom: 1px solid var(--color-border-muted);
}
@media (min-width: 544px) {
  .SelectMenu-filter {
    padding: 8px;
  }
}

.SelectMenu-input {
  display: block;
  width: 100%;
}
@media (min-width: 544px) {
  .SelectMenu-input {
    font-size: 14px;
  }
}

.SelectMenu-list {
  position: relative;
  padding: 0;
  margin: 0;
  margin-bottom: -1px;
  flex: auto;
  overflow-x: hidden;
  overflow-y: auto;
  background-color: var(--color-canvas-overlay);
  -webkit-overflow-scrolling: touch;
}

.SelectMenu-item {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 16px;
  overflow: hidden;
  color: var(--color-fg-default);
  text-align: left;
  cursor: pointer;
  background-color: var(--color-canvas-overlay);
  border: 0;
  border-bottom: 1px solid var(--color-border-muted);
}
@media (min-width: 544px) {
  .SelectMenu-item {
    padding-top: 7px;
    padding-bottom: 7px;
  }
}
.SelectMenu-list--borderless .SelectMenu-item {
  border-bottom: 0;
}

.SelectMenu-icon {
  width: 16px;
  margin-right: 8px;
  flex-shrink: 0;
}

.SelectMenu-icon--check {
  visibility: hidden;
  transition: transform 0.12s cubic-bezier(0.5, 0.1, 1, 0.5), visibility 0s 0.12s linear;
  transform: scale(0);
}

.SelectMenu-tabs {
  display: flex;
  flex-shrink: 0;
  overflow-x: auto;
  overflow-y: hidden;
  box-shadow: inset 0 -1px 0 var(--color-border-muted);
  -webkit-overflow-scrolling: touch;
}
.SelectMenu-tabs::-webkit-scrollbar {
  display: none;
}
@media (min-width: 544px) {
  .SelectMenu-tabs {
    padding: 8px 8px 0 8px;
  }
}

.SelectMenu-tab {
  flex: 1;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 500;
  color: var(--color-fg-muted);
  text-align: center;
  background-color: transparent;
  border: 0;
  box-shadow: inset 0 -1px 0 var(--color-border-muted);
}
@media (min-width: 544px) {
  .SelectMenu-tab {
    flex: none;
    padding: 4px 16px;
    border: 1px solid transparent;
    border-bottom-width: 0;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
  }
}
.SelectMenu-tab[aria-selected=true] {
  z-index: 1;
  color: var(--color-fg-default);
  cursor: default;
  background-color: var(--color-canvas-overlay);
  box-shadow: 0 0 0 1px var(--color-border-muted);
}
@media (min-width: 544px) {
  .SelectMenu-tab[aria-selected=true] {
    border-color: var(--color-border-muted);
    box-shadow: none;
  }
}

.SelectMenu-message {
  padding: 7px 16px;
  text-align: center;
  background-color: var(--color-canvas-overlay);
  border-bottom: 1px solid var(--color-border-muted);
}

.SelectMenu-blankslate,
.SelectMenu-loading {
  padding: 24px 16px;
  text-align: center;
  background-color: var(--color-canvas-overlay);
}

.SelectMenu-divider {
  padding: 4px 16px;
  margin: 0;
  font-size: 12px;
  font-weight: 500;
  color: var(--color-fg-muted);
  background-color: var(--color-canvas-subtle);
  border-bottom: 1px solid var(--color-border-muted);
}
.SelectMenu-list--borderless .SelectMenu-divider {
  border-top: 1px solid var(--color-border-muted);
}
.SelectMenu-list--borderless .SelectMenu-divider:empty {
  padding: 0;
  border-top: 0;
}

.SelectMenu-footer {
  z-index: 0;
  padding: 8px 16px;
  font-size: 12px;
  color: var(--color-fg-muted);
  text-align: center;
  border-top: 1px solid var(--color-border-muted);
}
@media (min-width: 544px) {
  .SelectMenu-footer {
    padding: 7px 16px;
  }
}

.SelectMenu--hasFilter .SelectMenu-modal {
  height: 80%;
  max-height: none;
  margin-top: 0;
}
@media (min-width: 544px) {
  .SelectMenu--hasFilter .SelectMenu-modal {
    height: auto;
    max-height: 480px;
    margin-top: 8px;
  }
}

.SelectMenu-closeButton:focus,
.SelectMenu-tab:focus,
.SelectMenu-item:focus {
  outline: 0;
}

.SelectMenu-item:hover {
  text-decoration: none;
}

.SelectMenu-item[aria-checked=true] {
  font-weight: 500;
  color: var(--color-fg-default);
}
.SelectMenu-item[aria-checked=true] .SelectMenu-icon--check {
  visibility: visible;
  transition: transform 0.12s cubic-bezier(0, 0, 0.2, 1), visibility 0s linear;
  transform: scale(1);
}

.SelectMenu-item:disabled,
.SelectMenu-item[aria-disabled=true] {
  color: var(--color-fg-muted);
  pointer-events: none;
}

@media (hover: hover) {
  body:not(.intent-mouse) .SelectMenu-closeButton:focus,
.SelectMenu-closeButton:hover {
    color: var(--color-fg-default);
  }

  .SelectMenu-closeButton:active {
    color: var(--color-fg-muted);
  }

  body:not(.intent-mouse) .SelectMenu-item:focus,
.SelectMenu-item:hover {
    background-color: var(--color-neutral-subtle);
  }

  .SelectMenu-item:active {
    background-color: var(--color-canvas-subtle);
  }

  body:not(.intent-mouse) .SelectMenu-tab:focus {
    background-color: var(--color-select-menu-tap-focus-bg);
  }

  .SelectMenu-tab:hover {
    color: var(--color-fg-default);
  }

  .SelectMenu-tab:not([aria-selected=true]):active {
    color: var(--color-fg-default);
    background-color: var(--color-canvas-subtle);
  }
}
@media (hover: none) {
  .SelectMenu-item:focus,
.SelectMenu-item:active {
    background-color: var(--color-canvas-subtle);
  }

  .SelectMenu-item {
    -webkit-tap-highlight-color: var(--color-select-menu-tap-highlight);
  }
}
.Subhead {
  display: flex;
  padding-bottom: 8px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--color-border-muted);
  flex-flow: row wrap;
}

.Subhead--spacious {
  margin-top: 40px;
}

.Subhead-heading {
  font-size: 18px;
  font-weight: 400;
  flex: 1 1 auto;
}

.Subhead-heading--danger {
  font-weight: 700;
  color: var(--color-danger-fg);
}

.Subhead-description {
  font-size: 14px;
  color: var(--color-fg-muted);
  flex: 1 100%;
}

.Subhead-actions {
  align-self: center;
  justify-content: flex-end;
}

.TimelineItem {
  position: relative;
  display: flex;
  padding: 16px 0;
  margin-left: 16px;
}
.TimelineItem::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 2px;
  content: "";
  background-color: var(--color-border-muted);
}
.TimelineItem:target .TimelineItem-badge {
  border-color: var(--color-accent-emphasis);
  box-shadow: 0 0 0.2em var(--color-accent-muted);
}

.TimelineItem-badge {
  position: relative;
  z-index: 1;
  display: flex;
  width: 32px;
  height: 32px;
  margin-right: 8px;
  margin-left: -15px;
  color: var(--color-fg-muted);
  align-items: center;
  background-color: var(--color-timeline-badge-bg);
  border: 2px solid var(--color-canvas-default);
  border-radius: 50%;
  justify-content: center;
  flex-shrink: 0;
}
.TimelineItem-badge--success {
  color: var(--color-fg-on-emphasis);
  background-color: var(--color-success-emphasis);
  border: 1px solid transparent;
}

.TimelineItem-body {
  min-width: 0;
  max-width: 100%;
  margin-top: 4px;
  color: var(--color-fg-muted);
  flex: auto;
}

.TimelineItem-avatar {
  position: absolute;
  left: -72px;
  z-index: 1;
}

.TimelineItem-break {
  position: relative;
  z-index: 1;
  height: 24px;
  margin: 0;
  margin-bottom: -16px;
  margin-left: -56px;
  background-color: var(--color-canvas-default);
  border: 0;
  border-top: 4px solid var(--color-border-default);
}

.TimelineItem--condensed {
  padding-top: 4px;
  padding-bottom: 0;
}
.TimelineItem--condensed:last-child {
  padding-bottom: 16px;
}
.TimelineItem--condensed .TimelineItem-badge {
  height: 16px;
  margin-top: 8px;
  margin-bottom: 8px;
  color: var(--color-fg-muted);
  background-color: var(--color-canvas-default);
  border: 0;
}

.Toast {
  display: flex;
  margin: 8px;
  color: var(--color-fg-default);
  background-color: var(--color-canvas-default);
  border-radius: 6px;
  box-shadow: inset 0 0 0 1px var(--color-border-default), var(--color-shadow-large);
}
@media (min-width: 544px) {
  .Toast {
    width: -moz-max-content;
    width: max-content;
    max-width: 450px;
    margin: 16px;
  }
}

.Toast-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  flex-shrink: 0;
  color: var(--color-fg-on-emphasis);
  background-color: var(--color-accent-emphasis);
  border: 1px solid transparent;
  border-right: 0;
  border-top-left-radius: inherit;
  border-bottom-left-radius: inherit;
}

.Toast-content {
  padding: 16px;
}

.Toast-dismissButton {
  max-height: 54px;
  padding: 16px;
  color: inherit;
  background-color: transparent;
  border: 0;
}
.Toast-dismissButton:focus, .Toast-dismissButton:hover {
  outline: none;
  opacity: 0.7;
}
.Toast-dismissButton:active {
  opacity: 0.5;
}

.Toast--loading {
  color: var(--color-fg-default);
  box-shadow: inset 0 0 0 1px var(--color-border-default), var(--color-shadow-large);
}
.Toast--loading .Toast-icon {
  color: var(--color-fg-on-emphasis);
  background-color: var(--color-neutral-emphasis);
}

.Toast--error {
  color: var(--color-fg-default);
  box-shadow: inset 0 0 0 1px var(--color-border-default), var(--color-shadow-large);
}
.Toast--error .Toast-icon {
  color: var(--color-fg-on-emphasis);
  background-color: var(--color-danger-emphasis);
}

.Toast--warning {
  color: var(--color-fg-default);
  box-shadow: inset 0 0 0 1px var(--color-border-default), var(--color-shadow-large);
}
.Toast--warning .Toast-icon {
  color: var(--color-fg-default);
  background-color: var(--color-attention-emphasis);
}

.Toast--success {
  color: var(--color-fg-default);
  box-shadow: inset 0 0 0 1px var(--color-border-default), var(--color-shadow-large);
}
.Toast--success .Toast-icon {
  color: var(--color-fg-on-emphasis);
  background-color: var(--color-success-emphasis);
}

.Toast--animateIn {
  animation: Toast--animateIn 0.18s cubic-bezier(0.22, 0.61, 0.36, 1) backwards;
}

@keyframes Toast--animateIn {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
}
.Toast--animateOut {
  animation: Toast--animateOut 0.18s cubic-bezier(0.55, 0.06, 0.68, 0.19) forwards;
}

@keyframes Toast--animateOut {
  100% {
    pointer-events: none;
    opacity: 0;
    transform: translateY(100%);
  }
}
.Toast--spinner {
  animation: Toast--spinner 1000ms linear infinite;
}

@keyframes Toast--spinner {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/*!
 * @primer/css/marketing
 * http://primer.style/css
 *
 * Released under MIT license. Copyright (c) 2019 GitHub Inc.
 */
.h0-mktg,
.h1-mktg,
.h2-mktg,
.h3-mktg,
.h4-mktg,
.h5-mktg,
.h6-mktg {
  font-family: "Inter", sans-serif;
  font-feature-settings: "ss02" on, "ss01" on;
  font-weight: 700 !important;
  letter-spacing: -0.01em !important;
}

.h0-mktg {
  font-size: 48px !important;
  line-height: 52px !important;
  font-weight: 800 !important;
}
@media (min-width: 768px) {
  .h0-mktg {
    font-size: 72px !important;
    line-height: 76px !important;
  }
}
@media (min-width: 1012px) {
  .h0-mktg {
    font-size: 96px !important;
    line-height: 100px !important;
  }
}

.h1-mktg {
  font-size: 40px !important;
  line-height: 44px !important;
  font-weight: 800 !important;
}
@media (min-width: 768px) {
  .h1-mktg {
    font-size: 56px !important;
    line-height: 60px !important;
    letter-spacing: -0.03em !important;
  }
}
@media (min-width: 1012px) {
  .h1-mktg {
    font-size: 72px !important;
    line-height: 76px !important;
  }
}

.h2-mktg {
  font-size: 32px !important;
  line-height: 36px !important;
  font-weight: 800 !important;
}
@media (min-width: 768px) {
  .h2-mktg {
    font-size: 48px !important;
    line-height: 52px !important;
    letter-spacing: -0.03em !important;
  }
}
@media (min-width: 1012px) {
  .h2-mktg {
    font-size: 64px !important;
    line-height: 68px !important;
  }
}

.h3-mktg {
  font-size: 28px !important;
  line-height: 32px !important;
  font-weight: 800 !important;
}
@media (min-width: 768px) {
  .h3-mktg {
    font-size: 40px !important;
    line-height: 44px !important;
  }
}
@media (min-width: 1012px) {
  .h3-mktg {
    font-size: 48px !important;
    line-height: 52px !important;
    letter-spacing: -0.03em !important;
  }
}

.h4-mktg {
  font-size: 24px !important;
  line-height: 28px !important;
  font-weight: 800 !important;
}
@media (min-width: 768px) {
  .h4-mktg {
    font-size: 28px !important;
    line-height: 32px !important;
  }
}
@media (min-width: 1012px) {
  .h4-mktg {
    font-size: 32px !important;
    line-height: 36px !important;
  }
}

.h5-mktg {
  font-size: 20px !important;
  line-height: 24px !important;
}
@media (min-width: 768px) {
  .h5-mktg {
    font-size: 24px !important;
    line-height: 28px !important;
    font-weight: 800 !important;
  }
}

.h6-mktg {
  font-size: 16px !important;
  line-height: 20px !important;
}
@media (min-width: 768px) {
  .h6-mktg {
    font-size: 20px !important;
    line-height: 24px !important;
  }
}

.f0-mktg,
.f1-mktg,
.f2-mktg,
.f3-mktg,
.f4-mktg,
.f5-mktg,
.f6-mktg {
  font-family: "Inter", sans-serif;
  font-feature-settings: "ss02" on, "ss01" on;
  font-weight: 400;
}

.f0-mktg {
  font-size: 28px !important;
  line-height: 40px !important;
  letter-spacing: -0.01em !important;
  font-weight: 500;
}
@media (min-width: 768px) {
  .f0-mktg {
    font-size: 40px !important;
    line-height: 52px !important;
  }
}
@media (min-width: 1012px) {
  .f0-mktg {
    font-size: 48px !important;
    line-height: 64px !important;
  }
}

.f1-mktg {
  font-size: 24px !important;
  line-height: 32px !important;
  font-weight: 500;
}
@media (min-width: 768px) {
  .f1-mktg {
    font-size: 28px !important;
    line-height: 40px !important;
    letter-spacing: -0.01em !important;
  }
}
@media (min-width: 1012px) {
  .f1-mktg {
    font-size: 32px !important;
    line-height: 44px !important;
  }
}

.f2-mktg {
  font-size: 20px !important;
  line-height: 28px !important;
}
@media (min-width: 1012px) {
  .f2-mktg {
    font-size: 24px !important;
    line-height: 32px !important;
    font-weight: 450;
  }
}

.f3-mktg {
  font-size: 16px !important;
  line-height: 24px !important;
}
@media (min-width: 768px) {
  .f3-mktg {
    font-size: 20px !important;
    line-height: 28px !important;
  }
}

.f4-mktg {
  font-size: 16px !important;
  line-height: 24px !important;
}

.f5-mktg {
  font-size: 14px !important;
  line-height: 20px !important;
}

.f6-mktg {
  font-size: 12px !important;
  line-height: 20px !important;
}

.text-medium {
  font-weight: 450 !important;
}

.pullquote {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 8px;
  margin-bottom: 24px;
  font-family: ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, Liberation Mono, monospace;
  font-size: 16px;
  line-height: 1.4;
  color: var(--color-color-text-secondary);
  border-left: 3px solid var(--color-border-primary);
}
@media (min-width: 768px) {
  .pullquote {
    padding-left: 12px;
    margin-bottom: 32px;
    margin-left: -15px;
    font-size: 18px;
    line-height: 1.5;
  }
}

.btn-mktg {
  position: relative;
  z-index: 1;
  display: inline-block;
  -webkit-appearance: none !important;
     -moz-appearance: none !important;
          appearance: none !important;
  padding: 0.9rem 1.5rem 1.1rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border: 0;
  border-radius: 0.375rem;
  color: var(--color-mktg-btn-text);
  background-color: var(--color-mktg-btn-bg-bottom);
  background-image: linear-gradient(-180deg, var(--color-mktg-btn-bg-top) 0%, var(--color-mktg-btn-bg-bottom) 100%);
}
.btn-mktg::before {
  background-image: linear-gradient(-180deg, var(--color-mktg-btn-bg-overlay-top) 0%, var(--color-mktg-btn-bg-overlay-bottom) 100%);
}
.btn-mktg:hover, .btn-mktg.hover, .btn-mktg:active, .btn-mktg.selected, .btn-mktg[aria-selected=true], [open] > .btn-mktg {
  background-color: var(--color-mktg-btn-bg-bottom);
  background-image: linear-gradient(-180deg, var(--color-mktg-btn-bg-top) 0%, var(--color-mktg-btn-bg-bottom) 100%);
}
.btn-mktg:focus, .btn-mktg.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2em rgba(var(--color-mktg-btn-bg-bottom), 0.4);
}
.btn-mktg:disabled, .btn-mktg.disabled, .btn-mktg[aria-disabled=true] {
  pointer-events: none;
  cursor: default;
  opacity: 0.5;
}
.btn-mktg::before {
  background-blend-mode: overlay, normal;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  content: "";
  border-radius: 0.375rem;
  opacity: 0;
  transition: opacity 0.4s;
}
.btn-mktg:hover {
  text-decoration: none;
}
.btn-mktg:hover::before {
  opacity: 1;
  transition: opacity 0.4s;
}

.btn-primary-mktg {
  color: var(--color-mktg-btn-primary-text);
  background-color: var(--color-mktg-btn-primary-bg-bottom);
  background-image: linear-gradient(-180deg, var(--color-mktg-btn-primary-bg-top) 0%, var(--color-mktg-btn-primary-bg-bottom) 100%);
}
.btn-primary-mktg::before {
  background-image: linear-gradient(-180deg, var(--color-mktg-btn-primary-bg-overlay-top) 0%, var(--color-mktg-btn-primary-bg-overlay-bottom) 100%);
}
.btn-primary-mktg:hover, .btn-primary-mktg.hover, .btn-primary-mktg:active, .btn-primary-mktg.selected, .btn-primary-mktg[aria-selected=true], [open] > .btn-primary-mktg {
  background-color: var(--color-mktg-btn-primary-bg-bottom);
  background-image: linear-gradient(-180deg, var(--color-mktg-btn-primary-bg-top) 0%, var(--color-mktg-btn-primary-bg-bottom) 100%);
}
.btn-primary-mktg:focus, .btn-primary-mktg.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2em rgba(var(--color-mktg-btn-primary-bg-bottom), 0.4);
}
.btn-primary-mktg:disabled, .btn-primary-mktg.disabled, .btn-primary-mktg[aria-disabled=true] {
  pointer-events: none;
  cursor: default;
  opacity: 0.5;
}

.btn-enterprise-mktg {
  color: var(--color-mktg-btn-enterprise-text);
  background-color: var(--color-mktg-btn-enterprise-bg-bottom);
  background-image: linear-gradient(-180deg, var(--color-mktg-btn-enterprise-bg-top) 0%, var(--color-mktg-btn-enterprise-bg-bottom) 100%);
}
.btn-enterprise-mktg::before {
  background-image: linear-gradient(-180deg, var(--color-mktg-btn-enterprise-bg-overlay-top) 0%, var(--color-mktg-btn-enterprise-bg-overlay-bottom) 100%);
}
.btn-enterprise-mktg:hover, .btn-enterprise-mktg.hover, .btn-enterprise-mktg:active, .btn-enterprise-mktg.selected, .btn-enterprise-mktg[aria-selected=true], [open] > .btn-enterprise-mktg {
  background-color: var(--color-mktg-btn-enterprise-bg-bottom);
  background-image: linear-gradient(-180deg, var(--color-mktg-btn-enterprise-bg-top) 0%, var(--color-mktg-btn-enterprise-bg-bottom) 100%);
}
.btn-enterprise-mktg:focus, .btn-enterprise-mktg.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2em rgba(var(--color-mktg-btn-enterprise-bg-bottom), 0.4);
}
.btn-enterprise-mktg:disabled, .btn-enterprise-mktg.disabled, .btn-enterprise-mktg[aria-disabled=true] {
  pointer-events: none;
  cursor: default;
  opacity: 0.5;
}

.btn-outline-mktg {
  color: var(--color-mktg-btn-outline-text);
  background: none;
  box-shadow: 0 0 0 1px var(--color-mktg-btn-outline-border) inset;
  transition: box-shadow 0.4s, color 0.4s;
}
.btn-outline-mktg::before {
  display: none;
}
.btn-outline-mktg:hover, .btn-outline-mktg.hover, .btn-outline-mktg:active, .btn-outline-mktg.selected, .btn-outline-mktg[aria-selected=true], [open] > .btn-outline-mktg {
  color: var(--color-mktg-btn-outline-hover-text);
  background: none;
  box-shadow: 0 0 0 2px var(--color-mktg-btn-outline-hover-border) inset;
}
.btn-outline-mktg:focus, .btn-outline-mktg.focus {
  outline: 0;
  box-shadow: 0 0 0 2px var(--color-mktg-btn-outline-focus-border) inset, 0 0 0 4px var(--color-mktg-btn-outline-focus-border-inset);
}
.btn-outline-mktg:disabled, .btn-outline-mktg.disabled, .btn-outline-mktg[aria-disabled=true] {
  opacity: 0.5;
}

.btn-transparent {
  color: var(--color-mktg-btn-dark-text);
  background: none;
  box-shadow: 0 0 0 1px var(--color-mktg-btn-dark-border) inset;
  transition: box-shadow 0.4s, color 0.4s;
}
.btn-transparent::before {
  display: none;
}
.btn-transparent:hover, .btn-transparent.hover, .btn-transparent:active, .btn-transparent.selected, .btn-transparent[aria-selected=true], [open] > .btn-transparent {
  color: var(--color-mktg-btn-dark-hover-text);
  background: none;
  box-shadow: 0 0 0 2px var(--color-mktg-btn-dark-hover-border) inset;
}
.btn-transparent:focus, .btn-transparent.focus {
  outline: 0;
  box-shadow: 0 0 0 2px var(--color-mktg-btn-dark-focus-border) inset, 0 0 0 4px var(--color-mktg-btn-dark-focus-border-inset);
}
.btn-transparent:disabled, .btn-transparent.disabled, .btn-transparent[aria-disabled=true] {
  opacity: 0.5;
}

.btn-small-mktg {
  padding: 0.625rem 1rem 0.8125rem;
}

.btn-large-mktg {
  padding: 20px 30px 23px !important;
}

.hover-grow-mktg {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.hover-grow-mktg:hover {
  transform: scale3d(1.025, 1.025, 1.025);
}

.grayscale {
  filter: grayscale(100%);
}

.top-1 {
  top: 4px !important;
}

.right-1 {
  right: 4px !important;
}

.bottom-1 {
  bottom: 4px !important;
}

.left-1 {
  left: 4px !important;
}

.top-n1 {
  top: -4px !important;
}

.right-n1 {
  right: -4px !important;
}

.bottom-n1 {
  bottom: -4px !important;
}

.left-n1 {
  left: -4px !important;
}

.top-2 {
  top: 8px !important;
}

.right-2 {
  right: 8px !important;
}

.bottom-2 {
  bottom: 8px !important;
}

.left-2 {
  left: 8px !important;
}

.top-n2 {
  top: -8px !important;
}

.right-n2 {
  right: -8px !important;
}

.bottom-n2 {
  bottom: -8px !important;
}

.left-n2 {
  left: -8px !important;
}

.top-3 {
  top: 16px !important;
}

.right-3 {
  right: 16px !important;
}

.bottom-3 {
  bottom: 16px !important;
}

.left-3 {
  left: 16px !important;
}

.top-n3 {
  top: -16px !important;
}

.right-n3 {
  right: -16px !important;
}

.bottom-n3 {
  bottom: -16px !important;
}

.left-n3 {
  left: -16px !important;
}

.top-4 {
  top: 24px !important;
}

.right-4 {
  right: 24px !important;
}

.bottom-4 {
  bottom: 24px !important;
}

.left-4 {
  left: 24px !important;
}

.top-n4 {
  top: -24px !important;
}

.right-n4 {
  right: -24px !important;
}

.bottom-n4 {
  bottom: -24px !important;
}

.left-n4 {
  left: -24px !important;
}

.top-5 {
  top: 32px !important;
}

.right-5 {
  right: 32px !important;
}

.bottom-5 {
  bottom: 32px !important;
}

.left-5 {
  left: 32px !important;
}

.top-n5 {
  top: -32px !important;
}

.right-n5 {
  right: -32px !important;
}

.bottom-n5 {
  bottom: -32px !important;
}

.left-n5 {
  left: -32px !important;
}

.top-6 {
  top: 40px !important;
}

.right-6 {
  right: 40px !important;
}

.bottom-6 {
  bottom: 40px !important;
}

.left-6 {
  left: 40px !important;
}

.top-n6 {
  top: -40px !important;
}

.right-n6 {
  right: -40px !important;
}

.bottom-n6 {
  bottom: -40px !important;
}

.left-n6 {
  left: -40px !important;
}

.top-7 {
  top: 48px !important;
}

.right-7 {
  right: 48px !important;
}

.bottom-7 {
  bottom: 48px !important;
}

.left-7 {
  left: 48px !important;
}

.top-n7 {
  top: -48px !important;
}

.right-n7 {
  right: -48px !important;
}

.bottom-n7 {
  bottom: -48px !important;
}

.left-n7 {
  left: -48px !important;
}

.top-8 {
  top: 64px !important;
}

.right-8 {
  right: 64px !important;
}

.bottom-8 {
  bottom: 64px !important;
}

.left-8 {
  left: 64px !important;
}

.top-n8 {
  top: -64px !important;
}

.right-n8 {
  right: -64px !important;
}

.bottom-n8 {
  bottom: -64px !important;
}

.left-n8 {
  left: -64px !important;
}

.top-9 {
  top: 80px !important;
}

.right-9 {
  right: 80px !important;
}

.bottom-9 {
  bottom: 80px !important;
}

.left-9 {
  left: 80px !important;
}

.top-n9 {
  top: -80px !important;
}

.right-n9 {
  right: -80px !important;
}

.bottom-n9 {
  bottom: -80px !important;
}

.left-n9 {
  left: -80px !important;
}

.top-10 {
  top: 96px !important;
}

.right-10 {
  right: 96px !important;
}

.bottom-10 {
  bottom: 96px !important;
}

.left-10 {
  left: 96px !important;
}

.top-n10 {
  top: -96px !important;
}

.right-n10 {
  right: -96px !important;
}

.bottom-n10 {
  bottom: -96px !important;
}

.left-n10 {
  left: -96px !important;
}

.top-11 {
  top: 112px !important;
}

.right-11 {
  right: 112px !important;
}

.bottom-11 {
  bottom: 112px !important;
}

.left-11 {
  left: 112px !important;
}

.top-n11 {
  top: -112px !important;
}

.right-n11 {
  right: -112px !important;
}

.bottom-n11 {
  bottom: -112px !important;
}

.left-n11 {
  left: -112px !important;
}

.top-12 {
  top: 128px !important;
}

.right-12 {
  right: 128px !important;
}

.bottom-12 {
  bottom: 128px !important;
}

.left-12 {
  left: 128px !important;
}

.top-n12 {
  top: -128px !important;
}

.right-n12 {
  right: -128px !important;
}

.bottom-n12 {
  bottom: -128px !important;
}

.left-n12 {
  left: -128px !important;
}

@media (min-width: 768px) {
  .top-md-0 {
    top: 0 !important;
  }

  .right-md-0 {
    right: 0 !important;
  }

  .bottom-md-0 {
    bottom: 0 !important;
  }

  .left-md-0 {
    left: 0 !important;
  }

  .top-md-1 {
    top: 4px !important;
  }

  .right-md-1 {
    right: 4px !important;
  }

  .bottom-md-1 {
    bottom: 4px !important;
  }

  .left-md-1 {
    left: 4px !important;
  }

  .top-md-n1 {
    top: -4px !important;
  }

  .right-md-n1 {
    right: -4px !important;
  }

  .bottom-md-n1 {
    bottom: -4px !important;
  }

  .left-md-n1 {
    left: -4px !important;
  }

  .top-md-2 {
    top: 8px !important;
  }

  .right-md-2 {
    right: 8px !important;
  }

  .bottom-md-2 {
    bottom: 8px !important;
  }

  .left-md-2 {
    left: 8px !important;
  }

  .top-md-n2 {
    top: -8px !important;
  }

  .right-md-n2 {
    right: -8px !important;
  }

  .bottom-md-n2 {
    bottom: -8px !important;
  }

  .left-md-n2 {
    left: -8px !important;
  }

  .top-md-3 {
    top: 16px !important;
  }

  .right-md-3 {
    right: 16px !important;
  }

  .bottom-md-3 {
    bottom: 16px !important;
  }

  .left-md-3 {
    left: 16px !important;
  }

  .top-md-n3 {
    top: -16px !important;
  }

  .right-md-n3 {
    right: -16px !important;
  }

  .bottom-md-n3 {
    bottom: -16px !important;
  }

  .left-md-n3 {
    left: -16px !important;
  }

  .top-md-4 {
    top: 24px !important;
  }

  .right-md-4 {
    right: 24px !important;
  }

  .bottom-md-4 {
    bottom: 24px !important;
  }

  .left-md-4 {
    left: 24px !important;
  }

  .top-md-n4 {
    top: -24px !important;
  }

  .right-md-n4 {
    right: -24px !important;
  }

  .bottom-md-n4 {
    bottom: -24px !important;
  }

  .left-md-n4 {
    left: -24px !important;
  }

  .top-md-5 {
    top: 32px !important;
  }

  .right-md-5 {
    right: 32px !important;
  }

  .bottom-md-5 {
    bottom: 32px !important;
  }

  .left-md-5 {
    left: 32px !important;
  }

  .top-md-n5 {
    top: -32px !important;
  }

  .right-md-n5 {
    right: -32px !important;
  }

  .bottom-md-n5 {
    bottom: -32px !important;
  }

  .left-md-n5 {
    left: -32px !important;
  }

  .top-md-6 {
    top: 40px !important;
  }

  .right-md-6 {
    right: 40px !important;
  }

  .bottom-md-6 {
    bottom: 40px !important;
  }

  .left-md-6 {
    left: 40px !important;
  }

  .top-md-n6 {
    top: -40px !important;
  }

  .right-md-n6 {
    right: -40px !important;
  }

  .bottom-md-n6 {
    bottom: -40px !important;
  }

  .left-md-n6 {
    left: -40px !important;
  }

  .top-md-7 {
    top: 48px !important;
  }

  .right-md-7 {
    right: 48px !important;
  }

  .bottom-md-7 {
    bottom: 48px !important;
  }

  .left-md-7 {
    left: 48px !important;
  }

  .top-md-n7 {
    top: -48px !important;
  }

  .right-md-n7 {
    right: -48px !important;
  }

  .bottom-md-n7 {
    bottom: -48px !important;
  }

  .left-md-n7 {
    left: -48px !important;
  }

  .top-md-8 {
    top: 64px !important;
  }

  .right-md-8 {
    right: 64px !important;
  }

  .bottom-md-8 {
    bottom: 64px !important;
  }

  .left-md-8 {
    left: 64px !important;
  }

  .top-md-n8 {
    top: -64px !important;
  }

  .right-md-n8 {
    right: -64px !important;
  }

  .bottom-md-n8 {
    bottom: -64px !important;
  }

  .left-md-n8 {
    left: -64px !important;
  }

  .top-md-9 {
    top: 80px !important;
  }

  .right-md-9 {
    right: 80px !important;
  }

  .bottom-md-9 {
    bottom: 80px !important;
  }

  .left-md-9 {
    left: 80px !important;
  }

  .top-md-n9 {
    top: -80px !important;
  }

  .right-md-n9 {
    right: -80px !important;
  }

  .bottom-md-n9 {
    bottom: -80px !important;
  }

  .left-md-n9 {
    left: -80px !important;
  }

  .top-md-10 {
    top: 96px !important;
  }

  .right-md-10 {
    right: 96px !important;
  }

  .bottom-md-10 {
    bottom: 96px !important;
  }

  .left-md-10 {
    left: 96px !important;
  }

  .top-md-n10 {
    top: -96px !important;
  }

  .right-md-n10 {
    right: -96px !important;
  }

  .bottom-md-n10 {
    bottom: -96px !important;
  }

  .left-md-n10 {
    left: -96px !important;
  }

  .top-md-11 {
    top: 112px !important;
  }

  .right-md-11 {
    right: 112px !important;
  }

  .bottom-md-11 {
    bottom: 112px !important;
  }

  .left-md-11 {
    left: 112px !important;
  }

  .top-md-n11 {
    top: -112px !important;
  }

  .right-md-n11 {
    right: -112px !important;
  }

  .bottom-md-n11 {
    bottom: -112px !important;
  }

  .left-md-n11 {
    left: -112px !important;
  }

  .top-md-12 {
    top: 128px !important;
  }

  .right-md-12 {
    right: 128px !important;
  }

  .bottom-md-12 {
    bottom: 128px !important;
  }

  .left-md-12 {
    left: 128px !important;
  }

  .top-md-n12 {
    top: -128px !important;
  }

  .right-md-n12 {
    right: -128px !important;
  }

  .bottom-md-n12 {
    bottom: -128px !important;
  }

  .left-md-n12 {
    left: -128px !important;
  }
}
@media (min-width: 1012px) {
  .top-lg-0 {
    top: 0 !important;
  }

  .right-lg-0 {
    right: 0 !important;
  }

  .bottom-lg-0 {
    bottom: 0 !important;
  }

  .left-lg-0 {
    left: 0 !important;
  }

  .top-lg-1 {
    top: 4px !important;
  }

  .right-lg-1 {
    right: 4px !important;
  }

  .bottom-lg-1 {
    bottom: 4px !important;
  }

  .left-lg-1 {
    left: 4px !important;
  }

  .top-lg-n1 {
    top: -4px !important;
  }

  .right-lg-n1 {
    right: -4px !important;
  }

  .bottom-lg-n1 {
    bottom: -4px !important;
  }

  .left-lg-n1 {
    left: -4px !important;
  }

  .top-lg-2 {
    top: 8px !important;
  }

  .right-lg-2 {
    right: 8px !important;
  }

  .bottom-lg-2 {
    bottom: 8px !important;
  }

  .left-lg-2 {
    left: 8px !important;
  }

  .top-lg-n2 {
    top: -8px !important;
  }

  .right-lg-n2 {
    right: -8px !important;
  }

  .bottom-lg-n2 {
    bottom: -8px !important;
  }

  .left-lg-n2 {
    left: -8px !important;
  }

  .top-lg-3 {
    top: 16px !important;
  }

  .right-lg-3 {
    right: 16px !important;
  }

  .bottom-lg-3 {
    bottom: 16px !important;
  }

  .left-lg-3 {
    left: 16px !important;
  }

  .top-lg-n3 {
    top: -16px !important;
  }

  .right-lg-n3 {
    right: -16px !important;
  }

  .bottom-lg-n3 {
    bottom: -16px !important;
  }

  .left-lg-n3 {
    left: -16px !important;
  }

  .top-lg-4 {
    top: 24px !important;
  }

  .right-lg-4 {
    right: 24px !important;
  }

  .bottom-lg-4 {
    bottom: 24px !important;
  }

  .left-lg-4 {
    left: 24px !important;
  }

  .top-lg-n4 {
    top: -24px !important;
  }

  .right-lg-n4 {
    right: -24px !important;
  }

  .bottom-lg-n4 {
    bottom: -24px !important;
  }

  .left-lg-n4 {
    left: -24px !important;
  }

  .top-lg-5 {
    top: 32px !important;
  }

  .right-lg-5 {
    right: 32px !important;
  }

  .bottom-lg-5 {
    bottom: 32px !important;
  }

  .left-lg-5 {
    left: 32px !important;
  }

  .top-lg-n5 {
    top: -32px !important;
  }

  .right-lg-n5 {
    right: -32px !important;
  }

  .bottom-lg-n5 {
    bottom: -32px !important;
  }

  .left-lg-n5 {
    left: -32px !important;
  }

  .top-lg-6 {
    top: 40px !important;
  }

  .right-lg-6 {
    right: 40px !important;
  }

  .bottom-lg-6 {
    bottom: 40px !important;
  }

  .left-lg-6 {
    left: 40px !important;
  }

  .top-lg-n6 {
    top: -40px !important;
  }

  .right-lg-n6 {
    right: -40px !important;
  }

  .bottom-lg-n6 {
    bottom: -40px !important;
  }

  .left-lg-n6 {
    left: -40px !important;
  }

  .top-lg-7 {
    top: 48px !important;
  }

  .right-lg-7 {
    right: 48px !important;
  }

  .bottom-lg-7 {
    bottom: 48px !important;
  }

  .left-lg-7 {
    left: 48px !important;
  }

  .top-lg-n7 {
    top: -48px !important;
  }

  .right-lg-n7 {
    right: -48px !important;
  }

  .bottom-lg-n7 {
    bottom: -48px !important;
  }

  .left-lg-n7 {
    left: -48px !important;
  }

  .top-lg-8 {
    top: 64px !important;
  }

  .right-lg-8 {
    right: 64px !important;
  }

  .bottom-lg-8 {
    bottom: 64px !important;
  }

  .left-lg-8 {
    left: 64px !important;
  }

  .top-lg-n8 {
    top: -64px !important;
  }

  .right-lg-n8 {
    right: -64px !important;
  }

  .bottom-lg-n8 {
    bottom: -64px !important;
  }

  .left-lg-n8 {
    left: -64px !important;
  }

  .top-lg-9 {
    top: 80px !important;
  }

  .right-lg-9 {
    right: 80px !important;
  }

  .bottom-lg-9 {
    bottom: 80px !important;
  }

  .left-lg-9 {
    left: 80px !important;
  }

  .top-lg-n9 {
    top: -80px !important;
  }

  .right-lg-n9 {
    right: -80px !important;
  }

  .bottom-lg-n9 {
    bottom: -80px !important;
  }

  .left-lg-n9 {
    left: -80px !important;
  }

  .top-lg-10 {
    top: 96px !important;
  }

  .right-lg-10 {
    right: 96px !important;
  }

  .bottom-lg-10 {
    bottom: 96px !important;
  }

  .left-lg-10 {
    left: 96px !important;
  }

  .top-lg-n10 {
    top: -96px !important;
  }

  .right-lg-n10 {
    right: -96px !important;
  }

  .bottom-lg-n10 {
    bottom: -96px !important;
  }

  .left-lg-n10 {
    left: -96px !important;
  }

  .top-lg-11 {
    top: 112px !important;
  }

  .right-lg-11 {
    right: 112px !important;
  }

  .bottom-lg-11 {
    bottom: 112px !important;
  }

  .left-lg-11 {
    left: 112px !important;
  }

  .top-lg-n11 {
    top: -112px !important;
  }

  .right-lg-n11 {
    right: -112px !important;
  }

  .bottom-lg-n11 {
    bottom: -112px !important;
  }

  .left-lg-n11 {
    left: -112px !important;
  }

  .top-lg-12 {
    top: 128px !important;
  }

  .right-lg-12 {
    right: 128px !important;
  }

  .bottom-lg-12 {
    bottom: 128px !important;
  }

  .left-lg-12 {
    left: 128px !important;
  }

  .top-lg-n12 {
    top: -128px !important;
  }

  .right-lg-n12 {
    right: -128px !important;
  }

  .bottom-lg-n12 {
    bottom: -128px !important;
  }

  .left-lg-n12 {
    left: -128px !important;
  }
}
.offset-n1 {
  margin-left: -8.33333333%;
}

.offset-n2 {
  margin-left: -16.66666666%;
}

.offset-n3 {
  margin-left: -24.99999999%;
}

.offset-n4 {
  margin-left: -33.33333332%;
}

.offset-n5 {
  margin-left: -41.66666665%;
}

.offset-n6 {
  margin-left: -49.99999998%;
}

.offset-n7 {
  margin-left: -58.33333331%;
}

@media (min-width: 544px) {
  .offset-sm-n1 {
    margin-left: -8.33333333%;
  }

  .offset-sm-n2 {
    margin-left: -16.66666666%;
  }

  .offset-sm-n3 {
    margin-left: -24.99999999%;
  }

  .offset-sm-n4 {
    margin-left: -33.33333332%;
  }

  .offset-sm-n5 {
    margin-left: -41.66666665%;
  }

  .offset-sm-n6 {
    margin-left: -49.99999998%;
  }

  .offset-sm-n7 {
    margin-left: -58.33333331%;
  }
}
@media (min-width: 768px) {
  .offset-md-n1 {
    margin-left: -8.33333333%;
  }

  .offset-md-n2 {
    margin-left: -16.66666666%;
  }

  .offset-md-n3 {
    margin-left: -24.99999999%;
  }

  .offset-md-n4 {
    margin-left: -33.33333332%;
  }

  .offset-md-n5 {
    margin-left: -41.66666665%;
  }

  .offset-md-n6 {
    margin-left: -49.99999998%;
  }

  .offset-md-n7 {
    margin-left: -58.33333331%;
  }
}
@media (min-width: 1012px) {
  .offset-lg-n1 {
    margin-left: -8.33333333%;
  }

  .offset-lg-n2 {
    margin-left: -16.66666666%;
  }

  .offset-lg-n3 {
    margin-left: -24.99999999%;
  }

  .offset-lg-n4 {
    margin-left: -33.33333332%;
  }

  .offset-lg-n5 {
    margin-left: -41.66666665%;
  }

  .offset-lg-n6 {
    margin-left: -49.99999998%;
  }

  .offset-lg-n7 {
    margin-left: -58.33333331%;
  }
}
@media (min-width: 1280px) {
  .offset-xl-n1 {
    margin-left: -8.33333333%;
  }

  .offset-xl-n2 {
    margin-left: -16.66666666%;
  }

  .offset-xl-n3 {
    margin-left: -24.99999999%;
  }

  .offset-xl-n4 {
    margin-left: -33.33333332%;
  }

  .offset-xl-n5 {
    margin-left: -41.66666665%;
  }

  .offset-xl-n6 {
    margin-left: -49.99999998%;
  }

  .offset-xl-n7 {
    margin-left: -58.33333331%;
  }
}
.width-auto {
  width: auto !important;
}

.height-auto {
  height: auto !important;
}

.object-fit-cover {
  -o-object-fit: cover !important;
     object-fit: cover !important;
}

.z-1 {
  z-index: 1 !important;
}

.z-2 {
  z-index: 2 !important;
}

.z-3 {
  z-index: 3 !important;
}

.z-n1 {
  z-index: -1 !important;
}

.z-n2 {
  z-index: -2 !important;
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100;
  src: url(/fonts/Inter-UI-Thin-BETA.woff2?6ca93976f708d30a554726c667c5ad66) format("woff2"), url(/fonts/Inter-UI-Thin-BETA.woff?edb55c479b6f6124aca167b4de5798ac) format("woff");
}
@font-face {
  font-family: "Inter";
  font-style: italic;
  font-weight: 100;
  src: url(/fonts/Inter-UI-ThinItalic-BETA.woff2?8bc2290ff6cd03ba18166ab64b90217a) format("woff2"), url(/fonts/Inter-UI-ThinItalic-BETA.woff?295ed5a1d10ccb6bf06937c77afc01be) format("woff");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 200;
  src: url(/fonts/Inter-UI-ExtraLight-BETA.woff2?62b78a5355fcd79b1f09f77e3cb037d3) format("woff2"), url(/fonts/Inter-UI-ExtraLight-BETA.woff?b51a5a34c9bf35e508a8c068aa32fa8f) format("woff");
}
@font-face {
  font-family: "Inter";
  font-style: italic;
  font-weight: 200;
  src: url(/fonts/Inter-UI-ExtraLightItalic-BETA.woff2?8ff9d7964836fb8cb51f11a3e9c5b6a9) format("woff2"), url(/fonts/Inter-UI-ExtraLightItalic-BETA.woff?2711e846dc14a7cc5ee82c4c801c1bc5) format("woff");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 300;
  src: url(/fonts/Inter-UI-Light-BETA.woff2?65f38d7896276e02a4b5783e3795dfb8) format("woff2"), url(/fonts/Inter-UI-Light-BETA.woff?2ff1fba48e8f6baa552ba80c406417db) format("woff");
}
@font-face {
  font-family: "Inter";
  font-style: italic;
  font-weight: 300;
  src: url(/fonts/Inter-UI-LightItalic-BETA.woff2?7f7480c0f5ff47ce8a2f1386e5d6ac1d) format("woff2"), url(/fonts/Inter-UI-LightItalic-BETA.woff?d8f9c255a6ac6da7821d2d5b96593171) format("woff");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  src: url(/fonts/Inter-UI-Regular.woff2?c16da0733ec3485416662def78e180d4) format("woff2"), url(/fonts/Inter-UI-Regular.woff?8e212581045c5f466e44ac4746817edc) format("woff");
}
@font-face {
  font-family: "Inter";
  font-style: italic;
  font-weight: 400;
  src: url(/fonts/Inter-UI-Italic.woff2?d6209085d5c985f24cc6860c80cd1d84) format("woff2"), url(/fonts/Inter-UI-Italic.woff?f19471abaddc0a922f9e314f47f90589) format("woff");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  src: url(/fonts/Inter-UI-Medium.woff2?817ec446b782d00db10edc63093b809b) format("woff2"), url(/fonts/Inter-UI-Medium.woff?bc5220d272e4b281e4003cbd145e4251) format("woff");
}
@font-face {
  font-family: "Inter";
  font-style: italic;
  font-weight: 500;
  src: url(/fonts/Inter-UI-MediumItalic.woff2?66ad5409a2990414c17d5035ec480ad3) format("woff2"), url(/fonts/Inter-UI-MediumItalic.woff?5beb82d8f86456592ba4b82d84eb3741) format("woff");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  src: url(/fonts/Inter-UI-SemiBold.woff2?a8fd51d2892d5dc05ca2d0ac222a59f4) format("woff2"), url(/fonts/Inter-UI-SemiBold.woff?0be464de8932a322f2be5269a160c578) format("woff");
}
@font-face {
  font-family: "Inter";
  font-style: italic;
  font-weight: 600;
  src: url(/fonts/Inter-UI-SemiBoldItalic.woff2?25681b8fce88f54b5d1b42664928a21b) format("woff2"), url(/fonts/Inter-UI-SemiBoldItalic.woff?2488c4202d0bc70bd73d6dd7c448b6e9) format("woff");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  src: url(/fonts/Inter-UI-Bold.woff2?4c93833cd77f7f2ef1a14a85b5f2e0d8) format("woff2"), url(/fonts/Inter-UI-Bold.woff?d9ae3c477d9c49e9c63fb64910fa86d6) format("woff");
}
@font-face {
  font-family: "Inter";
  font-style: italic;
  font-weight: 700;
  src: url(/fonts/Inter-UI-BoldItalic.woff2?83366532e2d7c77d8512afde7e136181) format("woff2"), url(/fonts/Inter-UI-BoldItalic.woff?919884cf70b1adb52764888065248b7d) format("woff");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 800;
  src: url(/fonts/Inter-UI-ExtraBold.woff2?de0e325d35517ebb430a4b56924bb820) format("woff2"), url(/fonts/Inter-UI-ExtraBold.woff?c8f757eeedec07bd8fa5041e6a41d52c) format("woff");
}
@font-face {
  font-family: "Inter";
  font-style: italic;
  font-weight: 800;
  src: url(/fonts/Inter-UI-ExtraBoldItalic.woff2?44456f17de7ea23a384d9159534c2647) format("woff2"), url(/fonts/Inter-UI-ExtraBoldItalic.woff?79f3c9d847331842a8428e7ab6a9ac77) format("woff");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 900;
  src: url(/fonts/Inter-UI-Black.woff2?6594ce0f641d2bb9a99f1d8ce6dff62d) format("woff2"), url(/fonts/Inter-UI-Black.woff?4ea975512c0055a458c68afcd44455ee) format("woff");
}
@font-face {
  font-family: "Inter";
  font-style: italic;
  font-weight: 900;
  src: url(/fonts/Inter-UI-BlackItalic.woff2?34d5f7796f91fd83bc9f8e0e51317947) format("woff2"), url(/fonts/Inter-UI-BlackItalic.woff?e972b518043012c2f690657c010edc2a) format("woff");
}
/* --------------------------------------------------------------------------
Single variable font.

Note that you may want to do something like this to make sure you're serving
constant fonts to older browsers:
html {
  font-family: 'Inter', sans-serif;
}
@supports (font-variation-settings: normal) {
  html {
    font-family: 'Inter var', sans-serif;
  }
}

BUGS:
- Safari 12.0 will default to italic instead of regular when font-weight
  is provided in a @font-face declaration.
  Workaround: Use "Inter var alt" for Safari, or explicitly set
  `font-variation-settings:"slnt" DEGREE`.
*/
/* --------------------------------------------------------------------------

"Inter var alt" is recommended for Safari and Edge, for reliable italics.

@supports (font-variation-settings: normal) {
  html {
    font-family: 'Inter var alt', sans-serif;
  }
}

*/
/*!
 * Font Awesome Pro 5.15.2 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Commercial License)
 */
.fa,
.fas,
.far,
.fal,
.fad,
.fab {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

.fa-lg {
  font-size: 1.3333333333em;
  line-height: 0.75em;
  vertical-align: -0.0667em;
}

.fa-xs {
  font-size: 0.75em;
}

.fa-sm {
  font-size: 0.875em;
}

.fa-1x {
  font-size: 1em;
}

.fa-2x {
  font-size: 2em;
}

.fa-3x {
  font-size: 3em;
}

.fa-4x {
  font-size: 4em;
}

.fa-5x {
  font-size: 5em;
}

.fa-6x {
  font-size: 6em;
}

.fa-7x {
  font-size: 7em;
}

.fa-8x {
  font-size: 8em;
}

.fa-9x {
  font-size: 9em;
}

.fa-10x {
  font-size: 10em;
}

.fa-fw {
  text-align: center;
  width: 1.25em;
}

.fa-ul {
  list-style-type: none;
  margin-left: 2.5em;
  padding-left: 0;
}
.fa-ul > li {
  position: relative;
}

.fa-li {
  left: -2em;
  position: absolute;
  text-align: center;
  width: 2em;
  line-height: inherit;
}

.fa-border {
  border: solid 0.08em #eee;
  border-radius: 0.1em;
  padding: 0.2em 0.25em 0.15em;
}

.fa-pull-left {
  float: left;
}

.fa-pull-right {
  float: right;
}

.fa.fa-pull-left,
.fas.fa-pull-left,
.far.fa-pull-left,
.fal.fa-pull-left,
.fab.fa-pull-left {
  margin-right: 0.3em;
}
.fa.fa-pull-right,
.fas.fa-pull-right,
.far.fa-pull-right,
.fal.fa-pull-right,
.fab.fa-pull-right {
  margin-left: 0.3em;
}

.fa-spin {
  animation: fa-spin 2s infinite linear;
}

.fa-pulse {
  animation: fa-spin 1s infinite steps(8);
}

@keyframes fa-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  transform: rotate(90deg);
}

.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  transform: rotate(180deg);
}

.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  transform: rotate(270deg);
}

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  transform: scale(-1, 1);
}

.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  transform: scale(1, -1);
}

.fa-flip-both, .fa-flip-horizontal.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  transform: scale(-1, -1);
}

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical,
:root .fa-flip-both {
  filter: none;
}

.fa-stack {
  display: inline-block;
  height: 2em;
  line-height: 2em;
  position: relative;
  vertical-align: middle;
  width: 2.5em;
}

.fa-stack-1x,
.fa-stack-2x {
  left: 0;
  position: absolute;
  text-align: center;
  width: 100%;
}

.fa-stack-1x {
  line-height: inherit;
}

.fa-stack-2x {
  font-size: 2em;
}

.fa-inverse {
  color: #fff;
}

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
readers do not read off random characters that represent icons */
.fa-500px:before {
  content: "";
}

.fa-abacus:before {
  content: "";
}

.fa-accessible-icon:before {
  content: "";
}

.fa-accusoft:before {
  content: "";
}

.fa-acorn:before {
  content: "";
}

.fa-acquisitions-incorporated:before {
  content: "";
}

.fa-ad:before {
  content: "";
}

.fa-address-book:before {
  content: "";
}

.fa-address-card:before {
  content: "";
}

.fa-adjust:before {
  content: "";
}

.fa-adn:before {
  content: "";
}

.fa-adversal:before {
  content: "";
}

.fa-affiliatetheme:before {
  content: "";
}

.fa-air-conditioner:before {
  content: "";
}

.fa-air-freshener:before {
  content: "";
}

.fa-airbnb:before {
  content: "";
}

.fa-alarm-clock:before {
  content: "";
}

.fa-alarm-exclamation:before {
  content: "";
}

.fa-alarm-plus:before {
  content: "";
}

.fa-alarm-snooze:before {
  content: "";
}

.fa-album:before {
  content: "";
}

.fa-album-collection:before {
  content: "";
}

.fa-algolia:before {
  content: "";
}

.fa-alicorn:before {
  content: "";
}

.fa-alien:before {
  content: "";
}

.fa-alien-monster:before {
  content: "";
}

.fa-align-center:before {
  content: "";
}

.fa-align-justify:before {
  content: "";
}

.fa-align-left:before {
  content: "";
}

.fa-align-right:before {
  content: "";
}

.fa-align-slash:before {
  content: "";
}

.fa-alipay:before {
  content: "";
}

.fa-allergies:before {
  content: "";
}

.fa-amazon:before {
  content: "";
}

.fa-amazon-pay:before {
  content: "";
}

.fa-ambulance:before {
  content: "";
}

.fa-american-sign-language-interpreting:before {
  content: "";
}

.fa-amilia:before {
  content: "";
}

.fa-amp-guitar:before {
  content: "";
}

.fa-analytics:before {
  content: "";
}

.fa-anchor:before {
  content: "";
}

.fa-android:before {
  content: "";
}

.fa-angel:before {
  content: "";
}

.fa-angellist:before {
  content: "";
}

.fa-angle-double-down:before {
  content: "";
}

.fa-angle-double-left:before {
  content: "";
}

.fa-angle-double-right:before {
  content: "";
}

.fa-angle-double-up:before {
  content: "";
}

.fa-angle-down:before {
  content: "";
}

.fa-angle-left:before {
  content: "";
}

.fa-angle-right:before {
  content: "";
}

.fa-angle-up:before {
  content: "";
}

.fa-angry:before {
  content: "";
}

.fa-angrycreative:before {
  content: "";
}

.fa-angular:before {
  content: "";
}

.fa-ankh:before {
  content: "";
}

.fa-app-store:before {
  content: "";
}

.fa-app-store-ios:before {
  content: "";
}

.fa-apper:before {
  content: "";
}

.fa-apple:before {
  content: "";
}

.fa-apple-alt:before {
  content: "";
}

.fa-apple-crate:before {
  content: "";
}

.fa-apple-pay:before {
  content: "";
}

.fa-archive:before {
  content: "";
}

.fa-archway:before {
  content: "";
}

.fa-arrow-alt-circle-down:before {
  content: "";
}

.fa-arrow-alt-circle-left:before {
  content: "";
}

.fa-arrow-alt-circle-right:before {
  content: "";
}

.fa-arrow-alt-circle-up:before {
  content: "";
}

.fa-arrow-alt-down:before {
  content: "";
}

.fa-arrow-alt-from-bottom:before {
  content: "";
}

.fa-arrow-alt-from-left:before {
  content: "";
}

.fa-arrow-alt-from-right:before {
  content: "";
}

.fa-arrow-alt-from-top:before {
  content: "";
}

.fa-arrow-alt-left:before {
  content: "";
}

.fa-arrow-alt-right:before {
  content: "";
}

.fa-arrow-alt-square-down:before {
  content: "";
}

.fa-arrow-alt-square-left:before {
  content: "";
}

.fa-arrow-alt-square-right:before {
  content: "";
}

.fa-arrow-alt-square-up:before {
  content: "";
}

.fa-arrow-alt-to-bottom:before {
  content: "";
}

.fa-arrow-alt-to-left:before {
  content: "";
}

.fa-arrow-alt-to-right:before {
  content: "";
}

.fa-arrow-alt-to-top:before {
  content: "";
}

.fa-arrow-alt-up:before {
  content: "";
}

.fa-arrow-circle-down:before {
  content: "";
}

.fa-arrow-circle-left:before {
  content: "";
}

.fa-arrow-circle-right:before {
  content: "";
}

.fa-arrow-circle-up:before {
  content: "";
}

.fa-arrow-down:before {
  content: "";
}

.fa-arrow-from-bottom:before {
  content: "";
}

.fa-arrow-from-left:before {
  content: "";
}

.fa-arrow-from-right:before {
  content: "";
}

.fa-arrow-from-top:before {
  content: "";
}

.fa-arrow-left:before {
  content: "";
}

.fa-arrow-right:before {
  content: "";
}

.fa-arrow-square-down:before {
  content: "";
}

.fa-arrow-square-left:before {
  content: "";
}

.fa-arrow-square-right:before {
  content: "";
}

.fa-arrow-square-up:before {
  content: "";
}

.fa-arrow-to-bottom:before {
  content: "";
}

.fa-arrow-to-left:before {
  content: "";
}

.fa-arrow-to-right:before {
  content: "";
}

.fa-arrow-to-top:before {
  content: "";
}

.fa-arrow-up:before {
  content: "";
}

.fa-arrows:before {
  content: "";
}

.fa-arrows-alt:before {
  content: "";
}

.fa-arrows-alt-h:before {
  content: "";
}

.fa-arrows-alt-v:before {
  content: "";
}

.fa-arrows-h:before {
  content: "";
}

.fa-arrows-v:before {
  content: "";
}

.fa-artstation:before {
  content: "";
}

.fa-assistive-listening-systems:before {
  content: "";
}

.fa-asterisk:before {
  content: "";
}

.fa-asymmetrik:before {
  content: "";
}

.fa-at:before {
  content: "";
}

.fa-atlas:before {
  content: "";
}

.fa-atlassian:before {
  content: "";
}

.fa-atom:before {
  content: "";
}

.fa-atom-alt:before {
  content: "";
}

.fa-audible:before {
  content: "";
}

.fa-audio-description:before {
  content: "";
}

.fa-autoprefixer:before {
  content: "";
}

.fa-avianex:before {
  content: "";
}

.fa-aviato:before {
  content: "";
}

.fa-award:before {
  content: "";
}

.fa-aws:before {
  content: "";
}

.fa-axe:before {
  content: "";
}

.fa-axe-battle:before {
  content: "";
}

.fa-baby:before {
  content: "";
}

.fa-baby-carriage:before {
  content: "";
}

.fa-backpack:before {
  content: "";
}

.fa-backspace:before {
  content: "";
}

.fa-backward:before {
  content: "";
}

.fa-bacon:before {
  content: "";
}

.fa-bacteria:before {
  content: "";
}

.fa-bacterium:before {
  content: "";
}

.fa-badge:before {
  content: "";
}

.fa-badge-check:before {
  content: "";
}

.fa-badge-dollar:before {
  content: "";
}

.fa-badge-percent:before {
  content: "";
}

.fa-badge-sheriff:before {
  content: "";
}

.fa-badger-honey:before {
  content: "";
}

.fa-bags-shopping:before {
  content: "";
}

.fa-bahai:before {
  content: "";
}

.fa-balance-scale:before {
  content: "";
}

.fa-balance-scale-left:before {
  content: "";
}

.fa-balance-scale-right:before {
  content: "";
}

.fa-ball-pile:before {
  content: "";
}

.fa-ballot:before {
  content: "";
}

.fa-ballot-check:before {
  content: "";
}

.fa-ban:before {
  content: "";
}

.fa-band-aid:before {
  content: "";
}

.fa-bandcamp:before {
  content: "";
}

.fa-banjo:before {
  content: "";
}

.fa-barcode:before {
  content: "";
}

.fa-barcode-alt:before {
  content: "";
}

.fa-barcode-read:before {
  content: "";
}

.fa-barcode-scan:before {
  content: "";
}

.fa-bars:before {
  content: "";
}

.fa-baseball:before {
  content: "";
}

.fa-baseball-ball:before {
  content: "";
}

.fa-basketball-ball:before {
  content: "";
}

.fa-basketball-hoop:before {
  content: "";
}

.fa-bat:before {
  content: "";
}

.fa-bath:before {
  content: "";
}

.fa-battery-bolt:before {
  content: "";
}

.fa-battery-empty:before {
  content: "";
}

.fa-battery-full:before {
  content: "";
}

.fa-battery-half:before {
  content: "";
}

.fa-battery-quarter:before {
  content: "";
}

.fa-battery-slash:before {
  content: "";
}

.fa-battery-three-quarters:before {
  content: "";
}

.fa-battle-net:before {
  content: "";
}

.fa-bed:before {
  content: "";
}

.fa-bed-alt:before {
  content: "";
}

.fa-bed-bunk:before {
  content: "";
}

.fa-bed-empty:before {
  content: "";
}

.fa-beer:before {
  content: "";
}

.fa-behance:before {
  content: "";
}

.fa-behance-square:before {
  content: "";
}

.fa-bell:before {
  content: "";
}

.fa-bell-exclamation:before {
  content: "";
}

.fa-bell-on:before {
  content: "";
}

.fa-bell-plus:before {
  content: "";
}

.fa-bell-school:before {
  content: "";
}

.fa-bell-school-slash:before {
  content: "";
}

.fa-bell-slash:before {
  content: "";
}

.fa-bells:before {
  content: "";
}

.fa-betamax:before {
  content: "";
}

.fa-bezier-curve:before {
  content: "";
}

.fa-bible:before {
  content: "";
}

.fa-bicycle:before {
  content: "";
}

.fa-biking:before {
  content: "";
}

.fa-biking-mountain:before {
  content: "";
}

.fa-bimobject:before {
  content: "";
}

.fa-binoculars:before {
  content: "";
}

.fa-biohazard:before {
  content: "";
}

.fa-birthday-cake:before {
  content: "";
}

.fa-bitbucket:before {
  content: "";
}

.fa-bitcoin:before {
  content: "";
}

.fa-bity:before {
  content: "";
}

.fa-black-tie:before {
  content: "";
}

.fa-blackberry:before {
  content: "";
}

.fa-blanket:before {
  content: "";
}

.fa-blender:before {
  content: "";
}

.fa-blender-phone:before {
  content: "";
}

.fa-blind:before {
  content: "";
}

.fa-blinds:before {
  content: "";
}

.fa-blinds-open:before {
  content: "";
}

.fa-blinds-raised:before {
  content: "";
}

.fa-blog:before {
  content: "";
}

.fa-blogger:before {
  content: "";
}

.fa-blogger-b:before {
  content: "";
}

.fa-bluetooth:before {
  content: "";
}

.fa-bluetooth-b:before {
  content: "";
}

.fa-bold:before {
  content: "";
}

.fa-bolt:before {
  content: "";
}

.fa-bomb:before {
  content: "";
}

.fa-bone:before {
  content: "";
}

.fa-bone-break:before {
  content: "";
}

.fa-bong:before {
  content: "";
}

.fa-book:before {
  content: "";
}

.fa-book-alt:before {
  content: "";
}

.fa-book-dead:before {
  content: "";
}

.fa-book-heart:before {
  content: "";
}

.fa-book-medical:before {
  content: "";
}

.fa-book-open:before {
  content: "";
}

.fa-book-reader:before {
  content: "";
}

.fa-book-spells:before {
  content: "";
}

.fa-book-user:before {
  content: "";
}

.fa-bookmark:before {
  content: "";
}

.fa-books:before {
  content: "";
}

.fa-books-medical:before {
  content: "";
}

.fa-boombox:before {
  content: "";
}

.fa-boot:before {
  content: "";
}

.fa-booth-curtain:before {
  content: "";
}

.fa-bootstrap:before {
  content: "";
}

.fa-border-all:before {
  content: "";
}

.fa-border-bottom:before {
  content: "";
}

.fa-border-center-h:before {
  content: "";
}

.fa-border-center-v:before {
  content: "";
}

.fa-border-inner:before {
  content: "";
}

.fa-border-left:before {
  content: "";
}

.fa-border-none:before {
  content: "";
}

.fa-border-outer:before {
  content: "";
}

.fa-border-right:before {
  content: "";
}

.fa-border-style:before {
  content: "";
}

.fa-border-style-alt:before {
  content: "";
}

.fa-border-top:before {
  content: "";
}

.fa-bow-arrow:before {
  content: "";
}

.fa-bowling-ball:before {
  content: "";
}

.fa-bowling-pins:before {
  content: "";
}

.fa-box:before {
  content: "";
}

.fa-box-alt:before {
  content: "";
}

.fa-box-ballot:before {
  content: "";
}

.fa-box-check:before {
  content: "";
}

.fa-box-fragile:before {
  content: "";
}

.fa-box-full:before {
  content: "";
}

.fa-box-heart:before {
  content: "";
}

.fa-box-open:before {
  content: "";
}

.fa-box-tissue:before {
  content: "";
}

.fa-box-up:before {
  content: "";
}

.fa-box-usd:before {
  content: "";
}

.fa-boxes:before {
  content: "";
}

.fa-boxes-alt:before {
  content: "";
}

.fa-boxing-glove:before {
  content: "";
}

.fa-brackets:before {
  content: "";
}

.fa-brackets-curly:before {
  content: "";
}

.fa-braille:before {
  content: "";
}

.fa-brain:before {
  content: "";
}

.fa-bread-loaf:before {
  content: "";
}

.fa-bread-slice:before {
  content: "";
}

.fa-briefcase:before {
  content: "";
}

.fa-briefcase-medical:before {
  content: "";
}

.fa-bring-forward:before {
  content: "";
}

.fa-bring-front:before {
  content: "";
}

.fa-broadcast-tower:before {
  content: "";
}

.fa-broom:before {
  content: "";
}

.fa-browser:before {
  content: "";
}

.fa-brush:before {
  content: "";
}

.fa-btc:before {
  content: "";
}

.fa-buffer:before {
  content: "";
}

.fa-bug:before {
  content: "";
}

.fa-building:before {
  content: "";
}

.fa-bullhorn:before {
  content: "";
}

.fa-bullseye:before {
  content: "";
}

.fa-bullseye-arrow:before {
  content: "";
}

.fa-bullseye-pointer:before {
  content: "";
}

.fa-burger-soda:before {
  content: "";
}

.fa-burn:before {
  content: "";
}

.fa-buromobelexperte:before {
  content: "";
}

.fa-burrito:before {
  content: "";
}

.fa-bus:before {
  content: "";
}

.fa-bus-alt:before {
  content: "";
}

.fa-bus-school:before {
  content: "";
}

.fa-business-time:before {
  content: "";
}

.fa-buy-n-large:before {
  content: "";
}

.fa-buysellads:before {
  content: "";
}

.fa-cabinet-filing:before {
  content: "";
}

.fa-cactus:before {
  content: "";
}

.fa-calculator:before {
  content: "";
}

.fa-calculator-alt:before {
  content: "";
}

.fa-calendar:before {
  content: "";
}

.fa-calendar-alt:before {
  content: "";
}

.fa-calendar-check:before {
  content: "";
}

.fa-calendar-day:before {
  content: "";
}

.fa-calendar-edit:before {
  content: "";
}

.fa-calendar-exclamation:before {
  content: "";
}

.fa-calendar-minus:before {
  content: "";
}

.fa-calendar-plus:before {
  content: "";
}

.fa-calendar-star:before {
  content: "";
}

.fa-calendar-times:before {
  content: "";
}

.fa-calendar-week:before {
  content: "";
}

.fa-camcorder:before {
  content: "";
}

.fa-camera:before {
  content: "";
}

.fa-camera-alt:before {
  content: "";
}

.fa-camera-home:before {
  content: "";
}

.fa-camera-movie:before {
  content: "";
}

.fa-camera-polaroid:before {
  content: "";
}

.fa-camera-retro:before {
  content: "";
}

.fa-campfire:before {
  content: "";
}

.fa-campground:before {
  content: "";
}

.fa-canadian-maple-leaf:before {
  content: "";
}

.fa-candle-holder:before {
  content: "";
}

.fa-candy-cane:before {
  content: "";
}

.fa-candy-corn:before {
  content: "";
}

.fa-cannabis:before {
  content: "";
}

.fa-capsules:before {
  content: "";
}

.fa-car:before {
  content: "";
}

.fa-car-alt:before {
  content: "";
}

.fa-car-battery:before {
  content: "";
}

.fa-car-building:before {
  content: "";
}

.fa-car-bump:before {
  content: "";
}

.fa-car-bus:before {
  content: "";
}

.fa-car-crash:before {
  content: "";
}

.fa-car-garage:before {
  content: "";
}

.fa-car-mechanic:before {
  content: "";
}

.fa-car-side:before {
  content: "";
}

.fa-car-tilt:before {
  content: "";
}

.fa-car-wash:before {
  content: "";
}

.fa-caravan:before {
  content: "";
}

.fa-caravan-alt:before {
  content: "";
}

.fa-caret-circle-down:before {
  content: "";
}

.fa-caret-circle-left:before {
  content: "";
}

.fa-caret-circle-right:before {
  content: "";
}

.fa-caret-circle-up:before {
  content: "";
}

.fa-caret-down:before {
  content: "";
}

.fa-caret-left:before {
  content: "";
}

.fa-caret-right:before {
  content: "";
}

.fa-caret-square-down:before {
  content: "";
}

.fa-caret-square-left:before {
  content: "";
}

.fa-caret-square-right:before {
  content: "";
}

.fa-caret-square-up:before {
  content: "";
}

.fa-caret-up:before {
  content: "";
}

.fa-carrot:before {
  content: "";
}

.fa-cars:before {
  content: "";
}

.fa-cart-arrow-down:before {
  content: "";
}

.fa-cart-plus:before {
  content: "";
}

.fa-cash-register:before {
  content: "";
}

.fa-cassette-tape:before {
  content: "";
}

.fa-cat:before {
  content: "";
}

.fa-cat-space:before {
  content: "";
}

.fa-cauldron:before {
  content: "";
}

.fa-cc-amazon-pay:before {
  content: "";
}

.fa-cc-amex:before {
  content: "";
}

.fa-cc-apple-pay:before {
  content: "";
}

.fa-cc-diners-club:before {
  content: "";
}

.fa-cc-discover:before {
  content: "";
}

.fa-cc-jcb:before {
  content: "";
}

.fa-cc-mastercard:before {
  content: "";
}

.fa-cc-paypal:before {
  content: "";
}

.fa-cc-stripe:before {
  content: "";
}

.fa-cc-visa:before {
  content: "";
}

.fa-cctv:before {
  content: "";
}

.fa-centercode:before {
  content: "";
}

.fa-centos:before {
  content: "";
}

.fa-certificate:before {
  content: "";
}

.fa-chair:before {
  content: "";
}

.fa-chair-office:before {
  content: "";
}

.fa-chalkboard:before {
  content: "";
}

.fa-chalkboard-teacher:before {
  content: "";
}

.fa-charging-station:before {
  content: "";
}

.fa-chart-area:before {
  content: "";
}

.fa-chart-bar:before {
  content: "";
}

.fa-chart-line:before {
  content: "";
}

.fa-chart-line-down:before {
  content: "";
}

.fa-chart-network:before {
  content: "";
}

.fa-chart-pie:before {
  content: "";
}

.fa-chart-pie-alt:before {
  content: "";
}

.fa-chart-scatter:before {
  content: "";
}

.fa-check:before {
  content: "";
}

.fa-check-circle:before {
  content: "";
}

.fa-check-double:before {
  content: "";
}

.fa-check-square:before {
  content: "";
}

.fa-cheese:before {
  content: "";
}

.fa-cheese-swiss:before {
  content: "";
}

.fa-cheeseburger:before {
  content: "";
}

.fa-chess:before {
  content: "";
}

.fa-chess-bishop:before {
  content: "";
}

.fa-chess-bishop-alt:before {
  content: "";
}

.fa-chess-board:before {
  content: "";
}

.fa-chess-clock:before {
  content: "";
}

.fa-chess-clock-alt:before {
  content: "";
}

.fa-chess-king:before {
  content: "";
}

.fa-chess-king-alt:before {
  content: "";
}

.fa-chess-knight:before {
  content: "";
}

.fa-chess-knight-alt:before {
  content: "";
}

.fa-chess-pawn:before {
  content: "";
}

.fa-chess-pawn-alt:before {
  content: "";
}

.fa-chess-queen:before {
  content: "";
}

.fa-chess-queen-alt:before {
  content: "";
}

.fa-chess-rook:before {
  content: "";
}

.fa-chess-rook-alt:before {
  content: "";
}

.fa-chevron-circle-down:before {
  content: "";
}

.fa-chevron-circle-left:before {
  content: "";
}

.fa-chevron-circle-right:before {
  content: "";
}

.fa-chevron-circle-up:before {
  content: "";
}

.fa-chevron-double-down:before {
  content: "";
}

.fa-chevron-double-left:before {
  content: "";
}

.fa-chevron-double-right:before {
  content: "";
}

.fa-chevron-double-up:before {
  content: "";
}

.fa-chevron-down:before {
  content: "";
}

.fa-chevron-left:before {
  content: "";
}

.fa-chevron-right:before {
  content: "";
}

.fa-chevron-square-down:before {
  content: "";
}

.fa-chevron-square-left:before {
  content: "";
}

.fa-chevron-square-right:before {
  content: "";
}

.fa-chevron-square-up:before {
  content: "";
}

.fa-chevron-up:before {
  content: "";
}

.fa-child:before {
  content: "";
}

.fa-chimney:before {
  content: "";
}

.fa-chrome:before {
  content: "";
}

.fa-chromecast:before {
  content: "";
}

.fa-church:before {
  content: "";
}

.fa-circle:before {
  content: "";
}

.fa-circle-notch:before {
  content: "";
}

.fa-city:before {
  content: "";
}

.fa-clarinet:before {
  content: "";
}

.fa-claw-marks:before {
  content: "";
}

.fa-clinic-medical:before {
  content: "";
}

.fa-clipboard:before {
  content: "";
}

.fa-clipboard-check:before {
  content: "";
}

.fa-clipboard-list:before {
  content: "";
}

.fa-clipboard-list-check:before {
  content: "";
}

.fa-clipboard-prescription:before {
  content: "";
}

.fa-clipboard-user:before {
  content: "";
}

.fa-clock:before {
  content: "";
}

.fa-clone:before {
  content: "";
}

.fa-closed-captioning:before {
  content: "";
}

.fa-cloud:before {
  content: "";
}

.fa-cloud-download:before {
  content: "";
}

.fa-cloud-download-alt:before {
  content: "";
}

.fa-cloud-drizzle:before {
  content: "";
}

.fa-cloud-hail:before {
  content: "";
}

.fa-cloud-hail-mixed:before {
  content: "";
}

.fa-cloud-meatball:before {
  content: "";
}

.fa-cloud-moon:before {
  content: "";
}

.fa-cloud-moon-rain:before {
  content: "";
}

.fa-cloud-music:before {
  content: "";
}

.fa-cloud-rain:before {
  content: "";
}

.fa-cloud-rainbow:before {
  content: "";
}

.fa-cloud-showers:before {
  content: "";
}

.fa-cloud-showers-heavy:before {
  content: "";
}

.fa-cloud-sleet:before {
  content: "";
}

.fa-cloud-snow:before {
  content: "";
}

.fa-cloud-sun:before {
  content: "";
}

.fa-cloud-sun-rain:before {
  content: "";
}

.fa-cloud-upload:before {
  content: "";
}

.fa-cloud-upload-alt:before {
  content: "";
}

.fa-cloudflare:before {
  content: "";
}

.fa-clouds:before {
  content: "";
}

.fa-clouds-moon:before {
  content: "";
}

.fa-clouds-sun:before {
  content: "";
}

.fa-cloudscale:before {
  content: "";
}

.fa-cloudsmith:before {
  content: "";
}

.fa-cloudversify:before {
  content: "";
}

.fa-club:before {
  content: "";
}

.fa-cocktail:before {
  content: "";
}

.fa-code:before {
  content: "";
}

.fa-code-branch:before {
  content: "";
}

.fa-code-commit:before {
  content: "";
}

.fa-code-merge:before {
  content: "";
}

.fa-codepen:before {
  content: "";
}

.fa-codiepie:before {
  content: "";
}

.fa-coffee:before {
  content: "";
}

.fa-coffee-pot:before {
  content: "";
}

.fa-coffee-togo:before {
  content: "";
}

.fa-coffin:before {
  content: "";
}

.fa-coffin-cross:before {
  content: "";
}

.fa-cog:before {
  content: "";
}

.fa-cogs:before {
  content: "";
}

.fa-coin:before {
  content: "";
}

.fa-coins:before {
  content: "";
}

.fa-columns:before {
  content: "";
}

.fa-comet:before {
  content: "";
}

.fa-comment:before {
  content: "";
}

.fa-comment-alt:before {
  content: "";
}

.fa-comment-alt-check:before {
  content: "";
}

.fa-comment-alt-dollar:before {
  content: "";
}

.fa-comment-alt-dots:before {
  content: "";
}

.fa-comment-alt-edit:before {
  content: "";
}

.fa-comment-alt-exclamation:before {
  content: "";
}

.fa-comment-alt-lines:before {
  content: "";
}

.fa-comment-alt-medical:before {
  content: "";
}

.fa-comment-alt-minus:before {
  content: "";
}

.fa-comment-alt-music:before {
  content: "";
}

.fa-comment-alt-plus:before {
  content: "";
}

.fa-comment-alt-slash:before {
  content: "";
}

.fa-comment-alt-smile:before {
  content: "";
}

.fa-comment-alt-times:before {
  content: "";
}

.fa-comment-check:before {
  content: "";
}

.fa-comment-dollar:before {
  content: "";
}

.fa-comment-dots:before {
  content: "";
}

.fa-comment-edit:before {
  content: "";
}

.fa-comment-exclamation:before {
  content: "";
}

.fa-comment-lines:before {
  content: "";
}

.fa-comment-medical:before {
  content: "";
}

.fa-comment-minus:before {
  content: "";
}

.fa-comment-music:before {
  content: "";
}

.fa-comment-plus:before {
  content: "";
}

.fa-comment-slash:before {
  content: "";
}

.fa-comment-smile:before {
  content: "";
}

.fa-comment-times:before {
  content: "";
}

.fa-comments:before {
  content: "";
}

.fa-comments-alt:before {
  content: "";
}

.fa-comments-alt-dollar:before {
  content: "";
}

.fa-comments-dollar:before {
  content: "";
}

.fa-compact-disc:before {
  content: "";
}

.fa-compass:before {
  content: "";
}

.fa-compass-slash:before {
  content: "";
}

.fa-compress:before {
  content: "";
}

.fa-compress-alt:before {
  content: "";
}

.fa-compress-arrows-alt:before {
  content: "";
}

.fa-compress-wide:before {
  content: "";
}

.fa-computer-classic:before {
  content: "";
}

.fa-computer-speaker:before {
  content: "";
}

.fa-concierge-bell:before {
  content: "";
}

.fa-confluence:before {
  content: "";
}

.fa-connectdevelop:before {
  content: "";
}

.fa-construction:before {
  content: "";
}

.fa-container-storage:before {
  content: "";
}

.fa-contao:before {
  content: "";
}

.fa-conveyor-belt:before {
  content: "";
}

.fa-conveyor-belt-alt:before {
  content: "";
}

.fa-cookie:before {
  content: "";
}

.fa-cookie-bite:before {
  content: "";
}

.fa-copy:before {
  content: "";
}

.fa-copyright:before {
  content: "";
}

.fa-corn:before {
  content: "";
}

.fa-cotton-bureau:before {
  content: "";
}

.fa-couch:before {
  content: "";
}

.fa-cow:before {
  content: "";
}

.fa-cowbell:before {
  content: "";
}

.fa-cowbell-more:before {
  content: "";
}

.fa-cpanel:before {
  content: "";
}

.fa-creative-commons:before {
  content: "";
}

.fa-creative-commons-by:before {
  content: "";
}

.fa-creative-commons-nc:before {
  content: "";
}

.fa-creative-commons-nc-eu:before {
  content: "";
}

.fa-creative-commons-nc-jp:before {
  content: "";
}

.fa-creative-commons-nd:before {
  content: "";
}

.fa-creative-commons-pd:before {
  content: "";
}

.fa-creative-commons-pd-alt:before {
  content: "";
}

.fa-creative-commons-remix:before {
  content: "";
}

.fa-creative-commons-sa:before {
  content: "";
}

.fa-creative-commons-sampling:before {
  content: "";
}

.fa-creative-commons-sampling-plus:before {
  content: "";
}

.fa-creative-commons-share:before {
  content: "";
}

.fa-creative-commons-zero:before {
  content: "";
}

.fa-credit-card:before {
  content: "";
}

.fa-credit-card-blank:before {
  content: "";
}

.fa-credit-card-front:before {
  content: "";
}

.fa-cricket:before {
  content: "";
}

.fa-critical-role:before {
  content: "";
}

.fa-croissant:before {
  content: "";
}

.fa-crop:before {
  content: "";
}

.fa-crop-alt:before {
  content: "";
}

.fa-cross:before {
  content: "";
}

.fa-crosshairs:before {
  content: "";
}

.fa-crow:before {
  content: "";
}

.fa-crown:before {
  content: "";
}

.fa-crutch:before {
  content: "";
}

.fa-crutches:before {
  content: "";
}

.fa-css3:before {
  content: "";
}

.fa-css3-alt:before {
  content: "";
}

.fa-cube:before {
  content: "";
}

.fa-cubes:before {
  content: "";
}

.fa-curling:before {
  content: "";
}

.fa-cut:before {
  content: "";
}

.fa-cuttlefish:before {
  content: "";
}

.fa-d-and-d:before {
  content: "";
}

.fa-d-and-d-beyond:before {
  content: "";
}

.fa-dagger:before {
  content: "";
}

.fa-dailymotion:before {
  content: "";
}

.fa-dashcube:before {
  content: "";
}

.fa-database:before {
  content: "";
}

.fa-deaf:before {
  content: "";
}

.fa-debug:before {
  content: "";
}

.fa-deer:before {
  content: "";
}

.fa-deer-rudolph:before {
  content: "";
}

.fa-deezer:before {
  content: "";
}

.fa-delicious:before {
  content: "";
}

.fa-democrat:before {
  content: "";
}

.fa-deploydog:before {
  content: "";
}

.fa-deskpro:before {
  content: "";
}

.fa-desktop:before {
  content: "";
}

.fa-desktop-alt:before {
  content: "";
}

.fa-dev:before {
  content: "";
}

.fa-deviantart:before {
  content: "";
}

.fa-dewpoint:before {
  content: "";
}

.fa-dharmachakra:before {
  content: "";
}

.fa-dhl:before {
  content: "";
}

.fa-diagnoses:before {
  content: "";
}

.fa-diamond:before {
  content: "";
}

.fa-diaspora:before {
  content: "";
}

.fa-dice:before {
  content: "";
}

.fa-dice-d10:before {
  content: "";
}

.fa-dice-d12:before {
  content: "";
}

.fa-dice-d20:before {
  content: "";
}

.fa-dice-d4:before {
  content: "";
}

.fa-dice-d6:before {
  content: "";
}

.fa-dice-d8:before {
  content: "";
}

.fa-dice-five:before {
  content: "";
}

.fa-dice-four:before {
  content: "";
}

.fa-dice-one:before {
  content: "";
}

.fa-dice-six:before {
  content: "";
}

.fa-dice-three:before {
  content: "";
}

.fa-dice-two:before {
  content: "";
}

.fa-digg:before {
  content: "";
}

.fa-digging:before {
  content: "";
}

.fa-digital-ocean:before {
  content: "";
}

.fa-digital-tachograph:before {
  content: "";
}

.fa-diploma:before {
  content: "";
}

.fa-directions:before {
  content: "";
}

.fa-disc-drive:before {
  content: "";
}

.fa-discord:before {
  content: "";
}

.fa-discourse:before {
  content: "";
}

.fa-disease:before {
  content: "";
}

.fa-divide:before {
  content: "";
}

.fa-dizzy:before {
  content: "";
}

.fa-dna:before {
  content: "";
}

.fa-do-not-enter:before {
  content: "";
}

.fa-dochub:before {
  content: "";
}

.fa-docker:before {
  content: "";
}

.fa-dog:before {
  content: "";
}

.fa-dog-leashed:before {
  content: "";
}

.fa-dollar-sign:before {
  content: "";
}

.fa-dolly:before {
  content: "";
}

.fa-dolly-empty:before {
  content: "";
}

.fa-dolly-flatbed:before {
  content: "";
}

.fa-dolly-flatbed-alt:before {
  content: "";
}

.fa-dolly-flatbed-empty:before {
  content: "";
}

.fa-donate:before {
  content: "";
}

.fa-door-closed:before {
  content: "";
}

.fa-door-open:before {
  content: "";
}

.fa-dot-circle:before {
  content: "";
}

.fa-dove:before {
  content: "";
}

.fa-download:before {
  content: "";
}

.fa-draft2digital:before {
  content: "";
}

.fa-drafting-compass:before {
  content: "";
}

.fa-dragon:before {
  content: "";
}

.fa-draw-circle:before {
  content: "";
}

.fa-draw-polygon:before {
  content: "";
}

.fa-draw-square:before {
  content: "";
}

.fa-dreidel:before {
  content: "";
}

.fa-dribbble:before {
  content: "";
}

.fa-dribbble-square:before {
  content: "";
}

.fa-drone:before {
  content: "";
}

.fa-drone-alt:before {
  content: "";
}

.fa-dropbox:before {
  content: "";
}

.fa-drum:before {
  content: "";
}

.fa-drum-steelpan:before {
  content: "";
}

.fa-drumstick:before {
  content: "";
}

.fa-drumstick-bite:before {
  content: "";
}

.fa-drupal:before {
  content: "";
}

.fa-dryer:before {
  content: "";
}

.fa-dryer-alt:before {
  content: "";
}

.fa-duck:before {
  content: "";
}

.fa-dumbbell:before {
  content: "";
}

.fa-dumpster:before {
  content: "";
}

.fa-dumpster-fire:before {
  content: "";
}

.fa-dungeon:before {
  content: "";
}

.fa-dyalog:before {
  content: "";
}

.fa-ear:before {
  content: "";
}

.fa-ear-muffs:before {
  content: "";
}

.fa-earlybirds:before {
  content: "";
}

.fa-ebay:before {
  content: "";
}

.fa-eclipse:before {
  content: "";
}

.fa-eclipse-alt:before {
  content: "";
}

.fa-edge:before {
  content: "";
}

.fa-edge-legacy:before {
  content: "";
}

.fa-edit:before {
  content: "";
}

.fa-egg:before {
  content: "";
}

.fa-egg-fried:before {
  content: "";
}

.fa-eject:before {
  content: "";
}

.fa-elementor:before {
  content: "";
}

.fa-elephant:before {
  content: "";
}

.fa-ellipsis-h:before {
  content: "";
}

.fa-ellipsis-h-alt:before {
  content: "";
}

.fa-ellipsis-v:before {
  content: "";
}

.fa-ellipsis-v-alt:before {
  content: "";
}

.fa-ello:before {
  content: "";
}

.fa-ember:before {
  content: "";
}

.fa-empire:before {
  content: "";
}

.fa-empty-set:before {
  content: "";
}

.fa-engine-warning:before {
  content: "";
}

.fa-envelope:before {
  content: "";
}

.fa-envelope-open:before {
  content: "";
}

.fa-envelope-open-dollar:before {
  content: "";
}

.fa-envelope-open-text:before {
  content: "";
}

.fa-envelope-square:before {
  content: "";
}

.fa-envira:before {
  content: "";
}

.fa-equals:before {
  content: "";
}

.fa-eraser:before {
  content: "";
}

.fa-erlang:before {
  content: "";
}

.fa-ethereum:before {
  content: "";
}

.fa-ethernet:before {
  content: "";
}

.fa-etsy:before {
  content: "";
}

.fa-euro-sign:before {
  content: "";
}

.fa-evernote:before {
  content: "";
}

.fa-exchange:before {
  content: "";
}

.fa-exchange-alt:before {
  content: "";
}

.fa-exclamation:before {
  content: "";
}

.fa-exclamation-circle:before {
  content: "";
}

.fa-exclamation-square:before {
  content: "";
}

.fa-exclamation-triangle:before {
  content: "";
}

.fa-expand:before {
  content: "";
}

.fa-expand-alt:before {
  content: "";
}

.fa-expand-arrows:before {
  content: "";
}

.fa-expand-arrows-alt:before {
  content: "";
}

.fa-expand-wide:before {
  content: "";
}

.fa-expeditedssl:before {
  content: "";
}

.fa-external-link:before {
  content: "";
}

.fa-external-link-alt:before {
  content: "";
}

.fa-external-link-square:before {
  content: "";
}

.fa-external-link-square-alt:before {
  content: "";
}

.fa-eye:before {
  content: "";
}

.fa-eye-dropper:before {
  content: "";
}

.fa-eye-evil:before {
  content: "";
}

.fa-eye-slash:before {
  content: "";
}

.fa-facebook:before {
  content: "";
}

.fa-facebook-f:before {
  content: "";
}

.fa-facebook-messenger:before {
  content: "";
}

.fa-facebook-square:before {
  content: "";
}

.fa-fan:before {
  content: "";
}

.fa-fan-table:before {
  content: "";
}

.fa-fantasy-flight-games:before {
  content: "";
}

.fa-farm:before {
  content: "";
}

.fa-fast-backward:before {
  content: "";
}

.fa-fast-forward:before {
  content: "";
}

.fa-faucet:before {
  content: "";
}

.fa-faucet-drip:before {
  content: "";
}

.fa-fax:before {
  content: "";
}

.fa-feather:before {
  content: "";
}

.fa-feather-alt:before {
  content: "";
}

.fa-fedex:before {
  content: "";
}

.fa-fedora:before {
  content: "";
}

.fa-female:before {
  content: "";
}

.fa-field-hockey:before {
  content: "";
}

.fa-fighter-jet:before {
  content: "";
}

.fa-figma:before {
  content: "";
}

.fa-file:before {
  content: "";
}

.fa-file-alt:before {
  content: "";
}

.fa-file-archive:before {
  content: "";
}

.fa-file-audio:before {
  content: "";
}

.fa-file-certificate:before {
  content: "";
}

.fa-file-chart-line:before {
  content: "";
}

.fa-file-chart-pie:before {
  content: "";
}

.fa-file-check:before {
  content: "";
}

.fa-file-code:before {
  content: "";
}

.fa-file-contract:before {
  content: "";
}

.fa-file-csv:before {
  content: "";
}

.fa-file-download:before {
  content: "";
}

.fa-file-edit:before {
  content: "";
}

.fa-file-excel:before {
  content: "";
}

.fa-file-exclamation:before {
  content: "";
}

.fa-file-export:before {
  content: "";
}

.fa-file-image:before {
  content: "";
}

.fa-file-import:before {
  content: "";
}

.fa-file-invoice:before {
  content: "";
}

.fa-file-invoice-dollar:before {
  content: "";
}

.fa-file-medical:before {
  content: "";
}

.fa-file-medical-alt:before {
  content: "";
}

.fa-file-minus:before {
  content: "";
}

.fa-file-music:before {
  content: "";
}

.fa-file-pdf:before {
  content: "";
}

.fa-file-plus:before {
  content: "";
}

.fa-file-powerpoint:before {
  content: "";
}

.fa-file-prescription:before {
  content: "";
}

.fa-file-search:before {
  content: "";
}

.fa-file-signature:before {
  content: "";
}

.fa-file-spreadsheet:before {
  content: "";
}

.fa-file-times:before {
  content: "";
}

.fa-file-upload:before {
  content: "";
}

.fa-file-user:before {
  content: "";
}

.fa-file-video:before {
  content: "";
}

.fa-file-word:before {
  content: "";
}

.fa-files-medical:before {
  content: "";
}

.fa-fill:before {
  content: "";
}

.fa-fill-drip:before {
  content: "";
}

.fa-film:before {
  content: "";
}

.fa-film-alt:before {
  content: "";
}

.fa-film-canister:before {
  content: "";
}

.fa-filter:before {
  content: "";
}

.fa-fingerprint:before {
  content: "";
}

.fa-fire:before {
  content: "";
}

.fa-fire-alt:before {
  content: "";
}

.fa-fire-extinguisher:before {
  content: "";
}

.fa-fire-smoke:before {
  content: "";
}

.fa-firefox:before {
  content: "";
}

.fa-firefox-browser:before {
  content: "";
}

.fa-fireplace:before {
  content: "";
}

.fa-first-aid:before {
  content: "";
}

.fa-first-order:before {
  content: "";
}

.fa-first-order-alt:before {
  content: "";
}

.fa-firstdraft:before {
  content: "";
}

.fa-fish:before {
  content: "";
}

.fa-fish-cooked:before {
  content: "";
}

.fa-fist-raised:before {
  content: "";
}

.fa-flag:before {
  content: "";
}

.fa-flag-alt:before {
  content: "";
}

.fa-flag-checkered:before {
  content: "";
}

.fa-flag-usa:before {
  content: "";
}

.fa-flame:before {
  content: "";
}

.fa-flashlight:before {
  content: "";
}

.fa-flask:before {
  content: "";
}

.fa-flask-poison:before {
  content: "";
}

.fa-flask-potion:before {
  content: "";
}

.fa-flickr:before {
  content: "";
}

.fa-flipboard:before {
  content: "";
}

.fa-flower:before {
  content: "";
}

.fa-flower-daffodil:before {
  content: "";
}

.fa-flower-tulip:before {
  content: "";
}

.fa-flushed:before {
  content: "";
}

.fa-flute:before {
  content: "";
}

.fa-flux-capacitor:before {
  content: "";
}

.fa-fly:before {
  content: "";
}

.fa-fog:before {
  content: "";
}

.fa-folder:before {
  content: "";
}

.fa-folder-download:before {
  content: "";
}

.fa-folder-minus:before {
  content: "";
}

.fa-folder-open:before {
  content: "";
}

.fa-folder-plus:before {
  content: "";
}

.fa-folder-times:before {
  content: "";
}

.fa-folder-tree:before {
  content: "";
}

.fa-folder-upload:before {
  content: "";
}

.fa-folders:before {
  content: "";
}

.fa-font:before {
  content: "";
}

.fa-font-awesome:before {
  content: "";
}

.fa-font-awesome-alt:before {
  content: "";
}

.fa-font-awesome-flag:before {
  content: "";
}

.fa-font-awesome-logo-full:before {
  content: "";
}

.fa-font-case:before {
  content: "";
}

.fa-fonticons:before {
  content: "";
}

.fa-fonticons-fi:before {
  content: "";
}

.fa-football-ball:before {
  content: "";
}

.fa-football-helmet:before {
  content: "";
}

.fa-forklift:before {
  content: "";
}

.fa-fort-awesome:before {
  content: "";
}

.fa-fort-awesome-alt:before {
  content: "";
}

.fa-forumbee:before {
  content: "";
}

.fa-forward:before {
  content: "";
}

.fa-foursquare:before {
  content: "";
}

.fa-fragile:before {
  content: "";
}

.fa-free-code-camp:before {
  content: "";
}

.fa-freebsd:before {
  content: "";
}

.fa-french-fries:before {
  content: "";
}

.fa-frog:before {
  content: "";
}

.fa-frosty-head:before {
  content: "";
}

.fa-frown:before {
  content: "";
}

.fa-frown-open:before {
  content: "";
}

.fa-fulcrum:before {
  content: "";
}

.fa-function:before {
  content: "";
}

.fa-funnel-dollar:before {
  content: "";
}

.fa-futbol:before {
  content: "";
}

.fa-galactic-republic:before {
  content: "";
}

.fa-galactic-senate:before {
  content: "";
}

.fa-galaxy:before {
  content: "";
}

.fa-game-board:before {
  content: "";
}

.fa-game-board-alt:before {
  content: "";
}

.fa-game-console-handheld:before {
  content: "";
}

.fa-gamepad:before {
  content: "";
}

.fa-gamepad-alt:before {
  content: "";
}

.fa-garage:before {
  content: "";
}

.fa-garage-car:before {
  content: "";
}

.fa-garage-open:before {
  content: "";
}

.fa-gas-pump:before {
  content: "";
}

.fa-gas-pump-slash:before {
  content: "";
}

.fa-gavel:before {
  content: "";
}

.fa-gem:before {
  content: "";
}

.fa-genderless:before {
  content: "";
}

.fa-get-pocket:before {
  content: "";
}

.fa-gg:before {
  content: "";
}

.fa-gg-circle:before {
  content: "";
}

.fa-ghost:before {
  content: "";
}

.fa-gift:before {
  content: "";
}

.fa-gift-card:before {
  content: "";
}

.fa-gifts:before {
  content: "";
}

.fa-gingerbread-man:before {
  content: "";
}

.fa-git:before {
  content: "";
}

.fa-git-alt:before {
  content: "";
}

.fa-git-square:before {
  content: "";
}

.fa-github:before {
  content: "";
}

.fa-github-alt:before {
  content: "";
}

.fa-github-square:before {
  content: "";
}

.fa-gitkraken:before {
  content: "";
}

.fa-gitlab:before {
  content: "";
}

.fa-gitter:before {
  content: "";
}

.fa-glass:before {
  content: "";
}

.fa-glass-champagne:before {
  content: "";
}

.fa-glass-cheers:before {
  content: "";
}

.fa-glass-citrus:before {
  content: "";
}

.fa-glass-martini:before {
  content: "";
}

.fa-glass-martini-alt:before {
  content: "";
}

.fa-glass-whiskey:before {
  content: "";
}

.fa-glass-whiskey-rocks:before {
  content: "";
}

.fa-glasses:before {
  content: "";
}

.fa-glasses-alt:before {
  content: "";
}

.fa-glide:before {
  content: "";
}

.fa-glide-g:before {
  content: "";
}

.fa-globe:before {
  content: "";
}

.fa-globe-africa:before {
  content: "";
}

.fa-globe-americas:before {
  content: "";
}

.fa-globe-asia:before {
  content: "";
}

.fa-globe-europe:before {
  content: "";
}

.fa-globe-snow:before {
  content: "";
}

.fa-globe-stand:before {
  content: "";
}

.fa-gofore:before {
  content: "";
}

.fa-golf-ball:before {
  content: "";
}

.fa-golf-club:before {
  content: "";
}

.fa-goodreads:before {
  content: "";
}

.fa-goodreads-g:before {
  content: "";
}

.fa-google:before {
  content: "";
}

.fa-google-drive:before {
  content: "";
}

.fa-google-pay:before {
  content: "";
}

.fa-google-play:before {
  content: "";
}

.fa-google-plus:before {
  content: "";
}

.fa-google-plus-g:before {
  content: "";
}

.fa-google-plus-square:before {
  content: "";
}

.fa-google-wallet:before {
  content: "";
}

.fa-gopuram:before {
  content: "";
}

.fa-graduation-cap:before {
  content: "";
}

.fa-gramophone:before {
  content: "";
}

.fa-gratipay:before {
  content: "";
}

.fa-grav:before {
  content: "";
}

.fa-greater-than:before {
  content: "";
}

.fa-greater-than-equal:before {
  content: "";
}

.fa-grimace:before {
  content: "";
}

.fa-grin:before {
  content: "";
}

.fa-grin-alt:before {
  content: "";
}

.fa-grin-beam:before {
  content: "";
}

.fa-grin-beam-sweat:before {
  content: "";
}

.fa-grin-hearts:before {
  content: "";
}

.fa-grin-squint:before {
  content: "";
}

.fa-grin-squint-tears:before {
  content: "";
}

.fa-grin-stars:before {
  content: "";
}

.fa-grin-tears:before {
  content: "";
}

.fa-grin-tongue:before {
  content: "";
}

.fa-grin-tongue-squint:before {
  content: "";
}

.fa-grin-tongue-wink:before {
  content: "";
}

.fa-grin-wink:before {
  content: "";
}

.fa-grip-horizontal:before {
  content: "";
}

.fa-grip-lines:before {
  content: "";
}

.fa-grip-lines-vertical:before {
  content: "";
}

.fa-grip-vertical:before {
  content: "";
}

.fa-gripfire:before {
  content: "";
}

.fa-grunt:before {
  content: "";
}

.fa-guilded:before {
  content: "";
}

.fa-guitar:before {
  content: "";
}

.fa-guitar-electric:before {
  content: "";
}

.fa-guitars:before {
  content: "";
}

.fa-gulp:before {
  content: "";
}

.fa-h-square:before {
  content: "";
}

.fa-h1:before {
  content: "";
}

.fa-h2:before {
  content: "";
}

.fa-h3:before {
  content: "";
}

.fa-h4:before {
  content: "";
}

.fa-hacker-news:before {
  content: "";
}

.fa-hacker-news-square:before {
  content: "";
}

.fa-hackerrank:before {
  content: "";
}

.fa-hamburger:before {
  content: "";
}

.fa-hammer:before {
  content: "";
}

.fa-hammer-war:before {
  content: "";
}

.fa-hamsa:before {
  content: "";
}

.fa-hand-heart:before {
  content: "";
}

.fa-hand-holding:before {
  content: "";
}

.fa-hand-holding-box:before {
  content: "";
}

.fa-hand-holding-heart:before {
  content: "";
}

.fa-hand-holding-magic:before {
  content: "";
}

.fa-hand-holding-medical:before {
  content: "";
}

.fa-hand-holding-seedling:before {
  content: "";
}

.fa-hand-holding-usd:before {
  content: "";
}

.fa-hand-holding-water:before {
  content: "";
}

.fa-hand-lizard:before {
  content: "";
}

.fa-hand-middle-finger:before {
  content: "";
}

.fa-hand-paper:before {
  content: "";
}

.fa-hand-peace:before {
  content: "";
}

.fa-hand-point-down:before {
  content: "";
}

.fa-hand-point-left:before {
  content: "";
}

.fa-hand-point-right:before {
  content: "";
}

.fa-hand-point-up:before {
  content: "";
}

.fa-hand-pointer:before {
  content: "";
}

.fa-hand-receiving:before {
  content: "";
}

.fa-hand-rock:before {
  content: "";
}

.fa-hand-scissors:before {
  content: "";
}

.fa-hand-sparkles:before {
  content: "";
}

.fa-hand-spock:before {
  content: "";
}

.fa-hands:before {
  content: "";
}

.fa-hands-heart:before {
  content: "";
}

.fa-hands-helping:before {
  content: "";
}

.fa-hands-usd:before {
  content: "";
}

.fa-hands-wash:before {
  content: "";
}

.fa-handshake:before {
  content: "";
}

.fa-handshake-alt:before {
  content: "";
}

.fa-handshake-alt-slash:before {
  content: "";
}

.fa-handshake-slash:before {
  content: "";
}

.fa-hanukiah:before {
  content: "";
}

.fa-hard-hat:before {
  content: "";
}

.fa-hashtag:before {
  content: "";
}

.fa-hat-chef:before {
  content: "";
}

.fa-hat-cowboy:before {
  content: "";
}

.fa-hat-cowboy-side:before {
  content: "";
}

.fa-hat-santa:before {
  content: "";
}

.fa-hat-winter:before {
  content: "";
}

.fa-hat-witch:before {
  content: "";
}

.fa-hat-wizard:before {
  content: "";
}

.fa-hdd:before {
  content: "";
}

.fa-head-side:before {
  content: "";
}

.fa-head-side-brain:before {
  content: "";
}

.fa-head-side-cough:before {
  content: "";
}

.fa-head-side-cough-slash:before {
  content: "";
}

.fa-head-side-headphones:before {
  content: "";
}

.fa-head-side-mask:before {
  content: "";
}

.fa-head-side-medical:before {
  content: "";
}

.fa-head-side-virus:before {
  content: "";
}

.fa-head-vr:before {
  content: "";
}

.fa-heading:before {
  content: "";
}

.fa-headphones:before {
  content: "";
}

.fa-headphones-alt:before {
  content: "";
}

.fa-headset:before {
  content: "";
}

.fa-heart:before {
  content: "";
}

.fa-heart-broken:before {
  content: "";
}

.fa-heart-circle:before {
  content: "";
}

.fa-heart-rate:before {
  content: "";
}

.fa-heart-square:before {
  content: "";
}

.fa-heartbeat:before {
  content: "";
}

.fa-heat:before {
  content: "";
}

.fa-helicopter:before {
  content: "";
}

.fa-helmet-battle:before {
  content: "";
}

.fa-hexagon:before {
  content: "";
}

.fa-highlighter:before {
  content: "";
}

.fa-hiking:before {
  content: "";
}

.fa-hippo:before {
  content: "";
}

.fa-hips:before {
  content: "";
}

.fa-hire-a-helper:before {
  content: "";
}

.fa-history:before {
  content: "";
}

.fa-hive:before {
  content: "";
}

.fa-hockey-mask:before {
  content: "";
}

.fa-hockey-puck:before {
  content: "";
}

.fa-hockey-sticks:before {
  content: "";
}

.fa-holly-berry:before {
  content: "";
}

.fa-home:before {
  content: "";
}

.fa-home-alt:before {
  content: "";
}

.fa-home-heart:before {
  content: "";
}

.fa-home-lg:before {
  content: "";
}

.fa-home-lg-alt:before {
  content: "";
}

.fa-hood-cloak:before {
  content: "";
}

.fa-hooli:before {
  content: "";
}

.fa-horizontal-rule:before {
  content: "";
}

.fa-hornbill:before {
  content: "";
}

.fa-horse:before {
  content: "";
}

.fa-horse-head:before {
  content: "";
}

.fa-horse-saddle:before {
  content: "";
}

.fa-hospital:before {
  content: "";
}

.fa-hospital-alt:before {
  content: "";
}

.fa-hospital-symbol:before {
  content: "";
}

.fa-hospital-user:before {
  content: "";
}

.fa-hospitals:before {
  content: "";
}

.fa-hot-tub:before {
  content: "";
}

.fa-hotdog:before {
  content: "";
}

.fa-hotel:before {
  content: "";
}

.fa-hotjar:before {
  content: "";
}

.fa-hourglass:before {
  content: "";
}

.fa-hourglass-end:before {
  content: "";
}

.fa-hourglass-half:before {
  content: "";
}

.fa-hourglass-start:before {
  content: "";
}

.fa-house:before {
  content: "";
}

.fa-house-damage:before {
  content: "";
}

.fa-house-day:before {
  content: "";
}

.fa-house-flood:before {
  content: "";
}

.fa-house-leave:before {
  content: "";
}

.fa-house-night:before {
  content: "";
}

.fa-house-return:before {
  content: "";
}

.fa-house-signal:before {
  content: "";
}

.fa-house-user:before {
  content: "";
}

.fa-houzz:before {
  content: "";
}

.fa-hryvnia:before {
  content: "";
}

.fa-html5:before {
  content: "";
}

.fa-hubspot:before {
  content: "";
}

.fa-humidity:before {
  content: "";
}

.fa-hurricane:before {
  content: "";
}

.fa-i-cursor:before {
  content: "";
}

.fa-ice-cream:before {
  content: "";
}

.fa-ice-skate:before {
  content: "";
}

.fa-icicles:before {
  content: "";
}

.fa-icons:before {
  content: "";
}

.fa-icons-alt:before {
  content: "";
}

.fa-id-badge:before {
  content: "";
}

.fa-id-card:before {
  content: "";
}

.fa-id-card-alt:before {
  content: "";
}

.fa-ideal:before {
  content: "";
}

.fa-igloo:before {
  content: "";
}

.fa-image:before {
  content: "";
}

.fa-image-polaroid:before {
  content: "";
}

.fa-images:before {
  content: "";
}

.fa-imdb:before {
  content: "";
}

.fa-inbox:before {
  content: "";
}

.fa-inbox-in:before {
  content: "";
}

.fa-inbox-out:before {
  content: "";
}

.fa-indent:before {
  content: "";
}

.fa-industry:before {
  content: "";
}

.fa-industry-alt:before {
  content: "";
}

.fa-infinity:before {
  content: "";
}

.fa-info:before {
  content: "";
}

.fa-info-circle:before {
  content: "";
}

.fa-info-square:before {
  content: "";
}

.fa-inhaler:before {
  content: "";
}

.fa-innosoft:before {
  content: "";
}

.fa-instagram:before {
  content: "";
}

.fa-instagram-square:before {
  content: "";
}

.fa-instalod:before {
  content: "";
}

.fa-integral:before {
  content: "";
}

.fa-intercom:before {
  content: "";
}

.fa-internet-explorer:before {
  content: "";
}

.fa-intersection:before {
  content: "";
}

.fa-inventory:before {
  content: "";
}

.fa-invision:before {
  content: "";
}

.fa-ioxhost:before {
  content: "";
}

.fa-island-tropical:before {
  content: "";
}

.fa-italic:before {
  content: "";
}

.fa-itch-io:before {
  content: "";
}

.fa-itunes:before {
  content: "";
}

.fa-itunes-note:before {
  content: "";
}

.fa-jack-o-lantern:before {
  content: "";
}

.fa-java:before {
  content: "";
}

.fa-jedi:before {
  content: "";
}

.fa-jedi-order:before {
  content: "";
}

.fa-jenkins:before {
  content: "";
}

.fa-jira:before {
  content: "";
}

.fa-joget:before {
  content: "";
}

.fa-joint:before {
  content: "";
}

.fa-joomla:before {
  content: "";
}

.fa-journal-whills:before {
  content: "";
}

.fa-joystick:before {
  content: "";
}

.fa-js:before {
  content: "";
}

.fa-js-square:before {
  content: "";
}

.fa-jsfiddle:before {
  content: "";
}

.fa-jug:before {
  content: "";
}

.fa-kaaba:before {
  content: "";
}

.fa-kaggle:before {
  content: "";
}

.fa-kazoo:before {
  content: "";
}

.fa-kerning:before {
  content: "";
}

.fa-key:before {
  content: "";
}

.fa-key-skeleton:before {
  content: "";
}

.fa-keybase:before {
  content: "";
}

.fa-keyboard:before {
  content: "";
}

.fa-keycdn:before {
  content: "";
}

.fa-keynote:before {
  content: "";
}

.fa-khanda:before {
  content: "";
}

.fa-kickstarter:before {
  content: "";
}

.fa-kickstarter-k:before {
  content: "";
}

.fa-kidneys:before {
  content: "";
}

.fa-kiss:before {
  content: "";
}

.fa-kiss-beam:before {
  content: "";
}

.fa-kiss-wink-heart:before {
  content: "";
}

.fa-kite:before {
  content: "";
}

.fa-kiwi-bird:before {
  content: "";
}

.fa-knife-kitchen:before {
  content: "";
}

.fa-korvue:before {
  content: "";
}

.fa-lambda:before {
  content: "";
}

.fa-lamp:before {
  content: "";
}

.fa-lamp-desk:before {
  content: "";
}

.fa-lamp-floor:before {
  content: "";
}

.fa-landmark:before {
  content: "";
}

.fa-landmark-alt:before {
  content: "";
}

.fa-language:before {
  content: "";
}

.fa-laptop:before {
  content: "";
}

.fa-laptop-code:before {
  content: "";
}

.fa-laptop-house:before {
  content: "";
}

.fa-laptop-medical:before {
  content: "";
}

.fa-laravel:before {
  content: "";
}

.fa-lasso:before {
  content: "";
}

.fa-lastfm:before {
  content: "";
}

.fa-lastfm-square:before {
  content: "";
}

.fa-laugh:before {
  content: "";
}

.fa-laugh-beam:before {
  content: "";
}

.fa-laugh-squint:before {
  content: "";
}

.fa-laugh-wink:before {
  content: "";
}

.fa-layer-group:before {
  content: "";
}

.fa-layer-minus:before {
  content: "";
}

.fa-layer-plus:before {
  content: "";
}

.fa-leaf:before {
  content: "";
}

.fa-leaf-heart:before {
  content: "";
}

.fa-leaf-maple:before {
  content: "";
}

.fa-leaf-oak:before {
  content: "";
}

.fa-leanpub:before {
  content: "";
}

.fa-lemon:before {
  content: "";
}

.fa-less:before {
  content: "";
}

.fa-less-than:before {
  content: "";
}

.fa-less-than-equal:before {
  content: "";
}

.fa-level-down:before {
  content: "";
}

.fa-level-down-alt:before {
  content: "";
}

.fa-level-up:before {
  content: "";
}

.fa-level-up-alt:before {
  content: "";
}

.fa-life-ring:before {
  content: "";
}

.fa-light-ceiling:before {
  content: "";
}

.fa-light-switch:before {
  content: "";
}

.fa-light-switch-off:before {
  content: "";
}

.fa-light-switch-on:before {
  content: "";
}

.fa-lightbulb:before {
  content: "";
}

.fa-lightbulb-dollar:before {
  content: "";
}

.fa-lightbulb-exclamation:before {
  content: "";
}

.fa-lightbulb-on:before {
  content: "";
}

.fa-lightbulb-slash:before {
  content: "";
}

.fa-lights-holiday:before {
  content: "";
}

.fa-line:before {
  content: "";
}

.fa-line-columns:before {
  content: "";
}

.fa-line-height:before {
  content: "";
}

.fa-link:before {
  content: "";
}

.fa-linkedin:before {
  content: "";
}

.fa-linkedin-in:before {
  content: "";
}

.fa-linode:before {
  content: "";
}

.fa-linux:before {
  content: "";
}

.fa-lips:before {
  content: "";
}

.fa-lira-sign:before {
  content: "";
}

.fa-list:before {
  content: "";
}

.fa-list-alt:before {
  content: "";
}

.fa-list-music:before {
  content: "";
}

.fa-list-ol:before {
  content: "";
}

.fa-list-ul:before {
  content: "";
}

.fa-location:before {
  content: "";
}

.fa-location-arrow:before {
  content: "";
}

.fa-location-circle:before {
  content: "";
}

.fa-location-slash:before {
  content: "";
}

.fa-lock:before {
  content: "";
}

.fa-lock-alt:before {
  content: "";
}

.fa-lock-open:before {
  content: "";
}

.fa-lock-open-alt:before {
  content: "";
}

.fa-long-arrow-alt-down:before {
  content: "";
}

.fa-long-arrow-alt-left:before {
  content: "";
}

.fa-long-arrow-alt-right:before {
  content: "";
}

.fa-long-arrow-alt-up:before {
  content: "";
}

.fa-long-arrow-down:before {
  content: "";
}

.fa-long-arrow-left:before {
  content: "";
}

.fa-long-arrow-right:before {
  content: "";
}

.fa-long-arrow-up:before {
  content: "";
}

.fa-loveseat:before {
  content: "";
}

.fa-low-vision:before {
  content: "";
}

.fa-luchador:before {
  content: "";
}

.fa-luggage-cart:before {
  content: "";
}

.fa-lungs:before {
  content: "";
}

.fa-lungs-virus:before {
  content: "";
}

.fa-lyft:before {
  content: "";
}

.fa-mace:before {
  content: "";
}

.fa-magento:before {
  content: "";
}

.fa-magic:before {
  content: "";
}

.fa-magnet:before {
  content: "";
}

.fa-mail-bulk:before {
  content: "";
}

.fa-mailbox:before {
  content: "";
}

.fa-mailchimp:before {
  content: "";
}

.fa-male:before {
  content: "";
}

.fa-mandalorian:before {
  content: "";
}

.fa-mandolin:before {
  content: "";
}

.fa-map:before {
  content: "";
}

.fa-map-marked:before {
  content: "";
}

.fa-map-marked-alt:before {
  content: "";
}

.fa-map-marker:before {
  content: "";
}

.fa-map-marker-alt:before {
  content: "";
}

.fa-map-marker-alt-slash:before {
  content: "";
}

.fa-map-marker-check:before {
  content: "";
}

.fa-map-marker-edit:before {
  content: "";
}

.fa-map-marker-exclamation:before {
  content: "";
}

.fa-map-marker-minus:before {
  content: "";
}

.fa-map-marker-plus:before {
  content: "";
}

.fa-map-marker-question:before {
  content: "";
}

.fa-map-marker-slash:before {
  content: "";
}

.fa-map-marker-smile:before {
  content: "";
}

.fa-map-marker-times:before {
  content: "";
}

.fa-map-pin:before {
  content: "";
}

.fa-map-signs:before {
  content: "";
}

.fa-markdown:before {
  content: "";
}

.fa-marker:before {
  content: "";
}

.fa-mars:before {
  content: "";
}

.fa-mars-double:before {
  content: "";
}

.fa-mars-stroke:before {
  content: "";
}

.fa-mars-stroke-h:before {
  content: "";
}

.fa-mars-stroke-v:before {
  content: "";
}

.fa-mask:before {
  content: "";
}

.fa-mastodon:before {
  content: "";
}

.fa-maxcdn:before {
  content: "";
}

.fa-mdb:before {
  content: "";
}

.fa-meat:before {
  content: "";
}

.fa-medal:before {
  content: "";
}

.fa-medapps:before {
  content: "";
}

.fa-medium:before {
  content: "";
}

.fa-medium-m:before {
  content: "";
}

.fa-medkit:before {
  content: "";
}

.fa-medrt:before {
  content: "";
}

.fa-meetup:before {
  content: "";
}

.fa-megaphone:before {
  content: "";
}

.fa-megaport:before {
  content: "";
}

.fa-meh:before {
  content: "";
}

.fa-meh-blank:before {
  content: "";
}

.fa-meh-rolling-eyes:before {
  content: "";
}

.fa-memory:before {
  content: "";
}

.fa-mendeley:before {
  content: "";
}

.fa-menorah:before {
  content: "";
}

.fa-mercury:before {
  content: "";
}

.fa-meteor:before {
  content: "";
}

.fa-microblog:before {
  content: "";
}

.fa-microchip:before {
  content: "";
}

.fa-microphone:before {
  content: "";
}

.fa-microphone-alt:before {
  content: "";
}

.fa-microphone-alt-slash:before {
  content: "";
}

.fa-microphone-slash:before {
  content: "";
}

.fa-microphone-stand:before {
  content: "";
}

.fa-microscope:before {
  content: "";
}

.fa-microsoft:before {
  content: "";
}

.fa-microwave:before {
  content: "";
}

.fa-mind-share:before {
  content: "";
}

.fa-minus:before {
  content: "";
}

.fa-minus-circle:before {
  content: "";
}

.fa-minus-hexagon:before {
  content: "";
}

.fa-minus-octagon:before {
  content: "";
}

.fa-minus-square:before {
  content: "";
}

.fa-mistletoe:before {
  content: "";
}

.fa-mitten:before {
  content: "";
}

.fa-mix:before {
  content: "";
}

.fa-mixcloud:before {
  content: "";
}

.fa-mixer:before {
  content: "";
}

.fa-mizuni:before {
  content: "";
}

.fa-mobile:before {
  content: "";
}

.fa-mobile-alt:before {
  content: "";
}

.fa-mobile-android:before {
  content: "";
}

.fa-mobile-android-alt:before {
  content: "";
}

.fa-modx:before {
  content: "";
}

.fa-monero:before {
  content: "";
}

.fa-money-bill:before {
  content: "";
}

.fa-money-bill-alt:before {
  content: "";
}

.fa-money-bill-wave:before {
  content: "";
}

.fa-money-bill-wave-alt:before {
  content: "";
}

.fa-money-check:before {
  content: "";
}

.fa-money-check-alt:before {
  content: "";
}

.fa-money-check-edit:before {
  content: "";
}

.fa-money-check-edit-alt:before {
  content: "";
}

.fa-monitor-heart-rate:before {
  content: "";
}

.fa-monkey:before {
  content: "";
}

.fa-monument:before {
  content: "";
}

.fa-moon:before {
  content: "";
}

.fa-moon-cloud:before {
  content: "";
}

.fa-moon-stars:before {
  content: "";
}

.fa-mortar-pestle:before {
  content: "";
}

.fa-mosque:before {
  content: "";
}

.fa-motorcycle:before {
  content: "";
}

.fa-mountain:before {
  content: "";
}

.fa-mountains:before {
  content: "";
}

.fa-mouse:before {
  content: "";
}

.fa-mouse-alt:before {
  content: "";
}

.fa-mouse-pointer:before {
  content: "";
}

.fa-mp3-player:before {
  content: "";
}

.fa-mug:before {
  content: "";
}

.fa-mug-hot:before {
  content: "";
}

.fa-mug-marshmallows:before {
  content: "";
}

.fa-mug-tea:before {
  content: "";
}

.fa-music:before {
  content: "";
}

.fa-music-alt:before {
  content: "";
}

.fa-music-alt-slash:before {
  content: "";
}

.fa-music-slash:before {
  content: "";
}

.fa-napster:before {
  content: "";
}

.fa-narwhal:before {
  content: "";
}

.fa-neos:before {
  content: "";
}

.fa-network-wired:before {
  content: "";
}

.fa-neuter:before {
  content: "";
}

.fa-newspaper:before {
  content: "";
}

.fa-nimblr:before {
  content: "";
}

.fa-node:before {
  content: "";
}

.fa-node-js:before {
  content: "";
}

.fa-not-equal:before {
  content: "";
}

.fa-notes-medical:before {
  content: "";
}

.fa-npm:before {
  content: "";
}

.fa-ns8:before {
  content: "";
}

.fa-nutritionix:before {
  content: "";
}

.fa-object-group:before {
  content: "";
}

.fa-object-ungroup:before {
  content: "";
}

.fa-octagon:before {
  content: "";
}

.fa-octopus-deploy:before {
  content: "";
}

.fa-odnoklassniki:before {
  content: "";
}

.fa-odnoklassniki-square:before {
  content: "";
}

.fa-oil-can:before {
  content: "";
}

.fa-oil-temp:before {
  content: "";
}

.fa-old-republic:before {
  content: "";
}

.fa-om:before {
  content: "";
}

.fa-omega:before {
  content: "";
}

.fa-opencart:before {
  content: "";
}

.fa-openid:before {
  content: "";
}

.fa-opera:before {
  content: "";
}

.fa-optin-monster:before {
  content: "";
}

.fa-orcid:before {
  content: "";
}

.fa-ornament:before {
  content: "";
}

.fa-osi:before {
  content: "";
}

.fa-otter:before {
  content: "";
}

.fa-outdent:before {
  content: "";
}

.fa-outlet:before {
  content: "";
}

.fa-oven:before {
  content: "";
}

.fa-overline:before {
  content: "";
}

.fa-page-break:before {
  content: "";
}

.fa-page4:before {
  content: "";
}

.fa-pagelines:before {
  content: "";
}

.fa-pager:before {
  content: "";
}

.fa-paint-brush:before {
  content: "";
}

.fa-paint-brush-alt:before {
  content: "";
}

.fa-paint-roller:before {
  content: "";
}

.fa-palette:before {
  content: "";
}

.fa-palfed:before {
  content: "";
}

.fa-pallet:before {
  content: "";
}

.fa-pallet-alt:before {
  content: "";
}

.fa-paper-plane:before {
  content: "";
}

.fa-paperclip:before {
  content: "";
}

.fa-parachute-box:before {
  content: "";
}

.fa-paragraph:before {
  content: "";
}

.fa-paragraph-rtl:before {
  content: "";
}

.fa-parking:before {
  content: "";
}

.fa-parking-circle:before {
  content: "";
}

.fa-parking-circle-slash:before {
  content: "";
}

.fa-parking-slash:before {
  content: "";
}

.fa-passport:before {
  content: "";
}

.fa-pastafarianism:before {
  content: "";
}

.fa-paste:before {
  content: "";
}

.fa-patreon:before {
  content: "";
}

.fa-pause:before {
  content: "";
}

.fa-pause-circle:before {
  content: "";
}

.fa-paw:before {
  content: "";
}

.fa-paw-alt:before {
  content: "";
}

.fa-paw-claws:before {
  content: "";
}

.fa-paypal:before {
  content: "";
}

.fa-peace:before {
  content: "";
}

.fa-pegasus:before {
  content: "";
}

.fa-pen:before {
  content: "";
}

.fa-pen-alt:before {
  content: "";
}

.fa-pen-fancy:before {
  content: "";
}

.fa-pen-nib:before {
  content: "";
}

.fa-pen-square:before {
  content: "";
}

.fa-pencil:before {
  content: "";
}

.fa-pencil-alt:before {
  content: "";
}

.fa-pencil-paintbrush:before {
  content: "";
}

.fa-pencil-ruler:before {
  content: "";
}

.fa-pennant:before {
  content: "";
}

.fa-penny-arcade:before {
  content: "";
}

.fa-people-arrows:before {
  content: "";
}

.fa-people-carry:before {
  content: "";
}

.fa-pepper-hot:before {
  content: "";
}

.fa-perbyte:before {
  content: "";
}

.fa-percent:before {
  content: "";
}

.fa-percentage:before {
  content: "";
}

.fa-periscope:before {
  content: "";
}

.fa-person-booth:before {
  content: "";
}

.fa-person-carry:before {
  content: "";
}

.fa-person-dolly:before {
  content: "";
}

.fa-person-dolly-empty:before {
  content: "";
}

.fa-person-sign:before {
  content: "";
}

.fa-phabricator:before {
  content: "";
}

.fa-phoenix-framework:before {
  content: "";
}

.fa-phoenix-squadron:before {
  content: "";
}

.fa-phone:before {
  content: "";
}

.fa-phone-alt:before {
  content: "";
}

.fa-phone-laptop:before {
  content: "";
}

.fa-phone-office:before {
  content: "";
}

.fa-phone-plus:before {
  content: "";
}

.fa-phone-rotary:before {
  content: "";
}

.fa-phone-slash:before {
  content: "";
}

.fa-phone-square:before {
  content: "";
}

.fa-phone-square-alt:before {
  content: "";
}

.fa-phone-volume:before {
  content: "";
}

.fa-photo-video:before {
  content: "";
}

.fa-php:before {
  content: "";
}

.fa-pi:before {
  content: "";
}

.fa-piano:before {
  content: "";
}

.fa-piano-keyboard:before {
  content: "";
}

.fa-pie:before {
  content: "";
}

.fa-pied-piper:before {
  content: "";
}

.fa-pied-piper-alt:before {
  content: "";
}

.fa-pied-piper-hat:before {
  content: "";
}

.fa-pied-piper-pp:before {
  content: "";
}

.fa-pied-piper-square:before {
  content: "";
}

.fa-pig:before {
  content: "";
}

.fa-piggy-bank:before {
  content: "";
}

.fa-pills:before {
  content: "";
}

.fa-pinterest:before {
  content: "";
}

.fa-pinterest-p:before {
  content: "";
}

.fa-pinterest-square:before {
  content: "";
}

.fa-pizza:before {
  content: "";
}

.fa-pizza-slice:before {
  content: "";
}

.fa-place-of-worship:before {
  content: "";
}

.fa-plane:before {
  content: "";
}

.fa-plane-alt:before {
  content: "";
}

.fa-plane-arrival:before {
  content: "";
}

.fa-plane-departure:before {
  content: "";
}

.fa-plane-slash:before {
  content: "";
}

.fa-planet-moon:before {
  content: "";
}

.fa-planet-ringed:before {
  content: "";
}

.fa-play:before {
  content: "";
}

.fa-play-circle:before {
  content: "";
}

.fa-playstation:before {
  content: "";
}

.fa-plug:before {
  content: "";
}

.fa-plus:before {
  content: "";
}

.fa-plus-circle:before {
  content: "";
}

.fa-plus-hexagon:before {
  content: "";
}

.fa-plus-octagon:before {
  content: "";
}

.fa-plus-square:before {
  content: "";
}

.fa-podcast:before {
  content: "";
}

.fa-podium:before {
  content: "";
}

.fa-podium-star:before {
  content: "";
}

.fa-police-box:before {
  content: "";
}

.fa-poll:before {
  content: "";
}

.fa-poll-h:before {
  content: "";
}

.fa-poll-people:before {
  content: "";
}

.fa-poo:before {
  content: "";
}

.fa-poo-storm:before {
  content: "";
}

.fa-poop:before {
  content: "";
}

.fa-popcorn:before {
  content: "";
}

.fa-portal-enter:before {
  content: "";
}

.fa-portal-exit:before {
  content: "";
}

.fa-portrait:before {
  content: "";
}

.fa-pound-sign:before {
  content: "";
}

.fa-power-off:before {
  content: "";
}

.fa-pray:before {
  content: "";
}

.fa-praying-hands:before {
  content: "";
}

.fa-prescription:before {
  content: "";
}

.fa-prescription-bottle:before {
  content: "";
}

.fa-prescription-bottle-alt:before {
  content: "";
}

.fa-presentation:before {
  content: "";
}

.fa-print:before {
  content: "";
}

.fa-print-search:before {
  content: "";
}

.fa-print-slash:before {
  content: "";
}

.fa-procedures:before {
  content: "";
}

.fa-product-hunt:before {
  content: "";
}

.fa-project-diagram:before {
  content: "";
}

.fa-projector:before {
  content: "";
}

.fa-pump-medical:before {
  content: "";
}

.fa-pump-soap:before {
  content: "";
}

.fa-pumpkin:before {
  content: "";
}

.fa-pushed:before {
  content: "";
}

.fa-puzzle-piece:before {
  content: "";
}

.fa-python:before {
  content: "";
}

.fa-qq:before {
  content: "";
}

.fa-qrcode:before {
  content: "";
}

.fa-question:before {
  content: "";
}

.fa-question-circle:before {
  content: "";
}

.fa-question-square:before {
  content: "";
}

.fa-quidditch:before {
  content: "";
}

.fa-quinscape:before {
  content: "";
}

.fa-quora:before {
  content: "";
}

.fa-quote-left:before {
  content: "";
}

.fa-quote-right:before {
  content: "";
}

.fa-quran:before {
  content: "";
}

.fa-r-project:before {
  content: "";
}

.fa-rabbit:before {
  content: "";
}

.fa-rabbit-fast:before {
  content: "";
}

.fa-racquet:before {
  content: "";
}

.fa-radar:before {
  content: "";
}

.fa-radiation:before {
  content: "";
}

.fa-radiation-alt:before {
  content: "";
}

.fa-radio:before {
  content: "";
}

.fa-radio-alt:before {
  content: "";
}

.fa-rainbow:before {
  content: "";
}

.fa-raindrops:before {
  content: "";
}

.fa-ram:before {
  content: "";
}

.fa-ramp-loading:before {
  content: "";
}

.fa-random:before {
  content: "";
}

.fa-raspberry-pi:before {
  content: "";
}

.fa-ravelry:before {
  content: "";
}

.fa-raygun:before {
  content: "";
}

.fa-react:before {
  content: "";
}

.fa-reacteurope:before {
  content: "";
}

.fa-readme:before {
  content: "";
}

.fa-rebel:before {
  content: "";
}

.fa-receipt:before {
  content: "";
}

.fa-record-vinyl:before {
  content: "";
}

.fa-rectangle-landscape:before {
  content: "";
}

.fa-rectangle-portrait:before {
  content: "";
}

.fa-rectangle-wide:before {
  content: "";
}

.fa-recycle:before {
  content: "";
}

.fa-red-river:before {
  content: "";
}

.fa-reddit:before {
  content: "";
}

.fa-reddit-alien:before {
  content: "";
}

.fa-reddit-square:before {
  content: "";
}

.fa-redhat:before {
  content: "";
}

.fa-redo:before {
  content: "";
}

.fa-redo-alt:before {
  content: "";
}

.fa-refrigerator:before {
  content: "";
}

.fa-registered:before {
  content: "";
}

.fa-remove-format:before {
  content: "";
}

.fa-renren:before {
  content: "";
}

.fa-repeat:before {
  content: "";
}

.fa-repeat-1:before {
  content: "";
}

.fa-repeat-1-alt:before {
  content: "";
}

.fa-repeat-alt:before {
  content: "";
}

.fa-reply:before {
  content: "";
}

.fa-reply-all:before {
  content: "";
}

.fa-replyd:before {
  content: "";
}

.fa-republican:before {
  content: "";
}

.fa-researchgate:before {
  content: "";
}

.fa-resolving:before {
  content: "";
}

.fa-restroom:before {
  content: "";
}

.fa-retweet:before {
  content: "";
}

.fa-retweet-alt:before {
  content: "";
}

.fa-rev:before {
  content: "";
}

.fa-ribbon:before {
  content: "";
}

.fa-ring:before {
  content: "";
}

.fa-rings-wedding:before {
  content: "";
}

.fa-road:before {
  content: "";
}

.fa-robot:before {
  content: "";
}

.fa-rocket:before {
  content: "";
}

.fa-rocket-launch:before {
  content: "";
}

.fa-rocketchat:before {
  content: "";
}

.fa-rockrms:before {
  content: "";
}

.fa-route:before {
  content: "";
}

.fa-route-highway:before {
  content: "";
}

.fa-route-interstate:before {
  content: "";
}

.fa-router:before {
  content: "";
}

.fa-rss:before {
  content: "";
}

.fa-rss-square:before {
  content: "";
}

.fa-ruble-sign:before {
  content: "";
}

.fa-ruler:before {
  content: "";
}

.fa-ruler-combined:before {
  content: "";
}

.fa-ruler-horizontal:before {
  content: "";
}

.fa-ruler-triangle:before {
  content: "";
}

.fa-ruler-vertical:before {
  content: "";
}

.fa-running:before {
  content: "";
}

.fa-rupee-sign:before {
  content: "";
}

.fa-rust:before {
  content: "";
}

.fa-rv:before {
  content: "";
}

.fa-sack:before {
  content: "";
}

.fa-sack-dollar:before {
  content: "";
}

.fa-sad-cry:before {
  content: "";
}

.fa-sad-tear:before {
  content: "";
}

.fa-safari:before {
  content: "";
}

.fa-salad:before {
  content: "";
}

.fa-salesforce:before {
  content: "";
}

.fa-sandwich:before {
  content: "";
}

.fa-sass:before {
  content: "";
}

.fa-satellite:before {
  content: "";
}

.fa-satellite-dish:before {
  content: "";
}

.fa-sausage:before {
  content: "";
}

.fa-save:before {
  content: "";
}

.fa-sax-hot:before {
  content: "";
}

.fa-saxophone:before {
  content: "";
}

.fa-scalpel:before {
  content: "";
}

.fa-scalpel-path:before {
  content: "";
}

.fa-scanner:before {
  content: "";
}

.fa-scanner-image:before {
  content: "";
}

.fa-scanner-keyboard:before {
  content: "";
}

.fa-scanner-touchscreen:before {
  content: "";
}

.fa-scarecrow:before {
  content: "";
}

.fa-scarf:before {
  content: "";
}

.fa-schlix:before {
  content: "";
}

.fa-school:before {
  content: "";
}

.fa-screwdriver:before {
  content: "";
}

.fa-scribd:before {
  content: "";
}

.fa-scroll:before {
  content: "";
}

.fa-scroll-old:before {
  content: "";
}

.fa-scrubber:before {
  content: "";
}

.fa-scythe:before {
  content: "";
}

.fa-sd-card:before {
  content: "";
}

.fa-search:before {
  content: "";
}

.fa-search-dollar:before {
  content: "";
}

.fa-search-location:before {
  content: "";
}

.fa-search-minus:before {
  content: "";
}

.fa-search-plus:before {
  content: "";
}

.fa-searchengin:before {
  content: "";
}

.fa-seedling:before {
  content: "";
}

.fa-sellcast:before {
  content: "";
}

.fa-sellsy:before {
  content: "";
}

.fa-send-back:before {
  content: "";
}

.fa-send-backward:before {
  content: "";
}

.fa-sensor:before {
  content: "";
}

.fa-sensor-alert:before {
  content: "";
}

.fa-sensor-fire:before {
  content: "";
}

.fa-sensor-on:before {
  content: "";
}

.fa-sensor-smoke:before {
  content: "";
}

.fa-server:before {
  content: "";
}

.fa-servicestack:before {
  content: "";
}

.fa-shapes:before {
  content: "";
}

.fa-share:before {
  content: "";
}

.fa-share-all:before {
  content: "";
}

.fa-share-alt:before {
  content: "";
}

.fa-share-alt-square:before {
  content: "";
}

.fa-share-square:before {
  content: "";
}

.fa-sheep:before {
  content: "";
}

.fa-shekel-sign:before {
  content: "";
}

.fa-shield:before {
  content: "";
}

.fa-shield-alt:before {
  content: "";
}

.fa-shield-check:before {
  content: "";
}

.fa-shield-cross:before {
  content: "";
}

.fa-shield-virus:before {
  content: "";
}

.fa-ship:before {
  content: "";
}

.fa-shipping-fast:before {
  content: "";
}

.fa-shipping-timed:before {
  content: "";
}

.fa-shirtsinbulk:before {
  content: "";
}

.fa-shish-kebab:before {
  content: "";
}

.fa-shoe-prints:before {
  content: "";
}

.fa-shopify:before {
  content: "";
}

.fa-shopping-bag:before {
  content: "";
}

.fa-shopping-basket:before {
  content: "";
}

.fa-shopping-cart:before {
  content: "";
}

.fa-shopware:before {
  content: "";
}

.fa-shovel:before {
  content: "";
}

.fa-shovel-snow:before {
  content: "";
}

.fa-shower:before {
  content: "";
}

.fa-shredder:before {
  content: "";
}

.fa-shuttle-van:before {
  content: "";
}

.fa-shuttlecock:before {
  content: "";
}

.fa-sickle:before {
  content: "";
}

.fa-sigma:before {
  content: "";
}

.fa-sign:before {
  content: "";
}

.fa-sign-in:before {
  content: "";
}

.fa-sign-in-alt:before {
  content: "";
}

.fa-sign-language:before {
  content: "";
}

.fa-sign-out:before {
  content: "";
}

.fa-sign-out-alt:before {
  content: "";
}

.fa-signal:before {
  content: "";
}

.fa-signal-1:before {
  content: "";
}

.fa-signal-2:before {
  content: "";
}

.fa-signal-3:before {
  content: "";
}

.fa-signal-4:before {
  content: "";
}

.fa-signal-alt:before {
  content: "";
}

.fa-signal-alt-1:before {
  content: "";
}

.fa-signal-alt-2:before {
  content: "";
}

.fa-signal-alt-3:before {
  content: "";
}

.fa-signal-alt-slash:before {
  content: "";
}

.fa-signal-slash:before {
  content: "";
}

.fa-signal-stream:before {
  content: "";
}

.fa-signature:before {
  content: "";
}

.fa-sim-card:before {
  content: "";
}

.fa-simplybuilt:before {
  content: "";
}

.fa-sink:before {
  content: "";
}

.fa-siren:before {
  content: "";
}

.fa-siren-on:before {
  content: "";
}

.fa-sistrix:before {
  content: "";
}

.fa-sitemap:before {
  content: "";
}

.fa-sith:before {
  content: "";
}

.fa-skating:before {
  content: "";
}

.fa-skeleton:before {
  content: "";
}

.fa-sketch:before {
  content: "";
}

.fa-ski-jump:before {
  content: "";
}

.fa-ski-lift:before {
  content: "";
}

.fa-skiing:before {
  content: "";
}

.fa-skiing-nordic:before {
  content: "";
}

.fa-skull:before {
  content: "";
}

.fa-skull-cow:before {
  content: "";
}

.fa-skull-crossbones:before {
  content: "";
}

.fa-skyatlas:before {
  content: "";
}

.fa-skype:before {
  content: "";
}

.fa-slack:before {
  content: "";
}

.fa-slack-hash:before {
  content: "";
}

.fa-slash:before {
  content: "";
}

.fa-sledding:before {
  content: "";
}

.fa-sleigh:before {
  content: "";
}

.fa-sliders-h:before {
  content: "";
}

.fa-sliders-h-square:before {
  content: "";
}

.fa-sliders-v:before {
  content: "";
}

.fa-sliders-v-square:before {
  content: "";
}

.fa-slideshare:before {
  content: "";
}

.fa-smile:before {
  content: "";
}

.fa-smile-beam:before {
  content: "";
}

.fa-smile-plus:before {
  content: "";
}

.fa-smile-wink:before {
  content: "";
}

.fa-smog:before {
  content: "";
}

.fa-smoke:before {
  content: "";
}

.fa-smoking:before {
  content: "";
}

.fa-smoking-ban:before {
  content: "";
}

.fa-sms:before {
  content: "";
}

.fa-snake:before {
  content: "";
}

.fa-snapchat:before {
  content: "";
}

.fa-snapchat-ghost:before {
  content: "";
}

.fa-snapchat-square:before {
  content: "";
}

.fa-snooze:before {
  content: "";
}

.fa-snow-blowing:before {
  content: "";
}

.fa-snowboarding:before {
  content: "";
}

.fa-snowflake:before {
  content: "";
}

.fa-snowflakes:before {
  content: "";
}

.fa-snowman:before {
  content: "";
}

.fa-snowmobile:before {
  content: "";
}

.fa-snowplow:before {
  content: "";
}

.fa-soap:before {
  content: "";
}

.fa-socks:before {
  content: "";
}

.fa-solar-panel:before {
  content: "";
}

.fa-solar-system:before {
  content: "";
}

.fa-sort:before {
  content: "";
}

.fa-sort-alpha-down:before {
  content: "";
}

.fa-sort-alpha-down-alt:before {
  content: "";
}

.fa-sort-alpha-up:before {
  content: "";
}

.fa-sort-alpha-up-alt:before {
  content: "";
}

.fa-sort-alt:before {
  content: "";
}

.fa-sort-amount-down:before {
  content: "";
}

.fa-sort-amount-down-alt:before {
  content: "";
}

.fa-sort-amount-up:before {
  content: "";
}

.fa-sort-amount-up-alt:before {
  content: "";
}

.fa-sort-circle:before {
  content: "";
}

.fa-sort-circle-down:before {
  content: "";
}

.fa-sort-circle-up:before {
  content: "";
}

.fa-sort-down:before {
  content: "";
}

.fa-sort-numeric-down:before {
  content: "";
}

.fa-sort-numeric-down-alt:before {
  content: "";
}

.fa-sort-numeric-up:before {
  content: "";
}

.fa-sort-numeric-up-alt:before {
  content: "";
}

.fa-sort-shapes-down:before {
  content: "";
}

.fa-sort-shapes-down-alt:before {
  content: "";
}

.fa-sort-shapes-up:before {
  content: "";
}

.fa-sort-shapes-up-alt:before {
  content: "";
}

.fa-sort-size-down:before {
  content: "";
}

.fa-sort-size-down-alt:before {
  content: "";
}

.fa-sort-size-up:before {
  content: "";
}

.fa-sort-size-up-alt:before {
  content: "";
}

.fa-sort-up:before {
  content: "";
}

.fa-soundcloud:before {
  content: "";
}

.fa-soup:before {
  content: "";
}

.fa-sourcetree:before {
  content: "";
}

.fa-spa:before {
  content: "";
}

.fa-space-shuttle:before {
  content: "";
}

.fa-space-station-moon:before {
  content: "";
}

.fa-space-station-moon-alt:before {
  content: "";
}

.fa-spade:before {
  content: "";
}

.fa-sparkles:before {
  content: "";
}

.fa-speakap:before {
  content: "";
}

.fa-speaker:before {
  content: "";
}

.fa-speaker-deck:before {
  content: "";
}

.fa-speakers:before {
  content: "";
}

.fa-spell-check:before {
  content: "";
}

.fa-spider:before {
  content: "";
}

.fa-spider-black-widow:before {
  content: "";
}

.fa-spider-web:before {
  content: "";
}

.fa-spinner:before {
  content: "";
}

.fa-spinner-third:before {
  content: "";
}

.fa-splotch:before {
  content: "";
}

.fa-spotify:before {
  content: "";
}

.fa-spray-can:before {
  content: "";
}

.fa-sprinkler:before {
  content: "";
}

.fa-square:before {
  content: "";
}

.fa-square-full:before {
  content: "";
}

.fa-square-root:before {
  content: "";
}

.fa-square-root-alt:before {
  content: "";
}

.fa-squarespace:before {
  content: "";
}

.fa-squirrel:before {
  content: "";
}

.fa-stack-exchange:before {
  content: "";
}

.fa-stack-overflow:before {
  content: "";
}

.fa-stackpath:before {
  content: "";
}

.fa-staff:before {
  content: "";
}

.fa-stamp:before {
  content: "";
}

.fa-star:before {
  content: "";
}

.fa-star-and-crescent:before {
  content: "";
}

.fa-star-christmas:before {
  content: "";
}

.fa-star-exclamation:before {
  content: "";
}

.fa-star-half:before {
  content: "";
}

.fa-star-half-alt:before {
  content: "";
}

.fa-star-of-david:before {
  content: "";
}

.fa-star-of-life:before {
  content: "";
}

.fa-star-shooting:before {
  content: "";
}

.fa-starfighter:before {
  content: "";
}

.fa-starfighter-alt:before {
  content: "";
}

.fa-stars:before {
  content: "";
}

.fa-starship:before {
  content: "";
}

.fa-starship-freighter:before {
  content: "";
}

.fa-staylinked:before {
  content: "";
}

.fa-steak:before {
  content: "";
}

.fa-steam:before {
  content: "";
}

.fa-steam-square:before {
  content: "";
}

.fa-steam-symbol:before {
  content: "";
}

.fa-steering-wheel:before {
  content: "";
}

.fa-step-backward:before {
  content: "";
}

.fa-step-forward:before {
  content: "";
}

.fa-stethoscope:before {
  content: "";
}

.fa-sticker-mule:before {
  content: "";
}

.fa-sticky-note:before {
  content: "";
}

.fa-stocking:before {
  content: "";
}

.fa-stomach:before {
  content: "";
}

.fa-stop:before {
  content: "";
}

.fa-stop-circle:before {
  content: "";
}

.fa-stopwatch:before {
  content: "";
}

.fa-stopwatch-20:before {
  content: "";
}

.fa-store:before {
  content: "";
}

.fa-store-alt:before {
  content: "";
}

.fa-store-alt-slash:before {
  content: "";
}

.fa-store-slash:before {
  content: "";
}

.fa-strava:before {
  content: "";
}

.fa-stream:before {
  content: "";
}

.fa-street-view:before {
  content: "";
}

.fa-stretcher:before {
  content: "";
}

.fa-strikethrough:before {
  content: "";
}

.fa-stripe:before {
  content: "";
}

.fa-stripe-s:before {
  content: "";
}

.fa-stroopwafel:before {
  content: "";
}

.fa-studiovinari:before {
  content: "";
}

.fa-stumbleupon:before {
  content: "";
}

.fa-stumbleupon-circle:before {
  content: "";
}

.fa-subscript:before {
  content: "";
}

.fa-subway:before {
  content: "";
}

.fa-suitcase:before {
  content: "";
}

.fa-suitcase-rolling:before {
  content: "";
}

.fa-sun:before {
  content: "";
}

.fa-sun-cloud:before {
  content: "";
}

.fa-sun-dust:before {
  content: "";
}

.fa-sun-haze:before {
  content: "";
}

.fa-sunglasses:before {
  content: "";
}

.fa-sunrise:before {
  content: "";
}

.fa-sunset:before {
  content: "";
}

.fa-superpowers:before {
  content: "";
}

.fa-superscript:before {
  content: "";
}

.fa-supple:before {
  content: "";
}

.fa-surprise:before {
  content: "";
}

.fa-suse:before {
  content: "";
}

.fa-swatchbook:before {
  content: "";
}

.fa-swift:before {
  content: "";
}

.fa-swimmer:before {
  content: "";
}

.fa-swimming-pool:before {
  content: "";
}

.fa-sword:before {
  content: "";
}

.fa-sword-laser:before {
  content: "";
}

.fa-sword-laser-alt:before {
  content: "";
}

.fa-swords:before {
  content: "";
}

.fa-swords-laser:before {
  content: "";
}

.fa-symfony:before {
  content: "";
}

.fa-synagogue:before {
  content: "";
}

.fa-sync:before {
  content: "";
}

.fa-sync-alt:before {
  content: "";
}

.fa-syringe:before {
  content: "";
}

.fa-table:before {
  content: "";
}

.fa-table-tennis:before {
  content: "";
}

.fa-tablet:before {
  content: "";
}

.fa-tablet-alt:before {
  content: "";
}

.fa-tablet-android:before {
  content: "";
}

.fa-tablet-android-alt:before {
  content: "";
}

.fa-tablet-rugged:before {
  content: "";
}

.fa-tablets:before {
  content: "";
}

.fa-tachometer:before {
  content: "";
}

.fa-tachometer-alt:before {
  content: "";
}

.fa-tachometer-alt-average:before {
  content: "";
}

.fa-tachometer-alt-fast:before {
  content: "";
}

.fa-tachometer-alt-fastest:before {
  content: "";
}

.fa-tachometer-alt-slow:before {
  content: "";
}

.fa-tachometer-alt-slowest:before {
  content: "";
}

.fa-tachometer-average:before {
  content: "";
}

.fa-tachometer-fast:before {
  content: "";
}

.fa-tachometer-fastest:before {
  content: "";
}

.fa-tachometer-slow:before {
  content: "";
}

.fa-tachometer-slowest:before {
  content: "";
}

.fa-taco:before {
  content: "";
}

.fa-tag:before {
  content: "";
}

.fa-tags:before {
  content: "";
}

.fa-tally:before {
  content: "";
}

.fa-tanakh:before {
  content: "";
}

.fa-tape:before {
  content: "";
}

.fa-tasks:before {
  content: "";
}

.fa-tasks-alt:before {
  content: "";
}

.fa-taxi:before {
  content: "";
}

.fa-teamspeak:before {
  content: "";
}

.fa-teeth:before {
  content: "";
}

.fa-teeth-open:before {
  content: "";
}

.fa-telegram:before {
  content: "";
}

.fa-telegram-plane:before {
  content: "";
}

.fa-telescope:before {
  content: "";
}

.fa-temperature-down:before {
  content: "";
}

.fa-temperature-frigid:before {
  content: "";
}

.fa-temperature-high:before {
  content: "";
}

.fa-temperature-hot:before {
  content: "";
}

.fa-temperature-low:before {
  content: "";
}

.fa-temperature-up:before {
  content: "";
}

.fa-tencent-weibo:before {
  content: "";
}

.fa-tenge:before {
  content: "";
}

.fa-tennis-ball:before {
  content: "";
}

.fa-terminal:before {
  content: "";
}

.fa-text:before {
  content: "";
}

.fa-text-height:before {
  content: "";
}

.fa-text-size:before {
  content: "";
}

.fa-text-width:before {
  content: "";
}

.fa-th:before {
  content: "";
}

.fa-th-large:before {
  content: "";
}

.fa-th-list:before {
  content: "";
}

.fa-the-red-yeti:before {
  content: "";
}

.fa-theater-masks:before {
  content: "";
}

.fa-themeco:before {
  content: "";
}

.fa-themeisle:before {
  content: "";
}

.fa-thermometer:before {
  content: "";
}

.fa-thermometer-empty:before {
  content: "";
}

.fa-thermometer-full:before {
  content: "";
}

.fa-thermometer-half:before {
  content: "";
}

.fa-thermometer-quarter:before {
  content: "";
}

.fa-thermometer-three-quarters:before {
  content: "";
}

.fa-theta:before {
  content: "";
}

.fa-think-peaks:before {
  content: "";
}

.fa-thumbs-down:before {
  content: "";
}

.fa-thumbs-up:before {
  content: "";
}

.fa-thumbtack:before {
  content: "";
}

.fa-thunderstorm:before {
  content: "";
}

.fa-thunderstorm-moon:before {
  content: "";
}

.fa-thunderstorm-sun:before {
  content: "";
}

.fa-ticket:before {
  content: "";
}

.fa-ticket-alt:before {
  content: "";
}

.fa-tiktok:before {
  content: "";
}

.fa-tilde:before {
  content: "";
}

.fa-times:before {
  content: "";
}

.fa-times-circle:before {
  content: "";
}

.fa-times-hexagon:before {
  content: "";
}

.fa-times-octagon:before {
  content: "";
}

.fa-times-square:before {
  content: "";
}

.fa-tint:before {
  content: "";
}

.fa-tint-slash:before {
  content: "";
}

.fa-tire:before {
  content: "";
}

.fa-tire-flat:before {
  content: "";
}

.fa-tire-pressure-warning:before {
  content: "";
}

.fa-tire-rugged:before {
  content: "";
}

.fa-tired:before {
  content: "";
}

.fa-toggle-off:before {
  content: "";
}

.fa-toggle-on:before {
  content: "";
}

.fa-toilet:before {
  content: "";
}

.fa-toilet-paper:before {
  content: "";
}

.fa-toilet-paper-alt:before {
  content: "";
}

.fa-toilet-paper-slash:before {
  content: "";
}

.fa-tombstone:before {
  content: "";
}

.fa-tombstone-alt:before {
  content: "";
}

.fa-toolbox:before {
  content: "";
}

.fa-tools:before {
  content: "";
}

.fa-tooth:before {
  content: "";
}

.fa-toothbrush:before {
  content: "";
}

.fa-torah:before {
  content: "";
}

.fa-torii-gate:before {
  content: "";
}

.fa-tornado:before {
  content: "";
}

.fa-tractor:before {
  content: "";
}

.fa-trade-federation:before {
  content: "";
}

.fa-trademark:before {
  content: "";
}

.fa-traffic-cone:before {
  content: "";
}

.fa-traffic-light:before {
  content: "";
}

.fa-traffic-light-go:before {
  content: "";
}

.fa-traffic-light-slow:before {
  content: "";
}

.fa-traffic-light-stop:before {
  content: "";
}

.fa-trailer:before {
  content: "";
}

.fa-train:before {
  content: "";
}

.fa-tram:before {
  content: "";
}

.fa-transgender:before {
  content: "";
}

.fa-transgender-alt:before {
  content: "";
}

.fa-transporter:before {
  content: "";
}

.fa-transporter-1:before {
  content: "";
}

.fa-transporter-2:before {
  content: "";
}

.fa-transporter-3:before {
  content: "";
}

.fa-transporter-empty:before {
  content: "";
}

.fa-trash:before {
  content: "";
}

.fa-trash-alt:before {
  content: "";
}

.fa-trash-restore:before {
  content: "";
}

.fa-trash-restore-alt:before {
  content: "";
}

.fa-trash-undo:before {
  content: "";
}

.fa-trash-undo-alt:before {
  content: "";
}

.fa-treasure-chest:before {
  content: "";
}

.fa-tree:before {
  content: "";
}

.fa-tree-alt:before {
  content: "";
}

.fa-tree-christmas:before {
  content: "";
}

.fa-tree-decorated:before {
  content: "";
}

.fa-tree-large:before {
  content: "";
}

.fa-tree-palm:before {
  content: "";
}

.fa-trees:before {
  content: "";
}

.fa-trello:before {
  content: "";
}

.fa-triangle:before {
  content: "";
}

.fa-triangle-music:before {
  content: "";
}

.fa-tripadvisor:before {
  content: "";
}

.fa-trophy:before {
  content: "";
}

.fa-trophy-alt:before {
  content: "";
}

.fa-truck:before {
  content: "";
}

.fa-truck-container:before {
  content: "";
}

.fa-truck-couch:before {
  content: "";
}

.fa-truck-loading:before {
  content: "";
}

.fa-truck-monster:before {
  content: "";
}

.fa-truck-moving:before {
  content: "";
}

.fa-truck-pickup:before {
  content: "";
}

.fa-truck-plow:before {
  content: "";
}

.fa-truck-ramp:before {
  content: "";
}

.fa-trumpet:before {
  content: "";
}

.fa-tshirt:before {
  content: "";
}

.fa-tty:before {
  content: "";
}

.fa-tumblr:before {
  content: "";
}

.fa-tumblr-square:before {
  content: "";
}

.fa-turkey:before {
  content: "";
}

.fa-turntable:before {
  content: "";
}

.fa-turtle:before {
  content: "";
}

.fa-tv:before {
  content: "";
}

.fa-tv-alt:before {
  content: "";
}

.fa-tv-music:before {
  content: "";
}

.fa-tv-retro:before {
  content: "";
}

.fa-twitch:before {
  content: "";
}

.fa-twitter:before {
  content: "";
}

.fa-twitter-square:before {
  content: "";
}

.fa-typewriter:before {
  content: "";
}

.fa-typo3:before {
  content: "";
}

.fa-uber:before {
  content: "";
}

.fa-ubuntu:before {
  content: "";
}

.fa-ufo:before {
  content: "";
}

.fa-ufo-beam:before {
  content: "";
}

.fa-uikit:before {
  content: "";
}

.fa-umbraco:before {
  content: "";
}

.fa-umbrella:before {
  content: "";
}

.fa-umbrella-beach:before {
  content: "";
}

.fa-uncharted:before {
  content: "";
}

.fa-underline:before {
  content: "";
}

.fa-undo:before {
  content: "";
}

.fa-undo-alt:before {
  content: "";
}

.fa-unicorn:before {
  content: "";
}

.fa-union:before {
  content: "";
}

.fa-uniregistry:before {
  content: "";
}

.fa-unity:before {
  content: "";
}

.fa-universal-access:before {
  content: "";
}

.fa-university:before {
  content: "";
}

.fa-unlink:before {
  content: "";
}

.fa-unlock:before {
  content: "";
}

.fa-unlock-alt:before {
  content: "";
}

.fa-unsplash:before {
  content: "";
}

.fa-untappd:before {
  content: "";
}

.fa-upload:before {
  content: "";
}

.fa-ups:before {
  content: "";
}

.fa-usb:before {
  content: "";
}

.fa-usb-drive:before {
  content: "";
}

.fa-usd-circle:before {
  content: "";
}

.fa-usd-square:before {
  content: "";
}

.fa-user:before {
  content: "";
}

.fa-user-alien:before {
  content: "";
}

.fa-user-alt:before {
  content: "";
}

.fa-user-alt-slash:before {
  content: "";
}

.fa-user-astronaut:before {
  content: "";
}

.fa-user-chart:before {
  content: "";
}

.fa-user-check:before {
  content: "";
}

.fa-user-circle:before {
  content: "";
}

.fa-user-clock:before {
  content: "";
}

.fa-user-cog:before {
  content: "";
}

.fa-user-cowboy:before {
  content: "";
}

.fa-user-crown:before {
  content: "";
}

.fa-user-edit:before {
  content: "";
}

.fa-user-friends:before {
  content: "";
}

.fa-user-graduate:before {
  content: "";
}

.fa-user-hard-hat:before {
  content: "";
}

.fa-user-headset:before {
  content: "";
}

.fa-user-injured:before {
  content: "";
}

.fa-user-lock:before {
  content: "";
}

.fa-user-md:before {
  content: "";
}

.fa-user-md-chat:before {
  content: "";
}

.fa-user-minus:before {
  content: "";
}

.fa-user-music:before {
  content: "";
}

.fa-user-ninja:before {
  content: "";
}

.fa-user-nurse:before {
  content: "";
}

.fa-user-plus:before {
  content: "";
}

.fa-user-robot:before {
  content: "";
}

.fa-user-secret:before {
  content: "";
}

.fa-user-shield:before {
  content: "";
}

.fa-user-slash:before {
  content: "";
}

.fa-user-tag:before {
  content: "";
}

.fa-user-tie:before {
  content: "";
}

.fa-user-times:before {
  content: "";
}

.fa-user-unlock:before {
  content: "";
}

.fa-user-visor:before {
  content: "";
}

.fa-users:before {
  content: "";
}

.fa-users-class:before {
  content: "";
}

.fa-users-cog:before {
  content: "";
}

.fa-users-crown:before {
  content: "";
}

.fa-users-medical:before {
  content: "";
}

.fa-users-slash:before {
  content: "";
}

.fa-usps:before {
  content: "";
}

.fa-ussunnah:before {
  content: "";
}

.fa-utensil-fork:before {
  content: "";
}

.fa-utensil-knife:before {
  content: "";
}

.fa-utensil-spoon:before {
  content: "";
}

.fa-utensils:before {
  content: "";
}

.fa-utensils-alt:before {
  content: "";
}

.fa-vaadin:before {
  content: "";
}

.fa-vacuum:before {
  content: "";
}

.fa-vacuum-robot:before {
  content: "";
}

.fa-value-absolute:before {
  content: "";
}

.fa-vector-square:before {
  content: "";
}

.fa-venus:before {
  content: "";
}

.fa-venus-double:before {
  content: "";
}

.fa-venus-mars:before {
  content: "";
}

.fa-vest:before {
  content: "";
}

.fa-vest-patches:before {
  content: "";
}

.fa-vhs:before {
  content: "";
}

.fa-viacoin:before {
  content: "";
}

.fa-viadeo:before {
  content: "";
}

.fa-viadeo-square:before {
  content: "";
}

.fa-vial:before {
  content: "";
}

.fa-vials:before {
  content: "";
}

.fa-viber:before {
  content: "";
}

.fa-video:before {
  content: "";
}

.fa-video-plus:before {
  content: "";
}

.fa-video-slash:before {
  content: "";
}

.fa-vihara:before {
  content: "";
}

.fa-vimeo:before {
  content: "";
}

.fa-vimeo-square:before {
  content: "";
}

.fa-vimeo-v:before {
  content: "";
}

.fa-vine:before {
  content: "";
}

.fa-violin:before {
  content: "";
}

.fa-virus:before {
  content: "";
}

.fa-virus-slash:before {
  content: "";
}

.fa-viruses:before {
  content: "";
}

.fa-vk:before {
  content: "";
}

.fa-vnv:before {
  content: "";
}

.fa-voicemail:before {
  content: "";
}

.fa-volcano:before {
  content: "";
}

.fa-volleyball-ball:before {
  content: "";
}

.fa-volume:before {
  content: "";
}

.fa-volume-down:before {
  content: "";
}

.fa-volume-mute:before {
  content: "";
}

.fa-volume-off:before {
  content: "";
}

.fa-volume-slash:before {
  content: "";
}

.fa-volume-up:before {
  content: "";
}

.fa-vote-nay:before {
  content: "";
}

.fa-vote-yea:before {
  content: "";
}

.fa-vr-cardboard:before {
  content: "";
}

.fa-vuejs:before {
  content: "";
}

.fa-wagon-covered:before {
  content: "";
}

.fa-walker:before {
  content: "";
}

.fa-walkie-talkie:before {
  content: "";
}

.fa-walking:before {
  content: "";
}

.fa-wallet:before {
  content: "";
}

.fa-wand:before {
  content: "";
}

.fa-wand-magic:before {
  content: "";
}

.fa-warehouse:before {
  content: "";
}

.fa-warehouse-alt:before {
  content: "";
}

.fa-washer:before {
  content: "";
}

.fa-watch:before {
  content: "";
}

.fa-watch-calculator:before {
  content: "";
}

.fa-watch-fitness:before {
  content: "";
}

.fa-watchman-monitoring:before {
  content: "";
}

.fa-water:before {
  content: "";
}

.fa-water-lower:before {
  content: "";
}

.fa-water-rise:before {
  content: "";
}

.fa-wave-sine:before {
  content: "";
}

.fa-wave-square:before {
  content: "";
}

.fa-wave-triangle:before {
  content: "";
}

.fa-waveform:before {
  content: "";
}

.fa-waveform-path:before {
  content: "";
}

.fa-waze:before {
  content: "";
}

.fa-webcam:before {
  content: "";
}

.fa-webcam-slash:before {
  content: "";
}

.fa-weebly:before {
  content: "";
}

.fa-weibo:before {
  content: "";
}

.fa-weight:before {
  content: "";
}

.fa-weight-hanging:before {
  content: "";
}

.fa-weixin:before {
  content: "";
}

.fa-whale:before {
  content: "";
}

.fa-whatsapp:before {
  content: "";
}

.fa-whatsapp-square:before {
  content: "";
}

.fa-wheat:before {
  content: "";
}

.fa-wheelchair:before {
  content: "";
}

.fa-whistle:before {
  content: "";
}

.fa-whmcs:before {
  content: "";
}

.fa-wifi:before {
  content: "";
}

.fa-wifi-1:before {
  content: "";
}

.fa-wifi-2:before {
  content: "";
}

.fa-wifi-slash:before {
  content: "";
}

.fa-wikipedia-w:before {
  content: "";
}

.fa-wind:before {
  content: "";
}

.fa-wind-turbine:before {
  content: "";
}

.fa-wind-warning:before {
  content: "";
}

.fa-window:before {
  content: "";
}

.fa-window-alt:before {
  content: "";
}

.fa-window-close:before {
  content: "";
}

.fa-window-frame:before {
  content: "";
}

.fa-window-frame-open:before {
  content: "";
}

.fa-window-maximize:before {
  content: "";
}

.fa-window-minimize:before {
  content: "";
}

.fa-window-restore:before {
  content: "";
}

.fa-windows:before {
  content: "";
}

.fa-windsock:before {
  content: "";
}

.fa-wine-bottle:before {
  content: "";
}

.fa-wine-glass:before {
  content: "";
}

.fa-wine-glass-alt:before {
  content: "";
}

.fa-wix:before {
  content: "";
}

.fa-wizards-of-the-coast:before {
  content: "";
}

.fa-wodu:before {
  content: "";
}

.fa-wolf-pack-battalion:before {
  content: "";
}

.fa-won-sign:before {
  content: "";
}

.fa-wordpress:before {
  content: "";
}

.fa-wordpress-simple:before {
  content: "";
}

.fa-wpbeginner:before {
  content: "";
}

.fa-wpexplorer:before {
  content: "";
}

.fa-wpforms:before {
  content: "";
}

.fa-wpressr:before {
  content: "";
}

.fa-wreath:before {
  content: "";
}

.fa-wrench:before {
  content: "";
}

.fa-x-ray:before {
  content: "";
}

.fa-xbox:before {
  content: "";
}

.fa-xing:before {
  content: "";
}

.fa-xing-square:before {
  content: "";
}

.fa-y-combinator:before {
  content: "";
}

.fa-yahoo:before {
  content: "";
}

.fa-yammer:before {
  content: "";
}

.fa-yandex:before {
  content: "";
}

.fa-yandex-international:before {
  content: "";
}

.fa-yarn:before {
  content: "";
}

.fa-yelp:before {
  content: "";
}

.fa-yen-sign:before {
  content: "";
}

.fa-yin-yang:before {
  content: "";
}

.fa-yoast:before {
  content: "";
}

.fa-youtube:before {
  content: "";
}

.fa-youtube-square:before {
  content: "";
}

.fa-zhihu:before {
  content: "";
}

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

/*!
 * Font Awesome Pro 5.15.2 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Commercial License)
 */
@font-face {
  font-family: "Font Awesome 5 Pro";
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url(/fonts/fa-solid-900.eot?5bdde71416747e371a4400b969603f18);
  src: url(/fonts/fa-solid-900.eot?5bdde71416747e371a4400b969603f18) format("embedded-opentype"), url(/fonts/fa-solid-900.woff2?d8fee305c32d51d480e05938c377b87c) format("woff2"), url(/fonts/fa-solid-900.woff?60889030bac3b23794f5e22dbc98caee) format("woff"), url(/fonts/fa-solid-900.ttf?7d043e5e771d2213ec3c06cf1e638d3c) format("truetype"), url(/fonts/fa-solid-900.svg?0561bd179ef2eed2a95f7c75bbd234dc) format("svg");
}
.fa,
.fas {
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
}

/*!
 * Font Awesome Pro 5.15.2 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Commercial License)
 */
@font-face {
  font-family: "Font Awesome 5 Pro";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url(/fonts/fa-regular-400.eot?638d54f5c9a70483b20513b2dc21412d);
  src: url(/fonts/fa-regular-400.eot?638d54f5c9a70483b20513b2dc21412d) format("embedded-opentype"), url(/fonts/fa-regular-400.woff2?513f5eb0e7a02cf72c3ccba7bac2452c) format("woff2"), url(/fonts/fa-regular-400.woff?ef23c1a5edc6dc309231023c91f6d0f0) format("woff"), url(/fonts/fa-regular-400.ttf?b777006d955ed77396862f677e845ffa) format("truetype"), url(/fonts/fa-regular-400.svg?6dadae23872703cb7274664a6ea58640) format("svg");
}
.far {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

/*!
 * Font Awesome Pro 5.15.2 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Commercial License)
 */
@font-face {
  font-family: "Font Awesome 5 Pro";
  font-style: normal;
  font-weight: 300;
  font-display: block;
  src: url(/fonts/fa-light-300.eot?bb4578f4ef9087747798784abae1ea74);
  src: url(/fonts/fa-light-300.eot?bb4578f4ef9087747798784abae1ea74) format("embedded-opentype"), url(/fonts/fa-light-300.woff2?91733965dcd1c57a3fcab6f17bd5e95d) format("woff2"), url(/fonts/fa-light-300.woff?7ee1fe4a71d864d02025679ca7870700) format("woff"), url(/fonts/fa-light-300.ttf?0a116011f3f62d9a4cbe32f5202ee0fa) format("truetype"), url(/fonts/fa-light-300.svg?99954891058d66362a2df42f1abb587d) format("svg");
}
.fal {
  font-family: "Font Awesome 5 Pro";
  font-weight: 300;
}

/*!
 * Font Awesome Pro 5.15.2 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Commercial License)
 */
@font-face {
  font-family: "Font Awesome 5 Duotone";
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url(/fonts/fa-duotone-900.eot?ac13b02424379ab54a3277c4b8a2595e);
  src: url(/fonts/fa-duotone-900.eot?ac13b02424379ab54a3277c4b8a2595e) format("embedded-opentype"), url(/fonts/fa-duotone-900.woff2?0d4e8e8855f4b889de1203a94513e388) format("woff2"), url(/fonts/fa-duotone-900.woff?730287bee77d39f0bc7e2bad17f09686) format("woff"), url(/fonts/fa-duotone-900.ttf?715661f3c821c45a275cc448ea4edaba) format("truetype"), url(/fonts/fa-duotone-900.svg?e4b1cd20c5ca75b152d86d4bc4988980) format("svg");
}
.fad {
  position: relative;
  font-family: "Font Awesome 5 Duotone";
  font-weight: 900;
}

.fad:before {
  position: absolute;
  color: var(--fa-primary-color, inherit);
  opacity: 1;
  opacity: var(--fa-primary-opacity, 1);
}

.fad:after {
  color: var(--fa-secondary-color, inherit);
  opacity: 0.4;
  opacity: var(--fa-secondary-opacity, 0.4);
}

.fa-swap-opacity .fad:before,
.fad.fa-swap-opacity:before {
  opacity: 0.4;
  opacity: var(--fa-secondary-opacity, 0.4);
}

.fa-swap-opacity .fad:after,
.fad.fa-swap-opacity:after {
  opacity: 1;
  opacity: var(--fa-primary-opacity, 1);
}

.fad.fa-inverse {
  color: #fff;
}

.fad.fa-stack-1x, .fad.fa-stack-2x {
  position: absolute;
}

.fad.fa-stack-1x:before,
.fad.fa-stack-2x:before,
.fad.fa-fw:before {
  left: 50%;
  transform: translateX(-50%);
}

.fad.fa-abacus:after {
  content: "􏙀";
}

.fad.fa-acorn:after {
  content: "􏚮";
}

.fad.fa-ad:after {
  content: "􏙁";
}

.fad.fa-address-book:after {
  content: "􏊹";
}

.fad.fa-address-card:after {
  content: "􏊻";
}

.fad.fa-adjust:after {
  content: "􏁂";
}

.fad.fa-air-conditioner:after {
  content: "􏣴";
}

.fad.fa-air-freshener:after {
  content: "􏗐";
}

.fad.fa-alarm-clock:after {
  content: "􏍎";
}

.fad.fa-alarm-exclamation:after {
  content: "􏡃";
}

.fad.fa-alarm-plus:after {
  content: "􏡄";
}

.fad.fa-alarm-snooze:after {
  content: "􏡅";
}

.fad.fa-album:after {
  content: "􏢟";
}

.fad.fa-album-collection:after {
  content: "􏢠";
}

.fad.fa-alicorn:after {
  content: "􏚰";
}

.fad.fa-alien:after {
  content: "􏣵";
}

.fad.fa-alien-monster:after {
  content: "􏣶";
}

.fad.fa-align-center:after {
  content: "􏀷";
}

.fad.fa-align-justify:after {
  content: "􏀹";
}

.fad.fa-align-left:after {
  content: "􏀶";
}

.fad.fa-align-right:after {
  content: "􏀸";
}

.fad.fa-align-slash:after {
  content: "􏡆";
}

.fad.fa-allergies:after {
  content: "􏑡";
}

.fad.fa-ambulance:after {
  content: "􏃹";
}

.fad.fa-american-sign-language-interpreting:after {
  content: "􏊣";
}

.fad.fa-amp-guitar:after {
  content: "􏢡";
}

.fad.fa-analytics:after {
  content: "􏙃";
}

.fad.fa-anchor:after {
  content: "􏄽";
}

.fad.fa-angel:after {
  content: "􏝹";
}

.fad.fa-angle-double-down:after {
  content: "􏄃";
}

.fad.fa-angle-double-left:after {
  content: "􏄀";
}

.fad.fa-angle-double-right:after {
  content: "􏄁";
}

.fad.fa-angle-double-up:after {
  content: "􏄂";
}

.fad.fa-angle-down:after {
  content: "􏄇";
}

.fad.fa-angle-left:after {
  content: "􏄄";
}

.fad.fa-angle-right:after {
  content: "􏄅";
}

.fad.fa-angle-up:after {
  content: "􏄆";
}

.fad.fa-angry:after {
  content: "􏕖";
}

.fad.fa-ankh:after {
  content: "􏙄";
}

.fad.fa-apple-alt:after {
  content: "􏗑";
}

.fad.fa-apple-crate:after {
  content: "􏚱";
}

.fad.fa-archive:after {
  content: "􏆇";
}

.fad.fa-archway:after {
  content: "􏕗";
}

.fad.fa-arrow-alt-circle-down:after {
  content: "􏍘";
}

.fad.fa-arrow-alt-circle-left:after {
  content: "􏍙";
}

.fad.fa-arrow-alt-circle-right:after {
  content: "􏍚";
}

.fad.fa-arrow-alt-circle-up:after {
  content: "􏍛";
}

.fad.fa-arrow-alt-down:after {
  content: "􏍔";
}

.fad.fa-arrow-alt-from-bottom:after {
  content: "􏍆";
}

.fad.fa-arrow-alt-from-left:after {
  content: "􏍇";
}

.fad.fa-arrow-alt-from-right:after {
  content: "􏍈";
}

.fad.fa-arrow-alt-from-top:after {
  content: "􏍉";
}

.fad.fa-arrow-alt-left:after {
  content: "􏍕";
}

.fad.fa-arrow-alt-right:after {
  content: "􏍖";
}

.fad.fa-arrow-alt-square-down:after {
  content: "􏍐";
}

.fad.fa-arrow-alt-square-left:after {
  content: "􏍑";
}

.fad.fa-arrow-alt-square-right:after {
  content: "􏍒";
}

.fad.fa-arrow-alt-square-up:after {
  content: "􏍓";
}

.fad.fa-arrow-alt-to-bottom:after {
  content: "􏍊";
}

.fad.fa-arrow-alt-to-left:after {
  content: "􏍋";
}

.fad.fa-arrow-alt-to-right:after {
  content: "􏍌";
}

.fad.fa-arrow-alt-to-top:after {
  content: "􏍍";
}

.fad.fa-arrow-alt-up:after {
  content: "􏍗";
}

.fad.fa-arrow-circle-down:after {
  content: "􏂫";
}

.fad.fa-arrow-circle-left:after {
  content: "􏂨";
}

.fad.fa-arrow-circle-right:after {
  content: "􏂩";
}

.fad.fa-arrow-circle-up:after {
  content: "􏂪";
}

.fad.fa-arrow-down:after {
  content: "􏁣";
}

.fad.fa-arrow-from-bottom:after {
  content: "􏍂";
}

.fad.fa-arrow-from-left:after {
  content: "􏍃";
}

.fad.fa-arrow-from-right:after {
  content: "􏍄";
}

.fad.fa-arrow-from-top:after {
  content: "􏍅";
}

.fad.fa-arrow-left:after {
  content: "􏁠";
}

.fad.fa-arrow-right:after {
  content: "􏁡";
}

.fad.fa-arrow-square-down:after {
  content: "􏌹";
}

.fad.fa-arrow-square-left:after {
  content: "􏌺";
}

.fad.fa-arrow-square-right:after {
  content: "􏌻";
}

.fad.fa-arrow-square-up:after {
  content: "􏌼";
}

.fad.fa-arrow-to-bottom:after {
  content: "􏌽";
}

.fad.fa-arrow-to-left:after {
  content: "􏌾";
}

.fad.fa-arrow-to-right:after {
  content: "􏍀";
}

.fad.fa-arrow-to-top:after {
  content: "􏍁";
}

.fad.fa-arrow-up:after {
  content: "􏁢";
}

.fad.fa-arrows:after {
  content: "􏁇";
}

.fad.fa-arrows-alt:after {
  content: "􏂲";
}

.fad.fa-arrows-alt-h:after {
  content: "􏌷";
}

.fad.fa-arrows-alt-v:after {
  content: "􏌸";
}

.fad.fa-arrows-h:after {
  content: "􏁾";
}

.fad.fa-arrows-v:after {
  content: "􏁽";
}

.fad.fa-assistive-listening-systems:after {
  content: "􏊢";
}

.fad.fa-asterisk:after {
  content: "􏁩";
}

.fad.fa-at:after {
  content: "􏇺";
}

.fad.fa-atlas:after {
  content: "􏕘";
}

.fad.fa-atom:after {
  content: "􏗒";
}

.fad.fa-atom-alt:after {
  content: "􏗓";
}

.fad.fa-audio-description:after {
  content: "􏊞";
}

.fad.fa-award:after {
  content: "􏕙";
}

.fad.fa-axe:after {
  content: "􏚲";
}

.fad.fa-axe-battle:after {
  content: "􏚳";
}

.fad.fa-baby:after {
  content: "􏝼";
}

.fad.fa-baby-carriage:after {
  content: "􏝽";
}

.fad.fa-backpack:after {
  content: "􏗔";
}

.fad.fa-backspace:after {
  content: "􏕚";
}

.fad.fa-backward:after {
  content: "􏁊";
}

.fad.fa-bacon:after {
  content: "􏟥";
}

.fad.fa-bacteria:after {
  content: "􎁙";
}

.fad.fa-bacterium:after {
  content: "􎁚";
}

.fad.fa-badge:after {
  content: "􏌵";
}

.fad.fa-badge-check:after {
  content: "􏌶";
}

.fad.fa-badge-dollar:after {
  content: "􏙅";
}

.fad.fa-badge-percent:after {
  content: "􏙆";
}

.fad.fa-badge-sheriff:after {
  content: "􏢢";
}

.fad.fa-badger-honey:after {
  content: "􏚴";
}

.fad.fa-bags-shopping:after {
  content: "􏡇";
}

.fad.fa-bahai:after {
  content: "􏙦";
}

.fad.fa-balance-scale:after {
  content: "􏉎";
}

.fad.fa-balance-scale-left:after {
  content: "􏔕";
}

.fad.fa-balance-scale-right:after {
  content: "􏔖";
}

.fad.fa-ball-pile:after {
  content: "􏝾";
}

.fad.fa-ballot:after {
  content: "􏜲";
}

.fad.fa-ballot-check:after {
  content: "􏜳";
}

.fad.fa-ban:after {
  content: "􏁞";
}

.fad.fa-band-aid:after {
  content: "􏑢";
}

.fad.fa-banjo:after {
  content: "􏢣";
}

.fad.fa-barcode:after {
  content: "􏀪";
}

.fad.fa-barcode-alt:after {
  content: "􏑣";
}

.fad.fa-barcode-read:after {
  content: "􏑤";
}

.fad.fa-barcode-scan:after {
  content: "􏑥";
}

.fad.fa-bars:after {
  content: "􏃉";
}

.fad.fa-baseball:after {
  content: "􏐲";
}

.fad.fa-baseball-ball:after {
  content: "􏐳";
}

.fad.fa-basketball-ball:after {
  content: "􏐴";
}

.fad.fa-basketball-hoop:after {
  content: "􏐵";
}

.fad.fa-bat:after {
  content: "􏚵";
}

.fad.fa-bath:after {
  content: "􏋍";
}

.fad.fa-battery-bolt:after {
  content: "􏍶";
}

.fad.fa-battery-empty:after {
  content: "􏉄";
}

.fad.fa-battery-full:after {
  content: "􏉀";
}

.fad.fa-battery-half:after {
  content: "􏉂";
}

.fad.fa-battery-quarter:after {
  content: "􏉃";
}

.fad.fa-battery-slash:after {
  content: "􏍷";
}

.fad.fa-battery-three-quarters:after {
  content: "􏉁";
}

.fad.fa-bed:after {
  content: "􏈶";
}

.fad.fa-bed-alt:after {
  content: "􏣷";
}

.fad.fa-bed-bunk:after {
  content: "􏣸";
}

.fad.fa-bed-empty:after {
  content: "􏣹";
}

.fad.fa-beer:after {
  content: "􏃼";
}

.fad.fa-bell:after {
  content: "􏃳";
}

.fad.fa-bell-exclamation:after {
  content: "􏡈";
}

.fad.fa-bell-on:after {
  content: "􏣺";
}

.fad.fa-bell-plus:after {
  content: "􏡉";
}

.fad.fa-bell-school:after {
  content: "􏗕";
}

.fad.fa-bell-school-slash:after {
  content: "􏗖";
}

.fad.fa-bell-slash:after {
  content: "􏇶";
}

.fad.fa-bells:after {
  content: "􏝿";
}

.fad.fa-betamax:after {
  content: "􏢤";
}

.fad.fa-bezier-curve:after {
  content: "􏕛";
}

.fad.fa-bible:after {
  content: "􏙇";
}

.fad.fa-bicycle:after {
  content: "􏈆";
}

.fad.fa-biking:after {
  content: "􏡊";
}

.fad.fa-biking-mountain:after {
  content: "􏡋";
}

.fad.fa-binoculars:after {
  content: "􏇥";
}

.fad.fa-biohazard:after {
  content: "􏞀";
}

.fad.fa-birthday-cake:after {
  content: "􏇽";
}

.fad.fa-blanket:after {
  content: "􏒘";
}

.fad.fa-blender:after {
  content: "􏔗";
}

.fad.fa-blender-phone:after {
  content: "􏚶";
}

.fad.fa-blind:after {
  content: "􏊝";
}

.fad.fa-blinds:after {
  content: "􏣻";
}

.fad.fa-blinds-open:after {
  content: "􏣼";
}

.fad.fa-blinds-raised:after {
  content: "􏣽";
}

.fad.fa-blog:after {
  content: "􏞁";
}

.fad.fa-bold:after {
  content: "􏀲";
}

.fad.fa-bolt:after {
  content: "􏃧";
}

.fad.fa-bomb:after {
  content: "􏇢";
}

.fad.fa-bone:after {
  content: "􏗗";
}

.fad.fa-bone-break:after {
  content: "􏗘";
}

.fad.fa-bong:after {
  content: "􏕜";
}

.fad.fa-book:after {
  content: "􏀭";
}

.fad.fa-book-alt:after {
  content: "􏗙";
}

.fad.fa-book-dead:after {
  content: "􏚷";
}

.fad.fa-book-heart:after {
  content: "􏒙";
}

.fad.fa-book-medical:after {
  content: "􏟦";
}

.fad.fa-book-open:after {
  content: "􏔘";
}

.fad.fa-book-reader:after {
  content: "􏗚";
}

.fad.fa-book-spells:after {
  content: "􏚸";
}

.fad.fa-book-user:after {
  content: "􏟧";
}

.fad.fa-bookmark:after {
  content: "􏀮";
}

.fad.fa-books:after {
  content: "􏗛";
}

.fad.fa-books-medical:after {
  content: "􏟨";
}

.fad.fa-boombox:after {
  content: "􏢥";
}

.fad.fa-boot:after {
  content: "􏞂";
}

.fad.fa-booth-curtain:after {
  content: "􏜴";
}

.fad.fa-border-all:after {
  content: "􏡌";
}

.fad.fa-border-bottom:after {
  content: "􏡍";
}

.fad.fa-border-center-h:after {
  content: "􏢜";
}

.fad.fa-border-center-v:after {
  content: "􏢝";
}

.fad.fa-border-inner:after {
  content: "􏡎";
}

.fad.fa-border-left:after {
  content: "􏡏";
}

.fad.fa-border-none:after {
  content: "􏡐";
}

.fad.fa-border-outer:after {
  content: "􏡑";
}

.fad.fa-border-right:after {
  content: "􏡒";
}

.fad.fa-border-style:after {
  content: "􏡓";
}

.fad.fa-border-style-alt:after {
  content: "􏡔";
}

.fad.fa-border-top:after {
  content: "􏡕";
}

.fad.fa-bow-arrow:after {
  content: "􏚹";
}

.fad.fa-bowling-ball:after {
  content: "􏐶";
}

.fad.fa-bowling-pins:after {
  content: "􏐷";
}

.fad.fa-box:after {
  content: "􏑦";
}

.fad.fa-box-alt:after {
  content: "􏒚";
}

.fad.fa-box-ballot:after {
  content: "􏜵";
}

.fad.fa-box-check:after {
  content: "􏑧";
}

.fad.fa-box-fragile:after {
  content: "􏒛";
}

.fad.fa-box-full:after {
  content: "􏒜";
}

.fad.fa-box-heart:after {
  content: "􏒝";
}

.fad.fa-box-open:after {
  content: "􏒞";
}

.fad.fa-box-tissue:after {
  content: "􎁛";
}

.fad.fa-box-up:after {
  content: "􏒟";
}

.fad.fa-box-usd:after {
  content: "􏒠";
}

.fad.fa-boxes:after {
  content: "􏑨";
}

.fad.fa-boxes-alt:after {
  content: "􏒡";
}

.fad.fa-boxing-glove:after {
  content: "􏐸";
}

.fad.fa-brackets:after {
  content: "􏟩";
}

.fad.fa-brackets-curly:after {
  content: "􏟪";
}

.fad.fa-braille:after {
  content: "􏊡";
}

.fad.fa-brain:after {
  content: "􏗜";
}

.fad.fa-bread-loaf:after {
  content: "􏟫";
}

.fad.fa-bread-slice:after {
  content: "􏟬";
}

.fad.fa-briefcase:after {
  content: "􏂱";
}

.fad.fa-briefcase-medical:after {
  content: "􏑩";
}

.fad.fa-bring-forward:after {
  content: "􏡖";
}

.fad.fa-bring-front:after {
  content: "􏡗";
}

.fad.fa-broadcast-tower:after {
  content: "􏔙";
}

.fad.fa-broom:after {
  content: "􏔚";
}

.fad.fa-browser:after {
  content: "􏍾";
}

.fad.fa-brush:after {
  content: "􏕝";
}

.fad.fa-bug:after {
  content: "􏆈";
}

.fad.fa-building:after {
  content: "􏆭";
}

.fad.fa-bullhorn:after {
  content: "􏂡";
}

.fad.fa-bullseye:after {
  content: "􏅀";
}

.fad.fa-bullseye-arrow:after {
  content: "􏙈";
}

.fad.fa-bullseye-pointer:after {
  content: "􏙉";
}

.fad.fa-burger-soda:after {
  content: "􏡘";
}

.fad.fa-burn:after {
  content: "􏑪";
}

.fad.fa-burrito:after {
  content: "􏟭";
}

.fad.fa-bus:after {
  content: "􏈇";
}

.fad.fa-bus-alt:after {
  content: "􏕞";
}

.fad.fa-bus-school:after {
  content: "􏗝";
}

.fad.fa-business-time:after {
  content: "􏙊";
}

.fad.fa-cabinet-filing:after {
  content: "􏙋";
}

.fad.fa-cactus:after {
  content: "􏢧";
}

.fad.fa-calculator:after {
  content: "􏇬";
}

.fad.fa-calculator-alt:after {
  content: "􏙌";
}

.fad.fa-calendar:after {
  content: "􏄳";
}

.fad.fa-calendar-alt:after {
  content: "􏁳";
}

.fad.fa-calendar-check:after {
  content: "􏉴";
}

.fad.fa-calendar-day:after {
  content: "􏞃";
}

.fad.fa-calendar-edit:after {
  content: "􏌳";
}

.fad.fa-calendar-exclamation:after {
  content: "􏌴";
}

.fad.fa-calendar-minus:after {
  content: "􏉲";
}

.fad.fa-calendar-plus:after {
  content: "􏉱";
}

.fad.fa-calendar-star:after {
  content: "􏜶";
}

.fad.fa-calendar-times:after {
  content: "􏉳";
}

.fad.fa-calendar-week:after {
  content: "􏞄";
}

.fad.fa-camcorder:after {
  content: "􏢨";
}

.fad.fa-camera:after {
  content: "􏀰";
}

.fad.fa-camera-alt:after {
  content: "􏌲";
}

.fad.fa-camera-home:after {
  content: "􏣾";
}

.fad.fa-camera-movie:after {
  content: "􏢩";
}

.fad.fa-camera-polaroid:after {
  content: "􏢪";
}

.fad.fa-camera-retro:after {
  content: "􏂃";
}

.fad.fa-campfire:after {
  content: "􏚺";
}

.fad.fa-campground:after {
  content: "􏚻";
}

.fad.fa-candle-holder:after {
  content: "􏚼";
}

.fad.fa-candy-cane:after {
  content: "􏞆";
}

.fad.fa-candy-corn:after {
  content: "􏚽";
}

.fad.fa-cannabis:after {
  content: "􏕟";
}

.fad.fa-capsules:after {
  content: "􏑫";
}

.fad.fa-car:after {
  content: "􏆹";
}

.fad.fa-car-alt:after {
  content: "􏗞";
}

.fad.fa-car-battery:after {
  content: "􏗟";
}

.fad.fa-car-building:after {
  content: "􏡙";
}

.fad.fa-car-bump:after {
  content: "􏗠";
}

.fad.fa-car-bus:after {
  content: "􏡚";
}

.fad.fa-car-crash:after {
  content: "􏗡";
}

.fad.fa-car-garage:after {
  content: "􏗢";
}

.fad.fa-car-mechanic:after {
  content: "􏗣";
}

.fad.fa-car-side:after {
  content: "􏗤";
}

.fad.fa-car-tilt:after {
  content: "􏗥";
}

.fad.fa-car-wash:after {
  content: "􏗦";
}

.fad.fa-caravan:after {
  content: "􏣿";
}

.fad.fa-caravan-alt:after {
  content: "􎀀";
}

.fad.fa-caret-circle-down:after {
  content: "􏌭";
}

.fad.fa-caret-circle-left:after {
  content: "􏌮";
}

.fad.fa-caret-circle-right:after {
  content: "􏌰";
}

.fad.fa-caret-circle-up:after {
  content: "􏌱";
}

.fad.fa-caret-down:after {
  content: "􏃗";
}

.fad.fa-caret-left:after {
  content: "􏃙";
}

.fad.fa-caret-right:after {
  content: "􏃚";
}

.fad.fa-caret-square-down:after {
  content: "􏅐";
}

.fad.fa-caret-square-left:after {
  content: "􏆑";
}

.fad.fa-caret-square-right:after {
  content: "􏅒";
}

.fad.fa-caret-square-up:after {
  content: "􏅑";
}

.fad.fa-caret-up:after {
  content: "􏃘";
}

.fad.fa-carrot:after {
  content: "􏞇";
}

.fad.fa-cars:after {
  content: "􏡛";
}

.fad.fa-cart-arrow-down:after {
  content: "􏈘";
}

.fad.fa-cart-plus:after {
  content: "􏈗";
}

.fad.fa-cash-register:after {
  content: "􏞈";
}

.fad.fa-cassette-tape:after {
  content: "􏢫";
}

.fad.fa-cat:after {
  content: "􏚾";
}

.fad.fa-cat-space:after {
  content: "􎀁";
}

.fad.fa-cauldron:after {
  content: "􏚿";
}

.fad.fa-cctv:after {
  content: "􏢬";
}

.fad.fa-certificate:after {
  content: "􏂣";
}

.fad.fa-chair:after {
  content: "􏛀";
}

.fad.fa-chair-office:after {
  content: "􏛁";
}

.fad.fa-chalkboard:after {
  content: "􏔛";
}

.fad.fa-chalkboard-teacher:after {
  content: "􏔜";
}

.fad.fa-charging-station:after {
  content: "􏗧";
}

.fad.fa-chart-area:after {
  content: "􏇾";
}

.fad.fa-chart-bar:after {
  content: "􏂀";
}

.fad.fa-chart-line:after {
  content: "􏈁";
}

.fad.fa-chart-line-down:after {
  content: "􏙍";
}

.fad.fa-chart-network:after {
  content: "􏞊";
}

.fad.fa-chart-pie:after {
  content: "􏈀";
}

.fad.fa-chart-pie-alt:after {
  content: "􏙎";
}

.fad.fa-chart-scatter:after {
  content: "􏟮";
}

.fad.fa-check:after {
  content: "􏀌";
}

.fad.fa-check-circle:after {
  content: "􏁘";
}

.fad.fa-check-double:after {
  content: "􏕠";
}

.fad.fa-check-square:after {
  content: "􏅊";
}

.fad.fa-cheese:after {
  content: "􏟯";
}

.fad.fa-cheese-swiss:after {
  content: "􏟰";
}

.fad.fa-cheeseburger:after {
  content: "􏟱";
}

.fad.fa-chess:after {
  content: "􏐹";
}

.fad.fa-chess-bishop:after {
  content: "􏐺";
}

.fad.fa-chess-bishop-alt:after {
  content: "􏐻";
}

.fad.fa-chess-board:after {
  content: "􏐼";
}

.fad.fa-chess-clock:after {
  content: "􏐽";
}

.fad.fa-chess-clock-alt:after {
  content: "􏐾";
}

.fad.fa-chess-king:after {
  content: "􏐿";
}

.fad.fa-chess-king-alt:after {
  content: "􏑀";
}

.fad.fa-chess-knight:after {
  content: "􏑁";
}

.fad.fa-chess-knight-alt:after {
  content: "􏑂";
}

.fad.fa-chess-pawn:after {
  content: "􏑃";
}

.fad.fa-chess-pawn-alt:after {
  content: "􏑄";
}

.fad.fa-chess-queen:after {
  content: "􏑅";
}

.fad.fa-chess-queen-alt:after {
  content: "􏑆";
}

.fad.fa-chess-rook:after {
  content: "􏑇";
}

.fad.fa-chess-rook-alt:after {
  content: "􏑈";
}

.fad.fa-chevron-circle-down:after {
  content: "􏄺";
}

.fad.fa-chevron-circle-left:after {
  content: "􏄷";
}

.fad.fa-chevron-circle-right:after {
  content: "􏄸";
}

.fad.fa-chevron-circle-up:after {
  content: "􏄹";
}

.fad.fa-chevron-double-down:after {
  content: "􏌢";
}

.fad.fa-chevron-double-left:after {
  content: "􏌣";
}

.fad.fa-chevron-double-right:after {
  content: "􏌤";
}

.fad.fa-chevron-double-up:after {
  content: "􏌥";
}

.fad.fa-chevron-down:after {
  content: "􏁸";
}

.fad.fa-chevron-left:after {
  content: "􏁓";
}

.fad.fa-chevron-right:after {
  content: "􏁔";
}

.fad.fa-chevron-square-down:after {
  content: "􏌩";
}

.fad.fa-chevron-square-left:after {
  content: "􏌪";
}

.fad.fa-chevron-square-right:after {
  content: "􏌫";
}

.fad.fa-chevron-square-up:after {
  content: "􏌬";
}

.fad.fa-chevron-up:after {
  content: "􏁷";
}

.fad.fa-child:after {
  content: "􏆮";
}

.fad.fa-chimney:after {
  content: "􏞋";
}

.fad.fa-church:after {
  content: "􏔝";
}

.fad.fa-circle:after {
  content: "􏄑";
}

.fad.fa-circle-notch:after {
  content: "􏇎";
}

.fad.fa-city:after {
  content: "􏙏";
}

.fad.fa-clarinet:after {
  content: "􏢭";
}

.fad.fa-claw-marks:after {
  content: "􏛂";
}

.fad.fa-clinic-medical:after {
  content: "􏟲";
}

.fad.fa-clipboard:after {
  content: "􏌨";
}

.fad.fa-clipboard-check:after {
  content: "􏑬";
}

.fad.fa-clipboard-list:after {
  content: "􏑭";
}

.fad.fa-clipboard-list-check:after {
  content: "􏜷";
}

.fad.fa-clipboard-prescription:after {
  content: "􏗨";
}

.fad.fa-clipboard-user:after {
  content: "􏟳";
}

.fad.fa-clock:after {
  content: "􏀗";
}

.fad.fa-clone:after {
  content: "􏉍";
}

.fad.fa-closed-captioning:after {
  content: "􏈊";
}

.fad.fa-cloud:after {
  content: "􏃂";
}

.fad.fa-cloud-download:after {
  content: "􏃭";
}

.fad.fa-cloud-download-alt:after {
  content: "􏎁";
}

.fad.fa-cloud-drizzle:after {
  content: "􏜸";
}

.fad.fa-cloud-hail:after {
  content: "􏜹";
}

.fad.fa-cloud-hail-mixed:after {
  content: "􏜺";
}

.fad.fa-cloud-meatball:after {
  content: "􏜻";
}

.fad.fa-cloud-moon:after {
  content: "􏛃";
}

.fad.fa-cloud-moon-rain:after {
  content: "􏜼";
}

.fad.fa-cloud-music:after {
  content: "􏢮";
}

.fad.fa-cloud-rain:after {
  content: "􏜽";
}

.fad.fa-cloud-rainbow:after {
  content: "􏜾";
}

.fad.fa-cloud-showers:after {
  content: "􏜿";
}

.fad.fa-cloud-showers-heavy:after {
  content: "􏝀";
}

.fad.fa-cloud-sleet:after {
  content: "􏝁";
}

.fad.fa-cloud-snow:after {
  content: "􏝂";
}

.fad.fa-cloud-sun:after {
  content: "􏛄";
}

.fad.fa-cloud-sun-rain:after {
  content: "􏝃";
}

.fad.fa-cloud-upload:after {
  content: "􏃮";
}

.fad.fa-cloud-upload-alt:after {
  content: "􏎂";
}

.fad.fa-clouds:after {
  content: "􏝄";
}

.fad.fa-clouds-moon:after {
  content: "􏝅";
}

.fad.fa-clouds-sun:after {
  content: "􏝆";
}

.fad.fa-club:after {
  content: "􏌧";
}

.fad.fa-cocktail:after {
  content: "􏕡";
}

.fad.fa-code:after {
  content: "􏄡";
}

.fad.fa-code-branch:after {
  content: "􏄦";
}

.fad.fa-code-commit:after {
  content: "􏎆";
}

.fad.fa-code-merge:after {
  content: "􏎇";
}

.fad.fa-coffee:after {
  content: "􏃴";
}

.fad.fa-coffee-pot:after {
  content: "􎀂";
}

.fad.fa-coffee-togo:after {
  content: "􏛅";
}

.fad.fa-coffin:after {
  content: "􏛆";
}

.fad.fa-coffin-cross:after {
  content: "􎁑";
}

.fad.fa-cog:after {
  content: "􏀓";
}

.fad.fa-cogs:after {
  content: "􏂅";
}

.fad.fa-coin:after {
  content: "􏡜";
}

.fad.fa-coins:after {
  content: "􏔞";
}

.fad.fa-columns:after {
  content: "􏃛";
}

.fad.fa-comet:after {
  content: "􎀃";
}

.fad.fa-comment:after {
  content: "􏁵";
}

.fad.fa-comment-alt:after {
  content: "􏉺";
}

.fad.fa-comment-alt-check:after {
  content: "􏒢";
}

.fad.fa-comment-alt-dollar:after {
  content: "􏙐";
}

.fad.fa-comment-alt-dots:after {
  content: "􏒣";
}

.fad.fa-comment-alt-edit:after {
  content: "􏒤";
}

.fad.fa-comment-alt-exclamation:after {
  content: "􏒥";
}

.fad.fa-comment-alt-lines:after {
  content: "􏒦";
}

.fad.fa-comment-alt-medical:after {
  content: "􏟴";
}

.fad.fa-comment-alt-minus:after {
  content: "􏒧";
}

.fad.fa-comment-alt-music:after {
  content: "􏢯";
}

.fad.fa-comment-alt-plus:after {
  content: "􏒨";
}

.fad.fa-comment-alt-slash:after {
  content: "􏒩";
}

.fad.fa-comment-alt-smile:after {
  content: "􏒪";
}

.fad.fa-comment-alt-times:after {
  content: "􏒫";
}

.fad.fa-comment-check:after {
  content: "􏒬";
}

.fad.fa-comment-dollar:after {
  content: "􏙑";
}

.fad.fa-comment-dots:after {
  content: "􏒭";
}

.fad.fa-comment-edit:after {
  content: "􏒮";
}

.fad.fa-comment-exclamation:after {
  content: "􏒯";
}

.fad.fa-comment-lines:after {
  content: "􏒰";
}

.fad.fa-comment-medical:after {
  content: "􏟵";
}

.fad.fa-comment-minus:after {
  content: "􏒱";
}

.fad.fa-comment-music:after {
  content: "􏢰";
}

.fad.fa-comment-plus:after {
  content: "􏒲";
}

.fad.fa-comment-slash:after {
  content: "􏒳";
}

.fad.fa-comment-smile:after {
  content: "􏒴";
}

.fad.fa-comment-times:after {
  content: "􏒵";
}

.fad.fa-comments:after {
  content: "􏂆";
}

.fad.fa-comments-alt:after {
  content: "􏒶";
}

.fad.fa-comments-alt-dollar:after {
  content: "􏙒";
}

.fad.fa-comments-dollar:after {
  content: "􏙓";
}

.fad.fa-compact-disc:after {
  content: "􏔟";
}

.fad.fa-compass:after {
  content: "􏅎";
}

.fad.fa-compass-slash:after {
  content: "􏗩";
}

.fad.fa-compress:after {
  content: "􏁦";
}

.fad.fa-compress-alt:after {
  content: "􏐢";
}

.fad.fa-compress-arrows-alt:after {
  content: "􏞌";
}

.fad.fa-compress-wide:after {
  content: "􏌦";
}

.fad.fa-computer-classic:after {
  content: "􏢱";
}

.fad.fa-computer-speaker:after {
  content: "􏢲";
}

.fad.fa-concierge-bell:after {
  content: "􏕢";
}

.fad.fa-construction:after {
  content: "􏡝";
}

.fad.fa-container-storage:after {
  content: "􏒷";
}

.fad.fa-conveyor-belt:after {
  content: "􏑮";
}

.fad.fa-conveyor-belt-alt:after {
  content: "􏑯";
}

.fad.fa-cookie:after {
  content: "􏕣";
}

.fad.fa-cookie-bite:after {
  content: "􏕤";
}

.fad.fa-copy:after {
  content: "􏃅";
}

.fad.fa-copyright:after {
  content: "􏇹";
}

.fad.fa-corn:after {
  content: "􏛇";
}

.fad.fa-couch:after {
  content: "􏒸";
}

.fad.fa-cow:after {
  content: "􏛈";
}

.fad.fa-cowbell:after {
  content: "􏢳";
}

.fad.fa-cowbell-more:after {
  content: "􏢴";
}

.fad.fa-credit-card:after {
  content: "􏂝";
}

.fad.fa-credit-card-blank:after {
  content: "􏎉";
}

.fad.fa-credit-card-front:after {
  content: "􏎊";
}

.fad.fa-cricket:after {
  content: "􏑉";
}

.fad.fa-croissant:after {
  content: "􏟶";
}

.fad.fa-crop:after {
  content: "􏄥";
}

.fad.fa-crop-alt:after {
  content: "􏕥";
}

.fad.fa-cross:after {
  content: "􏙔";
}

.fad.fa-crosshairs:after {
  content: "􏁛";
}

.fad.fa-crow:after {
  content: "􏔠";
}

.fad.fa-crown:after {
  content: "􏔡";
}

.fad.fa-crutch:after {
  content: "􏟷";
}

.fad.fa-crutches:after {
  content: "􏟸";
}

.fad.fa-cube:after {
  content: "􏆲";
}

.fad.fa-cubes:after {
  content: "􏆳";
}

.fad.fa-curling:after {
  content: "􏑊";
}

.fad.fa-cut:after {
  content: "􏃄";
}

.fad.fa-dagger:after {
  content: "􏛋";
}

.fad.fa-database:after {
  content: "􏇀";
}

.fad.fa-deaf:after {
  content: "􏊤";
}

.fad.fa-debug:after {
  content: "􏟹";
}

.fad.fa-deer:after {
  content: "􏞎";
}

.fad.fa-deer-rudolph:after {
  content: "􏞏";
}

.fad.fa-democrat:after {
  content: "􏝇";
}

.fad.fa-desktop:after {
  content: "􏄈";
}

.fad.fa-desktop-alt:after {
  content: "􏎐";
}

.fad.fa-dewpoint:after {
  content: "􏝈";
}

.fad.fa-dharmachakra:after {
  content: "􏙕";
}

.fad.fa-diagnoses:after {
  content: "􏑰";
}

.fad.fa-diamond:after {
  content: "􏈙";
}

.fad.fa-dice:after {
  content: "􏔢";
}

.fad.fa-dice-d10:after {
  content: "􏛍";
}

.fad.fa-dice-d12:after {
  content: "􏛎";
}

.fad.fa-dice-d20:after {
  content: "􏛏";
}

.fad.fa-dice-d4:after {
  content: "􏛐";
}

.fad.fa-dice-d6:after {
  content: "􏛑";
}

.fad.fa-dice-d8:after {
  content: "􏛒";
}

.fad.fa-dice-five:after {
  content: "􏔣";
}

.fad.fa-dice-four:after {
  content: "􏔤";
}

.fad.fa-dice-one:after {
  content: "􏔥";
}

.fad.fa-dice-six:after {
  content: "􏔦";
}

.fad.fa-dice-three:after {
  content: "􏔧";
}

.fad.fa-dice-two:after {
  content: "􏔨";
}

.fad.fa-digging:after {
  content: "􏡞";
}

.fad.fa-digital-tachograph:after {
  content: "􏕦";
}

.fad.fa-diploma:after {
  content: "􏗪";
}

.fad.fa-directions:after {
  content: "􏗫";
}

.fad.fa-disc-drive:after {
  content: "􏢵";
}

.fad.fa-disease:after {
  content: "􏟺";
}

.fad.fa-divide:after {
  content: "􏔩";
}

.fad.fa-dizzy:after {
  content: "􏕧";
}

.fad.fa-dna:after {
  content: "􏑱";
}

.fad.fa-do-not-enter:after {
  content: "􏗬";
}

.fad.fa-dog:after {
  content: "􏛓";
}

.fad.fa-dog-leashed:after {
  content: "􏛔";
}

.fad.fa-dollar-sign:after {
  content: "􏅕";
}

.fad.fa-dolly:after {
  content: "􏑲";
}

.fad.fa-dolly-empty:after {
  content: "􏑳";
}

.fad.fa-dolly-flatbed:after {
  content: "􏑴";
}

.fad.fa-dolly-flatbed-alt:after {
  content: "􏑵";
}

.fad.fa-dolly-flatbed-empty:after {
  content: "􏑶";
}

.fad.fa-donate:after {
  content: "􏒹";
}

.fad.fa-door-closed:after {
  content: "􏔪";
}

.fad.fa-door-open:after {
  content: "􏔫";
}

.fad.fa-dot-circle:after {
  content: "􏆒";
}

.fad.fa-dove:after {
  content: "􏒺";
}

.fad.fa-download:after {
  content: "􏀙";
}

.fad.fa-drafting-compass:after {
  content: "􏕨";
}

.fad.fa-dragon:after {
  content: "􏛕";
}

.fad.fa-draw-circle:after {
  content: "􏗭";
}

.fad.fa-draw-polygon:after {
  content: "􏗮";
}

.fad.fa-draw-square:after {
  content: "􏗯";
}

.fad.fa-dreidel:after {
  content: "􏞒";
}

.fad.fa-drone:after {
  content: "􏡟";
}

.fad.fa-drone-alt:after {
  content: "􏡠";
}

.fad.fa-drum:after {
  content: "􏕩";
}

.fad.fa-drum-steelpan:after {
  content: "􏕪";
}

.fad.fa-drumstick:after {
  content: "􏛖";
}

.fad.fa-drumstick-bite:after {
  content: "􏛗";
}

.fad.fa-dryer:after {
  content: "􏡡";
}

.fad.fa-dryer-alt:after {
  content: "􏡢";
}

.fad.fa-duck:after {
  content: "􏛘";
}

.fad.fa-dumbbell:after {
  content: "􏑋";
}

.fad.fa-dumpster:after {
  content: "􏞓";
}

.fad.fa-dumpster-fire:after {
  content: "􏞔";
}

.fad.fa-dungeon:after {
  content: "􏛙";
}

.fad.fa-ear:after {
  content: "􏗰";
}

.fad.fa-ear-muffs:after {
  content: "􏞕";
}

.fad.fa-eclipse:after {
  content: "􏝉";
}

.fad.fa-eclipse-alt:after {
  content: "􏝊";
}

.fad.fa-edit:after {
  content: "􏁄";
}

.fad.fa-egg:after {
  content: "􏟻";
}

.fad.fa-egg-fried:after {
  content: "􏟼";
}

.fad.fa-eject:after {
  content: "􏁒";
}

.fad.fa-elephant:after {
  content: "􏛚";
}

.fad.fa-ellipsis-h:after {
  content: "􏅁";
}

.fad.fa-ellipsis-h-alt:after {
  content: "􏎛";
}

.fad.fa-ellipsis-v:after {
  content: "􏅂";
}

.fad.fa-ellipsis-v-alt:after {
  content: "􏎜";
}

.fad.fa-empty-set:after {
  content: "􏙖";
}

.fad.fa-engine-warning:after {
  content: "􏗲";
}

.fad.fa-envelope:after {
  content: "􏃠";
}

.fad.fa-envelope-open:after {
  content: "􏊶";
}

.fad.fa-envelope-open-dollar:after {
  content: "􏙗";
}

.fad.fa-envelope-open-text:after {
  content: "􏙘";
}

.fad.fa-envelope-square:after {
  content: "􏆙";
}

.fad.fa-equals:after {
  content: "􏔬";
}

.fad.fa-eraser:after {
  content: "􏄭";
}

.fad.fa-ethernet:after {
  content: "􏞖";
}

.fad.fa-euro-sign:after {
  content: "􏅓";
}

.fad.fa-exchange:after {
  content: "􏃬";
}

.fad.fa-exchange-alt:after {
  content: "􏍢";
}

.fad.fa-exclamation:after {
  content: "􏄪";
}

.fad.fa-exclamation-circle:after {
  content: "􏁪";
}

.fad.fa-exclamation-square:after {
  content: "􏌡";
}

.fad.fa-exclamation-triangle:after {
  content: "􏁱";
}

.fad.fa-expand:after {
  content: "􏁥";
}

.fad.fa-expand-alt:after {
  content: "􏐤";
}

.fad.fa-expand-arrows:after {
  content: "􏌝";
}

.fad.fa-expand-arrows-alt:after {
  content: "􏌞";
}

.fad.fa-expand-wide:after {
  content: "􏌠";
}

.fad.fa-external-link:after {
  content: "􏂎";
}

.fad.fa-external-link-alt:after {
  content: "􏍝";
}

.fad.fa-external-link-square:after {
  content: "􏅌";
}

.fad.fa-external-link-square-alt:after {
  content: "􏍠";
}

.fad.fa-eye:after {
  content: "􏁮";
}

.fad.fa-eye-dropper:after {
  content: "􏇻";
}

.fad.fa-eye-evil:after {
  content: "􏛛";
}

.fad.fa-eye-slash:after {
  content: "􏁰";
}

.fad.fa-fan:after {
  content: "􏡣";
}

.fad.fa-fan-table:after {
  content: "􎀄";
}

.fad.fa-farm:after {
  content: "􏡤";
}

.fad.fa-fast-backward:after {
  content: "􏁉";
}

.fad.fa-fast-forward:after {
  content: "􏁐";
}

.fad.fa-faucet:after {
  content: "􎀅";
}

.fad.fa-faucet-drip:after {
  content: "􎀆";
}

.fad.fa-fax:after {
  content: "􏆬";
}

.fad.fa-feather:after {
  content: "􏔭";
}

.fad.fa-feather-alt:after {
  content: "􏕫";
}

.fad.fa-female:after {
  content: "􏆂";
}

.fad.fa-field-hockey:after {
  content: "􏑌";
}

.fad.fa-fighter-jet:after {
  content: "􏃻";
}

.fad.fa-file:after {
  content: "􏅛";
}

.fad.fa-file-alt:after {
  content: "􏅜";
}

.fad.fa-file-archive:after {
  content: "􏇆";
}

.fad.fa-file-audio:after {
  content: "􏇇";
}

.fad.fa-file-certificate:after {
  content: "􏗳";
}

.fad.fa-file-chart-line:after {
  content: "􏙙";
}

.fad.fa-file-chart-pie:after {
  content: "􏙚";
}

.fad.fa-file-check:after {
  content: "􏌖";
}

.fad.fa-file-code:after {
  content: "􏇉";
}

.fad.fa-file-contract:after {
  content: "􏕬";
}

.fad.fa-file-csv:after {
  content: "􏛝";
}

.fad.fa-file-download:after {
  content: "􏕭";
}

.fad.fa-file-edit:after {
  content: "􏌜";
}

.fad.fa-file-excel:after {
  content: "􏇃";
}

.fad.fa-file-exclamation:after {
  content: "􏌚";
}

.fad.fa-file-export:after {
  content: "􏕮";
}

.fad.fa-file-image:after {
  content: "􏇅";
}

.fad.fa-file-import:after {
  content: "􏕯";
}

.fad.fa-file-invoice:after {
  content: "􏕰";
}

.fad.fa-file-invoice-dollar:after {
  content: "􏕱";
}

.fad.fa-file-medical:after {
  content: "􏑷";
}

.fad.fa-file-medical-alt:after {
  content: "􏑸";
}

.fad.fa-file-minus:after {
  content: "􏌘";
}

.fad.fa-file-music:after {
  content: "􏢶";
}

.fad.fa-file-pdf:after {
  content: "􏇁";
}

.fad.fa-file-plus:after {
  content: "􏌙";
}

.fad.fa-file-powerpoint:after {
  content: "􏇄";
}

.fad.fa-file-prescription:after {
  content: "􏕲";
}

.fad.fa-file-search:after {
  content: "􏡥";
}

.fad.fa-file-signature:after {
  content: "􏕳";
}

.fad.fa-file-spreadsheet:after {
  content: "􏙛";
}

.fad.fa-file-times:after {
  content: "􏌗";
}

.fad.fa-file-upload:after {
  content: "􏕴";
}

.fad.fa-file-user:after {
  content: "􏙜";
}

.fad.fa-file-video:after {
  content: "􏇈";
}

.fad.fa-file-word:after {
  content: "􏇂";
}

.fad.fa-files-medical:after {
  content: "􏟽";
}

.fad.fa-fill:after {
  content: "􏕵";
}

.fad.fa-fill-drip:after {
  content: "􏕶";
}

.fad.fa-film:after {
  content: "􏀈";
}

.fad.fa-film-alt:after {
  content: "􏎠";
}

.fad.fa-film-canister:after {
  content: "􏢷";
}

.fad.fa-filter:after {
  content: "􏂰";
}

.fad.fa-fingerprint:after {
  content: "􏕷";
}

.fad.fa-fire:after {
  content: "􏁭";
}

.fad.fa-fire-alt:after {
  content: "􏟤";
}

.fad.fa-fire-extinguisher:after {
  content: "􏄴";
}

.fad.fa-fire-smoke:after {
  content: "􏝋";
}

.fad.fa-fireplace:after {
  content: "􏞚";
}

.fad.fa-first-aid:after {
  content: "􏑹";
}

.fad.fa-fish:after {
  content: "􏕸";
}

.fad.fa-fish-cooked:after {
  content: "􏟾";
}

.fad.fa-fist-raised:after {
  content: "􏛞";
}

.fad.fa-flag:after {
  content: "􏀤";
}

.fad.fa-flag-alt:after {
  content: "􏝌";
}

.fad.fa-flag-checkered:after {
  content: "􏄞";
}

.fad.fa-flag-usa:after {
  content: "􏝍";
}

.fad.fa-flame:after {
  content: "􏛟";
}

.fad.fa-flashlight:after {
  content: "􏢸";
}

.fad.fa-flask:after {
  content: "􏃃";
}

.fad.fa-flask-poison:after {
  content: "􏛠";
}

.fad.fa-flask-potion:after {
  content: "􏛡";
}

.fad.fa-flower:after {
  content: "􏟿";
}

.fad.fa-flower-daffodil:after {
  content: "􏠀";
}

.fad.fa-flower-tulip:after {
  content: "􏠁";
}

.fad.fa-flushed:after {
  content: "􏕹";
}

.fad.fa-flute:after {
  content: "􏢹";
}

.fad.fa-flux-capacitor:after {
  content: "􏢺";
}

.fad.fa-fog:after {
  content: "􏝎";
}

.fad.fa-folder:after {
  content: "􏁻";
}

.fad.fa-folder-download:after {
  content: "􎁓";
}

.fad.fa-folder-minus:after {
  content: "􏙝";
}

.fad.fa-folder-open:after {
  content: "􏁼";
}

.fad.fa-folder-plus:after {
  content: "􏙞";
}

.fad.fa-folder-times:after {
  content: "􏙟";
}

.fad.fa-folder-tree:after {
  content: "􏠂";
}

.fad.fa-folder-upload:after {
  content: "􎁔";
}

.fad.fa-folders:after {
  content: "􏙠";
}

.fad.fa-font:after {
  content: "􏀱";
}

.fad.fa-font-awesome-logo-full:after {
  content: "􏓦";
}

.fad.fa-font-case:after {
  content: "􏡦";
}

.fad.fa-football-ball:after {
  content: "􏑎";
}

.fad.fa-football-helmet:after {
  content: "􏑏";
}

.fad.fa-forklift:after {
  content: "􏑺";
}

.fad.fa-forward:after {
  content: "􏁎";
}

.fad.fa-fragile:after {
  content: "􏒻";
}

.fad.fa-french-fries:after {
  content: "􏠃";
}

.fad.fa-frog:after {
  content: "􏔮";
}

.fad.fa-frosty-head:after {
  content: "􏞛";
}

.fad.fa-frown:after {
  content: "􏄙";
}

.fad.fa-frown-open:after {
  content: "􏕺";
}

.fad.fa-function:after {
  content: "􏙡";
}

.fad.fa-funnel-dollar:after {
  content: "􏙢";
}

.fad.fa-futbol:after {
  content: "􏇣";
}

.fad.fa-galaxy:after {
  content: "􎀈";
}

.fad.fa-game-board:after {
  content: "􏡧";
}

.fad.fa-game-board-alt:after {
  content: "􏡨";
}

.fad.fa-game-console-handheld:after {
  content: "􏢻";
}

.fad.fa-gamepad:after {
  content: "􏄛";
}

.fad.fa-gamepad-alt:after {
  content: "􏢼";
}

.fad.fa-garage:after {
  content: "􎀉";
}

.fad.fa-garage-car:after {
  content: "􎀊";
}

.fad.fa-garage-open:after {
  content: "􎀋";
}

.fad.fa-gas-pump:after {
  content: "􏔯";
}

.fad.fa-gas-pump-slash:after {
  content: "􏗴";
}

.fad.fa-gavel:after {
  content: "􏃣";
}

.fad.fa-gem:after {
  content: "􏎥";
}

.fad.fa-genderless:after {
  content: "􏈭";
}

.fad.fa-ghost:after {
  content: "􏛢";
}

.fad.fa-gift:after {
  content: "􏁫";
}

.fad.fa-gift-card:after {
  content: "􏙣";
}

.fad.fa-gifts:after {
  content: "􏞜";
}

.fad.fa-gingerbread-man:after {
  content: "􏞝";
}

.fad.fa-glass:after {
  content: "􏠄";
}

.fad.fa-glass-champagne:after {
  content: "􏞞";
}

.fad.fa-glass-cheers:after {
  content: "􏞟";
}

.fad.fa-glass-citrus:after {
  content: "􏡩";
}

.fad.fa-glass-martini:after {
  content: "􏀀";
}

.fad.fa-glass-martini-alt:after {
  content: "􏕻";
}

.fad.fa-glass-whiskey:after {
  content: "􏞠";
}

.fad.fa-glass-whiskey-rocks:after {
  content: "􏞡";
}

.fad.fa-glasses:after {
  content: "􏔰";
}

.fad.fa-glasses-alt:after {
  content: "􏗵";
}

.fad.fa-globe:after {
  content: "􏂬";
}

.fad.fa-globe-africa:after {
  content: "􏕼";
}

.fad.fa-globe-americas:after {
  content: "􏕽";
}

.fad.fa-globe-asia:after {
  content: "􏕾";
}

.fad.fa-globe-europe:after {
  content: "􏞢";
}

.fad.fa-globe-snow:after {
  content: "􏞣";
}

.fad.fa-globe-stand:after {
  content: "􏗶";
}

.fad.fa-golf-ball:after {
  content: "􏑐";
}

.fad.fa-golf-club:after {
  content: "􏑑";
}

.fad.fa-gopuram:after {
  content: "􏙤";
}

.fad.fa-graduation-cap:after {
  content: "􏆝";
}

.fad.fa-gramophone:after {
  content: "􏢽";
}

.fad.fa-greater-than:after {
  content: "􏔱";
}

.fad.fa-greater-than-equal:after {
  content: "􏔲";
}

.fad.fa-grimace:after {
  content: "􏕿";
}

.fad.fa-grin:after {
  content: "􏖀";
}

.fad.fa-grin-alt:after {
  content: "􏖁";
}

.fad.fa-grin-beam:after {
  content: "􏖂";
}

.fad.fa-grin-beam-sweat:after {
  content: "􏖃";
}

.fad.fa-grin-hearts:after {
  content: "􏖄";
}

.fad.fa-grin-squint:after {
  content: "􏖅";
}

.fad.fa-grin-squint-tears:after {
  content: "􏖆";
}

.fad.fa-grin-stars:after {
  content: "􏖇";
}

.fad.fa-grin-tears:after {
  content: "􏖈";
}

.fad.fa-grin-tongue:after {
  content: "􏖉";
}

.fad.fa-grin-tongue-squint:after {
  content: "􏖊";
}

.fad.fa-grin-tongue-wink:after {
  content: "􏖋";
}

.fad.fa-grin-wink:after {
  content: "􏖌";
}

.fad.fa-grip-horizontal:after {
  content: "􏖍";
}

.fad.fa-grip-lines:after {
  content: "􏞤";
}

.fad.fa-grip-lines-vertical:after {
  content: "􏞥";
}

.fad.fa-grip-vertical:after {
  content: "􏖎";
}

.fad.fa-guitar:after {
  content: "􏞦";
}

.fad.fa-guitar-electric:after {
  content: "􏢾";
}

.fad.fa-guitars:after {
  content: "􏢿";
}

.fad.fa-h-square:after {
  content: "􏃽";
}

.fad.fa-h1:after {
  content: "􏌓";
}

.fad.fa-h2:after {
  content: "􏌔";
}

.fad.fa-h3:after {
  content: "􏌕";
}

.fad.fa-h4:after {
  content: "􏡪";
}

.fad.fa-hamburger:after {
  content: "􏠅";
}

.fad.fa-hammer:after {
  content: "􏛣";
}

.fad.fa-hammer-war:after {
  content: "􏛤";
}

.fad.fa-hamsa:after {
  content: "􏙥";
}

.fad.fa-hand-heart:after {
  content: "􏒼";
}

.fad.fa-hand-holding:after {
  content: "􏒽";
}

.fad.fa-hand-holding-box:after {
  content: "􏑻";
}

.fad.fa-hand-holding-heart:after {
  content: "􏒾";
}

.fad.fa-hand-holding-magic:after {
  content: "􏛥";
}

.fad.fa-hand-holding-medical:after {
  content: "􎁜";
}

.fad.fa-hand-holding-seedling:after {
  content: "􏒿";
}

.fad.fa-hand-holding-usd:after {
  content: "􏓀";
}

.fad.fa-hand-holding-water:after {
  content: "􏓁";
}

.fad.fa-hand-lizard:after {
  content: "􏉘";
}

.fad.fa-hand-middle-finger:after {
  content: "􏠆";
}

.fad.fa-hand-paper:after {
  content: "􏉖";
}

.fad.fa-hand-peace:after {
  content: "􏉛";
}

.fad.fa-hand-point-down:after {
  content: "􏂧";
}

.fad.fa-hand-point-left:after {
  content: "􏂥";
}

.fad.fa-hand-point-right:after {
  content: "􏂤";
}

.fad.fa-hand-point-up:after {
  content: "􏂦";
}

.fad.fa-hand-pointer:after {
  content: "􏉚";
}

.fad.fa-hand-receiving:after {
  content: "􏑼";
}

.fad.fa-hand-rock:after {
  content: "􏉕";
}

.fad.fa-hand-scissors:after {
  content: "􏉗";
}

.fad.fa-hand-sparkles:after {
  content: "􎁝";
}

.fad.fa-hand-spock:after {
  content: "􏉙";
}

.fad.fa-hands:after {
  content: "􏓂";
}

.fad.fa-hands-heart:after {
  content: "􏓃";
}

.fad.fa-hands-helping:after {
  content: "􏓄";
}

.fad.fa-hands-usd:after {
  content: "􏓅";
}

.fad.fa-hands-wash:after {
  content: "􎁞";
}

.fad.fa-handshake:after {
  content: "􏊵";
}

.fad.fa-handshake-alt:after {
  content: "􏓆";
}

.fad.fa-handshake-alt-slash:after {
  content: "􎁟";
}

.fad.fa-handshake-slash:after {
  content: "􎁠";
}

.fad.fa-hanukiah:after {
  content: "􏛦";
}

.fad.fa-hard-hat:after {
  content: "􏠇";
}

.fad.fa-hashtag:after {
  content: "􏊒";
}

.fad.fa-hat-chef:after {
  content: "􏡫";
}

.fad.fa-hat-cowboy:after {
  content: "􏣀";
}

.fad.fa-hat-cowboy-side:after {
  content: "􏣁";
}

.fad.fa-hat-santa:after {
  content: "􏞧";
}

.fad.fa-hat-winter:after {
  content: "􏞨";
}

.fad.fa-hat-witch:after {
  content: "􏛧";
}

.fad.fa-hat-wizard:after {
  content: "􏛨";
}

.fad.fa-hdd:after {
  content: "􏂠";
}

.fad.fa-head-side:after {
  content: "􏛩";
}

.fad.fa-head-side-brain:after {
  content: "􏠈";
}

.fad.fa-head-side-cough:after {
  content: "􎁡";
}

.fad.fa-head-side-cough-slash:after {
  content: "􎁢";
}

.fad.fa-head-side-headphones:after {
  content: "􏣂";
}

.fad.fa-head-side-mask:after {
  content: "􎁣";
}

.fad.fa-head-side-medical:after {
  content: "􏠉";
}

.fad.fa-head-side-virus:after {
  content: "􎁤";
}

.fad.fa-head-vr:after {
  content: "􏛪";
}

.fad.fa-heading:after {
  content: "􏇜";
}

.fad.fa-headphones:after {
  content: "􏀥";
}

.fad.fa-headphones-alt:after {
  content: "􏖏";
}

.fad.fa-headset:after {
  content: "􏖐";
}

.fad.fa-heart:after {
  content: "􏀄";
}

.fad.fa-heart-broken:after {
  content: "􏞩";
}

.fad.fa-heart-circle:after {
  content: "􏓇";
}

.fad.fa-heart-rate:after {
  content: "􏗸";
}

.fad.fa-heart-square:after {
  content: "􏓈";
}

.fad.fa-heartbeat:after {
  content: "􏈞";
}

.fad.fa-heat:after {
  content: "􎀌";
}

.fad.fa-helicopter:after {
  content: "􏔳";
}

.fad.fa-helmet-battle:after {
  content: "􏛫";
}

.fad.fa-hexagon:after {
  content: "􏌒";
}

.fad.fa-highlighter:after {
  content: "􏖑";
}

.fad.fa-hiking:after {
  content: "􏛬";
}

.fad.fa-hippo:after {
  content: "􏛭";
}

.fad.fa-history:after {
  content: "􏇚";
}

.fad.fa-hockey-mask:after {
  content: "􏛮";
}

.fad.fa-hockey-puck:after {
  content: "􏑓";
}

.fad.fa-hockey-sticks:after {
  content: "􏑔";
}

.fad.fa-holly-berry:after {
  content: "􏞪";
}

.fad.fa-home:after {
  content: "􏀕";
}

.fad.fa-home-alt:after {
  content: "􏠊";
}

.fad.fa-home-heart:after {
  content: "􏓉";
}

.fad.fa-home-lg:after {
  content: "􏠋";
}

.fad.fa-home-lg-alt:after {
  content: "􏠌";
}

.fad.fa-hood-cloak:after {
  content: "􏛯";
}

.fad.fa-horizontal-rule:after {
  content: "􏡬";
}

.fad.fa-horse:after {
  content: "􏛰";
}

.fad.fa-horse-head:after {
  content: "􏞫";
}

.fad.fa-horse-saddle:after {
  content: "􏣃";
}

.fad.fa-hospital:after {
  content: "􏃸";
}

.fad.fa-hospital-alt:after {
  content: "􏑽";
}

.fad.fa-hospital-symbol:after {
  content: "􏑾";
}

.fad.fa-hospital-user:after {
  content: "􏠍";
}

.fad.fa-hospitals:after {
  content: "􏠎";
}

.fad.fa-hot-tub:after {
  content: "􏖓";
}

.fad.fa-hotdog:after {
  content: "􏠏";
}

.fad.fa-hotel:after {
  content: "􏖔";
}

.fad.fa-hourglass:after {
  content: "􏉔";
}

.fad.fa-hourglass-end:after {
  content: "􏉓";
}

.fad.fa-hourglass-half:after {
  content: "􏉒";
}

.fad.fa-hourglass-start:after {
  content: "􏉑";
}

.fad.fa-house:after {
  content: "􎀍";
}

.fad.fa-house-damage:after {
  content: "􏛱";
}

.fad.fa-house-day:after {
  content: "􎀎";
}

.fad.fa-house-flood:after {
  content: "􏝏";
}

.fad.fa-house-leave:after {
  content: "􎀏";
}

.fad.fa-house-night:after {
  content: "􎀐";
}

.fad.fa-house-return:after {
  content: "􎀑";
}

.fad.fa-house-signal:after {
  content: "􎀒";
}

.fad.fa-house-user:after {
  content: "􎁥";
}

.fad.fa-hryvnia:after {
  content: "􏛲";
}

.fad.fa-humidity:after {
  content: "􏝐";
}

.fad.fa-hurricane:after {
  content: "􏝑";
}

.fad.fa-i-cursor:after {
  content: "􏉆";
}

.fad.fa-ice-cream:after {
  content: "􏠐";
}

.fad.fa-ice-skate:after {
  content: "􏞬";
}

.fad.fa-icicles:after {
  content: "􏞭";
}

.fad.fa-icons:after {
  content: "􏡭";
}

.fad.fa-icons-alt:after {
  content: "􏡮";
}

.fad.fa-id-badge:after {
  content: "􏋁";
}

.fad.fa-id-card:after {
  content: "􏋂";
}

.fad.fa-id-card-alt:after {
  content: "􏑿";
}

.fad.fa-igloo:after {
  content: "􏞮";
}

.fad.fa-image:after {
  content: "􏀾";
}

.fad.fa-image-polaroid:after {
  content: "􏣄";
}

.fad.fa-images:after {
  content: "􏌂";
}

.fad.fa-inbox:after {
  content: "􏀜";
}

.fad.fa-inbox-in:after {
  content: "􏌐";
}

.fad.fa-inbox-out:after {
  content: "􏌑";
}

.fad.fa-indent:after {
  content: "􏀼";
}

.fad.fa-industry:after {
  content: "􏉵";
}

.fad.fa-industry-alt:after {
  content: "􏎳";
}

.fad.fa-infinity:after {
  content: "􏔴";
}

.fad.fa-info:after {
  content: "􏄩";
}

.fad.fa-info-circle:after {
  content: "􏁚";
}

.fad.fa-info-square:after {
  content: "􏌏";
}

.fad.fa-inhaler:after {
  content: "􏗹";
}

.fad.fa-integral:after {
  content: "􏙧";
}

.fad.fa-intersection:after {
  content: "􏙨";
}

.fad.fa-inventory:after {
  content: "􏒀";
}

.fad.fa-island-tropical:after {
  content: "􏠑";
}

.fad.fa-italic:after {
  content: "􏀳";
}

.fad.fa-jack-o-lantern:after {
  content: "􏌎";
}

.fad.fa-jedi:after {
  content: "􏙩";
}

.fad.fa-joint:after {
  content: "􏖕";
}

.fad.fa-journal-whills:after {
  content: "􏙪";
}

.fad.fa-joystick:after {
  content: "􏣅";
}

.fad.fa-jug:after {
  content: "􏣆";
}

.fad.fa-kaaba:after {
  content: "􏙫";
}

.fad.fa-kazoo:after {
  content: "􏣇";
}

.fad.fa-kerning:after {
  content: "􏡯";
}

.fad.fa-key:after {
  content: "􏂄";
}

.fad.fa-key-skeleton:after {
  content: "􏛳";
}

.fad.fa-keyboard:after {
  content: "􏄜";
}

.fad.fa-keynote:after {
  content: "􏙬";
}

.fad.fa-khanda:after {
  content: "􏙭";
}

.fad.fa-kidneys:after {
  content: "􏗻";
}

.fad.fa-kiss:after {
  content: "􏖖";
}

.fad.fa-kiss-beam:after {
  content: "􏖗";
}

.fad.fa-kiss-wink-heart:after {
  content: "􏖘";
}

.fad.fa-kite:after {
  content: "􏛴";
}

.fad.fa-kiwi-bird:after {
  content: "􏔵";
}

.fad.fa-knife-kitchen:after {
  content: "􏛵";
}

.fad.fa-lambda:after {
  content: "􏙮";
}

.fad.fa-lamp:after {
  content: "􏓊";
}

.fad.fa-lamp-desk:after {
  content: "􎀔";
}

.fad.fa-lamp-floor:after {
  content: "􎀕";
}

.fad.fa-landmark:after {
  content: "􏙯";
}

.fad.fa-landmark-alt:after {
  content: "􏝒";
}

.fad.fa-language:after {
  content: "􏆫";
}

.fad.fa-laptop:after {
  content: "􏄉";
}

.fad.fa-laptop-code:after {
  content: "􏗼";
}

.fad.fa-laptop-house:after {
  content: "􎁦";
}

.fad.fa-laptop-medical:after {
  content: "􏠒";
}

.fad.fa-lasso:after {
  content: "􏣈";
}

.fad.fa-laugh:after {
  content: "􏖙";
}

.fad.fa-laugh-beam:after {
  content: "􏖚";
}

.fad.fa-laugh-squint:after {
  content: "􏖛";
}

.fad.fa-laugh-wink:after {
  content: "􏖜";
}

.fad.fa-layer-group:after {
  content: "􏗽";
}

.fad.fa-layer-minus:after {
  content: "􏗾";
}

.fad.fa-layer-plus:after {
  content: "􏗿";
}

.fad.fa-leaf:after {
  content: "􏁬";
}

.fad.fa-leaf-heart:after {
  content: "􏓋";
}

.fad.fa-leaf-maple:after {
  content: "􏛶";
}

.fad.fa-leaf-oak:after {
  content: "􏛷";
}

.fad.fa-lemon:after {
  content: "􏂔";
}

.fad.fa-less-than:after {
  content: "􏔶";
}

.fad.fa-less-than-equal:after {
  content: "􏔷";
}

.fad.fa-level-down:after {
  content: "􏅉";
}

.fad.fa-level-down-alt:after {
  content: "􏎾";
}

.fad.fa-level-up:after {
  content: "􏅈";
}

.fad.fa-level-up-alt:after {
  content: "􏎿";
}

.fad.fa-life-ring:after {
  content: "􏇍";
}

.fad.fa-light-ceiling:after {
  content: "􎀖";
}

.fad.fa-light-switch:after {
  content: "􎀗";
}

.fad.fa-light-switch-off:after {
  content: "􎀘";
}

.fad.fa-light-switch-on:after {
  content: "􎀙";
}

.fad.fa-lightbulb:after {
  content: "􏃫";
}

.fad.fa-lightbulb-dollar:after {
  content: "􏙰";
}

.fad.fa-lightbulb-exclamation:after {
  content: "􏙱";
}

.fad.fa-lightbulb-on:after {
  content: "􏙲";
}

.fad.fa-lightbulb-slash:after {
  content: "􏙳";
}

.fad.fa-lights-holiday:after {
  content: "􏞲";
}

.fad.fa-line-columns:after {
  content: "􏡰";
}

.fad.fa-line-height:after {
  content: "􏡱";
}

.fad.fa-link:after {
  content: "􏃁";
}

.fad.fa-lips:after {
  content: "􏘀";
}

.fad.fa-lira-sign:after {
  content: "􏆕";
}

.fad.fa-list:after {
  content: "􏀺";
}

.fad.fa-list-alt:after {
  content: "􏀢";
}

.fad.fa-list-music:after {
  content: "􏣉";
}

.fad.fa-list-ol:after {
  content: "􏃋";
}

.fad.fa-list-ul:after {
  content: "􏃊";
}

.fad.fa-location:after {
  content: "􏘁";
}

.fad.fa-location-arrow:after {
  content: "􏄤";
}

.fad.fa-location-circle:after {
  content: "􏘂";
}

.fad.fa-location-slash:after {
  content: "􏘃";
}

.fad.fa-lock:after {
  content: "􏀣";
}

.fad.fa-lock-alt:after {
  content: "􏌍";
}

.fad.fa-lock-open:after {
  content: "􏏁";
}

.fad.fa-lock-open-alt:after {
  content: "􏏂";
}

.fad.fa-long-arrow-alt-down:after {
  content: "􏌉";
}

.fad.fa-long-arrow-alt-left:after {
  content: "􏌊";
}

.fad.fa-long-arrow-alt-right:after {
  content: "􏌋";
}

.fad.fa-long-arrow-alt-up:after {
  content: "􏌌";
}

.fad.fa-long-arrow-down:after {
  content: "􏅵";
}

.fad.fa-long-arrow-left:after {
  content: "􏅷";
}

.fad.fa-long-arrow-right:after {
  content: "􏅸";
}

.fad.fa-long-arrow-up:after {
  content: "􏅶";
}

.fad.fa-loveseat:after {
  content: "􏓌";
}

.fad.fa-low-vision:after {
  content: "􏊨";
}

.fad.fa-luchador:after {
  content: "􏑕";
}

.fad.fa-luggage-cart:after {
  content: "􏖝";
}

.fad.fa-lungs:after {
  content: "􏘄";
}

.fad.fa-lungs-virus:after {
  content: "􎁧";
}

.fad.fa-mace:after {
  content: "􏛸";
}

.fad.fa-magic:after {
  content: "􏃐";
}

.fad.fa-magnet:after {
  content: "􏁶";
}

.fad.fa-mail-bulk:after {
  content: "􏙴";
}

.fad.fa-mailbox:after {
  content: "􏠓";
}

.fad.fa-male:after {
  content: "􏆃";
}

.fad.fa-mandolin:after {
  content: "􏛹";
}

.fad.fa-map:after {
  content: "􏉹";
}

.fad.fa-map-marked:after {
  content: "􏖟";
}

.fad.fa-map-marked-alt:after {
  content: "􏖠";
}

.fad.fa-map-marker:after {
  content: "􏁁";
}

.fad.fa-map-marker-alt:after {
  content: "􏏅";
}

.fad.fa-map-marker-alt-slash:after {
  content: "􏘅";
}

.fad.fa-map-marker-check:after {
  content: "􏘆";
}

.fad.fa-map-marker-edit:after {
  content: "􏘇";
}

.fad.fa-map-marker-exclamation:after {
  content: "􏘈";
}

.fad.fa-map-marker-minus:after {
  content: "􏘉";
}

.fad.fa-map-marker-plus:after {
  content: "􏘊";
}

.fad.fa-map-marker-question:after {
  content: "􏘋";
}

.fad.fa-map-marker-slash:after {
  content: "􏘌";
}

.fad.fa-map-marker-smile:after {
  content: "􏘍";
}

.fad.fa-map-marker-times:after {
  content: "􏘎";
}

.fad.fa-map-pin:after {
  content: "􏉶";
}

.fad.fa-map-signs:after {
  content: "􏉷";
}

.fad.fa-marker:after {
  content: "􏖡";
}

.fad.fa-mars:after {
  content: "􏈢";
}

.fad.fa-mars-double:after {
  content: "􏈧";
}

.fad.fa-mars-stroke:after {
  content: "􏈩";
}

.fad.fa-mars-stroke-h:after {
  content: "􏈫";
}

.fad.fa-mars-stroke-v:after {
  content: "􏈪";
}

.fad.fa-mask:after {
  content: "􏛺";
}

.fad.fa-meat:after {
  content: "􏠔";
}

.fad.fa-medal:after {
  content: "􏖢";
}

.fad.fa-medkit:after {
  content: "􏃺";
}

.fad.fa-megaphone:after {
  content: "􏙵";
}

.fad.fa-meh:after {
  content: "􏄚";
}

.fad.fa-meh-blank:after {
  content: "􏖤";
}

.fad.fa-meh-rolling-eyes:after {
  content: "􏖥";
}

.fad.fa-memory:after {
  content: "􏔸";
}

.fad.fa-menorah:after {
  content: "􏙶";
}

.fad.fa-mercury:after {
  content: "􏈣";
}

.fad.fa-meteor:after {
  content: "􏝓";
}

.fad.fa-microchip:after {
  content: "􏋛";
}

.fad.fa-microphone:after {
  content: "􏄰";
}

.fad.fa-microphone-alt:after {
  content: "􏏉";
}

.fad.fa-microphone-alt-slash:after {
  content: "􏔹";
}

.fad.fa-microphone-slash:after {
  content: "􏄱";
}

.fad.fa-microphone-stand:after {
  content: "􏣋";
}

.fad.fa-microscope:after {
  content: "􏘐";
}

.fad.fa-microwave:after {
  content: "􎀛";
}

.fad.fa-mind-share:after {
  content: "􏙷";
}

.fad.fa-minus:after {
  content: "􏁨";
}

.fad.fa-minus-circle:after {
  content: "􏁖";
}

.fad.fa-minus-hexagon:after {
  content: "􏌇";
}

.fad.fa-minus-octagon:after {
  content: "􏌈";
}

.fad.fa-minus-square:after {
  content: "􏅆";
}

.fad.fa-mistletoe:after {
  content: "􏞴";
}

.fad.fa-mitten:after {
  content: "􏞵";
}

.fad.fa-mobile:after {
  content: "􏄋";
}

.fad.fa-mobile-alt:after {
  content: "􏏍";
}

.fad.fa-mobile-android:after {
  content: "􏏎";
}

.fad.fa-mobile-android-alt:after {
  content: "􏏏";
}

.fad.fa-money-bill:after {
  content: "􏃖";
}

.fad.fa-money-bill-alt:after {
  content: "􏏑";
}

.fad.fa-money-bill-wave:after {
  content: "􏔺";
}

.fad.fa-money-bill-wave-alt:after {
  content: "􏔻";
}

.fad.fa-money-check:after {
  content: "􏔼";
}

.fad.fa-money-check-alt:after {
  content: "􏔽";
}

.fad.fa-money-check-edit:after {
  content: "􏡲";
}

.fad.fa-money-check-edit-alt:after {
  content: "􏡳";
}

.fad.fa-monitor-heart-rate:after {
  content: "􏘑";
}

.fad.fa-monkey:after {
  content: "􏛻";
}

.fad.fa-monument:after {
  content: "􏖦";
}

.fad.fa-moon:after {
  content: "􏆆";
}

.fad.fa-moon-cloud:after {
  content: "􏝔";
}

.fad.fa-moon-stars:after {
  content: "􏝕";
}

.fad.fa-mortar-pestle:after {
  content: "􏖧";
}

.fad.fa-mosque:after {
  content: "􏙸";
}

.fad.fa-motorcycle:after {
  content: "􏈜";
}

.fad.fa-mountain:after {
  content: "􏛼";
}

.fad.fa-mountains:after {
  content: "􏛽";
}

.fad.fa-mouse:after {
  content: "􏣌";
}

.fad.fa-mouse-alt:after {
  content: "􏣍";
}

.fad.fa-mouse-pointer:after {
  content: "􏉅";
}

.fad.fa-mp3-player:after {
  content: "􏣎";
}

.fad.fa-mug:after {
  content: "􏡴";
}

.fad.fa-mug-hot:after {
  content: "􏞶";
}

.fad.fa-mug-marshmallows:after {
  content: "􏞷";
}

.fad.fa-mug-tea:after {
  content: "􏡵";
}

.fad.fa-music:after {
  content: "􏀁";
}

.fad.fa-music-alt:after {
  content: "􏣏";
}

.fad.fa-music-alt-slash:after {
  content: "􏣐";
}

.fad.fa-music-slash:after {
  content: "􏣑";
}

.fad.fa-narwhal:after {
  content: "􏛾";
}

.fad.fa-network-wired:after {
  content: "􏛿";
}

.fad.fa-neuter:after {
  content: "􏈬";
}

.fad.fa-newspaper:after {
  content: "􏇪";
}

.fad.fa-not-equal:after {
  content: "􏔾";
}

.fad.fa-notes-medical:after {
  content: "􏒁";
}

.fad.fa-object-group:after {
  content: "􏉇";
}

.fad.fa-object-ungroup:after {
  content: "􏉈";
}

.fad.fa-octagon:after {
  content: "􏌆";
}

.fad.fa-oil-can:after {
  content: "􏘓";
}

.fad.fa-oil-temp:after {
  content: "􏘔";
}

.fad.fa-om:after {
  content: "􏙹";
}

.fad.fa-omega:after {
  content: "􏙺";
}

.fad.fa-ornament:after {
  content: "􏞸";
}

.fad.fa-otter:after {
  content: "􏜀";
}

.fad.fa-outdent:after {
  content: "􏀻";
}

.fad.fa-outlet:after {
  content: "􎀜";
}

.fad.fa-oven:after {
  content: "􎀝";
}

.fad.fa-overline:after {
  content: "􏡶";
}

.fad.fa-page-break:after {
  content: "􏡷";
}

.fad.fa-pager:after {
  content: "􏠕";
}

.fad.fa-paint-brush:after {
  content: "􏇼";
}

.fad.fa-paint-brush-alt:after {
  content: "􏖩";
}

.fad.fa-paint-roller:after {
  content: "􏖪";
}

.fad.fa-palette:after {
  content: "􏔿";
}

.fad.fa-pallet:after {
  content: "􏒂";
}

.fad.fa-pallet-alt:after {
  content: "􏒃";
}

.fad.fa-paper-plane:after {
  content: "􏇘";
}

.fad.fa-paperclip:after {
  content: "􏃆";
}

.fad.fa-parachute-box:after {
  content: "􏓍";
}

.fad.fa-paragraph:after {
  content: "􏇝";
}

.fad.fa-paragraph-rtl:after {
  content: "􏡸";
}

.fad.fa-parking:after {
  content: "􏕀";
}

.fad.fa-parking-circle:after {
  content: "􏘕";
}

.fad.fa-parking-circle-slash:after {
  content: "􏘖";
}

.fad.fa-parking-slash:after {
  content: "􏘗";
}

.fad.fa-passport:after {
  content: "􏖫";
}

.fad.fa-pastafarianism:after {
  content: "􏙻";
}

.fad.fa-paste:after {
  content: "􏃪";
}

.fad.fa-pause:after {
  content: "􏁌";
}

.fad.fa-pause-circle:after {
  content: "􏊋";
}

.fad.fa-paw:after {
  content: "􏆰";
}

.fad.fa-paw-alt:after {
  content: "􏜁";
}

.fad.fa-paw-claws:after {
  content: "􏜂";
}

.fad.fa-peace:after {
  content: "􏙼";
}

.fad.fa-pegasus:after {
  content: "􏜃";
}

.fad.fa-pen:after {
  content: "􏌄";
}

.fad.fa-pen-alt:after {
  content: "􏌅";
}

.fad.fa-pen-fancy:after {
  content: "􏖬";
}

.fad.fa-pen-nib:after {
  content: "􏖭";
}

.fad.fa-pen-square:after {
  content: "􏅋";
}

.fad.fa-pencil:after {
  content: "􏁀";
}

.fad.fa-pencil-alt:after {
  content: "􏌃";
}

.fad.fa-pencil-paintbrush:after {
  content: "􏘘";
}

.fad.fa-pencil-ruler:after {
  content: "􏖮";
}

.fad.fa-pennant:after {
  content: "􏑖";
}

.fad.fa-people-arrows:after {
  content: "􎁨";
}

.fad.fa-people-carry:after {
  content: "􏓎";
}

.fad.fa-pepper-hot:after {
  content: "􏠖";
}

.fad.fa-percent:after {
  content: "􏊕";
}

.fad.fa-percentage:after {
  content: "􏕁";
}

.fad.fa-person-booth:after {
  content: "􏝖";
}

.fad.fa-person-carry:after {
  content: "􏓏";
}

.fad.fa-person-dolly:after {
  content: "􏓐";
}

.fad.fa-person-dolly-empty:after {
  content: "􏓑";
}

.fad.fa-person-sign:after {
  content: "􏝗";
}

.fad.fa-phone:after {
  content: "􏂕";
}

.fad.fa-phone-alt:after {
  content: "􏡹";
}

.fad.fa-phone-laptop:after {
  content: "􏡺";
}

.fad.fa-phone-office:after {
  content: "􏙽";
}

.fad.fa-phone-plus:after {
  content: "􏓒";
}

.fad.fa-phone-rotary:after {
  content: "􏣓";
}

.fad.fa-phone-slash:after {
  content: "􏏝";
}

.fad.fa-phone-square:after {
  content: "􏂘";
}

.fad.fa-phone-square-alt:after {
  content: "􏡻";
}

.fad.fa-phone-volume:after {
  content: "􏊠";
}

.fad.fa-photo-video:after {
  content: "􏡼";
}

.fad.fa-pi:after {
  content: "􏙾";
}

.fad.fa-piano:after {
  content: "􏣔";
}

.fad.fa-piano-keyboard:after {
  content: "􏣕";
}

.fad.fa-pie:after {
  content: "􏜅";
}

.fad.fa-pig:after {
  content: "􏜆";
}

.fad.fa-piggy-bank:after {
  content: "􏓓";
}

.fad.fa-pills:after {
  content: "􏒄";
}

.fad.fa-pizza:after {
  content: "􏠗";
}

.fad.fa-pizza-slice:after {
  content: "􏠘";
}

.fad.fa-place-of-worship:after {
  content: "􏙿";
}

.fad.fa-plane:after {
  content: "􏁲";
}

.fad.fa-plane-alt:after {
  content: "􏏞";
}

.fad.fa-plane-arrival:after {
  content: "􏖯";
}

.fad.fa-plane-departure:after {
  content: "􏖰";
}

.fad.fa-plane-slash:after {
  content: "􎁩";
}

.fad.fa-planet-moon:after {
  content: "􎀟";
}

.fad.fa-planet-ringed:after {
  content: "􎀠";
}

.fad.fa-play:after {
  content: "􏁋";
}

.fad.fa-play-circle:after {
  content: "􏅄";
}

.fad.fa-plug:after {
  content: "􏇦";
}

.fad.fa-plus:after {
  content: "􏁧";
}

.fad.fa-plus-circle:after {
  content: "􏁕";
}

.fad.fa-plus-hexagon:after {
  content: "􏌀";
}

.fad.fa-plus-octagon:after {
  content: "􏌁";
}

.fad.fa-plus-square:after {
  content: "􏃾";
}

.fad.fa-podcast:after {
  content: "􏋎";
}

.fad.fa-podium:after {
  content: "􏚀";
}

.fad.fa-podium-star:after {
  content: "􏝘";
}

.fad.fa-police-box:after {
  content: "􎀡";
}

.fad.fa-poll:after {
  content: "􏚁";
}

.fad.fa-poll-h:after {
  content: "􏚂";
}

.fad.fa-poll-people:after {
  content: "􏝙";
}

.fad.fa-poo:after {
  content: "􏋾";
}

.fad.fa-poo-storm:after {
  content: "􏝚";
}

.fad.fa-poop:after {
  content: "􏘙";
}

.fad.fa-popcorn:after {
  content: "􏠙";
}

.fad.fa-portal-enter:after {
  content: "􎀢";
}

.fad.fa-portal-exit:after {
  content: "􎀣";
}

.fad.fa-portrait:after {
  content: "􏏠";
}

.fad.fa-pound-sign:after {
  content: "􏅔";
}

.fad.fa-power-off:after {
  content: "􏀑";
}

.fad.fa-pray:after {
  content: "􏚃";
}

.fad.fa-praying-hands:after {
  content: "􏚄";
}

.fad.fa-prescription:after {
  content: "􏖱";
}

.fad.fa-prescription-bottle:after {
  content: "􏒅";
}

.fad.fa-prescription-bottle-alt:after {
  content: "􏒆";
}

.fad.fa-presentation:after {
  content: "􏚅";
}

.fad.fa-print:after {
  content: "􏀯";
}

.fad.fa-print-search:after {
  content: "􏠚";
}

.fad.fa-print-slash:after {
  content: "􏚆";
}

.fad.fa-procedures:after {
  content: "􏒇";
}

.fad.fa-project-diagram:after {
  content: "􏕂";
}

.fad.fa-projector:after {
  content: "􏣖";
}

.fad.fa-pump-medical:after {
  content: "􎁪";
}

.fad.fa-pump-soap:after {
  content: "􎁫";
}

.fad.fa-pumpkin:after {
  content: "􏜇";
}

.fad.fa-puzzle-piece:after {
  content: "􏄮";
}

.fad.fa-qrcode:after {
  content: "􏀩";
}

.fad.fa-question:after {
  content: "􏄨";
}

.fad.fa-question-circle:after {
  content: "􏁙";
}

.fad.fa-question-square:after {
  content: "􏋽";
}

.fad.fa-quidditch:after {
  content: "􏑘";
}

.fad.fa-quote-left:after {
  content: "􏄍";
}

.fad.fa-quote-right:after {
  content: "􏄎";
}

.fad.fa-quran:after {
  content: "􏚇";
}

.fad.fa-rabbit:after {
  content: "􏜈";
}

.fad.fa-rabbit-fast:after {
  content: "􏜉";
}

.fad.fa-racquet:after {
  content: "􏑚";
}

.fad.fa-radar:after {
  content: "􎀤";
}

.fad.fa-radiation:after {
  content: "􏞹";
}

.fad.fa-radiation-alt:after {
  content: "􏞺";
}

.fad.fa-radio:after {
  content: "􏣗";
}

.fad.fa-radio-alt:after {
  content: "􏣘";
}

.fad.fa-rainbow:after {
  content: "􏝛";
}

.fad.fa-raindrops:after {
  content: "􏝜";
}

.fad.fa-ram:after {
  content: "􏜊";
}

.fad.fa-ramp-loading:after {
  content: "􏓔";
}

.fad.fa-random:after {
  content: "􏁴";
}

.fad.fa-raygun:after {
  content: "􎀥";
}

.fad.fa-receipt:after {
  content: "􏕃";
}

.fad.fa-record-vinyl:after {
  content: "􏣙";
}

.fad.fa-rectangle-landscape:after {
  content: "􏋺";
}

.fad.fa-rectangle-portrait:after {
  content: "􏋻";
}

.fad.fa-rectangle-wide:after {
  content: "􏋼";
}

.fad.fa-recycle:after {
  content: "􏆸";
}

.fad.fa-redo:after {
  content: "􏀞";
}

.fad.fa-redo-alt:after {
  content: "􏋹";
}

.fad.fa-refrigerator:after {
  content: "􎀦";
}

.fad.fa-registered:after {
  content: "􏉝";
}

.fad.fa-remove-format:after {
  content: "􏡽";
}

.fad.fa-repeat:after {
  content: "􏍣";
}

.fad.fa-repeat-1:after {
  content: "􏍥";
}

.fad.fa-repeat-1-alt:after {
  content: "􏍦";
}

.fad.fa-repeat-alt:after {
  content: "􏍤";
}

.fad.fa-reply:after {
  content: "􏏥";
}

.fad.fa-reply-all:after {
  content: "􏄢";
}

.fad.fa-republican:after {
  content: "􏝞";
}

.fad.fa-restroom:after {
  content: "􏞽";
}

.fad.fa-retweet:after {
  content: "􏁹";
}

.fad.fa-retweet-alt:after {
  content: "􏍡";
}

.fad.fa-ribbon:after {
  content: "􏓖";
}

.fad.fa-ring:after {
  content: "􏜋";
}

.fad.fa-rings-wedding:after {
  content: "􏠛";
}

.fad.fa-road:after {
  content: "􏀘";
}

.fad.fa-robot:after {
  content: "􏕄";
}

.fad.fa-rocket:after {
  content: "􏄵";
}

.fad.fa-rocket-launch:after {
  content: "􎀧";
}

.fad.fa-route:after {
  content: "􏓗";
}

.fad.fa-route-highway:after {
  content: "􏘚";
}

.fad.fa-route-interstate:after {
  content: "􏘛";
}

.fad.fa-router:after {
  content: "􏣚";
}

.fad.fa-rss:after {
  content: "􏂞";
}

.fad.fa-rss-square:after {
  content: "􏅃";
}

.fad.fa-ruble-sign:after {
  content: "􏅘";
}

.fad.fa-ruler:after {
  content: "􏕅";
}

.fad.fa-ruler-combined:after {
  content: "􏕆";
}

.fad.fa-ruler-horizontal:after {
  content: "􏕇";
}

.fad.fa-ruler-triangle:after {
  content: "􏘜";
}

.fad.fa-ruler-vertical:after {
  content: "􏕈";
}

.fad.fa-running:after {
  content: "􏜌";
}

.fad.fa-rupee-sign:after {
  content: "􏅖";
}

.fad.fa-rv:after {
  content: "􏞾";
}

.fad.fa-sack:after {
  content: "􏠜";
}

.fad.fa-sack-dollar:after {
  content: "􏠝";
}

.fad.fa-sad-cry:after {
  content: "􏖳";
}

.fad.fa-sad-tear:after {
  content: "􏖴";
}

.fad.fa-salad:after {
  content: "􏠞";
}

.fad.fa-sandwich:after {
  content: "􏠟";
}

.fad.fa-satellite:after {
  content: "􏞿";
}

.fad.fa-satellite-dish:after {
  content: "􏟀";
}

.fad.fa-sausage:after {
  content: "􏠠";
}

.fad.fa-save:after {
  content: "􏃇";
}

.fad.fa-sax-hot:after {
  content: "􏣛";
}

.fad.fa-saxophone:after {
  content: "􏣜";
}

.fad.fa-scalpel:after {
  content: "􏘝";
}

.fad.fa-scalpel-path:after {
  content: "􏘞";
}

.fad.fa-scanner:after {
  content: "􏒈";
}

.fad.fa-scanner-image:after {
  content: "􏣳";
}

.fad.fa-scanner-keyboard:after {
  content: "􏒉";
}

.fad.fa-scanner-touchscreen:after {
  content: "􏒊";
}

.fad.fa-scarecrow:after {
  content: "􏜍";
}

.fad.fa-scarf:after {
  content: "􏟁";
}

.fad.fa-school:after {
  content: "􏕉";
}

.fad.fa-screwdriver:after {
  content: "􏕊";
}

.fad.fa-scroll:after {
  content: "􏜎";
}

.fad.fa-scroll-old:after {
  content: "􏜏";
}

.fad.fa-scrubber:after {
  content: "􏋸";
}

.fad.fa-scythe:after {
  content: "􏜐";
}

.fad.fa-sd-card:after {
  content: "􏟂";
}

.fad.fa-search:after {
  content: "􏀂";
}

.fad.fa-search-dollar:after {
  content: "􏚈";
}

.fad.fa-search-location:after {
  content: "􏚉";
}

.fad.fa-search-minus:after {
  content: "􏀐";
}

.fad.fa-search-plus:after {
  content: "􏀎";
}

.fad.fa-seedling:after {
  content: "􏓘";
}

.fad.fa-send-back:after {
  content: "􏡾";
}

.fad.fa-send-backward:after {
  content: "􏡿";
}

.fad.fa-sensor:after {
  content: "􎀨";
}

.fad.fa-sensor-alert:after {
  content: "􎀩";
}

.fad.fa-sensor-fire:after {
  content: "􎀪";
}

.fad.fa-sensor-on:after {
  content: "􎀫";
}

.fad.fa-sensor-smoke:after {
  content: "􎀬";
}

.fad.fa-server:after {
  content: "􏈳";
}

.fad.fa-shapes:after {
  content: "􏘟";
}

.fad.fa-share:after {
  content: "􏁤";
}

.fad.fa-share-all:after {
  content: "􏍧";
}

.fad.fa-share-alt:after {
  content: "􏇠";
}

.fad.fa-share-alt-square:after {
  content: "􏇡";
}

.fad.fa-share-square:after {
  content: "􏅍";
}

.fad.fa-sheep:after {
  content: "􏜑";
}

.fad.fa-shekel-sign:after {
  content: "􏈋";
}

.fad.fa-shield:after {
  content: "􏄲";
}

.fad.fa-shield-alt:after {
  content: "􏏭";
}

.fad.fa-shield-check:after {
  content: "􏋷";
}

.fad.fa-shield-cross:after {
  content: "􏜒";
}

.fad.fa-shield-virus:after {
  content: "􎁬";
}

.fad.fa-ship:after {
  content: "􏈚";
}

.fad.fa-shipping-fast:after {
  content: "􏒋";
}

.fad.fa-shipping-timed:after {
  content: "􏒌";
}

.fad.fa-shish-kebab:after {
  content: "􏠡";
}

.fad.fa-shoe-prints:after {
  content: "􏕋";
}

.fad.fa-shopping-bag:after {
  content: "􏊐";
}

.fad.fa-shopping-basket:after {
  content: "􏊑";
}

.fad.fa-shopping-cart:after {
  content: "􏁺";
}

.fad.fa-shovel:after {
  content: "􏜓";
}

.fad.fa-shovel-snow:after {
  content: "􏟃";
}

.fad.fa-shower:after {
  content: "􏋌";
}

.fad.fa-shredder:after {
  content: "􏚊";
}

.fad.fa-shuttle-van:after {
  content: "􏖶";
}

.fad.fa-shuttlecock:after {
  content: "􏑛";
}

.fad.fa-sickle:after {
  content: "􏠢";
}

.fad.fa-sigma:after {
  content: "􏚋";
}

.fad.fa-sign:after {
  content: "􏓙";
}

.fad.fa-sign-in:after {
  content: "􏂐";
}

.fad.fa-sign-in-alt:after {
  content: "􏋶";
}

.fad.fa-sign-language:after {
  content: "􏊧";
}

.fad.fa-sign-out:after {
  content: "􏂋";
}

.fad.fa-sign-out-alt:after {
  content: "􏋵";
}

.fad.fa-signal:after {
  content: "􏀒";
}

.fad.fa-signal-1:after {
  content: "􏚌";
}

.fad.fa-signal-2:after {
  content: "􏚍";
}

.fad.fa-signal-3:after {
  content: "􏚎";
}

.fad.fa-signal-4:after {
  content: "􏚏";
}

.fad.fa-signal-alt:after {
  content: "􏚐";
}

.fad.fa-signal-alt-1:after {
  content: "􏚑";
}

.fad.fa-signal-alt-2:after {
  content: "􏚒";
}

.fad.fa-signal-alt-3:after {
  content: "􏚓";
}

.fad.fa-signal-alt-slash:after {
  content: "􏚔";
}

.fad.fa-signal-slash:after {
  content: "􏚕";
}

.fad.fa-signal-stream:after {
  content: "􏣝";
}

.fad.fa-signature:after {
  content: "􏖷";
}

.fad.fa-sim-card:after {
  content: "􏟄";
}

.fad.fa-sink:after {
  content: "􎁭";
}

.fad.fa-siren:after {
  content: "􎀭";
}

.fad.fa-siren-on:after {
  content: "􎀮";
}

.fad.fa-sitemap:after {
  content: "􏃨";
}

.fad.fa-skating:after {
  content: "􏟅";
}

.fad.fa-skeleton:after {
  content: "􏘠";
}

.fad.fa-ski-jump:after {
  content: "􏟇";
}

.fad.fa-ski-lift:after {
  content: "􏟈";
}

.fad.fa-skiing:after {
  content: "􏟉";
}

.fad.fa-skiing-nordic:after {
  content: "􏟊";
}

.fad.fa-skull:after {
  content: "􏕌";
}

.fad.fa-skull-cow:after {
  content: "􏣞";
}

.fad.fa-skull-crossbones:after {
  content: "􏜔";
}

.fad.fa-slash:after {
  content: "􏜕";
}

.fad.fa-sledding:after {
  content: "􏟋";
}

.fad.fa-sleigh:after {
  content: "􏟌";
}

.fad.fa-sliders-h:after {
  content: "􏇞";
}

.fad.fa-sliders-h-square:after {
  content: "􏏰";
}

.fad.fa-sliders-v:after {
  content: "􏏱";
}

.fad.fa-sliders-v-square:after {
  content: "􏏲";
}

.fad.fa-smile:after {
  content: "􏄘";
}

.fad.fa-smile-beam:after {
  content: "􏖸";
}

.fad.fa-smile-plus:after {
  content: "􏖹";
}

.fad.fa-smile-wink:after {
  content: "􏓚";
}

.fad.fa-smog:after {
  content: "􏝟";
}

.fad.fa-smoke:after {
  content: "􏝠";
}

.fad.fa-smoking:after {
  content: "􏒍";
}

.fad.fa-smoking-ban:after {
  content: "􏕍";
}

.fad.fa-sms:after {
  content: "􏟍";
}

.fad.fa-snake:after {
  content: "􏜖";
}

.fad.fa-snooze:after {
  content: "􏢀";
}

.fad.fa-snow-blowing:after {
  content: "􏝡";
}

.fad.fa-snowboarding:after {
  content: "􏟎";
}

.fad.fa-snowflake:after {
  content: "􏋜";
}

.fad.fa-snowflakes:after {
  content: "􏟏";
}

.fad.fa-snowman:after {
  content: "􏟐";
}

.fad.fa-snowmobile:after {
  content: "􏟑";
}

.fad.fa-snowplow:after {
  content: "􏟒";
}

.fad.fa-soap:after {
  content: "􎁮";
}

.fad.fa-socks:after {
  content: "􏚖";
}

.fad.fa-solar-panel:after {
  content: "􏖺";
}

.fad.fa-solar-system:after {
  content: "􎀯";
}

.fad.fa-sort:after {
  content: "􏃜";
}

.fad.fa-sort-alpha-down:after {
  content: "􏅝";
}

.fad.fa-sort-alpha-down-alt:after {
  content: "􏢁";
}

.fad.fa-sort-alpha-up:after {
  content: "􏅞";
}

.fad.fa-sort-alpha-up-alt:after {
  content: "􏢂";
}

.fad.fa-sort-alt:after {
  content: "􏢃";
}

.fad.fa-sort-amount-down:after {
  content: "􏅠";
}

.fad.fa-sort-amount-down-alt:after {
  content: "􏢄";
}

.fad.fa-sort-amount-up:after {
  content: "􏅡";
}

.fad.fa-sort-amount-up-alt:after {
  content: "􏢅";
}

.fad.fa-sort-circle:after {
  content: "􎀰";
}

.fad.fa-sort-circle-down:after {
  content: "􎀱";
}

.fad.fa-sort-circle-up:after {
  content: "􎀲";
}

.fad.fa-sort-down:after {
  content: "􏃝";
}

.fad.fa-sort-numeric-down:after {
  content: "􏅢";
}

.fad.fa-sort-numeric-down-alt:after {
  content: "􏢆";
}

.fad.fa-sort-numeric-up:after {
  content: "􏅣";
}

.fad.fa-sort-numeric-up-alt:after {
  content: "􏢇";
}

.fad.fa-sort-shapes-down:after {
  content: "􏢈";
}

.fad.fa-sort-shapes-down-alt:after {
  content: "􏢉";
}

.fad.fa-sort-shapes-up:after {
  content: "􏢊";
}

.fad.fa-sort-shapes-up-alt:after {
  content: "􏢋";
}

.fad.fa-sort-size-down:after {
  content: "􏢌";
}

.fad.fa-sort-size-down-alt:after {
  content: "􏢍";
}

.fad.fa-sort-size-up:after {
  content: "􏢎";
}

.fad.fa-sort-size-up-alt:after {
  content: "􏢏";
}

.fad.fa-sort-up:after {
  content: "􏃞";
}

.fad.fa-soup:after {
  content: "􏠣";
}

.fad.fa-spa:after {
  content: "􏖻";
}

.fad.fa-space-shuttle:after {
  content: "􏆗";
}

.fad.fa-space-station-moon:after {
  content: "􎀳";
}

.fad.fa-space-station-moon-alt:after {
  content: "􎀴";
}

.fad.fa-spade:after {
  content: "􏋴";
}

.fad.fa-sparkles:after {
  content: "􏢐";
}

.fad.fa-speaker:after {
  content: "􏣟";
}

.fad.fa-speakers:after {
  content: "􏣠";
}

.fad.fa-spell-check:after {
  content: "􏢑";
}

.fad.fa-spider:after {
  content: "􏜗";
}

.fad.fa-spider-black-widow:after {
  content: "􏜘";
}

.fad.fa-spider-web:after {
  content: "􏜙";
}

.fad.fa-spinner:after {
  content: "􏄐";
}

.fad.fa-spinner-third:after {
  content: "􏏴";
}

.fad.fa-splotch:after {
  content: "􏖼";
}

.fad.fa-spray-can:after {
  content: "􏖽";
}

.fad.fa-sprinkler:after {
  content: "􎀵";
}

.fad.fa-square:after {
  content: "􏃈";
}

.fad.fa-square-full:after {
  content: "􏑜";
}

.fad.fa-square-root:after {
  content: "􏚗";
}

.fad.fa-square-root-alt:after {
  content: "􏚘";
}

.fad.fa-squirrel:after {
  content: "􏜚";
}

.fad.fa-staff:after {
  content: "􏜛";
}

.fad.fa-stamp:after {
  content: "􏖿";
}

.fad.fa-star:after {
  content: "􏀅";
}

.fad.fa-star-and-crescent:after {
  content: "􏚙";
}

.fad.fa-star-christmas:after {
  content: "􏟔";
}

.fad.fa-star-exclamation:after {
  content: "􏋳";
}

.fad.fa-star-half:after {
  content: "􏂉";
}

.fad.fa-star-half-alt:after {
  content: "􏗀";
}

.fad.fa-star-of-david:after {
  content: "􏚚";
}

.fad.fa-star-of-life:after {
  content: "􏘡";
}

.fad.fa-star-shooting:after {
  content: "􎀶";
}

.fad.fa-starfighter:after {
  content: "􎀷";
}

.fad.fa-starfighter-alt:after {
  content: "􎀸";
}

.fad.fa-stars:after {
  content: "􏝢";
}

.fad.fa-starship:after {
  content: "􎀹";
}

.fad.fa-starship-freighter:after {
  content: "􎀺";
}

.fad.fa-steak:after {
  content: "􏠤";
}

.fad.fa-steering-wheel:after {
  content: "􏘢";
}

.fad.fa-step-backward:after {
  content: "􏁈";
}

.fad.fa-step-forward:after {
  content: "􏁑";
}

.fad.fa-stethoscope:after {
  content: "􏃱";
}

.fad.fa-sticky-note:after {
  content: "􏉉";
}

.fad.fa-stocking:after {
  content: "􏟕";
}

.fad.fa-stomach:after {
  content: "􏘣";
}

.fad.fa-stop:after {
  content: "􏁍";
}

.fad.fa-stop-circle:after {
  content: "􏊍";
}

.fad.fa-stopwatch:after {
  content: "􏋲";
}

.fad.fa-stopwatch-20:after {
  content: "􎁯";
}

.fad.fa-store:after {
  content: "􏕎";
}

.fad.fa-store-alt:after {
  content: "􏕏";
}

.fad.fa-store-alt-slash:after {
  content: "􎁰";
}

.fad.fa-store-slash:after {
  content: "􎁱";
}

.fad.fa-stream:after {
  content: "􏕐";
}

.fad.fa-street-view:after {
  content: "􏈝";
}

.fad.fa-stretcher:after {
  content: "􏠥";
}

.fad.fa-strikethrough:after {
  content: "􏃌";
}

.fad.fa-stroopwafel:after {
  content: "􏕑";
}

.fad.fa-subscript:after {
  content: "􏄬";
}

.fad.fa-subway:after {
  content: "􏈹";
}

.fad.fa-suitcase:after {
  content: "􏃲";
}

.fad.fa-suitcase-rolling:after {
  content: "􏗁";
}

.fad.fa-sun:after {
  content: "􏆅";
}

.fad.fa-sun-cloud:after {
  content: "􏝣";
}

.fad.fa-sun-dust:after {
  content: "􏝤";
}

.fad.fa-sun-haze:after {
  content: "􏝥";
}

.fad.fa-sunglasses:after {
  content: "􏢒";
}

.fad.fa-sunrise:after {
  content: "􏝦";
}

.fad.fa-sunset:after {
  content: "􏝧";
}

.fad.fa-superscript:after {
  content: "􏄫";
}

.fad.fa-surprise:after {
  content: "􏗂";
}

.fad.fa-swatchbook:after {
  content: "􏗃";
}

.fad.fa-swimmer:after {
  content: "􏗄";
}

.fad.fa-swimming-pool:after {
  content: "􏗅";
}

.fad.fa-sword:after {
  content: "􏜜";
}

.fad.fa-sword-laser:after {
  content: "􎀻";
}

.fad.fa-sword-laser-alt:after {
  content: "􎀼";
}

.fad.fa-swords:after {
  content: "􏜝";
}

.fad.fa-swords-laser:after {
  content: "􎀽";
}

.fad.fa-synagogue:after {
  content: "􏚛";
}

.fad.fa-sync:after {
  content: "􏀡";
}

.fad.fa-sync-alt:after {
  content: "􏋱";
}

.fad.fa-syringe:after {
  content: "􏒎";
}

.fad.fa-table:after {
  content: "􏃎";
}

.fad.fa-table-tennis:after {
  content: "􏑝";
}

.fad.fa-tablet:after {
  content: "􏄊";
}

.fad.fa-tablet-alt:after {
  content: "􏏺";
}

.fad.fa-tablet-android:after {
  content: "􏏻";
}

.fad.fa-tablet-android-alt:after {
  content: "􏏼";
}

.fad.fa-tablet-rugged:after {
  content: "􏒏";
}

.fad.fa-tablets:after {
  content: "􏒐";
}

.fad.fa-tachometer:after {
  content: "􏃤";
}

.fad.fa-tachometer-alt:after {
  content: "􏏽";
}

.fad.fa-tachometer-alt-average:after {
  content: "􏘤";
}

.fad.fa-tachometer-alt-fast:after {
  content: "􏘥";
}

.fad.fa-tachometer-alt-fastest:after {
  content: "􏘦";
}

.fad.fa-tachometer-alt-slow:after {
  content: "􏘧";
}

.fad.fa-tachometer-alt-slowest:after {
  content: "􏘨";
}

.fad.fa-tachometer-average:after {
  content: "􏘩";
}

.fad.fa-tachometer-fast:after {
  content: "􏘪";
}

.fad.fa-tachometer-fastest:after {
  content: "􏘫";
}

.fad.fa-tachometer-slow:after {
  content: "􏘬";
}

.fad.fa-tachometer-slowest:after {
  content: "􏘭";
}

.fad.fa-taco:after {
  content: "􏠦";
}

.fad.fa-tag:after {
  content: "􏀫";
}

.fad.fa-tags:after {
  content: "􏀬";
}

.fad.fa-tally:after {
  content: "􏚜";
}

.fad.fa-tanakh:after {
  content: "􏠧";
}

.fad.fa-tape:after {
  content: "􏓛";
}

.fad.fa-tasks:after {
  content: "􏂮";
}

.fad.fa-tasks-alt:after {
  content: "􏠨";
}

.fad.fa-taxi:after {
  content: "􏆺";
}

.fad.fa-teeth:after {
  content: "􏘮";
}

.fad.fa-teeth-open:after {
  content: "􏘯";
}

.fad.fa-telescope:after {
  content: "􎀾";
}

.fad.fa-temperature-down:after {
  content: "􎀿";
}

.fad.fa-temperature-frigid:after {
  content: "􏝨";
}

.fad.fa-temperature-high:after {
  content: "􏝩";
}

.fad.fa-temperature-hot:after {
  content: "􏝪";
}

.fad.fa-temperature-low:after {
  content: "􏝫";
}

.fad.fa-temperature-up:after {
  content: "􎁀";
}

.fad.fa-tenge:after {
  content: "􏟗";
}

.fad.fa-tennis-ball:after {
  content: "􏑞";
}

.fad.fa-terminal:after {
  content: "􏄠";
}

.fad.fa-text:after {
  content: "􏢓";
}

.fad.fa-text-height:after {
  content: "􏀴";
}

.fad.fa-text-size:after {
  content: "􏢔";
}

.fad.fa-text-width:after {
  content: "􏀵";
}

.fad.fa-th:after {
  content: "􏀊";
}

.fad.fa-th-large:after {
  content: "􏀉";
}

.fad.fa-th-list:after {
  content: "􏀋";
}

.fad.fa-theater-masks:after {
  content: "􏘰";
}

.fad.fa-thermometer:after {
  content: "􏒑";
}

.fad.fa-thermometer-empty:after {
  content: "􏋋";
}

.fad.fa-thermometer-full:after {
  content: "􏋇";
}

.fad.fa-thermometer-half:after {
  content: "􏋉";
}

.fad.fa-thermometer-quarter:after {
  content: "􏋊";
}

.fad.fa-thermometer-three-quarters:after {
  content: "􏋈";
}

.fad.fa-theta:after {
  content: "􏚞";
}

.fad.fa-thumbs-down:after {
  content: "􏅥";
}

.fad.fa-thumbs-up:after {
  content: "􏅤";
}

.fad.fa-thumbtack:after {
  content: "􏂍";
}

.fad.fa-thunderstorm:after {
  content: "􏝬";
}

.fad.fa-thunderstorm-moon:after {
  content: "􏝭";
}

.fad.fa-thunderstorm-sun:after {
  content: "􏝮";
}

.fad.fa-ticket:after {
  content: "􏅅";
}

.fad.fa-ticket-alt:after {
  content: "􏏿";
}

.fad.fa-tilde:after {
  content: "􏚟";
}

.fad.fa-times:after {
  content: "􏀍";
}

.fad.fa-times-circle:after {
  content: "􏁗";
}

.fad.fa-times-hexagon:after {
  content: "􏋮";
}

.fad.fa-times-octagon:after {
  content: "􏋰";
}

.fad.fa-times-square:after {
  content: "􏋓";
}

.fad.fa-tint:after {
  content: "􏁃";
}

.fad.fa-tint-slash:after {
  content: "􏗇";
}

.fad.fa-tire:after {
  content: "􏘱";
}

.fad.fa-tire-flat:after {
  content: "􏘲";
}

.fad.fa-tire-pressure-warning:after {
  content: "􏘳";
}

.fad.fa-tire-rugged:after {
  content: "􏘴";
}

.fad.fa-tired:after {
  content: "􏗈";
}

.fad.fa-toggle-off:after {
  content: "􏈄";
}

.fad.fa-toggle-on:after {
  content: "􏈅";
}

.fad.fa-toilet:after {
  content: "􏟘";
}

.fad.fa-toilet-paper:after {
  content: "􏜞";
}

.fad.fa-toilet-paper-alt:after {
  content: "􏜟";
}

.fad.fa-toilet-paper-slash:after {
  content: "􎁲";
}

.fad.fa-tombstone:after {
  content: "􏜠";
}

.fad.fa-tombstone-alt:after {
  content: "􏜡";
}

.fad.fa-toolbox:after {
  content: "􏕒";
}

.fad.fa-tools:after {
  content: "􏟙";
}

.fad.fa-tooth:after {
  content: "􏗉";
}

.fad.fa-toothbrush:after {
  content: "􏘵";
}

.fad.fa-torah:after {
  content: "􏚠";
}

.fad.fa-torii-gate:after {
  content: "􏚡";
}

.fad.fa-tornado:after {
  content: "􏝯";
}

.fad.fa-tractor:after {
  content: "􏜢";
}

.fad.fa-trademark:after {
  content: "􏉜";
}

.fad.fa-traffic-cone:after {
  content: "􏘶";
}

.fad.fa-traffic-light:after {
  content: "􏘷";
}

.fad.fa-traffic-light-go:after {
  content: "􏘸";
}

.fad.fa-traffic-light-slow:after {
  content: "􏘹";
}

.fad.fa-traffic-light-stop:after {
  content: "􏘺";
}

.fad.fa-trailer:after {
  content: "􎁁";
}

.fad.fa-train:after {
  content: "􏈸";
}

.fad.fa-tram:after {
  content: "􏟚";
}

.fad.fa-transgender:after {
  content: "􏈤";
}

.fad.fa-transgender-alt:after {
  content: "􏈥";
}

.fad.fa-transporter:after {
  content: "􎁂";
}

.fad.fa-transporter-1:after {
  content: "􎁃";
}

.fad.fa-transporter-2:after {
  content: "􎁄";
}

.fad.fa-transporter-3:after {
  content: "􎁅";
}

.fad.fa-transporter-empty:after {
  content: "􎁆";
}

.fad.fa-trash:after {
  content: "􏇸";
}

.fad.fa-trash-alt:after {
  content: "􏋭";
}

.fad.fa-trash-restore:after {
  content: "􏠩";
}

.fad.fa-trash-restore-alt:after {
  content: "􏠪";
}

.fad.fa-trash-undo:after {
  content: "􏢕";
}

.fad.fa-trash-undo-alt:after {
  content: "􏢖";
}

.fad.fa-treasure-chest:after {
  content: "􏜣";
}

.fad.fa-tree:after {
  content: "􏆻";
}

.fad.fa-tree-alt:after {
  content: "􏐀";
}

.fad.fa-tree-christmas:after {
  content: "􏟛";
}

.fad.fa-tree-decorated:after {
  content: "􏟜";
}

.fad.fa-tree-large:after {
  content: "􏟝";
}

.fad.fa-tree-palm:after {
  content: "􏠫";
}

.fad.fa-trees:after {
  content: "􏜤";
}

.fad.fa-triangle:after {
  content: "􏋬";
}

.fad.fa-triangle-music:after {
  content: "􏣢";
}

.fad.fa-trophy:after {
  content: "􏂑";
}

.fad.fa-trophy-alt:after {
  content: "􏋫";
}

.fad.fa-truck:after {
  content: "􏃑";
}

.fad.fa-truck-container:after {
  content: "􏓜";
}

.fad.fa-truck-couch:after {
  content: "􏓝";
}

.fad.fa-truck-loading:after {
  content: "􏓞";
}

.fad.fa-truck-monster:after {
  content: "􏘻";
}

.fad.fa-truck-moving:after {
  content: "􏓟";
}

.fad.fa-truck-pickup:after {
  content: "􏘼";
}

.fad.fa-truck-plow:after {
  content: "􏟞";
}

.fad.fa-truck-ramp:after {
  content: "􏓠";
}

.fad.fa-trumpet:after {
  content: "􏣣";
}

.fad.fa-tshirt:after {
  content: "􏕓";
}

.fad.fa-tty:after {
  content: "􏇤";
}

.fad.fa-turkey:after {
  content: "􏜥";
}

.fad.fa-turntable:after {
  content: "􏣤";
}

.fad.fa-turtle:after {
  content: "􏜦";
}

.fad.fa-tv:after {
  content: "􏉬";
}

.fad.fa-tv-alt:after {
  content: "􏣥";
}

.fad.fa-tv-music:after {
  content: "􏣦";
}

.fad.fa-tv-retro:after {
  content: "􏐁";
}

.fad.fa-typewriter:after {
  content: "􏣧";
}

.fad.fa-ufo:after {
  content: "􎁇";
}

.fad.fa-ufo-beam:after {
  content: "􎁈";
}

.fad.fa-umbrella:after {
  content: "􏃩";
}

.fad.fa-umbrella-beach:after {
  content: "􏗊";
}

.fad.fa-underline:after {
  content: "􏃍";
}

.fad.fa-undo:after {
  content: "􏃢";
}

.fad.fa-undo-alt:after {
  content: "􏋪";
}

.fad.fa-unicorn:after {
  content: "􏜧";
}

.fad.fa-union:after {
  content: "􏚢";
}

.fad.fa-universal-access:after {
  content: "􏊚";
}

.fad.fa-university:after {
  content: "􏆜";
}

.fad.fa-unlink:after {
  content: "􏄧";
}

.fad.fa-unlock:after {
  content: "􏂜";
}

.fad.fa-unlock-alt:after {
  content: "􏄾";
}

.fad.fa-upload:after {
  content: "􏂓";
}

.fad.fa-usb-drive:after {
  content: "􏣩";
}

.fad.fa-usd-circle:after {
  content: "􏋨";
}

.fad.fa-usd-square:after {
  content: "􏋩";
}

.fad.fa-user:after {
  content: "􏀇";
}

.fad.fa-user-alien:after {
  content: "􎁊";
}

.fad.fa-user-alt:after {
  content: "􏐆";
}

.fad.fa-user-alt-slash:after {
  content: "􏓺";
}

.fad.fa-user-astronaut:after {
  content: "􏓻";
}

.fad.fa-user-chart:after {
  content: "􏚣";
}

.fad.fa-user-check:after {
  content: "􏓼";
}

.fad.fa-user-circle:after {
  content: "􏊽";
}

.fad.fa-user-clock:after {
  content: "􏓽";
}

.fad.fa-user-cog:after {
  content: "􏓾";
}

.fad.fa-user-cowboy:after {
  content: "􏣪";
}

.fad.fa-user-crown:after {
  content: "􏚤";
}

.fad.fa-user-edit:after {
  content: "􏓿";
}

.fad.fa-user-friends:after {
  content: "􏔀";
}

.fad.fa-user-graduate:after {
  content: "􏔁";
}

.fad.fa-user-hard-hat:after {
  content: "􏠬";
}

.fad.fa-user-headset:after {
  content: "􏠭";
}

.fad.fa-user-injured:after {
  content: "􏜨";
}

.fad.fa-user-lock:after {
  content: "􏔂";
}

.fad.fa-user-md:after {
  content: "􏃰";
}

.fad.fa-user-md-chat:after {
  content: "􏠮";
}

.fad.fa-user-minus:after {
  content: "􏔃";
}

.fad.fa-user-music:after {
  content: "􏣫";
}

.fad.fa-user-ninja:after {
  content: "􏔄";
}

.fad.fa-user-nurse:after {
  content: "􏠯";
}

.fad.fa-user-plus:after {
  content: "􏈴";
}

.fad.fa-user-robot:after {
  content: "􎁋";
}

.fad.fa-user-secret:after {
  content: "􏈛";
}

.fad.fa-user-shield:after {
  content: "􏔅";
}

.fad.fa-user-slash:after {
  content: "􏔆";
}

.fad.fa-user-tag:after {
  content: "􏔇";
}

.fad.fa-user-tie:after {
  content: "􏔈";
}

.fad.fa-user-times:after {
  content: "􏈵";
}

.fad.fa-user-unlock:after {
  content: "􎁘";
}

.fad.fa-user-visor:after {
  content: "􎁌";
}

.fad.fa-users:after {
  content: "􏃀";
}

.fad.fa-users-class:after {
  content: "􏘽";
}

.fad.fa-users-cog:after {
  content: "􏔉";
}

.fad.fa-users-crown:after {
  content: "􏚥";
}

.fad.fa-users-medical:after {
  content: "􏠰";
}

.fad.fa-users-slash:after {
  content: "􎁳";
}

.fad.fa-utensil-fork:after {
  content: "􏋣";
}

.fad.fa-utensil-knife:after {
  content: "􏋤";
}

.fad.fa-utensil-spoon:after {
  content: "􏋥";
}

.fad.fa-utensils:after {
  content: "􏋧";
}

.fad.fa-utensils-alt:after {
  content: "􏋦";
}

.fad.fa-vacuum:after {
  content: "􎁍";
}

.fad.fa-vacuum-robot:after {
  content: "􎁎";
}

.fad.fa-value-absolute:after {
  content: "􏚦";
}

.fad.fa-vector-square:after {
  content: "􏗋";
}

.fad.fa-venus:after {
  content: "􏈡";
}

.fad.fa-venus-double:after {
  content: "􏈦";
}

.fad.fa-venus-mars:after {
  content: "􏈨";
}

.fad.fa-vest:after {
  content: "􎂅";
}

.fad.fa-vest-patches:after {
  content: "􎂆";
}

.fad.fa-vhs:after {
  content: "􏣬";
}

.fad.fa-vial:after {
  content: "􏒒";
}

.fad.fa-vials:after {
  content: "􏒓";
}

.fad.fa-video:after {
  content: "􏀽";
}

.fad.fa-video-plus:after {
  content: "􏓡";
}

.fad.fa-video-slash:after {
  content: "􏓢";
}

.fad.fa-vihara:after {
  content: "􏚧";
}

.fad.fa-violin:after {
  content: "􏣭";
}

.fad.fa-virus:after {
  content: "􎁴";
}

.fad.fa-virus-slash:after {
  content: "􎁵";
}

.fad.fa-viruses:after {
  content: "􎁶";
}

.fad.fa-voicemail:after {
  content: "􏢗";
}

.fad.fa-volcano:after {
  content: "􏝰";
}

.fad.fa-volleyball-ball:after {
  content: "􏑟";
}

.fad.fa-volume:after {
  content: "􏚨";
}

.fad.fa-volume-down:after {
  content: "􏀧";
}

.fad.fa-volume-mute:after {
  content: "􏚩";
}

.fad.fa-volume-off:after {
  content: "􏀦";
}

.fad.fa-volume-slash:after {
  content: "􏋢";
}

.fad.fa-volume-up:after {
  content: "􏀨";
}

.fad.fa-vote-nay:after {
  content: "􏝱";
}

.fad.fa-vote-yea:after {
  content: "􏝲";
}

.fad.fa-vr-cardboard:after {
  content: "􏜩";
}

.fad.fa-wagon-covered:after {
  content: "􏣮";
}

.fad.fa-walker:after {
  content: "􏠱";
}

.fad.fa-walkie-talkie:after {
  content: "􏣯";
}

.fad.fa-walking:after {
  content: "􏕔";
}

.fad.fa-wallet:after {
  content: "􏕕";
}

.fad.fa-wand:after {
  content: "􏜪";
}

.fad.fa-wand-magic:after {
  content: "􏜫";
}

.fad.fa-warehouse:after {
  content: "􏒔";
}

.fad.fa-warehouse-alt:after {
  content: "􏒕";
}

.fad.fa-washer:after {
  content: "􏢘";
}

.fad.fa-watch:after {
  content: "􏋡";
}

.fad.fa-watch-calculator:after {
  content: "􏣰";
}

.fad.fa-watch-fitness:after {
  content: "􏘾";
}

.fad.fa-water:after {
  content: "􏝳";
}

.fad.fa-water-lower:after {
  content: "􏝴";
}

.fad.fa-water-rise:after {
  content: "􏝵";
}

.fad.fa-wave-sine:after {
  content: "􏢙";
}

.fad.fa-wave-square:after {
  content: "􏠾";
}

.fad.fa-wave-triangle:after {
  content: "􏢚";
}

.fad.fa-waveform:after {
  content: "􏣱";
}

.fad.fa-waveform-path:after {
  content: "􏣲";
}

.fad.fa-webcam:after {
  content: "􏠲";
}

.fad.fa-webcam-slash:after {
  content: "􏠳";
}

.fad.fa-weight:after {
  content: "􏒖";
}

.fad.fa-weight-hanging:after {
  content: "􏗍";
}

.fad.fa-whale:after {
  content: "􏜬";
}

.fad.fa-wheat:after {
  content: "􏜭";
}

.fad.fa-wheelchair:after {
  content: "􏆓";
}

.fad.fa-whistle:after {
  content: "􏑠";
}

.fad.fa-wifi:after {
  content: "􏇫";
}

.fad.fa-wifi-1:after {
  content: "􏚪";
}

.fad.fa-wifi-2:after {
  content: "􏚫";
}

.fad.fa-wifi-slash:after {
  content: "􏚬";
}

.fad.fa-wind:after {
  content: "􏜮";
}

.fad.fa-wind-turbine:after {
  content: "􏢛";
}

.fad.fa-wind-warning:after {
  content: "􏝶";
}

.fad.fa-window:after {
  content: "􏐎";
}

.fad.fa-window-alt:after {
  content: "􏐏";
}

.fad.fa-window-close:after {
  content: "􏐐";
}

.fad.fa-window-frame:after {
  content: "􎁏";
}

.fad.fa-window-frame-open:after {
  content: "􎁐";
}

.fad.fa-window-maximize:after {
  content: "􏋐";
}

.fad.fa-window-minimize:after {
  content: "􏋑";
}

.fad.fa-window-restore:after {
  content: "􏋒";
}

.fad.fa-windsock:after {
  content: "􏝷";
}

.fad.fa-wine-bottle:after {
  content: "􏜯";
}

.fad.fa-wine-glass:after {
  content: "􏓣";
}

.fad.fa-wine-glass-alt:after {
  content: "􏗎";
}

.fad.fa-won-sign:after {
  content: "􏅙";
}

.fad.fa-wreath:after {
  content: "􏟢";
}

.fad.fa-wrench:after {
  content: "􏂭";
}

.fad.fa-x-ray:after {
  content: "􏒗";
}

.fad.fa-yen-sign:after {
  content: "􏅗";
}

.fad.fa-yin-yang:after {
  content: "􏚭";
}

.pretty * {
  box-sizing: border-box;
}

.pretty input:not([type=checkbox]):not([type=radio]) {
  display: none;
}

.pretty {
  position: relative;
  display: inline-block;
  margin-right: 1em;
  white-space: nowrap;
  line-height: 1;
}
.pretty input {
  position: absolute;
  left: 0;
  top: 0;
  min-width: 1em;
  width: 100%;
  height: 100%;
  z-index: 2;
  opacity: 0;
  margin: 0;
  padding: 0;
  cursor: pointer;
}
.pretty .state label {
  position: initial;
  display: inline-block;
  font-weight: normal;
  margin: 0;
  text-indent: 1.5em;
  min-width: calc(1em + 2px);
}
.pretty .state label:before, .pretty .state label:after {
  content: "";
  width: calc(1em + 2px);
  height: calc(1em + 2px);
  display: block;
  box-sizing: border-box;
  border-radius: 0;
  border: 1px solid transparent;
  z-index: 0;
  position: absolute;
  left: 0;
  top: calc((0% - (100% - 1em)) - 8%);
  background-color: transparent;
}
.pretty .state label:before {
  border-color: #bdc3c7;
}
.pretty .state.p-is-hover, .pretty .state.p-is-indeterminate {
  display: none;
}

@keyframes zoom {
  0% {
    opacity: 0;
    transform: scale(0);
  }
}
@keyframes tada {
  0% {
    animation-timing-function: ease-in;
    opacity: 0;
    transform: scale(7);
  }
  38% {
    animation-timing-function: ease-out;
    opacity: 1;
    transform: scale(1);
  }
  55% {
    animation-timing-function: ease-in;
    transform: scale(1.5);
  }
  72% {
    animation-timing-function: ease-out;
    transform: scale(1);
  }
  81% {
    animation-timing-function: ease-in;
    transform: scale(1.24);
  }
  89% {
    animation-timing-function: ease-out;
    transform: scale(1);
  }
  95% {
    animation-timing-function: ease-in;
    transform: scale(1.04);
  }
  100% {
    animation-timing-function: ease-out;
    transform: scale(1);
  }
}
@keyframes jelly {
  0% {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(0.75, 1.25, 1);
  }
  40% {
    transform: scale3d(1.25, 0.75, 1);
  }
  50% {
    transform: scale3d(0.85, 1.15, 1);
  }
  65% {
    transform: scale3d(1.05, 0.95, 1);
  }
  75% {
    transform: scale3d(0.95, 1.05, 1);
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rotate {
  0% {
    opacity: 0;
    transform: translateZ(-200px) rotate(-45deg);
  }
  100% {
    opacity: 1;
    transform: translateZ(0) rotate(0);
  }
}
@keyframes pulse {
  0% {
    box-shadow: 0px 0px 0px 0px #bdc3c7;
  }
  100% {
    box-shadow: 0px 0px 0px 1.5em rgba(189, 195, 199, 0);
  }
}
.pretty.p-default.p-fill .state label:after {
  transform: scale(1);
}

.pretty.p-default .state label:after {
  transform: scale(0.6);
}
.pretty.p-default input:checked ~ .state label:after {
  background-color: #bdc3c7 !important;
}

.pretty.p-default.p-thick .state label:before, .pretty.p-default.p-thick .state label:after {
  border-width: calc(1em / 7);
}
.pretty.p-default.p-thick .state label:after {
  transform: scale(0.4) !important;
}

.pretty.p-icon .state .icon {
  position: absolute;
  font-size: 1em;
  width: calc(1em + 2px);
  height: calc(1em + 2px);
  left: 0;
  z-index: 1;
  text-align: center;
  line-height: normal;
  top: calc((0% - (100% - 1em)) - 8%);
  border: 1px solid transparent;
  opacity: 0;
}
.pretty.p-icon .state .icon:before {
  margin: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  display: flex;
  flex: 1;
  justify-content: center;
  align-items: center;
  line-height: 1;
}
.pretty.p-icon input:checked ~ .state .icon {
  opacity: 1;
}
.pretty.p-icon input:checked ~ .state label:before {
  border-color: #5a656b;
}

.pretty.p-svg .state .svg {
  position: absolute;
  font-size: 1em;
  width: calc(1em + 2px);
  height: calc(1em + 2px);
  left: 0;
  z-index: 1;
  text-align: center;
  line-height: normal;
  top: calc((0% - (100% - 1em)) - 8%);
  border: 1px solid transparent;
  opacity: 0;
}
.pretty.p-svg .state svg {
  margin: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  display: flex;
  flex: 1;
  justify-content: center;
  align-items: center;
  line-height: 1;
}
.pretty.p-svg input:checked ~ .state .svg {
  opacity: 1;
}

.pretty.p-image .state img {
  opacity: 0;
  position: absolute;
  width: calc(1em + 2px);
  height: calc(1em + 2px);
  top: 0;
  top: calc((0% - (100% - 1em)) - 8%);
  left: 0;
  z-index: 0;
  text-align: center;
  line-height: normal;
  transform: scale(0.8);
}
.pretty.p-image input:checked ~ .state img {
  opacity: 1;
}

.pretty.p-switch input {
  min-width: 2em;
}
.pretty.p-switch .state {
  position: relative;
}
.pretty.p-switch .state:before {
  content: "";
  border: 1px solid #bdc3c7;
  border-radius: 60px;
  width: 2em;
  box-sizing: unset;
  height: calc(1em + 2px);
  position: absolute;
  top: 0;
  top: calc((0% - (100% - 1em)) - 16%);
  z-index: 0;
  transition: all 0.5s ease;
}
.pretty.p-switch .state label {
  text-indent: 2.5em;
}
.pretty.p-switch .state label:before, .pretty.p-switch .state label:after {
  transition: all 0.5s ease;
  border-radius: 100%;
  left: 0;
  border-color: transparent;
  transform: scale(0.8);
}
.pretty.p-switch .state label:after {
  background-color: #bdc3c7 !important;
}
.pretty.p-switch input:checked ~ .state:before {
  border-color: #5a656b;
}
.pretty.p-switch input:checked ~ .state label:before {
  opacity: 0;
}
.pretty.p-switch input:checked ~ .state label:after {
  background-color: #5a656b !important;
  left: 1em;
}

.pretty.p-switch.p-fill input:checked ~ .state:before {
  border-color: #5a656b;
  background-color: #5a656b !important;
}
.pretty.p-switch.p-fill input:checked ~ .state label:before {
  opacity: 0;
}
.pretty.p-switch.p-fill input:checked ~ .state label:after {
  background-color: #fff !important;
  left: 1em;
}

.pretty.p-switch.p-slim .state:before {
  height: 0.1em;
  background: #bdc3c7 !important;
  top: calc(50% - 0.1em);
}
.pretty.p-switch.p-slim input:checked ~ .state:before {
  border-color: #5a656b;
  background-color: #5a656b !important;
}

.pretty.p-has-hover input:hover ~ .state:not(.p-is-hover) {
  display: none;
}
.pretty.p-has-hover input:hover ~ .state.p-is-hover {
  display: block;
}
.pretty.p-has-hover input:hover ~ .state.p-is-hover .icon {
  display: block;
}

.pretty.p-has-focus input:focus ~ .state label:before {
  box-shadow: 0px 0px 3px 0px #bdc3c7;
}

.pretty.p-has-indeterminate input[type=checkbox]:indeterminate ~ .state:not(.p-is-indeterminate) {
  display: none;
}
.pretty.p-has-indeterminate input[type=checkbox]:indeterminate ~ .state.p-is-indeterminate {
  display: block;
}
.pretty.p-has-indeterminate input[type=checkbox]:indeterminate ~ .state.p-is-indeterminate .icon {
  display: block;
  opacity: 1;
}

.pretty.p-toggle .state.p-on {
  opacity: 0;
  display: none;
}
.pretty.p-toggle .state.p-off,
.pretty.p-toggle .state .icon,
.pretty.p-toggle .state .svg,
.pretty.p-toggle .state img {
  opacity: 1;
  display: inherit;
}
.pretty.p-toggle .state.p-off .icon {
  color: #bdc3c7;
}
.pretty.p-toggle input:checked ~ .state.p-on {
  opacity: 1;
  display: inherit;
}
.pretty.p-toggle input:checked ~ .state.p-off {
  opacity: 0;
  display: none;
}

.pretty.p-plain input:checked ~ .state label:before, .pretty.p-plain.p-toggle .state label:before {
  content: none;
}
.pretty.p-plain.p-plain .icon {
  transform: scale(1.1);
}

.pretty.p-round .state label:before, .pretty.p-round .state label:after {
  border-radius: 100%;
}
.pretty.p-round.p-icon .state .icon {
  border-radius: 100%;
  overflow: hidden;
}
.pretty.p-round.p-icon .state .icon:before {
  transform: scale(0.8);
}

.pretty.p-curve .state label:before, .pretty.p-curve .state label:after {
  border-radius: 20%;
}

.pretty.p-smooth label:before,
.pretty.p-smooth label:after,
.pretty.p-smooth .icon,
.pretty.p-smooth .svg {
  transition: all 0.5s ease;
}
.pretty.p-smooth input:checked + .state label:after {
  transition: all 0.3s ease;
}
.pretty.p-smooth input:checked + .state .icon,
.pretty.p-smooth input:checked + .state .svg,
.pretty.p-smooth input:checked + .state img {
  animation: zoom 0.2s ease;
}
.pretty.p-smooth.p-default input:checked + .state label:after {
  animation: zoom 0.2s ease;
}
.pretty.p-smooth.p-plain input:checked + .state label:before {
  content: "";
  transform: scale(0);
  transition: all 0.5s ease;
}

.pretty.p-tada:not(.p-default) input:checked + .state .icon,
.pretty.p-tada:not(.p-default) input:checked + .state .svg,
.pretty.p-tada:not(.p-default) input:checked + .state img,
.pretty.p-tada:not(.p-default) input:checked + .state label:before,
.pretty.p-tada:not(.p-default) input:checked + .state label:after {
  animation: tada 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1 alternate;
  opacity: 1;
}

.pretty.p-jelly:not(.p-default) input:checked + .state .icon,
.pretty.p-jelly:not(.p-default) input:checked + .state .svg,
.pretty.p-jelly:not(.p-default) input:checked + .state img,
.pretty.p-jelly:not(.p-default) input:checked + .state label:before,
.pretty.p-jelly:not(.p-default) input:checked + .state label:after {
  animation: jelly 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 1;
}
.pretty.p-jelly:not(.p-default) input:checked + .state label:before {
  border-color: transparent;
}

.pretty.p-rotate:not(.p-default) input:checked ~ .state .icon,
.pretty.p-rotate:not(.p-default) input:checked ~ .state .svg,
.pretty.p-rotate:not(.p-default) input:checked ~ .state img,
.pretty.p-rotate:not(.p-default) input:checked ~ .state label:before,
.pretty.p-rotate:not(.p-default) input:checked ~ .state label:after {
  animation: rotate 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 1;
}
.pretty.p-rotate:not(.p-default) input:checked ~ .state label:before {
  border-color: transparent;
}

.pretty.p-pulse:not(.p-switch) input:checked ~ .state label:before {
  animation: pulse 1s;
}

.pretty input[disabled] {
  cursor: not-allowed;
  display: none;
}
.pretty input[disabled] ~ * {
  opacity: 0.5;
}

.pretty.p-locked input {
  display: none;
  cursor: not-allowed;
}

.pretty input:checked ~ .state.p-primary label:after, .pretty.p-toggle .state.p-primary label:after {
  background-color: #D04C8D !important;
}
.pretty input:checked ~ .state.p-primary .icon,
.pretty input:checked ~ .state.p-primary .svg, .pretty.p-toggle .state.p-primary .icon,
.pretty.p-toggle .state.p-primary .svg {
  color: #fff;
  stroke: #fff;
}
.pretty input:checked ~ .state.p-primary-o label:before, .pretty.p-toggle .state.p-primary-o label:before {
  border-color: #D04C8D;
}
.pretty input:checked ~ .state.p-primary-o label:after, .pretty.p-toggle .state.p-primary-o label:after {
  background-color: transparent;
}
.pretty input:checked ~ .state.p-primary-o .icon,
.pretty input:checked ~ .state.p-primary-o .svg,
.pretty input:checked ~ .state.p-primary-o svg, .pretty.p-toggle .state.p-primary-o .icon,
.pretty.p-toggle .state.p-primary-o .svg,
.pretty.p-toggle .state.p-primary-o svg {
  color: #D04C8D;
  stroke: #D04C8D;
}
.pretty.p-default:not(.p-fill) input:checked ~ .state.p-primary-o label:after {
  background-color: #D04C8D !important;
}
.pretty.p-switch input:checked ~ .state.p-primary:before {
  border-color: #D04C8D;
}
.pretty.p-switch.p-fill input:checked ~ .state.p-primary:before {
  background-color: #D04C8D !important;
}
.pretty.p-switch.p-slim input:checked ~ .state.p-primary:before {
  border-color: #90265a;
  background-color: #90265a !important;
}
.pretty input:checked ~ .state.p-info label:after, .pretty.p-toggle .state.p-info label:after {
  background-color: #5bc0de !important;
}
.pretty input:checked ~ .state.p-info .icon,
.pretty input:checked ~ .state.p-info .svg, .pretty.p-toggle .state.p-info .icon,
.pretty.p-toggle .state.p-info .svg {
  color: #fff;
  stroke: #fff;
}
.pretty input:checked ~ .state.p-info-o label:before, .pretty.p-toggle .state.p-info-o label:before {
  border-color: #5bc0de;
}
.pretty input:checked ~ .state.p-info-o label:after, .pretty.p-toggle .state.p-info-o label:after {
  background-color: transparent;
}
.pretty input:checked ~ .state.p-info-o .icon,
.pretty input:checked ~ .state.p-info-o .svg,
.pretty input:checked ~ .state.p-info-o svg, .pretty.p-toggle .state.p-info-o .icon,
.pretty.p-toggle .state.p-info-o .svg,
.pretty.p-toggle .state.p-info-o svg {
  color: #5bc0de;
  stroke: #5bc0de;
}
.pretty.p-default:not(.p-fill) input:checked ~ .state.p-info-o label:after {
  background-color: #5bc0de !important;
}
.pretty.p-switch input:checked ~ .state.p-info:before {
  border-color: #5bc0de;
}
.pretty.p-switch.p-fill input:checked ~ .state.p-info:before {
  background-color: #5bc0de !important;
}
.pretty.p-switch.p-slim input:checked ~ .state.p-info:before {
  border-color: #2390b0;
  background-color: #2390b0 !important;
}
.pretty input:checked ~ .state.p-success label:after, .pretty.p-toggle .state.p-success label:after {
  background-color: #5cb85c !important;
}
.pretty input:checked ~ .state.p-success .icon,
.pretty input:checked ~ .state.p-success .svg, .pretty.p-toggle .state.p-success .icon,
.pretty.p-toggle .state.p-success .svg {
  color: #fff;
  stroke: #fff;
}
.pretty input:checked ~ .state.p-success-o label:before, .pretty.p-toggle .state.p-success-o label:before {
  border-color: #5cb85c;
}
.pretty input:checked ~ .state.p-success-o label:after, .pretty.p-toggle .state.p-success-o label:after {
  background-color: transparent;
}
.pretty input:checked ~ .state.p-success-o .icon,
.pretty input:checked ~ .state.p-success-o .svg,
.pretty input:checked ~ .state.p-success-o svg, .pretty.p-toggle .state.p-success-o .icon,
.pretty.p-toggle .state.p-success-o .svg,
.pretty.p-toggle .state.p-success-o svg {
  color: #5cb85c;
  stroke: #5cb85c;
}
.pretty.p-default:not(.p-fill) input:checked ~ .state.p-success-o label:after {
  background-color: #5cb85c !important;
}
.pretty.p-switch input:checked ~ .state.p-success:before {
  border-color: #5cb85c;
}
.pretty.p-switch.p-fill input:checked ~ .state.p-success:before {
  background-color: #5cb85c !important;
}
.pretty.p-switch.p-slim input:checked ~ .state.p-success:before {
  border-color: #357935;
  background-color: #357935 !important;
}
.pretty input:checked ~ .state.p-warning label:after, .pretty.p-toggle .state.p-warning label:after {
  background-color: #f0ad4e !important;
}
.pretty input:checked ~ .state.p-warning .icon,
.pretty input:checked ~ .state.p-warning .svg, .pretty.p-toggle .state.p-warning .icon,
.pretty.p-toggle .state.p-warning .svg {
  color: #fff;
  stroke: #fff;
}
.pretty input:checked ~ .state.p-warning-o label:before, .pretty.p-toggle .state.p-warning-o label:before {
  border-color: #f0ad4e;
}
.pretty input:checked ~ .state.p-warning-o label:after, .pretty.p-toggle .state.p-warning-o label:after {
  background-color: transparent;
}
.pretty input:checked ~ .state.p-warning-o .icon,
.pretty input:checked ~ .state.p-warning-o .svg,
.pretty input:checked ~ .state.p-warning-o svg, .pretty.p-toggle .state.p-warning-o .icon,
.pretty.p-toggle .state.p-warning-o .svg,
.pretty.p-toggle .state.p-warning-o svg {
  color: #f0ad4e;
  stroke: #f0ad4e;
}
.pretty.p-default:not(.p-fill) input:checked ~ .state.p-warning-o label:after {
  background-color: #f0ad4e !important;
}
.pretty.p-switch input:checked ~ .state.p-warning:before {
  border-color: #f0ad4e;
}
.pretty.p-switch.p-fill input:checked ~ .state.p-warning:before {
  background-color: #f0ad4e !important;
}
.pretty.p-switch.p-slim input:checked ~ .state.p-warning:before {
  border-color: #c77c11;
  background-color: #c77c11 !important;
}
.pretty input:checked ~ .state.p-danger label:after, .pretty.p-toggle .state.p-danger label:after {
  background-color: #d9534f !important;
}
.pretty input:checked ~ .state.p-danger .icon,
.pretty input:checked ~ .state.p-danger .svg, .pretty.p-toggle .state.p-danger .icon,
.pretty.p-toggle .state.p-danger .svg {
  color: #fff;
  stroke: #fff;
}
.pretty input:checked ~ .state.p-danger-o label:before, .pretty.p-toggle .state.p-danger-o label:before {
  border-color: #d9534f;
}
.pretty input:checked ~ .state.p-danger-o label:after, .pretty.p-toggle .state.p-danger-o label:after {
  background-color: transparent;
}
.pretty input:checked ~ .state.p-danger-o .icon,
.pretty input:checked ~ .state.p-danger-o .svg,
.pretty input:checked ~ .state.p-danger-o svg, .pretty.p-toggle .state.p-danger-o .icon,
.pretty.p-toggle .state.p-danger-o .svg,
.pretty.p-toggle .state.p-danger-o svg {
  color: #d9534f;
  stroke: #d9534f;
}
.pretty.p-default:not(.p-fill) input:checked ~ .state.p-danger-o label:after {
  background-color: #d9534f !important;
}
.pretty.p-switch input:checked ~ .state.p-danger:before {
  border-color: #d9534f;
}
.pretty.p-switch.p-fill input:checked ~ .state.p-danger:before {
  background-color: #d9534f !important;
}
.pretty.p-switch.p-slim input:checked ~ .state.p-danger:before {
  border-color: #a02622;
  background-color: #a02622 !important;
}

.pretty.p-bigger label:before,
.pretty.p-bigger label:after,
.pretty.p-bigger .icon,
.pretty.p-bigger .svg,
.pretty.p-bigger .img {
  font-size: 1.2em !important;
  top: calc((0% - (100% - 1em)) - 35%) !important;
}
.pretty.p-bigger label {
  text-indent: 1.7em;
}

@media print {
  .pretty .state:before,
.pretty .state label:before,
.pretty .state label:after,
.pretty .state .icon {
    /* stylelint-disable */
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
}
body {
  background-color: var(--color-bg-tertiary) !important;
}

.state {
  padding: 0px !important;
  line-height: inherit !important;
  text-align: center;
  white-space: nowrap;
  border-radius: 0px;
  color: inherit !important;
  background-color: unset !important;
  border: none !important;
}

.pretty .state label:before,
.pretty .state label:after {
  top: 0 !important;
  width: calc(1.5em + 2px) !important;
  height: calc(1.5em + 2px) !important;
}

.p-switch.pretty .state label:before,
.p-switch.pretty .state label:after {
  width: calc(1em + 2px) !important;
  height: calc(1em + 2px) !important;
  top: calc((0% - (100% - 1em)) - 8%) !important;
}

.pretty input {
  width: calc(1.5em + 2px) !important;
  height: calc(1.5em + 2px) !important;
}

.large-paragraph {
  font-size: 16px;
  line-height: 24px;
}

.small-paragraph {
  font-size: 12;
  line-height: 20;
}

.theme-gradient {
  background: #0c4b88;
  background: linear-gradient(126deg, #0c4b88 0%, #60508d 35%, #d04c8d 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0c4b88", endColorstr="#d04c8d", GradientType=1);
}

.btn-primary:hover, .btn-primary.hover, [open] > .btn-primary {
  box-shadow: var(--color-shadow-medium);
}
.btn-primary:active, .btn-primary.selected, .btn-primary[aria-selected=true] {
  box-shadow: var(--color-shadow-medium);
}
.btn-primary:focus, .btn-primary.focus {
  box-shadow: var(--color-shadow-medium);
}

.btn.btn-rounded {
  border-radius: 40px !important;
  padding-left: 30px !important;
  padding-right: 30px !important;
}

.Box-footer {
  background-color: #f4f7fa;
  border-top: none !important;
}

.border-bottom-danger {
  border-bottom: 1px solid #dc3545 !important;
}

.notification-bar {
  top: 60px;
  position: fixed;
  z-index: 699;
  width: 100%;
}

details-dialog {
  position: fixed;
  margin: 10vh auto;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  max-height: 80vh;
  max-width: 90vw;
  width: 448px;
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.4);
}

.card {
  padding: 30px;
  border-radius: 15px;
}

code {
  white-space: pre-wrap !important;
  /* css-3 */
  white-space: -moz-pre-wrap !important;
  /* Mozilla, since 1999 */
  white-space: -pre-wrap !important;
  /* Opera 4-6 */
  white-space: -o-pre-wrap !important;
  /* Opera 7 */
  word-wrap: break-word !important;
  /* Internet Explorer 5.5+ */
}

.offset-1-2 {
  margin-left: 6.33333333% !important;
}

.Label--picton-blue {
  color: #25bfff !important;
  border-color: #25bfff !important;
}

.Label--pending-approval {
  color: #fb4aa2 !important;
  border-color: #fb4aa2 !important;
}

html {
  font-size: 14px;
}
